@charset "UTF-8";

@media screen and (min-width: 1401px) {
    html {
        font-size: 10px !important;
    }
}
html {
    font-size: 0.833vw; /* 10px / 1200px * 100 */
}
@media screen and (max-width: 767px) {
    html {
        font-size:1.302vw;
    }	
}
@media screen and (max-width: 480px) {
    html {
        font-size: 2.083vw;
    }	
}

body {
	color: #4b494d; /* カラー */
	font-family: 'Shippori Mincho B1', "游明朝", "YuMincho", 'Noto Serif JP', "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 2.0;
}

a {
	color: #4b494d;
}


/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
	
}
@media screen and (max-width: 767px) {
	
}



/*  ----------------------------------------------------------

gnav

----------------------------------------------------------  */
ul.gnav {
	display: flex;
}
ul.gnav li {
	font-weight: bold;
}
ul.gnav li:not(:first-child) {
	margin-left: 40px;
}
ul.gnav a {
	display: inline-block;
	position: relative;
	text-decoration: none;
}
ul.gnav a::after {
	position: absolute;
	background: #000; /* 下線カラー */
	bottom: -4px;
	content: '';
	height: 2px;
	left: 0;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
	width: 100%;	
}
ul.gnav a:hover::after {
	transform: scale(1, 1);
 }
ul.gnav a:hover {
	opacity: 1;  
	filter: alpha(opacity=100);  
}
@media screen and (max-width: 767px) {
	ul.gnav {
		display: none;
	}
}



/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
	background:#fff9ee;
	padding: 4rem 0;
}
footer nav ul {
	display: flex;
	justify-content: center;
}
footer nav ul li a {
	display: block;
	padding: 0 1rem;	
}
footer nav ul li:not(:last-child) a::after {
	content: "|";
	display: inline-block;
	margin-left: 2rem;
}
.footer-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 4rem auto;
}
.footer-wrap .logo {
	width: 28rem;
	margin-right: 2rem;
}
.footer-wrap ul.sns {
	display: flex;
	align-items: center;
}
.footer-wrap ul.sns li {
	width: 3rem;
}
.footer-wrap ul li:first-child {
	margin-right: 1rem;
}
footer small {
	display: block;
	text-align: center;
	font-size: 1.2rem;
}
footer small span {
	font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
	footer {
		background:#fff9ee;
		padding: 4rem 0;
	}
	footer nav ul {
		display: block;
	}
	footer nav ul li a {
		display: block;
		padding: 0 1rem;
		text-align: center;	
		padding: 0.5rem;
	}
	footer nav ul li:not(:last-child) a::after {
		content: "";
		margin-left: 0;
	}
	.footer-wrap {
		display: block;
		margin: 6rem auto;
	}
	.footer-wrap .logo {
		width: 28rem;
		margin-right: 0;
		margin: 0 auto 1rem auto;
	}
	.footer-wrap ul.sns {
		justify-content: center;
	}
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
	background: url(page-ttl-bg.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	padding-top: 4rem;
}
.page-ttl h1 {
	width: 6rem;
	position: absolute;
	left: 5rem;
	top:3rem;
	z-index: 99;
}
.page-ttl h2 {
	color:#fff;
	font-size: 4.0rem;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align:center;
	padding: 16rem 0;
	position: relative;
	z-index: 2;
	font-weight: normal;
}
@media screen and (max-width: 767px) {
	.page-ttl h1 {
		width: 5rem;
		position: relative;
		left: 0;
		top:0;
		z-index: 99;
		margin: 0 auto;
	}
	.page-ttl h2 {
		padding: 8rem 0 10rem 0;
	}	
}


/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
.heading {
	text-align: center;
	font-weight: normal;
	line-height: 1;	
	margin-bottom: 8rem;
	background: url(heading-bg.png) no-repeat center top;
	background-size: 7rem auto;
	padding-top: 2rem;
}
.heading span {
	font-size: 3.2rem;
	display: block;
	margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {

}

.more {
	text-align: center;
	line-height: 1;
	display: block;
	width: 27rem;
	padding: 2rem 0;
	border: solid 1px #000;
	transition: all .3s;
	background: url(arrow.png) no-repeat right 1.5rem center;
	background-size: 2.5rem auto;
	margin: 0 auto;
}

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

}

.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 2.4rem;
	line-height: 1.4;
	margin-bottom: 3rem;
	padding: 1rem 0 1.4rem 0;
	position: relative;
}
.ttl:after {
	border-bottom: solid 3px #000; /* 太 */
	bottom: -3px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 767px) {
	.ttl:after {
		width: 40%;
	}	
}




/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
nav.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	background: #000;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
}
.open nav.gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
nav.gnav-sp .inner {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
nav.gnav-sp .inner nav ul {
	display: flex;
	flex-direction: row-reverse;
}
nav.gnav-sp .inner nav ul li {
	position: relative;
	margin: 0;
	font-size: 1.8rem;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;	
	letter-spacing: 0.2em;
}
nav.gnav-sp .inner nav ul li a {
	display: block;
	padding: 1em;
	text-decoration: none;
	transition-duration: 0.2s;
}
nav.gnav-sp .inner a {
	color: #fff;
}
nav.gnav-sp .inner > div {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: center;
}
.gnav-sp-sns {
	margin-right: 6rem;
}
.gnav-sp-sns li {
	padding: 0.3rem 0;
	letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
	nav.gnav-sp .inner nav ul {
		display: block;
		margin-bottom: 4rem;
	}
	nav.gnav-sp .inner nav ul li {
		-ms-writing-mode: horizontal-tb;
		writing-mode:horizontal-tb;	
		text-align: center;
	}
	nav.gnav-sp .inner > div {
		display: block;
	}	
	nav.gnav-sp .inner nav ul li a {
		padding: 0.5em;
	}	
	.gnav-sp-sns {
		margin-right: 0;
	}
	.gnav-sp-sns li {
		text-align: center;
	}	
}

/* toggle_btn */
.second .toggle_btn {
	background: #000;
}
.second .toggle_btn span {
	background-color: #fff;
}
.toggle_btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 8rem;
	height: 8rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
}
.toggle_btn span {
	display: block;
	position: absolute;
	left: 2.5rem;
	width: 3rem;
	height: 2px;
	background-color: #000;
	transition: all .5s;
}
.toggle_btn span:nth-child(1) {
	top: 2.9rem;
}
.toggle_btn span:nth-child(2) {
	top: 3.9rem;
}
.toggle_btn span:nth-child(3) {
	top: 4.9rem;
}
.open .toggle_btn {
	background: rgba(255,255,255,0);
}
.open .toggle_btn span {
	background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
	-webkit-transform: translateY(1rem) rotate(-45deg);
	transform: translateY(1rem) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
	-webkit-transform: translateY(-1rem) rotate(45deg);
	transform: translateY(-1rem) rotate(45deg);
}
/* mask */
#mask {
	display: none;
	transition: all .5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	opacity: .8;
	z-index: 2;
	cursor: pointer;
}



/*  ----------------------------------------------------------

menu

----------------------------------------------------------  */
ul.lcmenu {
	display:flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	justify-content: space-between;
}
ul.lcmenu li {
	width: 32%;
	margin-right: 0.5%;
	text-align: center;
	margin-bottom: 1%;
}
ul.lcmenu li:nth-child(3n) {
	margin-right: 0;
}
ul.lcmenu li a {
	display: block;
	padding: 1.5rem 0;
	border: solid #333 1px;
	background: #fff;	
}
ul.lcmenu li.current {
	background: #a6080f;
	border: none;
}
ul.lcmenu li.current a {
	color: #fff;
}
@media screen and (max-width: 767px) {
	ul.lcmenu li {
		width: 49%;
		margin-right: 0;
		margin-bottom: 2%;
	}
}
.course dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	width: 100%;
}
.course dl dt {
	width: 120px;
}
.course dl dd {
	width: calc(100% - 120px);
}
.course dl dt.price {
	margin-top: 3px;
}
.course dl dt.price + dd span:nth-child(1) {
	font-size: 2rem;
	font-weight:900;
}
.course dl dt.price + dd span:nth-child(2) {
	font-size: 1rem;
	margin-left: 0.2rem;
	vertical-align: 1px;
}
.course dl {
	border-bottom: 1px solid rgba(255,255,255,0.2); /* コース下線 */
}
.course dl dt.price + dd {
	color: #dbaf4c; /* コース価格カラー */
}

dl.menu-list dt,
dl.menu-list dd,
dl.menu-list dt.var,
dl.menu-list dt.var + dd {
	border-bottom: solid 1px rgba(0,0,0,0.15); /* メニュー下線カラー */
}
dl.menu-list dt:first-child,
dl.menu-list dt:first-child + dd {
	border-top: solid 1px rgba(0,0,0,0.15); /* メニュー上線カラー */
}
dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd) + dd{
	background:rgba(0,0,0,0.025); /* メニュー背景色 */
}
dl.menu-list dt.var + dd dl dt:nth-of-type(odd){
	background: none!important;
}
dl.menu-list dt.var + dd dl dt:nth-of-type(odd) + dd{
	background: none!important;
}
dl.menu-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 6rem;
}
dl.menu-list dt {
	padding: 1.2rem 1.5rem;
	width: 65%;
}
dl.menu-list dt span {
	display: block;
	font-size: 70%;
	line-height: 1.8;
}
dl.menu-list dd {
	padding: 1.2rem 1.5rem 0 1.2rem;
	text-align: right;
	width: 35%;
}
dl.menu-list dd span:nth-child(1) {
	font-weight: bold;	
	font-size: 1.8rem;
}
dl.menu-list dd span:nth-child(2) {
	font-size: 0.9rem;
	margin-left: 0.2rem;
}

dl.menu-list dt.var + dd dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
dl.menu-list dt.var + dd dl dt {
	border-bottom: none;
	border-top: none;
	font-size: 70%;
	text-align: right;
	padding: 0;
	width: 65%;
}
dl.menu-list dt.var + dd dl dd {
	border-bottom:none;
	border-top: none;	
	padding: 0;
	width: 35%;
}
.note {
	font-size: 1.2rem;
	opacity: 0.85;
}
@media screen and (max-width: 767px) {
	dl.menu-list {
		display: block;
	}
	dl.menu-list dt {
		width: 100%;
		border-bottom: none;
		padding: 12px 15px 0 15px;		
	}
	dl.menu-list dd {
		width: 100%;
		border-top: none;
		padding: 0 15px 12px 15px;				
	}
	dl.menu-list dt:first-child + dd {
		border-top: none;
	}
	dl.menu-list dt.var {
		border-bottom: none;
	}
}


/*  ----------------------------------------------------------

gallery

----------------------------------------------------------  */
.gallery-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	justify-content: center;
	width: 90%;
	margin: 8rem auto;
}	
.gallery-list li {
	list-style: none;
	margin: 0 1rem 2rem 1rem;
}
.gallery-list img {	
	height: 14vw;
	width: 14vw;
	object-fit: cover;	
}
.gallery-list span {	
	display: block;
	font-size: 1.2rem;
	line-height: 1.7;
	margin: 1.2rem 0 0 0;
	text-align: center;
	width: 14vw;
}
.object-fit-img {
	object-fit: contain;
	font-family: 'object-fit: contain;'
}
@media screen and (max-width: 767px) {
	.gallery-list {
		margin: 4rem auto;
		width: 95%;
	}	
	.gallery-list li {
		margin: 0 .5rem 1.5rem .5rem;
	}	
	.gallery-list img {	
		width: 20vw;
		height: 20vw;
	}
	.gallery-list span {	
		font-size: 1rem;
		line-height: 1.6;
		margin: 1rem auto 0 auto;
		width: 20vw;
	}
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
	margin: 10rem auto;
	width: 80%;
}
.container .inner {
	display: flex;
}
.container .inner img {
	height: auto;
	width: 32rem;	
	margin-right: 4rem;
}
@media screen and (max-width: 767px) {
	.container {
		margin: 8rem 2rem;
		width: auto;
	}
	.container .inner {
		display: block;
	}
	.container .inner img {
		height: auto;
		width: 100%;	
		margin-right: 0;
		margin-bottom: 3rem;
	}
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 768px) {
	.sp {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    line-height: 1;
    position: fixed;
	z-index: 999;
	width: 8rem;
}
@media screen and (min-width: 768px) {
    #page-top {
        bottom: 2rem;
        right: 1.5rem;	
    }
    #page-top i {
        font-size: 5.6rem!important;
    }	
}
@media screen and (max-width: 767px) {
    #page-top {
        bottom: 1.5rem;
        right: 1rem;	
    } 
    #page-top i {
        font-size: 4.8rem!important;
    }		
}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    transition: 0.3s ease-in-out; 
}
a:hover {
    opacity: 0.4;  
    filter: alpha(opacity=60);  
} 
@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
a[href^="mailto:"] {
	text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .container a[href^="tel:"] {
        text-decoration: underline;
    }
}






/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}
@-ms-keyframes fadeInUp {
	0% {
		opacity: 0;
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
	-ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
    animation-fill-mode: both
}
.fade {
	opacity: 0;
}
.delay1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}
.delay2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}
.delay3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}
.delay4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.delay5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
.mb10	{ margin-bottom: 1rem!important; }
.mb15	{ margin-bottom: 1.5rem!important; }
.mb20	{ margin-bottom: 2.0rem!important; }
.mb25	{ margin-bottom: 2.5rem!important; }
.mb30	{ margin-bottom: 3.0rem!important; }
.mb35	{ margin-bottom: 3.5rem!important; }
.mb40	{ margin-bottom: 4.0rem!important; }
.mb45	{ margin-bottom: 4.5rem!important; }
.mb50	{ margin-bottom: 5.0rem!important; }
.mb55	{ margin-bottom: 5.5rem!important; }
.mb60	{ margin-bottom: 6.0rem!important; }
.mb70	{ margin-bottom: 7.0rem!important; }
.mb80	{ margin-bottom: 8.0rem!important; }
.mb90	{ margin-bottom: 9.0rem!important; }
.mb100	{ margin-bottom: 10.0rem!important; }