@charset "UTF-8";

/* =============================================
	mobile menu settings
=============================================　*/
/* Mobile Menu Button */
#menu-button{
	visibility:hidden;
	opacity:0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 900;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	background-color: #fafafa;
}
#menu-button.nav-on {
	visibility:visible;
	opacity:1;
}
#menu-button .ham-lines {
	position: relative;
	margin: 0 auto;
	width: 32px;
	height: 32px;
}
#menu-button .ham-lines span,
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	position: absolute;
	display: block;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 28px;
	height: 2px;
	background-color: #111;
	border-radius: 1px;
}
#menu-button .ham-lines span {
	bottom: 15px;
	transition: all .25s .25s;
	opacity: 1;
}
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	content: "";
}
#menu-button .ham-lines::before{
	bottom: 24px;
	animation: menu-bar01 .75s forwards;
}
#menu-button .ham-lines::after {
	bottom: 6px;
	animation: menu-bar03 .75s forwards;
}
#menu-button .ham-text {
	font-size: 12px;
	line-height: 1;
}
#menu-button.is-active .ham-lines span {
	opacity: 0;
}
#menu-button.is-active .ham-lines::before {
	animation: active-menu-bar01 .5s forwards;
}
#menu-button.is-active .ham-lines::after {
	animation: active-menu-bar03 .5s forwards;
}
@keyframes menu-bar01 {
	0% {
		transform: translateY(9px) rotate(45deg);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes menu-bar03 {
	0% {
		transform: translateY(-9px) rotate(-45deg);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes active-menu-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(9px) rotate(45deg);
	}
}
@keyframes active-menu-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(-9px) rotate(-45deg);
	}
}
/* Mobile Menu Button end */

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

	Common settings

============================================= */
/* table border and paddings */
table th,
table td{
	border: 1px solid #424242;
	padding: 10px;
}



/* for the navigation for smartphones including the iPad Pro of landscape size */
#main-menu-container.is-active {
}
/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */
	#main-menu-container {
		position: fixed;
		z-index: 700;
		top: 0;
		left: auto;
		right: -600px;
		bottom: auto;
		overflow-y: auto;
		background-color: #fff;
		display:block;
		width: 600px;
		height: 100vh;
		transition: .3s linear;
	}
	#main-menu-container.is-active{
		right: 0;	
	}
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */



body .pagewidth {
	width: 100%;
	max-width: 1200px;
}
body .row_inner {
	width: 100%;
	max-width: 100%;
}



.font_fot {
	font-family: fot-klee-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height:2;
	letter-spacing:0.05rem;
}
.font_jose {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
}



/* =========== HEADER ========== */
body.home #headerwrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
#headerwrap #header {
	width: 100%;
	max-width: 100%;
	padding: 50px;
}
#header #site-logo {
	width: 150px;
}
.h_reserve {
	border-top: 1px solid #218A81;
	padding-top: 45px;
}
.h_reserve h4 {
	font-size: 25px;
	color: #222222;
	margin-bottom: 30px;
	font-weight: 400;
}
.h_reserve .h_btn {
	display: flex;
	gap: 20px;
}
.h_reserve .h_btn a {
	display: block;
	flex: 1;
	font-size: 18px;
	color: #FFFFFF;
	background: #218A81;
	padding: 20px;
	text-align: center;
	text-decoration: none;
}
.h_reserve .h_btn a:nth-child(2) {
	background: #0086CC;
}
.h_reserve .h_btn a:nth-child(3) {
	background: #5b0d1e;
}
/* =========== MENU ========== */
#menu-button {
	right: 50px;
	top: 50px;
	border-radius: 50%;
	width: 80px;
    height: 80px;
	background: white;
	cursor: pointer;
}
#menu-button .ham-lines span, #menu-button .ham-lines::before, #menu-button .ham-lines::after {
	height: 1px;
	width: 24px;
	background-color: #222;
}
#menu-button .ham-text {
	display: none;
}
#menu-button.is-active {
	box-shadow: 0px 3px 10px #37484726;
}
#main-menu-container {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
	padding: 130px 40px 50px 60px;
	box-sizing: border-box;
}
#main-menu-container #main-menu {
	margin: 0;
}
#main-menu-container #main-menu li {
	font-size: 25px;
	margin-bottom: 45px;
	padding: 0;
	display: block;
}
#main-menu-container #main-menu li a {
	color: #222;
	text-decoration: none;
}
/* =========== FOOTER ========== */
#footerwrap {
	background: #222;
	color: white;
	padding: 100px 0;
}
#footer .f_logo a {
	width: 150px;
	display: block;
	margin: 0 auto;
	line-height: 1;
}
#footer #footer-nav {
	margin: 45px 0;
	text-align: center;
}
#footer #footer-nav li {
	margin: 0;
	font-size: 14px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
}
#footer #footer-nav li a {
	color: white;
	margin: 0;
	padding: 0 15px;
}
#footerwrap .copyright-container {
	text-align: center;
	font-size: 14px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
}
#pc-backtop {
	display: none !important;
}

/* =========== POST ========== */
#pagewrap .news_post .post {
	border-bottom: 1px solid #DCDCD1;
	padding: 15px 0;
	margin-bottom: 10px;
}
#pagewrap .news_post .post:last-child {
	border-bottom: none;
}
#pagewrap .news_post .post .post-title {
	font-size: 16px;
	font-weight: 400;
}
#pagewrap .news_post .post .post-title a {
	color: #262626;
}
#pagewrap .news_post .post .post-date {
	font-size: 14px;
	color: #218A81;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
	margin-bottom: 15px;
}
#pagewrap .post_page .post:last-child {
	border-bottom: 1px solid #DCDCD1;
}
#pagewrap .pagenav {
	text-align: center;
	padding: 70px 0 0;
}
#pagewrap .pagenav .number {
	color: #F3F3F3;
	font-size: 16px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
	background: #218A81;
	padding: 8px 15px;
	border-radius: 0;
	border: none;
	margin: 0 14px;
}
#pagewrap .pagenav .number.current {
	background: #F3F3F3;
	color: #218A81;
}

/* =========== TABLE ========== */
body table {
	width: 100%;
	border-collapse: collapse;
}
.table_price table tr td {
	border: none;
	border-bottom: 1px solid #DBDBDB;
	font-size: 20px;
	padding: 0 0 18px;
}
.table_price table tr td:last-child, .table_price_big table tr td:last-child {
	text-align: right;
}
.table_price_big table tr td {
	border: none;
	border-bottom: 1px solid #DBDBDB;
	font-size: 25px;
	padding: 0 0 18px;
}
.table_price_s table tr td {
	border: none;
	border-bottom: 1px solid #DBDBDB;
	font-size: 16px;
	padding: 15px 0 8px;
	vertical-align: top;
}
.table_price_s table tr td:last-child {
	text-align: right;
	width: 145px;
}
.table_info table tr {
	border-bottom: 1px solid #DBDBDB;
}
.table_info table tr th, .table_info table tr td {
	border: none;
	padding: 22px 0 12px;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
}
.table_info table tr th {
	width: 145px;
}
.table_th_big table tr th {
	width: 220px;
}
/* =========== TITLE ========== */
.module .module-title {
	margin-bottom: 15px;
	font-size: 25px;
	font-weight: 400;
}
.title_mb25.module .module-title {
	margin-bottom: 25px;
}
.fancy-heading .main-head {
	font-size: calc(100vw / 32);
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
}
body .module-fancy-heading .main-head + .sub-head:before {
    border-top: 3px solid #218A81;
    width: 4em;
}
body .head_w.module-fancy-heading .main-head + .sub-head:before {
    border-color: white;
}
.head_title_page .main-head {
	font-size: 50px;
}
.title_en_25.module .module-title {
	font-size: 25px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
}
.title_bd.module .module-title {
	font-size: 20px;
	border-bottom: 1px solid #DBDBDB;
	padding-bottom: 18px;
}
.title_bd_left.module .module-title {
	font-family: fot-klee-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height:2;
	letter-spacing:0.05rem;
}
.title_bd_left.module .module-title:before {
	content: '';
	width: 20px;
	height: 3px;
	background: #218A81;
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}

/* =========== OTHER ========== */
.module {
	margin-bottom: 30px;
}
.module p:last-child {
	margin-bottom: 0;
}

.home_slide .row-slider {
	display: none;
}
.home_slide .module {
	position: absolute !important;
	z-index: 9;
	left: 50%;
	bottom: 0;
}

#pagewrap .btn_green .module-buttons-item a, #pagewrap .btn_blue .module-buttons-item a, #pagewrap .btn_red .module-buttons-item a {
	font-size: 18px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
	color: white;
	background: url(../../uploads/right-icon.png) no-repeat right 20px center, #218A81;
	background-size: 30px;
	padding: 16px 60px;
	min-width: 300px;
	box-sizing: border-box;
	text-align: center;
}
#pagewrap .btn_green_simple .module-buttons-item a, #pagewrap .btn_blue_simple .module-buttons-item a, #pagewrap .btn_red_simple .module-buttons-item a {
	font-size: 18px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
  	font-style: normal;
	line-height:1.5;
	letter-spacing:0.05rem;
	color: white;
	background: #218A81;
	padding: 16px 60px;
	min-width: 300px;
	box-sizing: border-box;
	text-align: center;
}
#pagewrap .btn_blue_simple .module-buttons-item a {
	background: #0086CC;
}
#pagewrap .btn_red_simple .module-buttons-item a {
	background: #691b17;
	max-width: 580px;
/* 	max-width: 100%; */
}
#pagewrap .btn_blue .module-buttons-item a {
	background: url(../../uploads/right-icon.png) no-repeat right 20px center, #0086CC;
	background-size: 30px;
}
#pagewrap .btn_red .module-buttons-item a {
	background: url(../../uploads/right-icon.png) no-repeat right 20px center, #691b17;
	background-size: 30px;
}
#pagewrap .img_shop_list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 150px 160px 150px 150px;
	min-height: 500px;
	box-sizing: border-box;
}
#pagewrap .img_shop_list a img {
	max-height: 122px;
/* 	width: auto; */
	width: 20%;
	max-width: 415px;
}
#pagewrap .img_shop_list-fix a img {
	width: 27%;
}
#pagewrap .img_shop_list a:after {
	content: '';
	width: 60px;
	height: 60px;
	background: url(../../uploads/btn-right.png) no-repeat center;
	background-size: contain;
}
#pagewrap .txt_40 {
	font-size: 40px;
	line-height: 2;
}
#pagewrap .col-3-sp-2 .tb-column-inner {
	display: flex;
    gap: 3.2%;
    flex-wrap: wrap;
}
#pagewrap .col-3-sp-2 .tb-column-inner .module {
	width: 31.2%;
}

body .btn_green a:hover,
body .btn_green_simple a:hover,
body .btn_blue a:hover,
body .btn_blue_simple a:hover,
.h_btn a:hover, body .btn_red a:hover{
	opacity:.7;
	transition:.7s;
}
body #pagewrap .module_column .btn_green a,
body #pagewrap .module_column .btn_green_simple a,
body #pagewrap .module_column .btn_blue a,
body #pagewrap .module_column .btn_blue_simple a,
.h_btn a{
	transition:.7s;
}
span.font-kure {
    font-family: "Zen Kurenaido", sans-serif;
    font-weight: 400;
    font-size: 20px;
}
.title_en_25.module.info_title .module-title {
    font-family: fot-klee-pro, sans-serif;
}
#pagewrap .col-3-sp-2.info_wrap .tb-column-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#pagewrap .col-3-sp-2.info_wrap .tb-column-inner .module {
    margin-bottom: 30px;
    width: auto;
}


.aru-title-fix.module .module-title {
	margin-bottom: 25px;
}

/* reserve */
.reservation-box01,
.reservation-box02 {
	display: none;
}
.reservation-box01.open,
.reservation-box02.open {
	display: block;
}
.reservation-box01 ul,
.reservation-box02 ul {
	position: relative;
	bottom: 0;
	left: 31%;
	width: 400px;
	background: rgba(0, 0, 0, .5);
	list-style: none;
	margin: 0;
	padding: 10px 20px;
	border-radius: 10px;
	display: block;
	text-align: center;
}
.reservation-box02 ul {
	left: 17%;
}
.reservation-box01 ul a,
.reservation-box02 ul a {
	font-size: 14px;
	text-align: center;
	color: #fff;
}



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

	Media Query

============================================= */
@media screen and (max-width: 1200px) { /* for tablet landscapes */

	#pagewrap {
		position: relative;
	}

	#header.header {
		padding-top: 0;
	}

	body .pagewidth {
		max-width: 94%;
	}
	
	

}

@media screen and (max-width: 1024px) { /* for tablet landscape */

	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/
	.wpcf7 table tr th,
	.wpcf7 table tr td{
		width:100%;
		display:block;
		padding: 10px 0px;
	}
	.wpcf7 table tr th{
		padding-bottom:0;
	}
	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/
	.fancy-heading .main-head{
		font-size:40px;
	}

	
	
}

@media screen and (max-width: 980px) { /* for mobile landscape */
/* 	#pagewrap {
		padding-bottom: 50px;
	} */
	#pc-backtop {
		display: none;
	}
	#footer .sp-footer-icons-container {
		display: flex;
	}
	body #footer .sp-footer-icons-container a {
		color: #218A81;
		border-color: #218A81;
	}
	body #footer .sp-footer-icons-container a svg {
		fill: #218A81;
	}
	#pagewrap .img_shop_list a{
		min-height: 300px;
	}
	#pagewrap .txt_40 {
    font-size: 27px;
    line-height: 1.5;
	}
}


@media screen and (max-width: 768px) { /* for mobile  */
	.fancy-heading .main-head {
    	font-size: 40px;
	}
	#pagewrap .img_shop_list a {
		padding: 100px;
		min-height: 300px;
	}
	#footerwrap {
		padding: 50px 0 65px;
	}
	.module .module-title, .title_en_25.module .module-title {
		font-size: 18px;
	}
	#pagewrap .txt_40 {
		font-size: 30px;
	}
	.table_price_s table tr td:last-child, .table_price table tr td:last-child {
		width: 100px;
	}
	.table_price table tr td {
		font-size: 18px;
	}
	.table_info table tr th {
		width: 100px;
	}
	.table_price_big table tr td {
		font-size: 18px;
	}
	.title_bd.module .module-title {
		font-size: 18px;
	}
	#pagewrap .col-3-sp-2 .tb-column-inner .module {
		width: 48.4%;
	} 
	#pagewrap .btn_red_simple .module-buttons-item a {
		min-width: unset;
	}
}

@media screen and (max-width: 680px) { /* for mobile small  */
	#headerwrap #header {
		padding: 10px;
	}
	#header #site-logo {
		width: 58px;
	}
	#menu-button {
		right: -10px;
		top: -10px;
		transform: scale(0.5);
	}
	#main-menu-container {
		width: 100vw;
		right: -100%;
		padding: 50px 20px;
	}
	#main-menu-container #main-menu li {
		font-size: 20px;
		margin-bottom: 25px;
	}
	.h_reserve {
		padding-top: 25px;
		padding-bottom: 100px;
	}
	.h_reserve h4 {
		font-size: 20px;
		margin-bottom: 25px;
	}
	.h_reserve .h_btn a {
		padding: 15px;
	}
	
	.fancy-heading .main-head {
    	font-size: 30px;
	}
	#pagewrap .img_shop_list a {
		padding: 50px;
		min-height: 160px;
	}
	#footer #footer-nav {
    	margin: 30px auto;
		width: 80%;
	}
	#footer #footer-nav li {
		margin-bottom: 15px;
	}
	.home_slide {
		min-height: 60vh !important;
	}
	#pagewrap .img_shop_list a img {
		max-height: 43px;
		max-width: 166px;
		width: 30%;
	}
	#pagewrap .img_shop_list-fix a img {
		width: 37%;
	}
	#pagewrap .img_shop_list a:after {
		width: 30px;
		height: 30px;
	}
	.title_en_25.module .module-title {
		font-size: 13px;
	}
	#pagewrap .txt_40 {
		font-size: 25px;
	}
	.head_title_page .main-head {
		text-align: left;
		margin: 0 3%;
	}
	#pagewrap .news_post .post:last-child {
	border-bottom: 1px solid #DCDCD1 !important;
	}
	.col-3-sp-2-font p{
		font-size:14px;
	}
	#pagewrap .col-3-sp-2.info_wrap .tb-column-inner {
		display: block;
	}
	.h_reserve .h_btn{
		flex-direction: column;
	}
	
	.reservation-box01 ul {
		left: 10%;
		width: 250px;
	}
	.reservation-box02 ul {
		width: 250px;
	}
	
	
}


/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:50%;
	bottom:10px;
    /*全体の高さ*/
	height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

