@charset "utf-8";
body{
	background-color: #F5F5F5;
}
.isPc{
	display: none;
}
.flex{
	display: flex;
}
.inner{
	max-width: 1280px;
	width: 90%;
}
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    color: #FFFFFF;
    transition: background-color 0.3s, color 0.3s;
	justify-content: space-between;
}
#logo{
	width: 180px;
	height: auto;
}
.nav-container {
	width: 90%;
	margin: 0 auto;
    justify-content: space-between;
    align-items: center;
	height: 65px;
}
#menu-toggle {
    display: block;
    cursor: pointer;
	width: 40px;
	height: auto;
	background-color: #FFFFFF;
	border-radius: 50%;
}
.close-icon {
    display: none;
    position: absolute;
    top: 13px;
    right: 5%;
    font-size: 42px;
	font-weight: 900;
	z-index: 100;
	width: 40px;
	height: 40px;
	color: #00A19A;
	border: 4px solid #00A19A;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
}
.close-icon span{
	position: absolute;
	top: 49%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#menu-toggle.active img {
    display: none;
}
#menu-toggle.active .close-icon {
    display: block;
}
#nav-menu {
    display: block;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    top: 0px; /* ヘッダーの高さを考慮 */
    right: 0px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 64px 0px 64px 64px;
    visibility: hidden;
}
#nav-menu ul {
    list-style: none;
    flex-direction: column;
	padding: 80px 35px 30px;
	gap: 30px;
}
#nav-menu ul li {
    margin: 0;
}
#nav-menu ul li a {
    color: #222222;
	font-size: 16px;
}
#nav-menu ul li .cta {
    color: #FFFFFF;
}
.cta {
    color: #FFFFFF;
	background: linear-gradient(to bottom,#E93308,#B52807);
	width: 240px;
	height: 50px;
	border-radius: 25px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}
.cta img {
	width: 15px;
	height: auto;
	margin-right: 5px;
}
.cta span:nth-last-child(1) {
    text-align: center;
	font-size: 10px;
	font-weight: 400;
	margin-top: -10px;
}
#nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
/* スクロール後のヘッダー */
.scrolled #header {
    background-color: white;
    color: #222222;
}
.scrolled #nav-menu ul li a {
    color: #222222;
}
.scrolled #nav-menu ul li .cta {
    color: #FFFFFF;
}
.fixFooter{
	position: fixed;
	bottom: 75px;
	right: 20px;
	z-index: 100;
	flex-direction: column;
	gap: 10px;
    opacity: 0;   /* 初期状態は非表示 */
    transition: opacity 0.3s ease; /* ふわっとしたアニメーション */
}
.fixFooter.show {
    opacity: 1;   /* 表示時 */
}
.fixFooter a{
	background-color: #00A19A;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
}
.fixFooter a:nth-last-child(1){
	background: linear-gradient(to bottom,#E93308,#B52807);
}
.fixFooter a img{
	width: 20px;
}
.spFooter{
	width: 280px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%);
	z-index: 100;
}
.bgArea{
	position: fixed;
	z-index: -100;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
}
.fvWrapper{
	width: 100%;
	overflow: hidden;
	height: 770px;
}
.fv{
	height: 690px;
	background-position: center center;
	background-size: cover;
	justify-content: center;
	flex-direction: column;
	color: #FFFFFF;
	gap: 10px;
	position: relative;
}
.fv video{
	border-bottom-right-radius: 345px;
	border-top-right-radius: 345px;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	object-fit: cover;
}
.fv h1{
	font-size: 36px;
	line-height: 1.2;
	font-weight: 900;
	padding-left: 5%;
}
.fv p{
	padding-left: 5%;
}
.fvDeco{
	position: absolute;
	z-index: -5;
}
.fvDeco.deco01{
	width: 140px;
	height: auto;
	bottom: -80px;
	left: -30px;
}
.fvDeco.deco01.pataa{
	width: 140px;
	height: auto;
	bottom: 0px;
	left: -30px;
}
.fvDeco.deco02{
	width: 140px;
	height: auto;
	bottom: 30px;
	right: -30px;
}
.contents{
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	margin-top: 100px;
}
#about{
	margin-top: 150px;
	position: relative;
	padding-bottom: 0px;
}
.contents h2{
	position: relative;
	width: 100%;
	background: #FFFBA0;
	color: #E83308;
	font-weight: 900;
	padding: 10px 20px;
	border-radius: 36px;
	line-height: 1.2;
	margin: 0 auto 20px;
	display: block;
}
#event h2{
	padding: 10px 80px 10px 20px;
}
#teacher .contents h2{
	margin-bottom: 50px;
}
.contents h2 img{
	position: absolute;
	width: 70px;
	right: 10px;
	top: -10px;
}
.contents h2 .ball{
	width: 50px;
	top: 0px;
}
.contents h2 .money{
	width: 60px;
	top: -10px;
}
.contents h2 .wine{
	width: 40px;
	top: -10px;
	right: 4%;
}
.contents h2 .food{
	width: 60px;
	top: 0px;
}
.contents h2 .bat{
	width: 50px;
	top: -5px;
}
.contents h2 .tops{
	width: 50px;
	top: -5px;
}
.contents h2 .archive{
	width: 40px;
	top: -10px;
}
.contents h2 .access{
	width: 70px;
	top: 0px;
}
#about.contents h2 img{
	transform: scale(-1, 1);
}
#about p{
	padding: 14px 20px;
	background-color: rgba(255,255,255,0.8);
}
#about .aboutImg{
	position: relative;
	width: 100%;
	height: 330px;
	margin: auto;
	margin-top: -170px;
}
#about .lowerAbout{
	height: clamp(280px, 12.057px + 76.555vw, 600px);
	margin-top: -50px;
	margin-bottom: -50px;
}
#about .lessonAbout{
	height: clamp(260px, -4.593px + 75.598vw, 576px);
	margin-top: -100px;
	margin-bottom: -30px;
}
#about .aboutImg img{
	position: absolute;
	border-radius: 50%;
	object-fit: cover;
}
#about .aboutImg img:nth-last-child(1){
	border-radius: 0px;
	border-top-left-radius: 200px;
	border-bottom-left-radius: 200px;
	width: 200px;
	height: auto;
	aspect-ratio: 16/9;
	z-index: -3;
	top: 0px;
	right: 0;
}
#about .aboutImg img:nth-last-child(3) , #about .aboutImg.lowerAbout img:nth-last-child(2){
	width: 200px;
	height: auto;
	aspect-ratio: 1/1;
	z-index: -1;
	bottom: 50px;
}
#about .aboutImg img:nth-last-child(2) , #about .aboutImg.lowerAbout img:nth-last-child(1){
	width: 160px;
	height: auto;
	aspect-ratio: 1/1;
	z-index: -2;
	right: 0;
	bottom: 0;
}
#about .aboutImg.lowerAbout img:nth-last-child(2),#about .aboutImg.lowerAbout img:nth-last-child(1){
	border-radius: 50%;
}
#about .aboutImg.lowerAbout img:nth-last-child(2){
	width: 60%;
	left: 5%;
	top: 0;
}
#about .aboutImg.lowerAbout img:nth-last-child(1){
	width: 51.2%;
	right: 0;
	top: inherit;
	bottom: 0;
}
#about .aboutImg.lowerAbout.lessonAbout img{
	width: 75%;
	left: -5%;
}
#about .aboutImg.lowerAbout.lessonAbout.lessonAboutSec img{
	width: 75%;
	left: inherit;
	right: -5%;
}
.lowerAboutCont{
	margin-top: 0;
}
#about .aboutImg.lowerAboutSec img:nth-last-child(2){
	left: inherit;
	right: 5%;
}
#about .aboutImg.lowerAboutSec img:nth-last-child(1){
	right: inherit;
	bottom: 0;
}
.lowerAboutCont h3{
	font-size: clamp(28px, 21.301px + 1.914vw, 36px);
	font-weight: 700;
	color: #00A19A;
	line-height: 1;
}
.lowerAboutContSec h3{
	text-align: end;
}
#service .contents{
	margin-top: 50px;
}
#service > div > p{
	text-align: center;
	width: 90%;
	margin: 0 auto 30px;
}
#service .flex{
	flex-direction: column;
	flex-wrap: wrap;
}
#service .contents div:nth-last-child(1) {
	margin-top: 50px;
}
#service .contents div h2{
	text-align: center;
	color: #222222;
}
#service .contents div:nth-child(2) h2{
	background: #E83308;
	color: #FFFFFF;
}
#service .contents div img{
	border-radius: 24px;
	margin-bottom: 30px;
}
#service a{
	background: linear-gradient(to bottom,#00A19A,#015D59);
	display: block;
	width: 220px;
	padding: 10px;
	margin: 0 auto;
	color: #FFFFFF;
	font-weight: 700;
	text-align: center;
	border-radius: 48px;
	font-size: 16px;
}
.newsCont{
	margin-left: 12%;
	width: 88% !important;
	margin-top: 60px;
}
.swiper-button-next {
    left: 3% !important;
    right: auto !important;
    color: #222222 !important;
}
.swiper-button-next::after {
	transform: scale(-1, 1);
}
.newsInner{
	position: relative;
}
.newsInner img{
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 24px;
}
.newsInner p{
	line-height: 1.45;
	color: #222222;
}
.newsInner p:nth-child(2){
	font-size: clamp(10px, 9.554px + 0.127vw, 12px);
	line-height: 1;
	margin-top: 10px;
}
.newsInner span{
	position: absolute;
	z-index: 10;
	color: #FFFFFF;
	top: 10px;
	left: 10px;
	padding: 8px 20px;
	line-height: 1;
	border-radius: 24px;
	font-size: clamp(10px, 9.554px + 0.127vw, 12px);
}
.newsInner span.news{
	background: #E83308;
}
.newsInner span.event{
	background: #00A19A;
}
#access p{
	margin-left: 25px;
	margin-bottom: 20px;;
}
#access iframe{
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 50 / 21;
	border-radius: 300px;
}
.contactLink , .eventBack{
	margin: 90px auto 0px;
	color: #FFFFFF;
	font-size: clamp(24px, 20.183px + 1.018vw, 28px);
	font-weight: 900;
	background: linear-gradient(to bottom,#00A19A,#015D59);
	width: 90%;
	max-width: 580px;
	justify-content: center;
	align-items: center;
	padding: 20px 15px;
	line-height: 1;
	border-radius: 48px;
	gap: 10px;
}
.contactLink img{
	width: 20px;
	height: auto
}
#price > div:nth-child(1) > p{
	text-align: center;
	margin-bottom: 15px;
}
.pricePlan{
	background-image: url("../images/priceplanBg.png");
	padding: 20px;
	border-radius: 40px;
	background-position: center;
	background-size: cover;
}
.pricePlan > .flex{
	background: rgba(255,255,255,0.8);
	border-radius: 34px;
	padding: 20px 20px;
	flex-wrap: wrap;
}
.pricePlan > .flex div{
	width: 100%;
	flex-direction: column;
	align-items: center;
}
.pricePlan > .flex div h3{
	width: fit-content;
	padding: 5px 20px;
	border: 2px solid #222222;
	border-radius: 50px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
}
.pricePlan > .flex div p{
	text-align: center;
	margin-top: 10px;
}
.pricePlan > .flex img{
	width: 30px;
	height: auto;
	margin: 15px auto;
}
.pricePlan > img{
	width: 25px;
	height: auto;
	margin: 15px auto;
}
.pricePlan > .flex div p font{
	background: #E83308;
	padding: 13px 20px 10px;
	border-radius: 50px;
}
.pricePlan > .flex div p span{
	font-size: 20px;
	font-weight: 700;
}
.pricePlan .result{
	background: #00A19A;
	color: #FFFFFF;
	flex-direction: column;
	align-items: center;
	border-radius: 100px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.pricePlan .result p{
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
}
.pricePlan .result p span{
	font-size: 18px;
	font-weight: 400;
}
.pricePlan .result p:nth-last-child(1){
	font-size: 24px;
}
.pricePlan .result p:nth-last-child(1) span{
	font-size: 14px;
}
.price02 {
	margin-top: 40px;
}
.price02 h3{
	position: relative;
	text-align: center;
	font-size: 16px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}
.price02 h3::before,.price02 h3::after,.price04 h4::before,.price04 h4::after,#lessonplan h3::before,#lessonplan h3::after{
    content: "";
	flex: 1;
    height: 2px; /* 線の太さ */
    background-color: #00A19A; /* 線の色 */
}
.price02 h3::before,.price04 h4::before,#lessonplan h3::before{
	margin-right: 10px;
}
.price02 h3::after,.price04 h4::after,#lessonplan h3::after{
	margin-left: 10px;
}
.price02 > div{
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 20px;
}
.price02 .flex > div{
	flex-direction: column;
}
.price02 .flex h4{
	background: #00A19A;
	width: fit-content;
	color: #FFFFFF;
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
	padding: 5px 10px;
	border-radius: 30px;
}
.price02 .flex p{
	color: #E83308;
	font-size: 20px;
	font-weight: 700;
}
.price02 .flex p span{
	color: #222222;
	font-size: 12px;
	font-weight: 400;
}
.price03{
	background-image: url("../images/price03bg.png");
	background-position: center;
	background-size: cover;
	color: #FFFFFF;
	padding: 20px 0;
	margin: 60px 0 30px;
}
.price03 .contents{
	margin-top: 0;
}
.price03 .price03Catch{
	width: fit-content;
	margin: auto;
	padding: 0 10px;
	position: relative;
	font-weight: 700;
	font-size: 20px;
}
.price03 .price03Catch::before,.price03 .price03Catch::after{
    content: "";
    position: absolute;
    top: 0;
    height: 100%; /* 縦棒の長さ */
    width: 2px; /* 縦棒の太さ */
    background-color: #FFFFFF; /* 縦棒の色 */
    transform-origin: bottom; /* 回転の基点を下端に設定 */
}
.price03 .price03Catch::before{
	left: 0;
    transform: rotate(-30deg); /* 左に10度傾ける */
}
.price03 .price03Catch::after{
	right: 0;
	transform: rotate(30deg); /* 右に10度傾ける */
}
.price03 h3{
	background: #FFFBA0;
	color: #222222;
	padding: 5px 25px;
	width: fit-content;
	margin: 10px auto;
	border-radius: 32px;
}
.price03 h3 img{
	margin-right: 10px;
}
.price03 .price03plan {
	gap: 10px;
}
.price03 .price03plan div{
	text-align: center;
	flex: 1;
}
.price03 .price03plan div p{
	font-size: 28px;
	color: #E83308;
	font-weight: 900;
	background: #FFFFFF;
	border-radius: 42px;
}
.price03 .price03plan div span{
	font-size: 12px;
	color: #222222;
	font-weight: 500;
}
.price03 > div > p:nth-last-child(1){
	text-align: center;
	margin-top: 20px;
	font-size: 12px;
}
.price04 h3{
	text-align: center;
	margin-bottom: 25px;
	font-size: 20px;
}
.price04 > div{
	flex-direction: column;
}
.price04 .price04Cont{
	flex-direction: column;
	align-items: center;
}
.price04 .price04Cont h4{
	position: relative;
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
}
.price04 h5{
	margin: 0 20px 0 0;
	padding: 3px 10px;
	background: #00A19A;
	color: #FFFFFF;
	font-weight: 500;
	border-radius: 20px;
}
.price04 .price04Cont{
	margin-bottom: 30px;
}
.price04 .price04Cont p{
	text-align: center;
	font-size: 12px;
	margin-top: 10px;
}
.price04 .price04Cont > div{
	align-items: center;
	margin-top: 10px;
}
.price04 .price04Cont > div p{
	color: #E83308;
	font-weight: 700;
	font-size: 18px;
	margin: 0;
}
.price04 .price04Cont > div p span{
	color: #222222;
	font-weight: 500;
	font-size: 12px;
}
#menu{
	margin-top: 60px;
}
.menuCont{
	flex-direction: column;
}
.menuTittle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    cursor: pointer;
}
.menuList {
    display: none;
	flex-wrap: wrap;
	justify-content: space-between
}
.menuList > div{
	width: calc(50% - 10px);
	margin-bottom: 25px;
}
.menuList > div.flex{
	width: 100%;
	flex-wrap: wrap;
	align-items: center;
}
.menuList > div.flex ul{
	width: 100%;
}
.menuList h3 {
	color: #00A19A;
	font-size: clamp(18px, 12.976px + 1.435vw, 24px);
	line-height: 1;
}
.menuList > div > p{
	margin: 5px 0 3px;
}
.menuList > div > .foodText{
	font-size: clamp(10px, 6.651px + 0.957vw, 14px);
}
.menuList > div.flex > p:nth-child(2){
	margin-left: 10px;
}
.menuList ul {
    padding: 0;
    margin: 0;
}
.menuList ul li {
	line-height: 1.5;
	justify-content: space-between;
	flex-wrap: wrap;
}
.menuList ul li span:nth-last-child(1){
	flex: 1;
	text-align: end;
	font-weight: 600;
}
.arrow {
    transition: transform 0.3s ease;
}
.menuTittle.active .arrow {
    transform: rotate(180deg);
}
.lowerWrapper{
	height: 0;
	margin-top: -1;
}
.lowerTop{
	margin-top: 100px;
}
#access.lowerTop > div{
	align-items: center;
    justify-content: space-between;
	margin: 0 25px;
}
#access.lowerTop > div p{
	white-space: nowrap; /* テキストを改行させない */
	margin: 0;
}
#access.lowerTop > div > div{
    flex-grow: 1; /* 両端の間を自動的に埋める */
    border-top: 1px dotted #222222; /* 破線を設定 */
    margin: 0 10px; /* 両端との間隔を調整 */
}
.fv.fvLesson video{
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 345px;
	border-top-left-radius: 345px;
	align-items: flex-end;
}
.fv.fvLesson h1 , .fv.fvLesson p{
	padding-right: 5%;
}
#lessonplan h3{
	position: relative;
	text-align: center;
	width: 100%;
	color: #00A19A;
	margin-top: 50px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
#lessonplan h3::before{
	margin-right: 10px;
}
#lessonplan h3::after{
	margin-left: 10px;
}
#lessonplan div .flex{
	flex-direction: column-reverse;
}
#lessonplan .lessonwEnd{
	margin-top: 70px;
}
#lessonplan div .flex img{
	width: 75%;
	height: auto;
	aspect-ratio: 16/9;
	object-fit: cover;
	border-radius: 24px;
	margin-left: auto;
}
#lessonplan .lessonwEnd .flex img{
	margin-left: 0;
	margin-right: auto;
}
#lessonplan div .flex p{
	border-radius: 24px;
	background: rgba(255,255,255,0.8);
	padding: 15px;
	margin-top: -60px;
	position: relative;
	z-index: 1;
	width: fit-content;
}
#lessonplan .lessonwEnd .flex p{
	margin-left: auto;
}
#lessonplan div .flex span{
	font-size: clamp(10px, 6.651px + 0.957vw, 14px);
}
#lessonplan > div > div > p {
	background: #E83308;
	color: #FFFFFF;
	width: fit-content;
	margin-left: auto;
	padding: 10px 30px;
	line-height: 1;
	border-radius: 50px;
}
#lessonplan > div > .lessonwEnd > p {
	margin-left: 0;
}
#lessonplan > div > div > p span{
	font-size: clamp(28px, 16.278px + 3.349vw, 42px);
	font-weight: 700;
}
#lessonplan table {
    border-spacing: 0;
	line-height: 1.4;
	width: 100%
}
#lessonplan th,#lessonplan td {
    border-bottom: 1px solid #222222;
    border-right: 1px solid #222222;
    text-align: center;
	padding: 10px;
}
#lessonplan th {
    background-color: #FFFBA0;
	font-weight: 700;
	color: #E83308;
}
#lessonplan td {
	width: 43%;
	margin: 0;
}
#lessonplan td:nth-child(1),#lessonplan th:nth-child(1) {
	width: 50px;
    background-color: #FFFBA0;
	padding: 0;
	font-weight: 700;
	color: #E83308;
}
#lessonplan tr:nth-last-child(1) td {
	border-bottom: none;
}
#lessonplan tr td:nth-last-child(1),#lessonplan thead th:nth-last-child(1) {
	border-right: none;
}
.teach{
	flex-direction: column;
	width: 90%;
	margin: auto;
	gap: 20px;
}
.teach > div{
	padding: 40px 20px;
	background: #FFFFFF;
	border-radius: 40px;
}
.teach h3{
	margin: 25px auto;
	width: fit-content;
	font-size: clamp(16px, 12.651px + 0.957vw, 20px);
}
.teach img{
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}
.teach h4{
	font-weight: 500;
	position: relative;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: clamp(16px, 12.651px + 0.957vw, 20px);
}
.teach h4::after{
	content: "";
	border-top: 1px dotted #707070;
	flex: 1;
    top: 50%;
	right: 0;
    width: 85%; /* 線の長さ（調整可能） */
    height: auto; /* 線の太さ */
	margin-left: 10px;
	margin-top: 1px;
}
.jobContainer .title {
    font-size: 16px;
    font-weight: bold;
    background-color: #FFFBA0;
    padding: 10px;
}
.jobSection {
    background-color: #FFFFFF;
	border-top: 1px solid #222222;
	flex-direction: column;
}
.jobSection p {
    padding: 10px;
}
.jobSection .note {
    font-weight: 700;
    padding: 0px 10px;
	margin: -10px auto;
}
.wpcf7-form{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.wpcf7-form > .flex{
	flex-direction: column;
	margin-top: 22px;
}
.wpcf7-form > .flex p{
	line-height: 1;
	margin-bottom: 10px;
	align-items: center
}
.wpcf7-form > .flex p:nth-child(1) span{
	font-size: clamp(8px, 2.976px + 1.435vw, 14px);
	background: #B7B7B7;
	color: #FFFFFF;
	padding: 2px 8px;
	border-radius: 32px;
	margin-right: 10px;
}
.wpcf7-form > .flex p:nth-child(1) .required{
	background: #E83308;
}
.wpcf7-form > .flex input,.wpcf7-form > .flex textarea{
	width: 100%;
	border: 1px solid #B5B5B5;
	border-radius: 5px;
}
.wpcf7-form .wpcf7-submit , .wpcf7-form .wpcf7-previous{
	background: linear-gradient(to bottom,#00A19A,#015D59);
	border: none;
	color: #FFFFFF;
	width: 220px;
	padding: 15px;
	font-size: 18px;
	border-radius: 54px;
	font-weight: 700;
	margin: auto;
	display: block;
}
.wpcf7-list-item label{
	display: flex;
}
.wpcf7-form > .flex.ppArea p span{
	background: none;
	color: #222222;
	font-size: 14px;
}
.wpcf7-form > .flex.ppArea input{
	width: 20px;
	height: 20px;
	margin: 0;
	margin-bottom: 50px;
}
.wpcf7-list-item-label a {
	font-size: 14px;
}
.privacyContainer h3 {
    font-weight: 500;
	border-bottom: 1px dotted #222222;
    margin-top: 40px;
    margin-bottom: 20px;
	padding-bottom: 5px;
}
.privacyContainer p {
    margin: 8px 0;
}
.privacyContainer .flex {
    margin: 0;
}
.privacyContainer p span{
    width: 20px;
	margin-right: 10px;
}
#news.eventLower .newsList .newsCont{
	width: 90%;
	margin: auto;
	flex-wrap: wrap;
	justify-content: space-between;
}
#news.eventLower .newsList .newsCont .newsInner{
	width: calc(50% - 5px);
	display: block;
	margin-top: 20px;
}
.pagination{
	width: 100%;
}
.page-numbers{
	display: flex;
	justify-content: center;
	padding: 0;
	gap: 15px;
	font-size: 22px;
	color: #222222;
	line-height: 1.3;
}
.page-numbers.current{
	background: #00A19A;
	color: #FFFFFF;
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
.eventCont img , .eventCont p img{
	margin: 20px auto 30px;
	width: 90%;
	height: auto;
}
#event .eventDate{
	font-size: clamp(10px, 5.416px + 0.596vw, 14px);
	text-align: center;
}
.eventBack{
	display: block;
	margin: 40px auto;
	text-align: center;
	width: fit-content;
	padding: 20px 50px;
	font-weight: 700;
}
.wpcf7{
	margin-top: 50px;
}
footer{
	background: #EEEEEE;
	padding: 25px 5% 80px;
	flex-wrap: wrap;
	margin-top: 100px;
}
footer > p{
	width: 100%;
	font-size: 10px;
	font-weight: 300;
	text-align: center;
}
footer .fLogo{
	width: 140px;
	height: auto;
}
footer > div > .flex{
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px;
}
footer > div > .flex p{
	font-size: 12px;
	width: 100%;
}
footer > div > .flex img{
	width: 30px;
}
footer ul{
	flex-wrap: wrap;
	padding: 0;
}
footer ul li{
	width: 100%;
}
footer ul li a:not([class]){
	font-size: 14px;
}
#access.lowerTop > .flex{
	margin-top: 30px;
}
#access.lowerTop > .flex:nth-last-child(1){
	margin-top: 0px;
}
.contactText{
	text-align: center;
}
@media screen and (min-width: 769px){
.isPc{
	display: block;
}
.isSp{
	display: none;
}
.spFooter{
	display: flex;
}
.fvWrapper{
	height: auto;
}
.fv , .fv.fvLesson{
	width: 100%;
	max-width: 1920px;
	height: 100vh;
	max-height: 1080px;
	align-items: center;
	margin: 0 auto;
}
.fv video{
	border-bottom-right-radius: clamp(385px, 0.834px + 49.957vw, 960px);
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: clamp(385px, 0.834px + 49.957vw, 960px);
}
.fv.fvLesson video{
	border-bottom-right-radius: clamp(385px, 0.834px + 49.957vw, 960px);
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: clamp(385px, 0.834px + 49.957vw, 960px);
	align-items: flex-end;
}
.fv h1{
	font-size: clamp(40px, 23.965px + 2.085vw, 64px);
	letter-spacing: 15px;
	width: 90%;
	max-width: 1280px;
	margin-top: -100px;
}
.fv p{
	width: 90%;
	max-width: 1280px;
}
.fv.fvLesson h1{
	font-size: clamp(40px, 23.965px + 2.085vw, 64px);
	letter-spacing: 15px;
	width: 90%;
	max-width: 1280px;
	margin-top: -100px;
	text-align: end;
}
.fv.fvLesson p{
	width: 90%;
	max-width: 1280px;
	text-align: end;
}
.contents h2{
	width: 50%;
	min-width: 500px;
	text-align: center;
}
#teacher .contents h2{
	margin-bottom: 100px;
}
.contents h2 img{
	width: clamp(100px, 54.158px + 5.961vw, 140px);
	left: 10px;
	top: -30px;
}
.contents h2 .ball{
	width: clamp(50px, 4.158px + 5.961vw, 90px);
	top: -20px;
}
.contents h2 .money{
	width: clamp(50px, 4.158px + 5.961vw, 90px);
	top: -10px;
}
.contents h2 .wine{
	width: clamp(40px, -5.842px + 5.961vw, 80px);
	top: -30px;
	right: inherit;
}
.contents h2 .food{
	width: clamp(60px, -8.763px + 8.942vw, 120px);
	top: -5px;
}
.contents h2 .bat{
	width: clamp(40px, -5.842px + 5.961vw, 80px);
	top: -5px;
}
.contents h2 .tops{
	width: clamp(50px, 4.158px + 5.961vw, 90px);
	top: -20px;
}
.contents h2 .archive{
	width: clamp(30px, -4.382px + 4.471vw, 60px);
	top: -20px;
}
.contents h2 .access{
	width: clamp(60px, -8.763px + 8.942vw, 120px);
	top: 0px;
}
#news .contents h2 img{
	width: clamp(60px, 25.618px + 4.471vw, 90px);
	top: -20px;
}
#about.contents h2 img{
	transform: scale(1, 1);
}
#about p{
	text-align: center;
	padding: 36px;
	width: fit-content;
	margin: clamp(60px, 19.913px + 5.213vw, 120px) auto 0;
}
#about .lowerAbout{
	position: absolute;
}
#about .aboutImg{
	max-width: 1920px;
	height: clamp(400px, 65.943px + 43.44vw, 900px);
}
#about .aboutImg img:nth-last-child(3){
	width: 32.5%;
	left: 5%;
	bottom: 10%;
}
#about .aboutImg img:nth-last-child(2){
	width: 25%;
	right: 25%;
}
#about .aboutImg img:nth-last-child(1){
	width: 38.5%;
	top: 0;
}
#about .aboutImg.lowerAbout img:nth-last-child(2){
	width: 35%;
	right: inherit;
	left: 40%;
}
#about .aboutImg.lowerAbout img:nth-last-child(1){
	width: 30%;
	top: inherit;
	right: 5%;
}
#about .aboutImg.lowerAboutSec img:nth-last-child(2){
	left: inherit;
	right: 40%;
}
#about .aboutImg.lowerAboutSec img:nth-last-child(1){
	left: 5%;
	right: inherit;
}
#about .lowerAbout.lowerAboutSec{
	bottom: -100px;
}
.fvDeco.deco01{
	width: 300px;
	height: auto;
	bottom: 80px;
	left: -30px;
}
.fvDeco.deco01.pataa{
	width: 270px;
	height: auto;
	bottom: 50px;
	left: -10px;
}
.fvDeco.deco02{
	width: 200px;
	height: auto;
	bottom: 200px;
	right: -30px;
}
.contents{
	margin-top: 200px;
}
.lowerAboutCont{
	margin-top: clamp(60px, -8.571px + 8.929vw, 120px);
}
.lowerAboutContSec{
	margin-top: clamp(150px, -150.652px + 39.096vw, 600px);
	margin-bottom: clamp(300px, 166.377px + 17.376vw, 500px);
}
#service .contents{
	margin-top: 100px;
}
#service > div > p{
	margin: 0 auto;
}
#service .flex{
	flex-direction: row;
	gap: 40px;
}
#service .contents div:nth-last-child(1) {
	margin-top: 0px;
}
#service .contents div{
	width: calc( 50% - 20px);
}
#service .contents div h2{
	width: 100%;
	min-width: auto;
	margin-bottom: 40px;
}
#service .contents div img{
	margin-bottom: 40px;
}
#service a{
	font-size:clamp(16px, 6.550px + 1.229vw, 24px);
}
#service > img{
	margin-top: -200px;
	position: relative;
	z-index: -1;
	width: 100%;
	height: clamp(220px, 99.739px + 15.639vw, 400px);
	object-fit: cover;
}
.newsCont{
	margin-left: 5%;
	width: 95% !important;
	margin-top: 80px;
}
.swiper-button-next{
	left: 1.5%!important;
}
#access p{
	margin: 50px auto;
	text-align: center;
}
.contactLink{
	font-size: clamp(28px, 22.655px + 0.695vw, 36px);
}
.contactLink img{
	width: 50px;
}
#about .lowerAboutCont h3 , #about .lowerAboutCont p{
	width: 50%;
	margin-top: 0;
	margin-left: 0;
	text-align: left;
}
#about .lowerAboutContSec h3 , #about .lowerAboutContSec p{
	margin-top: 0;
	margin-right: 0;
	margin-left: inherit;
}
#about .lowerAboutContSec h3{
	text-align: right;
}
#about .lowerAboutCont h3{
	font-size: clamp(32px, 13.714px + 2.381vw, 48px);
}
#about .lowerAboutFirst{
	background-color: inherit;
	margin-bottom: clamp(60px, -8.571px + 8.929vw, 120px);
}
#about .lessonAboutRead{
	background: none;
	padding: 0;
}
#about .lowerAboutCont.lessonAboutCont p{
	background: none;
	padding: 0;
}
#about .aboutImg.lowerAbout.lessonAbout{
	width: 90%;
	height: clamp(330px, -2.355px + 43.219vw, 620px);
	max-width: 1280px;
	margin: 100px auto;
}
#about .aboutImg.lowerAbout.lessonAbout.lessonAboutSec{
	margin-top: -100px;
}
#about .aboutImg.lowerAbout.lessonAbout img{
	width: 48%;
	left: 0;
}
#about .aboutImg.lowerAbout.lessonAbout.lessonAboutSec img{
	width: 48%;
	left: inherit;
	right: 0;
}
.lowerAboutCont.lessonAboutCont{
	margin-top: clamp(420px, 328.316px + 11.923vw, 500px);
	margin-left: 0;
}
.lowerAboutContSec.lowerAboutContSec.lessonAboutCont{
	margin-top: clamp(150px, -33.368px + 23.845vw, 310px);
	margin-right: 0;
	margin-left: auto;
}
#lessonplan{
	margin-top: clamp(200px, -29.210px + 29.806vw, 400px);
}
#price > div:nth-child(1) > p{
	margin-top: 40px;
}
.pricePlan{
	padding: 30px 125px;
	border-radius: 300px;
	max-width: 970px;
	margin: 0 auto;
}
.pricePlan > .flex{
	border-radius: 200px;
	padding: 20px 40px;
}
.pricePlan > .flex div{
	flex: 1;
}
.pricePlan > .flex div p{
	line-height: 1.6
}
.pricePlan > .flex div h3{
	font-size: clamp(16px, 6.550px + 1.229vw, 24px);
}
.pricePlan > .flex img{
	width: 40px;
}
.pricePlan > img{
	width: 30px;
}
.pricePlan > .flex div p font{
	padding: 15px 15px 8px;
	font-size: clamp(14px, 12.092px + 0.509vw, 16px);
}
.pricePlan > .flex div p span{
	font-size: clamp(20px, 14.655px + 0.695vw, 28px);
}
.pricePlan .result{
	flex-direction: row;
	justify-content: center;
	align-items: flex-end;
	padding: 15px;
	gap: 15px;
}
.pricePlan .result p{
	font-size: clamp(36px, 23.974px + 1.564vw, 54px);
	line-height: 1;
}
.pricePlan .result p span , .pricePlan .result p:nth-last-child(1){
	font-size: clamp(20px, 14.655px + 0.695vw, 28px);
}
.pricePlan .result p:nth-last-child(1) span{
	font-size: clamp(16px, 13.328px + 0.348vw, 20px);
}
.price02 {
	margin-top: 80px;
}
.price02 h3{
	font-size: clamp(16px, 6.550px + 1.229vw, 24px);
	margin-bottom: 50px;
}
.price02 h3::before,.price02 h3::after,.price04 h4::before,.price04 h4::after{
    width: 30%; /* 線の長さ（調整可能） */
}
.price02 > div{
	column-gap: 4%;
	justify-content: flex-start;
}
.price02 .flex > div{
	flex-direction: row;
	width: 29%;
	justify-content: space-between;
	align-items: center;
}
.price02 .flex h4{
	font-size: clamp(16px, 13.328px + 0.348vw, 20px);
	padding: 8px 15px;
}
.price02 .flex p{
	color: #E83308;
	font-size: clamp(20px, 14.655px + 0.695vw, 28px);
}
.price02 .flex p span{
	font-size: clamp(16px, 13.328px + 0.348vw, 20px);
}
.price03{
	padding: 60px 0;
	margin: 80px 0;
}
.price03 .price03Catch{
	font-size: clamp(24px, 18.655px + 0.695vw, 32px);
}
.price03 h3 {
	margin: 40px auto 30px;
}
.price03 h3 img{
	margin-right: 10px;
	width: 35px;
}
.price03 .price03plan {
	gap: 40px;
	max-width: 700px;
	margin: auto
}
.price03 .price03plan div p{
	font-size: clamp(32px, 25.319px + 0.869vw, 42px);
}
.price03 .price03plan div span{
	font-size: clamp(16px, 10.655px + 0.695vw, 24px);
}
.price03 > div > p:nth-last-child(1){
	font-size: clamp(12px, 9.328px + 0.348vw, 16px);
}
.price04.contents{
	margin-top: auto
}
.price04 > div{
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.price04 .price04Cont{
	width: 48%;
}
.price04 .price04Cont:nth-child(1) h4::after,.price04 .price04Cont:nth-child(1) h4::before{
	width: 15%;
}
.price04 .price04Cont:nth-child(2) h4::after,.price04 .price04Cont:nth-child(2) h4::before{
	width: 10%;
}
.price04 .price04Cont:nth-child(3) h4::after,.price04 .price04Cont:nth-child(3) h4::before{
	width: 30%;
}
.price04 h5{
	font-size: clamp(16px, 13.328px + 0.348vw, 20px);
	padding: 5px 15px;
	line-height: 1;
}
.price04 .price04Cont p{
	font-size: clamp(16px, 13.328px + 0.348vw, 20px);
}
.price04 .price04Cont > div p{
	font-size: clamp(20px, 14.655px + 0.695vw, 28px);
}
.price04 .price04Cont > div p span{
	font-size: clamp(16px, 13.328px + 0.348vw, 20px);
}
.menuCont{
	flex-direction: row;
	gap: 4%
}
.menuSec{
	width: 48%;
}
h2.menuTittle {
	width: 100%;
	min-width: inherit;
	margin-bottom: 40px;
}
.menuList > div{
	width: calc(50% - 20px);
	margin-bottom: 50px;
}
.menuList h3 {
	font-size: clamp(20px, 14.655px + 0.695vw, 28px);
}
.menuList > div > .foodText{
	font-size: clamp(16px, 13.328px + 0.348vw, 20px);
	margin-bottom: 15px;
}
.menuList > div.flex > p:nth-child(2){
	margin-left: 10px;
}
.menuList ul {
    padding: 0;
    margin: 0;
}
.menuList ul li {
	line-height: 1.5;
	justify-content: space-between;
	flex-wrap: wrap;
}
.menuList ul li span:nth-last-child(1){
	flex: 1;
	text-align: end;
	font-weight: 600;
}
.arrow {
    transition: transform 0.3s ease;
}
.menuTittle.active .arrow {
    transform: rotate(180deg);
}
#lessonplan div .flex{
	flex-direction: row;
	gap: 40px;
}
#lessonplan .lessonwEnd{
	margin-top: 70px;
}
#lessonplan div .flex img{
	width: calc(50% - 20px);
}
#lessonplan .lessonwEnd .flex img{
	margin-right: 0;
	margin-left: auto;
}
#lessonplan div .flex p{
	background: none;
	padding: 0;
	margin-top: 30px;
}
#lessonplan .lessonwEnd .flex p{
	margin: 0;
	margin-top: 30px;
}
#lessonplan div .flex span{
	font-size: clamp(12px, 9.328px + 0.348vw, 16px);
}
#lessonplan > div > div > p {
	margin-left: 0;
}
#lessonplan > div > .lessonwEnd > p {
	margin-left: 0;
}
#lessonplan > div > div > p span{
	font-size: clamp(28px, 16.278px + 3.349vw, 42px);
	font-weight: 700;
}
#lessonplan table{
	margin-top: 30px;
}
#lessonplan td {
	width: 46%;
}
#lessonplan td:nth-child(1),#lessonplan th:nth-child(1) {
	width: 100px;
}
.teach{
	flex-direction: row;
	width: 100%;
	max-width: 1920px;
	margin: auto;
	overflow: scroll;
	height: auto;
	flex-wrap: nowrap;
	padding-left: 5%;
	padding-right: 5%;
	gap: 6%;
}
.teach > div{
	min-width: 540px;
	padding: 40px;
}
.teach img{
	width: 360px;
	margin: auto;
}
.jobSection {
	flex-direction: row;
}
.jobContainer .title {
    font-size: clamp(16px, 10.655px + 0.695vw, 24px);
	width: 14%;
	padding: clamp(15px, 8.319px + 0.869vw, 25px) 1.5%;
}
.jobSection > div {
	flex: 1;
}
.jobSection p {
	padding: clamp(15px, 8.319px + 0.869vw, 25px) 1.5%;
}
.jobSection .note {
    font-weight: 700;
    padding: 0px 1.5%;
	margin: clamp(-15px, -8.319px + -0.869vw, -25px) auto;
}
.wpcf7-form > .flex{
	flex-direction: row;
}
.contactText{
	align-items: flex-start;
}
.wpcf7-form > .flex p:nth-child(1){
	width: 37.5%;
}
.wpcf7-form > .flex p:nth-last-child(1){
	width: auto;
	flex: 1;
}
.wpcf7-form > .flex input,.wpcf7-form > .flex textarea{
	width: auto;
	flex: 1;
}
.wpcf7-list-item label{
	justify-content: flex-start;
	margin-left: calc(37.5% - 25px);
	width: 62.5%;
}
.wpcf7-form > .flex.ppArea p span{
	background: none;
	color: #222222;
    font-size: clamp(16px, 10.655px + 0.695vw, 24px);
	padding-top: 0;
}
.wpcf7-form > .flex.ppArea input{
	flex: initial;
	margin-bottom: 100px;
}
.wpcf7-list-item-label a {
    font-size: clamp(16px, 10.655px + 0.695vw, 24px);
}
.wpcf7-form .wpcf7-submit , .wpcf7-form .wpcf7-previous{
    font-size: clamp(16px, 10.655px + 0.695vw, 24px);
}
.wpcf7-form > .flex.ppArea p span{
	width: 100%;
	display: block;
}
.privacyContainer h3 {
    margin-top: 100px;
    margin-bottom: 25px;
	padding-bottom: 15px;
}
.privacyContainer p span{
    width: 30px;
}
#news.eventLower .newsList .newsCont{
	width: 90%;
	max-width: 1280px;
}
#news.eventLower .newsList .newsCont .newsInner{
	width: calc(25% - 20px);
	margin-top: 40px;
}
#event h2{
	width: 100%;
	padding: 10px 80px;
}
#event .eventDate{
	font-size: clamp(14px, 11.708px + 0.298vw, 16px);
}
.eventCont img , .eventCont p img{
	margin: 40px auto 60px;
	width: 60%;
}
.eventBack{
	margin: 100px auto;
}
#recruit > p{
	text-align: center;
	margin: 30px auto;
}
#access.lowerTop > .flex{
	max-width: 440px;
	margin: auto;
	margin-top: 50px;
}
#access.lowerTop > .flex:nth-last-child(1){
	margin-top: 0px;
}
}
@media screen and (min-width: 1440px) {
#news{
	overflow-x: hidden;
}
.swiper{
	max-width: 1570px;
	overflow-x: visible !important;
}
.newsCont{
	width: 100% !important;
	margin-left: 145px;
}
.swiper-button-next{
	left: 3% !important;
}
.teach{
	padding-left: clamp(72px, -672.000px + 51.667vw, 320px);
	padding-right: clamp(72px, -672.000px + 51.667vw, 320px);
}
#about .lowerAbout.lowerAboutSec{
	bottom: -300px;
}
#about .aboutImg.lowerAbout.lessonAbout.lessonAboutSec{
	margin-top: -200px;
}
}
/* デスクトップ用スタイル */
@media screen and (min-width: 1000px) {
.spFooter{
	display: none;
}
.fixFooter{
	position: fixed;
	bottom: 40px;
	right: 5%;
}
.fixFooter a{
	width: 60px;
	height: 60px;
}
.fixFooter a img{
	width: 30px;
}
.nav-container{
	width: 90%;
	height: clamp(100px, 78.215px + 2.176vw, 120px);
}
#logo{
	width: clamp(160px, 94.646px + 6.529vw, 220px);
}
#menu-toggle {
	display: none;
}
#nav-menu {
	display: flex;
	opacity: 1;
	visibility: visible;
	background-color: transparent;
	position: relative;
}
#nav-menu ul {
	flex-direction: row;
	gap: clamp(10px, -22.677px + 3.264vw, 40px);
	padding: 0;
	margin: 0;
	align-items: center;
}
#nav-menu ul li {
	height: fit-content;
}
#nav-menu ul li a {
	color: #FFFFFF;
	font-size: clamp(12px, 5.465px + 0.653vw, 18px);
	height: fit-content;
}
#nav-menu ul li .cta {
	height: clamp(60px, 49.108px + 1.088vw, 70px);
	font-size: 20px;
}
.cta {
	width: clamp(220px, 154.646px + 6.529vw, 280px);
	height: 70px;
	border-radius: 35px;
	padding-top: 7px;
	font-size: 20px;
}
.cta span:nth-last-child(1) {
	margin-top: -20px;
}
.cta img {
	margin-right: 10px;
}
.swiper-button-next:after{
	content: 'next'
}
footer{
	padding: 60px 5% 10px;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer > p{
	font-size: 12px;
}
footer .fLogo{
	width: 200px;
	height: auto;
}
footer > div > .flex{
	flex-wrap: wrap;
	gap: 0;
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
}
footer > div > .flex p{
	font-size: clamp(10px, 7.328px + 0.348vw, 14px);
	width: auto;
}
footer > div > .flex img{
	width: clamp(30px, 16.638px + 1.738vw, 50px);
	position: absolute;
	bottom: 0
}
footer > div > .flex a:nth-last-child(1) img{
	right: -240px;
}
footer > div > .flex a:nth-last-child(2) img{
	right: -160px;
}
footer > div > .flex a:nth-last-child(3) img{
	right: -80px;
}
footer ul{
	flex-wrap: nowrap;
}
footer ul li{
	width: auto;
}
footer ul li a:not([class]){
	font-size: clamp(10px, 4.655px + 0.695vw, 18px);
	display: inline-block;
	padding-right: clamp(5px, -11.703px + 2.172vw, 30px);
}
}
@media screen and (min-width: 1280px){
.price04 .price04Cont{
	width: 31%;
}
}