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


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

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

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

/* 全体の設定 */

html {
	color: #222;
	}

body {
	width: 100%;
	font-family: Arial, Helvetica, 'sans-serif',"Hiragino Sans", "Hiragino Kaku Gothic ProN", serif;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	font-size: 18px;
	}

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;
	}

.btn {
	display: block;
	width: 90%;
	max-width: 245px;
	height: 60px;
	line-height: 62px;
	color: #222;
	background-color: #fff000;
	border-radius: 30px;
	text-align: center;
	transition: .2s;
	font-weight: 600;
	position: relative;
}

.btn::after {
	display: inline-block;
	content: "";
	width: 14px;
	height: 16px;
	background-image: url("/img/common/icon_btn.png");
	background-size: cover;
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .2s;
}

.btn:hover {
	background-color: #ff8500;
}

.btn:hover::after {
	right: 15px;
}

.h2 {
	font-family: montserrat;
	font-weight: 700;
	font-size: 64px;
	display: inline-block;
	position: relative;
	margin-bottom: 50px;
}

.h2__jp {
	display: block;
	font-size: 20px;
	font-weight: 600;
	font-family: Arial, Helvetica, 'sans-serif',"Hiragino Sans", "Hiragino Kaku Gothic ProN", serif;
	color: #ff8500;
}

.h2__link {
	position: relative;
	transition: .2s;
}

.h2__link::after {
	display: block;
	content: "";
	width: 35px;
	height: 35px;
	background-image: url("/img/common/icon_h2.png"),url("/img/common/icon_h2_hover.png");
	background-size: contain, 0;
	background-position: center center;
	position: absolute;
	right: -60px;
	bottom: 15px;
	transition: .2s;
}

.h2__link:hover {
	color: #ff8500;
}

.h2__link:hover::after {
	background-size: 0, contain;
	right: -65px;
}



/* header */
.header {
	width: 100%;
	height: 120px;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: flex-end;
	transition: .2s;
	z-index: 9000;
}

.header__logo {
	position: absolute;
	top: 30px;
	left: 1.5%;
	width: auto;
	height: 60px;
	transition: .2s;
}

.header__logo:hover {
	opacity: .8;
}

.globalNav {
	margin-right: 1.5%;
	display: flex;
	align-items: center;
}

.globalNav__box {
	display: flex;
}

.globalNav__item {
	margin-left: 30px;
	line-height: 40px;
}

.globalNav__link {
	font-size: 16px;
	font-weight: 600;
	position: relative;
}

.globalNav__link::after {
	display: inline-block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fff000;
	position: absolute;
	left: 0;
	bottom: -12px;
	opacity: 0;
	transform: .2s;
}

.globalNav__link:hover::after {
	opacity: 1;
}

.globalNav__contact {
	width: 180px;
	height: 40px;
	line-height: 42px;
}

.globalNav__contact::after {
	display: none;
}

.sideNav {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 3000;
	width: 50px;
	height: 280px;
}

.sideNav__link {
	transition: .2s;
}

.sideNav__link:hover {
	opacity: .8;
}

.sideNav__link--line {
	display: block;
	width: 50px;
	height: 180px;
	line-height: 50px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .2em;
	color: #FFF;
	background-color: #06be55;
	writing-mode: vertical-lr;
	padding-top: 13px;	
}

.sideNav__link--line::before {
	display: inline-block;
	content: "";
	width: 23px;
	height: 23px;
	background-image: url("/img/common/icon_sideNav_line.png");
	background-size: cover;
	margin-bottom: 5px;
}

.sideNav__link--instagram {
	display: block;
	width: 50px;
	height: 50px;
	background-image: url("/img/common/icon_sideNav_instagram.png");
	background-size: cover;
}

.sideNav__link--tel {
	display: none;
	width: 50px;
	height: 50px;
	background-image: url("/img/common/icon_reservation_tel.png");
	background-size: 35px 35px;
	background-position: center center;
	background-repeat: no-repeat;
}



/* header scroll */
.header.scroll {
	height: 80px;
	background-color: #FFF;
}

.header.scroll .header__logo {
	top: 10px;
}



/* mv */
.mv {
	width: 100%;
	margin-top: 180px;
	text-align: center;
}

.mv__h1 {
	display: inline-block;
	font-family: montserrat;
	font-weight: 700;
	font-size: 80px;
}

.mv__h1 span {
	display: block;
	font-size: 24px;
	font-weight: 600;
	font-family: Arial, Helvetica, 'sans-serif',"Hiragino Sans", "Hiragino Kaku Gothic ProN", serif;
	color: #ff8500;
}

.mv__img {
	margin-top: 40px;
	margin-left: 10%;
	width: calc(100% - 10%);
	height: 600px;
	background-size: cover;
	background-position: center center;
	position: relative;
	border-radius: 30px 0 0 30px;
	z-index: -10;
}



/* 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;
}




/* contact */
.contact__wrapper {
	width: calc(100% - 140px);
	max-width: 100%;
	border-radius: 30px;
	position: relative;
	padding: 100px 6%;
	background-image: linear-gradient(rgba(255,240,0,.7), rgba(255,240,0,.7)),url("/img/common/bg_reservation.jpg");
	background-size: cover;
	background-position: center center;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact__left {
	width: 40%;
}

.contact__h2 {
	text-align: left;
	margin-bottom: 20px;
}

.contact__txt {
	line-height: 2;
}

.contact__right {
	width: 57%;
	max-width: 570px;
}

.contact__btn {
	display: block;
	width: 100%;
	height: 110px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 6%;
	transition: .2s;
	border-radius: 10px;
}

.contact__btn:hover {
	opacity: .8;
}

.contact__btn--tel {
	background-color: #FFF;
	margin-bottom: 25px;
}

.contact__btn--tel .contact__btn-left {
	font-size: 30px;
	font-family: Arial, Helvetica, "sans-serif";
	font-weight: 600;
}

.contact__btn--tel .contact__btn-left::before {
	display: inline-block;
	content: "";
	width: 37px;
	height: 38px;
	background-image: url("/img/common/icon_reservation_tel.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: -8px;
	margin-right: 15px;
}

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

.contact__btn--mail {
	background-color: #000;
	margin-bottom: 25px;
}

.contact__btn--mail .contact__btn-left {
	font-size: 24px;
	font-weight: 600;
	color: #FFF;
}

.contact__btn--mail .contact__btn-left::before {
	display: inline-block;
	content: "";
	width: 37px;
	height: 38px;
	background-image: url("/img/common/icon_reservation_mail.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: -8px;
	margin-right: 15px;
}

.contact__btn--line .contact__btn-left {
	font-size: 24px;
	font-weight: 600;
	color: #FFF;
}

.contact__btn--line .contact__btn-left::before {
	display: inline-block;
	content: "";
	width: 37px;
	height: 34px;
	background-image: url("/img/common/icon_reservation_line.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: -8px;
	margin-right: 15px;
}

.contact__btn--line .contact__btn-right {
	color: #FFF;
	font-size: 14px;
}

.contact__btn--line .contact__btn-right .pc {
	display: inline-block;
}



/* bnr */
.bnr__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.bnr__item {
	width: 46%;
}

.bnr__link {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #DDD;
	transition: .2s;
}

.bnr__link:hover {
	opacity: .8;
}

.bnr__img {
	display: block;
	width: 100%;
	height: auto;
}



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



/* footer */
.footer {
	background: linear-gradient(#222,#000 80%);
	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: 270px;
	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;
}

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

.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%;
	}
	
	


	
/* contact */
.contact__wrapper {
	display: block;
}
	
.contact__left {
	width: 100%;
	margin-bottom: 40px;
	text-align: center;
}

.contact__h2 {
	text-align: center;
}

.contact__right {
	margin: 0 auto;
	width: 100%;
}

.contact__btn {
	display: block;
	width: 100%;
	height: 110px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 6%;
	transition: .2s;
	border-radius: 10px;
}

.contact__btn:hover {
	opacity: .8;
}


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

	
	

	
	

}



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

タブレットの設定 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: 80%;
	max-width: 245px;
	height: 45px;
	line-height: 47px;
}

.btn::after {
	width: 10px;
	height: 12px;
	right: 20px;
}

.btn:hover::after {
	right: 15px;
}

.h2 {
	font-size: 28px;
	margin-bottom: 30px;
}

.h2__jp {
	font-size: 14px;
}

.h2__link::after {
	width: 17px;
	height: 17px;
	right: -35px;
	bottom: 5px;
}

.h2__link:hover::after {
	right: -40px;
}
	
	
	
/* header */
.header {
	height: 50px;
	background-color: transparent!important;
}
	
.header.scroll {
	height: 50px;
}

.header__logo {
	top: 10px;
	left: 1%;
	height: 35px;
}

.globalNav {
	display: none;
}
	
.sideNav {
	position: fixed;
	right: 50px;
	top: 0;
	bottom: auto;
	width: 100px;
	height: 50px;
	z-index: 9001;
}
	
.sideNav__box {
	display: flex;
	flex-direction: row-reverse;
}

.sideNav__link--line {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	padding-top: 12px;
}
	
.sideNav__link--line span {
	display: none;
}

.sideNav__link--line::before {
	width: 25px;
	height: 25px;
}

.sideNav__link--instagram {
	display: none;
}
	
.sideNav__link--tel {
	display: block;
	width: 50px;
	height: 50px;
	background-image: url("/img/common/icon_reservation_tel.png");
	background-size: 35px 35px;
	background-position: center center;
	background-repeat: no-repeat;
}

	
	
/* mv */
.mv {
	margin-top: 80px;
}

.mv__h1 {
	font-size: 32px;
}

.mv__h1 span {
	font-size: 14px;
}

.mv__img {
	margin-top: 20px;
	margin-left: 20px;
	width: calc(100% - 20px);
	height: 200px;
	border-radius: 15px 0 0 15px;
}
	
	
	
	
/* contact */
.contact__wrapper {
	width: calc(100% - 40px);
	border-radius: 15px;
	padding: 50px 20px;
}

.contact__h2 {
	margin-bottom: 20px;
}

.contact__left {
	margin-bottom: 20px;
}

.contact__btn {
	width: 100%;
	height: 55px;
	padding: 0 4%;
	transition: .2s;
	border-radius: 5px;
}

.contact__btn--tel,
.contact__btn--mail {
	margin-bottom: 10px;
}

.contact__btn--tel .contact__btn-left {
	font-size: 16px;
}

.contact__btn--tel .contact__btn-left::before {
	display: inline-block;
	content: "";
	width: 19px;
	height: 19px;
	vertical-align: -4px;
	margin-right: 7px;
}
	
.contact__btn--mail .contact__btn-left {
	font-size: 16px;
}

.contact__btn--mail .contact__btn-left::before {
	display: inline-block;
	content: "";
	width: 19px;
	height: 19px;
	vertical-align: -4px;
	margin-right: 7px;
}

.contact__btn--line .contact__btn-left {
	font-size: 16px;
}

.contact__btn--line .contact__btn-left::before {
	display: inline-block;
	content: "";
	width: 21px;
	height: 19px;
	background-image: url("/img/common/icon_reservation_line.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: -4px;
	margin-right: 7px;
}

.contact__btn-right {
	font-size: 10px;
}
	
.contact__btn--line .contact__btn-right {
	font-size: 10px;
}
	
.contact__btn--line .contact__btn-right .pc {
	display: none;
}
	
.contact__btn--line .contact__btn-right .sp {
	display: inline-block;
}
	
	
	
/* bnr */
.bnr__box {
	flex-wrap: wrap;
}

.bnr__item {
	width: 80%;
	margin: 0 auto 20px auto;
}
	
	
	
.footer__map,
.footer__map iframe {
	display: block;
	width: 100%;
	height: 300px!important;
}

	
	
/* 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;
}


	


}