@charset "UTF-8";
/* ===================
original MIXIN
==================== */
/* ===================
common MIXIN
==================== */
/* ====================
design SIZE SET
==================== */
/*----------------------------------------
	RESET
-----------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none !important;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: auto;
}
@media only screen and (max-width: 834px) {
  html {
    overflow-x: hidden;
  }
}

body {
  position: relative;
  width: 100%;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  line-height: 1.4;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  color: #1a1a1a;
  hanging-punctuation: allow-end;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 834px) {
  body {
    width: 100%;
    font-size: vw(14);
    min-width: 0;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #1a1a1a;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 835px) {
  a:hover {
    opacity: 0.7;
  }
}

@media only screen and (min-width: 835px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
input[type=text],
input[type=password],
textarea,
select {
  outline: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: top;
}

strong {
  font-weight: 700;
}

.is-hide {
  display: none !important;
}

/*===================================
画面サイズ
===================================*/
.c-outer {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}

.c-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

@media only screen and (max-width: 1200px) {
  .c-inner {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 834px) {
  .c-inner {
    width: calc(360 / 390 * 100vw);
  }
}
.pc {
  display: block;
}
@media only screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

.inner-blake {
  display: none !important;
}
@media only screen and (max-width: 1200px) {
  .inner-blake {
    display: block !important;
  }
}

.sp {
  display: none !important;
}
@media only screen and (max-width: 834px) {
  .sp {
    display: block !important;
  }
}

/*===================================
ぱんくす
===================================*/
.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.25em;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1;
  margin: 40px 0;
}
.c-breadcrumb a {
  color: #1b225e;
}
.c-breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-breadcrumb li:not(:last-of-type)::after {
  content: "＞";
  margin: 0 0.25em 0 0.5em;
}
.c-breadcrumb li:last-of-type a {
  text-decoration: underline;
  pointer-events: none;
}
@media only screen and (max-width: 834px) {
  .c-breadcrumb {
    width: calc(360 / 390 * 100vw);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    margin: calc(25 / 390 * 100vw) auto;
  }
}

/*===================================
文字色
===================================*/
.c-color-base {
  color: #1b225e !important;
}

/*===================================
LINK
===================================*/
.c-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #1b225e;
  background: #f2f2f2;
  border: 1px solid #1b225e;
  will-change: color, background-color;
}
.c-link__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #1b225e;
  background: #f2f2f2;
  border: 1px solid #1b225e;
  will-change: color, background-color;
}
.c-link__arrow::after {
  content: "";
  display: block;
  width: 18px;
  height: 1em;
  margin-left: 0.5em;
  background-color: #1b225e;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: transform, background-color;
}
.c-link__arrow--white::after {
  background: #fff;
}
@media only screen and (min-width: 835px) {
  .c-link__arrow:hover {
    color: #1b225e;
    background: #fff746;
    opacity: 1;
  }
  .c-link__arrow:hover::after {
    background-color: #1b225e;
  }
}
.c-link__blank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: underline;
  border: 1px solid #1b225e;
  will-change: color, background-color;
}
.c-link__blank::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.5em;
  background-color: #1b225e;
  -webkit-mask-image: url(../img/common/icon_blank.svg);
          mask-image: url(../img/common/icon_blank.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: transform, background-color;
}
.c-link__blank--white {
  color: #fff;
  border-color: #fff;
}
.c-link__blank--white::after {
  background: #fff;
}
@media only screen and (min-width: 835px) {
  .c-link__blank:hover {
    color: #1b225e;
    background: #fff746;
    opacity: 1;
  }
  .c-link__blank:hover::after {
    background-color: #1b225e;
  }
}

@media only screen and (max-width: 834px) {
  .c-link {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.25;
  }
  .c-link__arrow {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.25;
  }
  .c-link__arrow::after {
    width: calc(18 / 390 * 100vw);
  }
  .c-link__blank {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    line-height: 1.38;
  }
}
/* ********************
 各セクションで使用
******************** */
.c-section-icon__online, .c-section-icon__support, .c-section-icon__seminar, .c-section-icon__booth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  padding: 0.33em 1.1em;
  color: #1b225e;
  border: 1px solid #1b225e;
}

.c-section-fv {
  padding-top: 90px;
}
.c-section-heading {
  text-align: center;
  font-size: 5rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 900;
  color: #1b225e;
}
.c-section-heading span {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 0.7em;
  padding-left: 0.1em;
}
.c-section-heading--white {
  color: #fff;
}
.c-section-heading--orange span {
  color: #fe6149;
}
.c-section-lead__catch {
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #1b225e;
}
.c-section-lead__body {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
}
.c-section-lead__body span {
  display: inline-block;
}
.c-section-note {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.c-section-note li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-section-note li:first-letter {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
.c-section-icon__booth {
  background-color: #d4eef9;
}
.c-section-icon__seminar {
  background-color: #c2e6c5;
}
.c-section-icon__support {
  background-color: #f7cbd7;
}
.c-section-icon__online {
  color: #1b225e;
  background-color: #fff;
}

@media only screen and (max-width: 834px) {
  .c-section-fv {
    padding-top: calc(80 / 390 * 100vw);
  }
  .c-section-fv__image {
    display: block;
    width: calc(360 / 390 * 100vw);
    margin: 0 auto;
  }
  .c-section-heading {
    font-size: calc(30 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.33;
  }
  .c-section-heading span {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.25;
  }
  .c-section-lead__catch {
    font-size: 2.4rem;
    letter-spacing: 0em;
    line-height: 1.42;
    margin-bottom: calc(20 / 390 * 100vw);
  }
  .c-section-lead__body {
    font-size: 1.6rem;
    letter-spacing: 0em;
    line-height: 2;
  }
}
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}
.c-modal__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.c-modal__block {
  position: relative;
  display: none;
  width: 80%;
  max-width: 1000px;
  margin-top: 30px;
  color: #1b225e;
  background: #fff;
  pointer-events: visible;
  z-index: 1;
}
.c-modal__block::before, .c-modal__block::after {
  content: "";
  position: absolute;
  top: -22px;
  right: -3px;
  display: block;
  width: 36px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  pointer-events: none;
}
.c-modal__block::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 55px 55px;
  width: 100%;
  height: 100%;
  max-height: calc(85vh - 60px);
  overflow: auto;
}
.c-modal__background {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  pointer-events: visible;
}
.c-modal-guest__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.c-modal-guest__profile {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 212px;
}
.c-modal-guest__comment {
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.94;
  background: #f2f2f2;
  padding: 30px 45px;
  border-radius: 10px;
}
.c-modal-guest__comment::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -19px;
  width: 20px;
  height: 29px;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  background: #f2f2f2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 834px) {
  .c-modal__block {
    width: calc(360 / 390 * 100vw);
    max-height: calc(85vh - 60 / 390 * 100vw);
    margin-top: calc(30 / 390 * 100vw);
  }
  .c-modal__block::before, .c-modal__block::after {
    top: calc(-22 / 390 * 100vw);
    right: calc(-3 / 390 * 100vw);
    width: calc(36 / 390 * 100vw);
  }
  .c-modal__inner {
    max-height: calc(85vh - 60 / 390 * 100vw);
    padding: calc(25 / 390 * 100vw) calc(25 / 390 * 100vw) calc(55 / 390 * 100vw);
  }
  .c-modal-guest__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(0 / 390 * 100vw);
    margin-top: 0px;
  }
  .c-modal-guest__title {
    padding-bottom: 0 !important;
  }
  .c-modal-guest__profile {
    width: 212px;
    padding: 0 !important;
  }
  .c-modal-guest__profile img {
    margin: 0 auto;
  }
  .c-modal-guest__comment {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
    padding: calc(30 / 390 * 100vw) calc(45 / 390 * 100vw);
    border-radius: calc(10 / 390 * 100vw);
  }
  .c-modal-guest__comment::before {
    content: "";
    position: absolute;
    top: calc(-10 / 390 * 100vw);
    left: 50%;
    width: calc(32 / 390 * 100vw);
    height: calc(11 / 390 * 100vw);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.l-header-logo {
  position: fixed;
  top: 0;
  left: 0;
  padding: 13px 53px 13px 19px;
  background: #fff;
  border-radius: 0 0 100vmax 0;
  z-index: 99;
}
.l-header-logo img {
  width: 134px;
}
.l-header-hamburger {
  position: fixed;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background: #1b225e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}
.l-header-hamburger span {
  position: relative;
  display: block;
  width: 31px;
  height: 2px;
  background: #fff;
}
.l-header-hamburger span:nth-of-type(2), .l-header-hamburger span:nth-of-type(3) {
  content: "";
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: transform;
}
.l-header-hamburger span:nth-of-type(2) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.l-header-hamburger span:nth-of-type(3) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.l-header-hamburger.is-open span:nth-of-type(1) {
  background: transparent !important;
}
.l-header-hamburger.is-open span:nth-of-type(2) {
  -webkit-transform: translate(0, 0) rotate(45deg);
          transform: translate(0, 0) rotate(45deg);
}
.l-header-hamburger.is-open span:nth-of-type(3) {
  -webkit-transform: translate(0, 0) rotate(-45deg);
          transform: translate(0, 0) rotate(-45deg);
}
.l-header-nav {
  position: fixed;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 565px;
  color: #fff;
  padding: 50px 0;
  background: #1b225e;
  border-radius: 0 0 0 66px;
  z-index: 99;
  -webkit-transform: translateY(-101%);
          transform: translateY(-101%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: transform;
}
.l-header-nav a {
  color: #fff;
}
.l-header-nav.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: calc(100vh - 50px);
  padding-left: 60px;
  padding-bottom: 50px;
  overflow: auto;
}
.l-header-nav__list {
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1.75;
  font-weight: bold;
}
.l-header-nav__item {
  position: relative;
  padding-left: 0.75em;
}
.l-header-nav__item span {
  display: inline-block;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1;
  padding: 0.3em 0.5em;
  border: 1px solid #fff;
}
.l-header-nav__item .is-note {
  font-size: 0.6em;
}
.l-header-nav__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin-top: 0.75em;
  background-color: #fff;
  clip-path: polygon(0.3em 50%, 0% 0%, 0% 0.5em);
}
.l-header-nav__item--toggle {
  cursor: pointer;
}
.l-header-nav__item--toggle::before {
  -webkit-transform: rotate(90deg) translateY(25%);
          transform: rotate(90deg) translateY(25%);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header-nav__item--toggle.is-open::before {
  -webkit-transform: rotate(-90deg) translate(50%, -25%);
          transform: rotate(-90deg) translate(50%, -25%);
}
.l-header-nav__inner {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.75;
  margin-bottom: 0.5em;
}
.l-header-nav__inner li {
  padding: 0;
}
.l-header-nav__inner li::before {
  content: "・";
}

@media only screen and (max-width: 834px) {
  .l-header-logo {
    padding: calc(8 / 390 * 100vw) calc(35 / 390 * 100vw) calc(8 / 390 * 100vw) calc(12 / 390 * 100vw);
  }
  .l-header-logo img {
    width: calc(90 / 390 * 100vw);
  }
  .l-header-hamburger {
    width: calc(60 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
  }
  .l-header-hamburger span {
    width: calc(31 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
  }
  .l-header-nav {
    width: calc(335 / 390 * 100vw);
    padding: calc(30 / 390 * 100vw) 0;
    border-radius: 0 0 0 calc(40 / 390 * 100vw);
  }
  .l-header-nav__wrap {
    max-height: calc(100vh - 30 / 390 * 100vw);
    padding-left: calc(45 / 390 * 100vw);
    padding-bottom: calc(30 / 390 * 100vw);
  }
  .l-header-nav__list {
    font-size: calc(22 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.27;
  }
  .l-header-nav__item:not(:first-of-type) {
    margin-top: calc(20 / 390 * 100vw);
  }
  .l-header-nav__item span {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    margin-bottom: calc(5 / 390 * 100vw);
  }
  .l-header-nav__inner {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.94;
  }
}
.l-header-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  z-index: 15;
}
.l-header-ribbon--tourism {
  background: #fe6149;
}
.l-header-ribbon--tourism2 {
  background: #229ec7;
}
.l-header-ribbon--environment {
  background: #42b249;
}
.l-header-ribbon--front {
  padding: 0 200px;
}
@media screen and (max-width: 1280px) {
  .l-header-ribbon--front {
    padding-right: 60px;
  }
}
.l-header-ribbon__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  width: 250px;
  height: 100%;
  padding: 0 10px;
  color: #1b225e;
}
.l-header-ribbon__button--1st {
  background: #ffdfdb;
}
.l-header-ribbon__button--2nd {
  background: #7ad1e4;
}
.l-header-ribbon__button--environment {
  background: #b3e0b6;
}
.l-header-ribbon__button--business {
  color: #fff;
  background: #1b225e;
}

@media only screen and (max-width: 834px) {
  .l-header-ribbon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: calc(60 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.14;
    text-align: left;
    padding-left: calc(130 / 390 * 100vw);
  }
  .l-header-ribbon--front {
    display: none;
  }
  .l-header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(120 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    padding: 0;
    border-radius: 0;
  }
}
.l-footer {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 200px, #1b225e 200px);
}
.l-footer-reserve {
  position: fixed;
  bottom: 140px;
  right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100px;
  height: 250px;
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  padding: 8px;
  color: #1b225e;
  background: #00ceb5;
  border: 1px solid #1b225e;
  border-radius: 100vmax;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
}
.l-footer-reserve img {
  width: 80px;
  margin-bottom: 15px;
}
.l-footer-reserve p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.3;
}
.l-footer-reserve span {
  font-size: 1.2rem;
  display: block;
  -webkit-writing-mode: rl;
      -ms-writing-mode: rl;
          writing-mode: rl;
  -webkit-writing-mode: normal;
      -ms-writing-mode: normal;
          writing-mode: normal;
  white-space: normal;
  width: 90px;
  text-align: center;
}
.l-footer-reserve.environment {
  color: #fff;
  background: #42b249;
}
.l-footer-reserve.tourism2 {
  color: #fff;
  background: #229ec7;
}
.l-footer-reserve.tourism2.index {
  bottom: 300px;
}
.l-footer-totop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100px;
  height: 100px;
  font-size: 2.1rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  color: #1b225e;
  background: #fff746;
  border: 1px solid #1b225e;
  border-radius: 100vmax;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.l-footer-totop img {
  width: 16px;
  margin-bottom: 5px;
}
.l-footer-main {
  margin-top: -150px;
  padding-top: 60px;
  background: url(../img/common/footer_background.svg) no-repeat center top/100% auto;
}
.l-footer-main a {
  color: #fff;
}
.l-footer-main__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-top: 30px;
}
.l-footer-main__description:first-of-type {
  margin-top: 80px;
}
.l-footer-main__description dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 40px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  color: #1b225e;
  background: #fff;
}
.l-footer-main__description dd {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 2;
  color: #fff;
}
.l-footer-main__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  padding: 35px 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  color: #fff;
  border-top: 1px solid #fff;
}
.l-footer-main__policy {
  width: 240px;
  height: 40px;
}

@media only screen and (max-width: 834px) {
  .l-footer {
    position: relative;
    padding-bottom: 80px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#1b225e));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(200 / 390 * 100vw), #1b225e calc(200 / 390 * 100vw));
  }
  .l-footer-reserve {
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 80px;
    font-size: 2.4rem;
    letter-spacing: 0em;
    line-height: 1;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .l-footer-reserve img {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 50px;
    margin-bottom: 0px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-footer-reserve p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    gap: 5px;
    padding-left: 50px;
    font-size: 1.8rem;
    letter-spacing: 0em;
    line-height: 1.33;
  }
  .l-footer-reserve span {
    font-size: 1rem;
    text-align: left;
    width: 100%;
  }
  .l-footer-reserve.environment.index {
    bottom: 0;
    right: auto;
    left: 0;
    width: 50%;
  }
  .l-footer-reserve.environment.index img {
    width: 35px;
  }
  .l-footer-reserve.tourism2.index {
    bottom: 0;
    width: 50%;
  }
  .l-footer-reserve.tourism2.index img {
    width: 35px;
  }
  .l-footer-totop {
    position: absolute;
    top: 0;
    bottom: auto;
    right: 50%;
    width: calc(80 / 390 * 100vw);
    height: calc(80 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.06;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  .l-footer-totop img {
    width: calc(13 / 390 * 100vw);
    margin-bottom: calc(5 / 390 * 100vw);
  }
  .l-footer-main {
    margin-top: calc(0 / 390 * 100vw);
    padding-top: calc(60 / 390 * 100vw);
    background: url(../img/common/footer_background.svg) no-repeat center top/250% auto;
  }
  .l-footer-main__description {
    width: 350px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(5 / 390 * 100vw);
    margin: 20px auto 0;
  }
  .l-footer-main__description:first-of-type {
    margin-top: 25px;
  }
  .l-footer-main__description dt {
    width: calc(120 / 390 * 100vw);
    height: calc(32 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .l-footer-main__description dd {
    font-size: 1.6rem;
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .l-footer-main__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20 / 390 * 100vw);
    margin-top: 30px;
    padding: 35px 0 50px;
  }
  .l-footer-main__policy {
    width: 180px;
    height: 32px;
  }
  .l-footer-main__copy {
    font-size: calc(10 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
}
.l-main {
  background: url(../img/common/main_background.svg) repeat top center/2100px auto;
  background-color: #f2f2f2;
  background-attachment: fixed;
  padding-bottom: 250px;
}

@media only screen and (max-width: 834px) {
  .l-main {
    background: url(../img/common/main_background.svg) repeat top center/calc(800 / 390 * 100vw) auto;
    padding-bottom: calc(100 / 390 * 100vw);
  }
}
.l-main {
  background: url(../img2026/common/main_background.webp) repeat top center/1440px auto;
  background-color: #fbf8ea;
}

@media only screen and (max-width: 834px) {
  .l-main {
    background: url(../img2026/common/main_background_sp.webp) repeat top center/100% auto;
  }
}
.p-front-fv {
  margin-top: 60px;
  padding: 20px 20px 0;
}
.p-front-fv__wrap {
  position: relative;
  height: 877px;
  background-color: #fff;
  border: 1px solid #1b225e;
  overflow: hidden;
}
.p-front-fv__title {
  position: absolute;
  width: 90%;
  z-index: 1;
  pointer-events: none;
}
.p-front-fv__title span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.3em;
  margin-top: 0.5em;
  color: #fff;
  background: #229ec7;
}
@media only screen and (min-width: 835px) {
  .p-front-fv__title span {
    margin-left: 55px;
  }
}
.p-front-fv__title--tourism {
  max-width: 1188px;
  top: 25px;
  left: 50px;
}
@media only screen and (min-width: 1400px) {
  .p-front-fv__title--tourism {
    left: 100px;
  }
}
.p-front-fv__title--environment {
  max-width: 741px;
  bottom: 10px;
  right: 50px;
}
@media only screen and (min-width: 1400px) {
  .p-front-fv__title--environment {
    right: 100px;
  }
}
.p-front-fv__slide {
  position: relative;
  width: 150%;
  top: 50%;
  left: -25%;
  -webkit-transform: translateY(-50%) rotate(-9.2deg);
          transform: translateY(-50%) rotate(-9.2deg);
  pointer-events: none;
}
.p-front-fv__slide li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 380px;
  -webkit-transform: rotate(9.2deg) skewY(-9.2deg);
          transform: rotate(9.2deg) skewY(-9.2deg);
  overflow: hidden;
}
.p-front-fv__slide li img {
  -webkit-transform: skewY(9.2deg);
          transform: skewY(9.2deg);
  -o-object-fit: contain;
     object-fit: contain;
}
.p-front-fv__catch {
  position: absolute;
  top: 52%;
  left: calc(50% + 20px);
  width: 580px;
  z-index: 1;
}
.p-front-fv__background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1398px;
  height: 877px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-front-news {
  margin-top: 80px;
}
.p-front-news__wrap {
  max-width: 1100px;
}
.p-front-news__inner {
  border: 1px solid #1b225e;
  padding: 20px 48px 0;
  background: #fff;
}
.p-front-news__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 30px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: #1b225e;
}
.p-front-news__more {
  width: 210px;
  height: 35px;
  color: #fff;
  background: #1b225e;
  margin: 0 -49px 0 auto;
}
.p-front-about {
  margin-top: 80px;
}
.p-front-about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 55px;
}
.p-front-about__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 31.3333333333%;
}
.p-front-about__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 5rem;
  letter-spacing: 0.1em;
  line-height: 1.46;
  font-weight: 700;
  color: #1b225e;
  margin-top: -1em;
}
.p-front-about__title span {
  background: #fff;
  padding: 0 0.33em;
  border: 1px solid #1b225e;
}
.p-front-about__title span:nth-of-type(n+2) {
  border-top: 0;
}
.p-front-about__body {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 2;
  margin-top: 2em;
}
.p-front-about__scene {
  display: block;
  max-width: 1350px;
  margin-top: -30px;
  margin-inline: auto;
}
.p-front-benefits {
  margin-top: 100px;
}
.p-front-benefits__wrap {
  padding: 60px 0 100px;
  background-color: #fff;
  background-image: linear-gradient(to right, #f3f3f3 1px, transparent 1px), linear-gradient(to bottom, #f3f3f3 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: top center;
}
.p-front-benefits__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin-top: 40px;
  padding: 50px 50px 50px 60px;
  color: #1b225e;
  background: #ccc;
}
.p-front-benefits__item--green {
  background-color: #b3e0b6;
}
.p-front-benefits__item--green::before {
  background-color: #b3e0b6;
}
.p-front-benefits__item--orange {
  background-color: #f9c99b;
}
.p-front-benefits__item--orange::before {
  background-color: #f9c99b;
}
.p-front-benefits__item--blue {
  background-color: #c8eafe;
}
.p-front-benefits__item--blue::before {
  background-color: #c8eafe;
}
@media only screen and (min-width: 835px) {
  .p-front-benefits__item:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-right: -20px;
  }
  .p-front-benefits__item:nth-of-type(odd):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -119px;
    display: block;
    width: 120px;
    height: 100%;
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
  }
  .p-front-benefits__item:nth-of-type(even) {
    margin-left: -20px;
  }
  .p-front-benefits__item:nth-of-type(even):before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -119px;
    display: block;
    width: 120px;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
}
.p-front-benefits__item img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
  border-radius: 10px;
}
.p-front-benefits__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 3.6rem;
  letter-spacing: 0.025em;
  line-height: 1.17;
  font-weight: 700;
}
.p-front-benefits__main img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  height: 91px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.p-front-benefits__body {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.78;
  margin-top: 35px;
}
.p-front-howto {
  margin-top: 80px;
}
.p-front-howto__wrap {
  margin-top: 40px;
  padding: 60px 100px;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-front-howto__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
}
.p-front-howto__description:nth-of-type(n+2) {
  margin-top: 50px;
}
.p-front-howto__step {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
}
.p-front-howto__title {
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 30px;
}
.p-front-howto__body {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.67;
}
.p-front-howto__body strong {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 2;
  font-weight: 400;
}
.p-front-howto__note {
  margin-top: 1.5em;
}
.p-front-event {
  margin-top: 80px;
}
.p-front-event__wrap {
  padding-bottom: 40px;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-front-event__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 90px;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 700;
  padding-left: 35px;
  color: #fff;
  background: #1b225e;
}
.p-front-event__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
  margin-left: auto;
  background: #fff746;
  border-bottom: 1px solid #1b225e;
}
.p-front-event__icon img {
  width: 40px;
}
.p-front-event__body {
  font-size: 3rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 700;
  padding: 30px;
  color: #1b225e;
}
.p-front-event__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  padding: 0 30px;
}
@media only screen and (max-width: 1200px) {
  .p-front-event__links {
    max-width: 800px;
    margin-inline: auto;
  }
}
.p-front-event__button {
  width: 245px;
  height: 50px;
}
.p-front-business__button {
  width: 400px;
  height: 50px;
  margin: 35px auto 0;
}

@media only screen and (max-width: 834px) {
  .p-front-fv {
    padding: calc(15 / 390 * 100vw) calc(15 / 390 * 100vw) 0;
  }
  .p-front-fv__wrap {
    height: calc(700 / 390 * 100vw);
  }
  .p-front-fv__title--tourism {
    top: calc(10 / 390 * 100vw);
    left: calc(10 / 390 * 100vw);
    width: calc(340 / 390 * 100vw);
  }
  .p-front-fv__title--environment {
    bottom: calc(10 / 390 * 100vw);
    right: calc(10 / 390 * 100vw);
    width: calc(340 / 390 * 100vw);
  }
  .p-front-fv__slide {
    top: 52%;
  }
  .p-front-fv__slide li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(145 / 390 * 100vw);
    height: calc(184 / 390 * 100vw);
  }
  .p-front-fv__slide li img {
    height: calc(285 / 390 * 100vw);
  }
  .p-front-fv__catch {
    top: 57%;
    left: auto;
    right: calc(-5 / 390 * 100vw);
    width: calc(353 / 390 * 100vw);
    z-index: 1;
  }
  .p-front-fv__background {
    width: calc(360 / 390 * 100vw);
    height: calc(700 / 390 * 100vw);
  }
  .p-front-news {
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-front-news__inner {
    padding: 0 calc(15 / 390 * 100vw);
  }
  .p-front-news__title {
    width: calc(75 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .p-front-news__more {
    width: calc(180 / 390 * 100vw);
    height: calc(35 / 390 * 100vw);
    margin: calc(5 / 390 * 100vw) calc(-16 / 390 * 100vw) 0 auto;
  }
  .p-front-about {
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-front-about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30 / 390 * 100vw);
  }
  .p-front-about__image {
    width: calc(300 / 390 * 100vw);
  }
  .p-front-about__title {
    font-size: calc(30 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.67;
    margin-top: 0;
  }
  .p-front-about__body {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 2;
    margin-top: 1.25em;
  }
  .p-front-about__scene {
    width: calc(360 / 390 * 100vw);
    margin-top: calc(30 / 390 * 100vw);
  }
  .p-front-benefits {
    margin-top: calc(95 / 390 * 100vw);
  }
  .p-front-benefits__wrap {
    padding: calc(55 / 390 * 100vw) 0 calc(60 / 390 * 100vw);
  }
  .p-front-benefits__list {
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-front-benefits__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(40 / 390 * 100vw);
    margin-top: calc(30 / 390 * 100vw);
    padding: 30px calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p-front-benefits__item img {
    width: calc(300 / 390 * 100vw);
    border-radius: calc(10 / 390 * 100vw);
  }
  .p-front-benefits__main {
    position: relative;
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0.025em;
    line-height: 1.75;
  }
  .p-front-benefits__main img {
    position: absolute;
    top: calc(-58 / 390 * 100vw);
    left: 0;
    width: calc(60 / 390 * 100vw);
    height: calc(43 / 390 * 100vw);
  }
  .p-front-benefits__body {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 2;
    margin-top: calc(10 / 390 * 100vw);
  }
  .p-front-howto {
    margin-top: calc(60 / 390 * 100vw);
  }
  .p-front-howto__wrap {
    margin-top: calc(30 / 390 * 100vw);
    padding: calc(30 / 390 * 100vw);
  }
  .p-front-howto__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(25 / 390 * 100vw);
  }
  .p-front-howto__description:nth-of-type(n+2) {
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-front-howto__step {
    width: calc(150 / 390 * 100vw);
  }
  .p-front-howto__title {
    font-size: calc(30 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    text-align: center;
    margin-bottom: calc(20 / 390 * 100vw);
  }
  .p-front-howto__body {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
  }
  .p-front-howto__body strong {
    display: inline-block;
    width: 100%;
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 2;
    text-align: center;
  }
  .p-front-event {
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-front-event__wrap {
    padding-bottom: calc(40 / 390 * 100vw);
    background: #fff;
    border: 1px solid #1b225e;
  }
  .p-front-event__title {
    height: calc(60 / 390 * 100vw);
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.25;
    padding-left: calc(15 / 390 * 100vw);
  }
  .p-front-event__icon {
    width: calc(60 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
  }
  .p-front-event__icon img {
    width: calc(26 / 390 * 100vw);
  }
  .p-front-event__body {
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.42;
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p-front-event__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: calc(30 / 390 * 100vw);
    padding: 0 calc(30 / 390 * 100vw);
  }
}
@media only screen and (max-width: 834px) and (max-width: 1200px) {
  .p-front-event__links {
    max-width: calc(800 / 390 * 100vw);
    margin-inline: auto;
  }
}
@media only screen and (max-width: 834px) {
  .p-front-event__button {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(300 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    padding: 0 20px;
  }
  .p-front-event__button:first-of-type {
    background: #fff746;
  }
  .p-front-business__button {
    width: calc(180 / 390 * 100vw);
    height: calc(35 / 390 * 100vw);
    margin: calc(35 / 390 * 100vw) auto 0;
  }
}
.p-front-fv__wrap {
  height: 710px;
}
@media only screen and (max-width: 834px) {
  .p-front-fv__wrap {
    height: calc(644 / 390 * 100vw);
  }
}
.p-front-fv__title {
  width: 95%;
}
.p-front-fv__title--top {
  max-width: 1150px;
  top: 10px;
  left: 1%;
}
@media only screen and (max-width: 834px) {
  .p-front-fv__title--top {
    top: calc(10 / 390 * 100vw);
    left: calc(10 / 390 * 100vw);
    width: calc(340 / 390 * 100vw);
  }
}
.p-front-fv__title--bottom {
  max-width: 730px;
  bottom: 15px;
  right: 3%;
}
@media only screen and (max-width: 834px) {
  .p-front-fv__title--bottom {
    bottom: calc(10 / 390 * 100vw);
    right: calc(10 / 390 * 100vw);
    width: calc(340 / 390 * 100vw);
  }
}
.p-front-fv .p-index-fv__slide {
  pointer-events: none;
  top: 46.5%;
}
@media only screen and (max-width: 834px) {
  .p-front-fv .p-index-fv__slide {
    top: 46%;
  }
}
.p-front-fv__catch {
  top: 45%;
  left: auto;
  right: 0;
}
@media only screen and (max-width: 834px) {
  .p-front-fv__catch {
    top: 48%;
  }
}
.p-front-fv__background {
  height: 710px;
}
@media only screen and (max-width: 834px) {
  .p-front-fv__background {
    height: calc(660 / 390 * 100vw);
  }
}

.p-front-event__wrap + .p-front-event__wrap {
  border-top: 0;
}

html.is-fixed {
  overflow: hidden;
}

.l-header-logo02 {
  max-width: 337px;
  width: 100%;
  margin: 10px auto;
}
.l-header-btn {
  z-index: 100;
  position: fixed;
  top: 4px;
  right: 70px;
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  color: #1b225e;
  background: #00ceb5;
  border: 1px solid #1b225e;
  border-radius: 100vmax;
  padding: 5px 20px 5px 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header-btn img {
  width: 40px;
}

.p-post-news__category.is-tourism {
  background: #f9c99b;
}
.p-post-news__category.is-tourism2 {
  background: #f9c99b;
}
.p-post-news__category.is-environment {
  background: #b3e0b6;
}

.p-post-news__category .c-section-heading span {
  color: #767a9e;
}

.c-modal__block {
  width: auto;
}
.c-modal-guest__title {
  background-color: #1b225e;
  color: #fff;
  text-align: center;
  max-width: 525px;
  width: 100%;
  line-height: 50px;
  font-size: 3rem;
  font-weight: bold;
  margin: auto;
  border-radius: 50px;
  position: relative;
}
.c-modal-guest__title small {
  font-size: 2rem;
}
.c-modal-guest__title::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #1b225e;
  border-bottom: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-modal-guest__wrap {
  display: block;
}
.c-modal-guest__profile {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  width: 700px;
}
.c-modal-guest__profile--left {
  position: relative;
  width: 200px;
}
.c-modal-guest__profile--left .c-modal-guest__profile--tag {
  top: 60px;
  left: -14px;
}
.c-modal-guest__profile--right {
  position: relative;
  width: 160px;
}
.c-modal-guest__profile--right .c-modal-guest__profile--tag {
  top: 40px;
  right: -14px;
}
.c-modal-guest__profile--tag {
  position: absolute;
  background-color: #1b225e;
  color: #fff;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 20px 10px;
  border-radius: 50px;
  font-size: 2.4rem;
  margin: 0 !important;
}
.c-modal-guest__profile--name {
  text-align: center;
}
.c-modal-guest__txt {
  max-width: 700px;
}
.c-modal-guest__txt-box {
  background-color: #f2f2f2;
  padding: 0 0 40px;
}
.c-modal-guest__txt-box__ttl {
  font-weight: bold;
  background-color: #1b225e;
  color: #fff;
  font-size: 18px;
  border-radius: 0 0 10px 0;
  padding: 10px 20px;
  display: inline-block;
}
.c-modal-guest__txt-box p {
  padding: 30px 25px 0;
  font-size: 1.8rem;
  line-height: 3.5rem;
}
.c-modal-guest__txt-box a {
  text-decoration: underline;
  color: #1b225e;
}
.c-modal-guest__txt-box:nth-of-type(n+2) {
  margin-top: 20px;
}

.p-front-fv {
  margin-top: 0;
}
.p-front-fv__wrap {
  max-width: 1200px;
  border: none;
  background-color: initial;
}
.p-front-anc__list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.p-front-anc__list li {
  width: 11.1111111111%;
  background-color: #fff;
  border: 1px solid #1b225e;
}
.p-front-anc__list li:hover {
  background-color: #fff746;
  opacity: 1;
}
.p-front-about__wrap .slider_about {
  width: 375px;
}
.p-front-about__wrap .slider_about .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0px 2px;
}
.p-front-about__wrap .slider_about .slick-dots li button::before {
  top: -30px;
  font-size: 10px;
  color: #fff;
  line-height: 10px;
  width: 10px;
  height: 10px;
  opacity: 0.5;
}
.p-front-about__wrap .slider_about .slick-dots li.slick-active button::before {
  opacity: 1;
}
.p-front-about__title span:nth-of-type(n+2) {
  border-top: 1px solid #1b225e;
  margin-top: 10px;
}
.p-front-about__body {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
.p-front-benefits__list {
  width: 1200px;
  margin: auto;
  position: relative;
}
.p-front-benefits__list .slick-num {
  text-align: center;
  color: #1b225e;
  font-weight: bold;
  font-size: 18px;
  line-height: 50px;
}
.p-front-benefits__list .slick-arrow {
  width: 50px;
  height: 50px;
}
.p-front-benefits__list .slick-arrow.slick-prev {
  bottom: 0;
  top: auto;
  left: 40%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.p-front-benefits__list .slick-arrow.slick-prev::before {
  content: "";
  background-image: url(../img2026/front/benefits_arw_p.svg);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  opacity: 1;
}
.p-front-benefits__list .slick-arrow.slick-next {
  bottom: 0;
  top: auto;
  left: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.p-front-benefits__list .slick-arrow.slick-next::before {
  content: "";
  background-image: url(../img2026/front/benefits_arw_n.svg);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  opacity: 1;
}
.p-front-benefits__item {
  min-height: 418px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.p-front-benefits__item:nth-of-type(odd) {
  margin: 40px auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-front-benefits__item:nth-of-type(odd):before {
  content: none;
}
.p-front-benefits__item:nth-of-type(even) {
  margin: 40px auto;
}
.p-front-benefits__item:nth-of-type(even):before {
  content: none;
}
.p-front-company--tourism h3 {
  background: #1b225e !important;
  border-radius: 5px;
  margin-left: 0 !important;
}
.p-front-company__wrap {
  padding: 20px 0 !important;
}
.p-front-company__slide {
  padding: 0 30px;
  max-height: 470px;
  overflow-y: scroll;
}
.p-front-company__slide .note {
  text-align: right;
}
.p-front-company__list-box {
  gap: 25px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.p-front-company__list small {
  display: inline;
  font-size: 80%;
}
.p-front-company__link {
  font-weight: bold;
  background: #fff746;
}
.p-front-contents__wrap {
  padding: 30px 20px 40px !important;
}
.p-front-contents .js-modal-button {
  background-color: #fff746 !important;
}
.p-front-contents__links {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-front-contents__links-box {
  width: calc((100% - 30px) / 2);
}
.p-front-contents__links__item {
  background-color: #fff;
  border: 1px solid #1b225e;
}
.p-front-contents__links__item:nth-of-type(n+2) {
  margin-top: 30px;
}
.p-front-contents__links__item h3 {
  background-color: #1b225e;
  color: #fff;
  padding: 10px;
  max-width: 350px;
  width: 80%;
  border-radius: 0 0 10px 10px;
  text-align: center;
  margin: auto;
  font-size: 3rem;
  font-weight: bold;
}
.p-front-contents__links__item ul {
  padding: 30px 40px 40px;
}
.p-front-contents__links__item ul li {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-front-contents__links__item ul li:first-of-type {
  margin-top: 0;
}
.p-front-contents__links__item ul li p {
  width: 150px;
  padding: 10px 0;
  border: 1px solid #1b225e;
  border-radius: 50px;
  color: #1b225e;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: -0.1rem;
  text-align: center;
  margin-right: 30px;
}
.p-front-contents__links__item ul li p.booth {
  background-color: #d4eef9;
}
.p-front-contents__links__item ul li p.seminar {
  background-color: #c2e6c5;
}
.p-front-contents__links__item ul li p.web {
  background-color: #f7cbd7;
}
.p-front-contents__links__item ul li a {
  cursor: pointer;
  letter-spacing: -0.1rem;
  color: #1b225e;
  text-decoration: underline;
  font-weight: bold;
  font-size: 24px;
}
.p-front-contents__links__item ul li a small {
  font-size: 18px;
}
.p-front-contents__links__item ul li a.js-modal-button {
  background-color: initial !important;
}
.p-front-contents__links__item ul li a:hover {
  background-color: #fff746 !important;
  opacity: 1;
}
.p-front-contents__links__comment {
  max-width: 220px;
  margin: 50px auto 0;
}
.p-front-contents__popup {
  max-width: 800px;
}
.p-front-contents__popup .c-modal__inner {
  padding: 50px 40px 40px;
  border: 1px solid #1b225e;
}
.p-front-contents__popup img {
  width: 350px;
  height: 210px;
  display: block;
  margin: auto;
}
.p-front-contents__popup h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}
.p-front-contents__popup h3 .-area {
  width: 150px;
  padding: 10px 0;
  border: 1px solid #1b225e;
  border-radius: 50px;
  color: #1b225e;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: -0.1rem;
  text-align: center;
  margin-right: 30px;
}
.p-front-contents__popup h3 .-area.booth {
  background-color: #d4eef9;
}
.p-front-contents__popup h3 .-area.seminar {
  background-color: #c2e6c5;
}
.p-front-contents__popup h3 .-area.web {
  background-color: #f7cbd7;
}
.p-front-contents__popup h3 .-name {
  font-size: 2.4rem;
  color: #1b225e;
  font-weight: bold;
}
.p-front-contents__popup__txt {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}
.p-front-contents__popup ul {
  margin-top: 20px;
  color: #000;
}
.p-front-contents__popup ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-front-contents__popup ul li:nth-of-type(n+2) {
  margin-top: 15px;
}
.p-front-contents__popup ul li p {
  font-weight: bold;
  font-size: 1.8rem;
}
.p-front-contents__popup ul li .popup-tag {
  color: #fff;
  margin-right: 20px;
  border-radius: 50px;
  width: 130px;
  text-align: center;
  padding: 5px;
  line-height: 1;
}
.p-front-contents__popup ul li .popup-tag.-kanko {
  background-color: #e83958;
}
.p-front-contents__popup ul li .popup-tag.-kensetsu {
  background-color: #ed6f00;
}
.p-front-contents__popup ul li .popup-tag.-unyu {
  background-color: #0068b7;
}
.p-front-contents__popup .note {
  margin-top: 10px;
  font-size: 1.6rem;
}
.p-front-faq__description dt {
  background: #1b225e !important;
}
.p-front-faq__description dd {
  padding: 20px 20px 0 !important;
}
.p-front-howto__note {
  margin-top: 40px;
}
.p-front-howto__description dd {
  color: #1b225e;
}
.p-front-howto .p-front-business__button {
  background: #fff746;
  font-weight: bold;
}

@media only screen and (max-width: 834px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 1000;
  }
  .l-header.is-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .l-header-logo02 {
    display: none;
  }
  .l-header-btn {
    display: none;
  }
  .c-modal__block {
    width: 92.3076923077vw;
  }
  .c-modal-guest__title {
    margin-bottom: 7.6923076923vw;
  }
  .c-modal-guest__title small {
    font-size: 2rem;
  }
  .c-modal-guest__title::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #1b225e;
    border-bottom: 0;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .c-modal-guest__wrap {
    display: block;
  }
  .c-modal-guest__profile {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    width: auto;
  }
  .c-modal-guest__profile--left {
    position: relative;
    width: 30.7692307692vw;
  }
  .c-modal-guest__profile--left .c-modal-guest__profile--tag {
    top: 50px;
    left: -14px;
  }
  .c-modal-guest__profile--right {
    position: relative;
    width: 25.641025641vw;
  }
  .c-modal-guest__profile--right .c-modal-guest__profile--tag {
    top: 40px;
    right: -14px;
  }
  .c-modal-guest__profile--tag {
    position: absolute;
    background-color: #1b225e;
    color: #fff;
    font-weight: bold;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding: 20px 10px;
    border-radius: 50px;
    font-size: 2.4rem;
    margin: 0 !important;
  }
  .c-modal-guest__profile--name {
    text-align: center;
  }
  .c-modal-guest__txt {
    max-width: 700px;
  }
  .c-modal-guest__txt-box {
    background-color: #f2f2f2;
    padding: 0 0 40px;
  }
  .c-modal-guest__txt-box__ttl {
    font-weight: bold;
    background-color: #1b225e;
    color: #fff;
    font-size: 18px;
    border-radius: 0 0 10px 0;
    padding: 10px 20px;
    display: inline-block;
  }
  .c-modal-guest__txt-box p {
    padding: 30px 25px 0;
    font-size: 1.8rem;
    line-height: 3.5rem;
  }
  .c-modal-guest__txt-box a {
    text-decoration: underline;
    color: #1b225e;
  }
  .c-modal-guest__txt-box:nth-of-type(n+2) {
    margin-top: 20px;
  }
  .p-front-fv {
    padding: 0;
  }
  .p-front-fv__wrap {
    height: auto;
  }
  .p-front-anc {
    display: none;
  }
  .p-front-about {
    margin-top: 20.5128205128vw;
  }
  .p-front-about__wrap .slider_about {
    width: 300px;
  }
  .p-front-about__title span:nth-of-type(n+2) {
    border-top: none;
    margin-top: 0;
  }
  .p-front-about__body {
    font-size: 4.1025641026vw;
  }
  .p-front-benefits .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-front-benefits .slick-slide {
    height: auto !important;
  }
  .p-front-benefits__list {
    width: auto;
    padding: 0px 15px;
  }
  .p-front-benefits__list .slick-num {
    font-size: 4.6153846154vw;
  }
  .p-front-benefits__list .slick-arrow.slick-prev {
    -webkit-transform: none;
            transform: none;
    left: calc(50% - 112px);
  }
  .p-front-benefits__list .slick-arrow.slick-next {
    left: auto;
    -webkit-transform: none;
            transform: none;
    right: calc(50% - 112px);
  }
  .p-front-benefits__item {
    min-height: auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-front-benefits__item:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-front-company--tourism h3 {
    border-radius: 5px;
  }
  .p-front-company__wrap {
    padding: 20px 0 !important;
  }
  .p-front-company__slide {
    padding: 0 15px;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    overflow-y: initial;
  }
  .p-front-company__slide .note {
    margin-top: 10px;
  }
  .p-front-company__list-box {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-front-company__list h3 {
    width: 100% !important;
    height: 50px;
    line-height: 50px;
    padding-left: 15px !important;
    position: relative;
  }
  .p-front-company__list h3::before, .p-front-company__list h3::after {
    position: absolute;
    top: 50%;
    right: 25px;
    content: "";
    display: block;
    background: #fff;
    border-radius: 100vmax;
    right: 2.5641025641vw;
    width: 4.1025641026vw;
    height: 0.5128205128vw;
  }
  .p-front-company__list h3::after {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .p-front-company__list h3.is-open::after {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .p-front-contents__wrap {
    padding: 8.9743589744vw 2.5641025641vw 5.1282051282vw !important;
  }
  .p-front-contents__links-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-front-contents__links__item {
    width: 100%;
    margin-top: 30px;
  }
  .p-front-contents__links__item h3 {
    max-width: none;
    line-height: 1;
    padding: 1.7948717949vw;
    font-size: 6.1538461538vw;
  }
  .p-front-contents__links__item ul {
    padding: 5.1282051282vw 3.8461538462vw 7.6923076923vw;
  }
  .p-front-contents__links__item ul li {
    margin-top: 5.1282051282vw;
  }
  .p-front-contents__links__item ul li p {
    margin-right: 3.8461538462vw;
    width: 30.7692307692vw;
    padding: 1.2820512821vw;
    font-size: 3.5897435897vw;
  }
  .p-front-contents__links__item ul li a {
    font-size: 4.6153846154vw;
  }
  .p-front-contents__links__item ul li a small {
    font-size: 3.5897435897vw;
  }
  .p-front-contents__links__item ul li a.js-modal-button {
    background-color: initial !important;
  }
  .p-front-contents__links__comment {
    width: 38.4615384615vw;
    max-width: none;
    margin: 0 auto 0;
  }
  .p-front-contents__popup {
    max-width: none;
    width: 92.3076923077vw;
  }
  .p-front-contents__popup .c-modal__inner {
    padding: 6.4102564103vw 6.4102564103vw 14.1025641026vw;
  }
  .p-front-contents__popup img {
    width: 51.2820512821vw;
    height: auto;
    display: block;
    margin: auto;
  }
  .p-front-contents__popup h3 {
    margin: 5.1282051282vw auto 5.1282051282vw 0;
    margin-top: 20px;
    display: block;
    line-height: 1.5;
  }
  .p-front-contents__popup h3 .-area {
    width: 150px;
    padding: 1.2820512821vw 0;
    border: 1px solid #1b225e;
    border-radius: 50px;
    color: #1b225e;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: -0.1rem;
    text-align: center;
    margin-right: 30px;
  }
  .p-front-contents__popup h3 .-name {
    margin-top: 2.5641025641vw;
    font-size: 2.4rem;
    color: #1b225e;
    font-weight: bold;
  }
  .p-front-contents__popup__txt {
    font-size: 18px;
    line-height: 30px;
    color: #000;
  }
  .p-front-contents__popup ul {
    margin-top: 5.1282051282vw;
  }
  .p-front-contents__popup ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-front-contents__popup ul li:nth-of-type(n+2) {
    margin-top: 15px;
  }
  .p-front-contents__popup ul li p {
    font-weight: bold;
    font-size: 1.8rem;
  }
  .p-front-contents__popup ul li .popup-tag {
    color: #fff;
    margin-right: 20px;
    border-radius: 50px;
    width: 130px;
    text-align: center;
    padding: 5px;
    line-height: 1;
  }
  .p-front-contents__popup ul li .popup-tag.-kanko {
    background-color: #e83958;
  }
  .p-front-contents__popup ul li .popup-tag.-kensetsu {
    background-color: #ed6f00;
  }
  .p-front-contents__popup ul li .popup-tag.-unyu {
    background-color: #0068b7;
  }
  .p-front-contents__popup .note {
    margin-top: 2.5641025641vw;
    font-size: 1.6rem;
  }
  .p-front-faq__description dt {
    background: #1b225e !important;
  }
  .p-front-faq__description dd {
    font-size: 4.1025641026vw !important;
  }
  .p-front-howto__note {
    margin-top: 40px;
  }
}
/* =================================
    観光・建設・運輸業界
    tourism-construction-transport
   ================================= */
.p-index-fv {
  position: relative;
  padding: 20px 20px 0;
}
.p-index-fv__end {
  position: absolute;
  top: 20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 815px;
  font-size: 2.8rem;
  letter-spacing: 0em;
  line-height: 1.79;
  font-weight: 700;
  text-align: center;
  color: #1b225e;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.p-index-fv__end--tourism2 {
  height: 675px;
}
.p-index-fv__wrap {
  position: relative;
  height: 745px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  overflow: hidden;
}
.p-index-fv__wrap--tourism {
  background-image: url(../img/tourism/fv_bg_pc.svg);
}
.p-index-fv__title {
  position: absolute;
  top: 17px;
  left: 55px;
  width: calc(100% - 100px);
  max-width: 977px;
  z-index: 1;
}
.p-index-fv__slide {
  position: relative;
  width: 106%;
  top: 70%;
  left: -3%;
  -webkit-transform: translateY(-50%) rotate(-9.2deg);
          transform: translateY(-50%) rotate(-9.2deg);
}
.p-index-fv__slide li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 335px;
  height: 270px;
  -webkit-transform: rotate(9.2deg) skewY(-9.2deg);
          transform: rotate(9.2deg) skewY(-9.2deg);
  overflow: hidden;
  background: #000;
}
.p-index-fv__slide li img {
  -webkit-transform: skewY(9.2deg);
          transform: skewY(9.2deg);
  height: 325px;
  max-width: none;
}
.p-index-fv__catch {
  position: absolute;
  top: 48%;
  left: 50px;
  width: 471px;
  z-index: 1;
}
.p-index-fv__list {
  position: relative;
  top: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-bottom: -40px;
}
.p-index-fv__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 170px;
  height: 110px;
  font-size: 3rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#ee7800), to(#e79c52));
  background: linear-gradient(to right, #ee7800, #e79c52);
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
}
.p-index-fv__lead {
  text-align: left;
  margin-top: 70px;
}
.p-index-fv__link {
  width: 390px;
  height: 50px;
  margin: 30px auto 0;
}
.p-index-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
.p-index-nav__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  height: 200px;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  color: #1b225e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-index-nav__button:not(:last-of-type) {
  border-right: 1px solid #1b225e;
}
.p-index-nav__button img {
  width: 100%;
  max-width: none;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
@media only screen and (min-width: 835px) {
  .p-index-nav__button:hover {
    opacity: 1;
    background: #fff746;
  }
}
@media only screen and (max-width: 1200px) {
  .p-index-nav {
    max-width: 600px;
  }
  .p-index-nav__button:nth-of-type(3) {
    border-right: none;
  }
  .p-index-nav__button:nth-of-type(n+4) {
    border-top: 1px solid #1b225e;
  }
}
.p-index-outline {
  margin-top: 80px;
}
.p-index-outline__wrap {
  margin-top: 50px;
  padding: 50px;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.25;
  font-weight: 700;
  color: #1b225e;
  background: #fff;
  border: 1px solid #1b225e;
}
@media only screen and (max-width: 1200px) {
  .p-index-outline__wrap {
    padding-bottom: 325px;
  }
}
.p-index-outline__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.p-index-outline__description:first-of-type {
  margin-top: 30px;
}
.p-index-outline__description dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
  width: 120px;
  height: 35px;
  border: 1px solid #1b225e;
  border-radius: 100vmax;
}
.p-index-outline__description small {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 400;
}
.p-index-outline__date strong {
  display: inline-block;
  font-size: 5rem;
  letter-spacing: 0em;
  line-height: 1;
  margin-top: -26px;
}
.p-index-outline__target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 45px;
  margin-top: -10px;
}
.p-index-outline__target li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
}
.p-index-outline__target li::before {
  content: "";
  display: block;
  width: 39px;
  height: 39px;
  background: url(../img/common/icon_check.svg) no-repeat center/contain;
}
.p-index-outline__note {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.75;
  font-weight: 400;
  margin-top: 10px;
}
.p-index-outline__station {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
  font-weight: 400;
}
.p-index-outline__map {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 400px;
  height: 250px;
}
.p-index-outline__map iframe {
  width: 100%;
  height: 100%;
}
.p-index-company {
  margin-top: 100px;
}
.p-index-company--tourism h3 {
  background: #fe6149;
}
.p-index-company__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.p-index-company__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 75px;
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  color: #1b225e;
  background: #f2f2f2;
  border: 1px solid #1b225e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.p-index-company__button.is-current {
  background: #fff746;
  pointer-events: none;
}
.p-index-company__button.is-current::before, .p-index-company__button.is-current::after {
  content: "";
  position: absolute;
  left: calc(50% - 12.5px);
  width: 25px;
  height: 10px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.p-index-company__button.is-current::after {
  bottom: -10px;
  background: #fff746;
}
.p-index-company__button.is-current::before {
  bottom: -11px;
  background: #1b225e;
}
@media only screen and (min-width: 835px) {
  .p-index-company__button:hover {
    background: #fff746;
  }
}
.p-index-company__wrap {
  display: none;
  padding: 50px;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.33;
  margin-top: 40px;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-index-company__wrap.is-open {
  display: block;
}
@media only screen and (min-width: 835px) {
  .p-index-company__slide.splide {
    visibility: visible;
  }
  .p-index-company__slide .splide__list {
    gap: 25px;
  }
}
.p-index-company__list {
  width: calc(33.333% - 25px + 8.3333333333px);
}
.p-index-company__list h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  color: #fff;
  margin-left: -0.25em;
  padding: 0 0.5em;
}
.p-index-company__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.p-index-company__list li::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: 9px 8px 0 0;
  background: #1a1a1a;
  border-radius: 100vmax;
}
.p-index-company__pagination {
  display: none;
}
.p-index-company__link {
  width: 390px;
  height: 50px;
  margin: 30px auto 0;
}
.p-index-company__note {
  text-align: right;
  font-size: 0.8em;
  margin-top: 0.5em;
}
.p-index-contents {
  margin-top: 100px;
}
.p-index-contents__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 20px 0;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 2.25;
  margin-top: 40px;
  color: #1b225e;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-index-contents__title {
  width: 100%;
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1.28;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.p-index-contents__guest {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-index-contents__guest img {
  width: 212px;
  border-radius: 100vmax;
  border: 1px solid #1b225e;
}
.p-index-contents__guest p {
  font-size: 1.7rem;
  letter-spacing: 0em;
  line-height: 1.24;
  margin: 20px 0 30px;
}
.p-index-contents__guest strong {
  font-size: 2.1rem;
  letter-spacing: 0em;
  line-height: 1;
}
.p-index-contents__guest button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 310px;
  height: 50px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  color: #1b225e;
  background: #f2f2f2;
  border: 1px solid #1b225e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 835px) {
  .p-index-contents__guest button:hover {
    background: #fff746;
  }
}
@media only screen and (max-width: 1200px) {
  .p-index-contents__guest button {
    width: 260px;
  }
}
.p-index-contents__guest--moderator {
  padding-bottom: 10px;
}
.p-index-contents__guest--moderator img {
  width: 170px;
}
.p-index-contents__date {
  position: absolute;
  top: -25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85px;
  height: 85px;
  font-size: 1.7rem;
  letter-spacing: 0em;
  line-height: 1.24;
  font-weight: 700;
  background: #fff;
  border: 1px solid #1b225e;
  border-bottom-width: 5px;
  border-radius: 100vmax;
}
.p-index-contents__date--left {
  left: -45px;
}
.p-index-contents__date--right {
  right: -45px;
}
.p-index-contents__more {
  width: 320px;
  height: 35px;
  margin: 0 -21px -1px calc(100% - 300px);
  color: #fff;
  background: #1b225e;
}
.p-index-contents__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.p-index-contents__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
  width: calc(50% - 15px);
  height: 150px;
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1.17;
  font-weight: 700;
  padding: 0 20px;
  color: #1b225e;
  background: #fff;
  border: 1px solid #1b225e;
}
@media only screen and (min-width: 835px) {
  .p-index-contents__links a:hover {
    opacity: 1;
    background: #fff746;
  }
}
.p-index-contents__links img {
  width: 110px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-index-seminar {
  margin-top: 80px;
}
.p-index-seminar__wrap {
  padding: 50px 20px 60px;
  margin-top: 40px;
  color: #1b225e;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-index-seminar__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
}
.p-index-seminar__lead img {
  width: 246px;
}
.p-index-seminar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.p-index-seminar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.p-index-seminar__item img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
}
.p-index-seminar__item dl {
  width: 200px;
}
.p-index-seminar__item dt {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 2;
  font-weight: 700;
}
.p-index-seminar__item dd {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 2.22;
}
.p-index-seminar__link {
  width: 460px;
  height: 50px;
  margin: 40px auto 0;
}
.p-index-benefits {
  margin-top: 100px;
}
.p-index-benefits__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 20px;
  padding: 40px 20px;
  margin-top: 40px;
  color: #1b225e;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-index-benefits__block {
  width: 255px;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.33;
  text-align: center;
  padding-top: 20px;
}
.p-index-benefits__block img {
  border: 1px solid #1b225e;
  border-radius: 10px;
}
.p-index-benefits__block h3 {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.08;
  font-weight: 700;
  text-align: center;
  margin: 15px 0;
  padding: 0.35em;
  color: #fff;
  background: #1b225e;
  border-radius: 10px;
}
.p-index-benefits__block h3 span {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.5;
}
.p-index-benefits__line {
  width: 1px;
  height: 385px;
  background: #1b225e;
}
.p-index-benefits__note {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.38;
  margin-top: 0.75em;
}
.p-index-faq {
  margin-top: 80px;
}
.p-index-faq__wrap {
  padding: 60px 0 100px;
  background-color: #fff;
  background-image: linear-gradient(to right, #f3f3f3 1px, transparent 1px), linear-gradient(to bottom, #f3f3f3 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: top center;
}
.p-index-faq__description {
  margin-top: 40px;
}
.p-index-faq__description dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.46;
  padding: 10px 70px 10px 30px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#ee7800), to(#e79c52));
  background: linear-gradient(to right, #ee7800, #e79c52);
  border-radius: 10px;
  cursor: pointer;
}
.p-index-faq__description dt::before, .p-index-faq__description dt::after {
  position: absolute;
  top: 50%;
  right: 25px;
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 100vmax;
}
.p-index-faq__description dt::after {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-index-faq__description dt.is-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.p-index-faq__description dd {
  display: none;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.75;
  padding: 20px;
}
.p-index-faq__description span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  font-size: 3.5rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
}
.p-index-faq__description span::after {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  background: #fff;
}
.p-index-faq__description:nth-of-type(n+2) {
  margin-top: 50px;
}
.p-index-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 70px;
}
@media only screen and (max-width: 1400px) {
  .p-index-banner {
    max-width: 800px;
  }
}
.p-index-banner img {
  width: 315px;
  border: 1px solid #bfbfbf;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media only screen and (max-width: 834px) {
  .p-index-fv {
    padding: calc(15 / 390 * 100vw) calc(15 / 390 * 100vw) 0;
  }
  .p-index-fv__end {
    top: calc(15 / 390 * 100vw);
    height: calc(620 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.78;
  }
  .p-index-fv__end--tourism2 {
    height: calc(585 / 390 * 100vw);
  }
  .p-index-fv__wrap {
    height: calc(460 / 390 * 100vw);
    background-size: 100% auto;
  }
  .p-index-fv__wrap--tourism {
    background-image: url(../img/tourism/fv_bg_sp.svg);
  }
  .p-index-fv__title {
    top: calc(17 / 390 * 100vw);
    left: calc(10 / 390 * 100vw);
    width: calc(340 / 390 * 100vw);
    z-index: 1;
  }
  .p-index-fv__slide {
    top: 72.5%;
  }
  .p-index-fv__slide li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(145 / 390 * 100vw);
    height: calc(115 / 390 * 100vw);
  }
  .p-index-fv__slide li img {
    -webkit-transform: skewY(9.2deg);
            transform: skewY(9.2deg);
    height: calc(150 / 390 * 100vw);
    max-width: none;
  }
  .p-index-fv__catch {
    top: auto;
    bottom: 0;
    left: auto;
    right: calc(-5 / 390 * 100vw);
    width: calc(353 / 390 * 100vw);
    z-index: 1;
  }
  .p-index-fv__list {
    top: calc(0 / 390 * 100vw);
    gap: calc(15 / 390 * 100vw);
    margin-top: calc(25 / 390 * 100vw);
    margin-bottom: calc(0 / 390 * 100vw);
  }
  .p-index-fv__list li {
    width: calc(90 / 390 * 100vw);
    height: calc(58 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.19;
    clip-path: polygon(calc(10 / 390 * 100vw) 0%, calc(100% - 10 / 390 * 100vw) 0%, 100% calc(10 / 390 * 100vw), 100% calc(100% - 10 / 390 * 100vw), calc(100% - 10 / 390 * 100vw) 100%, calc(10 / 390 * 100vw) 100%, 0% calc(100% - 10 / 390 * 100vw), 0% calc(10 / 390 * 100vw));
  }
  .p-index-fv__lead {
    margin-top: calc(35 / 390 * 100vw);
  }
  .p-index-fv__link {
    width: calc(320 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    margin: calc(30 / 390 * 100vw) auto 0;
    background-color: #fff746;
  }
  .p-index-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-index-nav__button {
    width: calc(118 / 390 * 100vw);
    height: calc(118 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-index-nav__button img {
    height: calc(60 / 390 * 100vw);
    margin-bottom: calc(10 / 390 * 100vw);
  }
  .p-index-outline {
    margin-top: calc(80 / 390 * 100vw);
  }
  .p-index-outline__wrap {
    margin-top: calc(50 / 390 * 100vw);
    padding: 0 calc(10 / 390 * 100vw);
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
  }
  .p-index-outline__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20 / 390 * 100vw);
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-index-outline__description:first-of-type {
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-index-outline__description dt {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    width: calc(120 / 390 * 100vw);
    height: calc(35 / 390 * 100vw);
  }
  .p-index-outline__description small {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
  }
  .p-index-outline__date strong {
    font-size: calc(30 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    margin-top: calc(0 / 390 * 100vw);
  }
  .p-index-outline__target {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(10 / 390 * 100vw);
    margin-top: calc(0 / 390 * 100vw);
  }
  .p-index-outline__target li {
    gap: calc(8 / 390 * 100vw);
  }
  .p-index-outline__target li::before {
    width: calc(39 / 390 * 100vw);
    height: calc(39 / 390 * 100vw);
  }
  .p-index-outline__note {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
    margin-top: calc(20 / 390 * 100vw);
  }
  .p-index-outline__station {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
  }
  .p-index-outline__map {
    position: static;
    width: calc(100% + 20 / 390 * 100vw);
    height: calc(250 / 390 * 100vw);
    margin: 40px -10px 0;
  }
  .p-index-company {
    margin-top: calc(100 / 390 * 100vw);
  }
  .p-index-company__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: calc(10 / 390 * 100vw);
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-index-company__button {
    height: calc(75 / 390 * 100vw);
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-index-company__button.is-current::after {
    bottom: calc(-9 / 390 * 100vw);
  }
  .p-index-company__button.is-current::before {
    bottom: calc(-10 / 390 * 100vw);
  }
  .p-index-company__wrap {
    padding: calc(15 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin-top: calc(25 / 390 * 100vw);
  }
  .p-index-company__slide .splide__arrow {
    top: auto;
    bottom: calc(-100 / 390 * 100vw);
    width: calc(50 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    opacity: 1;
  }
  .p-index-company__slide .splide__arrow--prev {
    background: url(../img/common/slide_arrow_prev.svg) no-repeat center/contain;
    left: calc(30 / 390 * 100vw);
  }
  .p-index-company__slide .splide__arrow--next {
    background: url(../img/common/slide_arrow_next.svg) no-repeat center/contain;
    right: calc(30 / 390 * 100vw);
  }
  .p-index-company__slide .splide__arrow * {
    display: none;
  }
  .p-index-company__list {
    width: 100%;
  }
  .p-index-company__list li {
    margin-top: calc(10 / 390 * 100vw);
  }
  .p-index-company__list li::before {
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    margin: calc(9 / 390 * 100vw) calc(8 / 390 * 100vw) 0 0;
  }
  .p-index-company__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: calc(50 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.43;
    margin: calc(30 / 390 * 100vw) auto 0;
  }
  .p-index-company__pagination span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 700;
  }
  .p-index-company__pagination span::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(14 / 390 * 100vw);
    background: #f2f2f2;
    margin: 0 0.5em;
  }
  .p-index-company__link {
    width: 100%;
    height: calc(40 / 390 * 100vw);
    margin: calc(30 / 390 * 100vw) auto 0;
    background-color: #fff746;
  }
  .p-index-contents {
    margin-top: calc(100 / 390 * 100vw);
  }
  .p-index-contents__wrap {
    position: relative;
    gap: calc(10 / 390 * 100vw);
    padding: calc(35 / 390 * 100vw) calc(10 / 390 * 100vw) 0;
    font-size: calc(13 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.54;
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-index-contents__title {
    width: 100%;
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
    margin-bottom: calc(10 / 390 * 100vw);
    padding-bottom: calc(155 / 390 * 100vw);
  }
  .p-index-contents__guest {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-index-contents__guest img {
    width: calc(120 / 390 * 100vw);
    display: block;
  }
  .p-index-contents__guest:nth-of-type(1) {
    padding-top: calc(25 / 390 * 100vw);
  }
  .p-index-contents__guest:nth-of-type(1) img {
    margin-left: auto;
  }
  .p-index-contents__guest:nth-of-type(3) {
    padding-top: calc(25 / 390 * 100vw);
  }
  .p-index-contents__guest:nth-of-type(3) img {
    margin-right: auto;
  }
  .p-index-contents__guest p {
    font-size: calc(13 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.31;
    margin: calc(10 / 390 * 100vw) 0 calc(15 / 390 * 100vw);
  }
  .p-index-contents__guest strong {
    font-size: calc(17 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-index-contents__guest button {
    width: calc(160 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
    background: #fff746;
  }
  .p-index-contents__guest--moderator {
    position: absolute;
    top: calc(100 / 390 * 100vw);
    padding-bottom: calc(10 / 390 * 100vw);
  }
  .p-index-contents__guest--moderator img {
    width: calc(100 / 390 * 100vw);
  }
  .p-index-contents__date {
    top: calc(0 / 390 * 100vw);
    width: calc(68 / 390 * 100vw);
    height: calc(68 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.13;
    border-bottom-width: 3px;
  }
  .p-index-contents__date--left {
    left: calc(-20 / 390 * 100vw);
  }
  .p-index-contents__date--right {
    right: calc(-20 / 390 * 100vw);
  }
  .p-index-contents__more {
    width: calc(266 / 390 * 100vw);
    height: calc(35 / 390 * 100vw);
    margin: 20px calc(-16 / 390 * 100vw) calc(-1 / 390 * 100vw) calc(100% - 260 / 390 * 100vw);
  }
  .p-index-contents__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20 / 390 * 100vw);
    margin-top: calc(20 / 390 * 100vw);
  }
  .p-index-contents__links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: calc(10 / 390 * 100vw);
    width: 100%;
    height: calc(100 / 390 * 100vw);
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
    padding: 0 calc(15 / 390 * 100vw);
  }
  .p-index-contents__links img {
    width: calc(90 / 390 * 100vw);
    height: calc(80 / 390 * 100vw);
  }
  .p-index-seminar {
    margin-top: calc(80 / 390 * 100vw);
  }
  .p-index-seminar__wrap {
    padding: calc(50 / 390 * 100vw) calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-index-seminar__lead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 2;
  }
  .p-index-seminar__lead img {
    width: calc(246 / 390 * 100vw);
  }
  .p-index-seminar__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20 / 390 * 100vw);
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-index-seminar__item {
    gap: calc(20 / 390 * 100vw);
  }
  .p-index-seminar__item img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: calc(80 / 390 * 100vw);
  }
  .p-index-seminar__item dl {
    width: 100%;
  }
  .p-index-seminar__item dt {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 2;
    font-weight: 700;
  }
  .p-index-seminar__item dd {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.88;
  }
  .p-index-seminar__link {
    width: calc(320 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    margin: calc(30 / 390 * 100vw) auto 0;
    background-color: #fff746;
  }
  .p-index-benefits {
    margin-top: calc(100 / 390 * 100vw);
  }
  .p-index-benefits__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30 / 390 * 100vw);
    padding: calc(20 / 390 * 100vw);
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-index-benefits__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: calc(20 / 390 * 100vw);
    width: 100%;
    font-size: calc(12 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.83;
    padding-top: calc(0 / 390 * 100vw);
  }
  .p-index-benefits__block img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: calc(145 / 390 * 100vw);
    border-radius: calc(10 / 390 * 100vw);
  }
  .p-index-benefits__block h3 {
    width: 100%;
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
    margin: 0 0 calc(5 / 390 * 100vw);
    padding: 0.5em 0;
    border-radius: calc(10 / 390 * 100vw);
  }
  .p-index-benefits__block h3 span {
    font-size: calc(12 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.67;
  }
  .p-index-benefits__inner {
    width: 100%;
  }
  .p-index-benefits__line {
    width: 100%;
    height: 1px;
  }
  .p-index-benefits__note {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.38;
    margin-top: 0.75em;
  }
  .p-index-faq {
    margin-top: calc(80 / 390 * 100vw);
  }
  .p-index-faq__wrap {
    padding: calc(55 / 390 * 100vw) 0 calc(60 / 390 * 100vw);
  }
  .p-index-faq__description {
    margin-top: calc(40 / 390 * 100vw);
  }
  .p-index-faq__description dt {
    gap: calc(15 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    padding: calc(10 / 390 * 100vw) calc(30 / 390 * 100vw) calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
    border-radius: calc(10 / 390 * 100vw);
  }
  .p-index-faq__description dt::before, .p-index-faq__description dt::after {
    right: calc(10 / 390 * 100vw);
    width: calc(10 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
  }
  .p-index-faq__description dd {
    display: none;
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
    padding: calc(20 / 390 * 100vw);
  }
  .p-index-faq__description span {
    gap: calc(15 / 390 * 100vw);
    font-size: calc(30 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-index-faq__description span::after {
    height: calc(21 / 390 * 100vw);
  }
  .p-index-faq__description:nth-of-type(n+2) {
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-index-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: calc(15 / 390 * 100vw);
    margin-top: calc(60 / 390 * 100vw);
  }
  .p-index-banner img {
    width: calc(160 / 390 * 100vw);
  }
}
.p-index-fv {
  margin-top: 60px;
}
@media only screen and (max-width: 834px) {
  .p-index-fv {
    margin-top: calc(60 / 390 * 100vw);
  }
}

.l-main--environment {
  background-image: url(../img/environment/main_background.svg);
}
.l-main--environment .p-index-fv__title {
  max-width: none;
}
.l-main--environment .c-section-heading span {
  color: #42b249 !important;
}
.l-main--environment .p-index-company--environment h3 {
  background: #42b249;
}
.l-main--environment .p-index-fv__list li,
.l-main--environment .p-index-faq__description dt,
.l-main--environment .p-page-contents-guest__date::after {
  background: -webkit-gradient(linear, left top, right top, from(#42b249), to(#9dd7a0));
  background: linear-gradient(to right, #42b249, #9dd7a0);
}
.l-main--environment .p-index-outline__target li::before {
  background-image: url(../img/environment/icon_check.svg);
}
.l-main--environment .p-index-company__list {
  width: calc(50% - 12.5px);
}

.p-index-fv__wrap--environment {
  background-image: url(../img/environment/fv_bg_pc.svg);
}
@media only screen and (max-width: 834px) {
  .p-index-fv__wrap--environment {
    background-image: url(../img/environment/fv_bg_sp.svg);
  }
}

#tourism2 {
  background-image: url(../img/tourism2/main_background.svg);
}
#tourism2 .p-index-fv__wrap {
  height: 570px;
  background-image: url(../img/tourism2/fv_bg_pc.svg);
  background-size: cover;
}
@media only screen and (max-width: 834px) {
  #tourism2 .p-index-fv__wrap {
    background-image: url(../img/tourism2/fv_bg_sp.svg);
  }
}
#tourism2 .p-index-fv__title {
  max-width: 1019px;
  left: 20px;
}
#tourism2 .c-section-heading span {
  color: #229ec7 !important;
}
#tourism2 .p-page-contents-guest__person img {
  border-color: #229ec7 !important;
}
#tourism2 .p-index-company h3,
#tourism2 .p-page-contents-guest__date,
#tourism2 .p-page-contents-guest__person--main figcaption,
#tourism2 .p-page-contents-guest__person--moderator figcaption,
#tourism2 .p-page-contents-guest__profile dt,
#tourism2 .p-page-contents-guest__date::after {
  background: #229ec7;
}
#tourism2 .p-index-fv__list li,
#tourism2 .p-index-faq__description dt {
  background: -webkit-gradient(linear, left top, right top, from(#229ec7), to(#7ad1e4));
  background: linear-gradient(to right, #229ec7, #7ad1e4);
}
#tourism2 .p-index-outline__target li::before {
  background-image: url(../img/tourism2/icon_check.svg);
}

.p-post {
  padding: 0;
}
.p-post-list {
  padding: 45px 0 250px;
  background-color: #fff;
  background-image: linear-gradient(to right, #f3f3f3 1px, transparent 1px), linear-gradient(to bottom, #f3f3f3 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: top center;
}
.p-post-list__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 25px;
}
.p-post-list__tag a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 125px;
  height: 38px;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1;
  color: #1b225e;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-post-list__tag a.is-current {
  background: #fff746;
}
.p-post-single {
  padding: 45px 0 250px;
  background-color: #fff;
  background-image: linear-gradient(to right, #f3f3f3 1px, transparent 1px), linear-gradient(to bottom, #f3f3f3 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: top center;
}
.p-post-single__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  color: #1b225e;
  border-bottom: 1px solid #1b225e;
}
.p-post-single__title {
  width: 100%;
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
  margin: 20px 0 45px;
}
.p-post-single article {
  color: #1b225e;
}
.p-post-single article > * {
  margin-top: 25px;
}
@media only screen and (min-width: 835px) {
  .p-post-single article iframe {
    width: 650px;
    height: 365.3px;
  }
}
.p-post-single__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 245px;
  height: 50px;
  margin: 75px auto 0 !important;
}
@media only screen and (min-width: 835px) {
  .p-post-single__link:hover {
    opacity: 1;
    background: #fff746;
  }
}
.p-post-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.33;
  color: #1b225e;
  padding: 22px 20px;
}
.p-post-news:not(:first-of-type) {
  border-top: 1px solid #1b225e;
}
.p-post-news--business {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-post-news__textarea {
  width: calc(100% - 110px);
}
.p-post-news__time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 110px;
  font-weight: 700;
}
.p-post-news__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 85px;
  height: 26px;
  border: 1px solid #1b225e;
  border-radius: 5px;
}
.p-post-news__category.is-tourism {
  background: #ffdfdb;
}
.p-post-news__category.is-tourism2 {
  background: #7ad1e4;
}
.p-post-news__category.is-environment {
  background: #b3e0b6;
}
.p-post-news__title {
  width: 100%;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
  overflow: hidden;
}
.p-post-news__body {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 1.5em;
  overflow: hidden;
}
.p-post-news__body--business {
  padding-left: 0;
}
.p-post-campany {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(33.3333% - 30px + 10px);
}
.p-post-campany a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 35px 25px;
  color: #1b225e;
  background: #fce4cd;
}
.p-post-campany__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.p-post-campany__date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 600;
  padding: 0.33em 0.5em;
  color: #fff;
  background: #fe6149;
  border-radius: 0 10px 0 0;
}
.p-post-campany__thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 250px;
  background: #fff;
}
.p-post-campany__thumbnail > * {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-post-campany__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.88;
  padding: 0 0.5em;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-post-campany__kana {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-top: 10px;
  color: #666;
}
.p-post-campany__name {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 10px;
  color: #1b225e;
}
.p-post-campany__body {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.38;
  margin-top: 10px;
  color: #1a1a1a;
}
.p-post-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
.p-post-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1;
  color: #1b225e;
}
.p-post-pagination .current {
  font-weight: 700;
  text-decoration: underline;
}
.p-post-pagination .prev {
  margin-right: 20px;
  background: url(../img/common/pagination_perv.svg) no-repeat center/contain;
}
.p-post-pagination .next {
  margin-left: 20px;
  background: url(../img/common/pagination_next.svg) no-repeat center/contain;
}

@media only screen and (max-width: 834px) {
  .p-post-list {
    padding: calc(50 / 390 * 100vw) 0 calc(250 / 390 * 100vw);
  }
  .p-post-list__tag {
    gap: calc(10 / 390 * 100vw);
    margin-bottom: calc(15 / 390 * 100vw);
  }
  .p-post-list__tag a {
    width: calc(100 / 390 * 100vw);
    height: calc(38 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-post-single {
    padding: calc(50 / 390 * 100vw) 0 calc(250 / 390 * 100vw);
  }
  .p-post-single__title {
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin: calc(10 / 390 * 100vw) 0 calc(25 / 390 * 100vw);
  }
  .p-post-single article > * {
    margin-top: calc(25 / 390 * 100vw);
  }
  .p-post-single__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(200 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    margin: calc(75 / 390 * 100vw) auto 0 !important;
  }
  .p-post-news {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.29;
    padding: calc(20 / 390 * 100vw) 0;
  }
  .p-post-news__time {
    width: calc(88 / 390 * 100vw);
  }
  .p-post-news__category {
    width: calc(70 / 390 * 100vw);
    height: calc(21 / 390 * 100vw);
    border-radius: calc(5 / 390 * 100vw);
  }
  .p-post-news__textarea {
    width: 100%;
    margin-top: calc(9 / 390 * 100vw);
  }
  .p-post-news__title {
    font-size: 1.8rem;
    letter-spacing: 0em;
    line-height: 1;
    margin-bottom: 0;
  }
  .p-post-news__body {
    width: 100%;
    margin-top: calc(9 / 390 * 100vw);
    padding-left: 0;
  }
  .p-post-campany {
    width: 100%;
  }
  .p-post-campany a {
    height: auto;
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p-post-campany__flex {
    gap: calc(10 / 390 * 100vw);
    margin-top: calc(15 / 390 * 100vw);
  }
  .p-post-campany__date {
    height: calc(34 / 390 * 100vw);
    font-size: calc(17 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.53;
    border-radius: 0 calc(10 / 390 * 100vw) 0 0;
  }
  .p-post-campany__thumbnail {
    height: calc(250 / 390 * 100vw);
    height: auto;
  }
  .p-post-campany__category {
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.86;
  }
  .p-post-campany__kana {
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin-top: calc(5 / 390 * 100vw);
  }
  .p-post-campany__name {
    font-size: calc(17 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.47;
    margin-top: calc(5 / 390 * 100vw);
  }
  .p-post-campany__body {
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin-top: calc(5 / 390 * 100vw);
  }
  .p-post-pagination {
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-post-pagination .page-numbers {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-post-pagination .prev {
    margin-right: calc(20 / 390 * 100vw);
  }
  .p-post-pagination .next {
    margin-left: calc(20 / 390 * 100vw);
  }
}
.p-post {
  padding: 0;
}
.p-post-list__news--business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.p-post-news--business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  width: calc(33% - 24px);
  margin: 0 !important;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  border: none !important;
}
.p-post-news--business > * {
  width: 100%;
}
.p-post-news--business .p-post-news__time {
  margin-top: 0.5em;
}
.p-post-news--business .p-post-news__title {
  line-height: 1.5;
  margin-top: 0.35em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
  text-overflow: ellipsis;
}
.p-post-news--business .p-post-news__body {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 834px) {
  .p-post-list__news {
    gap: calc(20 / 390 * 100vw);
  }
  .p-post-news--business {
    width: calc(50% - 10px);
  }
  .p-post-news--business .p-post-news__title {
    line-height: 1.5;
    margin-top: 0;
  }
}
.p-company {
  text-align: left;
  padding-bottom: 0;
}
.p-company-search {
  padding: 45px 0 250px;
  background-color: #fff;
  background-image: linear-gradient(to right, #f3f3f3 1px, transparent 1px), linear-gradient(to bottom, #f3f3f3 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: top center;
}
.p-company-search__title {
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1.17;
  font-weight: 700;
  text-align: center;
  color: #1b225e;
}
.p-company-search__wrap {
  margin-top: 45px;
}
.p-company-search__flex {
  margin-top: 25px;
  padding: 25px;
  color: #1b225e;
  background: #fff;
}
.p-company-search__heading {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
}
.p-company-search__keyword {
  padding: 25px;
  background: #fe6149;
}
.p-company-search__keyword h3 {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.p-company-search__keyword ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.p-company-search__keyword li {
  width: calc(33.3333% - 10px + 3.3333333333px);
}
.p-company-search__keyword a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.3;
  font-weight: 500;
  padding: 0 0.35em;
  color: #1b225e;
  border: 1px solid #1b225e;
}
.p-company-search__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}
.p-company-search__select label {
  width: 25%;
}
.p-company-search__select select {
  width: 100%;
  height: 54px;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  padding: 0 0.5em;
  color: #1b225e;
  border: 1px solid #1b225e;
}
.p-company-search__word {
  width: 100%;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
  margin-top: 20px;
  padding: 10px 15px 10px 60px;
  border: 1px solid #1b225e;
  background-image: url(../img/common/icon_search.svg);
  background-size: 25px auto;
  background-repeat: no-repeat;
  background-position: 20px 50%;
}
.p-company-search__submit {
  width: 240px;
  height: 50px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
  margin: 20px auto 0;
  color: #1b225e;
  background: #fff746;
  border: 1px solid #1b225e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 835px) {
  .p-company-search__submit:hover {
    opacity: 0.7;
  }
}
.p-company-search__result {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  margin-top: 50px;
  color: #1b225e;
}
.p-company-search__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}
.p-company-post {
  padding: 45px 0 250px;
  color: #1b225e;
  background-color: #fff;
  background-image: linear-gradient(to right, #f3f3f3 1px, transparent 1px), linear-gradient(to bottom, #f3f3f3 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: top center;
}
.p-company-post a {
  color: #1b225e;
}
.p-company-post__heading {
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  margin-top: 50px;
}
.p-company-post__lead {
  margin-top: 1.5em;
}
.p-company-post__label {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.33;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 25px;
}
.p-company-post__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1b225e;
}
.p-company-post__logo {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-company-post__textarea {
  width: 100%;
}
.p-company-post__date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  padding: 0 0.5em;
  color: #fff;
  background: #fe6149;
  border-radius: 5px;
}
.p-company-post__kana {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.25;
  font-weight: 500;
  color: #808080;
}
.p-company-post__name {
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1.17;
  font-weight: 700;
  margin-top: 10px;
}
.p-company-post__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.p-company-post__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  border: 1px solid #1b225e;
  border-radius: 100vmax;
  overflow: hidden;
}
.p-company-post__nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33.3333%;
  height: 80px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
  font-weight: 700;
  color: #1b225e;
  background: #fff;
  border: none;
  cursor: pointer;
}
@media only screen and (min-width: 835px) {
  .p-company-post__nav a:hover {
    opacity: 1;
    background: #fff746;
  }
}
.p-company-post__nav a:not(:first-of-type) {
  border-left: 1px solid #1b225e;
}
.p-company-post__section {
  margin-top: -50px;
  padding-top: 80px;
}
.p-company-post__section.is-open {
  display: block;
}
.p-company-post__catch {
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
}
.p-company-post__image {
  margin-top: 45px;
}
.p-company-post__image img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.p-company-post__block {
  margin-top: 35px;
}
.p-company-post__block--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.p-company-post__block:not(:last-of-type) {
  padding-bottom: 50px;
  border-bottom: 1px solid #1b225e;
}
.p-company-post__table small {
  display: block;
  font-size: 0.9em;
  line-height: 1.5;
  margin-top: 0.5em;
}
.p-company-post__body {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.72;
}
.p-company-post__link {
  width: 300px;
  height: 50px;
  margin-top: 35px;
}
@media only screen and (min-width: 835px) {
  .p-company-post__link:hover {
    opacity: 1;
    background: #fff746;
  }
}
.p-company-post__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 35px;
}
.p-company-post__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(33.3333% - 30px + 10px);
}
.p-company-post__list--check {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.33;
}
.p-company-post__list--check li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.p-company-post__list--check li::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/common/icon_check.svg) no-repeat center/contain;
}
.p-company-post__list--box {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 600;
}
.p-company-post__list--box li {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  background: #fce4cd;
}
.p-company-post__list--certification {
  margin-bottom: 25px;
}
.p-company-post__list--certification li {
  width: 150px;
}
.p-company-post__list--certification img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-company-post__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
}
.p-company-post__description dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}
.p-company-post__description dd {
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.72;
}
.p-company-post__description span:not(:first-of-type) {
  margin-left: 0.3em;
}
.p-company-post__description span:not(:first-of-type)::before {
  content: "/";
  padding-right: 0.3em;
}
.p-company-post__description--box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.p-company-post__description--box + dl {
  margin-top: 20px;
}
.p-company-post__description--box dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  color: #fff;
  background: #fe6149;
}
.p-company-post__description--table {
  border: 1px solid #1b225e;
}
.p-company-post__description--table + dl {
  margin-top: 0px;
  border-top: 0;
}
.p-company-post__description--table dt {
  border-right: 1px solid #1b225e;
  background: #fce4cd;
  padding: 20px 25px;
}
.p-company-post__description--table dd {
  padding: 20px 25px;
  background: #fff;
}
.p-company-post__description small {
  display: block;
  font-size: 0.9em;
  line-height: 1.5;
  margin-top: 0.5em;
}
.p-company-post__figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 450px;
}
.p-company-post__figure iframe {
  width: 100%;
}
.p-company-post__figure figcaption {
  height: auto;
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.75;
  margin-top: 15px;
}

@media only screen and (max-width: 834px) {
  .p-company-search {
    padding: calc(50 / 390 * 100vw) 0 calc(250 / 390 * 100vw);
  }
  .p-company-search__title {
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
  }
  .p-company-search__wrap {
    margin-top: calc(30 / 390 * 100vw);
  }
  .p-company-search__flex {
    margin-top: calc(15 / 390 * 100vw);
    padding: calc(15 / 390 * 100vw);
  }
  .p-company-search__heading {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.2;
  }
  .p-company-search__keyword {
    padding: calc(15 / 390 * 100vw);
  }
  .p-company-search__keyword h3 {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.2;
  }
  .p-company-search__keyword ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(10 / 390 * 100vw);
    margin-top: calc(15 / 390 * 100vw);
  }
  .p-company-search__keyword li {
    width: 100%;
  }
  .p-company-search__keyword a {
    height: calc(45 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
  }
  .p-company-search__select {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(10 / 390 * 100vw);
    margin-top: calc(20 / 390 * 100vw);
  }
  .p-company-search__select label {
    width: 100%;
  }
  .p-company-search__select select {
    height: calc(54 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-company-search__word {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
    margin-top: calc(10 / 390 * 100vw);
    padding: calc(10 / 390 * 100vw) calc(15 / 390 * 100vw) calc(10 / 390 * 100vw) calc(60 / 390 * 100vw);
    background-size: calc(20 / 390 * 100vw) auto;
    background-position: calc(20 / 390 * 100vw) 50%;
  }
  .p-company-search__submit {
    width: calc(240 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    margin: calc(20 / 390 * 100vw) auto 0;
  }
  .p-company-search__result {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-company-search__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30 / 390 * 100vw);
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-company-post {
    padding: calc(50 / 390 * 100vw) 0 calc(250 / 390 * 100vw);
  }
  .p-company-post__heading {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    margin-top: calc(30 / 390 * 100vw);
  }
  .p-company-post__label {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.33;
    margin-top: calc(25 / 390 * 100vw);
    margin-bottom: calc(10 / 390 * 100vw);
  }
  .p-company-post__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(15 / 390 * 100vw);
    padding-bottom: calc(30 / 390 * 100vw);
  }
  .p-company-post__logo {
    width: calc(100 / 390 * 100vw);
    height: calc(100 / 390 * 100vw);
  }
  .p-company-post__date {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    border-radius: calc(5 / 390 * 100vw);
  }
  .p-company-post__kana {
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-company-post__name {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.7;
    margin-top: calc(10 / 390 * 100vw);
  }
  .p-company-post__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: calc(30 / 390 * 100vw);
  }
  .p-company-post__nav a {
    height: calc(50 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-company-post__section {
    margin-top: calc(-30 / 390 * 100vw);
    padding-top: calc(60 / 390 * 100vw);
  }
  .p-company-post__catch {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-company-post__image {
    margin-top: calc(25 / 390 * 100vw);
  }
  .p-company-post__image img {
    max-height: calc(200 / 390 * 100vw);
  }
  .p-company-post__block {
    margin-top: calc(25 / 390 * 100vw);
  }
  .p-company-post__block--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(10 / 390 * 100vw);
  }
  .p-company-post__block:not(:last-of-type) {
    padding-bottom: calc(30 / 390 * 100vw);
  }
  .p-company-post__body {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.56;
  }
  .p-company-post__link {
    width: calc(320 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    margin-top: calc(25 / 390 * 100vw);
    margin-inline: auto;
  }
  .p-company-post__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(15 / 390 * 100vw);
    margin-top: calc(25 / 390 * 100vw);
  }
  .p-company-post__list li {
    width: 100%;
  }
  .p-company-post__list--check {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-company-post__list--check li {
    gap: calc(10 / 390 * 100vw);
  }
  .p-company-post__list--check li::before {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
  }
  .p-company-post__list--box {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-company-post__list--box li {
    height: calc(50 / 390 * 100vw);
  }
  .p-company-post__list--certification {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: calc(25 / 390 * 100vw);
  }
  .p-company-post__list--certification li {
    width: calc(90 / 390 * 100vw);
  }
  .p-company-post__list--certification img {
    width: calc(90 / 390 * 100vw);
    height: calc(90 / 390 * 100vw);
  }
  .p-company-post__description {
    margin-top: calc(25 / 390 * 100vw);
  }
  .p-company-post__description dt {
    width: calc(60 / 390 * 100vw);
    padding: calc(5 / 390 * 100vw) 0;
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-company-post__description dd {
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    padding: calc(5 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  .p-company-post__description--box {
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    gap: calc(20 / 390 * 100vw);
  }
  .p-company-post__description--box + dl {
    margin-top: calc(20 / 390 * 100vw);
  }
  .p-company-post__description--box dt {
    height: auto;
  }
  .p-company-post__description--table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-company-post__description--table dt {
    width: 100%;
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.33;
    border-bottom: 1px solid #1b225e;
    border-right: none;
    padding: calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  .p-company-post__description--table dd {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    padding: calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  .p-company-post__figure {
    width: 100%;
  }
  .p-company-post__figure figcaption {
    height: auto;
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin-top: calc(10 / 390 * 100vw);
  }
}
#tourism .is-environment,
#tourism .is-tourism2 {
  display: none !important;
}
#tourism .c-section-heading span {
  color: #fe6149;
}
#tourism .p-company-search__keyword,
#tourism .p-company-post__date,
#tourism .p-company-post__description--box dt {
  background: #fe6149;
}
#tourism .p-post-campany a,
#tourism .p-company-post__list--box li,
#tourism .p-company-post__description--table dt {
  background: #ffdfdb;
}
#tourism .p-post-campany a:hover {
  opacity: 1;
  background: #fe6149;
}

#tourism2 .is-environment,
#tourism2 .is-tourism {
  display: none !important;
}
#tourism2 .c-section-heading span {
  color: #229ec7;
}
#tourism2 .p-post-campany__date,
#tourism2 .p-company-search__keyword,
#tourism2 .p-company-post__date,
#tourism2 .p-company-post__description--box dt {
  background: #229ec7;
}
#tourism2 .p-post-campany a,
#tourism2 .p-company-post__list--box li,
#tourism2 .p-company-post__description--table dt {
  background: #7ad1e4;
}

#environment .is-tourism,
#environment .is-tourism2 {
  display: none !important;
}
#environment .c-section-heading span {
  color: #42b249;
}
#environment .p-post-campany__date,
#environment .p-company-search__keyword,
#environment .p-company-post__date,
#environment .p-company-post__description--box dt {
  background: #42b249;
}
#environment .p-post-campany a,
#environment .p-company-post__list--box li,
#environment .p-company-post__description--table dt {
  background: #b3e0b6;
}

.p-company-post__head {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-company-post__textarea {
  width: calc(100% - 200px);
}
.p-company-post-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-company-post-info > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 33.333%;
  padding-right: 25px;
}
.p-company-post-info__wrap > *:nth-child(n+2) {
  margin-top: 40px;
}
.p-company-post-info__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.56;
}
.p-company-post-info__box dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 110px;
  height: 40px;
  color: #fff;
  background: #1b225e;
  border-radius: 100vmax;
}
.p-company-post-info__box dd {
  padding-top: 0.2em;
}
.p-company-post-info__box ol > li {
  text-indent: -1em;
  padding-left: 1em;
}
.p-company-post-info__box ol span {
  display: inline-block;
  text-indent: 0;
}
.p-company-post__section--message {
  margin-top: 40px;
  padding-top: 0;
  border-top: 1px solid #1b225e;
}
.p-company-post__section--message .p-company-post__heading {
  margin-top: 30px;
}
.p-company-post__section--recruit {
  margin-top: 40px;
  padding-top: 0;
  border-top: 1px solid #1b225e;
}
.p-company-post__figure iframe {
  height: 253px;
}
.p-company-post__list--box {
  gap: 15px 10px;
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 500;
}
.p-company-post__list--box li {
  width: 220px;
  height: 40px;
  background: none !important;
  border: 1px solid #1b225e;
}
.p-company-post__description--table dt {
  color: #fff;
  background: #1b225e !important;
  border-bottom: 1px solid #fff;
}
.p-company-post__table {
  display: none;
  width: 100%;
  border: 1px solid #1b225e;
}
.p-company-post__table.is-open {
  display: table;
}
.p-company-post__table tr {
  border: 1px solid #1b225e;
}
.p-company-post__table th {
  width: 150px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  color: #fff;
  padding: 20px 25px;
  background: #1b225e !important;
  border-right: 1px solid #1b225e;
  border-bottom: 1px solid #fff;
}
.p-company-post__table td {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.72;
  padding: 20px 25px;
  background: #fff;
  vertical-align: middle;
}
.p-company-post__table td.is-child {
  width: 220px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
  font-weight: 700;
  padding: 20px 15px;
  background: #f2f2f2;
  border-right: 1px solid #1b225e;
}
.p-company-post__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.p-company-post__button button {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
  margin: 0;
  padding: 20px 30px;
  color: #1b225e;
  background-color: #f2f2f2;
  border: 1px solid #1b225e;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  pointer-events: visible;
}
.p-company-post__button button span {
  margin-right: 1em;
}
.p-company-post__button button:nth-of-type(n+2) {
  margin-left: -1px;
}
.p-company-post__button button.is-current {
  background-color: #fff746;
}
.p-company-post__back {
  width: 310px;
  height: 50px;
  margin: 40px auto 0;
}
.p-company-post__back::after {
  display: none;
}

@media only screen and (max-width: 834px) {
  .p-company-post__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-company-post__textarea {
    width: 100%;
  }
  .p-company-post-info {
    display: block;
    width: 100%;
  }
  .p-company-post-info > * {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    padding-right: calc(0 / 390 * 100vw);
  }
  .p-company-post-info__wrap > *:nth-child(n+2) {
    margin-top: calc(15 / 390 * 100vw);
  }
  .p-company-post-info__box {
    gap: calc(15 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
    margin-top: calc(15 / 390 * 100vw);
  }
  .p-company-post-info__box dt {
    width: calc(90 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
  .p-company-post__section--message {
    margin-top: 40px;
    padding-top: 0;
  }
  .p-company-post__section--message .p-company-post__heading {
    margin-top: 30px;
  }
  .p-company-post__section--recruit {
    margin-top: 40px;
    padding-top: 0;
    border-top: 1px solid #1b225e;
  }
  .p-company-post__figure iframe {
    height: calc(180 / 390 * 100vw);
  }
  .p-company-post__list--box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: calc(15 / 390 * 100vw) calc(10 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-company-post__list--box li {
    width: calc(50% - 10 / 390 * 100vw);
    height: auto;
    min-height: calc(40 / 390 * 100vw);
    text-align: center;
    padding: 10px;
    background: none !important;
    border: 1px solid #1b225e;
  }
  .p-company-post__table {
    width: 100%;
  }
  .p-company-post__table tr {
    display: block;
  }
  .p-company-post__table th {
    display: block;
    width: 100%;
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    padding: calc(20 / 390 * 100vw) calc(25 / 390 * 100vw);
  }
  .p-company-post__table td {
    width: 100%;
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.63;
    padding: calc(20 / 390 * 100vw) calc(25 / 390 * 100vw);
  }
  .p-company-post__table td.is-child {
    width: 50%;
    display: block;
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.38;
    padding: calc(20 / 390 * 100vw) calc(15 / 390 * 100vw);
  }
  .p-company-post__table td.is-child + td {
    width: 50%;
  }
  .p-company-post__child {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-company-post__button {
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    margin-top: calc(30 / 390 * 100vw);
  }
  .p-company-post__button button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    width: 33.3333%;
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.29;
    padding: calc(10 / 390 * 100vw);
    border-radius: calc(10 / 390 * 100vw) calc(10 / 390 * 100vw) 0 0;
  }
  .p-company-post__button button span {
    margin-right: 0;
  }
  .p-company-post__back {
    width: 100%;
    height: calc(50 / 390 * 100vw);
    margin: calc(40 / 390 * 100vw) auto 0;
  }
}
.p-page--pb0 {
  padding-bottom: 0;
}
.p-page-floormap {
  margin-top: 80px;
}
.p-page-floormap img {
  display: block;
  max-width: 790px;
  margin: 40px auto 0;
}
.p-page-floormap a {
  color: #1b225e;
}
.p-page-floormap__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 10px;
}
.p-page-floormap__description {
  width: 500px;
  margin-top: 30px;
  color: #1b225e;
  background: #fff;
  border: 1px solid #1b225e;
}
.p-page-floormap__description dt {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 10px 0;
}
.p-page-floormap__description dd {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.44;
  padding: 10px 25px 20px;
}
.p-page-floormap__description li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.p-page-floormap__description li::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: 11px 8px 0 0;
  background: #1b225e;
  border-radius: 100vmax;
}
.p-page-floormap__description--online {
  color: #fff;
  background: #1b225e;
  margin-inline: auto;
}
.p-page-floormap__description--online dt {
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
}
.p-page-floormap__description--online dd {
  text-align: center;
}
.p-page-contents {
  margin-top: 80px;
}
.p-page-contents + .p-page-contents {
  margin-top: 40px;
  padding-top: 40px;
  border-top-width: 2px;
  border-style: solid;
  -o-border-image: repeating-linear-gradient(to right, #1b225e 0px, #1b225e 10px, transparent 10px, transparent 20px) 1;
     border-image: repeating-linear-gradient(to right, #1b225e 0px, #1b225e 10px, transparent 10px, transparent 20px) 1;
}
.p-page-contents__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-page-contents-title {
  position: sticky;
  top: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 400px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
}
.p-page-contents-title__number {
  width: 40px;
}
.p-page-contents-title__text {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  line-height: 1.67;
  font-weight: 700;
  text-align: center;
  margin: 30px 0;
  color: #1b225e;
}
@media only screen and (min-width: 835px) {
  .p-page-contents-title__text span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding: 0 0.3em;
    background: #fff;
    border: 1px solid #1b225e;
  }
  .p-page-contents-title__text span:nth-of-type(n+2) {
    margin-top: -1px;
  }
}
.p-page-contents-title__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-page-contents-main__block {
  color: #1b225e;
  background: #fff;
  padding: 40px 45px;
}
.p-page-contents-main__block:nth-of-type(n+2) {
  margin-top: 50px;
}
.p-page-contents-main__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.46;
  font-weight: 700;
}
.p-page-contents-main__icon {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
}
.p-page-contents-main__body {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.94;
  margin-top: 15px;
}
.p-page-contents-main__body dl {
  margin-top: 0.5em;
  line-height: 1.7;
}
.p-page-contents-main__body dt {
  font-weight: 700;
}
.p-page-contents-main__body dd {
  text-indent: -1em;
  margin-left: 0.75em;
  padding-left: 1em;
}
.p-page-contents-main__body dd span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
.p-page-contents-main__link {
  width: 310px;
  height: 50px;
  margin: 20px auto 0;
}
.p-page-contents-guest__date {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 535px;
  height: 40px;
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: #fe6149;
  border-radius: 100vmax;
  margin: 0 auto 10px;
}
.p-page-contents-guest__date span {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
}
.p-page-contents-guest__date::after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 10px;
  background: #fe6149;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.p-page-contents-guest__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 65px;
  margin-top: 30px;
}
.p-page-contents-guest__person {
  text-align: center;
  color: #1b225e;
}
.p-page-contents-guest__person figure {
  position: relative;
  margin-bottom: 10px;
}
.p-page-contents-guest__person figcaption {
  position: absolute;
  top: 50%;
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  background: #fe6149;
  border-radius: 100vmax;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 1em 0.2em;
}
.p-page-contents-guest__person img {
  border-radius: 100vmax;
  border: 1px solid #fe6149;
}
.p-page-contents-guest__person strong {
  font-size: 1.2em;
}
.p-page-contents-guest__person--main {
  width: 200px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
}
.p-page-contents-guest__person--main figcaption {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.25;
  left: -20px;
}
.p-page-contents-guest__person--moderator {
  width: 160px;
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1;
}
.p-page-contents-guest__person--moderator figcaption {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.3;
  right: -20px;
}
.p-page-contents-guest__title {
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1.67;
  font-weight: 700;
  margin-top: 45px;
}
.p-page-contents-guest__title mark {
  padding: 0 0.1em;
  color: #1b225e;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffbc), color-stop(35%, #ffffbc), color-stop(35%, #fff));
  background: linear-gradient(to top, #ffffbc, #ffffbc 35%, #fff 35%);
}
.p-page-contents-guest__body {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.94;
  margin-top: 15px;
}
.p-page-contents-guest__profile {
  margin-top: 35px;
  background: #f2f2f2;
}
.p-page-contents-guest__profile dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  height: 40px;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: #fe6149;
  border-radius: 0 0 10px 0;
}
.p-page-contents-guest__profile dd {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.94;
  padding: 25px;
}
.p-page-contents-guest__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 310px;
  height: 50px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  margin: 30px auto 0;
  color: #1b225e;
  background: #fff746;
  border: 1px solid #1b225e;
  cursor: pointer;
}
.p-page-seminar {
  padding: 45px 50px 250px;
  color: #1b225e;
  background-color: #fff;
  background-image: linear-gradient(to right, #f3f3f3 1px, transparent 1px), linear-gradient(to bottom, #f3f3f3 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: top center;
}
.p-page-seminar__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
}
.p-page-seminar__lead img {
  width: 246px;
}
.p-page-seminar__block {
  margin-top: 50px;
  padding: 0 50px 60px;
  border: 1px solid #1b225e;
}
.p-page-seminar__block--tourism {
  background: #fce3cc;
}
.p-page-seminar__block--tourism span {
  background: #fe6149;
}
.p-page-seminar__block--environment {
  background: #c2e6c5;
}
.p-page-seminar__block--environment span {
  background: #67c16d;
}
.p-page-seminar__block--construction {
  background: #d9f1ff;
}
.p-page-seminar__block--construction span {
  background: #29abe2;
}
.p-page-seminar__info {
  margin-top: 50px;
  text-align: center;
}
.p-page-seminar__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 350px;
  height: 80px;
  font-size: 3.6rem;
  letter-spacing: 0em;
  line-height: 1;
  text-align: center;
  font-weight: 900;
  margin: 0 auto;
  padding: 0 1em;
  color: #fff;
  background: #1b225e;
  border-radius: 0 0 20px 20px;
}
.p-page-seminar__text {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
  margin-top: 1em;
}
.p-page-seminar__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
}
.p-page-seminar__movie {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 450px;
}
.p-page-seminar__movie iframe {
  width: 100%;
  height: 253px;
  background: #ccc;
}
.p-page-seminar__movie iframe:nth-of-type(n+2) {
  margin-top: 25px;
}
.p-page-seminar__movie a {
  width: 185px;
  height: 50px;
  background: initial;
  margin: 20px 0 0 auto;
}
.p-page-seminar__list {
  width: 100%;
}
.p-page-seminar__list dl:nth-of-type(n+2) {
  margin-top: 40px;
}
.p-page-seminar__list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
}
.p-page-seminar__list dt::before {
  content: "■ ";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  margin-right: 0.5em;
}
.p-page-seminar__list dd {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.75;
  margin-top: 0.5em;
  padding-left: 1.7em;
}
.p-page-seminar__list ul {
  margin-top: 1em;
}
.p-page-seminar__list ul strong {
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
.p-page-seminar__list li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
.p-page-seminar__list ol {
  margin-top: 1em;
}
.p-page-seminar__list ol li::before {
  margin-right: 0.25em;
}
.p-page-seminar__list ol li:nth-of-type(1)::before {
  /* ① */
  content: "①";
}
.p-page-seminar__list ol li:nth-of-type(2)::before {
  /* ② */
  content: "②";
}
.p-page-seminar__list ol li:nth-of-type(3)::before {
  /* ③ */
  content: "③";
}
.p-page-seminar__list ol li:nth-of-type(4)::before {
  /* ④ */
  content: "④";
}
.p-page-seminar__list ol li:nth-of-type(5)::before {
  /* ⑤ */
  content: "⑤";
}
.p-page-seminar__list button {
  display: none;
}
.p-page-seminar__list figure {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.78;
  margin-top: 25px;
  padding: 15px;
  background: #fff;
  border: 1px solid rgba(136, 136, 136, 0.7);
  border-radius: 10px;
}
.p-page-seminar__list figure h3 {
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;
}
.p-page-seminar__indent {
  text-indent: 0em !important;
  padding-left: 2em !important;
}
.p-page-seminar__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 47px;
  height: 40px;
  margin-right: 10px;
  padding-right: 6px;
  -webkit-mask-image: url(../img/seminar/icon_back.svg);
          mask-image: url(../img/seminar/icon_back.svg);
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.p-page-seminar__icon img {
  width: auto;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-page-seminar__more {
  width: 400px;
  height: 50px;
  margin: 50px auto 0;
}

@media only screen and (max-width: 834px) {
  .p-page-floormap {
    margin-top: calc(80 / 390 * 100vw);
  }
  .p-page-floormap img {
    width: 360px;
    margin: calc(40 / 390 * 100vw) auto 0;
  }
  .p-page-floormap__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20 / 390 * 100vw);
    margin-top: calc(10 / 390 * 100vw);
  }
  .p-page-floormap__description {
    width: 360px;
    margin: calc(30 / 390 * 100vw) auto 0;
  }
  .p-page-floormap__description dt {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    border-radius: 0 0 calc(10 / 390 * 100vw) 0;
  }
  .p-page-floormap__description dd {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.38;
    padding: calc(10 / 390 * 100vw) calc(15 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p-page-floormap__description li {
    margin-top: calc(10 / 390 * 100vw);
  }
  .p-page-floormap__description li::before {
    width: calc(5 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    margin: calc(11 / 390 * 100vw) calc(8 / 390 * 100vw) 0 0;
  }
  .p-page-floormap__description--online dt {
    border-radius: 0 0 calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  .p-page-contents {
    width: 360px;
    margin-top: calc(80 / 390 * 100vw);
  }
  .p-page-contents + .p-page-contents {
    margin-top: calc(40 / 390 * 100vw);
    padding-top: calc(40 / 390 * 100vw);
  }
  .p-page-contents__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-contents-title {
    position: static;
    width: calc(360 / 390 * 100vw);
  }
  .p-page-contents-title__number {
    width: calc(30 / 390 * 100vw);
  }
  .p-page-contents-title__text {
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.83;
    margin: calc(20 / 390 * 100vw) 0 calc(30 / 390 * 100vw);
    padding: 0 0.3em;
    background: #fff;
    border: 1px solid #1b225e;
  }
  .p-page-contents-title__image img {
    height: calc(144 / 390 * 100vw);
  }
  .p-page-contents-main {
    margin-top: calc(50 / 390 * 100vw);
  }
  .p-page-contents-main__block {
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p-page-contents-main__block:nth-of-type(n+2) {
    margin-top: calc(30 / 390 * 100vw);
  }
  .p-page-contents-main__title {
    gap: calc(15 / 390 * 100vw);
    font-size: calc(22 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-page-contents-main__icon {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-page-contents-main__body {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 2;
    margin-top: calc(15 / 390 * 100vw);
  }
  .p-page-contents-main__link {
    width: calc(250 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    margin: calc(20 / 390 * 100vw) auto 0;
  }
  .p-page-contents-guest__date {
    height: calc(32 / 390 * 100vw);
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    margin: 0 auto calc(10 / 390 * 100vw);
  }
  .p-page-contents-guest__date span {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-page-contents-guest__date::after {
    bottom: calc(-9 / 390 * 100vw);
    right: calc(50% - 10 / 390 * 100vw);
    width: calc(20 / 390 * 100vw);
    height: calc(10 / 390 * 100vw);
  }
  .p-page-contents-guest__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: calc(15 / 390 * 100vw);
    margin-top: calc(30 / 390 * 100vw);
  }
  .p-page-contents-guest__person figure {
    margin-bottom: calc(10 / 390 * 100vw);
  }
  .p-page-contents-guest__person--main {
    width: calc(160 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-page-contents-guest__person--main figcaption {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.44;
    left: calc(-10 / 390 * 100vw);
  }
  .p-page-contents-guest__person--moderator {
    width: calc(145 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-page-contents-guest__person--moderator figcaption {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.44;
    right: calc(-10 / 390 * 100vw);
  }
  .p-page-contents-guest__title {
    font-size: calc(22 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.82;
    margin-top: calc(35 / 390 * 100vw);
  }
  .p-page-contents-guest__body {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
    margin-top: calc(15 / 390 * 100vw);
  }
  .p-page-contents-guest__profile {
    margin-top: calc(20 / 390 * 100vw);
  }
  .p-page-contents-guest__profile dt {
    width: calc(230 / 390 * 100vw);
    height: calc(32 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    border-radius: 0 0 calc(10 / 390 * 100vw) 0;
  }
  .p-page-contents-guest__profile dd {
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 2;
    padding: calc(15 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p-page-contents-guest__button {
    width: calc(250 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
  }
  .p-page-seminar {
    padding: calc(50 / 390 * 100vw) 0 calc(250 / 390 * 100vw);
  }
  .p-page-seminar__lead {
    width: 86%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(35 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin-inline: auto;
  }
  .p-page-seminar__lead img {
    width: calc(130 / 390 * 100vw);
  }
  .p-page-seminar__block {
    width: 96%;
    margin-top: calc(25 / 390 * 100vw);
    margin-inline: auto;
    padding: 0 calc(25 / 390 * 100vw) calc(40 / 390 * 100vw);
  }
  .p-page-seminar__info iframe {
    width: 86%;
    height: calc(181 / 390 * 100vw);
  }
  .p-page-seminar__heading {
    width: calc(250 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    border-radius: 0 0 calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .p-page-seminar__text {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-page-seminar__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(25 / 390 * 100vw);
    margin-top: calc(25 / 390 * 100vw);
  }
  .p-page-seminar__movie {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
  }
  .p-page-seminar__movie iframe {
    width: 100%;
    height: calc(181 / 390 * 100vw);
  }
  .p-page-seminar__movie a {
    width: calc(135 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    margin: calc(10 / 390 * 100vw) 0 0 auto;
  }
  .p-page-seminar__list dl:nth-of-type(n+2) {
    margin-top: calc(20 / 390 * 100vw);
  }
  .p-page-seminar__list dt {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.33;
  }
  .p-page-seminar__list dd {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* 最大表示行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    max-height: 4.5em;
    /* 3行分の高さ */
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
  }
  .p-page-seminar__list dd.is-open {
    -webkit-line-clamp: unset;
    max-height: none;
  }
  .p-page-seminar__list button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: calc(45 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    color: #1b225e;
    border: 1px solid #1b225e;
    background: #FFF;
    margin-top: calc(10 / 390 * 100vw);
  }
  .p-page-seminar__list figure {
    font-size: calc(14 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.71;
    margin-top: calc(25 / 390 * 100vw);
    padding: calc(15 / 390 * 100vw);
    border-radius: calc(10 / 390 * 100vw);
  }
  .p-page-seminar__icon {
    width: calc(47 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
    padding-right: calc(6 / 390 * 100vw);
  }
  .p-page-seminar__icon img {
    height: calc(20 / 390 * 100vw);
  }
  .p-page-seminar__more {
    width: calc(300 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    margin: calc(35 / 390 * 100vw) auto 0;
  }
}
.p-page-seminar-feature {
  margin-top: 100px;
}
.p-page-seminar-feature__title {
  font-size: 3rem;
  font-weight: bold;
  padding-left: 28px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}
.p-page-seminar-feature__title:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 4px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #1b225e;
  border-radius: 100vmax;
}
.p-page-seminar-feature__title:after {
  content: "";
  width: 20px;
  height: 4px;
  margin-left: 0.25em;
  background-color: #1b225e;
  border-radius: 100vmax;
}
.p-page-seminar-feature__lead {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.75;
  margin-top: 30px;
}
.p-page-seminar-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 45px;
}
.p-page-seminar-feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(46% - 15px);
}
.p-page-seminar-feature__item p {
  font-size: 2rem;
  font-weight: bold;
}
.p-page-seminar-feature__item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 255px;
  height: 61px;
  font-size: 20px;
  font-weight: bold;
  text-indent: -0.5em;
  color: #1b225e;
  background-color: #f2f2f2;
  border-radius: 100vmax;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-page-seminar-feature__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  background: #1b225e;
  -webkit-mask-image: url(../img/seminar/icon_arrow.svg);
          mask-image: url(../img/seminar/icon_arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-page-seminar-feature__item a:hover {
  opacity: 1;
  background-color: #fff746;
}

@media only screen and (max-width: 834px) {
  .p-page-seminar-feature {
    margin-top: calc(60 / 390 * 100vw);
  }
  .p-page-seminar-feature__title {
    font-size: calc(24 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
    padding-left: calc(30 / 390 * 100vw);
  }
  .p-page-seminar-feature__title::before, .p-page-seminar-feature__title::after {
    width: calc(30 / 390 * 100vw);
    height: 4px;
  }
  .p-page-seminar-feature__lead {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.75;
    margin-top: calc(15 / 390 * 100vw);
  }
  .p-page-seminar-feature__list {
    gap: calc(30 / 390 * 100vw);
    margin-top: calc(45 / 390 * 100vw);
  }
  .p-page-seminar-feature__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(5 / 390 * 100vw);
    width: 100%;
    margin-right: 0;
  }
  .p-page-seminar-feature__item p {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0em;
    line-height: 1.33;
  }
  .p-page-seminar-feature__item p br {
    display: none;
  }
  .p-page-seminar-feature__item a {
    width: calc(200 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    margin-left: auto;
    margin-right: 0;
  }
  .p-page-seminar-feature__item a::after {
    width: calc(26 / 390 * 100vw);
    height: calc(26 / 390 * 100vw);
  }
}
.p-page-contents-main--environment .p-page-contents-guest__date,
.p-page-contents-main--environment .p-page-contents-guest__person figcaption,
.p-page-contents-main--environment .p-page-contents-guest__profile dt {
  background: #42b249;
}
.p-page-contents-main--environment .p-page-contents-guest__person img {
  border-color: #42b249;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-tal {
  text-align: left;
}

.u-tac {
  text-align: center;
}

.u-tac {
  text-align: right;
}

@media only screen and (max-width: 834px) {
  .u-mt10 {
    margin-top: 10px;
  }
  .u-mt20 {
    margin-top: 10px;
  }
  .u-mt30 {
    margin-top: 13px;
  }
  .u-mt40 {
    margin-top: 20px;
  }
  .u-mt50 {
    margin-top: 20px;
  }
  .u-mt60 {
    margin-top: 30px;
  }
  .u-mt70 {
    margin-top: 30px;
  }
  .u-mt80 {
    margin-top: 35px;
  }
  .u-mt90 {
    margin-top: 45px;
  }
  .u-mt100 {
    margin-top: 60px;
  }
}
.u-font-bebas {
  font-family: "Bebas Neue", sans-serif;
}

.u-inview {
  -webkit-animation: none !important;
          animation: none !important;
}

/*===================================
オリジナル
===================================*/
.u-mask-up {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-animation: animate-maskUp 1s ease-out forwards;
          animation: animate-maskUp 1s ease-out forwards;
  will-change: mask-position;
}
.u-mask-down {
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-animation: animate-maskDown 1s ease-out forwards;
          animation: animate-maskDown 1s ease-out forwards;
  will-change: mask-position;
}
@media only screen and (max-width: 834px) {
  .u-mask-down-sp {
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
    -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
            mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
            mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
    -webkit-mask-size: 100% 300%;
            mask-size: 100% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
            mask-position: bottom;
    -webkit-animation: animate-maskDown 1s ease-out forwards;
            animation: animate-maskDown 1s ease-out forwards;
    will-change: mask-position;
  }
}
.u-mask-left {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-animation: animate-maskLeft 1s ease-out forwards;
          animation: animate-maskLeft 1s ease-out forwards;
  will-change: mask-position;
}
.u-mask-right {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-animation: animate-maskRight 1s ease-out forwards;
          animation: animate-maskRight 1s ease-out forwards;
  will-change: mask-position;
}

/* アニメーション定義 */
@-webkit-keyframes animate-maskUp {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@keyframes animate-maskUp {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@-webkit-keyframes animate-maskDown {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@keyframes animate-maskDown {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@-webkit-keyframes animate-maskLeft {
  to {
    -webkit-mask-position: right;
            mask-position: right;
  }
}
@keyframes animate-maskLeft {
  to {
    -webkit-mask-position: right;
            mask-position: right;
  }
}
@-webkit-keyframes animate-maskRight {
  to {
    -webkit-mask-position: left;
            mask-position: left;
  }
}
@keyframes animate-maskRight {
  to {
    -webkit-mask-position: left;
            mask-position: left;
  }
}
/*===================================
フェードイン
===================================*/
.u-fade-in {
  opacity: 0;
  -webkit-animation: animate-fadein 0.8s 0.5 forwards;
          animation: animate-fadein 0.8s 0.5 forwards;
  will-change: transform, opacity;
}
.u-fade-up {
  opacity: 0;
  -webkit-animation: animate-fadeUp 0.8s forwards;
          animation: animate-fadeUp 0.8s forwards;
  will-change: transform, opacity;
}
.u-fade-down {
  opacity: 0;
  -webkit-animation: animate-fadeDown 0.8s forwards;
          animation: animate-fadeDown 0.8s forwards;
  will-change: transform, opacity;
}
.u-fade-left {
  opacity: 0;
  -webkit-animation: animate-fadeInLeft 0.8s forwards;
          animation: animate-fadeInLeft 0.8s forwards;
  will-change: transform, opacity;
}
.u-fade-right {
  opacity: 0;
  -webkit-animation: animate-fadeInRight 0.8s forwards;
          animation: animate-fadeInRight 0.8s forwards;
  will-change: transform, opacity;
}

@-webkit-keyframes animate-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes animate-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes animate-fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 25px);
            transform: translate(0, 25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes animate-fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 25px);
            transform: translate(0, 25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes animate-fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes animate-fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes animate-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes animate-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes animate-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes animate-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/*===================================
回転
===================================*/
.rotateX {
  -webkit-animation: animate-rotateX 8s forwards;
          animation: animate-rotateX 8s forwards;
}

.rotateXcenter {
  -webkit-animation: animate-rotateX 8s forwards;
          animation: animate-rotateX 8s forwards;
}

@-webkit-keyframes animate-rotateX {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate-rotateX {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes animate-rotateXcenter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate-rotateXcenter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*==================================================
スーッ
===================================*/
.slideIn {
  -webkit-animation: animate-slideIn 0.4s linear forwards;
          animation: animate-slideIn 0.4s linear forwards;
}

@-webkit-keyframes animate-slideIn {
  from {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes animate-slideIn {
  from {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/*==================================================
滑らかに変形して出現
===================================*/
.smooth {
  -webkit-animation: animate-smooth 1s forwards;
          animation: animate-smooth 1s forwards;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes animate-smooth {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

@keyframes animate-smooth {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}