@charset "UTF-8";
/*
  --------------------------------
  Created: 2017.03.29
  Last Modified: 2024.07.11
  --------------------------------
*/
/* --------------------------------
  共通レイアウト
-------------------------------- */
@media (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .hidden-sp {
    display: none !important;
  }
}
.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.gatewayContainer {
  position: relative;
  min-width: 320px;
  -webkit-font-smoothing: subpixel-antialiased;
}
@media (max-width: 767.98px) {
  .gatewayContainer {
    font-size: 0.875rem;
    line-height: 1.231;
  }
}
.gatewayContainer *,
.gatewayContainer *::before,
.gatewayContainer *::after {
  box-sizing: border-box;
}
.gatewayContainer a {
  color: #333;
  text-decoration: none;
}
.no-touch .gatewayContainer a:hover,
.touch .gatewayContainer a.is-touched,
.gatewayContainer a:active {
  color: #c00;
  text-decoration: none;
}
.gatewayContainer ul,
.gatewayContainer ol {
  list-style: none;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.touch .gatewayContainer * {
  outline: none;
}

/* --------------------------------
  サイトナビ
-------------------------------- */
@media only screen and (min-width: 1100px) {
  .gh-gnav {
    display: none;
  }
}
@media only screen and (max-width: 1099px) {
  .sitenav {
    display: none;
  }
}
.sitenav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 85px;
  padding: 13px 0;
  background-color: #fff;
}
.sitenav_inner {
  display: flex;
  justify-content: center;
  height: 100%;
}
.sitenav_bar {
  display: flex;
  align-items: center;
  padding: 0 13px;
}
.sitenav_section {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 44px;
  border-right: 1px solid #cecece;
}
.sitenav_section + .sitenav_section {
  padding-left: 44px;
}
.sitenav_section_h {
  margin-bottom: 3px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #666;
  text-align: center;
}
.sitenav_list {
  display: flex;
  font-size: 0.9375rem;
  font-weight: bold;
}
.sitenav_listitem + .sitenav_listitem {
  margin-left: 44px;
}
.sitenav_listitem a {
  position: relative;
}
.sitenav_listitem a::after {
  position: absolute;
  right: -3px;
  bottom: -9px;
  left: -3px;
  display: block;
  height: 2px;
  margin: 0 auto;
  content: "";
  background-color: #595959;
  opacity: 0;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.no-touch .sitenav_listitem a:hover,
.touch .sitenav_listitem a.is-touched,
.sitenav_listitem a:active {
  color: inherit;
}
.no-touch .sitenav_listitem a:hover::after,
.touch .sitenav_listitem a.is-touched::after,
.sitenav_listitem a:active::after,
.sitenav_listitem a.is-active::after {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* --------------------------------
  サイトナビ - メガメニュー
-------------------------------- */
@media only screen and (max-width: 1099px) {
  .sitenav_megamenu {
    display: none;
  }
}
.sitenav_megamenu {
  position: absolute;
  top: 85px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% - 85px);
  pointer-events: none;
}
.megamenu-is-visible .sitenav_megamenu {
  pointer-events: auto;
}
.sitenav_megamenu_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0);
  transition: background-color 0.3s;
}
.megamenu-is-visible .sitenav_megamenu_overlay {
  background-color: rgba(51, 51, 51, 0.2);
}
.sitenav_megamenu_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  visibility: hidden;
  background-color: rgba(51, 51, 51, 0.94);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.sitenav_megamenu_item.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0s;
}
.sitenav_megamenu_item a {
  color: inherit;
}
.no-touch .sitenav_megamenu_item a:hover,
.touch .sitenav_megamenu_item a.is-touched {
  color: inherit;
  text-decoration: underline;
}
.sitenav_megamenu_inner {
  position: relative;
  max-width: 1000px;
  padding: 30px 0;
  margin: 0 auto;
}
.sitenav_megamenu_header {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}
.sitenav_megamenu_header_links {
  margin-left: 35px;
  font-size: 0.8125rem;
}
.sitenav_megamenu_header_links a::before {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin: -7px 10px -5px 0;
  vertical-align: middle;
  content: "";
  background: url(../img/icon_arw_white.svg) no-repeat left center;
  background-size: contain;
}
.sitenav_megamenu_heading {
  font-size: 1.1875rem;
}
.sitenav_megamenu_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -15px;
}
.sitenav_megamenu_listitem {
  flex-basis: calc(33.333333% - 30px);
  margin: 0 15px 25px;
}
.sitenav_megamenu_category + .sitenav_megamenu_category {
  margin-top: 25px;
}
.sitenav_megamenu_category_heading {
  margin-bottom: 12px;
  font-size: 1.125rem;
}
.sitenav_megamenu_category_links {
  font-size: 0.8125rem;
}
.sitenav_megamenu_category_links > li {
  margin-top: 5px;
}
.sitenav_megamenu_category_links a::before {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin: -7px 10px -5px 0;
  vertical-align: middle;
  content: "";
  background: url(../img/icon_arw_white.svg) no-repeat left center;
  background-size: contain;
}
.sitenav_megamenu_category_links a[href*=".pdf"]::before {
  width: 16px;
  height: 16px;
  margin: -9px 6px -7px -5px;
  background-image: url(../img/icon_pdf.png);
}
.sitenav_megamenu_category_links .ico {
  display: inline-block;
  vertical-align: middle;
}
.sitenav_megamenu_category_links .ico_blank {
  width: 13px;
  height: 12px;
  margin: -7px 0 -5px 6px;
}
@media (min-width: 768px) {
  .sitenav_megamenu_category_links + .sitenav_megamenu_category_links {
    margin-top: 25px;
  }
}
.sitenav_megamenu_close {
  position: absolute;
  top: 30px;
  right: 0;
}
.sitenav_megamenu_close_btn {
  font-size: 0.8125rem;
}
.sitenav_megamenu_close_btn::before {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: -7px 10px -5px 0;
  vertical-align: middle;
  content: "";
  background: url(../img/icon_close.svg) no-repeat left center;
  background-size: contain;
}

/* --------------------------------
  ヒーローエリア
-------------------------------- */
.sec-hero {
  max-width: 1920px;
  margin: 0 auto;
}
.hero_img {
  --hero-padding-x: calc((100vw - 1200px) / 2);
}
@media only screen and (max-width: 1260px) {
  .hero_img {
    --hero-padding-x: 30px;
  }
}
.hero_img_viewport {
  height: 700px;
}
@media (max-width: 767.98px) {
  .hero_img_viewport {
    height: 319px;
  }
}
.hero_img_item {
  position: relative;
  height: 100%;
}
.hero_img_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_img_header {
  position: absolute;
  bottom: 100px;
  left: 0;
  min-width: 40%;
  max-width: 60%;
  padding: 42px 42px 42px var(--hero-padding-x);
  background-color: rgba(24, 24, 24, 0.71);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media only screen and (max-width: 1200px) {
  .hero_img_header {
    padding: 36px 40px 36px var(--hero-padding-x);
  }
}
@media (max-width: 767.98px) {
  .hero_img_header {
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 17px 20px;
  }
}
.hero_img_heading {
  position: absolute;
  left: var(--hero-padding-x);
}
.hero_img_heading.-mypurpose {
  top: -30px;
}
.hero_img_heading.-voices,
.hero_img_heading.-journals {
  top: -17px;
  padding: 7px 30px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
.hero_img_heading.-voices {
  background-color: #e6761c;
}
.hero_img_heading.-journals {
  background-color: #006fa6;
}
@media (max-width: 767.98px) {
  .hero_img_heading {
    left: 20px;
  }
  .hero_img_heading.-mypurpose {
    top: -20px;
  }
  .hero_img_heading.-mypurpose img {
    height: 31px;
  }
  .hero_img_heading.-voices,
  .hero_img_heading.-journals {
    top: -9px;
    padding: 5px 20px;
    font-size: 0.6875rem;
  }
}
.hero_img_title {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-wrap: pretty;
}
@media only screen and (max-width: 1200px) {
  .hero_img_title {
    font-size: 1.75rem;
    line-height: 1.5625;
  }
}
@media (max-width: 767.98px) {
  .hero_img_title {
    font-size: 0.8125rem;
  }
}
.hero_img_link {
  color: #000;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero_img_link {
    position: absolute;
    right: var(--hero-padding-x);
    bottom: 100px;
  }
}
@media (max-width: 767.98px) {
  .hero_img_link {
    margin-right: -7px;
    margin-left: 10px;
  }
}
@media (max-width: 767.98px) {
  .hero_img_item-serendie .hero_img_link,
  .hero_img_item-our-stories .hero_img_link {
    position: absolute;
    top: 230px;
    right: 0;
    bottom: auto;
    left: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 500px) {
  .hero_img_item-serendie .hero_img_link,
  .hero_img_item-our-stories .hero_img_link {
    top: clamp(230px, 174px + 11.19vw, 260px);
  }
}
@media (min-width: 768px) {
  .hero_img_item-serendie .hero_img_link,
  .hero_img_item-our-stories .hero_img_link {
    top: 480px;
    right: 0;
    bottom: auto;
    left: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .hero_img_item-serendie .hero_img_link,
  .hero_img_item-our-stories .hero_img_link {
    top: clamp(480px, 390px + 6.25vw, 510px);
  }
}
.hero_img_link_btn {
  display: inline-block;
  padding: 10px 60px 10px 13px;
  font-size: 1.125rem;
  font-weight: bold;
  background: #fff url(../img/icon_arw_next.svg) no-repeat right 15px center;
  background-size: 36px auto;
  border: 2px solid #fff;
  transition: background-position 0.3s;
}
.no-touch a:focus .hero_img_link_btn,
.no-touch a:hover .hero_img_link_btn,
.touch a.is-touched .hero_img_link_btn {
  color: #c00;
  background-image: url(../img/icon_arw_next_red.svg);
  background-position: right 7.5px center;
  border-color: #c40001;
}
@media (max-width: 767.98px) {
  .hero_img_link_btn {
    font-size: 1rem;
  }
}
.hero_img_bg {
  height: 100%;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .hero_img_bg {
    background-position: -9999px -9999px, center center;
  }
}
.hero_statement_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 164px;
}
@media (max-width: 767.98px) {
  .hero_statement_content {
    padding-top: 65px;
  }
}
.hero_statement_title {
  font-family: Roboto, sans-serif;
  font-size: 5.375rem;
  font-weight: bold;
  line-height: unset;
  color: #f00;
  text-align: center;
}
@media (max-width: 767.98px) {
  .hero_statement_title {
    font-size: 2rem;
  }
}
.hero_statement_link {
  position: static;
  margin-top: 35px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .hero_statement_link {
    margin-top: 20px;
  }
}
.hero_statement_bg {
  height: 100%;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .hero_statement_bg {
    background-position: -9999px -9999px, center bottom;
  }
}
.hero_img_controler {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: rgba(234, 233, 238, 0.8);
}
.is-single-item .hero_img_controler {
  display: none;
}
@media (max-width: 767.98px) {
  .hero_img_controler {
    position: static;
    height: 40px;
    background-color: #fff;
  }
}
.hero_img_controler_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_img_arrow {
  font-size: 0;
}
@media (max-width: 767.98px) {
  .hero_img_arrow {
    width: 10px;
  }
  .hero_img_arrow img {
    width: 100%;
  }
}
.hero_img_arrow-prev {
  margin-right: 40px;
}
@media (max-width: 767.98px) {
  .hero_img_arrow-prev {
    margin-right: 24px;
  }
}
.hero_img_arrow-next {
  margin-left: 40px;
}
@media (max-width: 767.98px) {
  .hero_img_arrow-next {
    margin-left: 24px;
  }
}
.hero_img_pagination {
  display: flex;
  gap: 0 16px;
  font-size: 0;
}
.hero_img_pagination .splide__pagination__page {
  width: 16px;
  height: 16px;
  background-color: #333;
  border-radius: 9999px;
}
.hero_img_pagination .splide__pagination__page.is-active {
  background-color: #cc0100;
}
@media (max-width: 767.98px) {
  .hero_img_pagination .splide__pagination__page {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767.98px) {
  .hero_img_pagination {
    gap: 0 14px;
  }
}
.hero_img_toggle {
  margin-left: 20px;
}
.hero_img_toggle_ico {
  display: block;
  width: 14px;
  height: 16px;
  font-size: 0;
}
.hero_img_toggle_ico.-play::before {
  display: block;
  width: 14px;
  height: 16px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
  background-color: #333;
}
.hero_img_toggle_ico.-pause {
  display: flex;
  justify-content: space-between;
}
.hero_img_toggle_ico.-pause::before,
.hero_img_toggle_ico.-pause::after {
  display: block;
  width: 5px;
  height: 16px;
  content: "";
  background-color: #333;
}
@media (max-width: 767.98px) {
  .hero_img_toggle_ico {
    width: 12px;
    height: 12px;
  }
  .hero_img_toggle_ico.-play::before {
    width: 12px;
    height: 12px;
  }
  .hero_img_toggle_ico.-pause::before,
  .hero_img_toggle_ico.-pause::after {
    width: 4px;
    height: 12px;
  }
}
.hero_primaryinfo {
  display: flex;
  justify-content: center;
  padding: 22px 30px;
  background-color: #eae9ee;
}
@media (max-width: 767.98px) {
  .hero_primaryinfo {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.hero_primaryinfo_list {
  font-weight: bold;
}
@media (min-width: 768px) {
  .hero_primaryinfo_list {
    text-align: center;
  }
}
.hero_primaryinfo_list a {
  display: block;
  padding-left: 17px;
  color: inherit;
}
.hero_primaryinfo_list a::before {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin: -7px 10px -5px -17px;
  vertical-align: middle;
  content: "";
  background: url(../img/icon_arw.svg) no-repeat left center;
  background-size: contain;
}
.no-touch .hero_primaryinfo a:hover,
.touch .hero_primaryinfo a.is-touched {
  color: inherit;
  text-decoration: underline;
}
.hero_infobar {
  padding: 30px 30px;
}
.hero_infobar a {
  text-decoration: none;
}
.no-touch .hero_infobar a:hover,
.touch .hero_infobar a.is-touched {
  color: inherit;
  text-decoration: underline;
}
.hero_infobar_container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero_infobar_pr {
    display: flex;
    justify-content: center;
  }
}
.hero_infobar_pr_container {
  display: flex;
  align-items: center;
}
.hero_infobar_pr_h {
  flex-shrink: 0;
  align-self: baseline;
  margin-right: 40px;
  font-weight: bold;
  line-height: 1.5;
}
.hero_infobar_pr_h a {
  position: relative;
  display: block;
  padding-left: 27px;
}
.hero_infobar_pr_h a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 100%;
  content: "";
  background: url(../img/icon_arw_down.svg) no-repeat left center;
  background-size: contain;
}
.hero_infobar_pr_item > dl {
  display: flex;
  align-items: baseline;
}
.hero_infobar_pr_date {
  margin-right: 20px;
}
.hero_infobar_pr_desc .ico_pdf {
  width: 16px;
  height: 16px;
  margin-top: -10px;
  margin-bottom: -6px;
  margin-left: 6px;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .hero_infobar {
    padding-top: 12px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .hero_primaryinfo + .hero_infobar {
    padding-top: 30px;
  }
  .hero_infobar_pr_container {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero_infobar_pr_h {
    width: auto;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .hero_infobar_pr_h a {
    padding-left: 20px;
  }
  .hero_infobar_pr_list {
    margin-left: 20px;
  }
  .hero_infobar_pr_item > dl {
    flex-direction: column;
  }
  .hero_infobar_pr_date {
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 0.75rem;
  }
  .hero_infobar_pr_desc {
    font-size: 0.8125rem;
  }
}
/* --------------------------------
  重要なお知らせ
-------------------------------- */
.sec-information {
  padding: 17px 0;
  background-color: #e1e0e5;
}
.no-touch .sec-information a:hover,
.touch .sec-information a.is-touched {
  color: inherit;
  text-decoration: underline;
}
.information_body {
  padding: 0 30px;
}
.information_container {
  display: flex;
  justify-content: center;
}
.information_primary {
  font-weight: bold;
}
.information_primary_item a::before {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin: 0 18px 0 0;
  content: "";
  background: url(../img/notice_arw.svg) no-repeat left center;
  background-size: contain;
}
.information_primary_item-oshirase .ico {
  display: inline-block;
  margin: -21px 0 -18px 12px;
  vertical-align: middle;
}
.information_primary_item-oshirase .ico img {
  vertical-align: bottom;
}
@media (max-width: 767.98px) {
  .information_body {
    padding-right: 10px;
    padding-left: 10px;
  }
  .information_primary {
    display: block;
  }
  .information_primary_item {
    display: block;
    padding: 0;
    font-size: 0.8125rem;
  }
  .information_primary_item:not(:last-child) {
    border-bottom: 1px solid #d1d3d9;
  }
  .information_primary_item a {
    display: block;
    padding: 16px 10px;
  }
  .information_primary_item a::before {
    margin-right: 10px;
  }
}
/* --------------------------------
  特集
-------------------------------- */
.sec-feature {
  padding: 26px 30px;
  background: #eae9ee;
}
.feature_body {
  max-width: 1200px;
  margin: 0 auto;
}
.feature_list {
  display: flex;
  flex-wrap: wrap;
  margin: -13px -15px;
}
.feature_list_item {
  flex-basis: calc(33.333333% - 30px);
  margin: 13px 15px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(35, 36, 13, 0.15);
}
.feature_list_item a {
  position: relative;
  display: block;
  overflow: hidden;
  transition: color 0.2s;
}
.feature_list_item a[href*=".pdf"] .content .h::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: -10px 0 -6px 0;
  vertical-align: middle;
  content: "";
  background-image: url(../img/icon_pdf.png);
  background-size: contain;
}
.feature_list_item .thumb {
  position: relative;
  height: 0;
  padding-top: 50%;
  overflow: hidden;
  line-height: 0;
}
.feature_list_item .thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
}
.no-touch .feature_list_item a:hover .thumb img,
.touch .feature_list_item a.is-touched .thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.feature_list_item .content {
  padding: 16px 5.4% 18px;
  letter-spacing: 0.03em;
}
.feature_list_item .content .h {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.4;
}
.feature_primary .feature_list_item {
  background-color: #253646;
}
.feature_primary .feature_list_item .thumb {
  padding-top: 75%;
}
.feature_primary .feature_list_item .content {
  padding-top: 25px;
  padding-bottom: 25px;
}
.feature_primary .feature_list_item .content .h {
  font-size: 1.375rem;
  color: #fff;
}
@media only screen and (max-width: 960px) {
  .feature_primary .feature_list_item .content {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .feature_primary .feature_list_item .content .h {
    font-size: 1.125rem;
  }
}
.feature_secondary {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid #a1a1a1;
}
@media (max-width: 767.98px) {
  .sec-feature {
    padding: 20px 0;
  }
  .feature_body {
    padding: 0 20px;
  }
  .feature_list {
    margin: -5px -5px;
  }
  .feature_list_item {
    flex-basis: calc(50% - 10px);
    margin: 5px 5px;
  }
  .feature_list_item .content {
    padding: 9px 10px 10px;
  }
  .feature_list_item .content .h {
    font-size: 0.75rem;
    line-height: 1.333333;
  }
  .feature_primary .feature_list {
    margin: -10px 0;
  }
  .feature_primary .feature_list_item {
    flex-basis: 100%;
    margin: 10px 0;
  }
  .feature_primary .feature_list_item .content {
    padding: 16px 14px;
  }
  .feature_primary .feature_list_item .content .h {
    font-size: 1.0625rem;
  }
  .feature_secondary {
    padding-top: 20px;
    margin-top: 0;
    border-top: 0;
  }
}
/* --------------------------------
  ニュースリリース / お知らせ
-------------------------------- */
.sec-news {
  padding: 36px 30px;
}
@media (max-width: 767.98px) {
  .sec-news {
    padding: 30px 20px;
  }
}
.news_row {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .news_row {
    flex-direction: column;
  }
}
.news_col {
  flex: 1;
}
.news_col + .news_col {
  margin-left: 32px;
}
@media (max-width: 767.98px) {
  .news_col + .news_col {
    margin-top: 32px;
    margin-left: 0;
  }
}
.news_header {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 8px;
  border-bottom: 2px solid #a1a1a1;
}
.news_heading {
  font-size: 1.125rem;
}
.news_link {
  margin-left: auto;
}
.news_link a::before {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin: -7px 10px -5px 0;
  vertical-align: middle;
  content: "";
  background: url(../img/icon_arw.svg) no-repeat left center;
  background-size: contain;
}
.no-touch .news_link a:hover,
.touch .news_link a.is-touched {
  color: inherit;
  text-decoration: underline;
}
.news_item {
  padding: 15px 0;
  border-bottom: 1px solid #cecece;
}
.no-touch .news_item a:hover,
.touch .news_item a.is-touched {
  color: inherit;
  text-decoration: underline;
}
.news_item a .ico_pdf {
  width: 16px;
  height: 16px;
  margin-top: -10px;
  margin-bottom: -6px;
  margin-left: 6px;
  vertical-align: middle;
}
.news_date {
  margin-bottom: 6px;
}
@media (max-width: 767.98px) {
  .news_header {
    padding-bottom: 8px;
    margin-bottom: 3px;
  }
  .news_heading {
    font-size: 0.875rem;
  }
  .news_link {
    font-size: 0.75rem;
  }
  .news_item {
    padding: 12px 0;
  }
  .news_date {
    font-size: 0.75rem;
  }
  .news_desc {
    font-size: 0.8125rem;
  }
}
/* --------------------------------
  関連バナー
-------------------------------- */
/* splide-core.min.css */
@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          -moz-user-select: none;
       user-select: none;
}
.splide__track--fade > .splide__list {
  display: block;
}
.splide__track--fade > .splide__list > .splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__container {
  position: relative;
  box-sizing: border-box;
}
.splide__list {
  display: flex;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  -ms-flex-align: center;
}
.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  list-style-type: none !important;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  contain: strict;
}
.splide__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.related {
  padding: 36px 30px 40px;
  background-color: #f2f1f6;
}
.related_container {
  max-width: 1200px;
  margin: 0 auto;
}
.related_header {
  margin-bottom: 14px;
}
.related_heading {
  font-size: 112.5%;
}
.related_carousel .splide__track {
  /* padding for box-shadow */
  padding-top: 10px;
  padding-bottom: 10px;
  margin: -10px -10px;
}
.related_carousel_item {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(35, 36, 13, 0.15);
}
.related_carousel_item a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  transition: color 0.2s;
}
.related_carousel_item .thumb {
  position: relative;
  height: 0;
  padding-top: 50%;
  overflow: hidden;
  line-height: 0;
}
.related_carousel_item .thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
}
.no-touch .related_carousel_item a:hover .thumb img,
.touch .related_carousel_item a.is-touched .thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.related_carousel_item .content {
  padding: 16px 5.4% 18px;
  letter-spacing: 0.03em;
}
.related_carousel_item .content .h {
  font-size: 93.75%;
  font-weight: bold;
  line-height: 1.4;
}
.related_carousel_controler {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .pc-not-scrollable .related_carousel_controler {
    display: none;
  }
}
.related_carousel_controler .splide__arrows {
  display: flex;
  align-items: center;
  margin-top: 28px;
}
.related_carousel_controler .splide__arrow {
  font-size: 0;
}
.related_carousel_controler .splide__pagination {
  gap: 0 10px;
  margin-right: 24px;
  margin-left: 24px;
}
@media (max-width: 767.98px) {
  .related_carousel_controler .splide__pagination {
    gap: 0 12px;
  }
}
.related_carousel_controler .splide__pagination li {
  font-size: 0;
}
.related_carousel_controler .splide__pagination__page {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid #333;
  border-radius: 100%;
}
@media (max-width: 767.98px) {
  .related_carousel_controler .splide__pagination__page {
    width: 16px;
    height: 16px;
    border-width: 1px;
  }
}
@media (hover: hover) {
  .related_carousel_controler .splide__pagination__page:hover {
    background-color: #333;
  }
}
.related_carousel_controler .splide__pagination__page.is-active {
  background-color: #333;
}

/* --------------------------------
  フッターリンク
-------------------------------- */
.sec-foot {
  padding: 35px 30px;
  color: #fff;
  background: #253646;
}
.sec-foot a {
  color: inherit;
  text-decoration: none;
}
.no-touch .sec-foot a:hover,
.touch .sec-foot a.is-touched {
  color: #fff;
  text-decoration: underline;
}
.footlinks_container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.footlinks_row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-left: -30px;
}
.footlinks_section {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 30px;
}
.footlinks_section .h {
  position: relative;
  margin-bottom: 22px;
  font-size: 1rem;
}
.footlinks_section .h span {
  position: relative;
  display: inline-block;
  padding-right: 1.5em;
  background: #253646;
}
.footlinks_section .h::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  content: "";
  background: #666;
}
.footlinks_section .list {
  display: flex;
  flex-wrap: wrap;
  margin: -4px -8px;
  font-size: 0.875rem;
}
.footlinks_section .list_item {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 8px;
  margin: 4px 0;
}
@media only screen and (max-width: 1023px) {
  .footlinks_section .list_item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .sec-foot {
    padding: 45px 20px 65px;
  }
  .footlinks_section {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footlinks_section + .footlinks_section {
    margin-top: 40px;
  }
  .footlinks_section .h {
    margin-bottom: 18px;
    font-size: 0.875rem;
  }
  .footlinks_section .list {
    margin-top: -6px;
    margin-bottom: -6px;
    font-size: 0.6875rem;
  }
  .footlinks_section .list_item {
    margin-top: 6px;
    margin-bottom: 6px;
  }
}
/* --------------------------------
  ページトップ
-------------------------------- */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  font-size: 0;
  cursor: pointer;
  visibility: visible;
  background: #c00;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s, background 0.3s;
}
.pagetop img {
  width: 50px;
  transition: all 0.3s;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.pagetop:hover {
  background: #d11919;
}
.pagetop:hover img {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.pagetop.is-hidden {
  visibility: hidden;
  opacity: 0;
}
.pagetop.is-absoluted {
  position: absolute;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .pagetop img {
    width: 37px;
  }
}

/* --------------------------------
  241009 リニューアル
-------------------------------- */
.gatewayContainer {
  padding-top: 85px;
}
.l-mv {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  background-color: #fff;
}
.l-mv__movie, .l-mv__text {
  position: relative;
  width: 50%;
  max-width: 960px;
}
.l-mv__movie {
  overflow: hidden;
  pointer-events: none;
}
.l-mv__movie:before {
  display: block;
  padding-top: 56.25%;
  width: 0;
  content: '';
}
.l-mv__movie > .video-js {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.l-mv__movie > .video-js > .vjs-poster {
  background-size: cover;
}
.l-mv__movie > .video-js > .vjs-control-bar {
  display: none !important;
}
.l-mv__text {
  display: flex;
  padding: 0 0 clamp(15.2777777778px, 1.3888888889vw, 26.6666666667px) clamp(87.8472222222px, 7.9861111111vw, 153.3333333333px);
  flex-direction: column;
  justify-content: flex-end;
}
.l-mv__text:before {
  position: absolute;
  top: min(calc(9/1236*100vw), 9px);
  right: max(calc(-16/1236*100vw), -16px);
  display: block;
  width: min(calc(507/1236*100vw), 507px);
  height: min(calc(197/1236*100vw), 197px);
  pointer-events: none;
  content: '';
  background: url(/gateway/img/bg_mv_square.png) no-repeat center top;
  background-size: 100%;
}
.l-mv__catch, .l-mv__lead {
  position: relative;
}
.l-mv__catch {
  font-size: clamp(25.9722222222px, 2.3611111111vw, 45.3333333333px);
  line-height: 1.56;
  letter-spacing: 0.05em;
}
.l-mv__lead {
  margin-top: clamp(7.6388888889px, 0.6944444444vw, 13.3333333333px);
  font-weight: 300;
  font-size: clamp(11.4583333333px, 1.0416666667vw, 20px);
  line-height: 2.13;
}
.l-notice {
  padding: 24px 0;
  background-color: #f7f7f7;
}
.l-notice .c-arr {
  padding: 4px 50px 4px 30px;
  background-position: left top 7px;
}
.l-notice .c-arr > img {
  position: absolute;
  top: calc(50% - 19.5px);
  right: 0;
}
.l-section {
  padding: 96px 0;
}
.l-inner {
  position: relative;
  max-width: 1236px;
  padding-right: 13px;
  padding-left: 13px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.l-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 50%;
  background-color: #f7f7f7;
}
.l-hero:before, .l-hero:after {
  display: block;
  content: '';
}
.l-hero:before {
  width: 0;
  padding-top: min(100%, 720px);
  pointer-events: none;
}
.l-hero:after {
  position: absolute;
  top: 0;
  right: 50%;
  width: 50%;
  max-width: 720px;
  height: 100%;
  background: url(/gateway/img/bg_hero.jpg) no-repeat center center;
  background-size: cover;
}
.l-hero-container {
  width: 100%;
  max-width: 720px;
}
.l-hero-inner {
  padding: 60px min(8.88889vw,64px);
}
.l-hero-heading {
  font-size: 3em;
  font-weight: 700;
  font-family: "メイリオ","ヒラギノ角ゴ Pro W3","Lucida Grande","Hiragino Kaku Gothic Pro",Osaka,Verdana,"ＭＳ Ｐゴシック",sans-serif;
  line-height: 1.39583;
}
.l-hero-inner .c-btn {
  margin-top: 40px;
}
.c-heading {
  position: relative;
}
.c-heading--lv2 {
  padding-left: 24px;
  margin-bottom: 45px;
  font-size: 2.125em;
  line-height: 1.4118;
}
.c-heading--lv2:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 6px;
  height: 100%;
  pointer-events: none;
  content: '';
  background-color: #c40001;
}
.c-heading--lv3 {
  margin-top: 60px;
  font-size: 1.75em;
}
.c-heading--lv3 > a:hover {
  color: #c40001;
}
.c-heading--has-btn {
  padding-right: 200px;
}
.c-heading--has-btn + .c-btn {
  display: block;
  margin: -90px 0 45px auto;
  width: 200px;
}
.c-text {
  font-size: 1.125em;
  line-height: 1.7778;
}
.c-img img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
.c-arr {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  background: url(/gateway/img/LinkNext.svg) no-repeat left top 3px;
}
.c-btn {
  position: relative;
  display: inline-block;
  padding: 8px 60px 8px 15px;
  margin-top: 60px;
  font-size: 1.0625em;
  font-weight: 700;
  line-height: 1.4118;
  background: url(/gateway/img/ArrowNext.svg) no-repeat right 15px center;
  border: 2px solid #000;
  transition: background-image 0.3s, color 0.3s, border-color 0.3s;
}
.c-btn:link, .c-btn:visited {
  color: inherit;
}
.c-btn:hover {
  color: #c40001;
  text-decoration: none;
  background-image: url(/gateway/img/ArrowNext-R.svg);
  border-color: #c40001;
}
.c-arr:hover, a:hover .c-arr {
  background-image: url(/gateway/img/LinkNext-R.svg);
}
.c-card-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-40/1210*100%) 0 0;
}
.c-card-list + .c-card-list {
  margin-top: 55px;
}
.c-card-item {
  width: calc(272.5/1250*100%);
  margin: 0 calc(40/1250*100%) 0 0;
}
.c-card-item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-card-item__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f0f0f0;
}
.c-card-item__img:after {
  display: block;
  width: 0;
  padding-top: 66.6667%;
  content: '';
}
.c-card-item__img > img {
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}
.c-card-item__tag {
  margin-top: 15px;
  font-weight: 700;
  line-height: 1;
  color: #c40001;
}
.c-card-item__date {
  margin-top: 15px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  line-height: 1;
  color: #4d4d4d;
}
.c-card-item__name {
  flex: 1 0 auto;
  margin-top: 10px;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5556;
}
.c-card-item--large {
  width: calc(585/1250*100%);
}
.c-card-item--large[data-order="1"] {
  order: -2;
}
.c-card-item--large[data-order="2"] {
  order: -1;
}
.c-card-item--large .c-card-item__name {
  font-size: 1.25em;
}
.c-news-list {
  margin-top: 50px;
}
.c-news-item:not(:first-child) {
  margin-top: 20px;
}
.c-news-item > a {
  display: inline-block;
}
.c-news-item__date {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  color: #4d4d4d;
}
.c-news-item__name {
  margin-top: 15px;
  font-weight: 700;
}
.c-news-item__name .ico {
  width: 1em;
  margin-left: 0.25em;
  vertical-align: -2px;
}
.embedsocial-grid {
  display: flex;
  justify-content: space-between;
}
.embedsocial-col {
  width: calc((100% - 80px)/3);
}
.embedsocial-hashtag {
  margin: -35px -10px -13px;
}
@media only screen and (max-width: 1099px) {
  .gatewayContainer {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .l-mv {
    display: block;
  }
  .l-mv__movie, .l-mv__text {
    width: 100%;
  }
  .l-mv__movie {
    left: 0;
    width: 100%;
    max-width: none;
    height: 210px;
    background-position: center top 37.5%;
  }
  .l-mv__text {
    position: static;
    padding: 21.3333333333vw 5.3333333333vw 13.333333333333333vw;
  }
  .l-mv__text:before {
    top: 51.2vw;
    left: 27.6vw;
    width: 69.8666666667vw;
    height: 22.2666666667vw;
  }
  .l-mv__catch {
    font-size: 6.4vw;
    line-height: 1.68;
    letter-spacing: 0.05em;
  }
  .l-mv__lead {
    margin-top: 2.6666666667vw;
    font-size: 4.2666666667vw;
    line-height: 2;
  }
  .l-mv__lead > br {
    display: none;
  }
  .l-notice {
    padding: 26px 0;
  }
  .l-notice .c-arr {
    padding: 5px 50px 5px 30px;
    background-position: left top 8px;
  }
  .l-section {
    padding: 50px 0;
  }
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-hero {
    display: block;
    padding-top: 100%;
    padding-left: 0;
  }
  .l-hero:before {
    content: none;
  }
  .l-hero:after {
    right: 0;
    width: 100%;
    max-width: none;
    height: auto;
    padding-top: 100%;
  }
  .l-hero-container {
    max-width: none;
  }
  .l-hero-inner {
    padding: 45px 20px;
  }
  .l-hero-heading {
    font-size: 2.1429em;
    line-height: 1.4;
  }
  .l-hero-inner .c-btn {
    margin-top: 25px;
  }
  .c-heading--lv2 {
    padding-left: 12px;
    margin-bottom: 30px;
    font-size: 1.7143em;
    line-height: 1.4167;
  }
  .c-heading--lv2:before {
    width: 3px;
  }
  .c-heading--lv3 {
    margin-top: 45px;
    font-size: 1.7143em;
  }
  .c-heading--has-btn {
    padding-right: 0;
  }
  .c-heading--has-btn + .c-btn {
    display: inline-block;
    margin: -10px 0 30px;
    width: auto;
  }
  .c-text {
    font-size: 1.1429em;
    line-height: 1.75;
  }
  .c-arr {
    background-position: left top 1px;
  }
  .c-btn {
    padding: 7px 60px 7px 15px;
    margin-top: 35px;
    font-size: 1.1429em;
    line-height: 1.375;
    background-size: 28px auto;
  }
  .c-card-list {
    margin: -30px calc(-30/670*100%) 0 0;
  }
  .c-card-list + .c-card-list {
    margin-top: 0;
  }
  .c-card-item {
    width: calc(320/700*100%);
    margin: 30px calc(30/700*100%) 0 0;
  }
  .c-card-item__name {
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.4286;
  }
  .c-card-item__date {
    font-size: 1.1429em;
  }
  .c-card-item--large {
    width: calc(670/700*100%);
  }
  .c-card-item--large .c-card-item__name {
    font-size: 1.1429em;
  }
  .c-news-list {
    margin-top: 30px;
  }
  .c-news-item__date {
    font-size: 1.3333em;
  }
  .embedsocial-grid {
    flex-wrap: wrap;
  }
  .embedsocial-col {
    width: calc(50% - 15px);
  }
  .embedsocial-col:nth-child(n+3) {
    margin-top: 30px;
  }
  .pc {
    display: none !important;
  }
}