@charset "utf-8";

/*--------------------------------------------------
	common
--------------------------------------------------*/
a:link { color: #c0603f; text-decoration: none; }
a:visited { color: #c0603f; text-decoration: none; }
a:hover { color: #c0603f; text-decoration: none; }
@media screen and (min-width: 768px) {
a[href^="tel:"] { pointer-events: none; color: inherit; }
}

.bold {	font-weight: 700; }

/* 選択時背景色 */
/*::selection {background: #fe4545;color:#fff; }
::-moz-selection {background: #fe4545;color:#fff; }*/

.mgt05 { margin-top: 5px; }
.mgt10 { margin-top: 10px; }
.mgt15 { margin-top: 15px; }
.mgt20 { margin-top: 20px; }
.mgt25 { margin-top: 25px; }
.mgt30 { margin-top: 30px; }
.mgt35 { margin-top: 35px; }
.mgt40 { margin-top: 40px; }
.mgt45 { margin-top: 45px; }

.right { text-align: right; }
.left { text-align: left; }
.center { text-align: center; }

.sp { display: none !important; }
@media screen and (max-width: 767px) {
.pc { display: none !important; }
.sp { display: inherit !important; }
}

/*--------------------------------------------------
	layout
--------------------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.0rem;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	color: #190e00;
}
img {
	max-width: 100%;
	height: auto;
}
.wrap {
	text-align: left;
	font-size: 1.6rem;
}
section {
	padding-top: 120px;
	padding-bottom: 120px;
}
.inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding-right: 40px;
	padding-left: 40px;
}
.sec_ttl {
	font-size: 10rem;
	font-weight: 900;
	margin-bottom: 80px;
}
@media screen and (max-width: 1279px) {
}
@media screen and (max-width: 767px) {
	.wrap {
		font-size: 1.4rem;
	}
	section{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.inner {
		padding-right: 4%;
		padding-left: 4%;
	}
	.sec_ttl {
		font-size: 5rem;
		margin-bottom: 40px;
	}
}

/*--------------------------------------------------
	#header
--------------------------------------------------*/
#header {
	position: fixed;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	background: rgba(255,255,255,0.9);
	z-index: 1000;
}
.header_logo {
	width: 140px;
	margin-left: 40px;
}
.header_right,
.header_nav,
.header_nav_list {
	display: flex;
	justify-content: flex-end;
	height: 100%;
}
.header_nav_item {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 700;
	margin-left: 50px;
}
.header_nav_item a {
	color: #190e00;
}
.header_nav_item.inst a {
	display: block;
	width: 40px;
}
.header_btn {
	display: flex;
	margin-left: 30px;
}
.header_btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	padding: 0 15px;
}
.header_btn .btn_tel {
	background: #bbc03f;
}
.header_btn .btn_reserve {
	color: #fff;
	background: #c0603f;
}
@media screen and (max-width: 1279px) {
	.header_nav_item {
		margin-left: 25px;
	}
	.header_btn a {
		width: auto;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	#header {
		display: block;
		height: initial;
		background: none;
	}
	.header_logo {
		display: none;
	}
	.header_right,
	.header_nav,
	.header_nav_list,
	.header_nav_item {
		display: block;
	}

	.header_nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 66.67%;
		height: 100%;
		font-size: 1.8rem;
		padding: 80px 20px 30px 30px;
		background: rgba(255,255,255,0.8);
		border-radius: initial;
		transition: right 0.3s ease;
	}
	.header_nav.open {
		right: 0;
	}
	.hamburger {
		position: fixed;
		top: 10px;
		right: 10px;
		width: 50px;
		padding: 10px;
		background: #190e00;
		border-radius: 5px;
		box-shadow: 0 0 20px rgba(25,14,0,0.3);
		cursor: pointer;
		z-index: 150;
	}
	.hamburger span {
		display: block;
		height: 3px;
		width: 100%;
		background-color: #fff;
		margin: 5px 0;
		transition: 0.4s;
	}
	/* バツ印に変化するスタイル */
	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	.header_nav_item {
		font-size: 1.8rem;
		margin-left: 0;
	}
	.header_nav_item + .header_nav_item {
		margin-top: 35px;
	}

	.header_btn {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		margin-left: 0;
		box-shadow: 0 0 20px rgba(25,14,0,0.3);
		z-index: 1000;
	}
	.header_btn a {
		width: 50%;
		font-size: 2rem;
		padding: 0 15px;
	}
	.header_btn .btn_tel {
		color: #190e00;
	}
}

/*--------------------------------------------------
	content
--------------------------------------------------*/
#fv {
	position: relative;
	text-align: center;
	padding: 20px 0;
	background: #190e00;
	border-top: 60px #fff solid;
}
.fv_slide li {
	padding-right: 10px;
	padding-left: 10px;
}
.fv_logo {
	position: absolute;
	top: 150px;
	right: 0;
	left: 0;
	width: 39.58%;
	/* width: 760px; */
	margin: auto;
}
@media screen and (max-width: 1279px) {
}
@media screen and (max-width: 767px) {
	#fv {
		padding: 0 0 20px;
		border-top: initial;
	}	
	.fv_slide li {
		padding-right: 5px;
		padding-left: 5px;
	}
	.fv_logo {
		width: 90.67%;
	}
}


#sec_intro {
	height: 820px;
	text-align: center;
	margin: 20px;
	padding: 100px 40px;
	background: url(../images/intro_bg.jpg) no-repeat center center;
	background-size: cover;
}
.intro_message {
	line-height: 1.5;
	font-size: 2.4rem;
}
.intro_message p + p {
	margin-top: 1em;
}
.intro_block {
	margin-top: 100px;
	padding: 0 40px 60px;
	background: rgba(255,255,255,0.5);
	box-shadow: 0 0 40px rgba(25,14,0,0.3);
}
.intro_block_ttl {
	display: inline-block;
	line-height: 1.5;
	font-size: 2rem;
	color: #fff;
	letter-spacing: 0.1em;
	font-weight: 700;
	margin-top: -20px;
	padding: 20px;
	background: linear-gradient(to right,  #bbc03f 0%,#c0603f 100%);
}
.intro_course_list {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}
.intro_course_list li {
	position: relative;
	display: inline-block;
	color: #fff;
	margin: 0 5px;
	padding: 10px 20px;
	background: #190e00;
	border-radius: 20px;
	z-index: 1;
}
.intro_course_list::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 87.5%;
	height: 1px;
	margin: auto;
	background: #190e00;
}
.intro_course_name {
	font-size: 2.4rem;
	font-weight: 700;
	font-style: italic;
	margin-top: 30px;
}
.intro_block_txt {
	line-height: 2;
	margin-top: 20px;
}
@media screen and (max-width: 1279px) {
	.intro_course_list {
		align-items: stretch;
	}
	.intro_course_list li {
		writing-mode: vertical-rl;
	}
}
@media screen and (max-width: 767px) {
	#sec_intro {
		height: initial;
		margin: 0;
		padding: 40px 4%;
		background: linear-gradient(to bottom,  rgba(233,227,209,1) 0%,rgba(233,227,209,0.98) 1%,rgba(233,227,209,0) 20%), url(../images/intro_bg_sp.jpg) no-repeat center bottom;
		background-size: contain;
	}
	.intro_message {
		font-size: 1.6rem;
	}
	.intro_block {
		margin-top: 60px;
		padding: 0 4% 25px;
		background: rgba(255,255,255,0.6);
	}
	.intro_block_ttl {
		font-size: 1.6rem;
		letter-spacing: initial;
		padding: 10px;
	}
	.intro_block_course {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.intro_course_list {
		flex-direction: column;
		justify-content: initial;
		align-items: baseline;
		margin-top: 30px;
	}
	.intro_course_list li {
		writing-mode: initial;
		font-size: 1.2rem;
		margin: 5px 0;
		padding: 10px;
	}
	.intro_course_list::after {
		right: 40px;
		width: 1px;
		height: 87.5%;
	}
	.intro_course_name {
		position: relative;
		display: inline-block;
		width: 180px;
		height: 180px;
		font-size: 1.6rem;
		color: #fff;
		margin-top: 0;
		background: #190e00;
		border-radius: 50%;
	}
	.intro_course_name p {
		position: absolute;
		display: inline-block;
		left: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 180px;
		line-height: 2;
		text-align: center;
	}
	.intro_course_name p span {
		font-size: 1.8rem;
	}
	.intro_block_txt {
		text-align: left;
		margin-top: 20px;
	}
}




#sec_style {
}
.style_slideWrap {
	display: flex;
	justify-content: space-between;
}
.style_slide {
	width: 31.83%;
}
.style_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 60px;
}
.style_list li {
	position: relative;
	width: 23.33%;
}
.style_list li:nth-child(n+5) {
	margin-top: 6.67%; /* 80px */
}
.style_list li:first-child::after,
.style_list li:nth-child(2)::after,
.style_list li:nth-child(3)::after {
	content: '';
	position: absolute;
	right: -30%;
	bottom: -30%;
	display: inline-block;
	width: 50%; /* width: 140px; */
	height: 37.63%; /* height: 140px; */
	vertical-align: middle;
	background: url(../images/accent_plus.png) no-repeat;
	background-size: contain;
}

.slick-dots {
	bottom: -30px !important;
}
.slick-dots li button:before {
	font-size: 12px !important;
	opacity: 1 !important;
}
.slick-dots li.slick-active button:before {
	color: #c0603f !important;
}
@media screen and (max-width: 1279px) {
}
@media screen and (max-width: 767px) {
	.style_slideWrap {
		display: block;
	}
	.style_slide {
		width: 69.57%;
		margin: 0 auto;
	}
	.style_list li {
		width: 47.83%;
	}
	.style_list li:nth-child(n+3) {
		margin-top: 5%;
	}
	.style_list li:first-child::after,
	.style_list li:nth-child(2)::after,
	.style_list li:nth-child(3)::after {
		display: none;
	}
	.style_list li:first-child::after,
	.style_list li:nth-child(3)::after,
	.style_list li:nth-child(5)::after {
		content: '';
		position: absolute;
		right: -25%;
		bottom: -19.5%;
		display: inline-block;
		width: 42.42%; /* width: 70px; */
		height: 31.82%; /* height: 70px; */
		vertical-align: middle;
		background: url(../images/accent_plus.png) no-repeat;
		background-size: contain;	
	}

	.slick-dotted.slick-slider {
		margin-bottom: 50px !important;
	}
}





#sec_menu {
	background: #e9e3d1;
}
.menu_blockWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.menu_block {
	position: relative;
	width: 46.67%;
}
.menu_blockCut, .menu_blockPerm, .menu_blockOption {
	background: #fff;
}
.menu_blockColor {
	background: #f6f4ed;
}
.menu_block:nth-child(n+3) {
	margin-top: 80px;
}
.menu_blockCut::after {
	content: '';
	position: absolute;
	right: -19.5%;
	bottom: -21.5%;
	display: inline-block;
	width: 25%; /* width: 140px; */
	height: 26.92%; /* height: 140px; */
	vertical-align: middle;
	background: url(../images/accent_plus.png) no-repeat;
	background-size: contain;
}
.menu_block_ttl {
	color: #fff;
	padding: 20px 40px;
	background: url(../images/bg_wood.jpg) repeat left top;
}
.menu_block_ttlEn {
	font-size: 4rem;
	font-weight: 900;
	margin-right: 20px;
}
.menu_block_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 1.5;
	padding: 30px 40px;
}
.menu_blockCut .menu_block_item:nth-child(odd),
.menu_blockPerm .menu_block_item:nth-child(odd),
.menu_blockOption .menu_block_item:nth-child(odd) {
	background: #f6f4ed;
}
.menu_blockColor .menu_block_item:nth-child(even) {
	background: #fff;
}
.menu_item_txt {
	width: calc(100% - 100px);
}
.menu_item_txt .name {
	font-weight: 700;
}
.menu_item_txt .detail {
	font-size: 1.4rem;
	color: #847057;
	margin-top: 10px;
}
.menu_item_price {
	width: 100px;
	text-align: right;
}

.menu_payment {
	text-align: center;
	margin-top: 80px;
}
.menu_payment_img {
	margin-top: 20px;
}
@media screen and (max-width: 1279px) {
	.menu_blockCut::after {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.menu_blockWrap {
		display: block;
	}
	.menu_block {
		width: 100%;
	}
	.menu_block + .menu_block {
		margin-top: 30px;
	}
	.menu_block_ttl {
		padding: 10px 4%;
	}
	.menu_block_ttlEn {
		font-size: 3rem;
	}
	.menu_block_item {
		padding: 20px 4%;
	}
	.menu_item_txt {
		width: calc(100% - 80px);
	}
	.menu_item_txt .detail {
		font-size: 1rem;
		margin-top: 0;
	}
	.menu_item_price {
		width: 80px;
	}

	.menu_payment {
		margin-top: 40px;
	}
	.menu_payment_img {
		width: 88.41%;
		margin: 10px auto 0;
	}
}


#sec_staff {
}
.staff_list {
	display: flex;
	justify-content: space-between;
}
.staff_item {
	position: relative;
	width: 31.67%;
	padding: 40px 30px;
	background: #e9e3d1;
	border-top: 4px #190e00 solid;
}
.staff_item_en {
	position: absolute;
	top: 20px;
	right: 10px;
}
.staff_itemA .staff_item_en {
	width: 112px;
}
.staff_itemB .staff_item_en {
	width: 190px;
}
.staff_itemC .staff_item_en {
	width: 182px;
}
.staff_item_photo {
	width: 75%;
	margin: 0 auto;
}
.staff_item_name {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-top: 30px;
}
.staff_item_bd {
	text-align: center;
	font-size: 1.4rem;
	margin-top: 10px;
}
.staff_item_prof {
	line-height: 1.5;
	margin-top: 20px;
}
@media screen and (max-width: 1279px) {
}
@media screen and (max-width: 767px) {
	.staff_list {
		display: block;
	}
	.staff_item {
		width: 100%;
		padding: 30px 4%;
	}
	.staff_item + .staff_item {
		margin-top: 30px;
	}
	.staff_item_en {
		top: 10px;
		right: 4%;
	}
	.staff_itemA .staff_item_en {
		width: 102px;
	}
	.staff_itemB .staff_item_en {
		width: 173px;
	}
	.staff_itemC .staff_item_en {
		width: 167px;
	}
	.staff_item_photo {
		width: 69.84%;
	}
	.staff_item_name {
		font-size: 1.8rem;
		margin-top: 20px;
	}
	.staff_item_bd {
		font-size: 1.2rem;
	}
}


#sec_shop {
	padding-bottom: 0;
	background: #e9e3d1;
}
.shop_wrap {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.shop_columnCalendar {
	width: 50%;
}
.shop_calendar_head {
	text-align: right;
	margin-top: -46px;
}
.shop_calendar_tag {
	display: inline-block;
	height: 46px;
	line-height: 46px;
	font-size: 2rem;
	color: #fff;
	font-weight: 700;
	padding: 0 20px;
	background: #190e00;
}
.shop_calendar_wrap iframe {
	width: 100%;
	max-width: 1280px;
	height: 500px;
}
.shop_columnDesc {
	width: 46.67%;
	line-height: 1.5;
}
.shop_item {
	display: flex;
}
.shop_item + .shop_item {
	margin-top: 20px;
}
.shop_item_head {
	width: 6em;
}
.shop_item_detail {
	width: calc(100% - 6em);
}
.shop_access {
	line-height: 1.5;
	margin-top: 40px;
	padding: 30px;
	background: #fff;
}
.shop_gmap {
	margin-top: 60px;
}
.shop_gmap iframe {
	height: 540px;
}
@media screen and (max-width: 1279px) {
	.shop_wrap {
		display: block;
	}
	.shop_columnDesc,.shop_columnCalendar {
		width: 100%;
	}
	.shop_calendar_head {
		margin-top: -34px;
	}
	.shop_calendar_tag {
		height: 34px;
		line-height: 34px;
		font-size: 1.8rem;
		padding: 0 10px;
	}
	.shop_calendar_wrap iframe {
		height: 380px;
	}
	.shop_columnDesc {
		margin-top: 20px;
	}
	.shop_item + .shop_item {
		margin-top: 10px;
	}
	.shop_access {
		margin-top: 30px;
		padding: 20px 4%;
	}
	.shop_access br {
		display: none;
	}
	.shop_gmap {
		margin-top: 30px;
	}
	.shop_gmap iframe {
		height: 480px;
	}
}
@media screen and (max-width: 767px) {
}

/*--------------------------------------------------
	footer
--------------------------------------------------*/
footer {
	text-align: center;
	color: #fff;
	padding: 40px 40px 35px;
	background: url(../images/bg_wood.jpg) repeat left top;
}
.footer_copy {
	font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
	footer {
		padding: 30px 4% 25px;
		border-bottom: 50px #190e00 solid;
	}	
	.footer_copy {
		font-size: 1rem;
	}
}