@charset "utf-8";

/* 変数 */
:root {
	--red: #f90000;
	--blue: #1a326f;
	--brown: #4b2300;
}

/* -------------
base
-------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol, summary{
	list-style-type: none;
}
summary::-webkit-details-marker {
	/* Safari-デフォルトの三角形を削除*/
	display: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}

a img {
	border: none;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	height: auto;
}
img[src*=".svg"] {
	width: 100%;
}
picture{
	display: block;
	width: 100%;
	height: 100%;
}
video{
	max-width: 100%;
}
a {
	cursor: pointer;
	color: inherit;
	text-decoration: none;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	/*-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;*/
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
textarea {
	resize: none;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select,
summary{
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}


/************************************************************************
	PC/SP
**************************************************************************/
.sp{ display: none; }


@media screen and (max-width: 768px) {
	.pc { display: none;}
	.sp { display: block;}
}

/************************************************************************
	フォント関係
**************************************************************************/
html {
	font-size: 62.5%;/* 1.6remで16px */
}
/* 以降 (XXpx/16)×0.625 */
@media screen and (max-width: 1200px){
	html {
		font-size: 58.59%;/* 1.6remで15px */
	}
}
@media screen and (max-width: 1024px){
	html {
		font-size: 54.69%;/* 1.6remで14px */
	}
}
/* 以降、350pxで14pxにしたいので1.4remで指定 */
/* font-size100%時、1.4rem=22.4pxなので、XXpx/22.4=目的の％ */
@media screen and (max-width: 768px){
	html {
		font-size: 93.75%;/* 1.4remで21px */
	}
}
@media screen and (max-width: 530px){/* 350px*1.5 */
	html {
		font-size: 78.13%;/* 1.4remで17.5px */
	}
}
@media screen and (max-width: 430px){
	html {
		font-size: 62.5%;/* 1.4remで14px */
	}
}

/*
 body
-------------------------------------------------------- */
/* 
NotoSansCJK
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 300 400 700;
Poppins
font-family: poppins, sans-serif;
font-weight: 100~700;
font-style: normal;

*/

body {
	font-family: noto-sans-cjk-jp, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'YuGothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #1a1a1a;
	font-size: 1.6rem;
	font-weight: 300;
	letter-spacing: .1em;
	line-height: 1.75;
	/* -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased; */
	word-wrap: normal;
}

@media screen and (max-width: 768px){
	body{/* 350pxのとき14px */
		font-size: 1.4rem;
	}
}

/*
 字体
-------------------------------------------------------- */
.mincho{
	font-family: '游明朝 Medium', 'Yu Mincho Medium', '游明朝', 'YuMincho', hiragino-mincho-pron, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 500;
}

.en{
	font-family: poppins, Helvetica, "Helvetica Neue", Arial, Verdana, "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "YuGothic", "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* 
 文字サイズ
-------------------------------------------------------- */
.fz12{
	font-size: 1.2rem;
}
.fz14{
	font-size: 1.4rem;
}
.fz15{
	font-size: 1.5rem;
}
.fz16{
	font-size: 1.6rem;
}
.fz18{
	font-size: 1.8rem;
}
.fz20{
	font-size: 2rem;
}
.fz23{
	font-size: 2.3rem;
}
.fz24{
	font-size: 2.4rem;
}
.fz25{
	font-size: 2.5rem;
}
.fz26{
	font-size: 2.6rem;
}
.fz28{
	font-size: 2.8rem;
}
.fz30{
	font-size: 3rem;
}
.fz34{
	font-size: 3.4rem;
}
.fz35{
	font-size: 3.5rem;
}
.fz36{
	font-size: 3.6rem;
}
.fz40{
	font-size: 4rem;
}
.fz42{
	font-size: 4.2rem;
}
.fz48{
	font-size: 4.8rem;
}
.fz51{
	font-size: 5.1rem;
}
.fz54{
	font-size: 5.4rem;
}
.fz56{
	font-size: 5.6rem;
}

.fz70{
	font-size: 7rem;
}
.fz75{
	font-size: 7.5rem;
}

.fz80{
	font-size: 8rem;
}

.fz108{
	font-size: 10.8rem;
}

@media screen and (max-width: 768px){/* SPデザインなければ×0.66とか */
	.fz16{
		font-size: 1.4rem;
	}
	.fz18{
		font-size: 1.4rem;
	}
	.fz20{
		font-size: 1.5rem;
	}
	.fz23{
		font-size: 1.6rem;
	}
	.fz24{
		font-size: 1.65rem;
	}
	.fz25{
		font-size: 1.65rem;
	}
	.fz26{
		font-size: 1.72rem;
	}
	.fz28{
		font-size: 1.85rem;
	}
	.fz30{
		font-size: 2rem;
	}
	.fz34{
		font-size: 2.24rem;
	}
	.fz35{
		font-size: 2.31rem;
	}
	.fz36{
		font-size: 2.37rem;
	}
	.fz40{
		font-size: 2.64rem;
	}
	.fz42{
		font-size: 2.77rem;
	}
	.fz48{
		font-size: 3.16rem;
	}
	.fz51{
		font-size: 3.36rem;
	}
	.fz54{
		font-size: 3.56rem;
	}
	.fz56{
		font-size: 3.68rem;
	}

	.fz70{
		font-size: 4.62rem;
	}
	.fz75{
		font-size: 4.95rem;
	}

	.fz80{
		font-size: 5.28rem;
	}

	.fz108{
		font-size: 7.12rem;
	}

	.fz12sp{
		font-size: 1.2rem;
	}
	.fz13sp{
		font-size: 1.3rem;
	}
	.fz14sp{
		font-size: 1.4rem;
	}
	.fz15sp{
		font-size: 1.5rem;
	}
	.fz16sp{
		font-size: 1.6rem;
	}
	.fz18sp{
		font-size: 1.8rem;
	}
	.fz20sp{
		font-size: 2rem;
	}
	.fz21sp{
		font-size: 2.1rem;
	}
	.fz22sp{
		font-size: 2.2rem;
	}
	.fz24sp{
		font-size: 2.4rem;
	}
	.fz25sp{
		font-size: 2.5rem;
	}
	.fz28sp{
		font-size: 2.8rem;
	}
	.fz30sp{
		font-size: 3rem;
	}

	.fz84sp{
		font-size: 8.4rem;
	}
}

/* 
並び 間隔
-------------------------------------------------------- */
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }
.taj{ text-align: justify;}

.ls0{ letter-spacing: 0; }
.ls01{ letter-spacing: .1em; }
.ls02{ letter-spacing: .2em; }

.lh150{ line-height: 1.5; }
.lh200{ line-height: 2; }
.lh225{ line-height: 2.25; }/* 文字16pxで行間36px */

.v_rl{
	writing-mode: vertical-rl;
}
.upright{
	text-orientation: upright;
}

.indent{
	text-indent: 1em;
}
span.indent{
	display: inline-block;
}

.palt{
	font-feature-settings: "palt";
}

.capitalize{
	text-transform: capitalize;
}
.capitalize.no{
	text-transform: none;
}
.uppercase{
	text-transform: uppercase;
}


/* 
文字色
-------------------------------------------------------- */
.white{ color: #fff;}
.brown{ color: var(--brown);}
.red{ color: var(--red);}


/* 
文字太さ 装飾
-------------------------------------------------------- */
.font_smooth{
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

.b { font-weight: 700; }
.fw100 { font-weight: 100; }
.fw200 { font-weight: 200; }
.fw300 { font-weight: 300; }
.fw400 { font-weight: 400; }
.fw500 { font-weight: 500; }
.fw600 { font-weight: 600; }
.fw800 { font-weight: 800; }
.fw900 { font-weight: 900; }

.i{ font-style: italic; }
.u, .u_trance{
	text-decoration: underline;
}
.u_trance:hover{
	text-decoration: none;
}

.t_shadow{
	text-shadow: 0 .8rem 1.6rem rgba(0, 0, 0, .08), 0 .8rem 1.6rem rgba(0, 0, 0, .08);
}

.marker{
	background:linear-gradient(transparent 75%, #fff100 75%);
}


/************************************************************************
	リストなど　擬似要素装飾
**************************************************************************/
/* 「※」 */
.attention_mark{
	position: relative;
	padding-left: 1.1em;
}
.attention_mark::before{
	content: "\0203B";
	position: absolute;
	left: 0;
}
span.attention_mark{
	display: inline-block;
}

/* 「・」 */
.disk li, .disk_mark{
	padding-left: 1.33em;
	position: relative;
}
.disk li::before, .disk_mark::before{
	content: "・";
	position: absolute;
	left: .25em;
}
span.disk_mark{
	display: inline-block;
}

/* 「⚫︎」 */
.circle li, .circle_mark{
	padding-left: 1.33em;
	position: relative;
}
.circle li::before, .circle_mark::before{
	content: "";
	display: block;
	width: .625em;
	height: .625em;
	background-color: #0079c2;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: .4em;
}

/* 「01.」 */
.num_list{
	counter-reset: num_list;
}
.num_list li{
	counter-increment: num_list;
	padding-left: 1.5em;
	position: relative;
}
.num_list li::before{
	content: counter(num_list, decimal-leading-zero)".";
	position: absolute;
	left: 0;
}

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

}


/************************************************************************
	インナー　その他余白
**************************************************************************/
.inner{
	margin: 0 auto;
}
.inner.primary{
	max-width: 1320px;
	width: 94%;
}
.inner.mw1600{
	max-width: 1600px;
}

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

/* padding ⚪︎⚪︎px/1600px */
.pt20{ padding-top: 2rem;}
.pb20{ padding-bottom: 2rem;}

.pt30{ padding-top: 3rem;}
.pb30{ padding-bottom: 3rem;}

.pt40{ padding-top: 4rem;}
.pb40{ padding-bottom: 4rem;}

.pt50{ padding-top: 5rem;}
.pb50{ padding-bottom: 5rem;}

.pt60{ padding-top: 6rem;}
.pb60{ padding-bottom: 6rem;}

.pt70{ padding-top: 7rem;}
.pb70{ padding-bottom: 7rem;}

.pt80{ padding-top: 8rem;}
.pb80{padding-bottom: 8rem;}

.pt90{ padding-top: 9rem;}
.pb90{ padding-bottom: 9rem;}

.pt100{ padding-top: 10rem;}
.pb100{ padding-bottom: 10rem;}

.pt110{ padding-top: 11rem;}
.pb110{ padding-bottom: 11rem;}

.pt120{ padding-top: 12rem;}
.pb120{ padding-bottom: 12rem;}

.pt130{ padding-top: 13rem;}
.pb130{ padding-bottom: 13rem;}

.pt140{ padding-top: 14rem;}
.pb140{ padding-bottom: 14rem;}

.pt150{ padding-top: 15rem;}
.pb150{ padding-bottom: 15rem;}

.pt160{ padding-top: 16rem;}
.pb160{ padding-bottom: 16rem;}

.pt170{ padding-top: 17rem;}
.pb170{ padding-bottom: 17rem;}

.pt180{ padding-top: 18rem;}
.pb180{ padding-bottom: 18rem;}

.pt190{ padding-top: 19rem;}
.pb190{ padding-bottom: 19rem;}

.pt200{ padding-top: 20rem;}
.pb200{ padding-bottom: 20rem;}

.pt210{ padding-top: 21rem;}
.pb210{ padding-bottom: 21rem;}

.pt220{ padding-top: 22rem;}
.pb220{ padding-bottom: 22rem;}

@media screen and (max-width: 768px) {/* pcの数字×0.5 */
	.pt20{ padding-top: 1rem;}
	.pb20{ padding-bottom: 1rem;}

	.pt30{ padding-top: 1.5rem;}
	.pb30{ padding-bottom: 1.5rem;}

	.pt40{ padding-top: 2rem;}
	.pb40{ padding-bottom: 2rem;}

	.pt50{ padding-top: 2.5rem;}
	.pb50{ padding-bottom: 2.5rem;}

	.pt60{ padding-top: 3rem;}
	.pb60{ padding-bottom: 3rem;}

	.pt70{ padding-top: 3.5rem;}
	.pb70{ padding-bottom: 3.5rem;}

	.pt80{ padding-top: 5rem;}
	.pb80{padding-bottom: 5rem;}

	.pt90{ padding-top: 4.5rem;}
	.pb90{ padding-bottom: 4.5rem;}

	.pt100{ padding-top: 5rem;}
	.pb100{ padding-bottom: 5rem;}

	.pt110{ padding-top: 5.5rem;}
	.pb110{ padding-bottom: 5.5rem;}

	.pt120{ padding-top: 6rem;}
	.pb120{ padding-bottom: 6rem;}

	.pt130{ padding-top: 6.5rem;}
	.pb130{ padding-bottom: 6.5rem;}

	.pt140{ padding-top: 7rem;}
	.pb140{ padding-bottom: 7rem;}

	.pt150{ padding-top: 7.5rem;}
	.pb150{ padding-bottom: 7.5rem;}

	.pt160{ padding-top: 8rem;}
	.pb160{ padding-bottom: 8rem;}

	.pt170{ padding-top: 8.5rem;}
	.pb170{ padding-bottom: 8.5rem;}

	.pt180{ padding-top: 9rem;}
	.pb180{ padding-bottom: 9rem;}

	.pt190{ padding-top: 9.5rem;}
	.pb190{ padding-bottom: 9.5rem;}

	.pt200{ padding-top: 10rem;}
	.pb200{ padding-bottom: 10rem;}

	.pt210{ padding-top: 10.5rem;}
	.pb210{ padding-bottom: 10.5rem;}

	.pt220{ padding-top: 11rem;}
	.pb220{ padding-bottom: 11rem;}

	/* sp デザイン350px時 */
	.pt20sp{ padding-top: 2rem;}
	.pb20sp{ padding-bottom: 2rem;}

	.pt30sp{ padding-top: 3rem;}
	.pb30sp{ padding-bottom: 3rem;}

	.pt40sp{ padding-top: 4rem;}
	.pb40sp{ padding-bottom: 4rem;}

	.pt50sp{ padding-top: 5rem;}
	.pb50sp{ padding-bottom: 5rem;}

	.pt60sp{ padding-top: 6rem;}
	.pb60sp{ padding-bottom: 6rem;}

	.pt70sp{ padding-top: 7rem;}
	.pb70sp{ padding-bottom: 7rem;}

	.pt80sp{ padding-top: 8rem;}
	.pb80sp{padding-bottom: 8rem;}

	.pt90sp{ padding-top: 9rem;}
	.pb90sp{ padding-bottom: 9rem;}

	.pt100sp{ padding-top: 10rem;}
	.pb100sp{ padding-bottom: 10rem;}

	.pt110sp{ padding-top: 11rem;}
	.pb110sp{ padding-bottom: 11rem;}

	.pt120sp{ padding-top: 12rem;}
	.pb120sp{ padding-bottom: 12rem;}
}

/* (主に文字上下余白) */
.pt025em{ padding-top: .25em;}
.pt033em{ padding-top: .33em;}
.pt05em{ padding-top: .5em;}
.pt066em{ padding-top: .66em;}
.pt075em{ padding-top: .75em;}
.pt1em{ padding-top: 1em;}
.pt125em{ padding-top: 1.25em;}
.pt133em{ padding-top: 1.33em;}
.pt15em{ padding-top: 1.5em;}
.pt166em{ padding-top: 1.66em;}
.pt175em{ padding-top: 1.75em;}
.pt2em{ padding-top: 2em;}
.pt225em{ padding-top: 2.25em;}
.pt233em{ padding-top: 2.33em;}
.pt25em{ padding-top: 2.5em;}
.pt266em{ padding-top: 2.66em;}
.pt275em{ padding-top: 2.75em;}
.pt3em{ padding-top: 3em;}
.pt35em{ padding-top: 3.5em;}
.pt4em{ padding-top: 4em;}
.pt45em{ padding-top: 4.5em;}
.pt5em{ padding-top: 5em;}

.m_a{ margin: auto;}
.mb025em{ margin-bottom: .25em;}
.mb033em{ margin-bottom: .33em;}
.mb05em{ margin-bottom: .5em;}
.mb066em{ margin-bottom: .66em;}
.mb075em{ margin-bottom: .75em;}
.mb1em{ margin-bottom: 1em;}
.mb125em{ margin-bottom: 1.25em;}
.mb133em{ margin-bottom: 1.33em;}
.mb15em{ margin-bottom: 1.5em;}
.mb166em{ margin-bottom: 1.66em;}
.mb175em{ margin-bottom: 1.75em;}
.mb2em{ margin-bottom: 2em;}
.mb225em{ margin-bottom: 2.25em;}
.mb233em{ margin-bottom: 2.33em;}
.mb25em{ margin-bottom: 2.5em;}
.mb266em{ margin-bottom: 2.66em;}
.mb275em{ margin-bottom: 2.75em;}
.mb3em{ margin-bottom: 3em;}
.mb35em{ margin-bottom: 3.5em;}
.mb4em{ margin-bottom: 4em;}
.mb45em{ margin-bottom: 4.5em;}
.mb5em{ margin-bottom: 5em;}

@media screen and (max-width: 768px) {/* pcの数字×0.6 */
	.mb025em{ margin-bottom: .15em;}
	.mb033em{ margin-bottom: .2em;}
	.mb05em{ margin-bottom: .3em;}
	.mb066em{ margin-bottom: .4em;}
	.mb075em{ margin-bottom: .45em;}
	.mb1em{ margin-bottom: .6em;}
	.mb125em{ margin-bottom: .75em;}
	.mb133em{ margin-bottom: .8em;}
	.mb15em{ margin-bottom: .9em;}
	.mb166em{ margin-bottom: 1.1em;}
	.mb175em{ margin-bottom: 1.155em;}
	.mb2em{ margin-bottom: 1.2em;}
	.mb225em{ margin-bottom: 1.35em;}
	.mb233em{ margin-bottom: 1.4em;}
	.mb25em{ margin-bottom: 1.5em;}
	.mb3em{ margin-bottom: 1.8em;}
	.mb35em{ margin-bottom: 2.1em;}
	.mb4em{ margin-bottom: 2.4em;}
	.mb45em{ margin-bottom: 2.7em;}
	.mb5em{ margin-bottom: 3em;}

	.mb025em_sp{ margin-bottom: .25em;}
	.mb033em_sp{ margin-bottom: .33em;}
	.mb05em_sp{ margin-bottom: .5em;}
	.mb066em_sp{ margin-bottom: .66em;}
	.mb075em_sp{ margin-bottom: .75em;}
	.mb1em_sp{ margin-bottom: 1em;}
	.mb125em_sp{ margin-bottom: 1.25em;}
	.mb133em_sp{ margin-bottom: 1.33em;}
	.mb15em_sp{ margin-bottom: 1.5em;}
	.mb166em_sp{ margin-bottom: 1.66em;}
	.mb175em_sp{ margin-bottom: 1.75em;}
	.mb2em_sp{ margin-bottom: 2em;}
	.mb225em_sp{ margin-bottom: 2.25em;}
	.mb233em_sp{ margin-bottom: 2.33em;}
	.mb25em_sp{ margin-bottom: 2.5em;}
	.mb266em_sp{ margin-bottom: 2.66em;}
	.mb275em_sp{ margin-bottom: 2.75em;}
	.mb3em_sp{ margin-bottom: 3em;}
	.mb35em_sp{ margin-bottom: 3.5em;}
	.mb4em_sp{ margin-bottom: 4em;}
	.mb45em_sp{ margin-bottom: 4.5em;}
	.mb5em_sp{ margin-bottom: 5em;}
}


/************************************************************************
	リンク
**************************************************************************/
a{
	transition: .4s;
}
.a_brightness:hover{
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
}
.a_opacity:hover{
	opacity: .7;
}

a.no_anchor{
	pointer-events: none;
	text-decoration: none;
}

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

}

@media (min-width: 769px) {
	a[href*="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

/************************************************************************
	画像
**************************************************************************/
.img img,
.img picture{
	width: 100%;
}

.img_bg{
	position: relative;
	background: url(../img/cmn/dummy.png) no-repeat center/cover;
}
.img_bg::before{
	content: "";
	display: block;
	padding-top: 75%;
}

.img_ab{
	position: relative;
}
.img_ab::before{
	content: "";
	display: block;
	padding-top: 75%;
}
.img_ab img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/************************************************************************
	タイトル
**************************************************************************/
.title_primary{
	font-family: poppins, Helvetica, "Helvetica Neue", sans-serif;
	font-size: 4.8rem;
	font-weight: 100;
	text-align: center;
	color: var(--brown);
	line-height: 1.2;
	letter-spacing: .1em;
	text-transform: capitalize;
	padding-bottom: .66em;
	position: relative;
}
.title_primary::after{
	content: "";
	display: block;
	width: .58em;/* 28px */
	height: .64em;/* 31px */
	background: url(../img/cmn/logo_single_brown.svg) no-repeat center/contain;
	position: absolute;
	bottom: 0;
	left: calc(50% - .29em);
}

.title_primary .small,
.reservation .small{
	font-size: .75em;
}

@media screen and (max-width: 768px) {
	.title_primary{
		font-size: 3.6rem;
	}
}

/************************************************************************
	ボタン
**************************************************************************/
.btn_primary{
	display: block;
	font-size: 1.8rem;
	color: var(--brown);
	text-align: center;
	width: 90%;
	max-width: 36rem;
	padding: .7em 1.75em;
	margin: auto;
	border: 1px solid var(--brown);
	border-radius: 5em;
	background-color: #fff;
	position: relative;
	transition: color .4s;
	overflow: hidden;
}
.btn_primary:hover{
	color: #fff;
}

.btn_primary::before{
	content: "";
	display: block;
	width: 0;
	height: 100%;
	background-color: var(--brown);
	position: absolute;
	left: 0;
	top: 0;
	transition: width .4s;
}
.btn_primary:hover::before{
	width: 100%;
}

.btn_primary::after{
	content: "";
	display: block;
	width: .4em;
	height: .62em;
	-webkit-mask: url(../img/cmn/arrow01.svg) no-repeat center/contain;
	mask: url(../img/cmn/arrow01.svg) no-repeat center/contain;
	background-color: var(--brown);
	position: absolute;
	right: 1.66em;
	top: calc(50% - .31em);
	transition: background-color .4s, right .4s;
}
.btn_primary:hover::after{
	background-color: #fff;
	right: 1.5em;
}

.btn_primary .btn_text{
	display: inline-block;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.btn_primary{
		font-size: 1.4rem;
		max-width: 25rem;
		padding: .5em 1.75em;
	}
}


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

}


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

}

/************************************************************************
	フレックス
**************************************************************************/
/* flex系 */
.flex {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

.flex_pc{/* 768以下block */
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

.nowrap {
	flex-wrap: nowrap;
}

.fd_rr {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}

.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}

.fd_cr {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	flex-direction: column-reverse;
}

.ai_fs {
	-webkit-box-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	align-items: center;
}

.jc_fs {
	-webkit-box-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.jc_sa {
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}

.fl_g{
	-webkit-box-flex:1;
	flex-grow:1;
}

@media screen and (max-width: 768px) {
	.flex_pc{
		display: block;
	}
}



/************************************************************************
	その他共通
**************************************************************************/
.hidden{
	overflow: hidden;
}

body.hmb_open, body.modal_open{
	overflow: hidden;
}


.block{
	display: block;
}
.dib{
	display: inline-block;
}

.fit{
	width: fit-content;
}



.z1{
	position: relative;
	z-index: 1;
}
.z2{
	position: relative;
	z-index: 2;
}
.z3{
	position: relative;
	z-index: 3;
}


/* 
 ボックスシャドウ
-------------------------------------------------------- */
.shadow, .shadow_trance{
	box-shadow: 0 .8rem 1.6rem .2rem rgba(0, 0, 0, .16);
}
a.shadow:hover, .shadow_trance:hover{
	box-shadow: 0 0 0 0 rgba(0, 0, 0, .08);
	transform: translateY(.2rem);
}
@media (max-width: 768px) {
	.shadow{
		box-shadow: .33rem .33rem 1rem -.75rem rgba(144, 144, 144, .5);
	}
}

/* 
 Youtube埋め込みなど
-------------------------------------------------------- */
.movie_box{
	position: relative;
}
.movie_box::before{
	content: "";
	display: block;
	padding-top: 56.25%;
}
.movie_box iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}


/* 
ドラッグでテキスト選択した時の色
-------------------------------------------------------- */
/* ::-moz-selection {
	color: #fff;
	background: #1a1a1a;
}
::selection {
	color: #fff;
	background: #1a1a1a;
} */


/* 
swiper　無限ループ等速スライダー
-------------------------------------------------------- */
.swiper-wrapper.loop_slider{
	transition-timing-function: linear;
}
.swiper-wrapper.loop_slider .swiper-slide img {
	width: 100%;
}



@media screen and (min-width: 769px) {
	body.hmb_open{
		overflow: visible !important;
	}
	body.hmb_open.modal_open{
		overflow: hidden !important;
	}
}


/* 
 テストなどでお客様へ注意書き用
-------------------------------------------------------- */
.notes_text{
	font-size: 1.5em;
	font-weight: 700;
	color: rgba(255, 0, 0, .6);
	position: relative;
	z-index: 3;
	height: 0;
}

/************************************************************************
	クッキー
**************************************************************************/
#cookie-notice {
	font-size: 1.8rem;
	z-index: 999;
}
#cookie-notice .cn-button {
	color: #1a1a1a;
	background: #00ff00;
	border-radius: .6rem;
	line-height: 1;
	padding: 1rem 1.5rem;
}
.cn-close-icon {
	opacity: 1;
}
.cn-close-icon:before,
.cn-close-icon:after {
	background: #fff;
}
@media screen and (max-width: 768px) {
	.page_content { padding: 6rem 0; }
	.c_section { padding: 4rem 0; }
	#cookie-notice {
		font-size: 1.4rem;
	}
}


/************************************************************************
	アニメーション
**************************************************************************/
/* フェードイン　*/
.fade, .fade_down, .fade_right, .fade_left{
	opacity: 0;
}

.animation.fade{/* 下から上へ */
	animation: fadeup .8s ease forwards;
}

.animation.fade_down{/* 上から下へ */
	animation: fadedown .8s ease forwards;
}
.animation.fade_right{/* 左から右へ */
	animation: faderight .8s ease forwards;
}
.animation.fade_left{/* 右から左へ */
	animation: fadeleft .8s ease forwards;
}
	
@keyframes fadeup{
	from {
		opacity: 0;
		transform: translateY(2em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadedown{
	from {
		opacity: 0;
		transform: translateY(-2em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes faderight{
	from {
		opacity: 0;
		transform: translateX(-2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeleft{
	from {
		opacity: 0;
		transform: translateX(2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* スライドイン　*/
.slide_left{
	transform: translateX(-200vw);
}
.animation.slide_left{
	animation: slideleft 1s ease forwards;
}
.animation.slide_left.fast{
	animation-duration: .6s;
}
.animation.slide_left.slow{
	animation-duration: 1.5s;
}

.slide_right{
	transform: translateX(200vw);
}
.animation.slide_right{
	animation: slideright 1s ease forwards;
}
.animation.slide_right.fast{
	animation-duration: .6s;
}
.animation.slide_right.slow{
	animation-duration: 1.5s;
}

/* 
<p class="trigger slide_down"><span class="slide_child">上からスライド</span></p>
*/
.slide_child{
	display: inline-block;
}

.slide_up .slide_child{
	transform: translateY(200vh);
}
.animation.slide_up .slide_child{
	animation: slideup 1s ease forwards;
}
.animation.slide_up.fast .slide_child{
	animation-duration: .6s;
}
.animation.slide_up.slow .slide_child{
	animation-duration: 1.5s;
}

.slide_down .slide_child{
	transform: translateY(-200vh);
}
.animation.slide_down .slide_child{
	animation: slidedown 1s ease forwards;
}
.animation.slide_down.fast .slide_child{
	animation-duration: .6s;
}
.animation.slide_down.slow .slide_child{
	animation-duration: 1.5s;
}

@keyframes slideleft{
	from {
		transform: translateX(-200vw);
	}
	
	to {
		transform: translateX(0);
	}
}
@keyframes slideright{
	from {
		transform: translateX(200vw);
	}
	
	to {
		transform: translateX(0);
	}
}
@keyframes slideup{
	from {
		transform: translateY(200vh);
	}
	
	to {
		transform: translateY(0);
	}
}
@keyframes slidedown{
	from {
		transform: translateY(-200vw);
	}
	
	to {
		transform: translateY(0);
	}
}

/* 黒背景スライドしてから本来の要素がスライド　*/

.black_slide,
.black_slide_wrap{
	position: relative;
}
.black_slide_wrap.fit{
	width: fit-content;
}
.black_slide::after,
.black_slide_wrap::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 0;
	background-color: var(--brown);
}

.black_slide.both::after,
.black_slide_wrap.both::after{/* 両方向から用 */
	top: auto;
	height: 60%;
}
.black_slide.both::before,
.black_slide_wrap::before{/* 両方向から用 */
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 0;
	height: 60%;
	background-color: #000;
	z-index: 2;
}

.animation.black_slide::after,
.animation.black_slide_wrap::after{
	animation: black_slide 1.2s ease-in-out forwards;
}
.animation.black_slide.reverse::after,
.animation.black_slide_wrap.reverse::after{
	animation: black_slide_reverse 1.2s ease-in-out forwards;
}
.animation.black_slide.both::before,
.animation.black_slide_wrap.both::before{/* 両方向から用 */
	animation: black_slide 1.2s ease-in-out forwards;
}
.animation.black_slide.both::after,
.animation.black_slide_wrap.both::after{/* 両方向から用 */
	animation: black_slide_reverse 1.2s ease-in-out forwards;
}

.black_slide > *,
.black_slide_wrap > *{
	opacity: 0;
}
.animation.black_slide > *,
.animation.black_slide_wrap > *{
	animation: black_fade 1.2s ease forwards;
}

.black_slide.animation.delay01::after,
.black_slide_wrap.animation.delay01::after,
.black_slide.both.animation.delay01::before,
.black_slide_wrap.animation.delay01::before,
.black_slide.animation.delay01 > *,
.black_slide_wrap.animation.delay01 > *{
	animation-delay: .1s !important;
}
.black_slide.animation.delay02::after,
.black_slide_wrap.animation.delay02::after,
.black_slide.both.animation.delay02::before,
.black_slide_wrap.animation.delay02::before,
.black_slide.animation.delay02 > *,
.black_slide_wrap.animation.delay02 > *{
	animation-delay: .2s !important;
}
.black_slide.animation.delay03::after,
.black_slide_wrap.animation.delay03::after,
.black_slide.both.animation.delay03::before,
.black_slide_wrap.animation.delay03::before,
.black_slide.animation.delay03 > *,
.black_slide_wrap.animation.delay03 > *{
	animation-delay: .3s !important;
}
.black_slide.animation.delay04::after,
.black_slide_wrap.animation.delay04::after,
.black_slide.both.animation.delay04::before,
.black_slide_wrap.animation.delay04::before,
.black_slide.animation.delay04 > *,
.black_slide_wrap.animation.delay04 > *{
	animation-delay: .4s !important;
}
.black_slide.animation.delay05::after,
.black_slide_wrap.animation.delay05::after,
.black_slide.both.animation.delay05::before,
.black_slide_wrap.animation.delay05::before,
.black_slide.animation.delay05 > *,
.black_slide_wrap.animation.delay05 > *{
	animation-delay: .5s !important;
}
.black_slide.animation.delay06::after,
.black_slide_wrap.animation.delay06::after,
.black_slide.both.animation.delay06::before,
.black_slide_wrap.animation.delay06::before,
.black_slide.animation.delay06 > *,
.black_slide_wrap.animation.delay06 > *{
	animation-delay: .6s !important;
}
.black_slide.animation.delay07::after,
.black_slide_wrap.animation.delay07::after,
.black_slide.both.animation.delay07::before,
.black_slide_wrap.animation.delay07::before,
.black_slide.animation.delay07 > *,
.black_slide_wrap.animation.delay07 > *{
	animation-delay: .7s !important;
}
.black_slide.animation.delay08::after,
.black_slide_wrap.animation.delay08::after,
.black_slide.both.animation.delay08::before,
.black_slide_wrap.animation.delay08::before,
.black_slide.animation.delay08 > *,
.black_slide_wrap.animation.delay08 > *{
	animation-delay: .8s !important;
}
.black_slide.animation.delay09::after,
.black_slide_wrap.animation.delay09::after,
.black_slide.both.animation.delay09::before,
.black_slide_wrap.animation.delay09::before,
.black_slide.animation.delay09 > *,
.black_slide_wrap.animation.delay09 > *{
	animation-delay: .9s !important;
}
.black_slide.animation.delay10::after,
.black_slide_wrap.animation.delay10::after,
.black_slide.both.animation.delay10::before,
.black_slide_wrap.animation.delay10::before,
.black_slide.animation.delay10 > *,
.black_slide_wrap.animation.delay10 > *{
	animation-delay: 1s !important;
}
.black_slide.animation.delay11::after,
.black_slide_wrap.animation.delay11::after,
.black_slide.both.animation.delay11::before,
.black_slide_wrap.animation.delay11::before,
.black_slide.animation.delay11 > *,
.black_slide_wrap.animation.delay11 > *{
	animation-delay: 1.1s !important;
}
.black_slide.animation.delay12::after,
.black_slide_wrap.animation.delay12::after,
.black_slide.both.animation.delay12::before,
.black_slide_wrap.animation.delay12::before,
.black_slide.animation.delay12 > *,
.black_slide_wrap.animation.delay12 > *{
	animation-delay: 1.2s !important;
}
.black_slide.animation.delay13::after,
.black_slide_wrap.animation.delay13::after,
.black_slide.both.animation.delay13::before,
.black_slide_wrap.animation.delay13::before,
.black_slide.animation.delay13 > *,
.black_slide_wrap.animation.delay13 > *{
	animation-delay: 1.3s !important;
}
.black_slide.animation.delay14::after,
.black_slide_wrap.animation.delay14::after,
.black_slide.both.animation.delay14::before,
.black_slide_wrap.animation.delay14::before,
.black_slide.animation.delay14 > *,
.black_slide_wrap.animation.delay14 > *{
	animation-delay: 1.4s !important;
}
.black_slide.animation.delay15::after,
.black_slide_wrap.animation.delay15::after,
.black_slide.both.animation.delay15::before,
.black_slide_wrap.animation.delay15::before,
.black_slide.animation.delay15 > *,
.black_slide_wrap.animation.delay15 > *{
	animation-delay: 1.5s !important;
}
.black_slide.animation.delay16::after,
.black_slide_wrap.animation.delay16::after,
.black_slide.both.animation.delay16::before,
.black_slide_wrap.animation.delay16::before,
.black_slide.animation.delay16 > *,
.black_slide_wrap.animation.delay16 > *{
	animation-delay: 1.6s !important;
}
.black_slide.animation.delay17::after,
.black_slide_wrap.animation.delay17::after,
.black_slide.both.animation.delay17::before,
.black_slide_wrap.animation.delay17::before,
.black_slide.animation.delay17 > *,
.black_slide_wrap.animation.delay17 > *{
	animation-delay: 1.7s !important;
}
.black_slide.animation.delay18::after,
.black_slide_wrap.animation.delay18::after,
.black_slide.both.animation.delay18::before,
.black_slide_wrap.animation.delay18::before,
.black_slide.animation.delay18 > *,
.black_slide_wrap.animation.delay18 > *{
	animation-delay: 1.8s !important;
}
.black_slide.animation.delay19::after,
.black_slide_wrap.animation.delay19::after,
.black_slide.both.animation.delay19::before,
.black_slide_wrap.animation.delay19::before,
.black_slide.animation.delay19 > *,
.black_slide_wrap.animation.delay19 > *{
	animation-delay: 1.9s !important;
}
.black_slide.animation.delay20::after,
.black_slide_wrap.animation.delay20::after,
.black_slide.both.animation.delay20::before,
.black_slide_wrap.animation.delay20::before,
.black_slide.animation.delay20 > *,
.black_slide_wrap.animation.delay20 > *{
	animation-delay: 2s !important;
}
.black_slide.animation.delay21::after,
.black_slide_wrap.animation.delay21::after,
.black_slide.both.animation.delay21::before,
.black_slide_wrap.animation.delay21::before,
.black_slide.animation.delay21 > *,
.black_slide_wrap.animation.delay21 > *{
	animation-delay: 2.1s !important;
}
.black_slide.animation.delay22::after,
.black_slide_wrap.animation.delay22::after,
.black_slide.both.animation.delay22::before,
.black_slide_wrap.animation.delay22::before,
.black_slide.animation.delay22 > *,
.black_slide_wrap.animation.delay22 > *{
	animation-delay: 2.2s !important;
}
.black_slide.animation.delay23::after,
.black_slide_wrap.animation.delay23::after,
.black_slide.both.animation.delay23::before,
.black_slide_wrap.animation.delay23::before,
.black_slide.animation.delay23 > *,
.black_slide_wrap.animation.delay23 > *{
	animation-delay: 2.3s !important;
}
.black_slide.animation.delay24::after,
.black_slide_wrap.animation.delay24::after,
.black_slide.both.animation.delay24::before,
.black_slide_wrap.animation.delay24::before,
.black_slide.animation.delay24 > *,
.black_slide_wrap.animation.delay24 > *{
	animation-delay: 2.4s !important;
}
.black_slide.animation.delay25::after,
.black_slide_wrap.animation.delay25::after,
.black_slide.both.animation.delay25::before,
.black_slide_wrap.animation.delay25::before,
.black_slide.animation.delay25 > *,
.black_slide_wrap.animation.delay25 > *{
	animation-delay: 2.5s !important;
}
.black_slide.animation.delay26::after,
.black_slide_wrap.animation.delay26::after,
.black_slide.both.animation.delay26::before,
.black_slide_wrap.animation.delay26::before,
.black_slide.animation.delay26 > *,
.black_slide_wrap.animation.delay26 > *{
	animation-delay: 2.6s !important;
}
.black_slide.animation.delay27::after,
.black_slide_wrap.animation.delay27::after,
.black_slide.both.animation.delay27::before,
.black_slide_wrap.animation.delay27::before,
.black_slide.animation.delay27 > *,
.black_slide_wrap.animation.delay27 > *{
	animation-delay: 2.7s !important;
}
.black_slide.animation.delay28::after,
.black_slide_wrap.animation.delay28::after,
.black_slide.both.animation.delay28::before,
.black_slide_wrap.animation.delay28::before,
.black_slide.animation.delay28 > *,
.black_slide_wrap.animation.delay28 > *{
	animation-delay: 2.8s !important;
}
.black_slide.animation.delay29::after,
.black_slide_wrap.animation.delay29::after,
.black_slide.both.animation.delay29::before,
.black_slide_wrap.animation.delay29::before,
.black_slide.animation.delay29 > *,
.black_slide_wrap.animation.delay29 > *{
	animation-delay: 2.9s !important;
}
.black_slide.animation.delay30::after,
.black_slide_wrap.animation.delay30::after,
.black_slide.both.animation.delay30::before,
.black_slide_wrap.animation.delay30::before,
.black_slide.animation.delay30 > *,
.black_slide_wrap.animation.delay30 > *{
	animation-delay: 3s !important;
}

/* animation-delay PCだけ */
@media screen and (max-width: 768px) {
	.black_slide.animation.delay_pc::after,
	.black_slide_wrap.animation.delay_pc::after,
	.black_slide.both.animation.delay_pc::before,
	.black_slide_wrap.animation.delay_pc::before,
	.black_slide.animation.delay_pc > *,
	.black_slide_wrap.animation.delay30 > *{
		animation-delay: 0s !important;
	}
}


@keyframes black_fade{
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	51% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
@keyframes black_slide{
	0% {
		left: 0;
		width: 0;
	}

	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@keyframes black_slide_reverse{
	0% {
		left: 100%;
		width: 0;
	}

	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 0;
		width: 0;
	}
}

/* clip-path */
.clip{
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	transition: -webkit-clip-path 1s ease-out, clip-path 1s ease-out;
}
.clip.fast{
	transition-duration: .6s;
}
.clip.late{
	transition-duration: 1.5s;
}
.clip.left{
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
}
.clip.down{
	-webkit-clip-path: inset(0 0 100% 0);
	clip-path: inset(0 0 100% 0);
}
.clip.up{
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

.clip.animation{
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}


/* 回転　*/
.rotate{
	animation:6s linear infinite rotate;
}

@keyframes rotate{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}

/* アニメーション時間差 */
.animation.delay01{
	animation-delay: .1s !important;
}
.animation.clip.delay01{
	transition-delay: .1s !important;
}
.animation.delay02{
	animation-delay: .2s !important;
}
.animation.clip.delay02{
	transition-delay: .2s !important;
}
.animation.delay03{
	animation-delay: .3s !important;
}
.animation.clip.delay03{
	transition-delay: .3s !important;
}
.animation.delay04{
	animation-delay: .4s !important;
}
.animation.clip.delay04{
	transition-delay: .4s !important;
}
.animation.delay05{
	animation-delay: .5s !important;
}
.animation.clip.delay05{
	transition-delay: .5s !important;
}
.animation.delay06{
	animation-delay: .6s !important;
}
.animation.clip.delay06{
	transition-delay: .6s !important;
}
.animation.delay07{
	animation-delay: .7s !important;
}
.animation.clip.delay07{
	transition-delay: .7s !important;
}
.animation.delay08{
	animation-delay: .8s !important;
}
.animation.clip.delay08{
	transition-delay: .8s !important;
}
.animation.delay09{
	animation-delay: .9s !important;
}
.animation.clip.delay09{
	transition-delay: .9s !important;
}
.animation.delay10{
	animation-delay: 1s !important;
}
.animation.clip.delay10{
	transition-delay: 1s !important;
}
.animation.delay11{
	animation-delay: 1.1s !important;
}
.animation.clip.delay11{
	transition-delay: 1.1s !important;
}
.animation.delay12{
	animation-delay: 1.2s !important;
}
.animation.clip.delay12{
	transition-delay: 1.2s !important;
}
.animation.delay13{
	animation-delay: 1.3s !important;
}
.animation.clip.delay13{
	transition-delay: 1.3s !important;
}
.animation.delay14{
	animation-delay: 1.4s !important;
}
.animation.clip.delay14{
	transition-delay: 1.4s !important;
}
.animation.delay15{
	animation-delay: 1.5s !important;
}
.animation.clip.delay15{
	transition-delay: 1.5s !important;
}
.animation.delay16{
	animation-delay: 1.6s !important;
}
.animation.clip.delay16{
	transition-delay: 1.6s !important;
}
.animation.delay17{
	animation-delay: 1.7s !important;
}
.animation.clip.delay17{
	transition-delay: 1.7s !important;
}
.animation.delay18{
	animation-delay: 1.8s !important;
}
.animation.clip.delay18{
	transition-delay: 1.8s !important;
}
.animation.delay19{
	animation-delay: 1.9s !important;
}
.animation.clip.delay19{
	transition-delay: 1.9s !important;
}
.animation.delay20{
	animation-delay: 2s !important;
}
.animation.clip.delay20{
	transition-delay: 2s !important;
}
.animation.delay21{
	animation-delay: 2.1s !important;
}
.animation.clip.delay21{
	transition-delay: 2.1s !important;
}
.animation.delay22{
	animation-delay: 2.2s !important;
}
.animation.clip.delay22{
	transition-delay: 2.2s !important;
}
.animation.delay23{
	animation-delay: 2.3s !important;
}
.animation.clip.delay23{
	transition-delay: 2.3s !important;
}
.animation.delay24{
	animation-delay: 2.4s !important;
}
.animation.clip.delay24{
	transition-delay: 2.4s !important;
}
.animation.delay25{
	animation-delay: 2.5s !important;
}
.animation.clip.delay25{
	transition-delay: 2.5s !important;
}
.animation.delay26{
	animation-delay: 2.6s !important;
}
.animation.clip.delay26{
	transition-delay: 2.6s !important;
}
.animation.delay27{
	animation-delay: 2.7s !important;
}
.animation.clip.delay27{
	transition-delay: 2.7s !important;
}
.animation.delay28{
	animation-delay: 2.8s !important;
}
.animation.clip.delay28{
	transition-delay: 2.8s !important;
}
.animation.delay29{
	animation-delay: 2.9s !important;
}
.animation.clip.delay29{
	transition-delay: 2.9s !important;
}



.animation.duration06{
	animation-duration: 0.6s;
}
.animation.duration10{
	animation-duration: 1s;
}

/* animation-delay PCだけ */
@media screen and (max-width: 768px) {
	.animation.delay_pc{
		animation-delay: 0s !important;
	}
	.animation.clip.delay_pc{
		transition-delay: 0s !important;
	}
}


/************************************************************************
	ヘッダー
**************************************************************************/
header{
	width: 100%;
	background-color: #fff;
	position: fixed;
	top: 0;
	z-index: 50;
	transition: background-color .4s;
}
header.in_mv{
	background-color: transparent;
}

header .inner{
	width: 96%;
	padding: 2rem 0;
	transition: padding .4s;
}
header.in_mv .inner{
	padding: 3rem 0 2rem;
}

.hd_logo_wrapper{
	display: block;
	flex-shrink: 0;
	width: 25rem;
	margin-right: auto;
}

.hd_logo_wrapper .hd_logo{
	margin-bottom: 0;
	position: relative;
	transition: margin-bottom .4s;
}
header.in_mv .hd_logo_wrapper .hd_logo{
	margin-bottom: 6%;
}
.hd_logo_wrapper .sub{
	width: 60%;
	margin: 0 auto;
	position: relative;
}

.hd_logo_wrapper .hd_logo::after,
.hd_logo_wrapper .sub::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: opacity .4s;
	opacity: 0;
}
.hd_logo_wrapper .hd_logo::after{
	background: url(../img/cmn/logo_wh.svg) no-repeat center/contain;
}
.hd_logo_wrapper .sub::after{
	background: url(../img/cmn/logo_sub_text_wh.svg) no-repeat center/contain;
}

header.in_mv .hd_logo_wrapper .hd_logo::after,
header.in_mv .hd_logo_wrapper .sub::after{
	opacity: 1;
}
.hd_logo_wrapper img{
	transition: opacity .4s;
}
header.in_mv .hd_logo_wrapper img{
	opacity: 0;
}

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

	header .inner{
		width: 92%;
		padding: 1rem 0;
	}
	header.in_mv .inner{
		padding: 2rem 0 1.5rem;
	}

	.hd_logo_wrapper{
		width: 14rem;
	}
	
	.hd_logo_wrapper .hd_logo{
		margin-bottom: 0;
		position: relative;
		transition: margin-bottom .4s;
	}
	header.in_mv .hd_logo_wrapper .hd_logo{
		margin-bottom: 3%;
	}

	.hd_logo_wrapper .sub{
		width: 84%;
		line-height: 1.2;
	}
	

}

/* -------------
ハンバーガー
-------------------------------------------------------- */
#hmb{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	width: 6rem;
	margin-right: 2%;
	cursor: pointer;
	transition: .4s;
	position: relative;
	z-index: 100;
}
#hmb:hover{
	opacity: .7;
}

.hmb_bar{
	width: 84%;
	height: 2.4rem;
	margin: auto;
	position: relative;
	transition: .4s;
}
.hmb_open .hmb_bar{
	transform: rotate(180deg);
}

.hmb_bar span{
	display: inline-block;
	width: 100%;
	height: 2px;
	background-color: var(--brown);
	position: absolute;
	right: 0;
	transition: .4s;
}
.in_mv .hmb_bar span{
	background-color: #fff;
}

.hmb_bar span:nth-of-type(1){
	top: 0;
}
.hmb_bar span:nth-of-type(2){
	bottom: 0;
}

.hmb_open .hmb_bar span:nth-of-type(1){
	top: 46%;
	transform: rotate(-33deg);
}
.hmb_open .hmb_bar span:nth-of-type(2){
	width: 100%;
	bottom: 46%;
	transform: rotate(33deg);
}


@media screen and (max-width: 768px) {
	#hmb{
		width: 4rem;
	}
	.hmb_bar{
		height: 2rem;
	}
}


/* グローバル
-------------------------------------------------------- */
#global{
	display: -webkit-box;
	display: flex;
	color: #fff;
	width: 100%;
	min-height: 100dvh;
	height: 100%;
	background-color: rgba(75,35,0,.2);
	-webkit-backdrop-filter: blur(.5rem);
	backdrop-filter: blur(.5rem);
	position: fixed;
	right: -5%;
	top: 5%;
	z-index: 40;
	transition: .4s;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	-webkit-filter: blur(1rem);
	filter: blur(1rem);
}
.hmb_open #global{
	right: 0;
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-filter: blur(0);
	filter: blur(0);
}

#global .container{
	width: fit-content;
	height: fit-content;
	min-height: 100%;
	padding: 14rem 4rem 10rem;
	margin-left: auto;
	background-color: var(--brown);
}

.gl_nav{
	margin-bottom: 3rem;
}
.gl_nav li{
	margin-bottom: 1em;
}
.gl_nav li a{
	display: block;
	padding: .25em 0 .25em 2em;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	position: relative;
}
.gl_nav li a:hover{
	opacity: .8;
}

.gl_nav li a::before{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	background: url(../img/cmn/logo_single_wh.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: .4em;
	transition: transform .7s;
}
.gl_nav li a:hover::before{
	transform: rotate(-360deg);
}

.gl_nav li a::after{
	content: "";
	display: block;
	width: .75em;
	height: 1px;
	background-color: #fff;
	position: absolute;
	bottom: -1px;
	left: 0;
	transition: width .7s;
}
.gl_nav li a:hover::after{
	width: 100%;
}

.gl_insta{
	display: block;
	width: 3rem;
	margin: 0 auto 4rem;
	opacity: .8;
	position: relative;
}
.gl_insta:hover{
	opacity: .6;
	transform: scale(1.1);
}
.gl_insta img{
	width: 100%;
}

.gl_logo{
	max-width: 20rem;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	#global .container{
		padding: 10rem 4rem;
	}
}

/************************************************************************
	フッター
**************************************************************************/
footer{
	color: #fff;
	background-color: var(--brown);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

footer .inner{
	width: 94%;
	max-width: 1200px;
}


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


/* 上半分
-------------------------------------------------------- */
.ft_main{
	padding-bottom: 5rem;
	margin-right: calc(50% - 50vw);
}

.ft_main .text_wrapper{
	flex-shrink: 0;
	-webkit-box-flex:1;
	flex-grow:1;
	max-width: 42rem;
	padding-top: .5rem;
}

.ft_main .text_box01{
	padding-bottom: 4.75rem;
	border-bottom: 1px solid #fff;
}
.ft_logo{
	width: 90%;
	max-width: 26rem;
	margin-bottom: 3rem;
}
footer .address_list li{
	margin-bottom: .5em;
}

.ft_main .text_box02{
	padding: 2.75rem 0 2rem;
}
.ft_main .access_dl .dl_wrapper{
	letter-spacing: 0;
	padding-left: 4rem;
	margin-bottom: 2rem;
}
.ft_main .access_dl dt{
	font-size: 1.125em;
	margin-bottom: .25em;
	position: relative;
}
.ft_main .access_dl dt::before{
	content: "";
	display: block;
	width: 3.2rem;
	height: 3.2rem;
	background: url(../img/cmn/icon_train.svg) no-repeat center/contain;
	position: absolute;
	left: -4rem;
	top: 0;
}
.ft_main .access_dl .car dt::before{
	background-image: url(../img/cmn/icon_car.svg);
}
.ft_main .access_dl dd{
	margin-bottom: .5em;
}

.ft_main .map{
	width: calc(96% - 42rem);
	max-width: 83rem;
	height: 49rem;
	position: relative;
}
.ft_main .map iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

@media screen and (max-width: 1024px) {
	.ft_main .text_wrapper{
		max-width: 38rem;
	}

	.ft_main .map{
		width: calc(96% - 38rem);
	}
}

@media screen and (max-width: 768px) {
	.ft_main{
		display: block;
		padding-bottom: 2rem;
		margin-right: 0;
	}
	
	.ft_main .text_wrapper{
		max-width: none;
		padding-top: 0;
	}

	.ft_main .text_box01{
		padding-bottom: 3.25rem;
		border-bottom: none;
	}

	.ft_logo{
		width: 90%;
		max-width: 18rem;
		margin: 0 auto 3rem;
	}

	footer .address_list li{
		text-align: center;
	}

	.ft_main .map{
		width: 100%;
		height: 25rem;
	}

	.ft_main .text_box02{
		padding: 2rem 0 0;
	}

	.ft_main .access_dl .dl_wrapper{
		padding-left: 3.75rem;
		margin-bottom: 1.75rem;
	}
	.ft_main .access_dl dt{
		font-size: 1.33em;
	}
	.ft_main .access_dl dt::before{
		width: 2.6rem;
		height: 2.6rem;
		left: -3.5rem;
	}
}


/* フッターバナー
-------------------------------------------------------- */
.ft_bnr_container{
	padding: 5rem 0;
	border-top: 1px solid #fff;
}

.ft_bnr_container .ft_bnr{
	display: block;
	max-width: 375px;
	width: 32.4%;
}
.ft_bnr_container .ft_bnr:hover{
	opacity: .7;
}


@media screen and (max-width: 768px) {
	.ft_bnr_container{
		padding: 2.5rem 0;
	}
	
	.ft_bnr_container .ft_bnr{
		max-width: 500px;
		width: 90%;
		margin: 0 auto 2rem;
	}
	.ft_bnr_container .ft_bnr:nth-last-of-type(1){
		margin-bottom: 0;
	}
}

/* コピーライト
-------------------------------------------------------- */
.copyright{
	padding-top: 3.5em;
	border-top: 1px solid #fff;
}


@media screen and (max-width: 768px) {
	.copyright{
		padding-top: 1.25em;
	}
}

/************************************************************************
	その他共通
**************************************************************************/
/* セクション背景
-------------------------------------------------------- */
.bg_white{
	background-color: #fff;
}
.bg_gray{
	background-color: #f9f8f5;
}

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


/* 
-------------------------------------------------------- */


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


/************************************************************************
	パララックス背景
**************************************************************************/
#parallax_area{
	width: 100%;
	height: 100vh;
	background: #fff url(../img/parallax02.webp) no-repeat center/100%;
	position: fixed;
	top: 0;
	left: 0;
}
.no-webp #parallax_area{
	background-image: url(../img/parallax02.jpg);
}

@media screen and (max-width: 768px) {
	#parallax_area{
		background-image: url(../img/parallax02_sp.webp);
	}
	.no-webp #parallax_area{
		background-image: url(../img/parallax02_sp.jpg);
	}
	
}


/************************************************************************
	MV (一部にた配置なのでローダーも記述)
**************************************************************************/
#mv{
	min-height: 100vh;
	background-color: #fff;
	position: relative;
}

#loader_bg{/* ローダー */
    background-color: #fff;
	position: fixed;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

#mv_swiper{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#mv_swiper .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#mv .container,
#loader_bg .container{/* ローダー含む */
	width: 94%;
	margin: min(16rem, 10%) auto 0;
	position: relative;
	z-index: 1;
	pointer-events: none;
}

#mv .logo_wrapper,
#loader_bg .logo_wrapper{/* ローダー含む */
	max-width: 48rem;
	margin: 0 auto 5.5rem;
}
#mv .logo_wrapper .logo,
#loader_bg .logo_wrapper .logo{/* ローダー含む */
	width: 100%;
	margin-bottom: 9%;
}
#mv .logo_wrapper .sub,
#loader_bg .logo_wrapper .sub{/* ローダー含む */
	width: 62%;
	margin: 0 auto;
}

#mv hgroup .text,
#loader_bg .hgroup .text{/* ローダー含む */
	display: block;
	line-height: 1.2;
	width: fit-content;
	margin: 0 auto .5em;
}

#mv .scroll_bar{
	width: 1rem;
	padding-top: 13rem;
	border-radius: 5rem 5rem 0 0;
	position: absolute;
	left: calc(50% - .5rem);
	bottom: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}
#mv .scroll_bar::before{
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #ffff;
	opacity: .8;
	position: absolute;
	top: 0;
	left: calc(50% - 1px);
}

#mv .scroll_bar::after{
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
	border-radius: 50%;
	background-color: #fff;
	opacity: .8;
	position: absolute;
	left: 0;
	top: -10%;
	z-index: 1;
	animation: scroll_ball 2s ease-in-out infinite;
}

@keyframes scroll_ball{
	from {
		top: -10%;
	}
	to {
		top: 100%;
	}
}


@media screen and (max-width: 768px) {
	#mv .logo_wrapper,
	#loader_bg .logo_wrapper{
		max-width: 30rem;
		margin: 0 auto 4rem;
	}
	#mv .logo_wrapper .logo,
	#loader_bg .logo_wrapper .logo{
		width: 100%;
		margin-bottom: 4%;
	}
	#mv .logo_wrapper .sub,
	#loader_bg .logo_wrapper .sub{
		width: 80%;
		margin: 0 auto;
	}

	#mv .scroll_bar{
		padding-top: 8rem;
	}
}

/* 250225追記
-------------------------------------------------------- */
#mv .logo_wrapper,
#loader_bg .logo_wrapper{
	position: relative;
}
#mv .supple_text,
#loader_bg .supple_text{
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	width: 100vw;
	position: absolute;
	top: -2.25em;
	left: calc(50% - 50vw);
}
#mv .supple_text .big,
#loader_bg .big{
	font-size: 1.25em;
}

@media screen and (max-width: 768px) {
	#mv .supple_text,
	#loader_bg .supple_text{
		top: -2.75em;
	}
}


/************************************************************************
	Concept
**************************************************************************/


@media screen and (max-width: 768px) {
	#concept p.fw400{
		letter-spacing: .05em;
	}
}

/* 
-------------------------------------------------------- */


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

/************************************************************************
	Cafe & Restaurant
**************************************************************************/
.cafe_list li{
	width: calc((100% - 4px) / 3);
}

.cafe_list li .img_ab::before{
	padding-top: 103.5%;/* 550/531 */
}
.cafe_list li .img_ab .deco_text{
	font-family: poppins, Helvetica, "Helvetica Neue", sans-serif;
	font-size: min(40px, 2.5vw);
	font-weight: 200;
	color: #fff;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .1em;
	text-transform: capitalize;
	width: 100%;
	background-color: rgba(75, 35, 0, .4);
	position: absolute;
	top: 47.5%;
	left: 0;
}

.cafe_list li .text_wrapper{
	padding: 2.5rem 7%;
}

.cafe_list li .title_box{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom: 1.25rem;
}
.cafe_list li .title_box h3{
	font-family: poppins, Helvetica, "Helvetica Neue", sans-serif;
	font-size: 3rem;
	font-weight: 200;
	color: var(--brown);
	line-height: 1.5;
	letter-spacing: 0;
	text-transform: capitalize;
	padding: .25em 0 .25em 2.75em;
	position: relative;
}
.cafe_list li .title_box h3 .deco_icon{
	display: block;
	width: 2em;
	height: 2em;
	position: absolute;
	left: 0;
	top: calc(50% - 1em);
}

.cafe_list li .title_box .time{
	font-family: poppins, Helvetica, "Helvetica Neue", sans-serif;
	font-size: 1.8rem;
	font-weight: 200;
	letter-spacing: .1em;
	color: #5f52a0;
	padding-left: 1.75em;
	margin-top: .5em;
	margin-right: 3%;
	position: relative;
}
.cafe_list li .title_box .time::before{
	content: "";
	display: block;
	width: 1.18em;/* 21px */
	height: 1.18em;/* 21px */
	background: url(../img/cmn/icon_clock.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: .15em;
}

.cafe_list li .text{
	line-height: 2.25;
}

@media screen and (max-width: 1200px) {
	.cafe_list li .text_wrapper{
		padding: 2.5rem 5%;
	}
	.cafe_list li .title_box h3{
		font-size: 2.6rem;
		padding-left: 2.5em;
	}
	.cafe_list li .title_box .time{
		font-size: 1.6rem;
		padding-left: 1.66em;
		margin-right: 0;
	}
}


@media screen and (max-width: 768px) {
	#cafe .title_primary{
		letter-spacing: .05em;
	}

	.cafe_list{
		display: block;
	}

	.cafe_list li{
		width: 100%;
	}

	.cafe_list li .img_ab::before{
		padding-top: 100%;/* 750/750 */
	}
	.cafe_list li .img_ab .deco_text{
		font-size: 8.8vw;/* 66px/750 */
		top: 43%;
	}

	.cafe_list li .text_wrapper{
		padding: 2rem 5% 4rem;
	}

	.cafe_list li .title_box{
		margin-bottom: 1rem;
	}
	.cafe_list li .title_box h3{
		font-size: 2.4rem;
		padding: 0 0 0 1.8em;
	}
	.cafe_list li .title_box h3 .deco_icon{
		width: 1.5em;
		height: 1.5em;
		top: calc(50% - .75em);
	}
	.cafe_list li .title_box .time{
		padding-left: 1.5em;
	}
	.cafe_list li .title_box .time::before{
		width: 1em;
		height: 1em;
		top: .2em;
	}
}

/* 
-------------------------------------------------------- */


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


/************************************************************************
	Bakery
**************************************************************************/
#bakery .guidance{
	max-width: 40em;
	margin: 0 auto 4em;
}

#bakery .img_list li{
	width: 17.4%;
	border-radius: 50%;
	overflow: hidden;
}
#bakery .img_list li img{
	width: 100%;
}

.animation.fade.long{/* 下から上へ */
	animation: fade_long 1.6s ease forwards;
}

@keyframes fade_long{
	from {
		opacity: 0;
		transform: translateY(4em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media screen and (max-width: 768px) {
	#bakery .guidance{
		line-height: 2.25;
		max-width: 30em;
		margin: 0 auto 3em;
	}

	#bakery .img_list{
		width: 94%;
		margin: 0 auto;
	}
	#bakery .img_list li{
		width: 46%;
		margin-bottom: 10%;
	}
	#bakery .img_list li:nth-of-type(n+5){
		display: none;
	}
	#bakery .img_list li:nth-of-type(n+3){
		margin-bottom: 0;
	}
}

/* 後半
-------------------------------------------------------- */
#bakery .bakery02{
	position: relative;
}

#bakery .bakery02 .img{
	position: absolute;
}
#bakery .bakery02 .img01{
	width: 49%;
	left: 0;
	top: 0;
}
#bakery .bakery02 .img02{
	width: 15.5%;
	left: 50.875%;
	bottom: 6rem;
}
#bakery .bakery02 .img03{
	width: 24.5%;
	right: 0;
	top: calc(18% + 11rem);/* 11rem=.text_wrap01の高さ */
}

#bakery .bakery02 .text_wrap01{
	width: 51%;
	padding: 0 15% 0 5%;/* 見た目 */
	margin-left: auto;
	margin-bottom: 26%;/* 約400px/1600px */
}
#bakery .bakery02 .text_wrap02{
	width: 50%;
	max-width: 72rem;
	padding-left: 12%;/* 見た目 */
	margin-bottom: 6%;/* 見た目 */
}
#bakery .bakery02 .text02{
	max-width: 33em;
	margin: 0 auto;
}

#bakery .sp_img_wrapper{
	display: none;
}

@media screen and (max-width: 1200px) {
	#bakery .bakery02 .img02{
		left: 60%;
	}
	#bakery .bakery02 .text_wrap02{
		width: 58%;
		max-width: 72rem;
		padding-left: 8%;/* 見た目 */
	}
}


@media screen and (max-width: 768px) {
	#bakery .bakery02{
		position: relative;
	}
	
	#bakery .bakery02 .img{
		position: static;
	}
	#bakery .bakery02 .img01{
		width: 100%;
	}

	#bakery .bakery02 .text_wrap01{
		width: 100%;
		padding: 0;
		margin-left: 0;
		margin-bottom: 5rem;
	}
	#bakery .bakery02 .text01{
		font-family: '游明朝 Medium', 'Yu Mincho Medium', '游明朝', 'YuMincho', hiragino-mincho-pron, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
		font-weight: 500;
		line-height: 2.33;
	}

	#bakery .bakery02 .text_wrap02{
		width: 94%;
		max-width: none;
		padding: 2.5rem 0 0;
		margin: 0 auto 2rem;
	}

	#bakery .sp_img_wrapper{
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		-webkit-box-align: start;
		align-items: flex-start;
		padding-top: 2rem;
	}
	#bakery .bakery02 .img02{
		width: 33%;
	}
	#bakery .bakery02 .img03{
		width: 52%;
		margin-top: 10%;
	}
}

/* 
-------------------------------------------------------- */


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

/************************************************************************
	スライドエリア
**************************************************************************/
#swiper_area{
	margin-bottom: min(480px, 30%);
	background-color: var(--brown);
}

#swiper_area .inner{
	max-width: 1290px;
	width: 94%;
}

#swiper_area .swiper_primary{
	width: 48%;
	padding-bottom: 4.5rem;
	max-width: 600px;
	margin: 0;
}
.swiper_primary .swiper-slide img{
	width: 100%;
}

@media screen and (max-width: 768px) {
	#swiper_area{
		margin-bottom: 60%;
		background-color: #fff;
	}
	#swiper_area .inner{
		width: 100%;
	}

	#swiper_area .swiper_primary{
		width: 100%;
		max-width: none;
		padding: 4rem 5% 3.5rem;
		margin: 0 auto 4rem;
	}
	#swiper_area .swiper_primary::before{
		content: "";
		display: block;
		width: 120vw;
		height: calc(86% - 3.5rem);
		background-color: var(--brown);
		position: absolute;
		left: -10%;
		top: 0;
	}
}

/* スワイパーボタン関連
-------------------------------------------------------- */
.swiper_primary .swiper_btn_wrapper{
	width: 100%;
	max-width: 22rem;
	position: absolute;
	bottom: 0;
	right: 0;
}

/*  矢印 */
.swiper_primary .swiper-button-prev,
.swiper_primary .swiper-button-next{
	width: 2.4rem;
	height: 2.4rem;
	margin: 0;
	background: url(../img/cmn/swiper_arrow01.svg) no-repeat center/contain;
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
}
.swiper_primary .swiper-button-next{
	transform: scale(-1, 1);
}
.swiper_primary .swiper-button-prev:hover,
.swiper_primary .swiper-button-next:hover{
	opacity: .7;
}
.swiper_primary .swiper-button-prev::after,
.swiper_primary .swiper-button-next::after{
	display: none;
}

/* 数字 */
.swiper_primary .swiper-pagination{
	width: calc(100% - 8rem);/* 100% - 矢印+余白 */
	color: var(--brown);/* スラッシュを背景色と同じ色に */
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
}
.swiper_primary .swiper-pagination-current,
.swiper_primary .swiper-pagination-total{
	font-family: poppins, Helvetica, "Helvetica Neue", sans-serif;
	font-weight: 200;
	display: inline-block;
	color: #fff;
	position: absolute;
}
.swiper_primary .swiper-pagination-current{
	left: 0;
}
.swiper_primary .swiper-pagination-total{
	right: 0;
}

/* プログレスバー */
.swiper_primary .swiper-progressbar{
	width: calc(100% - 12rem);/* 100%-（矢印+数字） */
	height: 1px;
	margin: 0 auto;
	background-color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: 1;
}
.swiper_primary .swiper-progressbar::after{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 1px;
	background-color: #332f2b;
	transition: none;
}
.swiper_primary .swiper-progressbar.active::after{
	width: 100%;
	transition: width 2.9s linear;/* スライドautoplayの秒数-0.1s */
}


@media screen and (max-width: 768px) {
	.swiper_primary .swiper_btn_wrapper{
		max-width: 18rem;
		margin-right: 5%;
	}


	/*  矢印 */
	.swiper_primary .swiper-button-prev,
	.swiper_primary .swiper-button-next{
		-webkit-mask: url(../img/cmn/swiper_arrow01.svg) no-repeat center/contain;
		mask: url(../img/cmn/swiper_arrow01.svg) no-repeat center/contain;
		background: none;
		background-color: #000;
	}

	/* 数字 */
	.swiper_primary .swiper-pagination{
		color: #fff;/* スラッシュを背景色と同じ色に */
	}
	.swiper_primary .swiper-pagination-current,
	.swiper_primary .swiper-pagination-total{
		color: #000;
	}
}

/* 
-------------------------------------------------------- */


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

/************************************************************************
	インスタ
**************************************************************************/
#insta .inner{
	max-width: 960px;
	width: 94%;
}

#insta h3{
	width: fit-content;
	padding-left: 1.66em;
	margin: 0 auto .5em;
	position: relative;
}
#insta h3::before{
	content: "";
	display: block;
	width: 1.12em;
	height: 1.12em;
	background: url(../img/cmn/icon_insta.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0.15em;
}

#insta_list ul{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

#insta_list ul li{
	width: 33%;
	margin-right: .5%;
	margin-bottom: .66%;
	position: relative;
}
#insta_list ul li:nth-of-type(3n){
	margin-right: 0;
}
#insta_list ul li a{
	display: block;
	border: 1px solid #ccc;
	position: relative;
}
#insta_list ul li a:hover{
	opacity: .7;
}
#insta_list ul li a::before{
	content: "";
	display: block;
	padding-top: 100%;
}

#insta_list ul li .img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#insta_list ul li .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#insta_list ul li a .caption_wrapper{
	width: 100%;
	height: fit-content;
	max-height: 100%;
	padding: 1em;
	background-color: rgba(0, 0, 0, .4);
	opacity: 0;
	position: absolute;
	bottom: -1em;
	left: 0;
	transition: opacity .4s, bottom .4s;
	overflow: hidden;
}
#insta_list ul li a:hover .caption_wrapper{
	opacity: 1;
	bottom: 0;
}
#insta_list ul li a .caption_wrapper p{
	color: #fff;
}

@media screen and (max-width: 768px) {
	#insta_list ul li{
		width: 49%;
		margin-bottom: 1%;
	}
	#insta_list ul li:nth-of-type(3n){
		margin-right: 2%;
	}
	#insta_list ul li:nth-of-type(2n){
		margin-right: 0;
	}
}


.reservation .reservation-btn{
	display: block;
	font-size: 1.8rem;
	color: #fff;
	text-align: center;
	width: 90%;
	max-width: 36rem;
	padding: .7em 1.75em;
	margin: 1em auto;
	border: 1px solid var(--brown);
	border-radius: 5em;
	background-color: var(--brown);
	position: relative;
	transition: color .4s;
	overflow: hidden;
}
.reservation .reservation-btn:hover{
	color: var(--brown);
}

.reservation .reservation-btn::before{
	content: "";
	display: block;
	width: 0;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	transition: width .4s;
}
.reservation .reservation-btn:hover::before{
	width: 100%;
}

.reservation .reservation-btn::after{
	content: "";
	display: block;
	width: .4em;
	height: .62em;
	-webkit-mask: url(../img/cmn/arrow01.svg) no-repeat center/contain;
	mask: url(../img/cmn/arrow01.svg) no-repeat center/contain;
	background-color: #fff;
	position: absolute;
	right: 1.66em;
	top: calc(50% - .31em);
	transition: background-color .4s, right .4s;
}
.reservation .reservation-btn:hover::after{
	background-color: var(--brown);
	right: 1.5em;
}

.reservation .reservation-btn .btn_text{
	display: inline-block;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.reservation .reservation-btn{
		font-size: 1.4rem;
		max-width: 25rem;
		padding: .5em 1.75em;
	}
}
/* 
-------------------------------------------------------- */


@media screen and (max-width: 768px) {
	.reservation .reservation-btn {
		font-size: 1.1em;
		width: 70%;
	}
}

/* 
-------------------------------------------------------- */


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

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


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

/* 
-------------------------------------------------------- */


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

/* 
-------------------------------------------------------- */


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

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


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

/* 
-------------------------------------------------------- */


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

/* 
-------------------------------------------------------- */


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