@charset "UTF-8";
/* common.css */

*,
*::before,
*::after  {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-feature-settings: "palt";
	letter-spacing: .12em;
	box-sizing: border-box;
	border-collapse: collapse;
}
::selection {
	color: #fff;
	background-color: #2ca3da;
}


/* --- Container --- */
.bg_wrap,
.wrap {
	width: 100%;
	margin: auto;
	padding: 0 40px;
	padding: 0 clamp(40px,4vw,60px);
}
.wrap {
	max-width: 1120px;
	margin: auto;
}
.footer_wrap {
	max-width: 1120px;
	padding: 0 clamp(40px,4vw,60px);
	margin: auto;
}
.bg_wrap.pad_none,
.bg_wrap .wrap  {
	padding: 0;
}
.bg_wrap .wrap {
	max-width: 1000px;
}
.flex_box {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.bg_imgw {
	background-image: url(../../img/common/bg_white.jpg);
	background-repeat: repeat;
	background-position: center;
	background-size: 100%;
}
.bg_white { background-color:#fff; }

/* --- font family --- */
.ff_notos  { font-family:"Noto Sans JP", sans-serif !important; }
.ff_albert { font-family:"Albert Sans", "Noto Sans JP", sans-serif !important; }
.ff_go     { font-family:"Zen Kaku Gothic New", "Noto Sans JP", sans-serif !important; }
.ff_min    { font-family:"Zen Old Mincho", sans-serif !important; }

/* --- text --- */
html,
h1,
h2,
h3,
h4,
a { color:inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: .15em;
}
h2,
h2.ff_albert {
	font-size: 44px;
	font-size: min(4vw,40px);
	font-weight: bold;
}
h2.ff_albert {
	font-weight: 900;
	letter-spacing: .1em;
}
h2.marEM_B {
	margin-bottom: .35em;
}
.h2_img {
	font-size: inherit;
}

ul,
li,
dl,
dd,
dt,
a,
p {
	font-size: clamp(13px,1.6vw,16px);
	line-height:   1.7em;
	letter-spacing: .1em;
}
p       { text-align:justify;   }
span    { letter-spacing:.1em;  }
a       { text-decoration:none; }
a:hover { color:inherit; text-decoration:none; }

.cont_lh1  { line-height:1;}

.p_lhM  { line-height:2.4em; }
.p_aki  { line-height:2.4em; letter-spacing:.3em; }

.fw_normal { font-weight:normal !important; }
.fw_500    { font-weight:500 !important;    }
.fw_bold   { font-weight:bold !important;   }

.align_left    { text-align:left !important;    }
.align_right   { text-align:right !important;   }
.align_center  { text-align:center !important;  }
.align_justify { text-align:justify !important; }

.small     { font-size:.75em; }

.color_cyaan { color:#2ca3da; }
.color_white { color:#fff;    }

span.small { font-size:12px; }
.copyright { font-size:12px; text-align:center; }

/* --- btn ( div.btn > a ) --- */
.btn {
	font-size: 16px;
	font-weight: 600;
	text-align: left;
}
.btn a,
.btn p {
	width: auto;
	min-width: 230px;
	line-height: 1;
	text-align: center;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-radius: 50px;
	color: #fff;
	background-color: #2ca3da;
	transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition-property: color,background-color,border-color;
}
/* btn「view more」シアン */
.btn_more a,
.btn_more_white a,
.btn_more p,
.btn_more_white p {
	padding: 12px 20px;
}
.btn_more a,
.btn_more p {
	border: 1px solid #2ca3da;
}
.btn_more a:before,
.btn_more_white a:before,
.btn_more p:before,
.btn_more_white p:before {
	content: "";
	width:  1.5em;
	height: 2.5em;
	display: inline-block;
	margin-right: 1em;
	background-image:  url(../../img/common/btn_tobiraW.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition-property: background-image;
}
/* ▼ safariにのみ対応 */
::-webkit-full-page-media, :future,
:root .btn_more a:before,
:root .btn_more_white a:before,
:root .btn_more p:before,
:root .btn_more_white p:before {
	transition: unset !important;
}
/* ▲ safariにのみ対応 */

.btn_more a:hover,
.btn_more p:hover {
	color: #2ca3da;
	background-color: #fff;
}
.btn_more a:hover:before,
.btn_more p:hover:before {
	background-image:  url(../../img/common/btn_tobiraBlue.svg);
}

/* btn「view more」ホワイト */
.btn_more_white a,
.btn_more_white p {
	color: #000;
	background-color: #fff;
	border: 1px solid #fff;
}
.btn_more_white a:before,
.btn_more_white p:before {
	background-image: url(../../img/common/btn_tobiraB.svg);
}
.btn_more_white a:hover,
.btn_more_white p:hover {
	color: #fff;
	background-color: #2ca3da;
	border-color: #2ca3da;
}
.btn_more_white a:hover:before,
.btn_more_white p:hover:before {
	background-image:  url(../../img/common/btn_tobiraW.svg);
}


/* --- others --- */
.pc_blk  { display:block !important; }
.sp_blk  { display:none !important;  }
.tab_blk { display:none !important;  }

.flex_box.pc_blk { display:flex !important; }
.flex_box.sp_blk { display:none !important; }

.text_indent { text-indent:-1em; padding-left:1em; }

/* mar & pad */
.marXL_T  { margin-top:120px !important; }
.marL_T   { margin-top: 80px !important; }
.marM_T   { margin-top: 60px !important; }
.marS_T   { margin-top: 40px !important; }
.marXS_T  { margin-top: 24px !important; }

.marXL_B  { margin-bottom:120px !important; }
.marL_B   { margin-bottom: 80px !important; }
.marM_B   { margin-bottom: 60px !important; }
.marS_B   { margin-bottom: 40px !important; }
.marXS_B  { margin-bottom: 24px !important; }

/* pad */
.padXL_T  { padding-top:120px !important; }
.padL_T   { padding-top: 80px !important; }
.padM_T   { padding-top: 60px !important; }
.padS_T   { padding-top: 40px !important; }
.padXS_T  { padding-top: 24px !important; }

.padXL_B  { padding-bottom:120px !important; }
.padL_B   { padding-bottom: 80px !important; }
.padM_B   { padding-bottom: 60px !important; }
.padS_B   { padding-bottom: 40px !important; }
.padXS_B  { padding-bottom: 24px !important; }

img { width:100%; height:auto; }


/* ===== header menu ===== */
header {
	width: 100%;
	height: 120px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	padding: 20px 70px;
	padding: 20px clamp(40px,4vw,70px);
	background-color: rgba(255,255,255,0);
	transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition-property: background-color, opacity;
	z-index: 1000;
}
.header_logo {
	width: fit-content;
	width: 16%;
	max-height: 75px;
}
.header_logo > a {
	width: fit-content;
	height: auto;
	display: block;
	opacity: 1;
	transition: opacity .4s;
}
.header_logo > a:hover {
	opacity: .7;
}
.header_logo > a img,
.header_logo svg {
	height: 100%;
	max-height: 75px;
	object-fit: contain;
	object-position: left;
}
.header_logo svg {
	width: 100%;
	fill: #fff;
	transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition-property: fill;
}
#g-nav ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
#g-nav li a,
.fmenu li a {
	font-size: 14px;
	font-size: clamp(13px,1.083vw,14px);
	font-family:"Albert Sans", "Noto Sans JP", sans-serif !important;
	font-weight: bold;
	color: #fff;
}
#g-nav li a,
#g-nav_sp li a,
.fmenu li a,
.fmenu_btn a,
.fmenu_sns a {
	transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition-property: color, opacity;
}
#g-nav li a:hover,
.fmenu li a:hover,
.fmenu_btn a:hover,
.fmenu_sns a:hover {
	opacity: .7;
}
#g-nav_sp li a:hover {
	opacity: .5;
}



#g-nav li:not(:first-of-type) {
	margin-left: 1.5em;
}
.sp_menu {
	display: none !important;
}
/* ONLINE SHOP btn */
.hmenu_btn a {
	font-size: 16px;
	line-height: 1;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	padding: 1em 1.8em;
	border-radius: 100px;
	color: #fff !important;
	background-color: #2ca3da;
	border: 1px solid #2ca3da;
	transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
	transition-property: color, border-color, background-color !important;
	opacity: 1 !important;
}
.hmenu_btn a svg {
	width:  1.6em;
	height: 1.6em;
	display: block;
	margin-right: .5em;
	stroke: #fff;
	transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition-property: stroke;
}
.hmenu_btn a:hover {
	color: #2ca3da !important;
	background-color: #fff;	
}
.hmenu_btn a:hover svg {
	stroke: #2ca3da !important;
}



/* header scroll BG */
header.is-bg {
	background-color: rgba(255,255,255,.9);
}
header.is-bg #g-nav a {
	color: #000;
}
header.is-bg .header_logo svg {
	fill: #2ca3da;
}


/* ===== footer menu ===== */
footer {
	background-color: #2ca3da;
}
.bottom_bgdeco:after {
	content: "";
	width: 100%;
	height: 25px;
	display: block;
	background-image:  url(../../img/common/repeat_deco.jpg);
	background-repeat: repeat-x;
	background-position: center;
	background-size: contain;
}
.footer_top,
.footer_bottom {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.footer_logo,
.gmap {
	width: 35%;
	margin-right: min(4vw,40px);
}
.footer_logo a {
	width: 80%;
	max-width: 280px;
	display: inline-block;
	opacity: 1;
	transition: opacity .4s;
}
.footer_logo a:hover {
	opacity: .7;
}

.footer_nav,
footer address {
	width: 65%;
}
/* ロゴ右 メニュー */
.footer_top {
	margin-bottom: 50px;
}
.fmenu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.fmenu li {
	font-size: clamp(13px,1.4vw,14px);
	line-height: 1;
	margin-left: 1.3em;
}
.fmenu li:first-of-type {
	margin-left: 0 !important;
}

/* ロゴ右 ボタンとSNS */
.fmenu_others {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: flex-end;
}
.fmenu_others .fmenu_btn {
	max-width: 200px;
	height: 50px;
	height: clamp(30px,5vw,50px);
	min-height: 30px;
	margin-right: 7px;
}
.fmenu_others .fmenu_btn a {
	display: inline-block;
}
.fmenu_others .fmenu_btn + .fmenu_btn {
	margin-right: 15px;
}
.fmenu_others .fmenu_sns {
	width:  30px;
	height: 30px;
	min-width:  30px;
	min-height: 30px;
	margin-left: 10px;
}
.fmenu_others img {
	height: 100%;
	object-fit: contain;
}
/* google map */
.gmap iframe {
	width:  100%;
	height: 100%;
	min-height: 280px;
}
/* 営業時間・定休日など */
footer address dl {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	padding: 1em;
}
footer address dl:first-of-type {
	padding-top: 0;
}
footer address dl:nth-of-type(even) {
	background-color: #2896d2;
}
footer address dt,
footer address dd {
	line-height: 1.5;
	font-weight: normal;
	color: #fff;
}
footer address dt {
	min-width: 4em;
	margin-right: 2em;
}
footer address small {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	line-height: 1.5;
	font-size: 12px;
	margin-top: .5em;
}
footer address small:before {
	content: "※";
	font-size: 1em;
	line-height: 1.5;
}
footer .lh_1 {
	line-height: 1;
}
.footer_privacy,
.copyright {
	font-size: 10px;
	text-align: right;
	display: block;
	color: #fff;
	margin-left: auto;
}
.footer_privacy {
	text-decoration: underline;
	margin-bottom: .5em;
}
.footer_privacy:hover {
	color: #fff;
	text-decoration: underline;
}
.sp_copy_left {
	display: none;
}


/* --- 共通アニメーション --- */
.effect_pc {
	opacity: 0;
	transform: translateY(10%);
}
.effect_pc.is-active {
	animation: fadeUp 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
	animation-delay: .1s;
}
.effect_pc:before,
.effect_pc:after {
	transform: translateY(-10%);
}
.effect_pc.is-active:before,
.effect_pc.is-active:after   {
	animation: fadeUp 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
	animation-delay: .1s;
}
@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}




/* ===== 下層共通 ===== */
/* --- header --- */
#lower_header nav a {
	color: #000;
}
#lower_header .header_logo svg {
	fill: #2ca3da !important;
}
#lower_header.add_header_bg {
	background-color: rgba(255,255,255,.9);
}
#lower_header > .hmenu_btn a {
	border: 1.2px solid rgba(255, 255, 255, 0);
	background-color: rgba(44, 163, 218, 1);
}

/* --- MV --- */
.lower_mv {
	padding-top: 150px;
}
.lower_mv h1 {
	width: auto;
	display: inline-block;
	border-radius: 0 25px 25px 0;
	background-color: #fff;
	font-size: clamp(36px,4.4vw,44px);
	font-family: "Albert Sans", "Noto Sans JP", sans-serif;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 1.1;
	padding: .85em 2em .8em 3em;
	color: #2ca3da;
}
.lower_mv h1 small {
	font-size: clamp(13px,1.6vw,16px);
	font-weight: bold;
	display: block;
	margin-bottom: .5em;
}
/* 画像付きMV */
.lower_mv.mv_addimg {
	position: relative;
}
.lower_mv.mv_addimg h1 {
	position: absolute;
	top:  0;
	left: 0;
}
.lower_mv.mv_addimg img {
	width: 100%;
}

/* ===== 下層ページ 背景装飾 ===== */
.lower_main {
	position: relative;
}
.lower_main .lower_mv,
.lower_main .allMain_wrap {
	position: relative;
	z-index: 5;
}
.lower_decoration {
	width:  100%;
	height: 100%;
	display: flex;
	justify-content: center;
	position: absolute;
	top:  0;
	left: 0;
	overflow: hidden;
	opacity: 1;
	z-index: 0;
}
.lower_decoration .pc_blk {
	min-width: 1350px;
	margin-left:  auto;
	margin-right: auto;
	background-size: 100%;
	background-position: top center;
	background-repeat: repeat-y;
}
.lower_decoration .sp_blk {
	width: 100%;
	max-width: 450px;
	margin-left:  auto;
	margin-right: auto;
	background-size: 100%;
	background-position: top center;
	background-repeat: no-repeat;
}





@media screen and (max-width:1100px) {
	/* ===== header menu ===== */
	.page_link {
		margin-top: -80px;
		padding-top: 80px;
	}
	body.overflowY {
		overflow-y: hidden !important;
	}
	header {
		width:  100%;
		height:  80px;
		padding: 15px 30px;
	}
	.header_logo {
		width: 40vw;
		max-width: 130px;
	}
	.header_logo > a img {
		max-height: inherit;
	}
	/* ハンバーガーボタン */
	.openbtn1 {
		width:  65px;
		height: 65px;
		position: fixed;
		text-align: center;
		right:  20px;
		bottom: 20px;
		cursor: pointer;
		z-index: 9800;
		background-color: #fff;
		border-radius: 60px;
		box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
		opacity: 1;
		transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
		transition-property: opacity,box-shadow;
	}
	.openbtn1.is-fbtn-opacity {
		pointer-events: none;
		touch-action: none;
		opacity: 0;
	}


	/* ハンバーガーボタン ×に変化 */  
	.openbtn1 span {
		position: absolute;
		display: inline-block;
		transition: transform .5s, background-color .5s;
		left: 25%;
		height: 1px;
		background-color: #000;
		width: 50%;
	}
	.openbtn1.active span {
		background-color: #000;
	}
	.openbtn1 span:nth-of-type(1) {
		top: 18px; 
	}
	.openbtn1 span:nth-of-type(2) {
		top: 28px;
	}
	.openbtn1.active span:nth-of-type(1) {
		width: 50%;
		transform: translateY(4px) rotate(-30deg);
	}
	.openbtn1.active span:nth-of-type(2) {
		width: 50%;
		transform: translateY(-5px) rotate(30deg);
	}
	/* 「MENU」 「CLOSE」 テキスト */
	.openbtn1 p {
		width: 100%;
		font-size: 12px;
		position: absolute;
		text-align: center;
		bottom: 16px;
		line-height: 1;
		letter-spacing: 0;
		pointer-events: none;
		touch-action:   none;
		transition: opacity .1s;
	}
	.openbtn1 p.menu_text  { opacity:1; }
	.openbtn1 p.close_text { opacity:0; }

	.openbtn1.active p.menu_text  { opacity:0; }
	.openbtn1.active p.close_text { opacity:1; }


	/* ▼ ×のレイアウト変更（デザイン通りに） */
	/* 
	.openbtn1.active {
		box-shadow: 0px 0px 4px rgba(0, 0, 0, 0);
	}
	.openbtn1.active span:nth-of-type(1) {
		transform: translateY(15px) rotate(-40deg);
	}
	.openbtn1.active span:nth-of-type(2) {
		transform: translateY(6px) rotate(40deg);
	}
	.openbtn1 p.close_text {
		display: none !important;
	} */
	/* ▲ ×のレイアウト変更（デザイン通りに） */

	/* headerボタン */
	.hmenu_btn a {
		padding: 1em 1.25em;
	}
	header > .hmenu_btn a {
		font-size: 12px;
		font-weight: bold;
		border: 1.2px solid #fff;
		background-color: rgba(44,163,218,0);
		transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
		transition-property: border,border-color,background-color;
	}
	header.is-bg > .hmenu_btn a   {
		border: 1.2px solid rgba(255,255,255,0);
		background-color: rgba(44,163,218,1);
	}
	/* hover */
	header > .hmenu_btn a:hover {
		color: #2ca3da !important;
		border-color: #2ca3da !important;
		background-color: transparent !important;	
	}
	header > .hmenu_btn a:hover svg {
		stroke: #2ca3da;
	}

	/* ハンバーガーメニューの中身 */
	.header_wrap {
		transition: background-color .3s;
	}
	.overflowY .header_wrap {
		background-color: #fff;
	}
	#g-nav {
		display: none !important;
	}	
	#g-nav_sp {
		width:  50%;
		max-width: 300px;
		min-width: 260px;
		height: 100vh;
		display: block !important;
		position: fixed;
		top:  0;
		right: 0;
		opacity: 0;
		pointer-events: none;
		background: #000;
		background: #fff;
		transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
		transition-property: opacity;
		z-index: -2;
		padding: 60px 30px 30px;
		padding-top: clamp(40px,6vh,60px);
		overflow-y: scroll;
	}
	#g-nav_sp.panelactive {
		pointer-events: auto;
		opacity: 1;
		z-index: 990;
		transform: translateX(0%);
		transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
		transition-property: opacity;
	}
	#g-nav_sp > * {
		opacity: 0;
	}
	#g-nav_sp.panelactive > * {
		opacity: 1;
	}
	#g-nav_sp ul {
		min-height: fit-content;
		padding-bottom: 80px;
	}
	#g-nav_sp li {
		font-size: 14px;
		border-bottom: 1px solid #ccc;
	}
	#g-nav_sp li a {
		width: 100%;
		font-size: 14px;
		font-weight: 500;
		display: inline-block;
		padding-left:   1em;
		padding-bottom: .75em;
	}
	#g-nav_sp li:not(:first-of-type) {
		margin-left: 0;
		margin-top: 1.5em;
	}
	#g-nav_sp .hmenu_btn {
		margin-top: 2em !important;
		border-bottom: none;
	}
	#g-nav_sp .hmenu_btn a {
		font-size: 14px !important;
		display: flex !important;
		border-color: #2ca3da !important;
		padding-bottom: 1em;
		opacity: 1 !important;
	}

	/* SPメニュー表示時の背景オーバーレイ */
	.header_active_bg {
		width:  100%;
		height: 100vh;
		display: block;
		position: fixed;
		top:  0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.2);
		pointer-events: none;
		touch-action:   none;
		opacity: 0;
		transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
		transition-property: opacity;
		z-index: 980;
	}
	.overflowY .header_active_bg {
		pointer-events: all;
		touch-action:   auto;
		opacity: 1;
	}
	.sp_menu {
		display: block !important;
	}

	/* ===== 下層共通 ===== */
	.lower_mv {
		padding-top: 120px;
	}
}



@media screen and (max-width:768px) {
	/* --- maxWidth --- */
	.bg_wrap,
	.wrap {
		width: 100%;
		margin: auto;
		padding: 0 20px;
		padding: 0 clamp(20px,5.333vw,40px);
	}
	.wrap {
		max-width: 640px;
	}
	.bg_wrap .wrap {
		max-width: 600px;
		padding-left:  0;
		padding-right: 0;
	}
	/* --- text --- */
	h2,
	h2.ff_albert {
		font-size: 28px;
	}
	p.head_bottom {
		font-size: 12px;
	}

	ul,
	li,
	dl,
	dd,
	dt,
	a,
	p { font-size: 14px; }

	.fb_normal-SP { font-weight:normal !important; }
	.fb_500-SP    { font-weight:500 !important;    }
	.fb_bold-SP   { font-weight:bold !important;   }
	.align_left-SP    { text-align:left !important;    }
	.align_right-SP   { text-align:right !important;   }
	.align_center-SP  { text-align:center !important;  }
	.align_justify-SP { text-align:justify !important; }

	/* mar */
	.marXL_T  { margin-top:80px !important; }
	.marL_T   { margin-top:50px !important; }
	.marM_T   { margin-top:40px !important; }
	.marS_T   { margin-top:30px !important; }
	.marXS_T  { margin-top:20px !important; }
	
	.marXL_B  { margin-bottom:80px !important; }
	.marL_B   { margin-bottom:50px !important; }
	.marM_B   { margin-bottom:40px !important; }
	.marS_B   { margin-bottom:30px !important; }
	.marXS_B  { margin-bottom:20px !important; }
	
	/* pad */
	.padXL_T  { padding-top:80px !important; }
	.padL_T   { padding-top:50px !important; }
	.padM_T   { padding-top:40px !important; }
	.padS_T   { padding-top:30px !important; }
	.padXS_T  { padding-top:20px !important; }
	
	.padXL_B  { padding-bottom:80px !important; }
	.padL_B   { padding-bottom:50px !important; }
	.padM_B   { padding-bottom:40px !important; }
	.padS_B   { padding-bottom:30px !important; }
	.padXS_B  { padding-bottom:20px !important; }

	/* mar */
	.marXL_T-SP  { margin-top:80px !important; }
	.marL_T-SP   { margin-top:50px !important; }
	.marM_T-SP   { margin-top:40px !important; }
	.marS_T-SP   { margin-top:30px !important; }
	.marXS_T-SP  { margin-top:20px !important; }
	.mar0_T-SP   { margin-top:0 !important;    }
	
	.marXL_B-SP  { margin-bottom:80px !important; }
	.marL_B-SP   { margin-bottom:50px !important; }
	.marM_B-SP   { margin-bottom:40px !important; }
	.marS_B-SP   { margin-bottom:30px !important; }
	.marXS_B-SP  { margin-bottom:20px !important; }
	.mar0_B-SP   { margin-bottom:0 !important;    }
	
	/* pad */
	.padXL_T-SP  { padding-top:80px !important; }
	.padL_T-SP   { padding-top:50px !important; }
	.padM_T-SP   { padding-top:40px !important; }
	.padS_T-SP   { padding-top:30px !important; }
	.padXS_T-SP  { padding-top:20px !important; }
	.pad0_T-SP   { padding-top:0px !important;  }
	
	.padXL_B-SP  { padding-bottom:80px !important; }
	.padL_B-SP   { padding-bottom:50px !important; }
	.padM_B-SP   { padding-bottom:40px !important; }
	.padS_B-SP   { padding-bottom:30px !important; }
	.padXS_B-SP  { padding-bottom:20px !important; }
	.pad0_B-SP   { padding-bottom:0px !important;  }

	/* --- btn ( div.btn > a ) --- */
	.btn { font-size:14px; }

	.btn a,
	.btn p {
		min-width: 180px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	/* --- others --- */
	.pc_blk { display:none  !important; }
	.sp_blk { display:block !important; }

	.flex_box.pc_blk { display:none !important; }
	.flex_box.sp_blk { display:flex !important; }

	.flex_box { flex-wrap:wrap; }


	/* ===== header menu ===== */
	header {
		padding-left:  min(5.333vw,30px);
		padding-right: min(5.333vw,30px);
	}
	header > .hmenu_btn a {
		font-size: min(3.2vw,12px);
	}

	/* ===== footer menu ===== */
	.footer_wrap {
		max-width: 640px;
		padding-left:  20px;
		padding-right: 20px;
	}
	.footer_top {
		flex-wrap: wrap;
	}
	.footer_logo {
		width: 100%;
		text-align: center;
		margin-left:  auto;
		margin-right: auto;
		margin-bottom: 25px;
	}
	.footer_logo a {
		width: 100%;
		max-width: 175px;
	}
	.footer_nav,
	footer address {
		width: 100%;
	}
	.fmenu_others {
		justify-content: center;	
	}
	.fmenu {
		justify-content: center;
	}
	.fmenu li {
		margin-left: 1.5em;
		margin-bottom: .5em;
	}
	.fmenu li:first-of-type {
		margin-left: 0;
	}
	footer .gmap {
		display:none !important;
	}
	footer address dt {
		font-size: 12px;
		margin-right: 1em;
	}
	footer address small {
		font-size: 10px;
		margin-top: .75em;
	}
	.footer_add-map {
		font-size: 12px;
	}
	.footer_add-map a {
		font-weight: bold;
		text-decoration: underline;
	}
	.fmenu_others .fmenu_btn + .fmenu_btn {
		margin-right: 0;
	}
	.fmenu_others .fmenu_btn {
		max-width: 180px;
	}
	/* コピーライト部分のflex */
	.sp_copy_wrap {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.sp_copy_left {
		width: 27%;
		max-width: 110px;
		display: flex;
		flex-wrap: nowrap;
		align-items: flex-end;
		justify-content: space-between;
		margin-right: 3%;
	}
	.sp_copy_right {
		width: 70%;
	}
	.fmenu_sns {
		width: calc(100%/3 - 5%);
	}

	/* --- 共通アニメーション --- */
	/* PCanimation 解除 */
	.effect_pc,
	.effect_pc:before,
	.effect_pc:after {
		opacity: 1;
		transform: translateY(0);
	}
	.effect_pc.is-active,
	.effect_pc.is-active:before,
	.effect_pc.is-active:after {
		animation: none;
	}
	/* SPanimation 設定 */
	.effect_sp {
		opacity: 0;
		transform: translateY(10%);
	}
	.effect_sp.is-active {
		animation: fadeUp 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
		animation-delay: .1s;
	}
	.effect_sp:before,
	.effect_sp:after {
		transform: translateY(-10%);
	}
	.effect_sp.is-active:before,
	.effect_sp.is-active:after   {
		animation: fadeUp 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
		animation-delay: .1s;
	}
	@keyframes fadeUp {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* ===== 下層共通 ===== */
	/* --- MV --- */
	.lower_mv {
		padding-top: 100px;
	}
	.lower_mv h1 {
		display: inline-block;
		border-radius: 0 15px 15px 0;
		font-size: 24px;
		padding: .7em 2em .7em 1em;
	}
	.lower_mv h1 small {
		font-size: 14px;
		display: block;
		margin-bottom: .25em;
	}
}




