@charset "UTF-8";

/* ------------------------------
base
------------------------------ */
img {
  display: block;
  width: 100%;
  height: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}
#Contents {
  overflow: hidden;
}
/* ------------------------------
mv
------------------------------ */
.mv__inner {
  aspect-ratio: 16 / 9;
}
.mv__inner > .video-js {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__credit-txt {
  font-size: 0.75rem;
  margin-top: 10px;
  text-align: right;
  max-width: 1200px;
  margin-inline: auto;
}

/* ------------------------------
lead
------------------------------ */
.lead {
  position: relative;
  margin: 70px auto 0;
  max-width: 1440px;
}
.lead-stamp-image {
  position: absolute;
  bottom: -4%;
  right: -7%;
  width: min(874px, calc(874 / 1440 * 100vw));
  rotate: -16.25deg;
}
.lead__inner {
  padding: 0 30px 100px;
}
@media screen and (max-width: 767px) {
  .lead {
    margin-top: calc(5 * var(--base-unit));
    overflow: hidden;
  }
  .lead__inner {
    padding: 0 calc(2 * var(--base-unit)) calc(5 * var(--base-unit));
  }
  .lead-stamp-image {
    top: calc(9.5 * var(--base-unit));
    bottom: unset;
    right: calc(-2.3 * var(--base-unit));
    width: calc(23 * var(--base-unit));
    z-index: -1;
  }
}
/* ---------- lead-title-group ---------- */
.lead-title-group {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
}
.lead-title-image {
  max-width: 241px;
}
.lead-title__sub {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
.lead-title__main {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .lead-title-group {
    align-items: center;
    column-gap: calc(1.2 * var(--base-unit));
  }
  .lead-title-image {
    max-width: 100%;
    width: calc(7 * var(--base-unit));
  }
  .lead-title__sub {
    font-size: calc(1.5 * var(--base-unit));
  }
  .lead-title__main {
    font-size: calc(2.2 * var(--base-unit));
    margin-top: calc(0.6 * var(--base-unit));
  }
}

/* ---------- lead-about ---------- */
.lead-about {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  margin-top: 100px;
}
.lead-about-image-link {
  max-width: 200px;
  flex-shrink: 0;
}
.lead-about-image-link__thumbnail{
  overflow: hidden;
  border:1px solid #d5d5d5;
}
.lead-about-image-link__thumbnail img{
  transition: scale 0.3s;
}
.lead-about-image-link__txt {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 4px;
}
.lead-about-description {
  font-size: 1.25rem;
  line-height: calc(33 / 20);
  max-width: 850px;
}
.lead-about-description > p:last-child {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .lead-about-image-link:hover .lead-about-image-link__thumbnail img {
    scale: 1.1;
  }
}
@media screen and (max-width: 767px) {
  .lead-about {
    align-items: center;
    flex-direction: column-reverse;
    column-gap: 0;
    row-gap: calc(2 * var(--base-unit));
    margin-top: calc(4 * var(--base-unit));
  }
  .lead-about-image-link {
    max-width: 100%;
  }
  .lead-about-description {
    font-size: calc(1.4 * var(--base-unit));
  }
  .lead-about-description > p:last-child {
    margin-top: 1em;
  }
}

/* ------------------------------
schedule
------------------------------ */
.schedule {
  padding: 90px 68px 210px;
  background: linear-gradient(135deg,  rgba(226, 35, 35, 0.8) 0%,rgba(4, 13, 119, 0.8) 100%);
}
.schedule-inner {
  border: 6px solid #fff;
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 60px 50px;
  box-sizing: border-box;
  max-width: 1305px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .schedule {
    padding: calc(6 * var(--base-unit)) calc(2 * var(--base-unit)) calc(12 * var(--base-unit));
  }
  .schedule-inner {
    border: calc(0.6 * var(--base-unit)) solid #fff;
    border-radius: calc(2.8 * var(--base-unit));
    background-color: rgba(255, 255, 255, 0.85);
    padding: calc(4 * var(--base-unit)) calc(1 * var(--base-unit));
  }
}
/* ---------- schedule-title-group ---------- */
.schedule-title__sub {
  width: 128px;
  margin-inline: auto;
}
.schedule-title__main {
  font-size: 2rem;
  font-weight: 700;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 28px;
  align-items: center;
  margin-top: 16px;
}
.schedule-title__main::before {
  content: "";
  background-color: #E10100;
  width: 100%;
  height: 8px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.schedule-title__main::after {
  content: "";
  background-color: #040D77;
  width: 100%;
  height: 8px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media screen and (max-width: 767px) {
  .schedule-title__sub {
    width: calc(11 * var(--base-unit));
  }
  .schedule-title__main {
    font-size: calc(2.4 * var(--base-unit));
    column-gap: calc(1.2 * var(--base-unit));
    margin-top: calc(1 * var(--base-unit));
  }
  .schedule-title__main::before {
    height: calc(0.8 * var(--base-unit));
    border-top-left-radius: calc(0.3 * var(--base-unit));
    border-bottom-left-radius: calc(0.3 * var(--base-unit));
  }
  .schedule-title__main::after {
    height: calc(0.8 * var(--base-unit));
    border-top-right-radius: calc(0.3 * var(--base-unit));
    border-bottom-right-radius: calc(0.3 * var(--base-unit));
  }
}

/* ---------- schedule-content ---------- */
.schedule-content {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .schedule-content {
    margin-top: calc(3 * var(--base-unit));;
  }
}
.schedule-list {
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 40px;
  justify-content: space-between;
  padding: 0 16px;
}
.schedule-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
}
.schedule-list__item:nth-child(1) {
  order: 1;
}
.schedule-list__item:nth-child(2) {
  order: 3;
}
.schedule-list__item:nth-child(3) {
  order: 2;
}
.schedule-list__item:nth-child(4) {
  order: 4;
}
.schedule-list__item time {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: calc(26 / 18);
}
.schedule-list__item ul {
  font-size: 1rem;
  font-weight: 500;
  line-height: calc(26 / 16);
}
.schedule-list__item li {
  display: flex;
}
.schedule-list__item li::before {
  content: "・";
}
.schedule-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #676767;
  color: #d9d9d9;
  border-radius: 31.5px;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 10px 20px 11px 16px;
  width: 172px;
  height: 39px;
  margin-top: 10px;
  transition: color 0.3s, background-color 0.3s;
}
.schedule-list__link::after {
  content: "";
  display: block;
  width: 13.5px;
  height: 11px;
  margin-top: 1px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #d9d9d9;
  transition: background-color 0.3s;
}
.schedule-map {
  position: absolute;
  top: 0;
  left: 48%;
  translate: -50% 0;
  width: 38%;
}
@media screen and (min-width: 768px) {
  .schedule-list__link:hover {
    background-color: #d9d9d9;
    color: #676767;
  }
  .schedule-list__link:hover::after {
    background-color: #676767;
  }
}
@media screen and (max-width: 1400px) {
  .schedule-list {
    column-gap: calc(160 / 1400 * 100vw);
    justify-content: center;
  }
  .schedule-map {
    position: static;
    translate: none;
    width: min(600px, calc(600 / 1440 * 100vw));
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 1200px) {
  .schedule-list {
    column-gap: calc(60 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .schedule-list {
    grid-template-columns: auto;
    row-gap: calc(4 * var(--base-unit));
    padding: 0;
  }
  .schedule-list__item time {
    font-size: calc(2 * var(--base-unit));
    text-align: center;
  }
  .schedule-list__item ul {
    font-size: calc(1.4 * var(--base-unit));
    margin-top: calc(0.3 * var(--base-unit));
  }
  .schedule-list__item:nth-child(2) {
    order: 2;
  }
  .schedule-list__item:nth-child(3) {
    order: 3;
  }
  .schedule-list__link {
    border-radius: calc(3.15 * var(--base-unit));
    font-size: calc(1.4 * var(--base-unit));
    padding: calc(0.6 * var(--base-unit)) calc(2 * var(--base-unit)) calc(0.7 * var(--base-unit)) calc(1.5 * var(--base-unit));
    width: calc(15 * var(--base-unit));
    height: calc(3.2 * var(--base-unit));
    margin: calc(1.2 * var(--base-unit)) auto 0;
  }
  .schedule-list__link::after {
    width: calc(1.3 * var(--base-unit));
    height: calc(1 * var(--base-unit));
    margin-top: calc(0.1 * var(--base-unit));
  }
  .schedule-map {
    width: 95%;
    margin: calc(3 * var(--base-unit)) auto 0;
  }
}

/* ------------------------------
article-section
------------------------------ */
.article-section {
  position: relative;
  border-top-left-radius: min(70px, calc(70 / 1440 * 100vw));
  border-top-right-radius: min(70px, calc(70 / 1440 * 100vw));
  background-color: #fff;
  padding: min(140px, calc(140 / 1440 * 100vw)) min(120px, calc(120 / 1440 * 100vw)) calc(580 / 1440 * 100vw);
  margin-top: max(-170px, calc(-170 / 1440 * 100vw));
  box-shadow: 0 0 min(21px, calc(21 / 1440 * 100vw)) min(41px, calc(41 / 1440 * 100vw)) rgba(116, 113, 112, 0.49);
}
.article-section01 {
  background: linear-gradient(315deg, #e5f0ff 0%, #fff 100%);
  margin-top: max(-110px, calc(-110 / 1440 * 100vw));
}
.article-section02 {
  background: linear-gradient(315deg,  #EBFFED 0%,#fff 100%);
}
.article-section03 {
  background: linear-gradient(315deg,  #FFFFFF 0%, #FFF9E3 47%,#fff 100%);
  margin-top: max(-235px, calc(-235 / 1440 * 100vw));
}
.article-section04 {
  background: linear-gradient(48deg,  #FFEADC 0%,#fff 100%);
}
.article-section-title-icon-line {
  width: 84px;
  height: 8px;
  background-image: linear-gradient(to right, #040D77 0%, #040D77 50%,#E10100 50%,  #E10100 100%);
  border-radius: 3px;
  margin-inline: auto;
}

.article-section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
.article-section-title span {
  font-size: 0.54em;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
.article-section04-mtg {
  background-color: rgba(255,255,255,0.85);
  border: 6px solid #fff;
  border-radius: 28px;
  padding: 42px 32px;
  position: relative;
  z-index: 1;
  height: 382px;
  box-sizing: border-box;
  margin-top: 40px;
}
.article-section04-mtg h4 {
  background-color: #E5E2E2;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 20px;
  text-align: center;
  padding: 20px 0;
}
.article-section04-mtg p {
  font-size: 1.25rem;
  line-height: calc(36 / 20);
  width: min(480px, calc(480 / 1440 * 100vw));
  padding-left: min(30px, calc(30 / 1440 * 100vw));
  margin-top: 75px;
}
.article-section04-mtg .img01 {
  position: absolute;
  top: 35%;
  left: 49%;
  width: min(233px, calc(233 / 1440 * 100vw));
}
.article-section04-mtg .img02 {
  position: absolute;
  top: 52%;
  left: 68%;
  width: min(242px, calc(242 / 1440 * 100vw));
}
@media screen and (max-width: 767px) {
  .article-section {
    border-top-left-radius: calc(4 * var(--base-unit));
    border-top-right-radius: calc(4 * var(--base-unit));
    padding: calc(6 * var(--base-unit)) calc(2 * var(--base-unit)) calc(18 * var(--base-unit));
    margin-top: calc(-5.4 * var(--base-unit));
    box-shadow: 0 0 calc(1 * var(--base-unit)) calc(1.5 * var(--base-unit)) rgba(116, 113, 112, 0.49);
  }
  .article-section-title-icon-line {
    width: calc(6 * var(--base-unit));
    height: calc(0.6 * var(--base-unit));
    border-radius: calc(0.3 * var(--base-unit));
  }
  .article-section-title {
    font-size: calc(3.2 * var(--base-unit));
    margin-top: calc(1 * var(--base-unit));
  }
  .article-section04-mtg {
    padding: calc(3 * var(--base-unit)) calc(1.6 * var(--base-unit));
    height: auto;
    margin-top: calc(3 * var(--base-unit));
  }
  .article-section04-mtg h4 {
    font-size: calc(2 * var(--base-unit));
    text-align: center;
    padding: calc(1.6 * var(--base-unit)) 0;
  }
  .article-section04-mtg p {
    font-size: calc(1.6 * var(--base-unit));
    line-height: calc(30 / 16);
    width: 100%;
    padding-left: 0;
    margin-top: calc(2 * var(--base-unit));
  }
  .article-section04-mtg .img01 {
    position: static;
    width: 100%;
    margin-top: calc(2 * var(--base-unit));
  }
  .article-section04-mtg .img02 {
    position: static;
    width: 100%;
    margin-top: calc(2 * var(--base-unit));
  }
}

/* ---------- article ---------- */
.article-section article {
  margin: min(100px, calc(100 / 1440 * 100vw)) auto 0;
  max-width: 1200px;
  position: relative;
}
.article-section .article-250728-01 {
  margin: min(140px, calc(140 / 1440 * 100vw)) auto 0;
}
.article-section article:nth-child(1) {
  z-index: 4;
}
.article-section article:nth-child(2) {
  z-index: 3;
}
.article-section article:nth-child(3) {
  z-index: 2;
}
.article-section article:nth-child(4) {
  z-index: 1;
}
.article-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  column-gap: 17px;
  position: relative;
  z-index: 1;
}

.article-title::before {
  content: "";
  display: block;
  background: url(/jp/ja/mclibrary/ad/exploration/america-2025/assets_r24/images/article_title_icon.svg) no-repeat center / cover;
  width: 33px;
  height: 18px;
  margin-top: 6px;
}

.article-txt {
  font-size: 1.125rem;
  line-height: calc(28 / 18);
  max-width: 1100px;
  padding-left: 50px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.article-250730-04 .article-txt {
  display: flex;
  column-gap: 45px;
}
.article-note {
  display: flex;
  column-gap: 0.5em;
  font-size: 14px;
  line-height: calc(24 / 14);
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.article-note > *:nth-child(1) {
  flex-shrink: 0;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  padding: 0.05em 0.4em;
  line-height: 1.5;
  height: 1.5em;
}
.article-note  a {
  display: block;
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.article-250730-04 .solar-box {
  border: 1px solid #606060;
  border-radius: 10px;
  padding: 20px 23px;
  font-size: 13px;
  line-height: calc(24 / 13);
}
.article-decoration {
  position: absolute;
}
.article-decoration01 {
  height: min(1130px, calc(1130 / 1440 * 100vw));
  rotate: 13.15deg;
  top: -28%;
  right: -58%;
}
.article-decoration01 img {
  width: auto;
  height: 100%;
}
.article-decoration02 {
  height: min(1130px, calc(1130 / 1440 * 100vw));
  top: -33%;
  left: -35%;
}
.article-section02 .article-decoration02 {
  height: min(1130px, calc(1130 / 1440 * 100vw));
  top: -25%;
  left: -33%;
}
.article-250730-02 .article-decoration02 {
  top: -20%;
  left: -32%;
}

.article-decoration02 img {
  width: auto;
  height: 100%;
}
.article-decoration03 {
  height: min(1130px, calc(1130 / 1440 * 100vw));
  rotate: 46deg;
  top: -28%;
  right: -50%;
}
.article-decoration03 img {
  width: auto;
  height: 100%;
}
.article-section03 .article-decoration04 {
  height: min(1130px, calc(1130 / 1440 * 100vw));
  top: -8%;
  right: -70%;
}
.article-section03 .article-decoration04 img {
  width: auto;
  height: 100%;
}
.article-250730-04 .article-decoration02 {
  top: -28%;
  left: -30%;
}
@media screen and (max-width: 767px) {
  .article-section article {
    margin: calc(4 * var(--base-unit)) auto 0;
  }
  .article-section .article-250728-01 {
    margin: calc(6 * var(--base-unit)) auto 0;
  }
  .article-title {
    font-size: calc(2.4 * var(--base-unit));
    column-gap: calc(1 * var(--base-unit));
  }
  .article-title::before {
    width: calc(2.3 * var(--base-unit));
    height: calc(1.2 * var(--base-unit));
    margin-top: calc(1 * var(--base-unit));
    flex-shrink: 0;
  }
  .article-txt {
    font-size: calc(1.6 * var(--base-unit));
    line-height: calc(28 / 16);
    padding-left: calc(3.3 * var(--base-unit));
    margin-top: calc(2 * var(--base-unit));
  }
  .article-note {
    font-size: calc(1.3 * var(--base-unit));
    line-height: calc(22 / 13);
    margin-top: calc(2 * var(--base-unit));
  }
  .article-250730-04 .article-txt {
    flex-direction: column;
    row-gap: calc(1.6 * var(--base-unit));
  }
  .article-250730-04 .solar-box {
    border-radius: 10px;
    padding: calc(1 * var(--base-unit)) calc(0.8 * var(--base-unit));
    font-size: calc(1.2 * var(--base-unit));
    line-height: calc(20 / 12);
  }
  .article-decoration01 {
    height: calc(50 * var(--base-unit));
    top: -10%;
    right: -90%;
  }
  .article-decoration02 {
    height: calc(50 * var(--base-unit));
    top: -27%;
    left: -90%;
  }
  .article-decoration03 {
    height: calc(50 * var(--base-unit));
    top: -25%;
    right: -105%;
  }
  .article-section02 .article-decoration02 {
    height: calc(50 * var(--base-unit));
    top: 5%;
    left: -85%;
  }
  .article-section03 .article-decoration02 {
    top: -45%;
    left: -50%;
  }
  .article-section03 .article-decoration04 {
    height: calc(30 * var(--base-unit));
    top: -13%;
    right: -85%;
  }
  .article-250730-04 .article-decoration02 {
    height: calc(50 * var(--base-unit));
    top: -15%;
    left: -50%;
  }
  .article-section04 .article-decoration03 {
    height: calc(50 * var(--base-unit));
    top: -20%;
    right: -105%;
  }
}

/* ---------- carousel ---------- */
/* main */
.main-carousel {
  margin-top: min(50px, calc(50 / 1440 * 100vw));
  z-index: 2;
}
.main-carousel .splide__track{
  border-radius: 20px;
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.25);
  aspect-ratio: 1200 / 739;
}
.main-carousel .splide__slide {
  background-color: #fff;
}
.main-carousel .splide__slide.img-contain img {
  object-fit: contain;
  height: 100%;
}
.main-carousel .splide__arrow.splide__arrow--prev,
.main-carousel .splide__arrow.splide__arrow--next {
  width: min(51.28px, calc(51.28 / 1440 * 100vw));
  height: min(51.28px, calc(51.28 / 1440 * 100vw));
  background-color: #fafafa;
  opacity: 1;
  box-shadow: 0 0 4px rgba(0,0,0, 0.3);
  transition: background-color 0.3s;
}
.main-carousel .splide__arrow.splide__arrow--prev svg,
.main-carousel .splide__arrow.splide__arrow--next svg {
 display: none;
}
.main-carousel .splide__arrow.splide__arrow--prev::before {
  content: "";
  display: block;
  background: url(/jp/ja/mclibrary/ad/exploration/america-2025/assets_r24/images/carousel_arrow-prev.svg) no-repeat center / contain;
  width: min(18px, calc(18 / 1440 * 100vw));
  height: min(36px, calc(36 / 1440 * 100vw));
  translate: -10% 0;
  transition: filter 0.3s;
}
.main-carousel .splide__arrow.splide__arrow--next::before {
  content: "";
  display: block;
  background: url(/jp/ja/mclibrary/ad/exploration/america-2025/assets_r24/images/carousel_arrow-next.svg) no-repeat center / contain;
  width: min(18px, calc(18 / 1440 * 100vw));
  height: min(36px, calc(36 / 1440 * 100vw));
  translate: 10% 0;
  transition: filter 0.3s;
}
@media screen and (min-width: 768px) {
  .main-carousel .splide__arrow:hover {
    background-color: #333;
  }
  .main-carousel .splide__arrow.splide__arrow--prev:hover::before {
    filter: invert(1) brightness(100);
  }
  .main-carousel .splide__arrow.splide__arrow--next:hover::before {
    filter: invert(1) brightness(100);
  }
}
@media screen and (max-width: 767px) {
  .main-carousel {
    margin-top: calc(3 * var(--base-unit));
  }
  .main-carousel .splide__arrow.splide__arrow--prev,
  .main-carousel .splide__arrow.splide__arrow--next {
    width: calc(2.6 * var(--base-unit));
    height: calc(2.6 * var(--base-unit));
    box-shadow: 0 0 calc(0.4 * var(--base-unit)) rgba(0,0,0, 0.3);
  }
  .main-carousel .splide__arrow.splide__arrow--prev {
    left: 0.5em;
  }
  .main-carousel .splide__arrow.splide__arrow--next {
    right: 0.5em;
  }
  .main-carousel .splide__arrow.splide__arrow--prev::before {
    width: calc(0.8 * var(--base-unit));
    height: calc(1.6 * var(--base-unit));
    translate: -10% 0;
  }
  .main-carousel .splide__arrow.splide__arrow--next::before {
    width: calc(0.8 * var(--base-unit));
    height: calc(1.6 * var(--base-unit));
  }
}
/* thumbnail */
.thumbnail-carousel {
  padding:0 min(135px, calc(135 / 1440 * 100vw));
  height: min(333px, calc(333 / 1440 * 100vw));
  margin: max(-74px, calc(-74 / 1440 * 100vw)) calc(50% - 50vw) 0;
  background: linear-gradient(to top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 20%,rgba(255,255,255,1) 67%,rgba(255,255,255,0) 100%);
  z-index: 1;
}
.article-250728-03 .thumbnail-carousel,
.article-250729-01 .thumbnail-carousel,
.article-250730-04 .thumbnail-carousel,
.article-250731-01 .thumbnail-carousel{
  background: none;
}
.thumbnail-carousel .splide__track {
  overflow: visible;
  max-width: 1146px;
  margin: 0 auto !important;
  padding: min(132px, calc(132 / 1440 * 100vw)) min(18px, calc(18 / 1440 * 100vw)) 0!important;
}
.thumbnail-carousel .splide__list {
  column-gap: min(12px, calc(12 / 1440 * 100vw));
}
.thumbnail-carousel .splide__slide {
  border-radius: 5px;
  border: 1px solid #adadad!important;
  background-color: #fff;
  width: min(179px, calc(179 / 1440 * 100vw));
  aspect-ratio: 9 / 6;
}
.thumbnail-carousel .splide__slide.is-active,
.thumbnail-carousel .splide__slide:focus-visible {
  border: none;
  outline: min(4px, calc(4 / 1440 * 100vw)) solid #FCB353!important;
}
.thumbnail-carousel .splide__slide img{
  border-radius: 4px;
  object-fit: cover;
  height: 100%;
}
.thumbnail-carousel .splide__slide.img-contain img{
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .thumbnail-carousel {
    padding: 0 calc(2 * var(--base-unit));
    height: calc(9 * var(--base-unit));
    margin: calc(-2 * var(--base-unit)) calc(50% - 50vw) 0;
  }
  .thumbnail-carousel .splide__track {
    padding: calc(3.5 * var(--base-unit)) calc(0.8 * var(--base-unit)) 0!important;
  }
  .thumbnail-carousel .splide__list {
    column-gap: calc(0.3 * var(--base-unit));
  }
  .thumbnail-carousel .splide__slide {
    border-radius: calc(0.5 * var(--base-unit));
    border: calc(0.1 * var(--base-unit)) solid #adadad!important;
    width: calc(5.05 * var(--base-unit));
  }
}

/* ---------- article-section-end-image ---------- */
.article-section-end-image {
  position: absolute;
  width: 100%;
  left:0;
  bottom: min(100px, calc(100 / 1440 * 100vw));
  overflow: hidden;
  mix-blend-mode: multiply;
}

.article-section04 .article-section-end-image {
  bottom: min(300px, calc(300 / 1440 * 100vw));
}
@media screen and (max-width: 1000px) {
  .article-section04 .article-section-end-image {
    bottom: min(250px, calc(250 / 1440 * 100vw));
  }
}
@media screen and (max-width: 840px) {
  .article-section04 .article-section-end-image {
    bottom: min(200px, calc(200 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .article-section04 .article-section-end-image {
    bottom: calc(8.8 * var(--base-unit));
  }
}

/* ---------- interview ---------- */
.interview {
	position: relative;
  margin-top: max(-480px, calc(-480 / 1440 * 100vw));
  z-index: 1;
}
.interview-inner {
	max-width: 1200px;
	margin-inline: auto;
	padding: 0 30px 200px;
}

.interview .bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.interview .bg img {
	height: 100%;
}
.interview-title-image {
	max-width: 259px;
	margin-inline: auto;
	padding-top: 100px;
}
.interview-title__main {
  font-size: 2rem;
  font-weight: 700;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 28px;
  align-items: center;
  margin-top: 35px;
}
.interview-title__main::before {
  content: "";
  background-color: #E10100;
  width: 100%;
  height: 8px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.interview-title__main::after {
  content: "";
  background-color: #040D77;
  width: 100%;
  height: 8px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.interview-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 78px;
	row-gap: 132px;
	margin-top: 120px;
}
.interview-item {
	display: flex;
	column-gap: 26px;
}
.interview-item__image {
	max-width: 170px;
	flex-shrink: 0;
}
.interview-item__name {
	font-size: 16px;
	font-weight: 700;
	line-height: calc(26 / 16);
}
.interview-item__txt {
	font-size: 16px;
	font-weight: 400;
	line-height: calc(26 / 16);
	margin-top: 18px;
}

.interview-group-image {
	margin-top: 85px;
}
@media screen and (max-width: 767px) {
  .interview {
    position: relative;
    margin-top: calc(-12 * var(--base-unit));
  }
  .interview-title-image {
    max-width: 130px;
    padding-top: calc(4 * var(--base-unit));;
  }
  .interview-inner {
    padding: 0 calc(2 * var(--base-unit)) calc(6 * var(--base-unit));
  }
  .interview-title__main {
    grid-template-columns: 1fr calc(20 * var(--base-unit)) 1fr;
    text-align: center;
    font-size: calc(2.4 * var(--base-unit));
    column-gap: calc(1.2 * var(--base-unit));
    margin-top: calc(2 * var(--base-unit));
  }
  .interview-title__main::before {
    height: calc(0.8 * var(--base-unit));
    border-top-left-radius: calc(0.3 * var(--base-unit));
    border-bottom-left-radius: calc(0.3 * var(--base-unit));
  }
  .interview-title__main::after {
    height: calc(0.8 * var(--base-unit));
    border-top-right-radius: calc(0.3 * var(--base-unit));
    border-bottom-right-radius: calc(0.3 * var(--base-unit));
  }
  .interview-list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: calc(6 * var(--base-unit));
    margin-top: calc(8 * var(--base-unit));
  }
  .interview-item {
    flex-direction: column;
    align-items: center;
    column-gap: 0;
    row-gap: calc(1.6 * var(--base-unit));
  }
  .interview-item__image {
    max-width: 100%;
    width: calc(20 * var(--base-unit));
    flex-shrink: 0;
  }
  .interview-item__name {
    font-size: calc(1.5 * var(--base-unit));
    line-height: calc(24 / 15);
  }
  .interview-item__txt {
    font-size: calc(1.5 * var(--base-unit));
    line-height: calc(24 / 15);
    margin-top: calc(1 * var(--base-unit));
  }
}

/* ---------- footer-link-area ---------- */
.footer-link-area {
	display: flex;
	justify-content: center;
	column-gap: 56px;
	background-color: #4AC272;
	padding: 100px 30px;
}

.footer-link {
	display: flex;
  justify-content: center;
  column-gap: 0.3em;
	font-size: 24px;
	font-weight: 700;
	background-color: #FFFFFF;
	border-radius: 9999px;
	box-sizing: border-box;
	color: #000;
	text-decoration: none;
	padding: 32px 16px;
	width: min(513px, calc(513 / 1200 * 100vw));
  transition: color 0.3s, background-color 0.3s;
}
.footer-link01 {
	border: 8px solid #E16F36;
  transition: color 0.3s, background-color 0.3s;
}
.footer-link02 {
	border: 8px solid #1959A1;
  transition: color 0.3s, background-color 0.3s, filter 0.3s;
}
.footer-link02 img {
	width: 22px;
}
@media screen and (min-width: 768px) {
  .footer-link01:hover {
    background-color: #E16F36;
    color: #fff;
  }
  .footer-link02:hover {
    background-color: #1959A1;
    color: #fff;
  }
  .footer-link02:hover img {
    filter: invert(1) brightness(100);
  }
}
@media screen and (max-width: 767px) {
  .footer-link-area {
    flex-direction: column;
    align-items: center;
    column-gap: 0;
    row-gap: calc(1.6 * var(--base-unit));
    padding: calc(5 * var(--base-unit)) calc(2 * var(--base-unit));
  }
  .footer-link {
    font-size: calc(1.6 * var(--base-unit));
    padding: calc(2.4 * var(--base-unit)) calc(1.2 * var(--base-unit));
    width: 100%;
  }
  .footer-link01 {
    border: calc(0.6* var(--base-unit)) solid #E16F36;
  }
  .footer-link02 {
    border: calc(0.6* var(--base-unit)) solid #1959A1;
  }
  .footer-link02 img {
    width: calc(2 * var(--base-unit))
  }
}

/* fadein */
.fadein {
    opacity: 0;
    transform: translate(0, 8px);
    transition: all 0.9s;
}
.fadein.active {
    opacity: 1;
    transform: translate(0, 0);
}