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


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

1600px以上の場合に適用 

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

/* 全体の設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600&family=Roboto&display=swap');

html {
	color: #333;
	}

body {
	width: 100%;
	font-family: "Roboto", 'Noto Sans JP', sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1600px;
	font-size: 16px;
	position: relative;
	}

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

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

img {
	border: none;
	}

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

.wrapper {
	width: 84.375%;
	max-width: 648px;
	margin: 0 auto;
	}

.pc {
	display: block;
	}

.sp {
	display: none;
	}


.h2 {
	position: relative;
	display: inline-block;
	text-align: center;
	margin-bottom: 80px;
}

.h2::after {
	display: inline-block;
	content: "";
	width: 100%;
	height: 6px;
	background-image: url("/img/index/wave.png");
	background-repeat: repeat-x;
	background-size: contain;
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	margin: auto;
}

.h2 p {
	font-size: 25px;
	font-weight: bold;
	color: #3480BA;
}

.h2 > span {
	display: inline-block;
	background-color: #00B994;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
	padding: 0 20px;
	position: relative;
	margin-bottom: 5px;
}

.h2 > span::after {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #00B994 transparent transparent transparent;
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	margin: auto;
}

.h2-type2 {
	position: relative;
	margin-bottom: 80px;
	font-size: 25px;
	font-weight: bold;
	color: #3480BA;
}

.h2-type2::after {
	display: inline-block;
	content: "";
	width: 100%;
	height: 6px;
	background-image: url("/img/index/wave.png");
	background-repeat: repeat-x;
	background-size: contain;
	position: absolute;
	bottom: -15px;
	left: 0;
}

.btn {
	display: block;
	width: 345px;
	height: 70px;
	line-height: 70px;
	background-color: #35A7C9;
	border-radius: 5px;
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	margin: 40px auto 0 auto;
	position: relative;
}

.btn::before {
	display: inline-block;
	content: "";
	width: 10px;
	height: 2px;
	background-color: #FFF;
	position: absolute;
	right: 15px;
	top: 31px;
	transform: rotate(45deg);
}

.btn::after {
	display: inline-block;
	content: "";
	width: 10px;
	height: 2px;
	background-color: #FFF;
	position: absolute;
	right: 15px;
	bottom: 31px;
	transform: rotate(-45deg);
}

.anchorLink__box {
	width: 100%;
	height: 50px;
	display: flex;
}

.anchorLink__item {
	width: 50%;
	height: 50px;
	border: 1px solid #CCC;
	background-color: #FFF;
}

.anchorLink__item:nth-of-type(1) {
	border-right: none;
}

.anchorLink__link {
	display: flex;
	width: 100%;
	height: 50px;
	padding-bottom: 2px;
	justify-content: center;
	align-items: center;
	position: relative;
	font-size: 13px;
	color: #666;
}

.anchorLink__link::before {
	display: inline-block;
	content: "";
	width: 5px;
	height: 1px;
	background-color: #3480BA;
	position: absolute;
	right: 15px;
	transform: rotate(45deg);
}

.anchorLink__link::after {
	display: inline-block;
	content: "";
	width: 5px;
	height: 1px;
	background-color: #3480BA;
	position: absolute;
	right: 12px;
	transform: rotate(-45deg);
}



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

.header__logo.pc {
	display: block;
	width: 160px;
	height: auto;
	margin: 5px 0 0 5px;
	transition: .2s;
}

.header__logo.sp {
	display: none;
}

.header__logo:hover {
	opacity: .8;
}

.header__link {
	display: inline-block;
}

.header__h1 {
	position: absolute;
	left: 180px;
	top: 55px;
	font-size: 13px;
	color: #FFF;
	font-weight: 500;
}



/* mv */
.mv {
	width: 60%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center center;
	height: 100vh;
}

.mv__h1 {
	background-color: #3480BA;
	color: #FFF;
	font-size: 40px;
	font-weight: bold;
	padding: 10px 30px;
}



/* language */
.language__box {
	position: fixed;
	top: 15px;
	right: 75px;
	display: flex;
	z-index: 100;
}

.language__item {
	margin-left: 20px;
}

.language__link {
	font-size: 13px;
	color: #35A7C9;
	padding-bottom: 3px;
}

.language__link:hover {
	border-bottom: 1px solid #35A7C9;
	cursor: pointer;
}



/* localNav */
.localNav {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 60%;
	height: 100px;
	display: flex;
	z-index: 100;
}

.localNav__link {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.localNav__item--reservation {
	width: 34.375%;
	background-color: #F0E700;
}

.localNav__item--tel {
	width: 34.375%;
	background-color: #00B994;
}

.localNav__item--noc {
	width: 15.625%;
	background-color: #35A7C9;
}

.localNav__item--faq {
	width: 15.625%;
	background-color: #3480BA;
}

.localNav__item p::before {
	display: inline-block;
	content: "";
	width: 40px;
	height: 40px;
	background-color: #FFF;
	border-radius: 20px;
	margin-right: 10px;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position: center center;
}

.localNav__item--reservation p::before {
	background-image: url("/img/index/icon_localNav_reservation.png");
	vertical-align: -7px;
}

.localNav__item--reservation p {
	font-size: 30px;
	font-weight: bold;
	color: #3480BA;
}

.localNav__item--reservation .pc {
	display: inline-block;
}

.localNav__item--reservation .localNav__link::before {
	display: inline-block;
	content: "";
	width: 10px;
	height: 2px;
	background-color: #3480BA;
	position: absolute;
	right: 15px;
	top: 46px;
	transform: rotate(45deg);
}

.localNav__item--reservation .localNav__link::after {
	display: inline-block;
	content: "";
	width: 10px;
	height: 2px;
	background-color: #3480BA;
	position: absolute;
	right: 15px;
	bottom: 46px;
	transform: rotate(-45deg);
}

.localNav__item--tel p::before {
	background-image: url("/img/index/icon_localNav_tel.png");
	vertical-align: 0;
}

.localNav__item--tel p {
	color: #FFF;
}

.localNav__item--tel span:first-child {
	display: inline-block;
	font-size: 25px;
	font-weight: bold;
	color: #FFF;
	line-height: 1.2;
}

.localNav__item--tel span:first-child span {
	font-size: 15px;
}

.localNav__item--tel span:last-child {
	font-size: 11px;
	color: #FFF;
	display: inline-block;
	font-weight: bold;
	line-height: 1.6;
	vertical-align: -3px;
	margin-left: 10px;
}

.localNav__item--noc p::before {
	background-image: url("/img/index/icon_localNav_noc.png");
	vertical-align: -3px;
}

.localNav__item--noc span {
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
	line-height: 1.4;
	padding-left: 0;
	text-indent: 0;
}

.localNav__item--faq p::before {
	background-image: url("/img/index/icon_localNav_faq.png");
	vertical-align: -3px;
}

.localNav__item--faq span {
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
	line-height: 1.4;
	padding-left: 0;
	text-indent: 0;
}




/* main */
.main {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
}



/* footer */
.footer {
	padding: 50px 0 120px 0;
	background-color: #35A7C9;
}

.footer__logo {
	display: block;
	width: 80px;
	height: auto;
	margin: 0 auto 15px auto;
}

.footer__h2 {
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
	margin-bottom: 30px;
}

.footer__h3 {
	text-align: center;
	color: #FFF;
	font-size: 13px;
	font-weight: bold;
	margin-bottom: 3px;
	margin-top: 15px;
}

.footer__txt {
	font-size: 13px;
	color: #FFF;
	text-align: center;
}

.footer__box {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}

.footer__nav {
	display: flex;
}

.footer__link {
	font-size: 11px;
	color: #FFF;
}

.footer__nav-item:first-child .footer__link {
	border-right: 1px solid #FFF;
	margin-right: 10px;
	padding-right: 10px;
}

.footer__copyRight {
	font-size: 11px;
	color: #FFF;
}

.footer__gotop {
	display: block;
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: rgba(255,255,255, .5);
	border-radius: 30px;
}

.footer__gotop::after {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7.5px 13.0px 7.5px;
	border-color: transparent transparent #F0E700 transparent;
	position: absolute;
	top: 22px;
	left: 0;
	right: 0;
	margin: auto;
}




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

1360px〜1599pxの場合に適用 

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

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

/* 全体の設定 */
body {
	max-width: 1599px;
	min-width: 100%;
	}
	
	
	
/* header */
.header {
	height: 100px;
}

.header__logo.pc {
	width: 120px;
}

.header__logo.pc:hover {
	opacity: .8;
}

.header__h1 {
	left: 150px;
	top: 40px;
}
	
	
	
/* mv */
.mv__h1 {
	font-size: 36px;
	padding: 10px 25px;
}



/* localNav */
.localNav__item p::before {
	width: 30px;
	height: 30px;
	margin-right: 7px;
	background-size: 14px 14px;
}

.localNav__item--reservation p::before {
	background-image: url("/img/index/icon_localNav_reservation.png");
	vertical-align: -4px;
}

.localNav__item--reservation p {
	font-size: 24px;
}

.localNav__item--reservation .localNav__link::before {
	right: 10px;
}

.localNav__item--reservation .localNav__link::after {
	right: 10px;
}

.localNav__item--tel p::before {
	background-image: url("/img/index/icon_localNav_tel.png");
}

.localNav__item--tel p {
	color: #FFF;
}

.localNav__item--tel span:first-child {
	font-size: 20px;
}
	
.localNav__item--tel span:first-child span {
	font-size: 12px;
}

.localNav__item--tel span:last-child {
	font-size: 10px;
}

.localNav__item--noc p::before {
	vertical-align: -3px;
}

.localNav__item--noc span {
	font-size: 12px;
}

.localNav__item--faq p::before {
	vertical-align: -3px;
}

.localNav__item--faq span {
	font-size: 12px;
}

	

	

}



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

1200px〜1359pxの場合に適用 

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

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

/* 全体の設定 */
body {
	max-width: 1359px;
	}
	
.anchorLink__link {
	font-size: 12px;
}

.anchorLink__link::before {
	right: 10px;
}

.anchorLink__link::after {
	right: 7px;
}
	
	
	
/* mv */
.mv__h1 {
	font-size: 32px;
	padding: 10px 20px;
}
	
	
	
/* localNav */
.localNav__item p::before {
	width: 25px;
	height: 25px;
	margin-right: 5px;
	background-size: 12px 12px;
}

.localNav__item--reservation p {
	font-size: 20px;
}


	

}



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

1024px〜1199pxの場合に適用 

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

@media screen and (max-width: 1199px){
	
/* 全体の設定 */
body {
	max-width: 1199px;
	}
	
.h2 p {
	font-size: 20px;
}

.h2-type2 {
	font-size: 22px;
}
	
.anchorLink__link {
	font-size: 11px;
}

.anchorLink__link::before {
	right: 7px;
}

.anchorLink__link::after {
	right: 4px;
}


	
/* mv */
.mv__h1 {
	font-size: 28px;
	padding: 10px 15px;
}
	
	
	
/* localNav */
.localNav__item p::before {
	width: 25px;
	height: 25px;
	margin-right: 5px;
	background-size: 12px 12px;
}

.localNav__item--reservation p::before {
	vertical-align: -6px;
}

.localNav__item--reservation p {
	font-size: 16px;
}
	


.localNav__item--tel p {
	color: #FFF;
}

.localNav__item--tel span:first-child {
	font-size: 16px;
}
	
.localNav__item--tel span:first-child span {
	font-size: 10px;
}

.localNav__item--noc p::before {
	vertical-align: -2px;
}

.localNav__item--noc span {
	font-size: 10px;
}

.localNav__item--faq p::before {
	vertical-align: -2px;
}

.localNav__item--faq span {
	font-size: 10px;
}

	
	

}


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

768px〜1023pxの場合に適用 

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

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

/* 全体の設定 */
body {
	max-width: 1023px;
	}

.h2 p {
	font-size: 25px;
}

.h2-type2 {
	font-size: 25px;
}

.anchorLink__link {
	font-size: 13px;
}

.anchorLink__link::before {
	right: 15px;
}

.anchorLink__link::after {
	right: 12px;
}


	
/* header */
.header {
	width: 100%;
}



/* mv */
.mv {
	width: 100%;
	position: static;
}

.mv__h1 {
	font-size: 32px;
	padding: 10px 25px;
}



/* localNav */
.localNav {
	width: 100%;
}
	
.localNav__item p::before {
	width: 30px;
	height: 30px;
	background-size: 14px 14px;
	margin-right: 7px;
}

.localNav__item--reservation p::before {
	vertical-align: -7px;
}

.localNav__item--reservation p {
	font-size: 22px;
}

.localNav__item--reservation .localNav__link::before {
	right: 10px;
}

.localNav__item--reservation .localNav__link::after {
	right: 10px;
}
	
.localNav__item--reservation p .pc {
	display: none;
}

.localNav__item--tel p::before {
	vertical-align: -7px;
}

.localNav__item--tel span:first-child {
	font-size: 20px;
}

.localNav__item--tel span:last-child {
	font-size: 10px;
}

.localNav__item--noc p::before {
	vertical-align: -3px;
}

.localNav__item--noc span {
	font-size: 11px;
}

.localNav__item--faq p::before {
	vertical-align: -3px;
}

.localNav__item--faq span {
	font-size: 11px;
}
	
	
	
/* main */
.main {
    position: static;
    width: 100%;
}
	
	


}



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

〜767pxの場合に適用 

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

@media screen and (max-width: 767px){
	
/* 全体の設定 */
img {
	border: none;
	}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}
	
.wrapper {
	width: calc(100% - 30px);
	}

.pc {
	display: none;
	}

.sp {
	display: block;
	}


.h2 {
	margin-bottom: 60px;
}

.h2::after {
	height: 4px;
	bottom: -3px;
}

.h2-type2 {
	margin-bottom: 50px;
	font-size: 20px;
}

.h2-type2::after {
	height: 4px;
	bottom: -10px;
	left: 0;
}

.btn {
	width: 100%;
	max-width: 345px;
}

.btn::before {
	right: 20px;
}

.btn::after {
	right: 20px;
}

.anchorLink__wrapper {
	width: 100%;
}
	
.anchorLink__box {
	width: 100%;
	height: 50px;
	display: flex;
}

.anchorLink__item {
	border: none;
	border-bottom: 1px solid #CCC;
}

.anchorLink__item:nth-of-type(1) {
	border-right: 1px solid #CCC;
}

.anchorLink__link {
	display: flex;
	width: 100%;
	height: 50px;
	padding-bottom: 2px;
	justify-content: center;
	align-items: center;
	position: relative;
	font-size: 13px;
	color: #666;
}

.anchorLink__link::before {
	display: inline-block;
	content: "";
	width: 5px;
	height: 1px;
	background-color: #3480BA;
	position: absolute;
	right: 15px;
	transform: rotate(45deg);
}

.anchorLink__link::after {
	display: inline-block;
	content: "";
	width: 5px;
	height: 1px;
	background-color: #3480BA;
	position: absolute;
	right: 12px;
	transform: rotate(-45deg);
}



/* header */
.header {
	background-color: #FFF;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.header__logo.pc {
	display: none!important;
}
	
.header__logo.sp {
	display: block!important;
	width: 40px;
	height: auto;
	position: absolute;
	top: 5px;
	left: 5px;
}

.header__h1 {
	position: absolute;
	left: 60px;
	top: 10px;
	font-size: 11px;
	color: #3480BA;
}



/* mv */
.mv {
	height: 200px;
	margin-top: 50px;
}

.mv__h1 {
	text-align: center;
	font-size: 20px;
	padding: 5px 10px;
}
	
	
	
/* language */
.dropdown {
	position: fixed;
	z-index: 1000;
	display: inline-block;
	right: 70px;
	top: 18px;
}
	
.dropdown::before {
	display: inline-block;
	content: "";
	width: 19px;
	height: 19px;
	background-image: url("/img/common/icon_language.png");
	background-size: cover;
	position: absolute;
	left: -50px;
	top: -4px;
	z-index: 1000;
}	
	
.dropdown::after {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 3px 0 3px;
	border-color: #35A7C9 transparent transparent transparent;
	position: absolute;
	right: 0;
	top: 4px;
	z-index: 9999;
}
	
.language__dropdown {
	top: 0;
	right: 0;
	z-index: 9990;
	font-size: 10px;
	color: #35A7C9;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	padding-right: 10px;
	position: absolute;
	background-color: transparent;
}
	
.dropdown label {
	position: absolute;
	font-size: 10px;
	color: #35A7C9;
	right: 12px;
}


	

/* localNav */
.localNav {
	height: 60px;
}
	
.localNav__link {
	position: relative;
}

.localNav__item--reservation {
	width: 31.5%;
}

.localNav__item--tel {
	width: 31.5%;
}

.localNav__item--noc {
	width: 18.5%;
}

.localNav__item--faq {
	width: 18.5%;
}
	
.localNav__link p {
	text-align: center;
	display: block;
	position: absolute;
	bottom: 0;
	line-height: 1.2;
}

.localNav__item p::before {
	width: 20px;
	height: 20px;
	margin-right: 0;
	background-size: 20px 20px;
	background-color: transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 25px;
	margin: auto;
	border-radius: 0;
}

.localNav__item--reservation p::before {
	background-image: url("/img/index/icon_localNav_reservation.png");
}

.localNav__item--reservation p {
	font-size: 13px;
	bottom: 3px;
}

.localNav__item--reservation .localNav__link::before {
	display: none;
}

.localNav__item--reservation .localNav__link::after {
	display: none;
}

.localNav__item--tel p::before {
	background-image: url("/img/index/icon_localNav_tel_sp.png");
	background-size: 14px 20px;
}

.localNav__item--tel p {
	bottom: 3px;
}

.localNav__item--tel .sp {
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	color: #FFF;
}

.localNav__item--tel span:last-child {
	display: none;
}
	
.localNav__item--tel .pc {
	display: none;
}

.localNav__item--noc p::before {
	background-image: url("/img/index/icon_localNav_noc_sp.png");
	bottom: 33px;
}

.localNav__item--noc span {
	font-size: 10px;
	font-weight: bold;
}

.localNav__item--faq p::before {
	background-image: url("/img/index/icon_localNav_faq_sp.png");
	bottom: 33px;
}

.localNav__item--faq span {
	font-size: 10px;
}




/* footer */
.footer__copyRight {
	font-size: 10px;
}
	
	
	
.footer__gotop {
	width: 44px;
	height: 44px;
	bottom: 70px;
	right: 20px;
}

.footer__gotop::after {
	border-width: 0 6px 10.4px 6px;
	top: 16px;
}

	
}