@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #442810;
    background-color: #FFFDF8;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
    height: auto;
}

.wrap {
    overflow: hidden;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.parent {
    padding: 100px 5vw;
}

.child {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.serif {
    font-family: "Noto Serif JP", serif;
}

.cg {
    font-family: "Cormorant Garamond", serif;
}

.zen {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.gfs {
    font-family: "GFS Didot", serif;
}

    /*ボタン*/
.btn {
    position: relative;
    max-width: 280px;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    padding: 10px;
    border: solid 1px #E8BF4C;
    background-color: #fff;
    box-shadow: 5px 5px 0 #EFF2E5;
    border-radius: 4px;
}

.btn:hover {
    opacity: 1;
    background: linear-gradient(135deg,
        #EEF5DE 0%,
        #FBF3E1 50%,
        #FAF1C9 100%
    );
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(../img/common/btn_arrow_black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 8px;
    height: 8px;
}

    /*<div class="h2-title-wrap">*/
.h2-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.5;
    margin-bottom: 24px;
}

.h2-title-txt {
    color: #E8BF4C;
    font-weight: 400;
    font-size: 40px;
}

.h2-title {
    font-weight: 600;
    font-size: 16px;
}
/*終わり*/


/*<header class="header">*/
.header {
    padding: 0 5vw;
    width: 100%;
    height: 100px;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-logo-txt-01 {
    font-size: 24px;
    font-weight: 600;
}

.header-logo-txt-01 span {
    font-size: 18px;
    padding-left: 8px;
}

.header-logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo {
    max-width: 24px;
    width: 100%;
}

.header-ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.3;
}

.header-ul li a span {
    font-weight: 600;
    color: #B8932F;
}

.h-contact-btn {
    background: linear-gradient(135deg,
        #859A1F 0%,
        #B0CB2D 76%,
        #D4E5B5 100%
    );
    color: #fff;
    line-height: 1.2 !important;
    padding: 8px 16px;
    font-size: 14px;
}

.header-mail-icon {
    max-width: 20px;
    width: 100%;
    margin-bottom: 8px;
}

.h-contact-btn span {
    color: #fff !important;
}

.hamburger-txt {
    display: none;
}
/*終わり*/


/*<section class="under-fv">*/
.under-fv {
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg,
        #FBF2D4 0%,
        #FBF4DD 50%,
        #E8F0D8 100%
    );
    padding: 0 5vw;
}

.under-fv-in {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.under-h1-wrap {
    line-height: 1.3;
}

.under-h1-txt {
    font-size: 56px;
}

.under-h1 {
    font-size: 16px;
    font-weight: 400;
}
/*終わり*/


/*<section class="achieve">*/
.achieve {
    background: linear-gradient(135deg,
            #EEF5DE 0%,
            #FBF3E1 76%,
            #FAF1C9 100%);
}

.achieve-lead-txt {
    text-align: center;
}

.achieve-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    justify-items: center;
}

.achieve-con {
    width: 100%;
    border: solid 1px #D7DDE6;
    box-shadow: 0 4px 16px rgba(31, 58, 95, 0.04);
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
    padding: 16px;
    line-height: 1.3;
}

.achieve-icon {
    max-width: 48px;
    width: 100%;
    margin: 0 auto;
}

.achieve-con-txt-01 {
    margin-top: 8px;
}

.achieve-con-txt-02 span {
    font-size: 32px;
    color: #1F3A5F;
}
/*終わり*/


/*<section class="courses">*/
.courses-in {
    position: relative;
    z-index: 2;
}

.courses-wrap {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.courses-con {
    border: solid 1px #D7DDE6;
    background-color: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.courses-img-wrap {
    width: 40%;
}

.courses-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.courses-txt-wrap {
    width: 57%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.courses-yellow-bg {
    width: max-content;
    font-weight: 600;
    color: #fff;
    background-color: #E8BF4C;
    font-size: 14px;
    border-radius: 50vh;
    padding: 2px 12px;
}

.courses-h3 {
    font-weight: 600;
    font-size: 24px;
}

.courses-txt-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 8px;
}

.courses-txt {
    position: relative;
    width: 49%;
    padding:  0 8px 0 28px;
    color: #859A1F;
    background-color: rgba(133,154,31,0.1);
    border-radius: 50vh;
}

.courses-txt::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 8px;
    left: 8px;
    background-image: url("../img/common/check_icon_green.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.courses .btn-wrap {
    margin-top: 32px;
}
/*終わり*/


/*<div class="sns-grid">*/
.sns-grid {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    justify-items: center;
}

.sns-con {
    width: 100%;
    background-color: #FFFDF8;
    border: solid 1px #E8BF4C;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px;
}

.sns-icon {
    max-width: 20px;
    width: 100%;
}

.sns-txt {
    color: #B8932F;
}
/*終わり*/


/*<section class="faq">*/
.faq {
    background-color: #FAF3E4;
}

.faq-wrap {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-open {
    position: relative;
    background-color: #fff;
    border: solid 1px #E7E3D6;
    padding: 16px;
    border-radius: 4px;
}

.nav-open:hover {
    cursor: pointer;
}

.nav-open.active {
    border-radius: 4px 4px 0 0;
}

.q-txt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-right: 40px;
}

.q-txt::before {
    content: "Q";
    font-family: "Cormorant Garamond", serif;
    color: #37AD9D;
    font-weight: 800;
}

.plus-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.plus-icon::before,
.plus-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #8E929C;
}

.plus-icon::before {
    width: 50%;
    height: 1px;
}

.plus-icon::after {
    width: 1px;
    height: 50%;
}

.faq-txt {
    display: none;
    padding: 16px;
    background-color: #fff;
    border: solid 1px #E7E3D6;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.a-txt-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 24px;
}

.a-txt-wrap::before {
    content: "A";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Cormorant Garamond", serif;
    color: #E8BF4C;
    font-weight: 800;
}

.a-ul li {
    display: flex;
}

.nav-open.active .plus-icon::after {
    display: none;
}
/*終わり*/


/*<section class="contact">*/
.contact {
    padding: 120px 5vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-wrap {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    padding: 40px 8px;
    background-color: rgba(255,253,249,0.9);
    text-align: center;
}

.contact .h2-title-wrap {
    margin-bottom: 0;
}

.contact .btn {
    background: linear-gradient(135deg,
        #EEF5DE 0%,
        #FBF3E1 50%,
        #FAF1C9 100%
    );
}

.contact .btn:hover {
    background: linear-gradient(135deg,
        #9EB140 0%,
        #C0CF7B 50%,
        #F6DD7C 100%
    );
    color: #fff;
}

.contact .btn:hover::before {
    background-image: url(../img/common/btn_arrow_white.svg);
}

.contact .btn::after {
    content: "";
    background-image: url(../img/common/mail_icon_green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 53%;
    left: 22%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.contact .btn:hover::after {
    background-image: url(../img/common/mail_icon_white.svg);
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    padding: 40px 5vw 16px 5vw;
    background: linear-gradient(135deg,
        #9EB140 0%,
        #C0CF7B 50%,
        #F6DD7C 100%
    );
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.footer-wrap-01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer-txt-01 {
    font-size: 24px;
}

.footer-txt-02 {
    font-size: 14px;
}

.footer-ul-01 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 24px;
}

.footer-wrap-02 {
    display: flex;
    flex-direction: column;
}

.f-contact-btn {
    position: relative;
    background-color: #fff;
    color: #859A1F;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 240px;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: 0 0 0 auto;
}

.f-contact-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(../img/common/btn_arrow_green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 8px;
    height: 8px;
}

.f-contact-btn::after {
    content: "";
    background-image: url(../img/common/mail_icon_green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 53%;
    left: 18%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.footer-ul-02 {
    display: flex;
    align-items: center;
    justify-content: right;
    padding-bottom: 4px;
    border-bottom: solid 1px #fff;
    margin: 40px 0 8px 0;
}

.footer-ul-02 li {
    padding: 0 16px;
    font-size: 14px;
}

.footer-ul-02 li:last-child {
    border-left: solid 1px #fff;
    padding-right: 0;
}

.copyright {
    text-align: right;
    font-size: 14px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  
  

/*<header class="header">*/
    .header {
        background-color: #FFFDF8;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .header-site-menu {
        position: relative;
        width: max-content;
        height: 100%;
    }    

    /*ハンバーガーボタン*/
    .hamburger {
        display: block;
        z-index: 999;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        width: 72px;
        height: 60px;
        cursor: pointer;
        text-align: center;
        color: #fff;
        background: linear-gradient(135deg,
            #9EB140 0%,
            #C0CF7B 50%,
            #F6DD7C 100%
        );        
    }

    .hamburger-txt {
        display: block;
    }

    .ham-line {
        display: block;
        position: absolute;
        width: 32px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        background: #fff;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    .ham-line-01 {
        top: 50%;
    }

    .ham-line-02 {
        top: calc(50% + 8px);
    }

    .ham-line-03 {
        top: calc(50% + 16px);
    }

        /* ナビ開いてる時のボタン */
    .hamburger.active .ham-line-01 {
        top: calc(50% + 8px);
        left: 20px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
        
    .hamburger.active .ham-line-02 {
        opacity: 0;
    }

    .hamburger.active .ham-line-03 {
        top: calc(50% + 8px);
        left: 20px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header-nav {
        position: fixed;
        z-index : 20;
        top  : 100px;
        right: 0;
        background: linear-gradient(135deg,
            #EEF5DE 0%,
            #FBF3E1 76%,
            #FAF1C9 100%);
        text-align: center;
        transform: translateX(100%);
        transition: all 0.5s;
        width: 100%;
        height: calc(100vh - 100px);
        opacity: 0;
    }

    .header-ul {
        width: 100%;
        margin: 0 auto;
        height: 100%;
        padding: 0 5vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        font-weight: 700;
        z-index: 15;
    }

    .header-ul li {
        width: 100%;
        padding: 16px 0;
        border-bottom: dotted 1px #fff;
    }

    .header-nav ul li a {
        gap: 8px;
    }

    .h-contact-btn {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

    /* このクラスを、jQueryで付与・削除する */
    .header-nav.active {
        transform: translateX(0);
        opacity: 1;
    }
    /*終わり*/     
/*終わり*/


/*<section class="under-fv">*/
    .under-fv {
        margin-top: 100px;
        height: 160px;
    }

    .under-h1-txt {
        font-size: clamp(48px, 56vw / 10.24, 56px);
    }

    .under-h1 {
        font-size: clamp(14px, 16vw / 10.24, 16px);
    }
/*終わり*/


/*<section class="achieve">*/
    .achieve-flex {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
/*終わり*/


/*<section class="courses">*/
    .courses-wrap {
        max-width: 700px;
    }

    .courses-con {
        flex-direction: column;
        gap: 24px;
    }

    .courses-img-wrap {
        width: 100%;
    }

    .courses-txt-wrap {
        width: 100%;
    }
/*終わり*/


/*<div class="sns-grid">*/
/*終わり*/


/*<section class="faq">*/
/*終わり*/


/*<section class="contact">*/
/*終わり*/


/*<footer class="footer">*/
    .footer-in {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-wrap-01 {
        flex-direction: column;
        gap: 16px;
    }

    .footer-ul-02 {
        margin: 24px 0 8px 0;
    }
/*終わり*/
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .parent {
        padding: 64px 5vw;
    }

    /*ボタン*/
    .btn {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    /*<div class="h2-title-wrap">*/
    .h2-title-wrap {
        margin-bottom: clamp(16px, 24vw / 5.99, 24px);
    }

    .h2-title-txt {
        font-size: clamp(32px, 40vw / 5.99, 40px);
    }
/*終わり*/  


/*<header class="header">*/
    .header {
        height: 80px;
    }

    .header-logo-txt-01 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .header-logo-txt-01 span {
        font-size: clamp(14px, 18vw / 5.99, 18px);
    }

    .header-nav {
        top  : 80px;
        height: calc(100vh - 80px);
    }

    .h-contact-btn {
        max-width: 240px;
    }
/*終わり*/


/*<section class="under-fv">*/
    .under-fv {
        margin-top: 80px;
        height: 140px;
    }

    .under-h1-txt {
        font-size: clamp(32px, 48vw / 5.99, 48px);
    }
/*終わり*/


/*<section class="achieve">*/
    .achieve-flex {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 8px;
    }

    .achieve-con {
        padding: 12px;
    }

    .achieve-con-txt-01 {
        font-size: 12px;
    }

    .achieve-con-txt-02 span {
        font-size: 20px;
    }
/*終わり*/


/*<section class="courses">*/
    .courses-con {
        padding: clamp(32px, 40vw / 5.99, 40px) clamp(20px, 32vw / 5.99, 32px);
    }

    .courses-h3 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

    .courses-txt-flex {
        flex-direction: column;
    }

    .courses-txt {
        width: max-content;
    }
/*終わり*/


/*<div class="sns-grid">*/
    .sns-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 8px;
    }

    .sns-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="faq">*/
    .faq-wrap {
        gap: clamp(8px, 16vw / 5.99, 16px);
    }

    .nav-open,
    .faq-txt {
        padding: clamp(8px, 16vw / 5.99, 16px);
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

/*終わり*/


/*<section class="contact">*/
    .contact-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<footer class="footer">*/
    .footer {
        padding: 40px 3vw 16px 3vw;
    }

    .footer-ul-01 {
        gap: 4px clamp(16px, 24vw / 5.99, 24px);
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .footer-ul-02 li {
        font-size: clamp(12px, 14vw / 5.99, 14px);
    }
   
/*終わり*/
}