* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --font-noto-sans-jp: 'Noto Sans JP', sans-serif;
  --font-poppins: 'Poppins', sans-serif;

  --weight-thin: 100;
  --weight-extralight: 200;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --weight-black: 900;
}
body {
  font-family: var(--font-noto-sans-jp);
}
#furutani {
  .sp-only {
      display: none;
  }
  .pc-only {
      display: inline;
  }
  .tablet-only {
      display: none;
  }
  .text-adjustment {
    display: none;
  }
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px 0px 0px;
    background-color: rgb(182 37 54 / 90%);
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 99999;
    .logo {
      a {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 36px;
        cursor: pointer;
        img.main-logo {
          width: 104px;
          max-width: 100%;
          opacity: 1;
        }
        img.text-logo{
            width: 202.81px;
            max-width: 100%;
            height: 27.75px;
        }
      }
    }
    nav {
      display: inline-block;
      ul {
        display: flex;
        gap: 30px;
        align-items: center;
        li {
          list-style: none;
          font-family: var(--font-noto-sans-jp);
          a {
            text-decoration: none;
            line-height: 25px;
            color: #fff;
            font-weight: var(--weight-regular);
            font-size: 15px;
            transition: color 0.3s ease;
            &.active {
              color: #DEF871;
            }
            &:hover {
              color: #DEF871;
            }
          }
          &.free-counseling {
            margin: 0 0 -5px 12px;
            a {
              position: relative;
              display: inline-block;
              padding: 18px 25px;
              background-color: #DEF871;
              color: #B62536;
              border-radius: 50px;
              font-size: 16px;
              font-weight: var(--weight-semibold);
              overflow: hidden;
              z-index: 0;
              transition: color 0.3s ease;
              &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: #fff;
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.4s ease;
                z-index: -1;
                border-radius: 50px;
              }
              &:hover::before {
                transform: scaleX(1);
              }
              &:hover {
                color: #B62536;
              }
            }
          }
        }
      }
    }
    .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    span {
      display: block;
      height: 1px;
      background: #fff;
      border-radius: 3px;
    }
  }
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #BD394C;
    transition: right 0.4s ease;
    padding: 60px 37px;
    z-index: 100000;
    text-align: left;
      h3 {
        font-family: var(--font-poppins);
        color: #fff;
        font-size: 24px;
        text-align: center;
        margin-bottom: 45px;
        font-weight: var(--weight-semibold);
        line-height: 43px;
      }
      ul {
        display: flex;
        flex-direction: column;
        gap: 25px;
        list-style: none;
        padding: 0;
        li {
          position: relative;
          border-bottom: 1px solid #ffffff;
          padding-bottom: 25px;
          a {
            color: #fff;
            font-size: 20px;
            text-decoration: none;
            font-weight: var(--weight-regular);
            line-height: 29px;
          }
          &:not(.free-counseling) a::after {
            position: absolute;
            align-items: center;
            right: 0px;
            top: 0px;
            content: '';
            display: inline-block;
            width: 15px;
            height: 24px;
            background-image: url('../img/main-content/image-1/sp-mobile.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center right;
            margin-left: 10px;
            margin-top: 3px;
          }
          &.free-counseling {
            border-bottom: none;
            align-items: center;
            padding-bottom: 10px;
            position: relative;
            &::before {
              position: absolute;
              right: 60px;
              top: 20px;
              content: '';
              display: inline-block;
              width: 15px;
              height: 24px;
              background-image: url('../img/main-content/image-1/sp-mobile.png');
              background-size: contain;
              background-repeat: no-repeat;
              background-position: center;
              margin-right: 10px;
            }
            a {
                display: flex;
                justify-content: space-between;
                color: #fff;
                font-size: 16px;
                text-decoration: none;
                font-weight: 500;
                line-height: 1.5;
                p {
                  width: 150px;
                  display: inline-block;
                }
            }
            a.instagram {
              position: relative;
              cursor: pointer;
              img {
                width: 59px;
                height: 59px;
              }
            }
          }
        }
    }
    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 32px;
      color: #fff;
      cursor: pointer;
    }
    &.open {
      right: 0;
    }
    .close-menu {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #ffffff;
      padding: 17px 78px;
      max-width: 302px;
      border-radius: 30px;
      margin: 51px auto 0;
      button {
        font-size: 18px;
        font-family: var(--font-noto-sans-jp);
        line-height: 27px;
        font-weight: var(--weight-regular);
        color: #B62536;
        background-color: transparent;
        border: none;
      }
    }
    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 32px;
      height: 32px;
      cursor: pointer;
      background-image: url('../img/main-content/image-1/close-humber-menu.png');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 1;
    }
  }
  .banner {
    height: auto;
    background: linear-gradient(to bottom, #FF4056, 40%, #DD3347, #B62536);
    padding-top: 150px;
    padding-bottom: 10px;
    .container {
      position: relative;
      width: 1418px;
      max-width: 100%;
      margin: 0px auto;
      .banner-column {
        position: absolute;
        top: 0px;
        img {
          width: 1302px;
          max-width: 100%;
          mix-blend-mode: multiply;
          opacity: 0.9;
        }
      }
      .wrap-content {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 0 0 30px;
        .baner-title {
          h1 {
            font-family: var(--font-noto-sans-jp);
            font-size: 65px;
            line-height: 85px;
            font-weight: var(--weight-semibold);
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            letter-spacing: -2px;
            margin-bottom: 23px;
            span {
              color: #DEF871;
            }
          }
        }
        .baner-title.sp {
          display: none;
        }
        .slogan {
          flex: 1;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          margin-left: 5%;
          margin-top: -15px;
          width: 100%;
          img.zeruqacademy {
            width: 61%;
            max-width: 100%;
            margin: 10px 0 20px 0;
          }
          .responsive-container {
            padding: 5px 4px;
            text-align: left;
            font-family: var(--font-noto-sans-jp);
            font-weight: var(--weight-bold);
            font-size: 22px;
            line-height: 33px;
            display: inline-block;
            gap: 5px;
            .line {
              padding: 5px 10px;
              line-height: 1.2;
              color: #000;
              /* display: flex;
              flex-wrap: wrap; */
              margin-bottom: 5px;
              span {
                margin: 0px;
              }
              .red-text {
                color: #B62536;
              }
              .black-text-1, .black-text-2{
                color: #000;
                padding: 0;
              }
              .black-text-2 {
                margin-left: -5px;
              }
            }
            .line-1, .line-2  {
              background-color: #DEF871;
              display: inline-block;
            }
          }
           .recommendation {
              display: flex;
              flex-direction: row;
              justify-content: start;
              text-align: center;
              margin-top: 12px;
              position: relative;
              gap: 5px;
              width: 100%;
              padding-bottom: 40px;
              .completely-free,
              .employment-rate,
              .it-experience {
                flex-direction: column;
                display: flex;
                text-align: center;
                align-items: center;
                position: relative;
                transition: transform 0.3s ease;
                &:hover {
                  transform: translateY(8px);
                  img.ranking {
                    filter: none;
                  }
                }
                img.ranking {
                  width: 185px;
                  max-width: 100%;
                  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
                  transition: filter 0.3s ease;
                }
                img.arrow-down {
                  position: absolute;
                  max-width: 100%;
                  bottom: -30px;
                }
                .sp-enable{
                  display: none;
                }
              }
              .cta-button {
                display: none;
              }
            }
        }
        .achievement {
          position: relative;
          flex: 1;
          gap: 10px;
          .banner-image {
            position: relative;
            img.professors {
              width: 100%;
            }
            img.futur-engineer {
              position: absolute;
              bottom: -105px;
              left: 44px;
            }
          }
        }
      }
    }
  }
  .sp-fiex-more {
    display: none;
  }
  .main-wrapper {
    .it-engineer{
      padding-top: 31px;
      display: flex;
      justify-content: center;
      gap: 17.3px;
      background: #B62536;
      position: relative;
      clip-path: polygon(0 0, 100% 0, 100% 55%, 50% 160%, 0 55%);
      &::before {
        content: "";
        position: absolute;
        bottom: -120px;
        left: 0;
        width: 100%;
        height: 182px;
        background: #B62536;
        z-index: -1;
        clip-path: polygon(0 0, 100% 0, 100% 1%, 50% 100%, 0 1%);
      }
      .left, .right {
        display: flex;
        text-align: center;
        align-items: center;
      }
      .left {
        img {
          width: 100%;
        }
      }
      .right {

         .content {
            .pc-display {
              p {
                text-align: center;
                font-size: 40px;
                font-family: var(--font-noto-sans-jp);
                line-height: 58px;
                letter-spacing: -1px;
                font-weight: var(--weight-semibold);
                .white-text {
                  color: #FFFFFF;
                }
                .yellow-green-text {
                  color: #DEF870;
                }
              }
            }
          }
          .sp-display {
            display: none;
          }
      }
    }
    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(206px, 1fr));
      gap: 20px;
      margin: 0 auto;
      width: 1110px;
      max-width: 97%;
      justify-content: center;
      .card {
        position: relative;
        width: 100%;
        max-width: 206px;
        height: 290px;
        border-radius: 30px;
        box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
        margin: 0px auto;
        .card-front,
        .card-back {
          position: absolute;
          inset: 0;
          border-radius: 30px;
          /* display: flex;
          flex-direction: column; */
          transition: opacity 0.3s ease;
          p {
            font-family: var(--font-noto-sans-jp);
            white-space: nowrap;
          }
        }
        .card-front {
          background-color: #FFF2E0;
          align-items: center;
          text-align: center;
          gap: 18px;
          z-index: 2;
          img.point {
            position: absolute;
            top: 14px;
            left: 16px;
          }
          .content {
            height: 100%;
            display: flex;
            flex-direction: column;
            /* justify-content: space-between; */
            align-items: center;
            img:nth-of-type(1) {
              width: 88%;
              aspect-ratio: 1 / 1;
            }
            img {
              padding: 26px 0px 15px 0px;
            }
          }
          img.arrow-more {
            position: absolute;
            bottom: -17.2px;
            right: 6px;
          }
          p {
            font-weight: var(--weight-medium);
            font-size: 20px;
            line-height: 27px;
            color: #B62536;
            padding: 0 0 26px 0;
          }
          .card-subtitle {
            padding-top: 14px;
          }
        }
        .card-front, .card-back {
          transition: all 0.6s;
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          backface-visibility: hidden;
        }
        .card-back {
          background-color: #B62536;
          padding: 20px;
          border: 2px solid #fff;
          transform: rotateY(-180deg);
          p {
            color: #fff;
            padding: 30px 0 0 0;
            font-size: 18px;
            line-height: 28px;
            text-align: left;
            width: 100%;
            white-space: normal;
          }
          img.point-yellow {
            position: absolute;
            top: 14px;
            left: 16px;
          }
          img.diamond-top {
            position: absolute;
            top: 10px;
            right: 10px;
          }
          img.diamond-bottom {
            position: absolute;
            left: 10px;
            bottom: 10px;
          }
        }
      }
      .card:nth-child(1) { margin-top: 0; }
      .card:nth-child(2) { margin-top: -10px; }
      .card:nth-child(3) { margin-top: 25px; }
      .card:nth-child(4) { margin-top: 10px; }
      .card:nth-child(5) { margin-top: -10px; }
      .card:nth-child(6) { margin-top: 10px; }
    }
    .carousel-container {
      display: none;
    }
    .career-choice {
      margin-top: 40px;
      text-align: center;
      h2 {
        margin: 15px 0;
        font-size: 30px;
        line-height: 44px;
        font-family: var(--font-noto-sans-jp);
        font-weight: var(--weight-bold);
        &.highlight {
          line-height: 53px;
          span {
            background: #DEF871;
            padding: 5px 0;
            
            &.stability {
              color: #B62536;
            }
          &.highlight-right {
            padding-right: 10px;
            white-space: nowrap;
          }
          &.highlight-center {
            padding-left: 10px;
          }
          }
        }
      }
      .normal {
        margin-top: 28px;
        color: #B62536;
        letter-spacing: 2px;
      }
    }
    .zerg-academy {
      margin-top: 70px;
      width: 100%;
      text-align: center;
      padding: 20px;
      .title-wrapper {
        margin-bottom: 26px;
        h2 {
          color: #B62536;
          position: relative;
          font-family: var(--font-noto-sans-jp);
          font-size: 32px;
          font-weight: var(--weight-semibold);
        }
      }
      .cards-grid {
        display: flex;
        justify-content: center;
        gap: 16px;
        .card {
          max-width: 100%;
          width: 396px;
          height: 130px;
          position: relative;
          display: flex;
          background-color: #FFF2E0;
          filter: drop-shadow(7px 7px 0 rgba(0,0,0,0.08));
          &::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 32px;
            height: 32px;
            z-index: 1;
            background-color: inherit;
          }
          .card-label {
            background-color: #B62536;
            color: #fff;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            max-width: 100%;
            width: 92px;
            flex-shrink: 0;
            position: relative;
              .number {
                font-size: 50px;
                font-weight: var(--weight-light);
                font-family: var(--font-poppins);
                line-height: 80px;
              }
              img.arrow-double-down {
                position: absolute;
                top: 96px;
              }
          }
          .card-content {
            background-color: #FFF2E0;
            padding: 20px;
            flex-grow: 1;
            text-align: left;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 5px;
            .main-text {
              font-size: 33px;
              font-weight: var(--weight-semibold);
              font-family: var(--font-noto-sans-jp);
              line-height: 49px;
              color: #000;
              display: flex;
              align-items: center;
              justify-content: center;
              .highlight-number {
                font-family: var(--font-poppins);
                font-size: 70px;
                font-weight: var(--weight-semibold);
                color: #B62536;
                line-height: 60px;
              }
              .highlight-text {
                color: #B62536;
                font-size: 35px;
                font-weight: var(--weight-semibold);
                font-family: var(--font-noto-sans-jp);
                line-height: 43px;
                margin-top: 7px;
              }
            }
            .sub-text {
              font-size: 18px;
              font-family: var(--font-noto-sans-jp);
              font-weight: var(--weight-bold);
              color: #B62536;
              letter-spacing: -1px;
              display: flex;
              justify-content: center;
            }
            .main-text.graduate-employment {
              font-size: 22px;
              font-family: var(--font-noto-sans-jp);
              line-height: 28px;
              font-weight: var(--weight-bold);
              .zero {
                font-family: var(--font-poppins);
                font-size: 54px;
                font-weight: var(--weight-semibold);
                color: #B62536;
              }
              .highlight-number {
                letter-spacing: -5px;
              }
              .percentage {
                font-family: var(--font-noto-sans-jp);
                font-size: 35px;
                font-weight: var(--weight-semibold);
                color: #B62536;
                margin-top: 7px;
              }
            }
            .main-text.comprehensive {
              font-size: 30px;
              font-family: var(--font-noto-sans-jp);
              font-weight: var(--weight-semibold);
              line-height: 60px;
              letter-spacing: -3px;
              color: #000;
              display: flex;
              text-align: center;
            }
          }
        }
      }
    }
    .zerg-academy-online {
      margin: 50px auto 0 auto;
      position: relative;
      max-width: 1220px;
      width: 100%;
      background-color: #F2F2F2;
      padding: 30px 30px 40px 30px;
      border-radius: 50px;
      .container {
        margin: 0px auto;
        width: 1015px;
        max-width: 100%;
        .wrap-title {
          display: flex;
          align-items: center;
          gap: 39px;
          margin-bottom: 6px;
          .number {
            font-size: 75px;
            font-weight: var(--weight-thin);
            color: #B62536;
            font-weight: var(--weight-light);
            font-family: var(--font-poppins);
            line-height: 134px;
            letter-spacing: -2px;
          }
          .title {
            font-size: 32px;
            font-weight: var(--weight-bold);
            font-family: var(--font-noto-sans-jp);
            color: #000;
            line-height: 46px;
            .highlight-text {
              color: #B62536;
            }
          }
        }
        .wrap-section-content{
          width: 808px;
          max-width: 100%;
          margin: 0px auto;
          .question {
            display: flex;
            gap: 10px;
            background-color: #ffffff;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 40px;
            position: relative;
            max-width: 100%;
            width: 808px;
            height: 84px;
            .points-interested, .course-completely-free {
              display: flex;
              align-items: center;
              justify-content: center;
              padding: 10px;
              font-weight: var(--weight-medium);
              font-family: var(--font-noto-sans-jp);
              line-height: 23px;
            }
            .points-interested{
              background-color: #000;
              color: #ffffff;
              border-radius: 10px;
              font-size: 16px;
              transition: transform 0.2s;
            }
            .course-completely-free {
              font-size: 28px;
              color: #B62536;
              line-height: 41px;
            }
            .thinking {
              position: absolute;
              right: 34px;
              bottom: 0px;
              max-width: 100%;
              width: 118px;
            }
          }
          .info {
          h3 {
            font-family: var(--font-noto-sans-jp);
            font-size: 22px;
            font-weight: var(--weight-semibold);
            color: #B62536;
            text-align: left;
            margin-bottom: 20px;
            line-height: 30px;
          }
          p {
            font-size: 16px;
            font-family: var(--font-noto-sans-jp);
            font-weight: var(--weight-regular);
            color: #000;
            text-align: left;
            margin: 0 auto;
            line-height: 27px;
            .highlight-text {
              color: #B62536;
              font-weight: var(--weight-semibold);
            }
          }
        }
          .wrap-diagram {
            position: relative;
            margin-top: 26px;
            .main-title {
              h3 {
                text-align: center;
                font-size: 15px;
                font-weight: var(--weight-semibold);
                font-family: var(--font-noto-sans-jp);
                margin-bottom: 9px;
                position: relative;
                line-height: 23px;
              }
              .school-logo {
                max-width: 100%;
                width: 294px;
                height: 60px;
                margin: 0px auto;
                position: relative;
                z-index: 1;
                .main-image {
                  padding: 14px 30px;
                  background-color: #DEF871;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  border-radius: 10px;
                  border: 1px solid #fff;
                  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
                  img {
                    width: 100%;
                  }
                }
                img.sp {
                  display: none;
                }
                .vertical-down-left {
                  width: 127px;
                  height: 88px;
                  position: absolute;
                  top: 20px;
                  left: -100px;
                  z-index: -1;
                }
                .vertical-down-right {
                  width: 87px;
                  height: 110px;
                  position: absolute;
                  top: 10px;
                  right: -90px;
                  z-index: -1;
                }
              }
            }
            .flow-diagram {
              display: flex;
              margin-top: 50px;
              position: relative;
              justify-content: space-between;
              align-items: center;
              .flow-item-left,
              .flow-item-right {
                width: 293px;
                height: 75px;
                background: #B62536;
                border-radius: 10px;
                display: flex;
                text-align: center;
                position: relative;
                z-index: 1;
                border:1px solid #ffffff;
                .skill-support {
                  min-width: 111px;
                  position: absolute;
                  top: -80px;
                  left: 132px;
                  font-family: var(--font-noto-sans-jp);
                  font-size: 18px;
                  line-height: 23px;
                  font-weight: var(--weight-semibold);
                  color: #B62536;
                  z-index: 1;
                }
                .students {
                  width: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: flex-end;
                  margin-right: 84px;
                  p {
                    font-family: var(--font-noto-sans-jp);
                    font-size: 18px;
                    color: #ffffff;
                    line-height: 23px;
                    font-weight: var(--weight-semibold);
                  }
                }
              }
              .wrap-card {
                display: flex;
                gap: 8px;
                flex-direction: column;
                align-items: center;
                position: absolute;
                bottom: -2px;
                left: 12px;
                z-index: 10;
                .speech-bubble {
                  width: 88px;
                  height: 88px;
                  background: #fff;
                  border-radius: 100%;
                  padding: 8px 12px;
                  font-size: 14px;
                  font-family: var(--font-noto-sans-jp);
                  font-weight: var(--weight-medium);
                  line-height: 19px;
                  white-space: nowrap;
                  position: relative;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  &::after {
                    content: "";
                    position: absolute;
                    bottom: -6px;
                    left: 50%;
                    transform: translateX(-50%) rotate(45deg);
                    width: 15px;
                    height: 15px;
                    background-color: #fff;
                    z-index: -1;
                  }
                }
              }
              .flow-item-right {
                .wrap-card {
                  bottom: 5px;
                  left: auto;
                  right: 12px;
                }
                .students {
                  justify-content: flex-start;
                  margin-right: 0;
                  margin-left: 37px;
                }
                .skill-support {
                  top: -55px;
                  left: 50px;
                }
              }
              .find-work {
                font-size: 18px;
                color: #B62536;
                display: flex;
                justify-content: space-between;
                width: 223px;
                height: 37.14px;
                padding: 10px;
                background: #FFF;
                align-items: center;
                font-weight: var(--weight-semibold);
              }
            }
            .no-joining-fees {
              margin-top: 30px;
              width: 100%;
            }
          }
        }
      }
    }
    .zerg-academy-online, .company-founded, .fully-online-curriculum {
      .no-joining-fees, .no-joining-fees-right {
        display: flex;
        position: relative;
        align-items: center;
        gap: 50px;
        width: 93%;
        margin: 0 auto;
        .profile {
          img {
            width: 100%;
          }
        }
        .content {
          display: flex;
          flex-direction: column;
          justify-content: center;
          text-align: center;
          align-items: center;
          position: relative;
          background-color: #ffffff;
          max-width: 100%;
          width: 80%;
          border-radius: 20px;
          padding: 16px 20px;
          p {
            font-family: var(--font-noto-sans-jp);
            font-weight: var(--weight-semibold);
            font-size: clamp(15px, 2vw, 20px);
            position: relative;
            color: #000;
            &.no-fees {
              font-size: clamp(15px, 2vw, 20px);
              color: #B62536;
            }
          }
          img.quote-style-left,
          img.quote-style-right {
            position: absolute;
            width: 32.41px;
            display: block;
          }
          img.quote-style-left {
            left: -20px;
            top: 50px;
          }
          img.quote-style-right {
            right: -20px;
            top: 50px;
          }
          img.quote-style-left-sp,
          img.quote-style-right-sp {
            display: none;
          }
        }
      }
    }
    .zerg-academy-online, .company-founded, .fully-online-curriculum {
      .no-joining-fees-right {
        flex-direction: row-reverse;
      }
      .no-joining-fees-right-3 {
        width: 93%;
      }
    }
    .company-founded {
      margin: 50px auto 0 auto;
      border-radius: 50px;
      background-color: #F2F2F2;
      padding: 40px 0 30px 0;
      max-width: 1220px;
      width: 100%;
        .container {
          margin: 0px auto;
          width: 1015px;
          max-width: 100%;
          .card {
            .wrap-title {
              display: flex;
              align-items: center;
              gap: 39px;
              .number {
                font-size: 75px;
                color: #B62536;
                font-family: var(--font-poppins);
                font-weight: var(--weight-light);
                line-height: 134px;
                letter-spacing: -2px;
              }
              .title {
                font-size: 32px;
                font-weight: var(--weight-bold);
                font-family: var(--font-noto-sans-jp);
                color: #000;
                line-height: 46px;
                .highlight-text {
                  color: #B62536;
                }
              }
            }
            .card-header {
              width: 100%;
              background-color: #fff;
              height: 71px;
              border-radius: 35px;
              display: flex;
              justify-content: center;
              align-items: center;
              border: 1px solid #B62536;
              position: relative;
              margin-top: 15px;
              h4 {
                font-family: var(--font-noto-sans-jp);
                font-weight: var(--weight-semibold);
                font-size: 24px;
                color: #B62536;
              }
            }
            .card-header .it-company {
                margin-top: 50px;
              }
            .card-body {
                position: relative;
                width: 866px;
                max-width: 100%;
                margin: 43px auto;
                display: block;
                .achievement {
                  display: flex;
                  justify-content: center;
                  gap: 40px;
                  margin-bottom: 30px;
                  .item {
                    width: 262px;
                    max-width: 100%;
                    aspect-ratio: 1 / 1;
                    border-radius: 50%;
                    background: linear-gradient(to bottom, #FF4056, #DD3347, #B62536);
                    box-shadow: 10px 10px 13px rgba(0, 0, 0, 0.15);
                    color: white;
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    border: 2px solid #ffffff;
                    .label {
                      position: relative;
                      display: inline-block;
                      width: 55%;
                      font-size: 20px;
                      font-family: var(--font-noto-sans-jp);
                      font-weight: var(--weight-regular);
                      margin-bottom: 5px;
                      line-height: 28px;
                      /* padding: 0 5px; */
                      letter-spacing: -1px;
                      .highlight {
                        color: #DEF871;
                      }
                      &::before,
                      &::after {
                        content: "";
                        position: absolute;
                        left: 0;
                        right: 0;
                        height: 1px;
                        background: white;
                      }
                      &::before {
                        top: -8px;
                      }
                      &::after {
                        bottom: -8px;
                      }
                    }
                    .rate {
                      font-size: 78px;
                      font-weight: var(--weight-semibold);
                      font-family: var(--font-poppins);
                      line-height: 88px;
                      letter-spacing: -4px;
                      text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.1);
                      padding-top: 8px;
                      .dot-number {
                        font-size: 50px;
                        font-weight: var(--weight-semibold);
                        font-family: var(--font-poppins);
                        letter-spacing: 2px;
                      }
                      .percentage {
                        font-family: var(--font-noto-sans-jp);
                        font-size: 35px;
                        line-height: 43px;
                        font-weight: var(--weight-regular);
                        letter-spacing: 1px;
                      }
                    }
                    .description {
                      font-size: 18px;
                      font-family: var(--font-noto-sans-jp);
                      color: #DEF871;
                      line-height: 24px;
                      margin-top: -15px;
                      white-space: nowrap;
                      letter-spacing: -1px;
                      padding-top: 8px;
                    }
                  }
                }
                .wrapper-title {
                  background-color: #B62536;
                  width: 92%;
                  border-radius: 25px;
                  margin: 0px auto;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  margin-top: 40px;
                  color: #ffffff;
                  padding: 10px 26px;
                  font-size: 20px;
                  .highlight {
                    color: #DEF871;
                    font-size: 20px;
                  }
                  p {
                    font-size: 20px;
                  }
                }
              .partnerships-companies {
                position: relative;
                width: 706px;
                max-width: 100%;
                height: 242px;
                margin: 30px auto 42px auto;
                .circle-left,
                .circle-right {
                  width: 35.2%;
                  aspect-ratio: 1 / 1;
                  background-color: #ffffff;
                  border-radius: 50%;
                  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                  display: flex;
                  flex-direction: column;
                  justify-content: center;
                  text-align: center;
                  padding: 20px;
                  position: absolute;
                  top: 50%;
                  transform: translateY(-50%);
                  z-index: 1;
                }
                .circle-left {
                  left: 0;
                }
                .circle-right {
                  right: 0;
                }
                .circle-content {
                  position: relative;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  h2 {
                    font-family: var(--font-noto-sans-jp);
                    font-weight: var(--weight-semibold);
                    color: #000;
                    font-size: clamp(13px, 2vw, 20px);
                    line-height: 18px;
                    position: absolute;
                    bottom: 50px;
                  }
                  img.company-building {
                    position: absolute;
                    top: -20px;
                  }
                  img.furutani-logo {
                    position: absolute;
                    top: -10px;
                  }
                  img.company-building {
                    width: 52%;
                  }
                  img.furutani-logo {
                    width: 95%;
                  }
                }
                .center-content {
                  position: absolute;
                  top: 56%;
                  left: 50%;
                  transform: translate(-50%, -50%);
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  text-align: center;
                  .text-top {
                    font-size: 20px;
                    font-family: var(--font-noto-sans-jp);
                    font-weight: var(--weight-semibold);
                    color: #B62536;
                    line-height: 28px;
                  }
                  .text-bottom {
                    font-size: 15px;
                    font-family: var(--font-noto-sans-jp);
                    font-weight: var(--weight-regular);
                    color: #000;
                    line-height: 23px;
                    text-align: left;
                  }
                  .return-arrow {
                    z-index: 0;
                    img.return-arrow-pc {
                      width: 100%;
                      margin: 10px 0;
                    }
                    img.return-arrow-sp {
                      display: none;
                    }
                  }
                }
              }
              .wrap-card {
                display: flex;
                flex-direction: row;
                gap: 30px;
                width: 750px;
                max-width: 100%;
                margin: 0px auto;
                margin-top: 40px;
                padding-bottom: 40px;
                text-align: center;
                .card-item {
                  display: flex;
                  flex-direction: column;
                  background-color: #ffffff;
                  border-radius: 15px;
                  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.1);
                  h2 {
                    font-family: var(--font-noto-sans-jp);
                    font-weight: var(--weight-medium);
                    font-size: clamp(16px, 2vw, 18px);
                    line-height: 26px;
                    margin: 8px 0 8px 0;
                    .highlight {
                      color: #B62536;
                    }
                  }
                  img {
                    width: 100%;
                  }
                }
              }
              .office-worker {
                width: 808px;
                max-width: 100%;
                background-color: #fff;
                padding: 38px 37px 42px 37px;
                border: 1px solid #B62536;
                position: relative;
                margin: 36px auto 0 auto;
                .content {
                  display: flex;
                  align-items: flex-start;
                  gap: 20px;
                  margin-bottom: 34px;
                  .text-content {
                    flex: 1;
                    font-size: 14px;
                    line-height: 1.6;
                    h2 {
                      margin-bottom: 20px;
                      line-height: 20px;
                      .highlight {
                        font-family: var(--font-noto-sans-jp);
                        font-weight: var(--weight-bold);
                        color: #B62536;
                        line-height: 30px;
                      }
                    }
                    p {
                      font-family: var(--font-noto-sans-jp);
                      font-weight: var(--weight-regular);
                      font-size: 15px;
                      line-height: 23px;
                      color: #000;
                      padding-right: 20px;
                    }
                  }
                  .office {
                    flex: 1;
                    text-align: right;
                    img {
                      width: 100%;
                      height: auto;
                      border-radius: 8px;
                    }
                  }
                }
                .info-section {
                  .header-line {
                    width: 731px;
                    max-width: 100%;
                    background-color: #fff;
                    .wrap-header {
                      display: flex;
                      align-items: center;
                      font-size: 24px;
                      color: #333;
                      gap: 7px;
                      .logo {
                        img {
                          width: 165.58px;
                        }
                      }
                      .label {
                        white-space: nowrap;
                        font-size: 15px;
                        font-weight: var(--weight-semibold);
                        font-family: var(--font-noto-sans-jp);
                      }
                      .line {
                        flex-grow: 1;
                        height: 1px;
                        background-color: #B62536;
                        margin-left: 10px;
                      }
                    }
                  }
                  .company-details {
                    width: 734px;
                    max-width: 100%;
                    margin: 10px auto;
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;
                    align-items: center;
                    .furutani-lower-logo {
                      display: flex;
                      flex-direction: column;
                      margin: 20px 0 0 20px;
                      text-align: center;
                      img {
                        width: 235px;
                        max-width: 100%;
                        height: auto;
                        margin-bottom: 10px;
                      }
                      p {
                        font-weight: bold;
                        font-size: 1em;
                        margin: 0;
                      }
                    }
                    .details-list-new {
                      display: grid;
                      grid-template-columns: 85px 1fr;
                      row-gap: 1px;
                      column-gap: 20px;
                      width: 100%;
                      .item,
                      .details-item {
                        display: contents;
                      }
                      .label,
                      .details-label {
                        font-weight: var(--weight-regular);
                        color: #333;
                        text-align: left;
                      }
                      .details-value {
                        color: #555;
                        text-align: left;
                      }
                    }
                  }
                }
                .vew-more {
                  position: absolute;
                  bottom: -28px;
                  text-align: center;
                  margin-top: 20px;
                  transform: translateX(-50%);
                  left: 50%;
                  a {
                    position: relative;
                    display: inline-block;
                    padding: 12px 30px;
                    background-color: #B62536;
                    color: #fff;
                    text-decoration: none;
                    border: #B62536 1px solid;
                    border-radius: 25px;
                    font-size: 16px;
                    font-weight: var(--weight-medium);
                    overflow: hidden;
                    z-index: 0;
                    transition: color 0.3s ease;
                      &::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background-color: #fff;
                        transform: scaleX(0);
                        transform-origin: left;
                        transition: transform 0.4s ease;
                        z-index: -1;
                        border-radius: 25px;
                      }
                    
                    }
                  }
                }
              }
              }
          }
        }
    }
    .fully-online-curriculum {
      margin: 50px auto 0 auto;
      max-width: 1220px;
      width: 100%;
      border-radius: 50px;
      background-color: #F2F2F2;
      padding:30px 0 47px 0;
      .container {
        margin: 0px auto;
        width: 1015px;
        max-width: 100%;
        .card {
          position: relative;
          .wrap-title {
            display: flex;
            align-items: center;
            gap: 39px;
            .number {
              font-size: 75px;
              color: #B62536;
              font-family: var(--font-poppins);
              font-weight: var(--weight-light);
              line-height: 134px;
              letter-spacing: -2px;
            }
            .title {
              font-size: clamp(30px, 2vw, 32px);
              font-weight: var(--weight-bold);
              font-family: var(--font-noto-sans-jp);
              color: #000;
              line-height: 47px;
              .highlight-text {
                color: #B62536;
              }
            }
          }
          .remote-course {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-end;
            align-items: center;
            gap: 66.3px;
            width: 882px;
            max-width: 100%;
            margin-left: auto;
            margin-top: -40px;
            .intro {
              width: 495px;
              max-width: 100%;
              p {
                font-family: var(--font-noto-sans-jp);
                font-weight: var(--weight-regular);
                font-size: 16px;
                line-height: 30px;
                .highlight-text {
                  color: #B62536;
                  font-weight: var(--weight-semibold);
                }
              }
            }
            .anywhere-access {
              flex: 0 0 316.75px;
              width: 316.75px;
              max-width: 100%;
              img {
                width: 100%;
                height: auto;
                display: block;
              }
            }
          }
          .no-joining-fees {
            width: 808px;
            max-width: 100%;
            margin: 0px auto;
          }
          .no-joining-fees-2{
            width: 94%;
            margin: 0px 0px 0px auto;
          }
          .schedule{
            margin: 18px auto 52px auto;
          }
        .curriculum {
          width: 1014px;
          max-width: 100%;
          box-sizing: border-box;
          .curriculum-pc {
            .curriculum-row {
              display: flex;
              align-items: stretch;
              margin-bottom: 10px;
              gap: 10px;
              .curriculum-label.hidden {
                background-color: transparent;
                border: none;
                width: 114px;
              }
              &:last-child {
                margin-bottom: 0;
              }
              .curriculum-label {
                background-color: #FFF2E0;
                color: #000;
                padding: 15px 10px;
                border: 1px solid #B62536;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                font-size: 15px;
                font-weight: var(--weight-semibold);
                flex-shrink: 0;
                line-height: 21px;
                width: 114px;
            }
              .curriculum-header {
                display: flex;
                justify-content: space-around;
                width: 100%;
                gap: 10px;
                .month-item {
                  position: relative;
                  flex: 1;
                  font-weight: bold;
                  color: #B62536;
                  position: relative;
                  .month {
                    position: absolute;
                    display: flex;
                    left: 50%;
                    transform: translateX(-50%);
                    top: 10px;
                  }
                  img {
                    width: 100%;
                  }
                }
              }
              .course-track {
                display: flex;
                justify-content: space-around;
                width: 100%;
                gap: 10px;
                .course-block {
                  flex: 1;
                  background: linear-gradient(to bottom, #FF4056, #DD3347, #B62536);
                  text-align: center;
                  padding: 15px 20px;
                  color: #333;
                  box-sizing: border-box;
                  .course-heading {
                    font-size: 22px;
                    font-weight: var(--weight-semibold);
                    font-family: var(--font-noto-sans-jp);
                    line-height: 23px;
                    color: #000;
                    margin-bottom: 16px;
                    padding: 6px;
                    background-color: #fff;
                    border-radius: 10px;
                    display: inline-block;
                    width: 100%;
                    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
                  }
                  .course-description {
                    h2 {
                      &.course-title {
                        font-size: clamp(16px, 2vw, 18px);
                        font-family: var(--font-noto-sans-jp);
                        font-weight: var(--weight-medium);
                        line-height: 23px;
                        color: #DEF871;
                        margin-bottom: 10px;
                        position: relative;
                        &::after {
                          content: "";
                          display: block;
                          height: 2px;
                          margin-top: 10px;
                          background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
                          background-size: 6px 2px;
                          background-repeat: repeat-x;
                          background-position: left center;
                        }
                      }
                    }
                    p {
                      font-size: 15px;
                      font-family: var(--font-noto-sans-jp);
                      font-weight: var(--weight-regular);
                      line-height: 23px;
                      color: #ffffff;
                      text-align: left;
                    }
                  }
                }
              }
              .shared-learning,
              .career-support {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #ffffff;
                p {
                  padding: 23px 37px;
                  font-size: clamp(16px, 2vw, 18px);
                  line-height: 28px;
                  font-weight: var(--weight-semibold);
                  font-family: var(--font-noto-sans-jp);
                  color: #B62536;
                }
              }
              .shared-learning {
                flex-wrap: wrap;
                text-align: center;
              }
              .shared-learning span {
                margin: 0 5px;
              }
              .career-support {
                flex-direction: column;
                text-align: center;
              }
            }
          }
          .curriculum-sp {
            display: none;
          }
          .wrap-joining{
            margin: 60px 0px;
          }
          .case-study {
            position: relative;
            display: flex;
            width: 918px;
            max-width: 100%;
            gap: 47px;
            flex-wrap: wrap;
            margin: 0px auto;
            .project-content {
              flex: 1;
              width: 40%;
              h2, h3 {
                font-family: var(--font-noto-sans-jp);
                font-weight: var(--weight-semibold);
                font-size: 20px;
              }
              .student-showcase {
                background-color: #B62536;
                padding: 6px 22px;
                border-radius: 10px;
                display: inline-block;
                margin-bottom: 25px;
                h3 {
                  line-height: 27px;
                  color: #ffffff;
                  font-weight: var(--weight-regular);
                }
              }
              h2 {
                color: #B62536;
                font-size: 20px;
                font-weight: var(--weight-semibold);
                margin: 0 0 15px 0;
                line-height: 27px;
              }
              p.description {
                font-size: clamp(15px, 1.5vw, 16px);
                font-family: var(--font-noto-sans-jp);
                font-weight: var(--weight-regular);
                color: #000;
                line-height: 27px;
              }
            }
            .video-tutorial {
              width: 515px;
              height: 290px;
              position: relative;
              overflow: hidden;
              iframe {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                transform: translate(-50%, -50%);
                border: none;
              }
            }
          }
        }
        }
      }
    }
  }

.banner-school {
  width: 1220px;
  max-width: 90%;
  height: 158px;
  margin: 97px auto 0px;
  background: linear-gradient(to bottom, #FF4056, #DD3347, #B62536);
  border-radius: 20px;
  position: relative;
  color: #FFFFFF;
  padding: 30px;
  .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
    .text-and-logo {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      z-index: 7;
      .tagline {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 5px;
        letter-spacing: 1px;
      }
      .logo-sub-text {
        font-size: 1rem;
        font-weight: bold;
        margin-top: 5px;
        margin: 5px auto 0px;
      }
      img {
        width: 436.56px;
      }
    }
    .stats-section {
      width: 402.86px;
      max-width: 100%;
      /* display: flex; */
      .sp-enable{
        display: none;
      }
      img {
        width: 100%;
      }
    }
    .characters {
      /* width: 387px; */
      width: 33.4%;
      max-width: 100%;
      position: absolute;
      top: -115px;
      z-index: 5;
      left: 48%;
      transform: translateX(-50%);
      img {
        width: 100%;
      }
    }
  }
  .cta-button {
    width: 396px;
    height: 70px;
    max-width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #DEF871;
    padding: 21px 58px;
    border-radius: 50px;
    font-size: 20px;
    font-family: var(--font-noto-sans-jp);
    font-weight: var(--weight-semibold);
    color: #B62536;
    white-space: nowrap;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    z-index: 6;
    text-decoration: none;
    bottom: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    p {
      margin: 0 5px;
      transition: color 0.3s ease, transform 0.3s ease 0.3s;
      display: inline-block;
      position: relative;
      a {
        color: #B62536;
        text-decoration: none;
      }
    }
    p::after {
      content: "";
      display: inline-block;
      position: absolute;
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
      top: 5px;
      right: -30px;
      background-image: url(../img/main-content/image-1/button-arrow-right-red.png);
      background-position: center;
      background-size: contain;
    }
    p::before {
      content: "";
      display: inline-block;
      position: absolute;
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
      top: 5px;
      left: -30px;
      background-image: url(../img/main-content/image-1/button-arrow-left-red.png);
      background-position: center;
      background-size: contain;
    }
    .arrow-fix::after,.arrow-fix::before {
      top: 2px;
    }
  } 
}
.counseling-form,
.items-to-confirm,
.thanks-text,
.frequently-questions,
.steps-course,
.voices-engineers,
.it-company {
  .voicse-title {
      margin-bottom: -65px;
  }
  .card-title {
    text-align: center;
    small {
      font-size: 20px;
      line-height: 27px;
      font-weight: var(--weight-semibold);
    }
    h2 {
      font-size: 32px;
      font-weight: bold;
      line-height: 50px;
      margin-top: 13px;
      margin-bottom: 41px;
      span {
        color: #B62536;
      }
    }
  }
}
.it-company {
  font-family: var(--font-noto-sans-jp);
  font-size: 15px;
  line-height: 21px;
  text-align: center;
  color: #000;
  overflow: hidden;
  .banner-school {
    margin-top: 126px;
    margin-bottom: 100px;
  }
  .container {
    width: 1012px;
    max-width: 95%;
    margin: auto;
  }
  .card {
    .card-title {
      h2 {
        font-size: clamp(30px, 2vw, 32px);
        font-weight: bold;
        line-height: 50px;
        margin-bottom: 30px;
        span {
          color: #B62536;
        }
      }
    }
    .card-body {
      .block-table {
        table {
          thead {
            background: #FFF2E0;
            tr {
              th {
                font-size: 18px;
                line-height: 0px;
                color: #B62536;
                width: 190px;
                height: 63px;
              }
              th.th-01 {
                width: 166px;
                background: #F2F2F2;
              }
              th.th-02 {
                width: 276px;
                padding: 15.9px 23.8px;
                border-top: 3px solid #B62536;
              background: linear-gradient(to bottom, #FF4056, #DD3347, #B62536);
                position: relative;
                img {
                  width: 100%;
                }
                &::after {
                  content: "";
                  height: 105%;
                  width: 3px;
                  background: #B62536;
                  position: absolute;
                  right: -3px;
                  top: -3px;
                }
                &::before {
                  content: "";
                  height: 110%;
                  width: 3px;
                  background: #B62536;
                  position: absolute;
                  left: -3px;
                  top: -3px;
                }
              }
            }
          }
          tbody {
            tr {
              background: #F2F2F2;
              height: 61px;
              th {
                font-weight: bold;
              }
              td {
                font-weight: var(--weight-semibold);
              }
              td.td-cus-bg {
                background: #DEF871;
                color: #B62536;
                position: relative;
                font-weight: var(--weight-semibold);
                font-size: clamp(16px, 2vw, 18px);
                &::after {
                  content: "";
                  height: 105%;
                  width: 3px;
                  background: #B62536;
                  position: absolute;
                  right: -3px;
                  top: -3px;
                }
                &::before {
                  content: "";
                  height: 105%;
                  width: 3px;
                  background: #B62536;
                  position: absolute;
                  left: -3px;
                  top: -3px;
                }
              }
            }
            tr:nth-of-type(even) {
              background: #E5E5E5;
            }
            tr:last-child {
              td.td-cus-bg {
                border-bottom: 3px solid #B62536;
                &::after {
                  height: 110%;
                }
                &::before {
                  height: 110%;
                }
              }
            }
          }
        }
      }
    }
  }
}
.voices-engineers {
  font-size: 15px;
  color: #000;
  line-height: 23px;
  margin-top: 70px;
  .main-slide {
    font-family: var(--font-noto-sans-jp);
    font-size: 15px;
    background: #FFF2E0;
    padding: 61px 0 30px 0;
    color: #000;
    line-height: 23px;
    .block-slide {
      .carousel-content-sp {
        display: none;
      }
      .carousel-content {
        overflow: hidden;
        position: relative;
        cursor: pointer;
        .carousel-items {
          width: 100%;
          display: flex;
          justify-content: center;
          gap: 10px;
          transition: transform 0.5s ease;
          -webkit-overflow-scrolling: touch;
          touch-action: pan-y;
        }
      }
      .item {
        width: 645px;
        max-width: 100%;
        .card {
          display: flex;
          gap: 20px;
          margin-right: 30px;
          .card-image {
            width: 293px;
            max-width: 100%;
            .main-image {
              width: 297px;
              max-width: 100%;
              img {
                width: 100%;
              }
            }
            .sp {
              display: none;
            }
            .group-01-bage {
              width: 250px;
              max-width: 100%;
              margin: auto;
              background: #FFF;
              border-radius: 30px 10px 10px 30px;
              align-content: center;
              margin-top: -25px;
              position: relative;
              .main-block-badge {
                display: flex;
                position: relative;
                align-items: center;
                justify-content: space-between;
                padding-right: 16px;
                span.badge {
                  font-family: var(--font-poppins);
                  font-size: 13px;
                  color: #FFF;
                  background: #B62536;
                  width: 38px;
                  height: 37px;
                  border-radius: 50%;
                  text-align: center;
                  align-content: center;
                  display: inline-block;
                }
                span.title {
                  font-size: 14px;
                  line-height: 24px;
                  font-weight: var(--weight-medium);
                }
                span.price {
                  font-size: 26px;
                  line-height: 24px;
                  font-weight: bold;
                  font-family: var(--font-poppins);
                  display: flex;
                }
                span.currency {
                  font-size: 14px;
                  line-height: 24px;
                  font-weight: var(--weight-medium);
                  font-family: var(--font-noto-sans-jp);
                }
                img.icon {
                  width: 15px;
                  transform: rotate(90deg);
                }
              }
            }
            .group-02-bage {
              width: 251px;
              max-width: 100%;
              margin: auto;
              display: flex;
              background: #B62536;
              border-radius: 10px;
              padding: 5px 0 5px 6px;
              margin-top: 9px;
              p {
                display: flex;
                align-items: center;
                span.badge {
                  font-family: var(--font-poppins);
                  font-size: 18px;
                  color: #B62536;
                  background: #DEF871;
                  font-weight: var(--weight-extrabold);
                  width: 40px;
                  height: 40px;
                  line-height: 31px;
                  border-radius: 50%;
                  text-align: center;
                  align-content: center;
                  display: inline-block;
                }
                span.title {
                  margin-left: 10px;
                  font-size: 14px;
                  line-height: 24px;
                  color: #FFF;
                  font-weight: var(--weight-medium);
                }
                span.price {
                  color: #DEF871;
                  font-size: 35px;
                  line-height: 36px;
                  font-weight: bold;
                  margin-left: 8px;
                  font-family: var(--font-poppins);
                  display: flex;
                  align-items: center;
                }
                span.currency {
                  font-size: 21px;
                  line-height: 36px;
                  font-family: var(--font-noto-sans-jp);
                  font-weight: var(--weight-medium);
                }
              }
            }
          }
          .card-body {
            width: 302px;
            max-width: 100%;
            h3 {
              font-size: 20px;
              color: #B62536;
              line-height: 27px;
              font-weight: var(--weight-semibold);;
              margin-bottom: 15px;
            }
            h4.sub-title {
              font-size: 16px;
              line-height: 27px;
              color: #B62536;
              margin-bottom: 11px;
              font-weight: var(--weight-semibold);
            }
          }
        }
      }
    }
    .block-reviews-social {
      margin-top: 28px;
      .sns-title{
        margin: 0 0 30px 0;
      }
      .slide-reviews-social {
        .carousel-content {
          width: 100%;
          overflow: hidden;
          position: relative;
          cursor: pointer;
          .carousel-items {
            display: flex;
            gap: 10px;
            justify-content: center;
            transition: transform 0.5s ease;
          }
        }
        .item {
          .card {
            width: 310px;
            height: 100%;
            padding: 20px;
            border-radius: 30px;
            background: #FFF;
            .card-image {
              display: flex;
              column-gap: 28px;
              align-items: center;
              .main-image {
                width: 100px;
                height: 100px;
                border-radius: 50%;
                img {
                  width: 100%;
                }
              }
              .block-text-title {
                h3 {
                  color: #B62536;
                  font-size: 16px;
                  line-height: 27px;
                  font-weight: var(--weight-semibold);
                }
              }
            }
            .card-body {
              margin-top: 10px;
              p {
                font-size: 14px;
                font-weight: var(--weight-regular);
                line-height: 21px;
              }
            }
          }
        }
        .item:last-child {
          margin-right: 0px;
        }
      }
    }
  }
  .banner-school {
    margin-top: 146px;
  }
}
.steps-course {
  margin-top: 100px;
  .container {
    width: 1041px;
    max-width: 90%;
    margin: auto;
  }
  .card-title {
    h2 {
      color: #B62536;
      margin-bottom: 20px;
    }
  }
  .circle-main {
    display: flex;
    gap: 51px;
    .card {
      position: relative;
      .card-body {
        width: 222px;
        height: 222px;
        border-radius: 50%;
        background: linear-gradient(to bottom, #F8F871 0%, #ECF871 60%, #D2F445 100%);        text-align: center;
        padding: 20px;
        box-shadow: 0px 5px 0px 0px #00000010;
        .badge {
          width: 42px;
          height: 42px;
          margin: auto;
          border-radius: 50%;
          background: #B62536;
          margin-bottom: 8px;
          p.number {
            font-family: var(--font-poppins);
            font-size: 22px;
            font-weight: var(--weight-semibold);
            line-height: 42px;
            color: #FFF;
          }
        }
        .description {
          h3 {
            font-size: 20px;
            line-height: 29px;
            color: #B62536;
            font-weight: var(--weight-semibold);
            margin-bottom: 2px;
          }
          p {
            font-size: 15px;
            line-height: 23px;
            font-weight: var(--weight-regular);
          }
          .sp-enable{
            display: none;
          }
        }
      }
      .card-body::after {
        content: '';
        background-image: url('../img/main-content/icon/arrow.png');
        background-size: cover;
        width: 35px;
        height: 41px;
        display: block;
        position: absolute;
        bottom: 50%;
        transform: translateY(50%);
        left: -43px;
      }
    }
    .card:nth-child(even) {
      .card-body {
        background: #F2F2F2;
        box-shadow: 0px 5px 0px 0px #00000014;
      }
    }
    .card:first-child {
      .card-body::after {
        display: none;
      }
    }
  }
  .block-video {
    width: 808px;
    max-width: 100%;
    margin: auto;
    margin-top: 70px;
    padding-bottom: 26px;
    background: #B62536;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    border-radius: 30px;
    .iframe-title {
      width: 100%;
      background: #82060c;
      padding: 20.8px 20px 26px 20px;
      height: 110px;
      border-radius: 30px 30px 50% 50%;
      margin-bottom: -43px;
      .image-logo {
        display: flex;
        gap: 3px;
        justify-content: center;
        h3 {
          font-size: 20px;
          font-weight: var(--weight-regular);
          line-height: 27px;
          color: #FFF;
          margin-top: 5px;
        }
        img {
          width: 235.6px;
          height: 32.23px;
        }
      }
    }
    .sub-image-video {
      width: 168px;
      height: 187px;
      position: absolute;
      bottom: 6px;
      right: 0;
      img {
        width: 100%;
      }
    }
  }
}
.frequently-questions {
  margin-top: 70px;
  .container {
    width: 868px;
    max-width: 90%;
    margin: auto;
  }
  .card-title {
    h2 {
      color: #B62536;
      margin-bottom: 30px;
    }
  }
  .answers-questions {
    background: #F2F2F2;
    border-radius: 30px;
    padding: 24px 30px 24px 30px;
    margin-bottom: 20px;
    .block-title {
      display: flex;
      column-gap: 18px;
      align-items: center;
      p.a,
      p.q {
        font-size: 30px;
        line-height: 30px;
        font-weight: var(--weight-semibold);
        font-family: var(--font-poppins);
      }
      h4 {
        font-size: 16px;
        color: #B62536;
        line-height: 27px;
        font-weight: var(--weight-semibold);
      }
    }
    .questions {
      display: flex;
      justify-content: space-between;
      border-bottom: 2px dotted #B62536;
      padding-bottom: 10px;
      .btn-answers {
        min-width: 36px;
        height: 36px;
        background: #FFF;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        img {
          width: 13.55px;
          height: 6.51px;
        }
      }
    }
    .answers {
      margin-top: 20px;
      .block-title {
        align-items: flex-start;
        p.a {
          color: #B62536;
        }
        p.description {
          font-size: 15px;
          line-height: 23px;
          font-weight: var(--weight-regular);
        }
      }
    }
  }
  .answers-questions:last-child {
    margin-bottom: 0px;
  }
  .banner-school {
    margin-top: 146px;
  }
}
.counseling-form,.items-to-confirm,.thanks-text {
  margin-top: 100px;
  scroll-margin-top: 120px;
  .card-title {
    width: 550px;
    max-width: 90%;
    margin: auto;
    position: relative;
    &::after {
        content: "";
        position: absolute;
        top: -2px;
        left: 0px;
        width: 1px;
        height: 25%;
        transform: rotate(-45deg);
        border-right: 1px solid #000;
      }
      &::before {
        content: "";
        position: absolute;
        top: -2px;
        right: 0px;
        width: 1px;
        height: 25%;
        transform: rotate(45deg);
        border-right: 1px solid #000;
      }
    small {
      width: 100%;
    }
    h2 {
      margin-bottom: 0px;
    }
    p.sub-title {
      font-size: 14px;
      font-weight: var(--weight-medium);
      line-height: 30px;
      text-align: right;
      width: 94%;
      span {
        color: #B62536;
      }
    }
  }
  .group-form {
    margin-top: -55px;
    padding-top: 109px;
    padding-bottom: 150px;
    background: #FFF2E0;
    .container {
      width: 808px;
      max-width: 80%;
      margin: auto;
    }
    .card {
      .card-row {
        margin-bottom: 24px;
        .card-col {
          display: flex;
          align-items: center;
          .left {
            min-width: 206px;
            max-width: 100%;
            label {
              font-size: 16px;
              line-height: 27px;
              font-weight: var(--weight-medium);
              span {
                font-size: 13px;
                font-weight: var(--weight-semibold);
                color: #B62536;
                margin-left: 10px;
              }
            }
          }
          .right {
            display: flex;
            column-gap: 16px;
            width: 602px;
            max-width: 100%;
            select,
            textarea,
            input {
              font-size: 15px;
              font-weight: var(--weight-regular);
              /* color: #A7A7A7; */
              width: 100%;
              height: 60px;
              padding: 21px 30px 19px 30px;
              border-radius: 20px;
              border: none;
              background: #FFF;
            }
            textarea {
              height: 200px;
              width: 100%;
            }
            input::placeholder,
            textarea::placeholder {
              color: #A7A7A7;
            }
            input[type="text"] {
              color: #000;
            }
            select:focus-visible,
            input:focus-visible,
            textarea:focus-visible {
              border: none;
              outline: none;
            }
            select#residential-area {
              color: #A7A7A7;
            }
            select#residential-area.selected {
              color: #000;
            }
            .phone-input {
              width: 100%;
              display: flex;
              align-items: center;
              background: white;
              border-radius: 20px;
              padding: 0 30px;
              .country-select {
                display: flex;
                align-items: center;
                font-size: 20px;
                /* color: #A7A7A7; */
                font-weight: var(--weight-regular);
                cursor: pointer;
                i {
                  margin: 0 15px 0 18px;
                  font-size: 16px;
                  color: #000;
                }
              }
              .country-code {
                margin-right: 21px;
                font-size: 15px;
                font-weight: var(--weight-regular);
                color: #000;
              }
              input {
                border: none;
                outline: none;
                font-size: 15px;
                font-weight: var(--weight-regular);
                flex: 1;
                padding: 0;
              }
            }
          }
          .block-select {
            width: 293px;
            max-width: 100%;
            position: relative;
            select {
              border: none;
              appearance: none;
              -webkit-appearance: none;
              -moz-appearance: none;
              cursor: pointer;
              position: relative;
              z-index: 1;
            }
            i {
              position: absolute;
              right: 30px;
              top: 50%;
              transform: translateY(-50%);
              z-index: 2;
            }
          }
        }
      }
      .card-row.block-textarea {
        margin-bottom: 60px;
        .card-col {
          align-items: flex-start;
          .left {
            padding-top: 21px;
          }
        }
      }
      .block-policy {
        display: block;
        clear: both;
        /* overflow: hidden; */
        background: #FFF;
        border-radius: 20px;
        height: 80px;
        .checkbox-policy {
          display: flex;
          align-items: center;
          gap: 17px;
          justify-content: center;
          height: 100%;
          border: 1px solid #000;
          border-radius: 20px;
          label {
            font-weight: var(--fa-font-regular);
            font-size: 16px;
            cursor: pointer;
            a {
              color: inherit;
              cursor: pointer;
              background-color: transparent;
            }
            a:hover {
              opacity: 0.6;
            }
            span {
              font-size: 13px;
              font-weight: var(--weight-semibold);
              color: #B62536;
              margin-left: 24px;
            }
          }
          input[type="checkbox"] {
            cursor: pointer;
            position: relative;
            appearance: none;
            min-width: 33px;
            height: 33px;
            border: 1px solid #F2F2F2;
            border-radius: 10px;
            vertical-align: middle;
            background: #F2F2F2;
          }
          input[type="checkbox"]:checked {
            background-color: #154585;
            border-color: #154585;
          }
          input[type="checkbox"]:checked::after {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            content: "✔";
            color: white;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
          }
        }
      }
      .block-recaptcha {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        
        .g-recaptcha {
          transform: scale(0.9);
          transform-origin: center;
        }
        
        .recaptcha-error {
          .error-message {
            color: #B62536;
            font-size: 14px;
            font-weight: var(--weight-semibold);
          }
        }
      }
      .more-action {
        margin-top: 60px;
        .cta-button {
          width: 396px;
          height: 70px;
          max-width: 100%;
          margin: auto;
          background: #DEF871;
          padding: 21px 30px;
          border-radius: 35px;
          border: none;
          font-size: 20px;
          font-family: var(--font-noto-sans-jp);
          font-weight: var(--weight-semibold);
          color: #B62536;
          white-space: nowrap;
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
          text-decoration: none;
          display: flex;
          align-items: center;
          transition: all 0.3s ease;
          justify-content: center;
          cursor: pointer;
          
          &:disabled {
            background: #CCCCCC;
            color: #666666;
            cursor: not-allowed;
            box-shadow: none;
            opacity: 0.6;
          }
          cursor: pointer;
          span {
            margin: 0 10px;
            transition: color 0.3s ease, transform 0.3s ease 0.3s;
            display: inline-block;
            position: absolute;
          }
          span::after {
            content: "";
            display: inline-block;
            position: absolute;
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
            top: 5px;
            right: -130px;
            background-image: url(../img/main-content/image-1/button-arrow-right-red.png);
            background-position: center;
            background-size: contain;
          }
          
          span::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
            top: 5px;
            left: -130px;
            background-image: url(../img/main-content/image-1/button-arrow-left-red.png);
            background-position: center;
            background-size: contain;
          }          
        }
      }
    }
  }
}

footer {
  text-align: center;
  background: linear-gradient(to bottom, #FF4056, #DD3347, #B62536);
  color: #FFF;
  padding: 51px 20px 15px 20px;
  position: relative;
  p.sub-title-logo {
    font-size: 15px;
    font-weight: var(--weight-semibold);
    line-height: 20px;
    margin-bottom: 13.8px;
  }
  .foot-logo {
    width: 396px;
    max-width: 100%;
    margin: 0 auto 22px auto;
    img {
      width: 100%;
    }
  }
  .address {
    width: 420px;
    max-width: 100%;
    margin: auto;
    position: relative;
    p {
      font-size: 14px;
      font-weight: var(--weight-regular);
      line-height: 23px;
      a[href^="tel"] {
        color: inherit !important;
        text-decoration: none !important;
        cursor: pointer;
      }
    }
    .sub-image-insta {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      position: absolute;
      top: 0;
      right: 0;
      img {
        width: 100%;
        cursor: pointer;
        &:hover {
          opacity: 0.8;
        }
      }
    }
  }
  ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 34px;
    li {
      font-size: 14px;
      line-height: 23px;
      list-style: none;
      font-weight: var(--weight-regular);
      a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        transition: color 0.3s ease;
        img {
          margin-left: 5px;
          width: 14px;
        }
        &:hover,
        li &:hover {
          color: #DEF870;
          img {
            filter: brightness(0) saturate(100%) invert(85%) sepia(72%) saturate(392%) hue-rotate(70deg) brightness(1);
          }
        }
      }
    }
  }
  p.copy-right {
    font-size: 12px;
    font-weight: var(--weight-regular);
    line-height: 23px;
    margin-top: 31px;
  }
  .to-top {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #fff;
    padding: 22.7px 22px 16px 22px;
    cursor: pointer;
    width: 80px;
    height: 80px;
    transition: background-color .18s ease, transform .12s ease;
    z-index: 9999;
    &:hover {
      background-color: rgba(255, 255, 255, 0.75);
    }
  }
}
.hidden-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
.animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  &.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.formError {
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.formError .formErrorContent {
  white-space: nowrap !important;
  word-wrap: normal !important;
  word-break: keep-all !important;
  overflow: visible !important;
}

.formError .formErrorArrow {
  flex-shrink: 0;
}

.iti {
  width: 100%;
}
.counseling-form .right > div {
  width: 100%;
  position: relative;
}
.items-to-confirm .right>div {
  width: 100%;
  position: relative;
}
.thanks-text .right>div {
  width: 100%;
  position: relative;
}
.checkbox-policy > div {
  position: relative;
}
.counseling-form .right > div > div {
  top: 0 !important;
  left: 0 !important;
}
.items-to-confirm .right>div>div {
  top: 0 !important;
  left: 0 !important;
}
.thanks-text .right>div>div {
  top: 0 !important;
  left: 0 !important;
}
.checkbox-policy > div .formError {
  top: 0 !important;
  left: -6px !important;
}

.nav-btn svg * {
  pointer-events: none;
}
.nav-btn:focus {
  outline: none;
  box-shadow: none;
}

.confirmation-page {
  width: 100%;
  margin-top: 20px;
}


.confirmation-title {
  padding: 30px 0;
  text-align: center;
}

.confirmation-title h3 {
  margin: 0 0 15px 0;
  color: #B62536;
  font-size: 25px;
  font-weight: 600;
}

.confirmation-title p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.confirmation-details {
  padding: 30px 0;
}

.confirmation-details .detail-row {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #707070;
  align-items: flex-start;
}

.confirmation-details .detail-row:first-child {
  border-top: 1px solid #707070;
}

.confirmation-details .detail-label {
  font-weight: 600;
  min-width: 206px;
  flex-shrink: 0;
  font-size: 16px;
}

.confirmation-details .detail-value {
  color: #000;
  word-break: break-word;
  white-space: pre-wrap;
  font-size: 16px;
  line-height: 1.7;
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
}

.confirmation-page .cta-button {
    width: 396px;
    height: 70px;
    max-width: 100%;
    margin: auto;
    background: #DEF871;
    padding: 21px 30px;
    border-radius: 35px;
    border: none;
    font-size: 20px;
    font-family: var(--font-noto-sans-jp);
    font-weight: var(--weight-semibold);
    color: #B62536;
    white-space: nowrap;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: center;
    cursor: pointer;
}  
.confirmation-page .cta-button p {
  margin: 0 5px;
  transition: color 0.3s ease, transform 0.3s ease 0.3s;
  display: inline-block;
  position: relative;
  a {
    color: #B62536;
    text-decoration: none;
  }
}
.confirmation-page .cta-button p::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  top: 5px;
  right: -30px;
  background-image: url(../img/main-content/image-1/button-arrow-right-red.png);
  background-position: center;
  background-size: contain;
}

.confirmation-page .cta-button p::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  top: 5px;
  left: -30px;
  background-image: url(../img/main-content/image-1/button-arrow-left-red.png);
  background-position: center;
  background-size: contain;
}

.policy-notice {
  padding: 15px 0;
  text-align: center;
}

.policy-notice p {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: bold;
}

.policy-notice p a {
  color: #B62536;
}


.confirmation-pages main section .card-title {
  text-align: center;
}

.confirmation-pages {
  main {
    padding-top: 190px;
    .items-to-confirm,.thanks-text {
      margin-top: 0px;
    
      .group-form {
        margin-top: -24px;
        padding-bottom: 86px;
        .container {
          margin-top: -10px;
    
          .confirmation-page {
            margin: 0px;
            .confirmation-title {
                padding: 0px;
              }
            h3 {
              margin-bottom: 25px;
            }
            p {
              line-height: 36px;
            }
            .confirmation-details {
              padding: 76px 0px 28px 0px;
              .detail-row {
                padding: 28px 0px;
              }
            }
            .confirmation-actions {
              padding: 62px 0;
              .arrow-fix::after,
                .arrow-fix::before {
                  top: 8px;
                }
            }
          }
        }
      }
    }
    .thanks-text {
      .group-form {
        .container {
          margin-top: -84px;
          .thanks-page {
            .thanks-content {
              width: 100%;
              .thanks-title {
                h3 {
                  margin-bottom: 45px;
                }
              }
            }
          }
        }
      }
      .zoom-text {
        margin-top: 40px;
      }
      .line-title {
        margin-bottom: 30px;
      }
    }
  }
}


@media (max-width: 768px) {
  .confirmation-title {
    padding: 20px 15px;
  }
  
  .confirmation-title h3 {
    font-size: 22px;
  }
  
  .confirmation-title p {
    font-size: 12px;
    font-weight: 500;
  }
  
  .confirmation-details {
    padding: 20px 0;
  }
  
  .confirmation-details .detail-row {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
  }
  
  .confirmation-details .detail-label {
    flex: 0 0 120px;
    font-size: 14px;
    font-weight: 700;
    min-width: auto;
  }
  
  .confirmation-details .detail-value {
    flex: 1;
    font-size: 14px;
    padding-left: 0;
    word-break: break-word;
  }

  .confirmation-details .detail-row:has(#confirmEmail),
  .confirmation-details #messageRow {
    flex-direction: column;
    gap: 20px;
  }
  
  .confirmation-details .detail-row:has(#confirmEmail) .detail-label,
  .confirmation-details #messageRow .detail-label {
    flex: none;
    width: auto;
  }
  
  .confirmation-details .detail-row:has(#confirmEmail) .detail-value,
  .confirmation-details #messageRow .detail-value {
    flex: none;
    padding-left: 0;
  }

  @media (max-width: 360px) {
    .confirmation-details .detail-row {
      flex-direction: column;
      gap: 5px;
    }
    
    .confirmation-details .detail-label {
      flex: none;
    }
    
    .confirmation-details .detail-value {
      padding-left: 10px;
    }
  }
  
  .confirmation-actions {
    flex-direction: column;
    padding: 20px 15px;
    gap: 15px;
  }

  .policy-notice {
    padding: 15px 0;
  }
  
  /* reCAPTCHA mobile styles */
  .block-recaptcha {
    margin-top: 20px;
    
    .g-recaptcha {
      transform: scale(0.8);
      transform-origin: center;
    }
  }
  
  /* reCAPTCHA mobile styles */
  .block-recaptcha {
    margin-top: 20px;
    
    .g-recaptcha {
      transform: scale(0.8);
      transform-origin: center;
    }
  }
}

.thanks-page {
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  min-height: 500px;
}

.thanks-content {
  text-align: left;
  padding: 50px 100px;
  line-height: 1.8;
}

.thanks-title h3 {
  color: #B62536;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.thanks-message {
  color: #333;
  width: 100%;
}

.thanks-message p {
  margin-bottom: 38px;
  font-size: 16px;
  line-height: 1.8;
}

.thanks-message h4 {
  color: #B62536;
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 0px 0;
  background-color: transparent;
}

.thanks-message .free-counseling-botan {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 18px 25px;
  background-color: #DEF871;
  color: #B62536;
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}
.thanks-message .free-counseling-botan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}
.thanks-message .free-counseling-botan:hover::before {
  transform: scaleX(1);
}

.thanks-message .free-counseling-botan:hover {
  color: #B62536;
}

.thanks-message img {
  display: block;
  height: auto;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.return-btn {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background-color: #DEF871;
  color: #B62536;
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease;
  border: none;
  cursor: pointer;
}

.hasHover .return-btn:hover {
  background-color: #B62536;
  color: white;
}

/* LINE Section Styles */
.line-qr-desktop {
  display: block;
  margin: 20px 0;
}

.line-qr-image {
  max-width: 200px;
  height: auto;
}

.line-button-mobile {
  display: none;
  text-align: center;
  margin: 20px 0;
}

.line-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: #00C300;
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  gap: 15px;
  transition: background-color 0.3s ease;
  min-width: 290px;
}

.line-btn:hover {
  background-color: #00A300;
  color: white;
}

.line-logo {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
}

/* Mobile styles */
@media (max-width: 767px) {
  #furutani {
    .pc-only {
        display: none;
      }
  }
  .line-qr-desktop {
    display: none;
  }
  
  .line-button-mobile {
    display: block;
  }
  
  .thanks-content {
    padding: 30px 0px;
  }
  
  .thanks-title h3 {
    font-size: 20px;
    max-width: 177px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .thanks-message {
    font-size: 14px;
  }
  
  .thanks-message h4 {
    font-size: 18px;
  }
  
  .return-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  .thanks-message .free-counseling-botan:hover::before {
  transform: scaleX(0);
}

.thanks-message .free-counseling-botan:hover {
  color: #B62536;
}
}
/* For Goole reCAPTCHA icon */
.grecaptcha-badge {
  bottom: 88px !important;
}