body {
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
}

.no_scroll {
    overflow: hidden;
}

img {
    width: 100%;
}

p {
    color: #222222;
}

a {
    text-decoration: none;
    color: #FFF;
}

a[href^="tel:"] {
    pointer-events: none;
}

@media screen and (max-width:768px) {
    a {
        text-decoration: underline;
    }

    a[href^="tel:"] {
        pointer-events: auto;
    }
}

:root {
    --main-color: #afeeee;
    --lower-color: #edfafa;
}

/*-------------メイン共通-------------*/
.color_red {
    color: #DE4E2B !important;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.header__container {
    width: 100%;
    margin: 0 auto;

}

/* 下からフェードイン */
.fadeIn_up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media screen and (max-width:768px) {
    .container {
        max-width: none;
    }
}

.about,
.features,
.staff,
.price,
.access,
.faq {
    padding: 80px 0;
}

@media screen and (max-width:768px) {

    .about,
    .features,
    .staff,
    .price,
    .access,
    .faq {
        padding: 40px 0;
    }
}

.features,
.price,
.faq {
    background-color: var(--lower-color);
}

.section_title {
    font-size: 22px;
    line-height: 27px;
    font-weight: bold;
    letter-spacing: 1.1px;
    color: #17c6c6;
    text-align: center;
}

.section_subtitle {

    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width:768px) {
    .section_title {
        line-height: 18px;
        font-size: 14px;
    }

    .section_subtitle {
        line-height: 33px;
        font-size: 22px;
    }
}

/*-------------HEADER-------------*/
html {
    scroll-padding-top: 60px;
}

@media screen and (max-width:768px) {
    html {
        scroll-padding-top: 50px;
    }
}

header {
    background-color: var(--main-color);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

header a {
    color: #222222;
    text-decoration: none;
    display: block;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
}

.header_left {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.header_left a {
    padding: 20px 0 20px 20px;
    font-weight: bold;
    font-size: 1.125rem;
    font-size: clamp(1.125rem, 0.5535714285714286rem + 1.1904761904761905vw, 1.625rem);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a img {
    width: auto;
    height: 1.25rem;
    height: clamp(1.25rem, 0.8928571428571429rem + 1.7857142857142856vw, 2.5rem);
}

.header_right {
    display: flex;
    align-items: center;
}

.header_right li a {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0.3125rem;
    padding-left: clamp(0.3125rem, -0.044642857142857095rem + 0.744047619047619vw, 0.625rem);
    padding-right: 0.3125rem;
    padding-right: clamp(0.3125rem, 0.22321428571428573rem + 0.4464285714285714vw, 0.625rem);
    font-weight: bold;
    transition: all 0.3s;
    font-size: 0.625rem;
    font-size: clamp(0.625rem, 0.3392857142857143rem + 0.5952380952380952vw, 0.875rem);
}

.header_right li a:hover {
    opacity: 0.7;
}


@media screen and (max-width:768px) {
    .header_left a {
        font-size: 0.875rem;
        font-size: clamp(0.875rem, 0.6071428571428572rem + 1.3392857142857142vw, 1.25rem);
    }

    .header_right {
        display: none;
    }
}

/*-------------HUMBERGER-------------*/
.hamburger {
    display: none;
}

.modal {
    display: none;
}

.open_btn {
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    top: 5px;
    cursor: pointer;
}

/*ボタン内側*/
.open_btn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 1px;
    background: #222222;
    width: 20px;
}

.open_btn span:nth-of-type(1) {
    top: 14px;
}

.open_btn span:nth-of-type(2) {
    top: 22px;
}

.open_btn span:nth-of-type(3) {
    top: 30px;
}

/*activeクラスが付与されると線が回転して×に*/

.open_btn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.open_btn.active span:nth-of-type(2) {
    opacity: 0;
    /*真ん中の線は透過*/
}

.open_btn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media screen and (max-width:768px) {
    .hamburger {
        display: block;
        z-index: 10;
    }

    .modal {
        display: block;
    }

    .menu_modal {
        position: fixed;
        width: 100%;
        height: 100vh;
        text-align: center;
        background: rgba(0, 0, 0, 70%);
        margin-top: 60px;
        overflow: auto;
        opacity: 0;
        padding: 5px 0 0;
        visibility: hidden;
        transition: .3s;
        box-sizing: border-box;
        z-index: 10;
    }

    .menu_modal.active {
        opacity: 1;
        visibility: visible;
    }

    .menu_modal li {
        text-align: center;
    }

    .menu_modal li:first-child {
        padding: 20px 0 0;
    }

    .menu_modal li a {
        color: #FCF9F5;
        text-decoration: none;
        display: block;
        padding: 10px 0;
        font-size: 0.75rem;
        font-size: clamp(0.75rem, 0.5714285714285714rem + 0.8928571428571428vw, 1rem);

    }
}

/*-------------HERO-------------*/
/* .hero {
    padding-top: 66px;
    width: 100%;
}

 */

.hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
    padding-top: 66px;
    position: relative;
}

@media screen and (max-width:768px) {
    .hero {
        padding-top: 35px;
        height: 300px;
    }

}

.slider-image img {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 60px;
    left: 0;
    object-fit: contain;
    opacity: 0;
    transition: 3s;
}

@media screen and (max-width:768px) {
    .slider-image img {
        height: 300px;
        object-fit: contain;
        top: 50px;
    }

}

.slider-image img.active {
    width: 100%;
    opacity: 1;
}

/*-------------ABOUT-------------*/
.about_text {
    margin: 60px auto 0 auto;
    border: 2px solid var(--main-color);
    padding: 45px 20px;
}

.about_text p {
    font-size: 16px;
    line-height: 30px;
    margin: 0 auto;
    text-align: center;
}

.about_text ul {
    padding: 40px 0 0;
    font-weight: bold;
    font-size: 16px;
    line-height: 30px;
    margin: 0 auto;
    text-align: right;

}


@media screen and (max-width:768px) {
    .about_text {
        width: 90%;
        margin: 30px auto 0 auto;
        padding: 25px 0;
    }

    .about_text p {
        line-height: 20px;
        font-size: 14px;
        text-align: left;
        width: 85%;
    }

    .about_text ul {
        line-height: 20px;
        font-size: 14px;
        text-align: right;
        width: 85%;

    }
}

/*-------------FEATURES-------------*/
.feature_item_wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 60px;
}

.feature_item {
    width: 30%;
}

.feature_item_img {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.feature_item_subtitle {
    margin-top: 30px;
    font-size: 16px;
    line-height: 24px;
    color: #17c6c6;
    text-align: center;
}

.feature_item_title {
    margin-top: 10px;
    font-size: 20px;
    line-height: 29px;
    font-weight: bold;
    text-align: center;
}

.feature_item_text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 30px;
}

@media screen and (max-width:768px) {
    .feature_item_wrapper {
        row-gap: 40px;
    }

    .feature_item {
        width: 80%;
    }

    .feature_item_subtitle {
        margin-top: 30px;
        font-size: 14px;
        line-height: 20px;
    }

    .feature_item_title {
        margin-top: 10px;
        font-size: 18px;
        line-height: 27px;
    }

    .feature_item_text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 30px;
    }
}

/*-------------STAFF-------------*/
.staff_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 70px;
    gap: 40px;
}

.staff_img {
    width: calc(30% - 20px);
}


.staff_text_wrapper {
    width: calc(70% - 20px);
}

.staff_text_title {
    font-size: 20px;
    font-weight: bold;
    line-height: 29px;
    color: #17c6c6;
    display: inline;
    width: fit-content;
    background: linear-gradient(transparent 50%, #DE4E2B33 0%);
}

.staff_text_title span {
    font-size: 32px;
}

.staff_text {
    margin-top: 35px;
}

.staff_text p {
    font-size: 16px;
    line-height: 30px;
}

.staff_text ul li {
    text-indent: -16px;
    margin-left: 16px;
    line-height: 30px;
}

.staff_text ul li:not(:first-child) {
    padding-top: 30px;
}

@media screen and (max-width:768px) {
    .staff_wrapper {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        row-gap: 10px;
    }

    .flex_reverse {
        flex-direction: column-reverse;
    }

    .staff_img {
        width: 90%;
    }

    .staff_text_wrapper {
        width: 90%;
    }

    .staff_text_title {
        font-size: 16px;
        line-height: 24px;
    }

    .staff_text_title span {
        font-size: 25px;
    }

    .staff_text {
        margin-top: 20px;
    }

    .staff_text p {
        font-size: 14px;
        line-height: 30px;
    }
}

/*-------------PRICE-------------*/
.table_title {
    margin: 60px auto 0 auto;
}

.table_title p {
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.table_title p::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.price_table {
    margin-top: 60px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.price_table th {
    background-color: var(--main-color);
    color: #222222;
    padding: 14px 0;
}

.price_table td {
    background-color: #FFFFFF;
    color: #222222;
    padding: 28px 0;
    line-height: 24px;
    border-bottom: 1px solid var(--lower-color);
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.price_table td span {
    font-size: 12px;
    display: block;
    line-height: 18px;
}

.plan_item {
    width: 70%;
}

.plan_price {
    width: 30%;
}

.coupon_type {
    width: 30%;
}

.coupon_count {
    width: 10%;
}

.coupon_price {
    width: 40%;
}

.coupon_note {
    width: 20%;
}

.border_right {
    border-right: 1px solid var(--lower-color);
}

@media screen and (max-width:768px) {
    .table_title {
        margin: 30px auto 0 auto;
    }

    .table_title p {
        font-size: 18px;
        line-height: 27px;
    }

    .price_table {
        width: 90%;
        font-size: 14px;
        margin: 45px auto 0 auto;
    }

    .scroll {
        white-space: nowrap;
        width: 200%;
    }

    .plan_item {
        width: 50%;
    }

    .plan_price {
        width: 50%;
    }

    .price_table_scroll {
        width: 90%;
        overflow-x: scroll;
        margin: 0 auto;
    }

    .coupon_type {
        width: 170px;
    }

    .coupon_count {
        width: 87px;
    }

    .coupon_price {
        width: 200px;
    }

    .coupon_note {
        width: 150px;
    }
}

.price-note {
    padding: 20px 0 0;
}

.price-note a {
    color: #222222;
    text-decoration: underline;
    font-weight: bold;
}

.price-note a:hover {
    opacity: 0.7;
}



@media screen and (max-width:768px) {
    .price-note {
        padding: 20px 20px 0;
    }
}

/*-------------ACCESS-------------*/
.access_wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.access_table {
    width: 50%;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #222222;

}

.access_table tr {
    display: flex;
    margin: 0 auto;
    gap: 5px;
}

.access_table tr+tr {
    padding-top: 40px;
}

.access_table a {
    color: #222222;
}

.access_item_title {
    width: 30%;
    color: #17c6c6;
}

.access_item_text {
    width: 70%;
}

.map {
    width: 50%;
}

@media screen and (max-width:768px) {
    .access_wrapper {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .access_table {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        color: #222222;
        margin-bottom: 30px;
    }

    .access_table tr+tr {
        padding-top: 10px;
    }


    .map {
        width: 100%;
    }
}

/*-------------------------ACCORDION・FAQ----------------------------*/
.accordion_area {
    margin-top: 60px;
}

.accordion_one {
    margin-bottom: 16px;
}

.accordion_area .accordion_one .ac_header {
    background-color: #ffffff;
    padding: 1.5rem 4rem 1.5rem 2rem;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition: .2s;
}

.accordion_area .accordion_one .ac_header:not(.open):hover {
    background-color: #ffffff;
}

.accordion_area .accordion_one:nth-child(odd) .ac_header {
    background-color: #ffffff;
}

.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
    background-color: #ffffff;
}

.accordion_area .accordion_one .ac_header .i_box {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 20px;
    height: 20px;
    margin-top: -10px;
}

.accordion_area .accordion_one .ac_header .i_box:before,
.accordion_area .accordion_one .ac_header .i_box:after {
    position: absolute;
    content: "";
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
}

.accordion_area .accordion_one .ac_header .i_box:before {
    border-top: 2px solid #17c6c6;
    width: 20px;
    height: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.accordion_area .accordion_one .ac_header .i_box:after {
    border-left: 2px solid #17c6c6;
    width: 0;
    height: 20px;
    top: 0;
    bottom: 0;
    right: 9px;
    transition: .3s;
}

.accordion_area .accordion_one .ac_header.open .i_box:after {
    height: 0;
}

.accordion_area .accordion_one .ac_inner {
    display: none;
    padding: 1.5rem 2rem 1.5rem 2rem;
    box-sizing: border-box;
    background: #fff;
}

.p-faq__headinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
}

.p-faq__headinner::before {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    left: 0;
    content: "Q．";
    color: #17c6c6;
    font-size: 20px;
    font-weight: bold;
}

.p-faq__headinner p.p-faq__q-txt {
    font-size: 16px;
    font-weight: bold;
}

.p-faq__bodyinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
}

.p-faq__bodyinner::before {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    left: 0;
    content: "A．";
    color: #DE4E2B;
    font-size: 20px;
    font-weight: bold;
}

.p-faq__bodyinner p.p-faq__a-txt {
    font-size: 16px;
}

@media screen and (max-width:768px) {
    .accordion_area {
        margin-top: 30px;
    }

    .accordion_one {
        width: 90%;
        margin: 0 auto 10px auto;
    }

    .p-faq__headinner p.p-faq__q-txt {
        font-size: 14px;
    }

    .p-faq__bodyinner p.p-faq__a-txt {
        font-size: 14px;
    }

    .p-faq__headinner::before {
        top: -5px;
    }

    .p-faq__bodyinner::before {
        top: -5px;
    }

}

/*-------------FOOTER-------------*/
footer {
    background-color: var(--main-color);
}

footer p {
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}

@media screen and (min-width:769px) {
    .pc_none {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .sp_none {
        display: none;
    }
}

.c-sns {
    display: flex;
    align-items: center;
}

.c-sns a:not(:first-child) {
    padding-left: 15px;
}

.c-sns img {
    width: 40px;
    height: auto;
}
