@charset "utf-8";

/* ==================================================
 * ==================================================
 * home-hero
 * ==================================================
 * ================================================== */
.home-hero{
  --home-hero-title-en-color: var(--color-white);
  --home-hero-title-ja-color: var(--color-white);
  --home-hero-lead-color: rgba(255,255,255,.80);
  --home-hero-text-color: rgba(255,255,255,.80);

  --home-hero-shadow-color: var(--color-shadow-base);

  --home-hero-news-bg-color: rgba(0,0,0,.60);
  --home-hero-news-bg-color-hover: rgba(0,0,0,.40);
  --home-hero-news-label-color: var(--color-brand);
  --home-hero-news-date-color: rgba(255,255,255,.60);
  --home-hero-news-title-color: var(--color-white);
  --home-hero-news-icon-color: rgba(255,255,255,.80);
  --home-hero-news-control-color: rgba(255,255,255,.80);
  --home-hero-news-control-color-hover: var(--color-brand);
  --home-hero-news-control-border-color: rgba(255,255,255,.20);

  --home-hero-marquee-color: rgba(255,255,255,.10);

  --home-hero-scrim-bg:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.20) 70%, rgba(0,0,0,.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.10) 35%, rgba(0,0,0,.60) 100%),
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 30%);
  --home-hero-scrim-bg-before:
    linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,0) 25%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 25%);
  --home-hero-scrim-bg-after: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.20) 100%);

  --home-hero-image-from: translate3d(0,0,0) scale(1.14);
  --home-hero-image-to: translate3d(0,0,0) scale(1.08);
  --home-hero-image-exit: translate3d(0,0,0) scale(1.08);

  position: relative;
  overflow: visible;
}
.home-hero__media{
  grid-area: 1 / 1;
  align-self: start;
  width: calc(100% + var(--layout-inner-padding) + var(--layout-inner-padding));
  height: 100svh;
  margin-left: calc(var(--layout-inner-padding) * -1);
  margin-right: calc(var(--layout-inner-padding) * -1);
  position: sticky;
  top: 0;
  z-index: 0;
}
.home-hero__figure{
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.home-hero__slide{
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  filter: brightness(.90);
  transform: translateZ(0);
  pointer-events: none;
  transition: opacity 1.8s cubic-bezier(.32,0,.12,1), visibility 0s linear 1.8s, filter 1.8s cubic-bezier(.32,0,.12,1);
  backface-visibility: hidden;
}
.home-hero__slide:nth-child(4n+1){
  --home-hero-image-from: translate3d(-1%,0,0) scale(1.14);
  --home-hero-image-to: translate3d(1%,0,0) scale(1.08);
  --home-hero-image-exit: translate3d(1.25%,0,0) scale(1.08);
}
.home-hero__slide:nth-child(4n+2){
  --home-hero-image-from: translate3d(1%,0,0) scale(1.14);
  --home-hero-image-to: translate3d(-1%,0,0) scale(1.08);
  --home-hero-image-exit: translate3d(-1.25%,0,0) scale(1.08);
}
.home-hero__slide:nth-child(4n+3){
  --home-hero-image-from: translate3d(0,-1%,0) scale(1.14);
  --home-hero-image-to: translate3d(0,1%,0) scale(1.08);
  --home-hero-image-exit: translate3d(0,1.25%,0) scale(1.08);
}
.home-hero__slide:nth-child(4n+4){
  --home-hero-image-from: translate3d(0,1%,0) scale(1.14);
  --home-hero-image-to: translate3d(0,-1%,0) scale(1.08);
  --home-hero-image-exit: translate3d(0,-1.25%,0) scale(1.08);
}
.home-hero__slide.is-active,
.home-hero__slide.is-previous{
  visibility: visible;
  transition: opacity 1.8s cubic-bezier(.32,0,.12,1), visibility 0s linear 0s, filter 1.8s cubic-bezier(.32,0,.12,1);
  will-change: opacity, filter;
}
.home-hero__slide.is-active{
  opacity: 1;
  filter: brightness(1);
  z-index: 3;
}
.home-hero__slide.is-previous{
  opacity: 0;
  filter: brightness(.72);
  z-index: 2;
}
.home-hero__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: var(--home-hero-image-from);
  transform-origin: center center;
  animation: none;
  backface-visibility: hidden;
}
.home-hero__slide.is-active .home-hero__image,
.home-hero__slide.is-previous .home-hero__image{
  will-change: transform;
}
.home-hero__slide.is-active .home-hero__image{
  animation: home-hero-image-drift 10s cubic-bezier(.22,.61,.36,1) both;
}
.home-hero__slide.is-previous .home-hero__image{
  transform: var(--home-hero-image-exit);
  transition: transform 1.8s cubic-bezier(.32,0,.12,1);
}
.home-hero__scrim{
  background: var(--home-hero-scrim-bg);
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.home-hero__scrim::before{
  content: "";
  background: var(--home-hero-scrim-bg-before);
  position: absolute;
  inset: 0;
  opacity: .60;
}
.home-hero__scrim::after{
  content: "";
  background: var(--home-hero-scrim-bg-after);
  height: min(14rem, 28vh);
  position: absolute;
  inset: auto 0 0 0;
}
.home-hero__marquee{
  contain: paint;
  color: var(--home-hero-marquee-color);
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.home-hero__marquee-track{
  display: flex;
  align-items: center;
  width: max-content;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  will-change: transform;
  animation: ui-marquee-x 960s linear infinite;
}
.home-hero__marquee-text{
  font-family: var(--font-en-sans);
  font-size: clamp(8rem, 24vw, 24rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  padding-right: clamp(2rem, 4vw, 4rem);
}
.home-hero__panel{
  min-height: 100svh;
  position: relative;
  z-index: 2;
}
.home-hero__inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(100svh, auto);
  padding-inline: var(--layout-inner-padding);
  position: relative;
  isolation: isolate;
}
.home-hero__main{
  display: grid;
  grid-area: 1 / 1;
  align-self: start;
  align-content: start;
  min-width: 0;
  min-height: 100svh;
  padding-top: calc(var(--layout-header-height) + clamp(12rem, 48svh, 24rem));
  padding-bottom: clamp(8rem, 24svh, 16rem);
  position: relative;
  z-index: 3;
}
.home-hero__content{
  display: grid;
  align-content: start;
  gap: clamp(1.5rem, 2vw, 2rem);
  width: min(100%, 56rem);
  min-width: 0;
}
.home-hero__head{
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
  min-width: 0;
}
.home-hero__title-en{
  color: var(--home-hero-title-en-color);
  font-family: var(--font-en-sans);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-wrap: balance;
  text-shadow: 0 4px 16px var(--home-hero-shadow-color);
}
.home-hero__title-ja{
  color: var(--home-hero-title-ja-color);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
  text-shadow: 0 8px 24px var(--home-hero-shadow-color);
}
.home-hero__body{
  display: grid;
  align-content: start;
  gap: clamp(0.75rem, 1vw, 1rem);
  width: min(100%, 32rem);
  min-width: 0;
}
.home-hero__lead{
  color: var(--home-hero-lead-color);
  font-size: var(--fs-xl);
  font-weight: 500;
  font-feature-settings: "palt" on;
  line-height: 2;
  text-shadow: 0 4px 16px var(--home-hero-shadow-color);
}
.home-hero__text{
  color: var(--home-hero-text-color);
  font-weight: 500;
  font-feature-settings: "palt" on;
  line-height: 2;
  text-shadow: 0 4px 16px var(--home-hero-shadow-color);
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
}
.home-hero__news{
  display: grid;
  align-self: end;
  align-items: end;
  grid-area: 1 / 1;
  min-width: 0;
  padding-bottom: clamp(3rem, 4vw, 4rem);
  position: relative;
  z-index: 4;
  pointer-events: none;
}
.home-hero__news-frame{
  color: inherit;
  background: var(--home-hero-news-bg-color);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 28rem);
  min-width: 0;
  border-radius: var(--radius-xs);
  box-shadow: 0 16px 32px var(--home-hero-shadow-color);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: background-color .3s ease;
  pointer-events: auto;
}
.home-hero__news-frame:hover,
.home-hero__news-frame:focus-within{
  background: var(--home-hero-news-bg-color-hover);
}
.home-hero__news-viewport{
  min-width: 0;
  overflow: hidden;
}
.home-hero__news-list{
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.home-hero__news:not(.is-ready) .home-hero__news-item:nth-child(n+2){
  display: none;
}
.home-hero__news:not(.is-ready) .home-hero__news-controls{
  display: none;
}
.home-hero__news-item{
  min-width: 0;
}
.home-hero__news-link{
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 1vw, 1rem);
  min-width: 0;
  min-height: clamp(5rem, 6vw, 5.75rem);
  padding: clamp(1rem, 1.5vw, 1.5rem);
}
.home-hero__news-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-column: 1;
  grid-row: 1;
  gap: clamp(0.75rem, 1vw, 1rem);
  min-width: 0;
}
.home-hero__news-label{
  color: var(--home-hero-news-label-color);
  font-family: var(--font-en-sans);
  font-size: var(--fs-2xs);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.home-hero__news-date{
  color: var(--home-hero-news-date-color);
  font-family: var(--font-en-sans);
  font-size: var(--fs-2xs);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.home-hero__news-title{
  color: var(--home-hero-news-title-color);
  display: block;
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-hero__news-icon{
  color: var(--home-hero-news-icon-color);
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 2rem;
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
}
.home-hero__news-icon > svg{
  width: 1.25rem;
  height: 1.25rem;
  transform: translate3d(0,0,0);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.home-hero__news-link:hover .home-hero__news-icon > svg,
.home-hero__news-link:focus-visible .home-hero__news-icon > svg{
  transform: translate3d(0.2rem,0,0);
}
.home-hero__news-controls{
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: clamp(2.75rem, 3vw, 3rem);
  border-left: 1px solid var(--home-hero-news-control-border-color);
}
.home-hero__news-control{
  color: var(--home-hero-news-control-color);
  background: transparent;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 2.5rem;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease;
}
.home-hero__news-control + .home-hero__news-control{
  border-top: 1px solid var(--home-hero-news-control-border-color);
}
.home-hero__news-control:hover,
.home-hero__news-control:focus-visible{
  color: var(--home-hero-news-control-color-hover);
  background: rgba(255,255,255,.06);
}
.home-hero__news-control-icon{
  display: grid;
  place-items: center;
  width: 1.25rem;
  aspect-ratio: 1;
}
.home-hero__news-control-icon > svg{
  width: 100%;
}

/* ==================================================
 * home-hero responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .home-hero__media{
    width: calc(100% + var(--layout-inner-padding) + var(--layout-inner-padding) + var(--layout-rail-width));
    margin-left: calc(0px - var(--layout-inner-padding) - var(--layout-rail-width));
    margin-right: calc(var(--layout-inner-padding) * -1);

  }
  .home-hero__inner{
    padding-left: calc(var(--layout-inner-padding) + var(--layout-rail-width));
    padding-right: var(--layout-inner-padding);
  }
  .home-hero__main{
    justify-self: start;
    width: min(100%, var(--layout-inner-width));
  }
}

/* ==================================================
 * home-hero responsive 1280px
 * ================================================== */
@media (min-width: 1280px){
  .home-hero__news{
    align-self: start;
    align-items: end;
    justify-items: end;
    height: 100svh;
    padding-top: 0;
    padding-bottom: var(--space-panel-block);
    position: sticky;
    top: 0;
  }
}

/* ==================================================
 * home-hero keyframes
 * ================================================== */
@keyframes home-hero-image-drift{
  from{
    transform: var(--home-hero-image-from);
  }
  to{
    transform: var(--home-hero-image-to);
  }
}

/* ==================================================
 * home-hero reduced motion
 * ================================================== */
@media (prefers-reduced-motion: reduce){
  .home-hero__slide{
    filter: none !important;
    transition: none !important;
  }
  .home-hero__slide.is-previous{
    opacity: 0 !important;
    visibility: hidden !important;
  }
  .home-hero__figure{
    transform: scale(1) !important;
    transition: none !important;
  }
  .home-hero__image,
  .home-hero__slide.is-active .home-hero__image,
  .home-hero__slide.is-previous .home-hero__image{
    transform: translate3d(0,0,0) scale(1) !important;
    animation: none !important;
    transition: none !important;
  }
  .home-hero__marquee-track{
    animation: none !important;
  }
  .home-hero__news-list,
  .home-hero__news-link,
  .home-hero__news-icon > svg,
  .home-hero__news-control{
    transform: none !important;
    transition: none !important;
  }
}

/* ==================================================
 * ==================================================
 * home-stream
 * ==================================================
 * ================================================== */
.section--home-stream{
  --home-stream-title-en-color: var(--color-fg-base);
  --home-stream-title-ja-color: var(--color-fg-base);
  --home-stream-lead-color: var(--color-fg-base);
  --home-stream-text-color:  var(--color-fg-base);
  --home-stream-text-shadow-color: rgba(255,255,255,.80);

  --home-stream-card-shadow-color: rgba(0,0,0,.05);
}
.section--home-stream > .section__panel{
  overflow: clip;
}
.home-stream{
  width: calc(100% + var(--layout-inner-padding) + var(--layout-inner-padding));
  min-width: 0;
  margin-left: calc(var(--layout-inner-padding) * -1);
  margin-right: calc(var(--layout-inner-padding) * -1);
  position: relative;
}
.home-stream__stage{
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: max(56rem, 140svh);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.home-stream__layer{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.home-stream__layer--back{
  z-index: 1;
}
.home-stream__layer--front{
  z-index: 3;
}
.home-stream__main{
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  min-width: 0;
  padding-inline: var(--layout-inner-padding);
  position: relative;
  z-index: 4;
}
.home-stream__content{
  text-align: center;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(1.5rem, 2vw, 2rem);
  width: min(100%, 56rem);
  min-width: 0;
}
.home-stream__head{
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
  min-width: 0;
}
.home-stream__title-en{
  color: var(--home-stream-title-en-color);
  font-family: var(--font-en-sans);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1;
  text-wrap: balance;
  text-shadow: 0 0 24px var(--home-stream-text-shadow-color);
}
.home-stream__title-ja{
  color: var(--home-stream-title-ja-color);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.6;
  text-wrap: balance;
  text-shadow: 0 0 20px var(--home-stream-text-shadow-color);
}
.home-stream__body{
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
  width: min(100%, 32rem);
  min-width: 0;
}
.home-stream__lead{
  color: var(--home-stream-lead-color);
  font-size: var(--fs-lg);
  font-weight: 500;
  text-shadow: 0 0 16px var(--home-stream-text-shadow-color);
}
.home-stream__text{
  color: var(--home-stream-text-color);
  text-shadow: 0 0 16px var(--home-stream-text-shadow-color);
}
.home-stream__action{
  display: flex;
  justify-content: center;
  min-width: 0;
}
.home-stream__card{
  width: var(--home-stream-card-width);
  aspect-ratio: var(--home-stream-card-ratio);
  box-shadow: 0 16px 48px var(--home-stream-card-shadow-color);
  position: absolute;
  top: var(--home-stream-card-top);
  right: var(--home-stream-card-right, auto);
  left: var(--home-stream-card-left, auto);
  z-index: 1;
  opacity: var(--home-stream-card-opacity);
  overflow: clip;
  transform: translate3d(0,0,0) scale(.90);
  transform-origin: center center;
  backface-visibility: hidden;
}
.home-stream.is-ready .home-stream__card{
  will-change: transform;
}
.home-stream__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-stream__layer--back .home-stream__card:nth-child(n+11){
  display: none;
}
.home-stream__layer--front .home-stream__card:nth-child(n+5){
  display: none;
}

/* ==================================================
 * home-stream responsive 768px
 * ================================================== */
@media (min-width: 768px){
  .home-stream__layer--back .home-stream__card,
  .home-stream__layer--front .home-stream__card{
    display: block;
  }
  .home-stream__layer--back .home-stream__card:nth-child(n+15){
    display: none;
  }
  .home-stream__layer--front .home-stream__card:nth-child(n+6){
    display: none;
  }
}

/* ==================================================
 * home-stream responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .home-stream{
    width: calc(100% + var(--layout-inner-padding) + var(--layout-inner-padding) + var(--layout-rail-width));
    margin-left: calc(0px - var(--layout-inner-padding) - var(--layout-rail-width));
    margin-right: calc(var(--layout-inner-padding) * -1);
  }
  .home-stream__main{
    padding-left: calc(var(--layout-inner-padding) + var(--layout-rail-width));
    padding-right: var(--layout-inner-padding);
  }
  .home-stream__layer--back .home-stream__card,
  .home-stream__layer--front .home-stream__card{
    display: block;
  }
}

/* ==================================================
 * home-stream reduced motion
 * ================================================== */
@media (prefers-reduced-motion: reduce){
  .home-stream__card{
    transform: translate3d(0,0,0) scale(1) !important;
  }
}

/* ==================================================
 * ==================================================
 * section-switch-background
 * ==================================================
 * ================================================== */
.section--switch-background{
  position: relative;
}
.section--switch-background > .section__panel{
  background: transparent;
  position: relative;
  transform: translateZ(0);
  backface-visibility: hidden;
  overflow: clip;
  isolation: isolate;
}
.section--switch-background > .section__panel > .section__switch-background{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.section--switch-background > .section__panel > .section__switch-background > .section__switch-background-layer{
  background: var(--color-bg-base);
  position: absolute;
  inset: 0;
}
.section--switch-background > .section__panel > .section__switch-background > .section__switch-background-layer--current{
  z-index: 0;
}
.section--switch-background > .section__panel > .section__switch-background > .section__switch-background-layer--next{
  z-index: 1;
  transform: translate3d(0, 100%, 0);
}
.section--switch-background > .section__panel > .section__switch-background > .section__switch-background-layer--next.is-animating{
  transform: translate3d(0, 0, 0);
  transition: transform 1180ms cubic-bezier(.22,1,.36,1);
}
.section--switch-background > .section__panel > .section__inner{
  position: relative;
  z-index: 1;
}

/* ==================================================
 * ==================================================
 * home-slider
 * ==================================================
 * ================================================== */
.home-slider{
  --home-slider-bg-color-1: #EBF2FE;
  --home-slider-bg-color-2: #E7ECF8;
  --home-slider-bg-color-3: #F0F0FA;
  
  --home-slider-meta-icon-fg-color: var(--color-fg-base);
  --home-slider-meta-icon-bg-color: rgba(0,0,0,.05);
  --home-slider-meta-label-color: rgba(0,0,0,.40);
  --home-slider-meta-number-color: rgba(0,0,0,.60);
  --home-slider-meta-value-color: rgba(0,0,0,.60);
  
  --home-slider-pagination-bg-color: rgba(0,0,0,.05);
  --home-slider-pagination-dot-bg-color: rgba(0,0,0,.60);
  --home-slider-pagination-dot-bg-color-hover: rgba(0,0,0,.80);
  --home-slider-pagination-pill-bg-color: rgba(0,0,0,.20);
  --home-slider-pagination-progress-bg-color: rgba(0,0,0,.80);

  --home-slider-autoplay-fg-color: rgba(0,0,0,.80);
  --home-slider-autoplay-bg-color: rgba(0,0,0,.05);
  --home-slider-autoplay-bg-color-hover: rgba(0,0,0,.10);
  position: relative;
}
.home-slider__inner{
  display: grid;
  align-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  min-width: 0;
  min-height: calc(100svh - var(--layout-header-height) - (var(--space-panel-block) * 2));
}
.home-slider__main{
  display: grid;
  min-width: 0;
}
.home-slider__card{
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  justify-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-slider__card:nth-child(3n+1){
  --home-slider-card-bg-color: var(--home-slider-bg-color-1);
}
.home-slider__card:nth-child(3n+2){
  --home-slider-card-bg-color: var(--home-slider-bg-color-2);
}
.home-slider__card:nth-child(3n){
  --home-slider-card-bg-color: var(--home-slider-bg-color-3);
}
.home-slider__card.is-active,
.home-slider__card.is-pre-enter,
.home-slider__card.is-entering,
.home-slider__card.is-leaving-text,
.home-slider__card.is-leaving-media{
  opacity: 1;
  visibility: visible;
}
.home-slider__card.is-active{
  pointer-events: auto;
}

/* ==================================================
 * home-slider mask
 * ================================================== */
.home-slider__text-mask{
  max-width: 100%;
  min-width: 0;
  clip-path: inset(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: clip-path;
  overflow: clip;
}
.home-slider__text-mask--meta{
  transition: clip-path 620ms cubic-bezier(.24,.88,.30,1);
}
.home-slider__text-mask--head{
  transition: clip-path 720ms cubic-bezier(.24,.88,.30,1);
}
.home-slider__text-mask--body,
.home-slider__text-mask--action{
  transition: clip-path 820ms cubic-bezier(.24,.88,.30,1);
}

/* ==================================================
 * home-slider state
 * ================================================== */
.home-slider__card.is-active .home-slider__media{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.home-slider__card.is-pre-enter .home-slider__media{
  opacity: 0;
  transform: translate3d(0, 0.6rem, 0);
  transition: none;
}
.home-slider__card.is-pre-enter .home-slider__text-mask{
  clip-path: inset(102% 0 0 0);
  transition: none;
}
.home-slider__card.is-entering .home-slider__media{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 80ms;
}
.home-slider__card.is-entering .home-slider__text-mask--meta{
  transition-delay: 100ms;
}
.home-slider__card.is-entering .home-slider__text-mask--head{
  transition-delay: 140ms;
}
.home-slider__card.is-entering .home-slider__text-mask--body{
  transition-delay: 200ms;
}
.home-slider__card.is-entering .home-slider__text-mask--action{
  transition-delay: 280ms;
}
.home-slider__card.is-leaving-text .home-slider__media{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.home-slider__card.is-leaving-text .home-slider__text-mask{
  clip-path: inset(102% 0 0 0);
}
.home-slider__card.is-leaving-text .home-slider__text-mask--head{
  transition-delay: 30ms;
}
.home-slider__card.is-leaving-text .home-slider__text-mask--body{
  transition-delay: 60ms;
}
.home-slider__card.is-leaving-text .home-slider__text-mask--action{
  transition-delay: 100ms;
}
.home-slider__card.is-leaving-media .home-slider__media{
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
}
.home-slider__card.is-leaving-media .home-slider__text-mask{
  clip-path: inset(102% 0 0 0);
}
.home-slider__card.is-leaving-media .home-slider__text-mask--head{
  transition-delay: 20ms;
}
.home-slider__card.is-leaving-media .home-slider__text-mask--body{
  transition-delay: 50ms;
}
.home-slider__card.is-leaving-media .home-slider__text-mask--action{
  transition-delay: 80ms;
}

/* ==================================================
 * home-slider media
 * ================================================== */
.home-slider__media{
  width: min(100%, clamp(16rem, 32vw, 32rem));
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  border-radius: var(--radius-md);
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 520ms cubic-bezier(.22,1,.36,1), transform 880ms cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  overflow: clip;
}
.home-slider__media-link{
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(var(--home-slider-media-scale, 1));
  transform-origin: center;
  will-change: transform;
}
.home-slider__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms cubic-bezier(.22,1,.36,1);
}
.home-slider__media-link:hover .home-slider__image,
.home-slider__media-link:focus-visible .home-slider__image{
  transform: scale(1.025);
}

/* ==================================================
 * home-slider content
 * ================================================== */
.home-slider__content{
  display: grid;
  align-content: center;
  justify-items: center;
  justify-self: center;
  gap: clamp(1.5rem, 2vw, 2rem);
  width: min(100%, clamp(24rem, 56vw, 56rem));
  min-width: 0;
}
.home-slider__meta{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-content: start;
  align-items: center;
  justify-content: start;
  gap: clamp(1.5rem, 2vw, 2rem);
  min-width: 0;
}
.home-slider__meta-icon{
  color: var(--home-slider-meta-icon-fg-color);
  background: var(--home-slider-meta-icon-bg-color);
  display: inline-grid;
  place-items: center;
  width: clamp(4rem, 6vw, 6rem);
  aspect-ratio: 1;
  border-radius: var(--radius-pill);
}
.home-slider__meta-icon > svg{
  width: 50%;
}
.home-slider__meta-group{
  display: grid;
  align-content: start;
  gap: clamp(0.5rem, 0.75vw, 0.75rem);
}
.home-slider__meta-label{
  color: var(--home-slider-meta-label-color);
  font-family: var(--font-en-sans);
  font-size: var(--fs-2xs);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
.home-slider__meta-number,
.home-slider__meta-value{
  font-family: var(--font-en-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: 0.1em;
}
.home-slider__meta-number{
  color: var(--home-slider-meta-number-color);
}
.home-slider__meta-value{
  color: var(--home-slider-meta-value-color);
  text-transform: uppercase;
}
.home-slider__head{
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
  min-width: 0;
}
.home-slider__title{
  font-size: var(--fs-4xl);
  font-weight: 600;
  line-height: 1.2;
}
.home-slider__body{
  display: grid;
  align-content: start;
  gap: clamp(0.75rem, 1vw, 1rem);
  width: fit-content;
  max-width: min(100%, 24rem);
  min-width: 0;
  margin-inline: auto;
}
.home-slider__body > *{
  width: fit-content;
  max-width: 100%;
}
.home-slider__lead{
  font-size: var(--fs-xl);
  font-weight: 500;
}

/* ==================================================
 * home-slider control
 * ================================================== */
.home-slider__control{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 0;
}
.home-slider__pagination-list{
  background: var(--home-slider-pagination-bg-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
}
.home-slider__pagination-button{
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 2.5rem;
  transition: width 450ms cubic-bezier(.22,1,.36,1);
  cursor: pointer;
}
.home-slider__pagination-button.is-active{
  width: 4rem;
}
.home-slider__pagination-indicator{
  background: var(--home-slider-pagination-dot-bg-color);
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-pill);
  position: relative;
  transition: background-color 350ms cubic-bezier(.22,1,.36,1), width 450ms cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.home-slider__pagination-button:hover .home-slider__pagination-indicator,
.home-slider__pagination-button:focus-visible .home-slider__pagination-indicator{
  background: var(--home-slider-pagination-dot-bg-color-hover);
}
.home-slider__pagination-button.is-active .home-slider__pagination-indicator{
  background: var(--home-slider-pagination-pill-bg-color);
  width: 3rem;
}
.home-slider__pagination-progress{
  width: 0;
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  will-change: width;
}
.home-slider__pagination-progress::before{
  content: "";
  background: var(--home-slider-pagination-progress-bg-color);
  width: 3rem;
  border-radius: var(--radius-pill);
  position: absolute;
  inset: 0 auto 0 0;
}
.home-slider__autoplay{
  color: var(--home-slider-autoplay-fg-color);
  background: var(--home-slider-autoplay-bg-color);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.5rem;
  aspect-ratio: 1;
  border-radius: var(--radius-pill);
  transition: background-color 350ms cubic-bezier(.22,1,.36,1);
  cursor: pointer;
}
.home-slider__autoplay:hover,
.home-slider__autoplay:focus-visible{
  background: var(--home-slider-autoplay-bg-color-hover);
}
.home-slider__autoplay:disabled{
  opacity: 0.5;
  cursor: default;
}
.home-slider__autoplay-icon{
  display: grid;
  grid-area: 1 / 1;
  place-items: center;
  transition: opacity 250ms cubic-bezier(.22,1,.36,1), transform 350ms cubic-bezier(.22,1,.36,1);
}
.home-slider__autoplay-icon > svg{
  width: 40%;
}
.home-slider__autoplay-icon--play{
  opacity: 0;
  transform: scale(0.75);
}
.home-slider__autoplay.is-paused .home-slider__autoplay-icon--pause{
  opacity: 0;
  transform: scale(0.75);
}
.home-slider__autoplay.is-paused .home-slider__autoplay-icon--play{
  opacity: 1;
  transform: scale(1);
}

/* ==================================================
 * home-slider responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .home-slider__card{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "media content";
    justify-items: stretch;
    align-items: center;
  }
  .home-slider__media{
    grid-area: media;
    justify-self: center;
    align-self: center;
  }
  .home-slider__content{
    grid-area: content;
    justify-items: stretch;
    justify-self: stretch;
    align-self: center;
  }
  .home-slider__body{
    width: min(100%, 32rem);
    max-width: none;
    margin-inline: 0;
  }
}

/* ==================================================
 * home-slider reduced motion
 * ================================================== */
@media (prefers-reduced-motion: reduce){
  .home-slider__pagination-button,
  .home-slider__pagination-indicator,
  .home-slider__autoplay,
  .home-slider__autoplay-icon,
  .home-slider__media,
  .home-slider__image,
  .home-slider__text-mask,
  .section--switch-background > .section__panel > .section__switch-background > .section__switch-background-layer--next{
    transition: none !important;
  }
  .home-slider__image,
  .home-slider__media-link{
    transform: none !important;
  }
  .home-slider__media-link{
    will-change: auto;
  }
  .home-slider__text-mask{
    clip-path: inset(0) !important;
  }
  .home-slider__media{
    opacity: 1 !important;
    transform: none !important;
  }
  .section--switch-background > .section__panel > .section__switch-background > .section__switch-background-layer--next{
    transform: translate3d(0, 0, 0) !important;
  }
}

/* ==================================================
 * ==================================================
 * home-guide
 * ==================================================
 * ================================================== */
.home-guide{
  --home-guide-title-en-color: var(--color-fg-base);
  --home-guide-title-ja-color: var(--color-fg-base);
  --home-guide-lead-color: var(--color-fg-base);
  --home-guide-text-color: var(--color-fg-base);

  --home-guide-item-fg-color: var(--color-fg-base);
  --home-guide-item-bg-color: rgba(255,255,255,.80);
  --home-guide-item-border-color: rgba(0,0,0,.60);

  --home-guide-menu-text-ja-color: var(--color-fg-base);
  --home-guide-menu-text-en-color: rgba(0,0,0,.60);
  --home-guide-menu-text-en-color-hover: var(--color-fg-base);
  --home-guide-menu-icon-color: rgba(0,0,0,.60);
  --home-guide-menu-icon-color-hover: var(--color-fg-base);
  --home-guide-menu-bg-color-hover: color-mix(in srgb, var(--color-brand) 40%, transparent);
  --home-guide-menu-border-color: rgba(0,0,0,.10);

  --home-guide-menu-hover-y: 0px;
  --home-guide-menu-hover-height: 0px;
  --home-guide-menu-hover-opacity: 0;

  position: relative;
}
.home-guide__inner{
  display: grid;
  align-content: center;
  min-width: 0;
}
.home-guide__main{
  display: grid;
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
  min-width: 0;
}
.home-guide__content{
  display: grid;
  gap: clamp(1.5rem, 2vw, 2rem);
  width: min(100%, 56rem);
  min-width: 0;
}
.home-guide__head{
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
  min-width: 0;
}
.home-guide__title-en{
  color: var(--home-guide-title-en-color);
  font-family: var(--font-en-sans);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1;
  text-wrap: balance;
}
.home-guide__title-ja{
  color: var(--home-guide-title-ja-color);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.6;
}
.home-guide__body{
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
  width: min(100%, 32rem);
  min-width: 0;
}
.home-guide__lead{
  color: var(--home-guide-lead-color);
  font-size: var(--fs-xl);
  font-weight: 500;
}
.home-guide__text{
  color: var(--home-guide-text-color);
}
.home-guide__items{
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1vw, 1rem);
  min-width: 0;
}
.home-guide__item{
  color: var(--home-guide-item-fg-color);
  font-size: var(--fs-2xs);
  font-weight: 500;
  background-color: var(--home-guide-item-bg-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-block: 0.5rem;
  padding-inline: 1rem;
  border: 1px solid var(--home-guide-item-border-color);
  border-radius: var(--radius-xs);
}
.home-guide__nav{
  min-width: 0;
  margin-inline: calc(var(--layout-inner-padding) * -1);
}
.home-guide__menu{
  display: grid;
  min-width: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.home-guide__menu::before{
  content: "";
  background: var(--home-guide-menu-bg-color-hover);
  width: 100%;
  height: var(--home-guide-menu-hover-height);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: var(--home-guide-menu-hover-opacity);
  pointer-events: none;
  transform: translate3d(0, var(--home-guide-menu-hover-y), 0);
  transition:
    height 420ms cubic-bezier(.22,1,.36,1),
    opacity 180ms ease,
    transform 420ms cubic-bezier(.22,1,.36,1);
}
.home-guide__menu-item{
  position: relative;
  z-index: 1;
}
.home-guide__menu-item::before,
.home-guide__menu-item::after{
  content: "";
  border-top: 1px solid var(--home-guide-menu-border-color);
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.home-guide__menu-item::before{
  top: 0;
  opacity: 0;
}
.home-guide__menu-item:first-child::before{
  opacity: 1;
}
.home-guide__menu-item::after{
  bottom: 0;
}
.home-guide__link{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 2vw, 2rem);
  min-width: 0;
  padding-block: clamp(1.5rem, 2vw, 2rem);
  padding-inline: var(--layout-inner-padding);
  transition: color 350ms cubic-bezier(.22,1,.36,1);
}
.home-guide__link-text{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-width: 0;
}
.home-guide__link .menu-text-ja{
  color: var(--home-guide-menu-text-ja-color);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1;
  min-width: 0;
}
.home-guide__link .menu-text-en{
  color: var(--home-guide-menu-text-en-color);
  font-family: var(--font-en-sans);
  font-size: var(--fs-2xs);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  white-space: nowrap;
  justify-self: end;
  transition: color 350ms cubic-bezier(.22,1,.36,1);
}
.home-guide__link:hover .menu-text-en,
.home-guide__link:focus-visible .menu-text-en{
  color: var(--home-guide-menu-text-en-color-hover);
}
.home-guide__icon{
  color: var(--home-guide-menu-icon-color);
  display: inline-grid;
  place-items: center;
  width: 20px;
  aspect-ratio: 1;
  transition: color 350ms cubic-bezier(.22,1,.36,1);
}
.home-guide__icon > svg{
  width: 100%;
}
.home-guide__link:hover .home-guide__icon,
.home-guide__link:focus-visible .home-guide__icon{
  color: var(--home-guide-menu-icon-color-hover);
}

/* ==================================================
 * home-guide responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .home-guide__main{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
  .home-guide__content{
    align-self: center;
  }
  .home-guide__nav{
    align-self: center;
    margin-inline: 0;
  }
  .home-guide__link{
    padding-inline: clamp(1.5rem, 2vw, 2rem);
  }
}

/* ==================================================
 * home-guide reduced motion
 * ================================================== */
@media (prefers-reduced-motion: reduce){
  .home-guide__menu::before,
  .home-guide__link,
  .home-guide__link .menu-text-en,
  .home-guide__icon{
    transition: none !important;
  }
}

/* ==================================================
 * ==================================================
 * home-banner
 * ==================================================
 * ================================================== */
.home-banner{
  --home-banner-fg-color: var(--color-white);
  --home-banner-bg-color: var(--color-brand-dark);

  --home-banner-border-color: rgba(255,255,255,.05);
  --home-banner-border-color-hover: rgba(255,255,255,.12);

  --home-banner-icon-fg-color: var(--color-brand-dark);
  --home-banner-icon-bg-color: var(--color-bg-soft);

  --plus-logo-gradient-color-1: var(--color-white);
  --plus-logo-gradient-color-2: var(--color-white);
  --plus-logo-gradient-color-3: var(--color-white);

  min-width: 0;
}
.home-banner__link{
  color: var(--home-banner-fg-color);
  background: var(--home-banner-bg-color);
  display: grid;
  align-items: center;
  justify-items: center;
  gap: clamp(1.5rem, 6vw, 6rem);
  min-width: 0;
  padding-block: clamp(3rem, 6vw, 6rem);
  padding-inline: clamp(1.5rem, 4vw, 4rem);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px var(--home-banner-border-color);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 420ms cubic-bezier(.22,1,.36,1);
}
.home-banner__link:hover,
.home-banner__link:focus-visible{
  box-shadow: inset 0 0 0 1px var(--home-banner-border-color-hover);
}

/* ==================================================
 * home-banner logo
 * ================================================== */
.home-banner__logo{
  width: min(100%, 16rem);
  min-width: 0;
  position: relative;
  z-index: 1;
}
.home-banner__logo-icon{
  display: block;
  width: 100%;
}
.home-banner .site-logo-plus{
  display: grid;
  grid-template-columns: minmax(0, .864fr) minmax(0, 1fr);
  align-items: end;
  justify-items: stretch;
  column-gap: clamp(.5rem, 1.5vw, 1rem);
  width: 100%;
}
.home-banner .site-logo-plus__wordmark{
  width: 100%;
  max-width: none;
}

/* ==================================================
 * home-banner text
 * ================================================== */
.home-banner__text{
  color: var(--home-banner-fg-color);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .04em;
  text-align: center;
  text-wrap: balance;
  width: min(100%, 38rem);
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* ==================================================
 * home-banner icon
 * ================================================== */
.home-banner__icon{
  color: var(--home-banner-icon-fg-color);
  background: var(--home-banner-icon-bg-color);
  display: grid;
  place-items: center;
  width: clamp(3rem, 4vw, 4rem);
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  z-index: 2;
  pointer-events: none;
}
.home-banner__icon > svg{
  width: 50%;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.home-banner__link:hover .home-banner__icon > svg,
.home-banner__link:focus-visible .home-banner__icon > svg{
  transform: rotate(360deg);
}

/* ==================================================
 * home-banner responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .home-banner__link{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    gap: clamp(4rem, 8vw, 8rem);
  }
  .home-banner__logo{
    width: min(100%, 20rem);
    justify-self: start;
  }
  .home-banner__text{
    text-align: left;
    justify-self: end;
  }
}

/* ==================================================
 * home-banner reduced motion
 * ================================================== */
@media (prefers-reduced-motion: reduce){
  .home-banner__link,
  .home-banner__icon > svg{
    transition: none !important;
  }
}

/* ==================================================
 * ==================================================
 * home-gallery
 * ==================================================
 * ================================================== */
.home-gallery{
  --home-gallery-item-width: clamp(12rem, 32vw, 32rem);
  --home-gallery-item-gap: clamp(1.5rem, 2vw, 2rem);

  position: relative;
}
.home-gallery__inner{
  display: grid;
  align-content: center;
  min-width: 0;
}
.home-gallery__loop{
  width: calc(100% + var(--layout-inner-padding) + var(--layout-inner-padding));
  margin-left: calc(var(--layout-inner-padding) * -1);
  margin-right: calc(var(--layout-inner-padding) * -1);
  position: relative;
  overflow: hidden;
}
.home-gallery__track{
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 0;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  will-change: transform;
}
.home-gallery__track.is-ready{
  animation: home-gallery-loop-x var(--home-gallery-loop-duration) linear infinite;
}
.home-gallery__items{
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--home-gallery-item-gap);
  width: max-content;
  min-width: 0;
  padding-right: var(--home-gallery-item-gap);
}
.home-gallery__item{
  flex: 0 0 auto;
  width: var(--home-gallery-item-width);
  aspect-ratio: 4 / 3;
  overflow: clip;
}
.home-gallery__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================================
 * home-gallery responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .home-gallery__loop{
    width: calc(100% + var(--layout-inner-padding) + var(--layout-inner-padding) + var(--layout-rail-width));
    margin-left: calc(0px - var(--layout-inner-padding) - var(--layout-rail-width));
    margin-right: calc(var(--layout-inner-padding) * -1);
  }
}

/* ==================================================
 * home-gallery keyframes
 * ================================================== */
@keyframes home-gallery-loop-x{
  from{
    transform: translate3d(0,0,0);
  }
  to{
    transform: translate3d(calc(var(--home-gallery-loop-distance) * -1),0,0);
  }
}

/* ==================================================
 * home-gallery reduced motion
 * ================================================== */
@media (prefers-reduced-motion: reduce){
  .home-gallery__track{
    transform: translate3d(0,0,0) !important;
    animation: none !important;
  }
}

/* ==================================================
 * ==================================================
 * home-statement
 * ==================================================
 * ================================================== */
.home-statement{
  --home-statement-title-en-color: var(--color-white);
  --home-statement-text-en-color: rgba(255,255,255,.80);
  --home-statement-text-ja-color: rgba(255,255,255,.80);
}
.home-statement__inner{
  display: grid;
  align-content: center;
  min-width: 0;
}
.home-statement__content{
  display: grid;
  align-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  min-width: 0;
}
.home-statement__head{
  display: grid;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
}
.home-statement__title-en{
  color: var(--home-statement-title-en-color);
  font-family: var(--font-en-sans);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1;
  text-wrap: balance;
}
.home-statement__body{
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  width: min(100%, 56rem);
  min-width: 0;
}
.home-statement__text{
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
  min-width: 0;
}
.home-statement__text--en{
  color: var(--home-statement-text-en-color);
  font-family: var(--font-en-sans);
  font-size: var(--fs-2xl);
}
.home-statement__text--ja{
  color: var(--home-statement-text-ja-color);
  line-height: 2;
}

/* ==================================================
 * home-statement responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .home-statement__content{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
  .home-statement__head{
    align-self: start;
    position: sticky;
    top: calc(var(--layout-header-height) + clamp(4rem, 8vw, 8rem));
  }
  .home-statement__body{
    justify-self: stretch;
  }
}

/* ==================================================
 * ==================================================
 * home-connect
 * ==================================================
 * ================================================== */
.home-connect{
  --home-connect-card-bg-color: rgba(255,255,255,.05);
  --home-connect-card-bg-color-hover: rgba(255,255,255,.10);

  --home-connect-title-color: var(--color-white);
  --home-connect-text-color: rgba(255,255,255,.80);

  --home-connect-corner-bg-color: var(--color-bg-dark);
  --home-connect-corner-icon-fg-color: var(--color-white);
  --home-connect-corner-icon-bg-color: transparent;
  --home-connect-corner-radius: var(--radius-sm);
  min-width: 0;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}
.home-connect__inner{
  min-width: 0;
}
.home-connect__items{
  display: grid;
  gap: clamp(2em, 4vw, 4rem);
  min-width: 0;
}
.home-connect__item{
  color: inherit;
  text-decoration: none;
  background-color: var(--home-connect-card-bg-color);
  display: grid;
  min-width: 0;
  padding-block: clamp(2rem, 3vw, 3rem);
  padding-inline: clamp(1.5rem, 3vw, 3rem);
  padding-right: clamp(4rem, 6vw, 6rem);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color .3s ease;
}
.home-connect__item:hover,
.home-connect__item:focus-visible{
  background-color: var(--home-connect-card-bg-color-hover);
}
.home-connect__content{
  display: grid;
  align-content: center;
  gap: clamp(1.5rem, 2vw, 2rem);
  min-width: 0;
  position: relative;
  z-index: 1;
}
.home-connect__head{
  display: grid;
  min-width: 0;
}
.home-connect__title{
  color: var(--home-connect-title-color);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  min-width: 0;
  font-family: var(--font-en-sans);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.4;
}
.home-connect__title-icon{
  display: grid;
  place-items: center;
  width: clamp(2rem, 3vw, 3rem);
  height: clamp(2rem, 3vw, 3rem);
}
.home-connect__title-icon > svg{
  width: 100%;
}
.home-connect__title-text{
  display: block;
  min-width: 0;
}
.home-connect__title-row{
  display: block;
}
.home-connect__body{
  display: grid;
  min-width: 0;
}
.home-connect__text{
  color: var(--home-connect-text-color);
  font-size: var(--fs-sm);
}
.home-connect__corner{
  background-color: var(--home-connect-corner-bg-color);
  width: clamp(3rem, 4vw, 4rem);
  aspect-ratio: 1;
  border-top-left-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.home-connect__corner::before,
.home-connect__corner::after{
  content: "";
  background-color: transparent;
  width: var(--home-connect-corner-radius);
  height: var(--home-connect-corner-radius);
  border-bottom-right-radius: var(--home-connect-corner-radius);
  box-shadow: calc(var(--home-connect-corner-radius) * .5) calc(var(--home-connect-corner-radius) * .5) 0 calc(var(--home-connect-corner-radius) * .5) var(--home-connect-corner-bg-color);
  position: absolute;
  pointer-events: none;
}
.home-connect__corner::before{
  bottom: 0;
  left: calc(var(--home-connect-corner-radius) * -1);
}
.home-connect__corner::after{
  top: calc(var(--home-connect-corner-radius) * -1);
  right: 0;
}
.home-connect__corner-icon{
  color: var(--home-connect-corner-icon-fg-color);
  background-color: var(--home-connect-corner-icon-bg-color);
  display: grid;
  place-items: center;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50% var(--home-connect-corner-radius) var(--home-connect-corner-radius) var(--home-connect-corner-radius);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.home-connect__corner-icon > svg{
  width: clamp(1rem, 1.25vw, 1.25rem);
  height: clamp(1rem, 1.25vw, 1.25rem);
  transform: translate3d(0, 0, 0);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.home-connect__item:hover .home-connect__corner-icon > svg,
.home-connect__item:focus-visible .home-connect__corner-icon > svg{
  transform: translate3d(.15rem, -.15rem, 0);
}

/* ==================================================
 * home-connect responsive 768px
 * ================================================== */
@media (min-width: 768px){
  .home-connect__items{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}