@charset "UTF-8";

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
body {
    overflow-x: hidden;
}

.mainimg {
    position: relative;
    margin-top: 97px;
}

.bgimg img {
    width: 100%;
    object-fit: cover;
    max-height: 252px;
    min-height: 252px;
}

.text_img {
    position: absolute;
    top: 50px;
    right: 0;
    left: 11px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.symbol_wrap {
    position: relative;
    z-index: 10;
}

.symbol {
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
    bottom: 0;
}

.symbol img {
    margin: 0 auto;
}




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

    .mainimg {
        margin-top: 72px;
    }

    .symbol_wrap {
        z-index: 10;
    }
}

@media screen and (max-width: 480px) {
    .mainimg {
        margin-top: 58px;
    }

    .bgimg img {
        min-height: 200px;
    }

    .text_img img {
        max-height: 80px;
    }

    .symbol img {
        max-width: 80px;
        padding-right: 0;
    }

    .text_img {
        left: 0;
    }

}

.text_block p {
    display: block;
    width: auto;
    margin: 0 auto;
    font-size: 1.7rem;
    line-height: 1.5;
    text-align: -webkit-auto;
}

/*-------------------------------------------*/
/*スクール*/
/*-------------------------------------------*/

/*-------------------------------------------*/
/*ヒーローイメージ*/
/*-------------------------------------------*/


.hero {
    position: relative;
    z-index: 1;
}

.hero_bgimg img {
    width: 100%;
    object-fit: cover;
    max-height: 600px;
    min-height: 600px;
}

.hero_text_img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    justify-content: center;
    align-items: flex-start;
}

.hero_text_img h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero_text_img h2 img {
    margin-top: 30px;
}

.hero_text_img.maxWid {
    max-width: 1200px;
}

.scroll_btn {
    position: absolute;
    bottom: 33px;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: auto;
    z-index: 100;
}

.scroll_btn a {
    display: flex;
    justify-content: center;
    z-index: 100;
}

@media screen and (min-width: 1201px) {
    .hero_bgimg img {
        width: 100%;
        object-fit: cover;
        max-height: 800px;
        min-height: 600px;
    }
}

@media screen and (max-width: 480px) {
    .hero_bgimg img {
        min-height: auto;
    }

}

/*-------------------------------------------*/
/*スクロールダウンボタン*/
/*-------------------------------------------*/
/* スクロールボタンのふわふわアニメーション */
.scroll_btn {
    text-align: center;
}

.scroll_btn a {
    display: inline-block;
    /* transform を効かせるため */
    will-change: transform;
    animation: bob 2.4s ease-in-out infinite;
    -webkit-animation: bob 2.4s ease-in-out infinite;
}

.scroll_btn img {
    display: block;
    max-width: 100%;
    padding-left: 13px;
}

/* アニメーション定義 */
@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    /* 下に12px移動（調整可） */
}

@-webkit-keyframes bob {

    0%,
    100% {
        -webkit-transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(12px);
    }
}

/* マウスホバー時は少し大きく・動きを強調 */
.scroll_btn a:hover {
    transform: translateY(16px) scale(1.02);
}

/* アクセシビリティ: モーションを減らしたい設定がある場合は無効化 */
@media (prefers-reduced-motion: reduce) {
    .scroll_btn a {
        animation: none;
        -webkit-animation: none;
        transform: none;
    }
}

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

    .scroll_btn img {
        max-height: 65px;
        padding-left: 0;
    }
}

/*-------------------------------------------*/
/*ABOUT*/
/*-------------------------------------------*/
section.about {
    margin-bottom: 183px;
    background-image: url(img/about_bgimg@2x.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 116px;
    padding-bottom: 56px;
}

.bg_logo {
    position: relative;
    z-index: 0;
}

.bg_logo img {
    position: absolute;
    top: -60px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.about .about_heading h3 {
    display: flex;
    justify-content: center;
}

.about_heading {
    margin-bottom: 36px;
    position: relative;
    z-index: 90;
}

.about_text {
    width: 70%;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 60px;
    position: relative;
    z-index: 99;
}

.about_text p {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.7;
}

.about_btn_area {
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 50;
}

@media screen and (max-width: 768px) {
    section.about {
        margin-bottom: 130px;
    }

    .about_text {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    section.about {
        margin-bottom: 0px;
    }

    .about_text p {
        font-size: 1.3rem;
    }

    .bg_logo img {
        top: -30px;
    }

    section.about {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}


/*-------------------------------------------*/
/*バナーエリア*/
/*-------------------------------------------*/
.school_bnr {
    margin-top: 100px;
    margin-bottom: 268px;
}

@media screen and (max-width: 768px) {
    .school_bnr {
        margin-bottom: 130px;
    }

}

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

    .school_bnr {
        margin-bottom: 100px;
        margin-top: 80px;
    }
}

/*-------------------------------------------*/
/*育成方針*/
/*-------------------------------------------*/
section.philosophy {
    margin-top: 100px;
    margin-bottom: 350px;
    position: relative;
}

section.philosophy::after {
    position: absolute;
    content: "";
    background-color: #f6f7fa;
    z-index: -1;
    width: 100VW;
    height: calc(100% + 145px);
    top: 32px;
}

.philosophy .heading_title {
    margin-bottom: 96px;
}

.philosophy .heading_title h3 {
    display: flex;
    justify-content: center;
}

.philosophy .heading_text {
    width: 70%;
    margin: 0 auto;
    margin-top: 50px;
}

.philosophy .text_wrap {
    width: 45%;
}

.philosophy .text_block .heading h4 {
    margin-bottom: 40px;
}

.philosophy .text_block .heading {
    margin-bottom: 24px;
}

.image_wrap {
    width: 50%;
}

.philosophy .on_the_pitch .image_block {
    border-radius: 10px;
    margin-left: calc(100% - 50vw);
}

.philosophy .on_the_pitch .image_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 450px;
    min-height: 332px;
    object-position: center;
    border-radius: 0px 10px 10px 0px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.16);
}

.on_the_pitch.flex {
    justify-content: space-between;
    margin-bottom: 160px;
}


.philosophy .off_the_pitch .image_block {
    border-radius: 10px;
    margin-right: calc(100% - 50vw);
}

.philosophy .off_the_pitch .image_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 450px;
    min-height: 332px;
    object-position: center;
    border-radius: 10px 0px 0px 10px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.16);
}


.off_the_pitch.flex {
    justify-content: space-between;
}

.philosophy .text_block p {
    display: block;
    width: auto;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.7;
    text-align: -webkit-auto;
}


@media screen and (max-width: 768px) {
    .philosophy .heading_text {
        width: 100%;
    }

    .on_the_pitch.flex {
        flex-direction: column-reverse;
        margin-bottom: 100px;
    }

    .off_the_pitch.flex {
        flex-direction: column;
    }

    .philosophy .text_wrap {
        width: 100%;
    }

    .image_wrap {
        width: 100%;
    }

    .philosophy .on_the_pitch .image_block {
        margin-left: auto;
    }

    .philosophy .off_the_pitch .image_block {
        margin-right: auto;
    }

    .philosophy .on_the_pitch .image_block img,
    .philosophy .off_the_pitch .image_block img {
        border-radius: 10px;
    }

    .philosophy .text_block {
        margin-bottom: 20px;
    }

    .philosophy .text_block .heading h4 {
        margin-bottom: 20px;
    }

    section.philosophy {
        margin-bottom: 240px;
    }

    .philosophy .on_the_pitch .image_block img,
    .philosophy .off_the_pitch .image_block img {
        max-height: none;
        min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .heading_title img {
        height: 70px;
    }

    .philosophy .heading h4 img {
        height: 50px;
    }

    .philosophy .heading span img {
        height: 50px;
        object-fit: contain;
    }

    .philosophy .text_block p {
        font-size: 1.3em;
    }

    .philosophy .text_block .heading h4 {
        margin-bottom: 15px;
    }

    .philosophy .text_block .heading {
        margin-bottom: 25px;
    }

    section.philosophy::after {
        height: calc(100% + 60px);
    }

    section.philosophy {
        margin-bottom: 150px;
    }



}




/*-------------------------------------------*/
/*指導内容*/
/*-------------------------------------------*/
section.instruction {
    margin-top: 100px;
    margin-bottom: 214px;
}

.instruction .heading_title {
    margin-bottom: 117px;
}

.instruction .heading_title h3 {
    display: flex;
    justify-content: center;
}

.instruction .heading_text {
    width: 70%;
    margin: 0 auto;
    margin-top: 50px;
}

.instruction_item {
    position: relative;
    background-image: url(img/instruction_bgimg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 64px 30px 57px 30px;
    margin-bottom: 114px;
}

.instruction_item.num01 {
    padding-bottom: 5px;
    padding-top: 62px;
    margin-bottom: 113px;
}

.num01 .image_block img {
    padding-right: 60px;
    padding-top: 11px;
}

.instruction_num {
    position: absolute;
    top: -43px;
}

.instruction .flex {
    justify-content: space-between;
}

.instruction .text_wrap {
    width: calc(50% - 20px);
}

.instruction_item .image_block {
    width: 50%;
    display: flex;
    justify-content: end;
}

.instruction_item.num01 .image_block {
    margin-top: -56px;
    width: 43%;
}

.instruction .heading {
    border-bottom: 1px dotted #999999;
    margin-bottom: 15px;
    padding-bottom: 18px;
}

.instruction_copy {
    margin-bottom: 15px;
    display: block;
}

.instruction .text_block p {
    font-size: 1.5rem;
    line-height: 1.7;
}

@media screen and (max-width: 1000px) {
    .num01 .image_block img {
        padding-right: 0px;
        padding-top: 0px;
    }

    .instruction_item.num01 .image_block {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .instruction .heading_text {
        width: 100%;
    }

    .instruction .flex {
        flex-direction: column;
    }

    .instruction .text_wrap {
        width: 100%;
    }

    .instruction_item.num01 .image_block {
        margin-top: auto;
        width: 100%;

    }

    .instruction_item .image_block {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-top: 30px;
    }

    .instruction_item {
        padding: 40px;
    }
}

@media screen and (max-width: 480px) {
    .instruction_num img {
        height: 45px;
    }

    .instruction_num {
        top: -34px;
    }

    .instruction_item.num01 {
        padding-bottom: 0px;
        padding-top: 40px;
    }

    .instruction_item {
        padding: 40px 25px;
    }

    .instruction .text_block p {
        font-size: 1.3rem;
        line-height: 1.7;
    }

    .instruction_item {
        margin-bottom: 60px;
    }

    .instruction_copy {
        margin-bottom: 10px;
        display: block;
    }

    span.instruction_copy img {
        max-height: 20px;
    }

    .instruction .heading {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    section.instruction {
        margin-top: 100px;
        margin-bottom: 100px;
    }



}

/*-------------------------------------------*/
/*スクール情報*/
/*-------------------------------------------*/
section.information .maxWid {
    max-width: 800px;
}

.information .heading_title h3 {
    display: flex;
    justify-content: center;
}

.information .heading_title {
    margin-bottom: 105px;
}

.information .text_wrap,
.information .image_block {
    width: 50%;
}

.information .text_block {
    max-width: 88%;
}


.information .grade_heading,
.information .price_heading,
.information .place_heading {
    border-bottom: 1px solid #ca008a;
    padding-bottom: 8px;
    margin-bottom: 13px;
}

.information .text_block span {
    display: block;
    font-size: 1.5rem;
}

.information span.category {
    font-size: 1.8rem;
    font-feature-settings: "palt";
    margin-bottom: 4px;
}

.grade_detail_1 {
    margin-bottom: 25px;
}

.grade_detail,
.price_detail {
    margin-bottom: 41px;
}

.price_detail.flex {
    gap: 28px;
}

.price_detail.flex span,
.place_detail span {
    line-height: 1.7;
}

.map {
    margin-top: 97px;
    margin-bottom: 290px;
}

.information .map .heading_title {
    margin-bottom: 43px;
}

.map_section {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 45%;
}

.map_section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .information .image_block {
        width: 40%;
    }

    .information .text_wrap {
        width: 60%;
    }

    .information .flex {
        justify-content: space-between;
    }

    .information .price_detail.flex {
        justify-content: flex-start;
    }

}

@media screen and (max-width: 480px) {
    .information .flex {
        flex-direction: column;
    }

    .information .text_wrap {
        width: 100%;
    }

    .information .price_detail.flex {
        justify-content: flex-start;
        flex-direction: row;
    }

    .information .image_block {
        width: 100%;
        margin-top: 30px;
    }

    .map .heading_title img {
        height: 20px;
    }

    .information .map .heading_title {
        margin-bottom: 30px;
    }

    .grade_heading img,
    .price_heading img,
    .place_heading img {
        max-height: 20px;
    }

    .information .heading_title {
        margin-bottom: 50px;
    }

    .information span.category {
        font-size: 1.6rem;
    }

    .information .text_block span {
        display: block;
        font-size: 1.3rem;
    }

    .information .text_block {
        max-width: 100%;
    }

    .map_section {
        padding-top: 90%;
    }

    .map {
        margin-top: 80px;
        margin-bottom: 100px;
    }

}

/*-------------------------------------------*/
/*お問い合わせ*/
/*-------------------------------------------*/
.contents_block {
    background-image: url(img/contact_bgimg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 90px;
    padding-bottom: 93px;

}

.contact_text_block p {
    color: #fff;
}

.contact .heading_title h3 {
    display: flex;
    justify-content: center;
}

.contact .heading_title {
    margin-bottom: 32px;
}

.contact_text_block {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 56px;
}

.contact_text_block p {
    line-height: 1.9;
}

.contact_btn {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .contact_text_block p br {
        display: none;
    }

}

@media screen and (max-width: 480px) {
    .contact .heading_title img {
        height: 25px;
    }
}


.contact_btn a,
.about_btn_area a {
    transition: transform 0.3s ease;
}

.contact_btn a:hover,
.about_btn_area a:hover {
    transform: scale(1.05);
    opacity: 1;
}