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


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

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

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* 全体の設定 */
html {
	color: #333;
	}

body {
	width: 100%;
	font-family: "Hiragino Sans",sans-serif,"hiragino kaku gothic proN",YuGothic,'Yu Gothic',"meiryo","sans-serif","lucida grande";
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	background-color: #FFF;
	font-size: 14px;
	}

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

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

img {
	border: none;
	}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}
	
.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;
	}

.container {
  padding: 60px 0 120px 0;
}

.h2 {
	font-size: 14px;
	letter-spacing: .2em;
	padding-left: .2em;
	text-align: center;
	margin-bottom: 35px;
}

.h2__en {
	font-size: 35px;
	font-family: montserrat;
	letter-spacing: .2em;
	padding-left: .2em;
	font-weight: bold;
	margin-bottom: 5px;
	display: block;
}

.fadein {
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 1s, visibility 1s, transform 1s;
}

.fadein_visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}




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

.header__left {
	width: calc(600px - 275px);
	margin: 70px 0 50px auto;
}

.header__right {
	width: calc(50% + 275px);
	border-radius: 80px 0 0 80px;
	overflow: hidden!important;
	position: relative;
}

.header__logo {
	display: block;
	width: 150px;
	height: auto;
	margin-bottom: 40px;
	transition: .2s;
}

.header__logo:hover {
	opacity: .7;
}

.globalNav__item {
	margin-bottom: 30px;
}

.globalNav__link {
	font-weight: 600;
	font-size: 16px;
	letter-spacing: .2em;
}

.globalNav__item:last-child .globalNav__link::before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 20px;
	background-image: url("/img/common/icon_shop_black.png");
	background-size: cover;
	background-position: center center;
	vertical-align: -15%;
	margin-right: 12px;
}

.header__contact {
	display: block;
	position: absolute;
	top: 50px;
	right: 50px;
	width: 140px;
	height: 50px;
	color: #FFF;
	border: 1px solid #FFF;
	font-size: 20px;
	font-family: montserrat;
	font-weight: 500;
	text-align: center;
	line-height: 48px;
	transition: .2s;
}

.mv {
	width: 100%;
	height: 100%;
	position: relative;
	
	background-size: cover;
	background-position: center center;
}

.header__contact:hover {
	background-color: #FFF;
	color: #333;
}

.header__shop {
	display: block;
	position: absolute;
	right: 50px;
	top: 120px;
	width: 50px;
	height: 50px;
	color: #FFF;
	border: 1px solid #FFF;
	background-image: url("/img/common/icon_shop_white.png");
	background-size: 30px 24px;
	background-repeat: no-repeat;
	background-position: 7px center;
	transition: .2s;
}

.header__shop:hover {
	background-color: #FFF;
	background-image: url("/img/common/icon_shop_black.png");
}

.header__scroll {
	font-size: 16px;
	color: #FFF;
	position: absolute;
	right: 50px;
	bottom: 120px;
	font-family: montserrat;
}

.header__scroll::after {
	content: "↓";
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	display: inline-block;
	width: 28px;
	height: 28px;
	border: 1px solid #FFF;
	border-radius: 14px;
	text-align: center;
	margin-left: 10px;
}



/* pageTitle */
.pageTitle {
	width: 200px;
	height: 200px;
	background-color: #FFF;
	border-radius: 100px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -95px auto 0 auto;
}

.pageTitle__bottom {
	position: absolute;
	bottom: 0;
	width: 200px;
	height: 100px;
	border-radius: 0 0 100px 100px;
	border: 4px solid #808080;
	border-top: 0;
}

.pageTitle__h1 {
	text-align: center;
	letter-spacing: .2em;
	padding-left: .2em;
}

.pageTitle__en {
	display: block;
	font-size: 20px;
	font-family: montserrat;
	font-weight: bold;
	margin-bottom: 7px;
}



/* breadcrumb */
.breadcrumb {
	height: 50px;
	line-height: 50px;
	display: flex;
}

.breadcrumb__item:not(:last-child)::after {
	content: ">";
	margin-right: 15px;
	margin-left: 15px;
  color: #666;
}

.breadcrumb__link {
  color: #666;
}




/* footer */
.footer__contact {
	margin-bottom: 200px;
}

.footerContact__wrapper {
	background-image: url("/img/common/bg_footer_contact.jpg");
	background-size: cover;
	background-position: center center;
	border-radius: 50px;
	padding: 75px;
}

.footerContact__h2 {
	color: #FFF;
}

.footerContact__txt {
	color: #FFF;
	text-align: center;
	margin-bottom: 30px;
}

.footerContact__box {
	width: 560px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.footerContact__left {
	width: 450px;
}

.footerCotact__tel {
	font-size: 32px;
	font-weight: bold;
	color: #FFF;
	letter-spacing: .15em;
	padding-left: .15em;
}

.footerCotact__tel::before {
	content: "";
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 1px solid #FFF;
	border-radius: 10px;
	background-image: url("/img/common/icon_footer_tel.png");
	background-size: 31px 31px;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: -12px;
	margin-right: 15px;
}

.footerContact__right {
	width: 140px;
}

.footerContact__btn {
	display: block;
	width: 140px;
	height: 50px;
	color: #FFF;
	border: 1px solid #FFF;
	font-size: 20px;
	font-family: montserrat;
	font-weight: 500;
	text-align: center;
	line-height: 48px;
	transition: .2s;
}

.footerContact__btn:hover {
	background-color: #FFF;
	color: #333;
}

.footer {
	width: 100%;
	border-radius: 100px 100px 0 0;
	background-color: #efeb55;
	padding: 70px 0 20px 0;
}

.footerNav__box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}

.footer__link {
	font-size: 16px;
	text-align: center;
}

.footer__box {
	display: flex;
	justify-content: space-between;
}

.footer__logo {
	display: block;
	width: 150px;
	height: auto;
	margin-bottom: 20px;
}

.footer__name {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	letter-spacing: .2em;
}

.footer__right {
	position: relative;
	width: 50%;
}

.footer__privacy {
	position: absolute;
	right: 0;
	bottom: 0;
}

.footer__scroll {
	font-size: 16px;
	font-family: montserrat;
	text-align: right;
	display: block;
	margin: 30px 50px 25px auto;
	transition: .2s;
}

.footer__scroll::after {
	content: "↑";
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	display: inline-block;
	width: 28px;
	height: 28px;
	line-height: 28px;
	border: 1px solid #333;
	border-radius: 14px;
	text-align: center;
	margin-left: 10px;
	transition: .2s;
}

.footer__scroll:hover::after {
	border: 1px solid #FFF;
	background-color: #FFF;
}

.footer__copyright {
	text-align: center;
	font-size: 10px;
}





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

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

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

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

/* 全体の設定 */
body {
	max-width: 1199px;
	min-width: 100%;
	}
	
	
	
/* header */
.header__left {
	width: 230px;
	margin: 70px 0 50px 2.5%;
}

.header__right {
	width: calc(100% - 230px);
	border-radius: 80px 0 0 80px;
	overflow: hidden;
	position: relative;
}
	
	
	
}

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

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

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

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

/* 全体の設定 */
body {
	max-width: 767px;
	font-size: 13px;
	}

.pc {
	display: none;
	}

.sp {
	display: block;
	}
	
.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
	}
  
.container {
  padding: 60px 0;
}
	
.h2 {
 	font-size: 12px;
	margin-bottom: 20px;
}

.h2__en {
 	font-size: 20px;
	margin-bottom: 3px;
}	

	
	
/* header */
.header {
	display: block;
	position: relative;
}

.header__left {
	width: 100%;
	height: 60px;
	margin: 0;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #FFF;
	z-index: 9000;
}

.header__right {
	width: calc(100% - 20px);
	height: 250px;
	margin: 0 0 0 20px;
	border-radius: 50px 0 0 50px;
	position: relative;
	margin-top: 60px;
	z-index: 1000;
}

.header__logo {
	position: fixed;
	display: block;
	width: 50px;
	height: auto;
	margin: 5px auto 5px 1.5%;
}
	
.header__scroll {
	font-size: 13px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.header__scroll::after {
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 14px;
	margin-left: 7px;
}	

	
	
	
/* pageTitle */
.pageTitle {
	width: 140px;
	height: 140px;
	border-radius: 70px;
	margin: -65px auto 0 auto;
	z-index: 2000;
}

.pageTitle__bottom {
	position: absolute;
	bottom: 0;
	width: 140px;
	height: 70px;
	border-radius: 0 0 70px 70px;
	border: 3px solid #808080;
	border-top: 0;
}

.pageTitle__h1 {
	font-size: 12px;
	letter-spacing: .1em;
	padding-left: .1em;
}

.pageTitle__en {
	font-size: 14px;
	margin-bottom: 3px;
}
	


/* footer */
.footer__contact {
	margin-bottom: 60px;
}

.footerContact__wrapper {
	border-radius: 30px;
	padding: 50px 25px;
}

.footerContact__txt {
	margin-bottom: 20px;
}

.footerContact__box {
	width: 100%;
	display: block;
}

.footerContact__left {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

.footerCotact__tel {
	font-size: 24px;
	letter-spacing: .1em;
	padding-left: .1em;
}
	
.footerCotact__tel a {
	color: #FFF!important;
}

.footerCotact__tel::before {
	width: 40px;
	height: 40px;
	background-size: 25px 25px;
	vertical-align: -10px;
	margin-right: 12px;
}

.footerContact__right {
	width: 100%;
}

.footerContact__btn {
	height: 45px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 43px;
}

.footer {
	border-radius: 70px 70px 0 0;
	padding: 50px 0 20px 0;
}

.footerNav__box {
	display: none;
}

.footer__box {
	display: block;
	text-align: center;
}

.footer__logo {
	width: 80px;
	margin: 0 auto 20px auto;
}

.footer__name {
	font-size: 13px;
}

.footer__right {
	text-align: center;
	width: 100%;
	margin-top: 15px;
}

.footer__privacy {
	position: static;
}

.footer__scroll {
	font-size: 13px;
	font-family: montserrat;
	text-align: center;
	display: block;
	margin: 20px auto;
	transition: .2s;
}

.footer__scroll::after {
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 14px;
	margin-left: 7px;
}

.footer__scroll:hover::after {
	border: 1px solid #FFF;
	background-color: #FFF;
}

.footer__copyright {
	text-align: center;
	font-size: 10px;
}



	

}