@charset "UTF-8";

.wrap {
  max-width: 960px;
  margin: 0 var(--spacing-3);
}

.section__inner {
  padding: var(--spacing-9) 0 96px 0;
  display: flex;
  justify-content: center;

  .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: var(--spacing-7);
  }

  @media screen and (max-width:500px) {
    padding: var(--spacing-5) 0;
    .wrap{
      row-gap: var(--spacing-5);
    }
  }
}

.container-wrapper {
  margin: var(--spacing-10) 0;
  display: flex;
  flex-direction: column;
  row-gap: var(--spacing-6);
}

.rounded {
  border-radius: var(--radius-xxxl);
}

.section-03,
.section-04,
.section-05,
.section-06 {
  background-color: var(--color-white);
}

/* section-01
----------------------------------- */
.section-01 {
  padding-top: calc(120px + var(--header-height));
  display: flex;
  flex-direction: column;
  row-gap: var(--spacing-5);
  align-items: center;

  h1 {
    max-width: 448px;
    width: 100%;
  }
}

/* section-02
----------------------------------- */
.section-02 {
  background-image: url(/10th-anniversary/img/next/section02_bg.png);
  background-repeat: no-repeat;
  background-size: cover;

  .section-02__content {
    display: flex;
    gap: var(--spacing-2);
    align-items: center;
    @media screen and (max-width:590px) {
      flex-direction: column;
    }

    .profile__image {
      max-width: 320px;
      width: 35%;
      @media screen and (max-width:590px) {
        width: 80%;
      }
    }

    .profile {
      background-color: var(--color-white);
      padding: var(--spacing-5) var(--spacing-4);
      max-width: 280px;
      height: fit-content;
      border-radius: var(--radius-counter);
      display: flex;
      flex-direction: column;
      align-items: center;
      row-gap: var(--spacing-2);
      position: relative;

      .profile__name {
        font-size: 20px;
        letter-spacing: 0;
        line-height: 1.2;
      }

      .profile__desc {
        font-weight: 500;
        line-height: 1.4;
      }

      &::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 14px solid #ffffff;
        border-right: 0;
        position: absolute;
        top: 50%;
        transform: translate(50%, -50%);
      }

      &.profile-left::after {
        right: -6px;
        @media screen and (max-width:590px) {
          right: 66%;
          transform: rotate(90deg);
          top: 97%;
        }
      }

      &.profile-right::after {
        left: -13px;
        transform: rotate(180deg);
        @media screen and (max-width:590px) {
          left: 66%;
          transform: rotate(270deg);
          top: -20px;
        }
      }
    }
  }
}

/* section-03
----------------------------------- */
.section-03__content {
  position: relative;
  h3{
    max-width: 350px;
    margin-inline: auto;
    @media screen and (max-width:768px) {
    width: 80%;
    }
    @media screen and (max-width:600px) {
    width: 50%;
    }
  }
  .decoration-img{
    position: absolute;
    top: -31px;
    left: -8%;
    width: 170px;
    height: auto;
    @media screen and (max-width:940px) {
      left: 0;
    }
    @media screen and (max-width:769px) {
      width: 120px;
      top: -40px;
    }
    @media screen and (max-width:500px) {
      width: 80px;
    }
  }
}

/* 
section-04
section-05
----------------------------------- */
.section-04,
.section-05{
  position: relative;
}
.section-04{
  .img-wrap img{
    position: absolute;
    &:nth-child(1){
      top: 116px;
      left: 5%;
      max-width: 170px;
    }
    &:nth-child(2){
      top: 50%;
      left: 14%;
      max-width: 200px;
    }
    &:nth-child(3){
      top: 70px;
      right: 5%;
      max-width: 190px;
    }
    &:nth-child(4){
      top: 52%;
      right: 10%;
      max-width: 250px;
    }
    @media screen and (max-width:1100px) {
    &:nth-child(1){
      top: 150px;
      left: 8%;
      max-width: 100px;
    }
    &:nth-child(2){
      top: 60%;
      left: 14%;
      max-width: 100px;
    }
    &:nth-child(3){
      top: 150px;
      right: 5%;
      max-width: 100px;
    }
    &:nth-child(4){
      top: 60%;
      right: 10%;
      max-width: 150px;
    }
    }
  }
}

.section-05{
  .img-wrap img{
    position: absolute;
    &:nth-child(1){
      top: 147px;
      left: 6%;
      max-width: 200px;
    }
    &:nth-child(2){
      top: 59%;
      left: 11%;
      max-width: 186px;
    }
    &:nth-child(3){
      top: 118px;
      right: 7%;
      max-width: 200px;
    }
    &:nth-child(4){
      top: 57%;
      right: 9%;
      max-width: 220px;
    }
    @media screen and (max-width:1100px) {
    &:nth-child(1){
      top: 147px;
      left: 6%;
      max-width: 100px;
    }
    &:nth-child(2){
      top: 59%;
      left: 11%;
      max-width: 100px;
    }
    &:nth-child(3){
      top: 150px;
      right: 7%;
      max-width: 100px;
    }
    &:nth-child(4){
      top: 57%;
      right: 9%;
      max-width: 100px;
    }
  }
}
}

@media screen and (max-width:768px) {
  .img-wrap{
    display: none;
}
}

.img-sp{
  display: none;
  @media screen and (max-width:768px) {
  display: block;
  img{
    max-width: 400px;
  }
  }
}

/* section-06
----------------------------------- */
.section-06__content {
  display: flex;
  gap: var(--spacing-6);
  @media screen and (max-width:768px) {
    flex-direction: column;
  }

}

.x-wrap {
  background-color: rgba(0, 91, 172, 0.1);
  width: 455px;
  height: 823px;
  padding: var(--spacing-3) var(--spacing-2);
  @media screen and (max-width:1100px) {
    width: 300px;
    flex-wrap: wrap;
  }

  h3 {
    font-size: 26.28px;
    line-height: 21.02px;
    letter-spacing: 0;
    font-weight: bold;
    margin-bottom: 21px;
  }
  .twitter-timeline{
    iframe{
      width: 100% !important;
      height: 736px !important;
      overflow-y: hidden;
    }
  }
}


.parallax_content {
  position: absolute !important;
  top: 18%;
  width: 100%;
  height: 100%;
  z-index: 1 !important;
}

.decoration-01 {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 1770px;
  height: 1965px;
  background-image: url(/10th-anniversary/img/common/bg_decorations-v2.png);
  background-size: 100%;

  &.is-sticky {
    position: fixed !important;
    top: 0;
  }
}