@charset "UTF-8";

.s-header{
  position: fixed;
  top: 0;
  z-index: 5;
}

.c-compass{
  position: absolute;
  width: 16.5rem;
  height: auto;
  aspect-ratio: 1;
}

.c-compass--outline{
  animation: compass-rotate 10s linear infinite;
}

.c-compass--needle{
  width: 2.8rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@keyframes compass-rotate{
  0%{
    rotate: 0deg;
  }
  100%{
    rotate: 360deg;
  }
}

@media (min-width: 768px){
  .c-compass{
    width: 23rem;
  }

  .c-compass--needle{
    width: 3.8rem;
  }
}

main{
  overflow-x: hidden;
}

.c-top-grid{
  display: grid;
  background-color: var(--color-white);
  border: 1px solid #E6E7EA;
}

.c-top-grid__item{
  counter-increment: gridItemCounter;
}

.c-top-grid__item:not(:first-of-type){
  border-top: 1px solid #E6E7EA;
}

.c-top-grid__item--inner{
  padding: 2.3rem 2rem 1.9rem;
}

.c-top-grid__item--number{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: center;
}

.c-top-grid__item--number::before{
  content: counter(gridItemCounter, decimal-leading-zero);
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.4rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-accent);
}

.c-top-grid__item--number::after{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E2E2E3;
}

.c-top-grid__item--heading{
  margin-top: 1.6rem;
  font-size: 1.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05rem;
}

.c-top-grid__item--text{
  margin-top: 1.2rem;
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.06rem;
  line-height: 2;
}

@media (min-width: 768px){
  .c-top-grid{
    grid-template-columns: repeat(2, 1fr);
    border: none;
  }

  .c-top-grid__item{
    border-top: 1px solid #E6E7EA;
    border-left: 1px solid #E6E7EA;
  }

  .c-top-grid__item:nth-of-type(2n){
    border-right: 1px solid #E6E7EA;
  }

  .c-top-grid__item:nth-of-type(2n):last-of-type,
  .c-top-grid__item:nth-of-type(2n-1):nth-last-of-type(2){
    border-bottom: 1px solid #E6E7EA;
  }

  .c-top-grid__item--inner{
    padding: 4.4rem 4rem 3.8rem;
  }

  .c-top-grid__item--number::before{
    letter-spacing: 0.2rem;
  }

  .c-top-grid__item--heading{
    margin-top: 2.2rem;
    font-size: 1.9rem;
    letter-spacing: 0.04rem;
  }

  .c-top-grid__item--text{
    margin-top: 1.8rem;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.c-top-flag{
  margin-top: 3rem;
  padding: 6.2rem 2.5rem 6rem;
  width: 100%;
  position: relative;
  background-color: var(--color-white);
  border-top: 3px solid var(--color-accent);
}

.c-top-flag__heading--en{
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.4rem;
  align-items: center;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.552rem;
  text-transform: uppercase;
  color: var(--color-accent);
}

.c-top-flag__heading--en::before{
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background-color: var(--color-accent);
}

.c-top-flag__heading--ja{
  margin-top: 2rem;
  display: grid;
  gap: 1.8rem;
  font-size: 2.4rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1rem;
  line-height: 1.5;
}

.c-top-flag__heading--ja :where(small){
  font-size: 1.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.03rem;
  line-height: 1.5;
}

.c-top-flag__text{
  margin-top: 2.5rem;
  font-size: 1.4rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.028rem;
  line-height: 2;
}

.c-top-flag__text + .c-top-flag__text{
  margin-top: 1.8rem;
}

@media (min-width: 768px){
  .c-top-flag{
    margin-top: 6.4rem;
    padding: 7.2rem 6rem 5.6rem;
    border-top: none;
    border-left: 3px solid var(--color-accent);
  }

  .c-top-flag__heading--en{
    font-size: 1.1rem;
    letter-spacing: 0.56rem;
  }

  .c-top-flag__heading--ja{
    margin-top: 2.2rem;
    font-size: 3.4rem;
  }

  .c-top-flag__heading--ja :where(small){
    font-size: 2.6rem;
    line-height: 1.6;
    letter-spacing: 0.08rem;
  }
}

.c-top-card{
  padding: 2.7rem 2rem 2rem;
  display: grid;
  gap: 1rem;
  background-color: var(--color-white);
}

.c-top-card__heading{
  display: grid;
  gap: 1rem;
}

.c-top-card__heading--en{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.54rem;
  text-transform: uppercase;
  color: var(--color-accent);
}

.c-top-card__heading--en::after{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  align-self: center;
  background-color: #E2E2E3;
}

.c-top-card__heading--ja{
  font-size: 1.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05rem;
}

.c-top-card__lead{
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.028rem;
  line-height: 2;
}

@media (min-width: 768px){
  .c-top-card{
    padding: 3.6rem 3.6rem 3.6rem;
    border-top: 2px solid var(--color-accent);
  }

  .c-top-card__heading{
    gap: 2.6rem;
  }

  .c-top-card__heading--en{
    font-size: 1.1rem;
  }

  .c-top-card__heading--ja{
    font-size: 2.2rem;
    line-height: 1.5;
  }

  .c-top-card__lead{
    margin-top: 1.2rem;
    line-height: 1.9;
  }
}

.top-section{
  position: relative;
}

.top-section .c-bg-line{
  position: absolute;
  border-color: var(--color-white);
  z-index: 0;
}

.top-section .c-bg-line::before,
.top-section .c-bg-line::after{
  position: absolute;
  border-color: var(--color-white);
}

.top-section[data-section="mv"]{
  width: 100%;
  position: relative;
}

.top-section[data-section="mv"] .mv-wrapper :where(video){
  width: 100%;
  height: auto;
  aspect-ratio: 39/78;
  object-fit: cover;
}

.top-section[data-section="mv"] .fv__content{
  padding-inline: 3.2rem;
  position: absolute;
  width: 100%;
  height: fit-content;
  top: 50%;
  left: 0;
  translate: 0% -50%;
  z-index: 2;
}

.top-section[data-section="mv"] .fv__heading{
  padding-bottom: 3.6rem;
  display: grid;
  gap: 2rem;
  position: relative;
}

.top-section[data-section="mv"] .fv__heading::after{
  content: '';
  display: block;
  width: 12.2699%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent);
}

.top-section[data-section="mv"] .fv__heading--en{
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.75rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-accent);
}

.top-section[data-section="mv"] .fv__heading--ja{
  font-family: var(--font-ja);
  font-size: 2.4rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1rem;
  line-height: 1.70417;
  color: var(--color-main);
}

.top-section[data-section="mv"] .fv__lead{
  margin-top: 3.8rem;
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.06rem;
  line-height: 2.1;
}

.top-section[data-section="mv"] .c-button{
  margin-top: 4.8rem;
  width: 100%;
  background-color: var(--color-accent);
  text-transform: uppercase;
}

@media (min-width: 768px){
  .top-section[data-section="mv"] .mv-wrapper :where(video){
    aspect-ratio: 144/90;
  }

  .top-section[data-section="mv"] .fv__content{
    padding-inline: 0;
    width: min(1152px, 115.2rem);
    left: 50%;
    translate: -50% -50%;
  }

  .top-section[data-section="mv"] .fv__heading{
    gap: 1.6rem;
    padding-bottom: 3.3rem;
  }
  
  .top-section[data-section="mv"] .fv__heading::after{
    width: 4rem;
  }

  .top-section[data-section="mv"] .fv__heading--ja{
    font-size: 4rem;
    line-height: 1.5;
  }

  .top-section[data-section="mv"] .fv__lead{
    font-size: 1.5rem;
  }

  .top-section[data-section="mv"] .c-button{
    padding-inline: 0;
    width: 22.3rem;
  }

  .top-section[data-section="mv"] .fv__footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 4rem;
    left: 50%;
    translate: -50% 0%;
    width: calc(100% - 20rem);
  }

  .top-section[data-section="mv"] .fv__footer--scroll{
    display: grid;
    grid-template-columns: auto 6.4rem;
    gap: 1.6rem;
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: var(--fw-medium);
    letter-spacing: 0.6rem;
    line-height: 1.5;
    text-transform: uppercase;
  }

  @keyframes scrollIntro{
    0%{
      width: 0%;
    }
    80%{
      width: 100%;
    }
    100%{
      width: 100%;
    }
  }

  .top-section[data-section="mv"] .fv__footer--scroll::after{
    content: '';
    width: 100%;
    height: 1px;
    align-self: center;
    background-color: var(--color-main);
    animation: scrollIntro 2s ease-in-out infinite;
  }

  .top-section[data-section="mv"] .fv__footer--corporate{
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: var(--fw-medium);
    letter-spacing: 0.24rem;
    line-height: 1.5;
    text-transform: uppercase;
  }
}

.top-section__inner{
  padding-block: 10.8rem;
  padding-inline: 3.2rem;
  position: relative;
  z-index: 2;
}

.top-section__heading{
  margin-bottom: 3rem;
  display: grid;
  gap: 1.2rem;
}

.top-section__heading--en{
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.55rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-accent);
}

.top-section__heading--en::before{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  align-self: center;
  background-color: var(--color-accent);
}

.top-section__heading--ja{
  font-family: var(--font-ja);
  font-size: 2.4rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.2rem;
  line-height: 1.5;
  color: var(--color-main);
}

.top-section:has(.top-section__lead) .top-section__heading{
  margin-bottom: 2rem;
}

.top-section__lead{
  margin-top: 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.02rem;
  line-height: 2;
}

.top-section__content{
  margin-top: 3rem;
}

@media (min-width: 768px){
  .top-section__inner{
    margin-inline: auto;
    padding-inline: 0;
    padding-block: 12rem;
    width: min(1110px, 111rem);
  }

  .top-section__heading{
    margin-bottom: 6.6rem;
    gap: 1.4rem;
  }

  .top-section__heading--ja{
    font-size: 4rem;
    letter-spacing: 0;
    line-height: 1.15;
  }

  .top-section__lead{
    margin-top: 2.8rem;
    font-size: 1.5rem;
    letter-spacing: 0.04rem;
  }

  .top-section__content{
    margin-top: 6.4rem;
  }
}

.top-section[data-section="why"] .c-compass{
  position: absolute;
  top: 20rem;
  right: -0.5rem;
}

@media (min-width: 768px){
  .top-section[data-section="why"] .c-compass{
    top: 5rem;
    right: 5rem;
  }
}

.top-section[data-section="approach"]{
  background-color: #f9f9fa;
}

.top-section[data-section="approach"] .c-top-flag{
  padding-block: 4.2rem;
}

.top-section[data-section="approach"] .c-top-flag__heading--en{
  grid-template-columns: 2.7rem 1fr;
}

.top-section[data-section="approach"] .approach-card__detail{
  margin-top: 1.4rem;
  padding-top: 2rem;
  display: grid;
  gap: 2.2rem;
  border-top: 1px solid #EEEEEF;
}

.top-section[data-section="approach"] .approach-card__detail--item{
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem 1.2rem;
}

.top-section[data-section="approach"] .approach-card__detail--item .icon{
  grid-area: 1 / 1 / 3 / 2;
}

.top-section[data-section="approach"] .approach-card__detail--item .heading{
  grid-area: 1 / 2 / 2 / 3;
  font-size: 1.4rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04rem;
  line-height: 1.5;
}

.top-section[data-section="approach"] .approach-card__detail--item .text{
  grid-area: 2 / 2 / 3 / 3;
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.028rem;
  line-height: 2;
}

.top-section[data-section="approach"] .c-compass{
  top: -6rem;
  right: -8rem;
}

@media (min-width: 768px){
  .top-section[data-section="approach"] .top-section__content{
    margin-top: 6.5rem;
  }

  .top-section[data-section="approach"] .approach-card__detail{
    margin-top: 2.4rem;
    padding-top: 3.2rem;
    gap: 2.4rem;
  }

  .top-section[data-section="approach"] .approach-card__detail--item .heading{
    letter-spacing: 0;
  }

  .top-section[data-section="approach"] .approach-card__detail--item .text{
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.8;
  }

  .top-section[data-section="approach"] .c-top-flag{
    margin-top: 6.4rem;
    padding-top: 6rem;
    padding-bottom: 5.6rem;
  }

  .top-section[data-section="approach"] .c-top-flag__heading--ja :where(small){
    font-size: 2.8rem;
  }

  .top-section[data-section="approach"] .c-top-flag__text{
    width: 81.0537%;
    letter-spacing: 0.04rem;
    line-height: 2.1;
  }

  .top-section[data-section="approach"] .c-compass {
    top: 17.5rem;
    right: -7.5rem;
  }
}

.top-section[data-section="perspectives"] .c-top-grid__item--inner{
  padding: 3.4rem 2rem 3rem;
}

.top-section[data-section="perspectives"] .c-top-grid__item--heading{
  margin-top: 0;
  display: grid;
  gap: 0.8rem;
}

.top-section[data-section="perspectives"] .c-top-grid__item--heading--en{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.55rem;
  text-transform: uppercase;
  color: var(--color-accent);
}

.top-section[data-section="perspectives"] .c-top-grid__item--heading--en::after{
  content: counter(gridItemCounter, decimal-leading-zero);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.352rem;
  color: #C8C9CC;
}

.top-section[data-section="perspectives"] .c-top-grid__item--heading--ja{
  letter-spacing: 0.16rem;
}

.top-section[data-section="perspectives"] .c-top-grid__item--text{
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid #EEEEEF;
}

.top-section[data-section="perspectives"] .perspectives__detail{
  margin-top: 1.6rem;
}

.top-section[data-section="perspectives"] .perspectives__list{
  display: grid;
  gap: 1.4rem;
}

.top-section[data-section="perspectives"] .perspectives__item{
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 1.2rem;
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.028rem;
  line-height: 2;
}

.top-section[data-section="perspectives"] .perspectives__item::before{
  content: '';
  display: block;
  width: 1.8rem;
  height: 2.2rem;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2222%22%20viewBox%3D%220%200%2018%2022%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M7.5%2014.2998L4.5%2011.2998L5.55%2010.2498L7.5%2012.1998L12.45%207.2498L13.5%208.2998L7.5%2014.2998Z%22%20fill%3D%22%23AD2123%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px){
  .top-section[data-section="perspectives"] .c-top-grid__item--inner{
    padding: 4.2rem 4rem 4rem;
  }

  .top-section[data-section="perspectives"] .c-top-grid__item--heading{
    gap: 1.3rem;
  }

  .top-section[data-section="perspectives"] .c-top-grid__item--heading--en{
    font-size: 1.1rem;
  }

  .top-section[data-section="perspectives"] .c-top-grid__item--heading--ja{
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
  }

  .top-section[data-section="perspectives"] .c-top-grid__item--text{
    margin-top: 2.6rem;
    padding-top: 2.4rem;
    font-weight: var(--fw-semibold);
    line-height: 1.95;
  }

  .top-section[data-section="perspectives"] .perspectives__detail{
    margin-top: 2.8rem;
  }

  .top-section[data-section="perspectives"] .perspectives__item{
    line-height: 1.75;
  }
}

.top-section[data-section="professionals"]{
  background-color: #f9f9fa;
}

.top-section[data-section="professionals"] .top-section__inner{
  padding-top: 11rem;
}

.top-section[data-section="professionals"] .top-section__heading--ja{
  font-family: var(--font-en);
  letter-spacing: 0.46rem;
  line-height: normal;
  text-transform: uppercase;
}

.top-section[data-section="professionals"] .professional__member{
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: var(--color-white);
  border: 1px solid #E6E7EA;
}

.top-section[data-section="professionals"] .professional__member--image{
  padding: 1rem 2.8rem;
}

.top-section[data-section="professionals"] .professional__member--details{
  padding : 2rem 2rem 2rem;
}

.top-section[data-section="professionals"] .professional__member--lead{
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-accent);
}

.top-section[data-section="professionals"] .professional__member--title{
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.07rem;
  line-height: normal;
}

.top-section[data-section="professionals"] .professional__member--about{
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.04rem;
  line-height: 2;
  border-top: 1px solid #EEEEEF;
}

.top-section[data-section="professionals"] .professional__member--info{
  margin-top: 1.8rem;
  display: grid;
  gap: 0.4rem;
}

.top-section[data-section="professionals"] .professional__member--position{
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.04rem;
  line-height: 1;
}

.top-section[data-section="professionals"] .professional__member--name{
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04rem;
  line-height: 1.8;
}

@media (min-width: 768px){
  .top-section[data-section="professionals"] .top-section__heading--ja{
    letter-spacing: 0.8rem;
  }

  .top-section[data-section="professionals"] .top-section__lead{
    margin-top: 2.5rem;
  }

  .top-section[data-section="professionals"] .professional__list{
    gap: 3.4rem;
  }

  .top-section[data-section="professionals"] .professional__member--image{
    padding: 0 2.82rem;
  }

  .top-section[data-section="professionals"] .professional__member--details{
    padding: 3.5rem 3.2rem 3.2rem;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    height: 100%;
  }

  .top-section[data-section="professionals"] .professional__member--title{
    margin-top: 1.1rem;
    font-size: 1.9rem;
    letter-spacing: 0;
    line-height: 1.55;
  }

  .top-section[data-section="professionals"] .professional__member--about{
    margin-top: 2.1rem;
    padding-top: 2rem;
    line-height: 1.95;
  }

  .top-section[data-section="professionals"] .professional__member--info{
    margin-top: 2.6rem;
    align-self: end;
  }
}

.top-section[data-section="success-stories"]{
  border-top: 1px solid var(--color-white);
  background-color: #f9f9fa;
}

.top-section[data-section="success-stories"] .top-section__inner{
  padding-top: 10rem;
  padding-inline: 0;
}

.top-section[data-section="success-stories"] .top-section__heading{
  padding-inline: 3.2rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

.top-section[data-section="success-stories"] .top-section__heading--ja{
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.45rem;
}

.top-section[data-section="success-stories"] .top-section__lead{
  padding-inline: 3.2rem;
  margin-top: 1.6rem;
}

.top-section[data-section="success-stories"] .top-section__content{
  margin-top: 2.5rem;
}

.top-section[data-section="success-stories"] .stories-slide__navigation{
  padding-inline: 3.2rem;
  display: grid;
  grid-template-columns: repeat(2, 4.4rem);
  gap: 1.2rem;
}

.top-section[data-section="success-stories"] .stories-slider__navigation{
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  border: 1px solid var(--color-main);
}

.top-section[data-section="success-stories"] .stories-slider__navigation :where(svg){
  width: 1.8rem;
  height: auto;
}

.top-section[data-section="success-stories"] .stories-wrapper{
  margin-top: 4.8rem;
  max-width: 100vw;
}

.top-section[data-section="success-stories"] .swiper{
  padding-inline: 3.2rem;
}

.top-section[data-section="success-stories"] .swiper-slide{
  width: 28.6rem;
}

.top-section[data-section="success-stories"] .stories-slider__pagination{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.top-section[data-section="success-stories"] .swiper-pagination-bullet{
  margin: 0;
  width: 0.8rem;
  height: 0.2rem;
  opacity: 1;
  background-color: #E2E2E3;
  border-radius: 0;
  transition: width var(--transition-default);
}

.top-section[data-section="success-stories"] .swiper-pagination-bullet-active{
  width: 2.4rem;
  background-color: var(--color-accent);
}

.top-section[data-section="success-stories"] .stories-slide__item{
  text-decoration: none;
}

.top-section[data-section="success-stories"] .stories-slide__image{
  border: 1px solid #c8c8c8;
}

.top-section[data-section="success-stories"] .stories-slide__image :where(img){
  aspect-ratio: 286/192;
  object-fit: contain;
}

.top-section[data-section="success-stories"] .stories-slide__number{
  margin-top: 2.4rem;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.55rem;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-accent);
}

.top-section[data-section="success-stories"] .stories-slide__heading{
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05rem;
  line-height: normal;
}

.top-section[data-section="success-stories"] .stories-slide__description{
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.02rem;
  line-height: 2;
}

.top-section[data-section="success-stories"] .c-button--primary{
  margin: 4.8rem auto 0;
  padding-inline: 0;
  padding-block: 1.3rem;
  display: flex;
  width: 25.8rem;
  font-size: 1.3rem;
  letter-spacing: 0.34rem;
  text-transform: uppercase;
}

@media (min-width: 768px){
  .top-section[data-section="success-stories"] .top-section__inner{
    padding-top: 11.6rem;
    padding-bottom: 11rem;
  }

  .top-section[data-section="success-stories"] .top-section__heading,
  .top-section[data-section="success-stories"] .top-section__lead,
  .top-section[data-section="success-stories"] .stories-slide__navigation,
  .top-section[data-section="success-stories"] .swiper{
    padding-inline: 0;
  }

  .top-section[data-section="success-stories"] .top-section__heading--ja{
    font-size: 4rem;
    letter-spacing: 0.77rem;
  }

  .top-section[data-section="success-stories"] .top-section__lead{
    margin-top: 2.6rem;
  }

  .top-section[data-section="success-stories"] .top-section__content{
    margin-top: 5.8rem;
    position: relative;
    overflow: visible;
  }

  .top-section[data-section="success-stories"] .stories-slide__navigation{
    position: absolute;
    right: 0;
    top: -10rem;
  }

  .top-section[data-section="success-stories"] .stories-slide__image{
    border: none;
  }

  .top-section[data-section="success-stories"] .stories-slide__image :where(img){
    aspect-ratio: 349/196;
  }

  .top-section[data-section="success-stories"] .stories-slide__number{
    letter-spacing: 0.3rem;
  }

  .top-section[data-section="success-stories"] .stories-slide__heading {
    margin-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .top-section[data-section="success-stories"] .stories-slide__description{
    margin-top: 1.2rem;
    line-height: 1.8461;
  }

  .top-section[data-section="success-stories"] .stories-slide__link{
    margin-top: 1.6rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-en);
    font-size: 1.2rem;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
  }

  .top-section[data-section="success-stories"] .stories-slide__link :where(svg){
    width: 1.4rem;
    height: auto;
  }

  .top-section[data-section="success-stories"] .stories-slider__pagination{
    margin-top: 5rem;
  }

  .top-section[data-section="success-stories"] .c-button--primary{
    padding-block: 1.5rem;
    width: 27rem;
    font-size: 1.2rem;
    letter-spacing: 0.4rem;
  }
}

.top-section[data-section="about"] .top-section__inner{
  padding-bottom: 10rem;
}

.top-section[data-section="about"] .top-section__heading--en{
  letter-spacing: 0.2rem;
}

.top-section[data-section="about"] .top-section__heading--ja{
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.top-section[data-section="about"] .c-top-flag{
  padding: 4.2rem 2.5rem 4.2rem;
}

.top-section[data-section="about"] .c-top-flag__heading--en{
  display: block;
}

.top-section[data-section="about"] .c-top-flag__heading--en::before{
  content: none;
}

.top-section[data-section="about"] .c-top-flag__heading--ja{
  margin-top: 1.4rem;
  font-size: 1.8rem;
  letter-spacing: 0.02rem;
}

.top-section[data-section="about"] .about__column--container{
  gap: 4rem;
}

.top-section[data-section="about"] .about__content--map{
  margin-top: 2rem;
  width: 100%;
  height: auto;
}

.top-section[data-section="about"] .about__content--map :where(iframe){
  width: 100%;
  height: auto;
  aspect-ratio: 324/243;
}

.top-section[data-section="about"] .about__content--detail{
  padding: 3.2rem;
  background-color: var(--color-white);
  border: 1px solid #E6E7EA;
}

.top-section[data-section="about"] .detail__item:nth-of-type(n+2){
  padding-block: 2rem;
  border-top: 1px solid #eeeeef;
}

.top-section[data-section="about"] .detail__item:first-of-type{
  padding-bottom: 2rem;
}

.top-section[data-section="about"] .detail__item{
  display: grid;
  gap: 0.6rem;
}

.top-section[data-section="about"] .detail__item--heading{
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.32rem;
  line-height: normal;
  text-transform: uppercase;
}

.top-section[data-section="about"] .detail__item--text{
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  line-height: 2;
}

.top-section[data-section="about"] .detail__item--text :where(small){
  display: block;
  font-size: 1.2rem;
  line-height: 1.85;
  letter-spacing: 0.14rem;
  color: #8A8F9A;
}

@media (min-width: 768px){
  .top-section[data-section="about"] .top-section__inner{
    padding-bottom: 11.8rem;
  }

  .top-section[data-section="about"] .top-section__heading{
    gap: 1.6rem;
  }

  .top-section[data-section="about"] .top-section__heading--en{
    letter-spacing: 0.5rem;
  }

  .top-section[data-section="about"] .top-section__heading--ja{
    font-size: 4rem;
  }

  .top-section[data-section="about"] .about__column--container{
    gap: 6.5rem;
  }

  .top-section[data-section="about"] .c-top-flag{
    margin-top: 0;
    padding: 4rem;
  }

  .top-section[data-section="about"] .c-top-flag__heading--ja{
    margin-top: 1.5rem;
    font-size: 2.2rem;
    letter-spacing: 0.05rem;
    line-height: 1.9;
  }

  .top-section[data-section="about"] .about__content--feature{
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .top-section[data-section="about"] .about__content--map{
    align-self: end;
  }

  .top-section[data-section="about"] .about__content--detail{
    padding: 4.8rem;
  }

  .top-section[data-section="about"] .detail__item{
    grid-template-columns: 12rem 1fr;
    gap: 1.6rem;
    align-items: baseline;
  }

  .top-section[data-section="about"] .detail__item:first-of-type{
    padding-top: 1.8rem;
  }

  .top-section[data-section="about"] .detail__item:nth-of-type(n+2){
    padding-block: 2.05rem;
  }

  .top-section[data-section="about"] .detail__item:last-of-type{
    padding-bottom: 0;
  }

  .top-section[data-section="about"] .detail__item--heading{
    font-family: var(--font-ja);
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    line-height: 1.5;
  }

  .top-section[data-section="about"] .detail__item--text{
    line-height: 1.8462;
  }
}

.common-section[data-section="contact"]{
  border-top: 1px solid #e2e2e3;
}