
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", "Hiragino Sans",
        "游ゴシック体", "メイリオ", sans-serif;
    font-weight: 500;
    line-height: 1.7;
    background-color: #f7f7f7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic Antique', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    position: relative;
    color: #000;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.main-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: clamp(0px, calc(var(--header-height)), var(--header-height));
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}


.global-diagonal-bg {
    position: absolute;
    top: 2450px;
    left: 50%;
    width: 200vw;
    height: 540px;
    background-color: #8cc31e;
    transform: translateX(-50%) rotate(-30deg); 
    transform-origin: center;
    pointer-events: none;  
    z-index: 0;           
}

@media (max-width: 480px) {
    .global-diagonal-bg {
        top: 2650px;
    }
}

:root {
        --header-height: 65px;
    --hero-height: calc(100vh - var(--header-height));
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}


.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    color: #fff;
        height: 65px; 
        padding: 0; 
    z-index: 1000;
}

.header__wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
     height: 100%; 
}

.header__logo {
    width: 180px;
     height: 100%;
     display: flex;
     align-items: center; 
}

.header__logo a {
     height: 100%;
}

.header__logo img {
    width: 100%;
     height: 100%;
     width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav__list a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav__list a:hover {
    color: #7bb131;
}


.nav__btn {
    height: 35px;
    display: inline-flex;
    align-items: center;
}

.nav__btn img {
    height: 100%;
    width: auto;
    display: block;
}


.nav__cta {
    background-color: #7bb131;
    padding: 8px 16px;
    border-radius: 4px;
    color: #fff !important;
}

.nav__cta:hover {
    background-color: #6a9e28 !important;
}

.header__burger {
    display: none;
    width: 32px;
    height: 13px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
}

.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1200;
    padding-top: 82px;
    padding-bottom: 82px;
}

.header__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.header__overlay-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 0 24px;
}

.header__overlay-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #8cc31e;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.header__overlay-close-icon,
.header__overlay-close-icon::before {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: #8cc31e;
    transform: rotate(45deg);
    content: "";
}

.header__overlay-close-icon::before {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.header__overlay-btn img {
    display: block;
    width: auto;
    height: 41px;
}
.header__overlay-btn {
    height: 41px;
    align-items: center;
}

@media (max-width: 480px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }
}


.hero {
    
    width: 100%;
    position: relative;
    overflow: hidden;
    
    margin-top: 0;
    min-height: var(--hero-height);
}

.hero__content {
    width: 100%;
    height: var(--hero-height);
    aspect-ratio: auto;
    display: block;
    max-height: none;
}

@media (max-width: 480px) {
    .hero__content {
        aspect-ratio: 5 / 8;
        height: auto;
    }
    .hero {
        min-height: auto;
    }
}

.hero__content img {
    
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: cover;
}


.section__title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

section {
    padding: 50px 0;
}

section.hero {
    padding: 0;
}

@media (max-width: 480px) {
    section {
        padding: 25px 0;
    }
}


.news-section {
    margin-top: 32px;
    margin-bottom: 100px;
    padding-bottom: 0 !important; 
}

.news-title {
    background-color: #8cc31e;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center; 
    max-width: 740px; 
    margin: 0 auto; 
}

.news-title img {
    height: 22px;
    display: block;
}

.news__wrapper {
    max-width: 740px;
    min-height: 120px;
    margin: 0 auto;
    background-color: #f2f2f2; 
}

.news__wrapper .news-item {
    background: transparent;
    padding: 12px 16px;
    margin: 0;
}

.news__wrapper .news-item + .news-item {
    border-top: 2px dotted #8cc31e; 
}

.news-item__date {
    font-size: 16px;
    font-weight: bold;
    color: #8cc31e;
    margin-right: 12px;
    
    padding-left: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><polygon points='0,0 8,4 0,8' fill='%238cc31e'/></svg>");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 10px 10px;
}

.news-item__meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-item__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 70px;
    height: 16px;
    padding: 0;
    border-radius: 8px;
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
    color: #fff;
}

.news-item__badge--news {
    background-color: #8cc31e;
}

.news-item__badge--update {
    background-color: #ff9800;
}

.news-item__text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item__text a {
    color: #72ac00;
    text-decoration: underline;
}

.news-item__text b {
    font-weight: 900;
}

.news__footer {
    text-align: right;
    max-width: 740px;
    margin: 8px auto 0;
    padding-right: 0;
}

.news__link {
    color: #8cc31e;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16.8px;
}

.news__link::after {
    content: '';
    display: inline-block;
    width: 27px;
    height: 19.2px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'><path d='M0 4l13 8-13 8M12 4l13 8-13 8' fill='none' stroke='%238cc31e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.news__link:hover {
    color: #6b9a1a;
}

@media (max-width: 480px) {
    .news-section {
        margin-top: 0;
    }
    .news__footer {
        text-align: center;
    }
}

.news__link:hover::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'><path d='M0 4l13 8-13 8M12 4l13 8-13 8' fill='none' stroke='%236b9a1a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}


.sonatore-intro {
    padding: 60px 0;
}

.sonatore-intro__container {
    position: relative;
}


.sonatore-intro__text {
    margin: 0 auto;
    text-align: center;
    width: max-content;
    font-weight: bold;
}


.sonatore-intro__line {
    padding: 2px 14px;
    margin-bottom: 14px;
    line-height: 2.1;
    font-size: 20px;
    background-color: #ff0;
}


.sonatore-intro__icon {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(-100%, 0);
    margin-right: 120px;
}

.sonatore-intro__icon img {
    height: 120px;       
    display: block;
}


@media (max-width: 480px) {
    .sonatore-intro__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .sonatore-intro__icon {
        position: static;
        transform: none;
        margin: 0 auto;
        text-align: center;
        order: -1;
    }

    .sonatore-intro__text {
        width: 100%;
        text-align: left;
        line-height: 1.6;
        font-size: 0; /* remove inline-gap between spans */
    }

    .sonatore-intro__text br {
        display: none;
    }

    .sonatore-intro__line {
        display: inline;
        padding: 2px 0;
        margin: 0;
        font-size: 18px;
    }
}


.service-intro {
    background: linear-gradient(135deg, #7bb131 0%, #a8d356 100%);
    color: #fff;
}

.service-intro .section__title {
    color: #fff;
}

.service-intro__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-intro__item {
    text-align: center;
}

.service-intro__item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.service-intro__item h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-intro__item p {
    font-size: 14px;
    line-height: 1.8;
}


.video-section {
    background-color: #f9f9f9;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #ddd;
    display: flex;
    margin-bottom: 15px;
}

.video-placeholder p {
    color: #999;
    font-size: 16px;
}

.sonatore-intro-video {
    padding: 60px 0;
    position: relative;   
    overflow: hidden;     
}

.sonatore-intro-video .video-placeholder {
    margin-top: 50px;
}


.video-area {
    position: relative;
    max-width: 740px;
    margin: 50px auto 0;
    z-index: 2;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-area iframe,
.video-area video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    border: 0;
}


.request-image {
    margin-top: 60px;   
    text-align: center; 
}

.request-image picture {
    display: inline-block;
    max-width: 740px;
    width: 100%;
}

.request-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 740px;
}


.knowledge-steps-section {
    padding: 150px 0 40px;
    text-align: center;
}

.knowledge-steps__inner {
    text-align: center;
}

.knowledge-steps__header {
    position: relative;
    display: inline-block;   
}


.section-title--green-line {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
}

.section-title--green-line::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: calc(100% + 100px);
  height: 8px;
  background-color: #8cc31e;
  z-index: -1;
}

@media (max-width: 480px) {
  .section-title--green-line {
    font-size: 25px;
  }
}


.knowledge-steps__title {
    position: relative;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
}


.knowledge-steps__point-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 40px);
}

.knowledge-steps__point-icon img {
    height: 100px;
    width: auto;
    display: block;
}

.knowledge-steps__graph-icon {
    position: absolute;
    right: -160px;
    top: 30%;
    transform: translateY(-50%);
}

.knowledge-steps__graph-icon img {
    width: 80px;
    height: auto;
    display: block;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    width: 274px;
}

.step-item img {
    width: 274px;
    height: auto;
    margin: 0 auto 15px;
}


.step-link {
    display: inline-block;
    margin-top: 0;
    font-size: 16px;
    color: #8cc31e;
    text-decoration: underline;
    font-weight: bold;
}

.steps-description {
    margin-top: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

.image-modal {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0 32px;
    background: rgba(140, 195, 30, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 20000;
    overflow: hidden;
    box-sizing: border-box;
}

.image-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-modal__frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(900px, calc(100% - 64px));
    max-width: 900px;
    max-height: calc(100vh - 120px);
    margin: 0 auto;
}

.image-modal__frame::before {
    content: "";
    position: absolute;
    top: -25px;
    bottom: -25px;
    left: -15px;
    right: -15px;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.16);
}

.image-modal__frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    max-width: 900px;
    max-height: calc(100vh - 140px);
    margin: 0 auto;
    object-fit: contain;
}

/* 動的ビューポート単位が使えるブラウザではスクロールバー幅を除いた計算で中央ずれを抑制 */
@supports (width: 100dvw) {
    .image-modal {
        width: 100dvw;
        height: 100dvh;
        padding: 0 32px;
    }
    .image-modal__frame {
        width: min(900px, calc(100% - 64px));
    }
    .image-modal__frame img {
        width: 100%;
    }
}

.image-modal__close {
    position: absolute;
    top: -25px;
    right: -15px;
    transform: translate(50%, -50%);
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #8cc31e;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 20001;
    box-shadow: none;
}

.image-modal__close-icon,
.image-modal__close-icon::before {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    background: #8cc31e;
    transform: rotate(45deg);
    content: "";
}

.image-modal__close-icon::before {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

body.modal-open {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: static;
}

.sp-only-break {
    display: none;
}

@media (max-width: 480px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-top: 20px;
    }

    .step-item,
    .step-item img {
        width: 100%;
        max-width: 320px;
    }

    .sp-only-break {
        display: block;
    }
}


@media (max-width: 480px) {
    .sonatore-intro-video {
        padding: 30px 0;   
    }
    .video-area {
        margin: 30px auto 0;
    }
    .knowledge-steps__title {
        font-size: 24px;
    }

    .knowledge-steps__title::before {
        width: calc(100% + 60px);      
    }

    .knowledge-steps__graph-icon img {
        height: 60px;
    }
}

.vr-learning-section {
    padding: 50px 0 60px;
}

.vr-title-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.vr-video-wrapper {
    max-width: 740px;
    margin: 40px auto 0;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.vr-video-wrapper iframe,
.vr-video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 6px;
}

.vr-text-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 740px;
    margin: 30px auto 0;
    text-align: center;
}

.vr-text-block {
    display: inline-block;   
    position: relative;
    text-align: center;
}

.vr-text {
    font-size: 18px;
    line-height: 1.8;
}

.vr-left-icon {
    position: absolute;
    right: 100%;         
    margin-right: 180px; 
    top: 50%;
    transform: translateY(-20%);
    width: 152px;        
    height: auto;
}

.original-course-section {
    padding: 0 0 60px;
    text-align: center;
}

.original-course-images {
    margin-top: 40px;
    text-align: center;          
}

.original-course-main {
    display: inline-block;       
    position: relative;          
}

.original-course-step {
    width: 274px;
    display: block;
}

.original-course-gear {
    position: absolute;
    left: 100%;                  
    margin-left: 20px;           
    bottom: 0;                   
    width: 134px;
    height: auto;
}

.original-step-img {
    width: 274px;
    height: auto;
}

.original-gear-img {
    width: 134px;
    height: auto;
}

.original-gear-mobile {
    display: none;
    width: 134px;
    height: auto;
}

.original-course__text-main {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.8;
}

.original-course__text-note {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
}

.original-text {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.8;
    font-weight: bold;
}

.original-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
}


@media (max-width: 480px) {
    .vr-video-wrapper {
        margin-top: 20px;
    }
    .vr-learning-section {
        padding: 0 0 30px;
    }

    .vr-title-wrapper {
        margin-bottom: 0;
    }

    .vr-text-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .vr-left-icon {
        position: static;
        margin: 12px auto 0;
        transform: none;
        display: block;
        order: 2;
    }

    .original-course-images {
        margin-top: 20px;
    }

    .original-course-gear {
        display: none;
    }

    .original-gear-mobile {
        display: block;
        margin: 12px auto 0;
    }
    
    .original-course__text-main {
        margin-top: 10px;
    }

    .original-course-section {
        padding-bottom: 0;
    }
}

.learning-management-section {
    padding: 40px 0;
    text-align: center;
    background-color: transparent;
    position: relative;
    z-index: 1;
}



.management-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}


.learning-management-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto; 
}

.management-main-image {
    width: 750px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; 
}


.management-left-icon {
    position: absolute;
    bottom: -10px; 
    transform: translateX(-50%);
    width: 127px;
    height: auto;
}

.management-icon-mobile {
    display: none;
    width: 127px;
    height: auto;
}

.learning-management-text {
    margin-top: 30px;
    font-size: 20px;
    line-height: 1.8;
    color: #fff;
}

@media (max-width: 480px) {
    .management-left-icon {
        display: none;
    }

    .management-icon-mobile {
        display: block;
        margin: 12px auto 0;
    }
}

.cps-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 0 40px 30px;
    position: relative;
    overflow: visible;
}

.cps-decor {
    position: absolute;
    display: block;
    pointer-events: none;
    z-index: 1;
}
.cps-decor img {
    display: block;
    width: 100%;
    height: 22px;
    max-height: 22px;
    min-height: 22px;
}

.cps-decor--tl {
    top: 0;
    left: 0;
    right: auto;
    height: 22px;
    width: auto;
    overflow: hidden;
}
.cps-decor--br {
    bottom: 0;
    left: auto;
    right: 0;
    height: 22px;
    width: auto;
    overflow: hidden;
}
.cps-decor--bl {
    bottom: 20%;
    left: 0;
    width: 2px;
}
.cps-decor--tr {
    top: 15%;
    right: 0;
    width: 2px;
}

@media (max-width: 767px) {
    .cps-decor--tl,
    .cps-decor--br {
        width: 100% !important;
        height: auto !important;
        min-width: 100%;
        left: 0;
        right: 0;
        z-index: 2;
    }
    .cps-decor--tl {
        top: 0;
        bottom: auto;
    }
    .cps-decor--br {
        top: auto;
        bottom: 0;
    }
    .cps-decor--tl img,
    .cps-decor--br img {
        width: 100%;
        height: auto;
        max-height: none;
        min-height: 0;
        object-fit: contain;
        display: block;
    }
    .cps-decor--tl img {
        object-position: center top;
    }
    .cps-decor--br img {
        object-position: center bottom;
    }
    .cps-decor--tr {
        top: auto;
        bottom: 30%;
    }
    .cps-decor--bl {
        bottom: auto;
        top: 30%;
    }
}

.course-price-step-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cps-diagonal-bg {
    position: absolute;
    left: 50%;
    top: 740px;
    width: 300vw; 
    height: 3000px;
    background-color: #8cc31e;
    transform: translateX(-50%) rotate(-30deg);
    transform-origin: center;
    z-index: -1;      
    pointer-events: none;
}

.cps-content {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 0 40px 40px;  
    position: relative;       
    z-index: 2;               
}

.cps-item {
    margin-bottom: 50px;
}

.cps-content .cps-item:first-child .cps-item-body {
    margin-top: 40px;   
}

.cps-item:last-child {
    margin-bottom: 0;
}

.cps-title-img {
    display: block;
    margin: 0 auto 16px;
    height: 100px;
    position: relative;
    z-index: 3; /* bring title images above edge decorations */
}

.cps-item-body {
    font-size: 16px;
    line-height: 1.8;
}

.cps-course-desc {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 480px) {
    .course-price-step-section {
        padding: 40px 0;
    }
    .cps-course-desc {
        margin-top: 20px;
        text-align: left;
    }
    .cps-course-desc br {
        display: none;
    }
    .cps-content {
        padding: 0 10px 0;                
    }
}

.customers-section {
    padding: 80px 0 140px;
    text-align: center;
}

.customers-title img {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto 30px;
}

.customers-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 95px;
    flex-wrap: wrap;
}

.customer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.customer-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #ccc;
}

.customer-label {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.customers_coming {
    margin-top: 50px;
    font-size: 30px;
    font-weight: bold;
    color: #666;
    font-family: 'Fira Sans', 'Zen Kaku Gothic Antique', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.edition-list {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    flex-wrap: wrap;
}

.edition-box {
    position: relative;
    width: 128px;
}

.edition-box img {
    width: 100%;
    height: auto;
    display: block;
}

.edition-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: #8cc31e;
    text-align: center;
    white-space: nowrap;
}

.edition-note {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .customers-section {
        padding: 40px 0 80px;
    }

    .customers-list {
        gap: 40px;
    }

    .customers_coming {
        margin-top: 30px;
        font-size: 26px;
    }

    .edition-list {
        gap: 20px;
        justify-content: center;
    }

    .edition-box {
        width: calc((100% - 20px) / 2);
    }

    .coming-soon {
        width: 100%;
    }
}

.step-card-list {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

@media (min-width: 481px) {
    .step-card-list {
        align-items: stretch;
    }
    .step-card {
        height: 100%;
    }
}

.step-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card-arrow img {
    width: 16px;
    height: auto;
    display: block;
}

.step-card {
    width: 205px;
    border: 2px solid #8cc31e;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4px 20px;
}

.step-card__label {
    margin: 4px 4px 0;
    height: 48px;
    width: 100%;
    background-color: #fcebcc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card__label img {
    height: 30px;
    width: auto;
    display: block;
}

.step-card__text {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
}

.step-card__desc {
    margin: 17px 4px 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.price-images {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 43px;
}

.price-img {
    width: 353px;
    max-width: 100%;
    display: block;
}

.price-img img {
    width: 100%;
    height: auto;
    display: block;
}

.price-annual {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.price-img--annual {
    width: 477px;
    height: auto;
    display: block;
}

.cps-item--course {
    position: relative;
    top: -30px;
    margin-bottom: 50px;
    z-index: 2;
}

@media (max-width: 480px) {
    .cps-box {
        padding: 0 10px 20px;
    }

    .cps-content .cps-item:first-child .cps-item-body {
        margin-top: 0;   
    }

    .cps-inner {
        flex-direction: column;
        gap: 30px;
    }

    .cps-item {
        max-width: 100%;
    }

    .cps-diagonal-bg {
        top: 440px;
        width: 1000vw;
        height: 3000px;
    }

    .price-images {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .price-img {
        width: 100%;
        max-width: 100%;
    }

    .price-annual {
        margin-top: 20px;
    }

    .price-img--annual {
        width: 100%;
    }

    .cps-item--course {
        margin-bottom: 20px;
    }

    .step-card__text {
        margin-top: 14px;
    }

    .step-card__desc {
        margin: 10px 16px 0;
    }
}


.faq-title-img {
    display: block;
    height: 120px;
    width: auto;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 2;
}

.faq-section {
    position: relative;
    background-color: #000;
    padding-top: 110px;
}

.faq-diagonal-bg {
    position: absolute;
    left: 50%;
    top: 730px;
    width: 400vw;
    height: 2000px;
    background-color: #8cc31e;
    transform: translateX(-50%) rotate(-30deg);
    transform-origin: center;
    z-index: 0;
    pointer-events: none;
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq__lists {
    max-width: 900px;
    margin: 0 auto;
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto 32px;
    display: flex;
    gap: 28px;
}

.faq-category-btn {
    flex: 1 1 calc((100% - 3 * 28px) / 4);
    height: 32px;
    background-color: #ccc;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@media (max-width: 480px) {
    .faq-categories {
        flex-wrap: wrap;
        gap: 26px;
        justify-content: center;
    }

    .faq-category-btn {
        flex: 0 1 calc((100% - 26px) / 2);
        max-width: calc((100% - 26px) / 2);
    }

    .faq-diagonal-bg {
        top: 650px;
        width: 2000vw;
    }
}

.faq-category-btn.is-active {
    background-color: #666;
    color: #fff;
}

.faq-item {
    margin-bottom: 0;
    border-radius: 0;
    overflow: visible;
}

.faq-item + .faq-item {
    margin-top: -2px;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 47px;
    background-color: #666;
    border: 1px solid #fff;
    border-bottom: 0;
    cursor: pointer;
    font-size: 19px;
    color: #fff;
    text-align: left;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-item__question:hover {
    background-color: #777;
}

.faq-item__question::before {
    content: "Q.";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    pointer-events: none;
}

.faq-item__toggle {
    position: relative;
    min-width: 57px;
    width: 57px;
    height: 19px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: transparent;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #666;
    transition: opacity 0.35s ease-in-out;
}

.faq-item__toggle::before {
    width: 14px;
    height: 2px;
}

.faq-item__toggle::after {
    width: 2px;
    height: 14px;
}

.faq-item__answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background-color: #f2f2f2;
    padding: 0 47px;
    border: 1px solid #fff;
    border-top: 0;
    position: relative;
}

.faq-item__answer p {
    margin: 0;
    padding: 0;
    
    line-height: 1.8;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
}

.faq-item__answer::before {
    content: "A.";
    position: absolute;
    left: 15px;
    top: 12px;
    font-size: 20px;
    font-weight: 700;
}

.faq-item.active .faq-item__answer {
    max-height: 2000px;
    padding: 40px 47px;
}

.faq-item.active .faq-item__answer p {
    opacity: 1;
}
.faq-item.active .faq-item__toggle::after {
    opacity: 0;
}

.faq__list.no-transition .faq-item__answer {
    transition: none;
}

@media (max-width: 480px) {
    .faq-item__question {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 7px;
        padding-right: 7px;
        padding-left: 32px;
        padding-bottom: 32px;
        font-size: 16px;
    }

    .faq-item__question span:first-child {
        width: 100%;
        padding-left: 0;
    }

    .faq-item__toggle {
        position: absolute;
        right: 7px;
        bottom: 6px;
    }

    .faq-item__question::before {
        left: 10px;
        top: 4px;
        font-size: 18px;
        transform: translateY(0);
    }

    .faq-item__answer::before {
        left: 10px;
        top: 4px;
        font-size: 18px;
        transform: translateY(0);
    }

    .faq-item__answer p {
        font-size: 16px;
    }

    .faq-item.active .faq-item__answer {
        padding: 30px 28px 30px 32px;
    }

    .faq-item__answer {
        padding: 0 28px 0 32px;
    }
}

.footer {
    background-color: #8cc31e;
    color: #fff;
    padding: 0 0 20px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.footer__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer__top {
    display: flex;
    justify-content: flex-end;
    max-width: 900px;
    margin: 0 auto 30px;
}

.footer__top-link {
    display: inline-block;
}

.footer__top-image {
    display: block;
    height: 32px;
    width: auto;
}

.footer__links {
    list-style: none;
    display: flex;
    gap: 45px;
    padding: 0;
    margin: 0;
    align-items: center;
}

.footer__links a {
    font-size: 12px;
    color: #fff;
    text-decoration: underline;
}

.footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.footer-diagonal-bg {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 200vw;
    height: 1200px;
    background-color: #8cc31e;
    transform: translateX(-50%) rotate(-30deg);
    transform-origin: center;
    z-index: 0;
    pointer-events: none;
}

.floating-inquiry {
    position: fixed;
    right: 85px;
    bottom: 20px;
    z-index: 999;
    display: block;
    transition: transform 0.35s ease-out, opacity 0.35s ease-out;
}

.floating-inquiry img {
    display: block;
    width: 113px;
    height: auto;
}

.floating-inquiry--return {
    transform: translateY(-60px);
    opacity: 0;
}

.footer__top {
    margin-top: 40px;
}
.policy-frame {
    width: 100%;
    min-height: 80vh;
    border: none;
    background: #fff;
    overflow: hidden;
}

.terms-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 32px 48px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-radius: 6px;
    box-sizing: border-box;
}

h1 {
    font-size: 1.4rem;
    margin: 1em 0;
    text-decoration: underline;
}
.policy-wrapper {
    padding: 40px 0;
    background: #fff;
}
.policy-wrapper .container {
    min-height: 60vh;
    max-width: 980px;
}

.terms-version-footer {
    margin-top: 0;
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

.article-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    padding-left: 0.3em;
}

section {
    padding: 0 0 1.5em;
}

.article p {
    margin: 4px 0 4px 1.5em;
}

.article p.no-indent {
    margin-top: 4em;
    text-align: right;
}

.article-list {
    margin: 4px 0 4px 2em;
}

.article-list ol {
    margin: 4px 0;
    padding-left: 1.2em;
}

.article-list li {
    margin: 2px 0;
    padding-left: 0.5em;
    text-indent: 0;
}

.article-list li .article-list {
    counter-reset: circle-counter;
    margin-left: 1.5em;
}

.article-list li .article-list li {
    list-style-type: none;
}

.article-list li .article-list li::before {
    content: counter(circle-counter);
    counter-increment: circle-counter;
    display: block;
    float: left;
    font-size: 0.9em;
    line-height: 1.2em;
    margin-top: 0.3em;
    margin-left: -2em;
    text-align: center;
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #666;
    border-radius: 50%;
}

.note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 24px;
    text-align: right;
}

.page-break {
    page-break-after: always;
    border: none;
    margin: 32px 0;
}

dt {
    font-weight: bold;
}

.terms-text ul {
    list-style-type: circle;
    list-style-position: outside;
    padding-left: 22px;
    box-sizing: border-box;
}

@media print {
    body {
        background: #fff;
    }
    .terms-container {
        box-shadow: none;
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 600px) {
    .floating-inquiry {
        right: 5px;
        bottom: 5px;
    }
}

/* Fade-in on scroll */
.fade-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-diagonal-bg {
    position: absolute;
    left: 50%;
    bottom: -900px;
    width: 200vw;
    height: 1200px;
    background-color: #8cc31e;
    transform: translateX(-50%) rotate(-30deg);
    transform-origin: center;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 480px) {
    .step-card-list {
        flex-direction: column;
        gap: 2px;
        align-items: center;
    }

    .step-card {
        width: 100%;
        padding-bottom: 16px;
        align-items: center;
    }

    .step-card-arrow img {
        transform: rotate(90deg);
    }
}

@media (min-width: 481px) {
    .step-card-list {
        align-items: stretch;
    }
    .step-card {
        flex: 1 1 0;
        height: auto;
    }
    .step-card__desc {
        flex: 1 0 auto;
    }
}

/* Image modal tweaks for mobile */
@media (max-width: 480px) {
    .image-modal {
        background: rgba(140, 195, 30, 0.7);
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .image-modal__frame {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .image-modal__frame::before {
        display: none;
    }

    .image-modal__frame img {
        max-width: 100vw;
        width: 100vw;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }

    .image-modal__close {
        position: fixed;
        top: 12px;
        right: 12px;
        transform: none;
        width: 31px;
        height: 31px;
        border: 2px solid #fff;
        box-shadow: none;
        background: transparent;
    }

    .image-modal__close-icon,
    .image-modal__close-icon::before {
        background: #fff;
    }

    body.modal-open .header__burger {
        display: none;
    }
}

@media (min-width: 769px) {
    .image-modal {
        background: transparent;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .policy-wrapper {
        padding-top: 10px;
    }

    .header__wrapper {
        padding: 0 20px 0 0;
    }

    .container {
        padding: 0 20px;
    }

    .section__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .nav__list {
        gap: 20px;
    }

    .service-intro__items,
    .features__grid,
    .cases__logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps__container {
        flex-direction: column;
    }

    .step__arrow {
        transform: rotate(90deg);
    }

    .pricing__wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-box--popular {
        transform: scale(1);
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .footer__top {
        justify-content: center;
    }
}
