@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* 全体の設定 */

html {
	color: #222;
	}

body {
	width: 100%;
	font-family: "Arial",'Hiragino Sans', YuGothic, 'Yu Gothic medium', Meiryo, 'sans-serif';
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	font-size: 18px;
	min-height: 3000px;
	}

a {
	text-decoration: none;
	color: #222;
	cursor: pointer;
	}

p {
	color: #222;
	line-height: 1.8;
	}

img {
	border: none;
	}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}

.container {
    padding: 120px 0;
}
	
.wrapper {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	}

.wrapper_small {
	width: 95%;
	max-width: 960px;
	margin: 0 auto;
	}

.pc {
	display: block;
	}

.sp {
	display: none;
	}

.h2 {
	font-size: 48px;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	margin-bottom: 50px;
}

.btn {
	display: block;
	width: 300px;
	height: 60px;
	background-color: tranparent;
	color: #222;
	border-radius: 30px;
	text-align: center;
	font-weight: 600;
	line-height: 58px;
	transition: .2s;
	margin: 0 auto;
	border: 1px solid #222;
}

.btn:hover {
	background-color: #222;
	color: #FFF;
}




/* header */
.header {
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9000;
}

.header__link {
	width: 200px;
	height: 39px;
	position: absolute;
	left: 1%;
	top: 20px;
	background-image: url("/img/common/logo_black.png");
	background-size: cover;
	background-position: center center;
	transition: .2;
}

.header__link:hover {
	opacity: .7;
}


/* globalNav */
.globalNav {
	position: absolute;
	right: 0.5%;
	top: 18px;
}

.globalNav__box {
	display: flex;
}

.globalNav__item {
	margin-left: 25px;
	line-height: 37px;
}

.globalNav__link {
	font-size: 14px;
	font-weight: 600;
	transition: .2s;
	padding-bottom: 5px;
}

.globalNav__link:hover,
.globalNav__link.current {
	border-bottom: 2px solid #e50012;
}

.globalNav__item:nth-of-type(7) .globalNav__link {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	background-image: url("/img/common/icon_globalNav_instagram_black.png");
	background-size: cover;
	background-position: center center;
	margin-top: 7px;
	transition: .2s;
}

.globalNav__item:nth-of-type(8) .globalNav__link {
	display: inline-block;
	width: 100px;
	height: 40px;
	background-color: #06c655;
	border-radius: 40px;
	position: relative;
	padding-left: 42px;
	line-height: 42px;
	transition: .2s;
	color: #FFF;
}

.globalNav__item:nth-of-type(8) .globalNav__link::before {
	display: inline-block;
	content: "";
	width: 24px;
	height: 23px;
	background-image: url("/img/common/icon_globalNav_line.png");
	background-size: cover;
	position: absolute;
	top: 9px;
	left: 13px;
}

.globalNav__item:nth-of-type(9) {
	margin-left: 10px;
}

.globalNav__item:nth-of-type(9) .globalNav__link {
	display: inline-block;
	font-size: 16px;
	width: 180px;
	height: 40px;
	background-color: #e50012;
	border-radius: 40px;
	position: relative;
	line-height: 42px;
	text-align: center;
	transition: .2s;
	color: #FFF;
}

.globalNav__item:nth-of-type(9) .globalNav__link span span {
	font-size: 11px;
	vertical-align: 1px;
	margin-right: 5px;
}

.globalNav__item:nth-of-type(7) .globalNav__link:hover,
.globalNav__item:nth-of-type(8) .globalNav__link:hover,
.globalNav__item:nth-of-type(9) .globalNav__link:hover {
	border-bottom: none;
	opacity: .8;
}



/* header scroll */
.header.scroll {
	background-color: #FFF;
	box-shadow: 0 0 10px #DDD;
}

.header.scroll .header__link {
	background-image: url("/img/common/logo_black.png");
}

.header.scroll .globalNav__link {
	color: #222;
}

.header.scroll .globalNav__item:nth-of-type(7) .globalNav__link {
	background-image: url("/img/common/icon_globalNav_instagram_black.png");
}

.header.scroll .globalNav__item:nth-of-type(8) .globalNav__link,
.header.scroll .globalNav__item:nth-of-type(9) .globalNav__link {
	color: #FFF;
}



/* pageTitle */
.pageTitle {
	margin-top: 180px;
	margin-bottom: 30px;
}

.pageTitle__h1 {
	font-size: 60px;
	font-family: "Yuji Syuku", serif;
	text-align: center;
}

.pageTitle__h1-en {
	display: block;
	color: #e50012;
	font-size: 32px;
	font-weight: 600;
	font-family: Arial, Helvetica, "sans-serif";
}



/* mv */
.mv {
	width: 100%;
	height: 700px;
	background-position: center center;
	background-size: cover;
}




/* breadcrumb */
.breadcrumb__box {
	display: flex;
	height: 50px;
	line-height: 50px;
	margin: 0 auto;
}

.breadcrumb__item {
	margin-right: 10px;
}

.breadcrumb__item:not(:first-child)::before {
	content: ">";
	margin-right: 10px;
	font-size: 14px;
	color: #999;
}

.breadcrumb__link {
	font-size: 16px;
	color: #999;
}

.breadcrumb__link:hover {
	text-decoration: underline;
}



/* reservation */
.reservation__header {
	width: 100%;
	height: 500px;
	background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),url("/img/common/bg_reservation.jpg");
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.reservation__h2,
.reservation__h2 .h2__en,
.reservation__header-txt {
	color: #FFF;
	text-align: center;
}

.reservation__box {
	display: flex;
	margin-top: -80px;
	box-shadow: 0 0 10px #777;
}

.reservation__item {
	width: 50%;
	padding: 60px 30px;
	text-align: center;
}

.reservation__item--tel {
	background-color: #FFF;
}

.reservation__item--line {
	background-color: #06c655;
	color: #FFF;
}

.reservation__h3 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 30px;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	font-style: normal;
}

.reservation__icon {
	display: block;
	width: 60px;
	height: auto;
	margin: 0 auto 20px auto;
}

.reservation__item-txt {
	margin-bottom: 25px;
}

.reservation__item--line .reservation__item-txt {
	color: #FFF;
}

.reservation__btn {
	width: 220px;
	height: 55px;
	line-height: 55px;
}

.reservation__item--line .reservation__btn {
	border: 1px solid #FFF;
	background: transparent;
	color: #FFF;
}




/* footer__map */
.footer__map,
.footer__map iframe {
	display: block;
	width: 100%;
	height: 500px;
}



/* sponsor */
.footer__sponsor-box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer__sponsor-item {
	width: 22%;
	border: 1px solid #DDD;
}

.footer__sponsor-item img {
	display: block;
	width: 100%;
	height: auto;
	transition: .2s;
}

.footer__sponsor-item img:hover {
	opacity: .7;
}



/* footer */
.footer {
	background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),url("/img/common/bg_footer.jpg");
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: auto;
	position: relative;
	padding: 130px 0;
}

.footer__upper {
	padding: 0 50px;
	display: flex;
	justify-content: space-between;
}

.footer__upper-left {
	width: 40%;
}

.footer__logo {
	display: block;
	width: 290px;
	height: auto;
	margin-bottom: 30px;
}

.footer__txt {
	font-size: 14px;
	color: #FFF;
}

.footer__nav {
	display: flex;
}

.footer__nav > li {
	margin-left: 50px;
}

.footer__nav > li > ul > li {
	line-height: 2.2;
}

.footer__nav > li > ul > li > a {
	font-size: 13px;
	color: #FFF;
	font-weight: 500;
}

.footer__nav > li > ul > li > ul > li > a {
	font-size: 12px;
	color: #FFF;
}

.footer__nav > li > ul > li > ul > li > a:before {
	content: "-";
	margin-right: 5px;
}

.footer__copyright {
	margin: 50px 50px 0 50px;
	border-top: 0.5px solid #FFF;
	padding-top: 30px;
	color: #FFF;
}








/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

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

/* 全体の設定 */
body {
	max-width: 1199px;
	min-width: 100%;
	}
	
	
	
/* header */
.globalNav__item:nth-of-type(1),
.globalNav__item:nth-of-type(2),
.globalNav__item:nth-of-type(3),
.globalNav__item:nth-of-type(4),
.globalNav__item:nth-of-type(5),
.globalNav__item:nth-of-type(6) {
	display: none;
}
	
.globalNav {
	right: 110px;	
}


	
	

	
	

}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

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

/* 全体の設定 */
body {
	max-width: 959px;
	min-width: 100%;
	}
	
	
	
/* footer */
.footer__upper {
	padding: 0 50px;
	display: block;
	justify-content: space-between;
}

.footer__upper-left {
	width: 100%;
	margin-bottom: 50px;
	text-align: center;
}

.footer__logo {
	margin: 0 auto 30px auto;
}

.footer__txt {
	font-size: 13px;
	color: #FFF;
}
		
.footer__upper-right {
	display: flex;
	justify-content: center;
}

.footer__nav {
	display: flex;
}

.footer__copyright {
	text-align: center;
}
	

	

}

	
/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

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

/* 全体の設定 */
body {
	max-width: 767px;
	font-size: 14px;
	}
	
.container {
    padding: 60px 0;
}

.pc {
	display: none;
	}

.sp {
	display: block;
	}

.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
	}
	
.btn {
	width: 250px;
	height: 45px;
	line-height: 45px;
}

.h2 {
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 20px;
}
	
	
	
/* header */
.header {
	height: 50px;
}

.header__link {
	width: 120px;
	height: 24px;
	top: 13px;
}

	
	
/* globalNav */
.globalNav {
	right: 55px;
	top: 5px;
}

.globalNav__link {
	font-size: 10px;
	padding-bottom: 0px;
}

.globalNav__item:nth-of-type(7) .globalNav__link {
	width: 16px;
	height: 16px;
	margin-top: 10px;
}

.globalNav__item:nth-of-type(8) {
	margin-left: 5px;
}

.globalNav__item:nth-of-type(8) .globalNav__link {
	display: inline-block;
	width: 65px;
	height: 26px;
	padding-left: 25px;
	line-height: 27px;
}

.globalNav__item:nth-of-type(8) .globalNav__link::before {
	display: inline-block;
	content: "";
	width: 16px;
	height: 14px;
	background-image: url("/img/common/icon_globalNav_line.png");
	background-size: cover;
	position: absolute;
	top: 6px;
	left: 7px;
}

.globalNav__item:nth-of-type(9) {
	margin-left: 5px;
}

.globalNav__item:nth-of-type(9) .globalNav__link {
	width: 70px;
	height: 26px;
	line-height: 27px;
	font-size: 11px;
}
	
	
	
/* pageTitle */
.pageTitle {
	margin-top: 70px;
	margin-bottom: 20px;
}

.pageTitle__h1 {
	font-size: 24px;
}

.pageTitle__h1-en {
	font-size: 16px;
}



/* mv */
.mv {
	height: 200px;
}

	
	
	
/* reservation */
.reservation__header {
	height: 270px;
}

.reservation__box {
	display: block;
	margin-top: -40px;
	box-shadow: 0 0 5px #777;
}

.reservation__item {
	width: 100%;
	padding: 40px 20px;
}

.reservation__h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.reservation__icon {
	width: 45px;
	margin: 0 auto 10px auto;
}

.reservation__item-txt {
	margin-bottom: 15px;
}

.reservation__btn {
	width: 180px;
	height: 45px;
	line-height: 45px;
}
	


/* footer__map */
.footer__map,
.footer__map iframe {
	height: 300px;
}
	
	
	
/* sponsor */
.footer {
	padding: 60px 0 45px 0;
}
	
.footer__sponsor {
	padding-bottom: 45px;
}
	
.footer__sponsor-box {
	display: flex;
}

.footer__sponsor-item {
	width: 48%;
	margin-right: 4%;
	border: 1px solid #DDD;
	margin-bottom: 15px;
}
	
.footer__sponsor-item:nth-of-type(2n) {
	margin-right: 0;
}

.footer__sponsor-item img {
	display: block;
	width: 100%;
	height: auto;
	transition: .2s;
}

.footer__sponsor-item img:hover {
	opacity: .7;
}

	
	
/* footer */
.footer {
	padding: 50px 0 40px 0;
}

.footer__upper {
	padding: 0 20px;
}
	
.footer__logo {
	width: 200px;
	margin-bottom: 20px;
}

.footer__txt {
	font-size: 12px;
	color: #FFF;
}
	
.footer__upper-left {
	margin-bottom: 20px;
}
	
.footer__upper-right {
	display: none;
}

.footer__copyright {
	margin: 10px 20px;
	border-top: 0.5px solid #FFF;
	padding-top: 10px;
	font-size: 12px;
}
	
.footer a {
	color: #FFF;
}
	


}