@charset "UTF-8";
/*
hensu
----------------------------------------------------------- */
:root{
/* color */
    --color-primary: #B88A44;
    --color-secondary: #F2EDE5;
    --color-accent: #C8A15A;
    --color-text: #66605A;
    --color-heading: #2B2B2B;
    --color-emphasis: #8A6A4A;
    --color-link: #8A6A4A;
    --color-white: #FFFFFF;
    --color-gray: #A8A29E;
    --color-footer: #F8F6F2;
    --color-body: #F8F6F2;
    --color-more: #C7A86D;
    --color-contact: #B19070;
/* layout */
    --width-mid: 1200px;
    --width-narrow: 770px;
    --space-unit: 15px;
    --space-section: 45px;
    --header-height: 80px;
/* other */
    --gap: 30px;
    --duration: 0.7s;
}
/*
base
----------------------------------------------------------- */
html{
    font-size: 100%;
    overflow-x: clip;
}
body{
    font-family:
    "Source Han Serif JP",
    serif;
    overflow-x: clip;
    padding-top: var(--header-height);
    background: var(--color-body);
    color: var(--color-text);
}
.en{
    font-family: "Cormorant Garamond", serif;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
/*
layout - wrapper
----------------------------------------------------------- */
.wrapper {
    width: 100%;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}
.wrapper-mid {
    max-width: var(--width-mid);
    margin: 0 auto;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}
/*
- UnionityFlex
----------------------------------------------------------- */
.flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.justify-between {
    justify-content: space-between;
}
.align-center {
    align-items: center;
}
.align-start {
    align-items: flex-start;
}
.gap {
    gap: var(--gap);
}
/*
- UnionityGrid
----------------------------------------------------------- */
.grid { display: grid; }
.grid-3col { grid-template-columns: repeat(3, 1fr); }
.grid-2col { grid-template-columns: repeat(2, 1fr); }
/*
component
----------------------------------------------------------- */
.sec-ttl {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding-bottom: var(--space-section);
}
.lead {
    font-size: 14px;
    line-height: calc(26 / 14);
    text-align: center;
    padding-bottom: var(--space-section);
}
.btn {
    display: block;
    text-align: center;
    font-weight: bold;
    transition: all var(--duration);
    margin: 0 auto;
}
/*
pagetop
----------------------------------------------------------- */
.pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.5s, visibility 0.5s;
}
.pagetop.is-visible {
    opacity: 1;
    visibility: visible;
}
.pagetop:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-top: 3px solid var(--color-white);
    border-right: 3px solid var(--color-white);
    translate: 0 20%;
    rotate: -45deg;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
}
.pagetop:hover {
    transition: all var(--duration);
}
/*
loading
----------------------------------------------------------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-body);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}
#loading.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.loading-logo {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.loading-logo.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.loading-logo img {
    width: 150px;
    height: auto;
}
/*
header
----------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--color-body);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header .wrapper {
    height: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.logo img {
    width: 200px;
    height: auto;
}
.nav-link {
    display: block;
    padding: 0 16px;
    height: calc(var(--header-height) - 20px);
    line-height: calc(var(--header-height) - 20px);
    font-size: 15px;
    font-weight: bold;
    color: var(--color-text);
    position: relative;
}
.nav-link::after {
    content: "♪";
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    color: var(--color-primary);
    font-size: 16px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.header .btn-trial {
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    height: auto;
    margin: auto 0;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.3s;
}
.header .btn-trial:hover {
    background: var(--color-accent);
}
.nav-overlay,
.menu {
    display: none;
}
/*
main visual
----------------------------------------------------------- */
.swiper {
    width: 100%;
    height: 100vh;
    margin-bottom: 0;
}
.swiper .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.swiper-button-prev svg,
.swiper-button-next svg {
    display: none;
}
.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    border-color: var(--color-white);
    color: var(--color-white);
    background: rgba(201, 168, 76, 0.08);
}
.swiper-button-prev {
    left: 20px;
}
.swiper-button-next {
    right: 20px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 14px;
    content: "\f054";
}
.swiper-button-prev:after {
    content: "\f053";
}
.swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.6;
}
.swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
}
.mv {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.mv-content{
    position: absolute;
    left: 8%;
    bottom: 12%;
    z-index: 10;
}
.mv-title{
    font-size: 32px;
    line-height: 1.8;
    color: var(--color-white);
    font-weight: 400;
    text-shadow:
    0 2px 8px rgba(0,0,0,0.65),
    0 4px 18px rgba(0,0,0,0.35);
}
.mv-text{
    margin-top: 16px;
    font-size: 16px;
    line-height: 2;
    color: var(--color-white);
    text-shadow:
    0 2px 8px rgba(0,0,0,0.65),
    0 4px 18px rgba(0,0,0,0.35);
}
.btn-trial{
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0px;
}
.btn-trial:hover{
    opacity: 0.8;
}
.sp-br {
    display: none;
}
/*
about
----------------------------------------------------------- */
.about {
    padding: 120px 0;
    background: var(--color-body);
}
.about-container {
    display: flex !important;
    gap: 35px;
    align-items: stretch !important;
}
.about-left-column,
.about-right-column {
    width: 50%;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
}
.about-text-box {
    background: var(--color-secondary) !important;
    padding: 60px 18px 50px 18px !important;
    flex: 1 !important;
    box-sizing: border-box;
}
.section-subtitle {
    font-size: 14px;
    color: var(--color-emphasis);
    margin-bottom: -4px;
    margin-left: 12px;
    letter-spacing: 0.16em;
}
.section-title {
    font-size: 38px;
    font-weight: normal;
    color: var(--color-heading);
    line-height: 1.2;
}
.about-sub-lead {
    font-size: 17px;
    font-weight: bold;
    color: var(--color-heading);
    margin-top: 20px;
    margin-bottom: 14px;
    line-height: 1.7;
}
.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text);
}
.about-img-box {
    width: 100%;
    margin-top: 0 !important;
}
.about-img-box img {
    width: 100%;
    height: auto;
    display: block !important;
}
.teacher-img-box {
    width: 100%;
    margin-bottom: 0px;
}
.teacher-img-box img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}
.teacher-profile-box {
    background: transparent !important;
    padding: 12px 0 0 0 !important;
}
.teacher-title,
.teacher-text {
    padding: 0 18px;
}
.teacher-name {
    font-size: 24px;
    color: #C7A86D;
    font-weight: bold;
    margin-bottom: 12px;
}
.teacher-title {
    font-size: 20px;
    font-weight: normal;
    color: var(--color-heading);
    margin-bottom: 10px;
}
.teacher-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
}
.about-btn-area {
    text-align: center;
    margin-top: 60px;
}
.btn-more {
    display: inline-block;
    padding: 14px 80px;
    background: var(--color-more);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
    transition: opacity 0.3s;
}
.btn-more:hover {
    opacity: 0.8;
}
/*
course
----------------------------------------------------------- */
.course {
    padding: 120px 0;
    background: var(--color-secondary);
}
.course-ttl {
    font-size: 38px;
    font-weight: normal;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 60px;
    font-family: "Cormorant Garamond", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.course-ttl::before {
    content: "";
    display: inline-block;
    width: 190px;
    height: 57px;
    background: url(../img/music-note-course.svg) no-repeat center / contain;
}
.course-ttl::after {
    content: "";
    display: inline-block;
    width: 190px;
    height: 57px;
    background: url(../img/music-note-course.svg) no-repeat center / contain;
}
.course-list {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.course-link {
    width: 33.333%;
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.course-item {
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}
.course-img {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
}
.course-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.course-link:hover .course-item {
    transform: translateY(-8px);
}
.course-link:hover .course-img img {
    transform: scale(1.05);
}
.course-item-ttl {
    font-size: 16px;
    color: var(--color-heading);
    font-weight: normal;
    margin-bottom: 15px;
}
.course-item-txt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}
.course-btn-area {
    text-align: center;
    margin-top: 50px;
}
/*
loop slide
----------------------------------------------------------- */
.loop-slide-area {
    overflow: hidden;
}
.loop-slider .swiper-slide {
    width: 720px;
    height: 450px;
    flex-shrink: 0;
}
.loop-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/*
lesson
----------------------------------------------------------- */
.lesson {
    padding: 120px 0;
    background: var(--color-body);
}
.lesson-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.lesson-ttl {
    font-size: 38px;
    font-weight: normal;
    color: var(--color-heading);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}
.lesson-sub-ttl {
    font-size: 24px;
    color: var(--color-heading);
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}
.lesson-txt {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 40px;
}
.lesson-action-box {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-left: -85px;
}
.lesson-deco {
    width: 70px;
    height: auto;
}
.lesson-deco img {
    width: 100%;
    height: auto;
    display: block;
}
.btn-lesson {
    display: inline-block;
    padding: 18px 60px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}
.btn-lesson:hover {
    background: var(--color-accent);
}
/*
instagram
----------------------------------------------------------- */
.instagram {
    padding: 120px 0;
    background: #F2EDE5 !important;
}
.insta-ttl {
    font-size: 38px;
    font-weight: normal;
    color: var(--color-heading);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 40px;
}
.insta-embed-area {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
/*
news
----------------------------------------------------------- */
.news {
    padding: 120px 0;
    background-color: var(--color-body);
    background-image: url(../img/music-note-news.svg);
    background-repeat: no-repeat;
    background-position: calc(50% - 180px) center;
    background-size: 600px auto;
    background-blend-mode: multiply;
}
.news-inner {
    width: 100%;
    max-width: var(--width-mid);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.news-inner::before {
    display: none;
}
.news-content {
    width: 100%;
    max-width: 800px;
}
.news-ttl {
    font-size: 38px;
    font-weight: normal;
    color: var(--color-heading);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 50px;
}
.news-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    border-top: none;
}
.news-item {
    border-bottom: 1px solid var(--color-more);
}
.news-item a {
    display: flex;
    gap: 30px;
    padding: 20px 10px;
    color: var(--color-text);
    text-decoration: none;
    transition: background-color 0.3s;
}
.news-item a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}
.news-date {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-text);
    font-size: 16px;
    white-space: nowrap;
}
.news-txt {
    font-size: 15px;
    flex: 1;
}
.news-btn-area {
    text-align: center;
}

/*
single news
----------------------------------------------------------- */
.single {
    padding: 120px 0;
    background-color: var(--color-body);
}

.single .wrapper-mid {
    margin: 0 auto;
}

.single-inner {
    max-width: 800px;
    margin: 0 auto;
}

.single-date {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 12px;
}

.single-title {
    font-size: 32px;
    color: var(--color-heading);
    margin-bottom: 40px;
    line-height: 1.5;
}

.single-content {
    line-height: 2;
    margin-bottom: 80px;
}

.single-content p {
    margin-bottom: 1.5em;
}

.single-btn-area {
    text-align: center;
}

/*
contact
----------------------------------------------------------- */
.contact {
    padding: 120px 0;
    background-color: var(--color-contact);
    text-align: center;
}
.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: var(--space-unit);
}
.contact-ttl {
    font-size: 38px;
    font-weight: normal;
    color: var(--color-heading);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 40px;
}
.contact-btn-area {
    margin-bottom: 50px;
    width: 100%;
    max-width: 400px;
}
.btn-contact-main {
    display: block;
    padding: 25px 0;
    background-color: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-size: 24px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}
.btn-contact-main:hover {
    background-color: var(--color-primary);
}
.contact-lead {
    font-size: 16px;
    color: var(--color-heading);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}
.contact-info-box {
    margin-left: calc(50% - 400px);
    width: calc(100% - (50% - 400px));
    border-radius: 12px 0 0 12px;
    background: linear-gradient(90deg,
        #F2EDE5 0%,
        #F2EDE5 42%,
        #DDCCAB 80%,
        #C7A86D 100%
    );
    padding: 40px;
    text-align: left;
    box-sizing: border-box;
}
.contact-info-ttl {
    font-size: 16px;
    color: var(--color-heading);
    font-weight: normal;
    margin-bottom: 10px;
}
.contact-info-txt {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
}
/*
footer
----------------------------------------------------------- */
.footer {
    padding: 60px 0 20px;
    background-color: var(--color-footer);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.footer-logo {
    width: 180px;
}
.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.footer-nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-list a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.footer-nav-list a:hover {
    color: var(--color-link);
}
.btn-footer-cta {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn-footer-cta:hover {
    background-color: var(--color-accent);
}
.copyright {
    text-align: center;
    font-size: 11px;
    color: var(--color-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    margin: 0;
}
/*
course page
----------------------------------------------------------- */
.course-page {
    padding: 120px 0 80px;
    background: var(--color-body);
    text-align: center;
}
.course-page-ttl {
    font-size: 48px;
    font-weight: normal;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 40px;
    font-family: "Cormorant Garamond", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.course-page-ttl::before {
    content: "";
    display: inline-block;
    width: 190px;
    height: 57px;
    background: url(../img/music-note-course.svg) no-repeat center / contain;
}
.course-page-ttl::after {
    content: "";
    display: inline-block;
    width: 190px;
    height: 57px;
    background: url(../img/music-note-course.svg) no-repeat center / contain;
}
.course-page-lead {
    margin-top: 40px;
    line-height: 2;
    font-size: 18px;
}
.course-anchor {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.course-anchor a {
    padding: 10px 20px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
}
.course-detail {
    padding: 80px 0;
    background: var(--color-secondary);
}
.course-detail-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 960px;
    margin: 0 auto;
}
.course-detail-img {
    width: 52%;
}
.course-detail-img img {
    width: 100%;
    display: block;
}
.course-detail-content {
    width: 48%;
}
.course-detail-title {
    font-size: 24px;
    color: var(--color-heading);
    margin-bottom: 24px;
}
.course-detail-text {
    line-height: 2;
}
/*
lesson fee
----------------------------------------------------------- */
.lesson-fee{
    padding: 120px 0;
    background: var(--color-body);
    text-align: center;
}
.lesson-fee-ttl{
    font-size: 38px;
    font-family: "Cormorant Garamond", serif;
    color: var(--color-heading);
    margin-bottom: 20px;
}
.lesson-fee-time{
    font-size: 16px;
    color: var(--color-emphasis);
    margin-bottom: 48px;
    letter-spacing: 0.08em;
}
.fee-list{
    max-width: 760px;
    margin: 0 auto;
}
.fee-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--color-more);
}
.fee-course{
    font-size: 22px;
    color: var(--color-heading);
}
.fee-price{
    font-size: 28px;
    color: var(--color-emphasis);
}
/*
admission fee
----------------------------------------------------------- */
.admission-fee{
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(90deg,
        #F2EDE5 0%,
        #F2EDE5 42%,
        #DDCCAB 80%,
        #C7A86D 100%
    );
}
.admission-catch{
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-heading);
    letter-spacing: 0.08em;
    margin-bottom: 0px;
}
.admission-main{
    font-size: 36px;
    line-height: 1.25;
    color: #C97C8A;
    font-weight: 700;
    text-shadow:
        0 0 6px rgba(255, 240, 245, 0.45),
        0 0 12px rgba(201, 124, 138, 0.15);
    margin-bottom: 10px;
}
.admission-free{
    font-size: 1em;
    margin-left: 8px;
}
.admission-note{
    font-size: 18px;
    color: rgba(53, 44, 38, 0.75);
}
/*
Q&A
----------------------------------------------------------- */
.qa{
    padding: 120px 0;
    background: var(--color-body);
}
.qa-ttl{
    font-size: 38px;
    font-family: "Cormorant Garamond", serif;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.qa-title-q{
    color: #C7A86D;
}
.qa-title-a{
    color: #C97C8A;
}
.qa-ttl::before,
.qa-ttl::after{
    content: "";
    display: inline-block;
    width: 100px;
    height: 1px;
    background: var(--color-more);
}
.qa-list{
    max-width: 960px;
    margin: 0 auto;
    padding-inline: var(--space-unit);
}
.qa-question{
    padding: 24px 30px;
    background: var(--color-secondary);
    color: var(--color-heading);
    font-size: 18px;
    line-height: 1.8;
    border-radius: 12px 12px 0 0;
    font-weight: 500;
}
.qa-answer{
    padding: 24px 30px;
    line-height: 2;
    border: 1px solid var(--color-secondary);
    border-top: none;
    background: #fff;
    margin-bottom: 24px;
    border-radius: 0 0 12px 12px;
    color: var(--color-text);
}
.qa-mark{
    color: var(--color-more);
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    margin-right: 10px;
}
.qa-mark-a{
    color: #C97C8A;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    margin-right: 10px;
}

/*
-----------------------------------------------------------
Contact Form 7
-----------------------------------------------------------
*/

.contact-form{
    max-width: 770px;
    margin: 0 auto;
}

.form-group{
    margin-bottom: 32px;
}

.form-group label{
    display: block;
    margin-bottom: 10px;
    color: var(--color-heading);
    font-size: 15px;
    font-weight: 500;
}

/* mark */
.required{
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: var(--color-more);
    color: var(--color-white);
    font-size: 11px;
    border-radius: 20px;
}

/* input */
.contact-form input,
.contact-form textarea,
.contact-form select,
.wpcf7-form-control{
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.8;
    box-sizing: border-box;
    transition: var(--duration);
}

.contact-form textarea,
.wpcf7 textarea{
    min-height: 220px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.wpcf7-form-control:focus{
    outline: none;
    border-color: var(--color-more);
}

/* btn */
.form-submit{
    text-align: center;
    margin-top: 50px;
}

.wpcf7-submit{
    display: inline-block;
    min-width: 260px;
    padding: 18px 32px;
    background: var(--color-more);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--duration);
}

.wpcf7-submit:hover{
    background: var(--color-primary);
}

.wpcf7-spinner{
    display: block;
    margin: 20px auto 0;
}

.wpcf7-response-output{
    margin-top: 30px;
    text-align: center;
}

/*
-----------------------------------------------------------
contact page
-----------------------------------------------------------
*/

.contact-page{
    padding: 120px 0;
    background-color: var(--color-body);
}

.contact-page .wrapper-mid{
    max-width: 770px;
    margin: 0 auto;
}

.contact-page .contact-ttl{
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.wpcf7{
    width: 100%;
    max-width: 770px;
    margin: 0 auto;
}

.wpcf7 form{
    width: 100%;
}

.wpcf7 p{
    margin-bottom: 32px;
}

/*
hover
----------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        background: transparent;
        color: var(--color-primary);
    }
    .btn-secondary:hover {
        background: var(--color-text);
        color: var(--color-secondary);
    }
    .card figure img:hover {
        transform: scale(1.08);
    }
    .pagetop:hover {
        background: var(--color-white);
    }
    .pagetop:hover::before {
        border-color: var(--color-primary);
    }
    .nav-link:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}


/*
responsive tablet
----------------------------------------------------------- */
@media screen and (max-width: 1199px) {
    .about-container {
        flex-direction: column !important;
        gap: 60px;
        align-items: initial !important;
    }
    .about-left-column,
    .about-right-column {
        width: 100% !important;
    }
    .section-title {
        white-space: normal;
        font-size: 30px;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: var(--color-secondary);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: var(--header-height);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }
    body.open .nav {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
    }
    .nav-link {
        height: 55px;
        line-height: 55px;
        padding: 0 var(--space-section);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-link::after {
        display: none;
    }
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(248, 246, 242, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    body.open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    .header .btn-trial {
        margin-right: 50px;
    }
    .menu {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        z-index: 9999;
    }
    .menu span {
        display: block;
        height: 3px;
        background: var(--color-primary);
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.5s ease-in-out;
        border-radius: 3px;
    }
    .menu span:nth-child(1) { top: 5px; }
    .menu span:nth-child(2) { top: 15px; }
    .menu span:nth-child(3) { top: 25px; }
    body.open .menu span:nth-child(1) { top: 12px; rotate: 135deg; }
    body.open .menu span:nth-child(2) { width: 0; left: 50%; }
    body.open .menu span:nth-child(3) { top: 12px; rotate: -135deg; }
    .news {
        padding: 80px 0;
        background-position: center top 20px;
        background-size: 60% auto;
    }
    .news-inner {
        padding: 0 20px;
    }
    .news-content {
        max-width: 100%;
    }
    .footer-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-nav-list {
        flex-direction: column;
        gap: 15px;
    }
    .course {
        padding: 80px 0;
    }
    .course-ttl {
        font-size: 38px;
        gap: 16px;
        margin-bottom: 40px;
    }
    .course-ttl::before,
    .course-ttl::after {
        width: 90px;
        height: 28px;
    }
    .course-list {
        flex-direction: column;
        gap: 50px;
    }
    .course-link {
        display: block;
        width: 100%;
    }
    .course-item {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        text-align: center;
    }
    .course-img {
        margin-bottom: 20px;
    }
    .course-img img {
        width: 100%;
        height: auto;
        display: block;
    }
    .course-item-ttl {
        font-size: 20px;
        line-height: 1.6;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    .course-item-txt {
        font-size: 14px;
        line-height: 1.8;
        padding: 0 4px;
    }
    .course-btn-area {
        margin-top: 40px;
    }
    .course-page {
        padding: 90px 0 60px;
    }
    .course-page-ttl {
        font-size: 38px;
        gap: 16px;
        margin-bottom: 24px;
    }
    .course-page-ttl::before,
    .course-page-ttl::after {
        width: 90px;
        height: 28px;
    }
    .course-page-lead {
        font-size: 15px;
        line-height: 1.9;
        margin-top: 24px;
        padding: 0 20px;
    }
    .course-page-lead br {
        display: none;
    }
    .course-anchor {
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    .course-anchor a {
        width: min(100%, 320px);
        padding: 14px 20px;
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        box-sizing: border-box;
    }
    .course-detail {
        padding: 60px 0;
    }
    .course-detail-inner {
        flex-direction: column;
        gap: 24px;
    }
    .course-detail-img,
    .course-detail-content {
        width: 100%;
    }
    .course-detail-title {
        font-size: 26px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 16px;
    }
    .course-detail-text {
        font-size: 15px;
        line-height: 1.9;
    }
    .lesson-fee {
        padding: 80px 0;
    }
    .lesson-fee-ttl {
        font-size: 38px;
        margin-bottom: 16px;
    }
    .lesson-fee-time {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .fee-list {
        max-width: 100%;
    }
    .fee-item {
        padding: 22px 0;
        gap: 16px;
    }
    .fee-course {
        font-size: 16px;
    }
    .fee-price {
        font-size: 22px;
        text-align: right;
    }
    .admission-fee {
        padding: 60px 20px;
    }
    .admission-fee p {
        font-size: 24px;
        line-height: 1.8;
    }
    .admission-note {
        font-size: 16px;
    }
    .lesson-ttl {
        font-size: 38px;
    }
    .qa {
        padding: 80px 0;
    }
    .qa-ttl {
        font-size: 38px;
        margin-bottom: 40px;
    }
    .qa-question,
    .qa-answer {
        padding: 18px 20px;
        font-size: 14px;
    }
}
/* =====================================================
Tablet
===================================================== */

@media screen and (max-width:1199px){

    .contact-page{
        padding: 100px 40px;
    }

    .contact-page .wrapper-mid,
    .wpcf7{
        max-width: 770px;
    }

}


/* =====================================================
SP
===================================================== */

@media screen and (max-width:767px){

    .contact-page{
        padding: 80px 20px;
    }

    .contact-page .contact-ttl{
        font-size: 32px;
        margin-bottom: 40px;
    }

    .form-group{
        margin-bottom: 24px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    .wpcf7-form-control{
        padding: 12px 14px;
        font-size: 14px;
    }

    .contact-form textarea,
    .wpcf7 textarea{
        min-height: 180px;
    }

    .wpcf7-submit{
        width: 100%;
        min-width: auto;
        padding: 16px;
        font-size: 14px;
    }

}
/*
responsive sp
----------------------------------------------------------- */
@media screen and (max-width: 767px) {
    :root {
        --header-height: 60px;
    }
    .sec-ttl {
        font-size: 24px;
        padding-bottom: var(--space-unit);
    }
    .lead {
        text-align: left;
    }
    .sp-br {
        display: inline;
    }
    .pagetop {
        bottom: 20px;
        right: 10px;
    }
    .swiper {
        height: 85vh;
    }
    .swiper .swiper-slide img {
        height: 85vh;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 11px;
    }
    .header .wrapper {
        padding: 10px var(--space-unit);
    }
    .header .btn-trial {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        margin: 0;
        border-radius: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo img {
        height: 40px;
        width: auto;
    }
    .mv-content {
        left: 6%;
        right: 6%;
        bottom: 14%;
    }
    .mv-title {
        font-size: 24px;
        line-height: 1.6;
    }
    .mv-text {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }
    .split-layout {
        flex-direction: column;
    }
    .split-sticky {
        width: 100%;
    }
    .loop-slider .swiper-slide {
        width: 320px;
        height: 200px;
    }
    .lesson {
        padding: 80px 0;
    }
    .lesson-sub-ttl {
        font-size: 20px;
    }
    .lesson-txt {
        max-width: 320px;
        margin: 0 auto 24px;
        font-size: 14px;
        line-height: 1.9;
    }
    .lesson-txt br {
        display: none;
    }
    .lesson-action-box {
        gap: 10px;
        margin-left: -60px;
    }
    .lesson-deco {
        width: 50px;
    }
    .btn-lesson {
        padding: 16px 40px;
        font-size: 14px;
    }
    .contact {
        padding: 80px 0;
    }
    .btn-contact-main {
        font-size: 20px;
        padding: 20px 0;
    }
    .contact-lead {
        font-size: 14px;
        padding: 0 15px;
    }
    .contact-info-box {
        width: calc(100% - 15px);
        margin-left: 15px;
        margin-right: 0;
        padding: 25px 20px;
        border-radius: 8px 0 0 8px;
        box-sizing: border-box;
    }
    .contact-info-ttl {
        font-size: 16px;
        line-height: 1.6;
    }
    .contact-info-txt {
        font-size: 13px;
        line-height: 1.8;
    }
    .footer .wrapper-narrow {
        flex-direction: column;
        gap: var(--space-unit);
    }
}