@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* レスポンシブ消去
-------------------------------------------------- */
.pcB {
  display: none;
}
@media screen and (min-width: 769px) {
  .pcB {
    display: block;
  }
}

.spB {
  display: block;
}
@media screen and (min-width: 769px) {
  .spB {
    display: none;
  }
}

.pcI {
  display: none;
}
@media screen and (min-width: 769px) {
  .pcI {
    display: inline;
  }
}

.spI {
  display: inline;
}
@media screen and (min-width: 769px) {
  .spI {
    display: none;
  }
}

/* ヘッダー（header）
-------------------------------------------------- */
/* ----- sp ----- */
@media screen and (max-width: 768px) {
  .headerWrap {
    background-color: #fff;
    font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    position: relative;
    z-index: 9000;
  }
  .header {
    background-color: #fff;
    border-top: 5px solid #009DA6;
    border-bottom: 1px solid #C8C8C8;
    position: relative;
    z-index: 1;
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 25px 15px 27px;
    width: auto;
  }
  .header__logoWrap {
    display: flex;
    align-items: center;
    gap: 0 16px;
  }
  .header__logo {
    flex-shrink: 0;
    position: relative;
    width: 121.73px;
  }
  .header__logo::after {
    content: "";
    border-right: 1px solid #C7C7C7;
    height: 28px;
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
  }
  .header__logo a {
    display: block;
  }
  .header__pageName {
    color: #000;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4167;
  }
  .header__pageName .ib {
    display: inline-block;
  }
  .header__langList {
    display: none;
  }
  .header__hamburger {
    background-color: initial;
    border: none;
    color: #008486;
    display: flex;
    align-items: center;
    gap: 0 9px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4167;
    margin-left: 10px;
  }
  .header__hamburger__txt {
    display: block;
  }
  .header__hamburger__icon {
    display: block;
    position: relative;
    width: 22px;
  }
  .header__hamburger__icon span {
    background-color: #008486;
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .header__hamburger__icon span:nth-child(1) {
    top: calc(50% - 8px);
  }
  .header__hamburger__icon span:nth-child(2) {
    top: 50%;
  }
  .header__hamburger__icon span:nth-child(3) {
    top: calc(50% + 8px);
  }
  .header__hamburger.is-active .header__hamburger__icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header__hamburger.is-active .header__hamburger__icon span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active .header__hamburger__icon span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header_bg {
    display: none;
  }
}
/* ----- pc ----- */
@media screen and (min-width: 769px) {
  .headerWrap {
    background-color: #fff;
    font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    transition: transform 0.3s ease;
    will-change: transform;
  }
  .headerWrap.is-hidden {
    transform: translateY(-100%);
  }
  .header_bg {
    cursor: pointer;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 8889;
  }
  .header_bg.is-active {
    opacity: 1;
    visibility: visible;
  }
  .header {
    background-color: #fff;
    border-top: 5px solid #009DA6;
    border-bottom: 1px solid #C8C8C8;
    width: 100%;
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 17px 63px 17px 20px;
    max-width: 1640px;
  }
  .header__logoWrap {
    display: flex;
    align-items: center;
    gap: 0 44px;
  }
  .header__logo {
    position: relative;
    width: 189px;
  }
  .header__logo::after {
    content: "";
    border-right: 0.05209vw solid #C7C7C7;
    height: 40px;
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
  }
  .header__logo a {
    display: block;
  }
  .header__pageName {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4286;
  }
  .header__langList ul {
    display: flex;
    align-items: baseline;
  }
  .header__langList ul::before {
    content: "/";
    order: 2;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 7px;
  }
  .header__langList a {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
  }
  .header__langList a:hover {
    color: #009DA6;
  }
  .header__langList .en {
    order: 3;
  }
  .header__langList .jp {
    order: 1;
  }
  .header__langList .jp a {
    color: #BEBEBE;
    pointer-events: none;
  }
  .header__hamburger {
    display: none;
  }
}
/* グローバルナビ
-------------------------------------------------- */
/* グローバルナビ sp */
@media screen and (max-width: 768px) {
  .gNav {
    background-color: #fff;
    color: #000;
    font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    height: calc(100dvh - 85px);
    width: 100dvw;
    position: absolute;
    top: 85px;
    left: 0;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
  }
  .gNav.is-active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .gnav__btn {
    background-color: initial;
    background-image: url("/expo/includes/assets/img/icon_folder_gNav.svg");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 26.72px 19.64px;
    border: none;
    padding: 27px 50px 26px 36px;
    position: relative;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
  }
  .gnav__btn::before {
    content: "";
    display: block;
    background-image: url("/expo/includes/assets/img/icon_arrowRight_gNav.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 15px;
    width: 9px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }
  .gNavLower {
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(150dvw);
    transition: transform 0.6s;
    z-index: 1;
    height: calc(100dvh - 85px);
    width: 100%;
  }
  .gNavLower.is-active {
    transform: translateX(0);
  }
  .gNavLower__inner {
    height: 100%;
  }
  .gnav__btn--back {
    display: block;
    background-color: #DCDCDC;
    border: none;
    color: #008486;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4286;
    text-align: left;
    padding: 15px 36px;
    position: relative;
    width: 100%;
  }
  .gnav__btn--back::before {
    content: "";
    background-image: url("/expo/includes/assets/img/icon_arrowRight_gNav.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 15px;
    width: 9px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%) scale(-1, 1);
  }
  .gNavLower__heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .gNavLower__heading a {
    color: #000;
    display: flex;
    justify-content: space-between;
    padding: 26px 15px 27px;
  }
  .gNavLower__heading .icon_top {
    display: inline-flex;
    align-items: center;
    gap: 0 15px;
    color: #008486;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4286;
    margin-left: 15px;
  }
  .gNavLower__heading .icon_top::before {
    content: "";
    background-image: url("/expo/includes/assets/img/icon_arrowRight_gNav.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 15px;
    width: 9px;
  }
  .gNavLower__wrap {
    background-color: #F0F0F0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4286;
    padding: 0 15px 26px;
    height: calc(100% - 127px);
    overflow-y: scroll;
    min-height: 0;
  }
  .gNavLower__wrap a {
    display: block;
    color: #008486;
  }
  .gNavLower__body {
    border-bottom: 0.26667vw solid #fff;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .gNavLower__body__ttl {
    border-bottom: 1px solid #707070;
    padding-bottom: 13px;
    margin-bottom: 12px;
  }
  .gNavLower__body__list {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
  }
  .gNavLower__bottom {
    padding: 20px 0;
  }
}
/* グローバルナビ pc */
@media screen and (min-width: 769px) {
  .gNav {
    border-bottom: 1px solid #C8C8C8;
    background-color: #fff;
    font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    position: relative;
  }
  .gNav__inner {
    margin: 0 auto;
    max-width: 1640px;
  }
  .gNav__list {
    display: flex;
    gap: 0 50px;
    line-height: 1;
    padding: 0 20px;
  }
  .gnav__btn--back {
    display: none;
  }
  .gnav__btn {
    background-color: initial;
    border: none;
    position: relative;
    padding: 12px 0 15px;
  }
  .gnav__btn::before, .gnav__btn::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12.5px 15px 12.5px;
    position: absolute;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 0.3s;
  }
  .gnav__btn::before {
    border-color: transparent transparent #C8C8C8 transparent;
    bottom: -1px;
  }
  .gnav__btn::after {
    border-color: transparent transparent #F0F0F0 transparent;
    bottom: -2.5px;
  }
  .gnav__btn > span {
    display: flex;
    align-items: center;
    gap: 0 8px;
    color: #000;
    font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4286;
  }
  .gnav__btn > span::after {
    content: "";
    background-image: url("/expo/includes/assets/img/icon_arrow_gNav.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 9px;
    width: 15px;
    transition: 0.6s;
  }
  .gNav__list__item.is-active .gnav__btn::before, .gNav__list__item.is-active .gnav__btn::after {
    opacity: 1;
  }
  .gNav__list__item.is-active .gnav__btn span {
    color: #008486;
  }
  .gNav__list__item.is-active .gnav__btn span::after {
    transform: rotate(180deg);
  }
  .gNav__list__item.is-active > .gNavLower {
    max-height: calc(100dvh - 130px);
  }
  .gNavLower {
    background-color: #F0F0F0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4286;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100dvw;
    overflow: auto;
    max-height: 0;
    transition: max-height 0.5s ease;
  }
  .gNavLower a {
    color: #008486;
    display: block;
    transition: opacity 0.3s;
  }
  .gNavLower a:hover {
    opacity: 0.6;
  }
  .gNavLower__inner {
    padding: 34px 20px 36px;
    margin: 0 auto;
    max-width: 1640px;
  }
  .gNavLower__heading {
    border-bottom: 2px solid #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4445;
  }
  .gNavLower__heading a {
    border-bottom: 2px solid #008486;
    color: #008486;
    display: inline-block;
    margin-bottom: -2px;
    padding-bottom: 6px;
  }
  .gNavLower__heading .icon_top {
    display: none;
  }
  .gNavLower__body {
    border-bottom: 2px solid #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 2.5%;
    padding: 30px 0 46px;
  }
  .gNavLower__body .gNavLower__body__wrap {
    width: 23.125%;
  }
  .gNavLower__body .gNavLower__body__ttl {
    border-bottom: 1px solid #707070;
    padding-bottom: 13px;
    margin-bottom: 12px;
  }
  .gNavLower__body .gNavLower__body__list {
    display: flex;
    flex-direction: column;
    gap: 13px 0;
  }
  .gNavLower__bottom__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 2.5%;
    padding: 25px 0;
  }
}
/* パンクズリスト（breadcrumb）
-------------------------------------------------- */
.breadcrumb {
  background-color: #fff;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb__list {
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4167;
  margin: 0 auto;
  padding: 16px 20px;
  width: min(100dvw, 1640px);
}
.breadcrumb__list li {
  background-image: url("/expo/includes/assets/img/icon_credit_arrow.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 12px 17px;
  display: inline;
  padding-left: 2em;
  margin-right: 1em;
}
.breadcrumb__list li:first-child {
  background: none;
  padding: 0;
}
.breadcrumb__list li:last-child {
  margin: 0;
}
.breadcrumb__list li a {
  color: #000;
  font-weight: 400;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .breadcrumb__list li a:hover {
    opacity: 0.6;
  }
}

/* クレジット（credit）
-------------------------------------------------- */
.credit {
  background-color: #fff;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  position: relative;
  z-index: 10;
}

.credit__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px 15px;
}
@media screen and (min-width: 769px) {
  .credit__inner {
    padding: 40px 30px 45px;
  }
}

.credit__logo {
  margin: 0 auto;
  height: auto;
  width: 220px;
}
@media screen and (min-width: 769px) {
  .credit__logo {
    width: 238px;
  }
}

.credit__txt {
  font-size: 14px;
  line-height: 1.7143;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .credit__txt {
    font-size: 14px;
    line-height: 1.7143;
    margin-top: 10px;
  }
}
.credit__txt .ib {
  display: inline-block;
}

.credit__copyright {
  font-size: 12px;
  line-height: 1.6667;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .credit__copyright {
    font-size: 14px;
    line-height: 1.6429;
    margin-top: 3px;
  }
}

/* フッター（footer）
-------------------------------------------------- */
.footer {
  background-color: #fff;
  border-top: 1px solid #c6c6c6;
  display: flex;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  flex-direction: column;
  gap: 20px 0;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .footer {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    padding: 30px 30px 35px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 15px 20px;
  }
}

/* 言語切り替えボタン */
.footer__lang {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7143;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0 18px;
  align-items: baseline;
}
@media screen and (min-width: 769px) {
  .footer__lang {
    display: none;
  }
}
.footer__lang li {
  position: relative;
}
.footer__lang a {
  color: #000;
  transition: opacity 0.2s ease-in-out;
}
.footer__lang a:hover {
  opacity: 0.8;
}

.footer__lang li:not(:first-child)::before {
  content: "";
  background-color: #666;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  height: 13px;
  width: 1px;
  position: absolute;
  top: 5px;
  left: -9px;
  transform: rotate(22deg);
}
@media screen and (min-width: 769px) {
  .footer__lang li:not(:first-child)::before {
    font-size: 16px;
    height: 13px;
    width: 1px;
    top: 5px;
    left: -9px;
  }
}

.footer__lang li.-current a {
  color: #b4b4b4;
  pointer-events: none;
}

/* フッターナビリスト */
.footer__utilityList {
  color: #666;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px 28px;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  list-style: none;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .footer__utilityList {
    font-size: 14px;
    flex-direction: row;
    grid-column: 2/3;
    grid-row: 1/2;
    gap: 13px 28px;
  }
}

.footer__utilityList a {
  color: #008486;
}
.footer__utilityList a:hover {
  color: #00a8a9;
  text-decoration: underline;
}

/* コピーライト */
.footer__copylight {
  text-align: center;
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (min-width: 769px) {
  .footer__copylight {
    margin-top: 0;
    text-align: right;
  }
}

/* フッターロゴ */
.footer__copylight__logo {
  display: block;
  margin: 0 auto 5px;
  width: 120px;
}
@media screen and (min-width: 769px) {
  .footer__copylight__logo {
    margin: 0 0 5px auto;
    width: 120px;
  }
}
.footer__copylight__logo img {
  width: auto;
}

/* コピーライト */
.footer__copylight__txt {
  color: #999;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.7;
}
