@charset "UTF-8";
/*==============================================================================
0.共通事項
1.fv
2.説明
3.イベント
4.3つの特長
5.講師
6.レッスン
7.営業時間
==============================================================================*/


/*============================================================================================================================================================
==============================================================================================================================================================

	0.共通事項

==============================================================================================================================================================
============================================================================================================================================================*/
.wave{
	padding-top: 50px;
    padding-bottom: 80px;
	position: relative;
    background-color: #c8d9de;

	&::before{
		content: "";
		width: 100%;
		height: 20px;
		position: absolute;
		top: -20px;
		left: 0;
		background-image: url(../1_img/base/wave-blue.svg);
        background-repeat: repeat-x;
        background-position: center bottom;
        background-size: auto 20px;
	}

    &.blue-2{
        background-color: #ebf0f0;

        &::before{
            background-image: url(../1_img/base/wave-blue_2.svg);
        }
    }

    &.white{
        background-color: #fff;

        &::before{
            background-image: url(../1_img/base/wave-white.svg);
        }
    }
}
@media all and (min-width: 769px){
    .wave{
        padding-top: 90px;
        padding-bottom: 170px;

		&::before{
			height: 50px;
			top: -50px;
			background-size: auto 50px;
		}
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	1.fv

==============================================================================================================================================================
============================================================================================================================================================*/
#fv{
    height: calc(100svh - 50px);

    & .fv-right{
        padding-top: 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;

        & h2{
            text-align: center;
            font-weight: var(--weight-bold);
        }

        & .fv-img{
            margin: 20px 20px 0;
            width: calc(100% - 40px);
            height: 100%;
            position: relative;
            border-radius: 10px 10px 0 0;
            overflow: hidden;

            & img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }

            &::before{
                width: 100px;
                height: 100px;
                content: "";
                position: absolute;
                top: 50px;
                left: 50%;
                z-index: 2;
                transform: translateX(-50%);
                background: url(../1_img/base/logo.svg) no-repeat center / 100% auto;
            }

            &::after{
                width: 100%;
                height: 30%;
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
                background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
            }
        }
        

        & .fv-free{
            position: absolute;
            right: 14px;
            bottom: 80px;
        }
        & .fv-free.only-sp{
            position: fixed;
            bottom: 60px;
            opacity: 0;
            transition: 500ms;
            z-index: 999;
        }
    }

    & .fv-menu{
        width: 100%;
        height: 70px;
        display: flex;
        gap: 1px;
        border: 1px solid #fff;

        & a{
            display: flex;
            align-items: center;
            justify-content: center;
            width: calc( (100% - 1px) / 2);
            background-color: var(--color-main);
            color: #fff;
            font-size: 1.8rem;
        }
    }
}

body.on{
    & #fv {
        & .fv-right {
            & .fv-free.only-sp{
                opacity: 1;
            }
        }
    }
}
/*==============================================================================

	fv PC

==============================================================================*/
@media all and (min-width: 769px){
    #fv{
        padding: 90px 0;
        height: auto;

        & .inner{
            position: relative;
        }

        & .fv-left{
            padding-left: 20px;
            width: 230px;
            position: absolute;
            top: 20px;
            left: 0;

            & ul{
                margin-top: 50px;
                padding-left: 10px;
                display: flex;
                flex-direction: column;
                gap: 30px;
                font-size: 2rem;
                line-height: 1;

                & li{
                    & > a {
                        padding-left: 40px;
                        display: block;
                        position: relative;
                        color: var(--color-font);

                        &::after{
                            content: "";
                            width: 27px;
                            height: 27px;
                            position: absolute;
                            top: 50%;
                            left: 0;
                            transform: translateY(-50%);
                            background-size: 100% auto;
                        }
                    }

                    &.menu-events a::after {
                        background-image: url(../1_img/base/menu-events.svg);
                    }

                    &.menu-features a::after {
                        background-image: url(../1_img/base/menu-features.svg);
                    }

                    &.menu-lesson a::after {
                        background-image: url(../1_img/base/menu-lesson.svg);
                    }

                    &.menu-contact a::after {
                        background-image: url(../1_img/base/menu-contact.svg);
                    }
                }

                

                & .nav-menu-base-home{
                    display: none;
                }
            }
        }
        & .fv-right{
            padding: 0;
            margin-left: auto;
            width: calc((100% - 980px) / 2 + 980px - 230px);
            height: 600px;
            position: relative;

            & h2{
                position: absolute;
                left: 30px;
                bottom: 25px;
                z-index: 2;
                text-align: left;
                line-height: 1.6;
                font-size: 2.9rem;
                letter-spacing: 0.25em;
                color: #fff;
                text-shadow: 5px 5px 7px rgba(0, 0, 0, 0.5);
                font-weight: var(--weight-regular);
            }

            & .fv-img{
                margin: 0;
                border-radius: 10px;

                &::before,&::after{
                    content: none;
                }
            }

            & .fv-free{
                position: fixed;
                right: 50px;
                bottom: 50px;
                z-index: 10;

                & img{
                    width: 135px;
                }
            }
        }

        & .fv-menu{
            width: auto;
            height: auto;
            position: absolute;
            top: -90px;
            right: 90px;
            z-index: 999;
            flex-direction: row;
            gap: 30px;
            border: none;

            & a{
                padding: 10px 20px 15px;
                width: 100%;
                background-color: var(--color-main);
                border-radius: 0 0 10px 10px;
                text-align: center;
                font-size: 1.6rem;
                font-weight: var(--weight-bold);
                line-height: 1.2;
            }
        }
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	2.説明

==============================================================================================================================================================
============================================================================================================================================================*/
#desc{
	padding-top: 40px;
	padding-bottom: 40px;
	text-align: center;
	font-weight: var(--weight-bold);

	& h2{
		padding: 0 20px 20px;
		display: inline-block;
		position: relative;
		font-size: 1.9rem;

		&::after{
			content: "";
			width: 100%;
			height: 4px;
			display: block;
			bottom: 0;
			left: 0;
			position: absolute;
			z-index: 1;
			background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='10' height='4'>\<circle cx='2' cy='2' r='2' fill='%23789baf'/>\</svg>") repeat-x center;
		}
	}

	& p{
		margin-top: 20px;
		line-height: 2.5;
	}

	& .inner{
		padding-top: 40px;
		padding-bottom: 40px;
		position: relative;

		& .deco{
			position: absolute;
			aspect-ratio: 1 / 1;
			border-radius: 100%;
			overflow: hidden;

			&.top.left.lsize{
				width: 40px;
				top: 0;
				left: 30px;
				background-color: #adc8d1;
			}
			&.top.left.ssize{
				width: 22px;
				top: 40px;
				left: 10px;
				background-color: #e0ebee;
			}
			&.top.right.ssize{
				width: 17px;
				top: 20px;
				right: 30px;
				background-color: #e0ebee;
			}
			&.btm.right.ssize{
				width: 27px;
				bottom: 35px;
				right: 12px;
				background-color: #adc8d1;
			}
			&.btm.right.lsize{
				width: 46px;
				bottom: 0px;
				right: 45px;
				background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='8'><circle cx='2' cy='2' r='1' fill='%23789baf'/><circle cx='7' cy='6' r='1' fill='%23789baf'/></svg>") repeat center;
				background-size: 10px 8px;
			}
		}
	}
}
/*==============================================================================

	説明 PC

==============================================================================*/
@media all and (min-width: 769px) {
	#desc{
		padding-top: 50px;
		padding-bottom: 50px;

		& h2{
			padding: 0 20px 30px;
			display: block;
			font-size: 3rem;
            letter-spacing: 0.25em;

			&::after{
				content: "";
				width: 100%;
				height: 4px;
				display: block;
				bottom: 0;
				left: 0;
				position: absolute;
				z-index: 1;
				background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='10' height='4'>\<circle cx='2' cy='2' r='2' fill='%23789baf'/>\</svg>") repeat-x center;
			}
		}

		& p{
			margin-top: 40px;
			font-size: 1.8rem;
			line-height: 2.5;
		}

		& .inner{
			padding-top: 60px;
			padding-bottom: 75px;
			width: 650px;

			& .deco{

				&.top.left.lsize{
					width: 77px;
					left: -80px;
				}
				&.top.left.ssize{
					width: 48px;
					top: 90px;
					left: -130px;
				}
				&.top.right.ssize{
					width: 50px;
					top: 90px;
					right: -130px;
				}
				&.btm.right.ssize{
					width: 52px;
					bottom: 60px;
					right: -140px;
				}
				&.btm.right.lsize{
					width: 90px;
					bottom: 0px;
					right: -80px;
					background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='8'><circle cx='2' cy='2' r='1.5' fill='%23789baf'/><circle cx='7' cy='6' r='1.5' fill='%23789baf'/></svg>") repeat center;
					background-size: 10px 8px;
				}
			}
		}
	}
}

/*============================================================================================================================================================
==============================================================================================================================================================

	3.イベント

==============================================================================================================================================================
============================================================================================================================================================*/
#event{
    margin-top: 0;

    & .event-intro{
        color: var(--color-main);
        font-size: 1.6rem;
        font-weight: var(--weight-bold);

        & figcaption{
            color: #506e85;

            & span{
                &::before, &::after {
                    background: radial-gradient(circle at 1px 1px, #506e85 0 1px, transparent 1px);
                    background-size: 4px 2px;
                    background-repeat: repeat-x;
                }
            }

            & small{
                font-size: 1.4rem;
            }
        }


        & .intro-img{
            margin-top: 10px;
            
            & img{
                width: 100%;
                border-radius: 10px;
                overflow: hidden;
            }
        }
    }

    /* New Events */
    & .event-schedule{
        margin-top: 20px;

        & h2{
            font-size: 1.6rem;
            font-weight: var(--weight-bold);
            color: var(--color-main);
        }

        & .schedule-list{
            margin-top: 5px;
            display: flex;
            flex-direction: column;
            gap: 5px;

            & .schedule-item{
                background-color: #fff;

                & .date-time{
                    padding: 5px 10px;
                    width: 100%;
                    display: flex;
                    align-items: center;
                    flex-shrink: 0;
                    flex-direction: row;
                    gap: 5px;
                    color: #fff;
                    background-color: var(--color-main);

                    & time{
                        display: block;
                        line-height: 1;

                        &.date{font-size: 1.5rem;}
                        &.start,&.end{font-size: 1.2rem;}
                        & span{font-size: 1rem;}
                    }
                }

                & .schedule-title{
                    padding: 10px;
                    font-family: var(--font-sub);
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: start;
                    gap: 0;

                    & h3{
                        font-weight: var(--weight-bold);
                    }

                    & p{
                        font-size: 1.1rem;

                        & a{
                            color: var(--color-font);
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
    }

    /* 年間のイベント */
    & .event-years{
        margin-top: 30px;

        & h2{
            padding: 5px 10px;
            text-align: center;
            border-radius: 10px 10px 0 0;
            background-color: var(--color-main);
            color: #fff;
            font-weight: var(--weight-bold);
        }

        & .years-content{
            padding: 20px 30px;
            border-radius: 0 0 10px 10px;
            background-color: #fff;
        }

        & .years-list{
            display: grid;
            gap: 5px;
            justify-content: center;

            & > div{
                padding: 0 5px 10px;
                position: relative;
                text-align: left;
                font-weight: var(--weight-bold);
                font-size: 1.7rem;

                &::after{
                    content: "";
                    width: 100%;
                    height: 4px;
                    display: block;
                    bottom: 0;
                    left: 0;
                    position: absolute;
                    z-index: 1;
                    background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='10' height='4'>\<circle cx='2' cy='2' r='2' fill='%23789baf'/>\</svg>") repeat-x center;
                }
            }
        }

        & .years-text{
            margin-top: 20px;
            font-family: var(--font-sub);
            line-height: 1.8;
        }
    }
    /* 年間のイベント end */
}
/*==============================================================================

	イベント PC

==============================================================================*/
@media all and (min-width: 769px) {
	#event{
        margin-top: 50px;

        /* イベント　イントロ */
        & .event-intro{
            display: flex;
            align-items: center;
            font-size: 2.3rem;

            & figcaption{
                padding-left: 40px;
                width: 50%;
                order: 2;

                & .fukidashi{
                    text-align: left;

                    & span{
                        padding: 0;

                        &::before,
                        &::after {
                            width: 40px;
                            height: 4px;
                            background:radial-gradient(circle at 2px 2px,var(--color-main) 0 2px,transparent 2px);
                            background-size: 8px 4px;
                        }

                        &::before {
                            top: -30px;
                            left: -6px;
                            transform: rotate(-40deg);
                        }
                        
                        &::after {
                            top: unset;
                            bottom: -30px;
                            left: -6px;
                            transform: rotate(40deg);
                        }
                    }
                }
            }

            & small{font-size: inherit;}

            & .intro-img{
                width: 50%;
                order: 1;
                margin-top: 0;
            }
        }
        /* イベント　イントロ　end */


        /* New Events */
        & .event-schedule{
            margin-top: 50px;

            & h2{font-size: 2.8rem;}

            & .schedule-list{
                margin-top: 10px;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px 40px;

                & .schedule-item{
                    width: calc( (100% - 40px) / 2 );

                    & .date-time{
                        padding: 5px 15px;
                        height: 50px;

                        & > span{font-size: 2.4rem;}

                        & time{
                            &.date{font-size: 2.4rem;}
                            &.start,&.end{font-size: 1.8rem;}
                        }
                    }

                    & .schedule-title{
                        padding: 15px;

                        & h3{font-size: 1.8rem;}
                        & p{font-size: 1.4rem;}
                    }
                }
            }
        }

        /* 季節のイベント */
        & .event-season{
            margin-top: 70px;
            margin-left: -110px;
            width: 1200px;

            & h2{
                padding: 0;
                border-radius: 0;
                background-color: unset;
                color: var(--color-main);
                font-size: 2.8rem;

                & span{
                    padding: 0 40px;
                    position: relative;

                    &::before,&::after{
                        content: "";
                        width: 20px;
                        aspect-ratio: 1 / 1;
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        background-color: var(--color-sub);
                        border-radius: 100%;
                    }
                    &::before{left: 0;}
                    &::after{right: 0;}
                }
            }
        }
        /* 季節のイベント end */


        /* 年間のイベント */
        & .event-years{
            margin: 70px auto 0;
            width: 880px;

            & h2{
                padding: 15px;
                font-size: 2.2rem;
            }

            & .years-content{padding: 30px;}

            & .years-list{
                display: flex;
                gap: 40px;

                & > div{
                    width: 220px;
                    text-align: center;
                    font-size: 1.7rem;

                    & .list-month{
                        display: block;
                        font-size: 2.2rem;
                    }
                }
            }

            & .years-text{
                margin: 25px auto 0;
                width: 740px;
                font-size: 1.4rem;
            }
        }
        /* 年間のイベント end */
    }
}



/*============================================================================================================================================================
==============================================================================================================================================================

	4.3つの特長

==============================================================================================================================================================
============================================================================================================================================================*/
#features{
    & .features-list{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    /* 3つの特長中身 */
    & .features-item{
        opacity: 0;
        transition: 1000ms;
        transform: translateY(30px);

        &.started{
            opacity: 1;
            transform: translateY(0px);
        }

        /* 画像 */
        & .item-img{
            width: 100%;
            border-radius: 10px;
            overflow: hidden;

            & img{
                width: 100%;
            }
        }

        /* テキスト */
        & .item-text{
            opacity: 0;
            transition: 1000ms;
            transform: translateY(30px);

            & h3{
                padding-top: 30px;
                position: relative;
                text-align: center;
                font-size: 1.8rem;
                font-weight: var(--weight-bold);
            }

            & p{
                margin-top: 20px;
                line-height: 2;
                font-family: var(--font-sub);
            }

            & .item-num{
                position: absolute;
                left: 0;
                top: -20px;
                z-index: -1;
                opacity: 0;
                transition: 1000ms 500ms;
                transform: translateY(30px);
            }

            &.started{
                opacity: 1;
                transform: translateY(0px);

                & .item-num{
                    opacity: 1;
                    transform: translateY(0px);
                }
            }
        }
    }
    /* 3つの特長中身 end */


    /* 無料体験 */
    & .features-free{
        margin-top: 60px;
        padding: 40px 20px 20px;
        position: relative;
        text-align: center;
        background: linear-gradient(0deg,rgba(255, 223, 127, 1) 0%, rgba(231, 165, 87, 1) 100%);

        /* 入会を検討されている方へ */
        & .free-consider{
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            transform: translateY(-50%);

            & span{
                padding: 10px 20px;
                display: inline-block;
                position: relative;
                color: #fff;
                background-color: #606060;
                font-weight: var(--weight-bold);
                font-family: var(--font-sub);
                font-size: 1.2rem;
                
                &::after {
                    content: "";
                    width: 20px;
                    height: 10px;
                    position: absolute;
                    top: calc(100% - 1px);
                    left: 50%;
                    transform: translateX(-50%);
                    clip-path: polygon(0 0, 50% 100%, 100% 0);
                    background-color: inherit;
                }
            }
        }

        & h3{
            color: #fff;
            font-size: 3.6rem;
            line-height: 1.4;
            letter-spacing: 0.2em;
        }

        /* 吹き出し */
        & .fukidashi{
            margin-top: 20px;
            color: #fff;

            & span {
                font-size: 1.2rem;
                font-family: var(--font-sub);

                &::before, &::after {
                    background: radial-gradient(circle at 1px 1px, #ffffff 0 1px, transparent 1px);
                    background-size: 4px 2px;
                    background-repeat: repeat-x;
                }
            }
        }
        & .free-img{
            margin-top: 10px;

            & img{
                border-radius: 100%;
                overflow: hidden;
            }
        }
        & .free-text{
            margin-top: 20px;
            font-family: var(--font-sub);

            & h4{
                font-size: 1.4rem;
                font-weight: var(--weight-bold);

                & span{
                    display: inline-block;
                    position: relative;
                    padding-left: 20px;

                    &::before{
                        content: "";
                        width: 10px;
                        aspect-ratio: 10 / 16;
                        position: absolute;
                        top: calc(50% + 1px);
                        left: 0;
                        transform: translateY(-50%);
                        background: url(../1_img/base/icon-alert.svg) no-repeat center / 100% auto;
                    }
                }
            }

            & p{
                margin-top: 10px;
                font-weight: var(--weight-medium);
                text-align: left;
                line-height: 1.8;

                & em{
                    color: var(--color-main);
                }
            }
        }
        & .free-line{
            margin-top: 20px;
            padding: 10px 5px;
            display: block;
            background-color: var(--color-main);
            color: #fff;
            font-family: var(--font-sub);
            font-weight: var(--weight-bold);
            font-size: 1.8rem;

            & span{
                padding-right: 30px;
                display: inline-block;
                position: relative;
                letter-spacing: 0.2em;

                &::before{
                    content: "";
                    width: 22px;
                    aspect-ratio: 1 / 1;
                    position: absolute;
                    top: 50%;
                    right: 0;
                    transform: translateY(-50%);
                    background: url(../1_img/base/btn.svg) no-repeat center / 100% auto;
                }
            }
        }
        & .free-note{
            margin-top: 10px;
            font-size: 1.2rem;
            font-family: var(--font-sub);
        }
    }
    /* 無料体験 end */
}
/*==============================================================================

	3つの特長 PC

==============================================================================*/
@media all and (min-width: 769px) {
	#features{
        & .features-list{
            gap: 70px;
        }
        /* 3つの特長中身 */
        & .features-item{
            display: flex;
            align-items: center;

            /* 画像 */
            & .item-img{
                width: 50%;
                aspect-ratio: 24 / 15;
            }

            /* テキスト */
            & .item-text{
                padding: 0 50px;
                width: 50%;

                & h3{
                    padding-top: 0px;
                    font-size: 2.5rem;
                }

                & p{font-size: 1.6rem;}

                & .item-num{
                    left: -30px;
                    top: -60px;
                    width: 100px;
                }
            }
        }
        & .features-item:nth-child(even){
            & .item-img{
                order: 2;
            }
            & .item-text{
                order: 1;
            }
        }
        /* 3つの特長中身 end */


        /* 無料体験 */
        & .features-free{
            margin-top: 110px;
            margin-left: -110px;
            width: 1200px;
            padding: 60px 0 50px;

            & > div{
                margin: auto;
                width: var(--min-width);
                display: flex;
                align-items: center;
            }

            /* 入会を検討されている方へ */
            & .free-consider{
                & span{
                    padding: 15px 50px;
                    font-size: 1.8rem;
                    
                    &::after {
                        width: 40px;
                        height: 20px;
                    }
                }
            }
            
            /* 画像と吹き出し */
            & .free-img_wrap{
                width: 290px;

                & .fukidashi{
                    margin-top: 0;

                    & span {
                        font-size: 1.4rem;

                        &::before, &::after {
                            background: radial-gradient(circle at 1px 1px, #ffffff 0 1px, transparent 1px);
                            background-size: 4px 2px;
                            background-repeat: repeat-x;
                        }
                    }
                }

                & .free-img{
                    margin-top: 15px;

                    & img{width: 100%;}
                }
            }

            /* テキスト */
            & .free-text_wrap{
                padding-left: 70px;
                width: calc( 100% - 290px );

                & h3{
                    font-size: 5.6rem;
                    text-align: left;
                }

                & .free-text{
                    margin-top: 30px;

                    & h4{
                        font-size: 1.8rem;
                        text-align: left;
                    }

                    & p{
                        margin-top:10px;
                        font-size: 1.6rem;
                        line-height: 2.2;
                    }
                }
            }
            & .free-line{
                margin: 30px auto 0;
                padding: 15px 5px;
                width: 380px;
            }
            & .free-note{
                font-size: 1.4rem;
            }
        }
        /* 無料体験 end */
    }
}




/*============================================================================================================================================================
==============================================================================================================================================================

	5.講師

==============================================================================================================================================================
============================================================================================================================================================*/
#instructor{
    
    & .inst-intro{
        font-size: 1.5rem;
        text-align: center;
        font-weight: var(--weight-bold);
        line-height: 2;

        & em{
            color: #506e85;
        }
    }

    & .inst-greeting{

        & picture{
            margin-top: 30px;
            margin-left: -20px;
            width: calc(100% + 40px);
            display: block;

            & img{
                width: 100%;
            }
        }

        & .greeting-text{
            margin-top: 30px;
            padding: 20px;
            position: relative;
            background-color: var(--color-accent);
            border-radius: 10px;

            & h3{
                text-align: center;
                color: #506e85;
                font-size: 1.8rem;
                font-weight: var(--weight-bold);
            }
            & p{
                margin-top: 10px;
                font-family: var(--font-sub);
            }
            
            &::before {
                content: "";
                width: 20px;
                height: 14px;
                position: absolute;
                bottom: calc(100% - 1px);
                left: 50%;
                transform: translateX(-50%);
                clip-path: polygon(50% 0, 0 100%, 100% 100%);
                background-color: inherit;
            }
        }
    }

    /* 経歴 */
    & .inst-career{
        margin-top: 25px;

        & h3{
            padding-left: 25px;
            position: relative;
            font-size: 1.5rem;
            font-weight: var(--weight-bold);

            &::before{
                content: "";
                width: 16px;
                aspect-ratio:  1 / 1;
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                background-color: var(--color-sub);
                border-radius: 50%;
            }
        }

        & .career-content{
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;

            & > div{
                margin-top: 20px;
                width: 100%;
                order: 2;

                & > p{
                    text-align: center;
                    color: var(--color-main);
                    font-weight: var(--weight-bold);
                    font-size: 1.6rem;
                }

                & ul{
                    margin-top: 15px;
                    font-family: var(--font-sub);
                    font-weight: var(--weight-bold);
                    gap: 5px;

                    & li::before {
                        background-color: var(--color-font);
                    }
                }
            }

            & img{
                max-width: 48%;
                width: 220px;
                flex-shrink: 0;
                order: 1;
            }
        }
    }
    /* 経歴 end */
}
/*==============================================================================

	講師 PC

==============================================================================*/
@media all and (min-width: 769px) {
	#instructor{

        & .overflow{
            overflow: hidden;
        }

        & .inst-intro{
            position: relative;
            font-size: 2.2rem;
            z-index: 2;
        }

        & .inst-greeting{
            margin-top: -70px;
            margin-left: -110px;
            width: 1200px;
            position: relative;
            z-index: 1;

            &::after{
                content: "";
                height: 147px;
                width: 200vw;
                display: block;
                position: absolute;
                left: -50vw;
                bottom: 0;
                background-color: var(--color-main);
            }

            & picture{
                margin-top: 10px;
                margin-left: 0;
                width: 100%;
                position: relative;
                z-index: 2;
            }

            & .greeting-text{
                margin-top: 0;
                padding: 0 0 15px;
                width: 460px;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: 170px;
                z-index: 10;
                background-color: unset;
                border-radius: 0;
                text-align: justify;
                border-bottom: 1px solid var(--color-main);

                & h3{
                    font-size: 1.8rem;
                    position: relative;

                    & span{
                        padding: 0 30px;
                        display: inline-block;
                        position: relative;
                        z-index: 2;
                        background-color: #fff;
                    }

                    &::after{
                        content: "";
                        width: 100%;
                        height: 1px;
                        position: absolute;
                        left: 0;
                        top: 50%;
                        background-color: var(--color-main);
                    }
                }
                & p{
                    margin-top: 5px;
                    padding: 0 20px;
                    font-size: 1.4rem;
                    line-height: 2;
                    font-weight: var(--weight-bold);
                }
                
                &::before {content: none;}
            }
        }
        & .inst-career{
            margin-top: 60px;

            & h3{
                padding-left: 40px;
                font-size: 2.5rem;

                &::before{
                    width: 30px;
                }
            }

            & .career-content{
                margin-top: 30px;
                flex-direction: row;
                justify-content: space-between;

                & > div{
                    margin-top: 0;
                    width: 600px;
                    order: 1;

                    & > p{
                        text-align: left;
                        font-size: 2.7rem;
                    }
                
                    & ul{
                        margin-top: 20px;
                        gap: 10px;
                        font-size: 1.6rem;
                    }
                }

                & img{
                    margin-top: -60px;
                    max-width: 100%;
                    width: 345px;
                    order: 2;
                }
            }
        }
    }
}




/*============================================================================================================================================================
==============================================================================================================================================================

	6.レッスン

==============================================================================================================================================================
============================================================================================================================================================*/
#lesson{
    & table{
        width: 100%;

        & th,& td{
            padding: 10px;
            text-align: center;
            font-family: var(--font-sub);
            font-weight: var(--weight-bold);
        }

        & thead{
            background-color: var(--color-main);
            color: #fff;
            font-size: 1.6rem;
        }
        & tbody{
            & tr:not(:first-child){
                border-top: 1px solid var(--color-font);
            }
            & th{
                background-color: var(--color-sub);
                color: var(--color-font);
            }
            & td{
                background-color: #fff;
            }
        }
    }

    & .lesson-ticket{
        margin-top: 20px;
    }

    /* レッスンの種類 */
    & .lesson-list{
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 30px;

        & table{
            & tbody{
                & tr.bdr-none{border-top: none;}
            }
        }

        & .list-item{
            opacity: 0;
            transform: translateY(30px);
            transition: 800ms;

            & .item-img{
                position: relative;

                & h3{
                    padding: 10px 15px;
                    display: inline-block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    background-color: #ebaa5f;
                    border-radius: 0 0 10px 0;
                    color: #fff;
                    font-size: 1.6rem;
                    font-weight: var(--weight-bold);
                }

                & img{
                    width: 100%;
                }
            }

            & p{
                margin-top: 20px;
                font-family: var(--font-sub);
                line-height: 2;
            }

            &.started{
                opacity: 1;
                transform: translateY(0);
            }
        }
    }
    /* レッスンの種類 end */
}

/*==============================================================================

	レッスン PC

==============================================================================*/
@media all and (min-width: 769px) {
	#lesson{
        & table{
            & th,& td{
                font-size: 2rem;
            }

            & thead{
                letter-spacing: 0.2em;
                font-size: 2.2rem;
            }
            & tbody{
                & th{
                    width: 50%;
                }
                & td{
                    width: 50%;
                }
            }
        }

        & .lesson-ticket{
            margin-top: 40px;
        }

        /* レッスンの種類 */
        & .lesson-list{
            margin: 70px auto 0;
            width: 940px;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 50px 35px;

            & .list-item{
                width: calc( ( 100% - ( 50px * 1) ) / 2 );

                & .item-img{
                    & h3{
                        padding: 8px 15px;
                        font-size: 2.2rem;
                        letter-spacing: 0.2em;
                    }
                }

                & table {
                    & tr th{
                        width: 160px;
                        font-size: 1.8rem;
                        vertical-align: middle;
                    }
                    & tr td{
                        width: auto;
                        font-size: 1.8rem;
                    }
                }

                & p{font-size: 1.4rem;}
                &.started{
                    opacity: 01;
                    transform: translateY(-30px);
                }
            }

            &.started{
                & .list-item:nth-child(1){
                    opacity: 1;
                    transform: translateY(0);
                }
                & .list-item:nth-child(2){
                    opacity: 1;
                    transform: translateY(0);
                    transition: 800ms 600ms;
                }
                & .list-item:nth-child(3){
                    opacity: 1;
                    transform: translateY(0);
                    transition: 800ms 1200ms;
                }
                & .list-item:nth-child(4){
                    opacity: 1;
                    transform: translateY(0);
                    transition: 800ms 1800ms;
                }
            }
        }
        /* レッスンの種類 end */
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	7.営業時間

==============================================================================================================================================================
============================================================================================================================================================*/
#information{
    & .info-time{
        display: flex;
        flex-direction: column;
        gap: 20px;

        & dl{
            border: 1px solid var(--color-main);
            border-radius: 10px;
            overflow: hidden;
            text-align: center;

            & dt{
                padding: 10px 15px;
                color: #fff;
                background-color: var(--color-main);
                font-family: var(--font-sub);
                font-size: 1.6rem;
            }

            & dd{
                padding: 15px;

                & time{
                    display: block;
                    color: var(--color-main);
                    font-family: var(--font-sub);
                    font-size: 1.5rem;
                    font-weight: var(--weight-bold);
                }

                & p{
                    margin-top: 5px;
                    font-size: 1.6rem;
                    font-weight: var(--weight-bold);
                }
            }
        }
    }

    /* 定休日 */
    & .info-holiday{
        margin-top: 20px;
        padding: 0 10px;
        font-family: var(--font-sub);
        color: #555555;
        text-align: center;

        & p:first-child{
            font-size: 1.3rem;
            font-weight: var(--weight-bold);
        }
        & p:last-child{
            margin-top: 5px;
            font-size: 1.2rem;
        }
    }

    & .carousel-wrap{
        margin-top: 25px;

        & li{
            width: 225px;
            overflow: hidden;
            border-radius: 5px;

            & img{
                width: 100%;
            }
        }
    }
}

/*==============================================================================

	レッスン PC

==============================================================================*/
@media all and (min-width: 769px) {
    #information{
        & .info-time{
            flex-direction: row;
            gap: 40px;

            & dl{
                width: calc( ( 100% - 40px ) / 2 );

                & dt{
                    font-weight: var(--weight-medium);
                    font-size: 2.2rem;
                }

                & dd{
                    & time{font-size: 2.2rem;}

                    & p{
                        margin-top: 5px;
                        font-size: 2.4rem;
                    }
                }
            }
        }

        /* 定休日 */
        & .info-holiday{
            margin-top: 40px;

            & p:first-child{
                font-size: 2rem;
            }
        }

        & .carousel-wrap{
            margin-top: 40px;

            & .carousel{
                gap: 40px;
            }

            & li{
                width: 360px;
            }
        }
    }
}