@charset "utf-8";

/* 変数 */
:root{
	/* 色 */
	--font_color: #fff;
	--red: #f90000;
	--blue: #3258b8;
	--orange01: #ffbc2e;/* rgba(255, 188, 46, 1) */

	/* フォント */
	--font_primary: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'YuGothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--mincho: '游明朝 Medium', 'Yu Mincho Medium', '游明朝', 'YuMincho', hiragino-mincho-pron, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	--en: Helvetica, "Helvetica Neue", Arial, Verdana, "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "YuGothic", "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	/* テキストシャドウ */
	--t_shadow_wh: 0 0 .25em rgba(255, 255, 255, .7);
	--t_shadow_bk: 0 0 .25em rgba(0, 0, 0, .7);

	/* filter　ドロップシャドウ */
	--drop_shadow_wh: drop-shadow(0 0 .2rem rgba(255, 255, 255, 0.7));

	/* transition */
	--filter_transition: -webkit-filter .4s, filter .4s;

	/* ボーダー */
	--neon_border: 1px solid #e6d8ba;
	--neon_border_shadow: 0 0 .3rem .3rem rgba(255, 188, 46, .7), inset 0 0 .3rem .3rem rgba(255, 188, 46, .7);
}

@media screen and (max-width: 768px) {
	:root{
		/* ボーダー */
		--neon_border_shadow: 0 0 .2rem .2rem rgba(255, 188, 46, .5), inset 0 0 .2rem .2rem rgba(255, 188, 46, .5);
	}
}

/* -------------
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;
	transition: .4s;
}
table a,
article a{
	word-break: break-all;
}
button{
	color: var(--font_color);
	transition: .4s;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-o-appearance: none;/*Opera対応*/
	-webkit-appearance: none;/*Google Chrome/Safari対応*/
	-moz-appearance: none;/*Firefox対応*/
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
input::-webkit-calendar-picker-indicator {/* datalistタグの矢印 （たぶん消えない） */
	display: none; /* iOS対策 */
    appearance: none; /* SafariやChrome用 */
    -webkit-appearance: none; /* Safari用 */
    opacity: 0; /* 念のため */
    pointer-events: none; /* 矢印がクリックできないようにする */
}
input::-webkit-list-button{/* datalistタグの矢印iOS（これで消える） */
	content: 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
-------------------------------------------------------- */

body {
	font-family: var(--font_primary);
	color: var(--font_color);
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.75;
	word-wrap: normal;
}

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

/*
 字体
-------------------------------------------------------- */
.mincho{
	font-family: var(--mincho);
}

.en{
	font-family: var(--en);
}


/* 
 文字サイズ
-------------------------------------------------------- */
.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;
	}

	.fz10sp{
		font-size: 1rem;
	}
	.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;
	}
}


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


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

.b { font-weight: 700; }
.fw500 { font-weight: 500; }
.fw600 { font-weight: 600; }
.fw900 { font-weight: 900; }

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

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

.ls0{ letter-spacing: 0; }
.ls1{ letter-spacing: .1em; }
.ls05{ letter-spacing: .05em; }
.ls025{ letter-spacing: .025em; }

.lh14{ line-height: 1.4; }
.lh15{ line-height: 1.5; }
.lh175{ line-height: 1.75; }
.lh1875{ line-height: 1.875; }
.lh2{ line-height: 2; }
.lh225{ line-height: 2.25; }

/* 
文字関係その他
-------------------------------------------------------- */

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

.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: auto;
}
.inner.primary{
	max-width: 1230px;
	width: 92%;
}

.inner.secondary{
	max-width: 1480px;
	width: 94%;
}

@media screen and (max-width: 768px) {
	.inner.primary,
	.inner.secondary{
		width: 92%;
	}
}

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

	.pt130sp{ padding-top: 13rem;}
	.pb130sp{ padding-bottom: 13rem;}

	.pt140sp{ padding-top: 14rem;}
	.pb140sp{ padding-bottom: 14rem;}
}

/* (主に文字上下余白) */
.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;}
.mi_a{ margin-inline: 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.8 */
	.pt025em{ padding-top: .2em;}
	.pt033em{ padding-top: .264em;}
	.pt05em{ padding-top: .4em;}
	.pt066em{ padding-top: .528em;}
	.pt075em{ padding-top: .6em;}
	.pt1em{ padding-top: .8em;}
	.pt125em{ padding-top: 1em;}
	.pt133em{ padding-top: 1.064em;}
	.pt15em{ padding-top: 1.2em;}
	.pt166em{ padding-top: 1.328em;}
	.pt175em{ padding-top: 1.4em;}
	.pt2em{ padding-top: 1.6em;}
	.pt225em{ padding-top: 1.8em;}
	.pt233em{ padding-top: 1.864em;}
	.pt25em{ padding-top: 2em;}
	.pt266em{ padding-top: 2.128em;}
	.pt275em{ padding-top: 2.2em;}
	.pt3em{ padding-top: 2.4em;}
	.pt35em{ padding-top: 2.8em;}
	.pt4em{ padding-top: 3.2em;}
	.pt45em{ padding-top: 3.6em;}
	.pt5em{ padding-top: 4em;}

	.pt025em_sp{ padding-top: .25em;}
	.pt033em_sp{ padding-top: .33em;}
	.pt05em_sp{ padding-top: .5em;}
	.pt066em_sp{ padding-top: .66em;}
	.pt075em_sp{ padding-top: .75em;}
	.pt1em_sp{ padding-top: 1em;}
	.pt125em_sp{ padding-top: 1.25em;}
	.pt133em_sp{ padding-top: 1.33em;}
	.pt15em_sp{ padding-top: 1.5em;}
	.pt166em_sp{ padding-top: 1.66em;}
	.pt175em_sp{ padding-top: 1.75em;}
	.pt2em_sp{ padding-top: 2em;}
	.pt225em_sp{ padding-top: 2.25em;}
	.pt233em_sp{ padding-top: 2.33em;}
	.pt25em_sp{ padding-top: 2.5em;}
	.pt266em_sp{ padding-top: 2.66em;}
	.pt275em_sp{ padding-top: 2.75em;}
	.pt3em_sp{ padding-top: 3em;}
	.pt35em_sp{ padding-top: 3.5em;}
	.pt4em_sp{ padding-top: 4em;}
	.pt45em_sp{ padding-top: 4.5em;}
	.pt5em_sp{ padding-top: 5em;}

	.mb025em{ margin-bottom: .2em;}
	.mb033em{ margin-bottom: .264em;}
	.mb05em{ margin-bottom: .4em;}
	.mb066em{ margin-bottom: .528em;}
	.mb075em{ margin-bottom: .6em;}
	.mb1em{ margin-bottom: .8em;}
	.mb125em{ margin-bottom: 1em;}
	.mb133em{ margin-bottom: 1.064em;}
	.mb15em{ margin-bottom: 1.2em;}
	.mb166em{ margin-bottom: 1.328em;}
	.mb175em{ margin-bottom: 1.4em;}
	.mb2em{ margin-bottom: 1.6em;}
	.mb225em{ margin-bottom: 1.8em;}
	.mb233em{ margin-bottom: 1.864em;}
	.mb25em{ margin-bottom: 2em;}
	.mb266em{ margin-bottom: 2.128em;}
	.mb275em{ margin-bottom: 2.2em;}
	.mb3em{ margin-bottom: 2.4em;}
	.mb35em{ margin-bottom: 2.8em;}
	.mb4em{ margin-bottom: 3.2em;}
	.mb45em{ margin-bottom: 3.6em;}
	.mb5em{ margin-bottom: 4em;}

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

/* (主に文字左右余白) */
.pl025em{ padding-left: .25em;}
.pl033em{ padding-left: .33em;}
.pl05em{ padding-left: .5em;}
.pl066em{ padding-left: .66em;}
.pl075em{ padding-left: .75em;}
.pl1em{ padding-left: 1em;}
.pl125em{ padding-left: 1.25em;}
.pl133em{ padding-left: 1.33em;}
.pl15em{ padding-left: 1.5em;}
.pl166em{ padding-left: 1.66em;}
.pl175em{ padding-left: 1.75em;}
.pl2em{ padding-left: 2em;}
.pl225em{ padding-left: 2.25em;}
.pl233em{ padding-left: 2.33em;}
.pl25em{ padding-left: 2.5em;}
.pl266em{ padding-left: 2.66em;}
.pl275em{ padding-left: 2.75em;}
.pl3em{ padding-left: 3em;}
.pl35em{ padding-left: 3.5em;}
.pl4em{ padding-left: 4em;}
.pl45em{ padding-left: 4.5em;}
.pl5em{ padding-left: 5em;}

.pr025em{ padding-right: .25em;}
.pr033em{ padding-right: .33em;}
.pr05em{ padding-right: .5em;}
.pr066em{ padding-right: .66em;}
.pr075em{ padding-right: .75em;}
.pr1em{ padding-right: 1em;}
.pr125em{ padding-right: 1.25em;}
.pr133em{ padding-right: 1.33em;}
.pr15em{ padding-right: 1.5em;}
.pr166em{ padding-right: 1.66em;}
.pr175em{ padding-right: 1.75em;}
.pr2em{ padding-right: 2em;}
.pr225em{ padding-right: 2.25em;}
.pr233em{ padding-right: 2.33em;}
.pr25em{ padding-right: 2.5em;}
.pr266em{ padding-right: 2.66em;}
.pr275em{ padding-right: 2.75em;}
.pr3em{ padding-right: 3em;}
.pr35em{ padding-right: 3.5em;}
.pr4em{ padding-right: 4em;}
.pr45em{ padding-right: 4.5em;}
.pr5em{ padding-right: 5em;}

@media screen and (max-width: 768px) {/* pcの数字×0.8 */
	.pl025em{ padding-left: .2em;}
	.pl033em{ padding-left: .264em;}
	.pl05em{ padding-left: .4em;}
	.pl066em{ padding-left: .528em;}
	.pl075em{ padding-left: .6em;}
	.pl1em{ padding-left: .8em;}
	.pl125em{ padding-left: 1em;}
	.pl133em{ padding-left: 1.064em;}
	.pl15em{ padding-left: 1.2em;}
	.pl166em{ padding-left: 1.328em;}
	.pl175em{ padding-left: 1.4em;}
	.pl2em{ padding-left: 1.6em;}
	.pl225em{ padding-left: 1.8em;}
	.pl233em{ padding-left: 1.864em;}
	.pl25em{ padding-left: 2em;}
	.pl266em{ padding-left: 2.128em;}
	.pl275em{ padding-left: 2.2em;}
	.pl3em{ padding-left: 2.4em;}
	.pl35em{ padding-left: 2.8em;}
	.pl4em{ padding-left: 3.2em;}
	.pl45em{ padding-left: 3.6em;}
	.pl5em{ padding-left: 4em;}

	.pl025em_sp{ padding-left: .25em;}
	.pl033em_sp{ padding-left: .33em;}
	.pl05em_sp{ padding-left: .5em;}
	.pl066em_sp{ padding-left: .66em;}
	.pl075em_sp{ padding-left: .75em;}
	.pl1em_sp{ padding-left: 1em;}
	.pl125em_sp{ padding-left: 1.25em;}
	.pl133em_sp{ padding-left: 1.33em;}
	.pl15em_sp{ padding-left: 1.5em;}
	.pl166em_sp{ padding-left: 1.66em;}
	.pl175em_sp{ padding-left: 1.75em;}
	.pl2em_sp{ padding-left: 2em;}
	.pl225em_sp{ padding-left: 2.25em;}
	.pl233em_sp{ padding-left: 2.33em;}
	.pl25em_sp{ padding-left: 2.5em;}
	.pl266em_sp{ padding-left: 2.66em;}
	.pl275em_sp{ padding-left: 2.75em;}
	.pl3em_sp{ padding-left: 3em;}
	.pl35em_sp{ padding-left: 3.5em;}
	.pl4em_sp{ padding-left: 4em;}
	.pl45em_sp{ padding-left: 4.5em;}
	.pl5em_sp{ padding-left: 5em;}


	.pr025em{ padding-right: .2em;}
	.pr033em{ padding-right: .264em;}
	.pr05em{ padding-right: .4em;}
	.pr066em{ padding-right: .528em;}
	.pr075em{ padding-right: .6em;}
	.pr1em{ padding-right: .8em;}
	.pr125em{ padding-right: 1em;}
	.pr133em{ padding-right: 1.064em;}
	.pr15em{ padding-right: 1.2em;}
	.pr166em{ padding-right: 1.328em;}
	.pr175em{ padding-right: 1.4em;}
	.pr2em{ padding-right: 1.6em;}
	.pr225em{ padding-right: 1.8em;}
	.pr233em{ padding-right: 1.864em;}
	.pr25em{ padding-right: 2em;}
	.pr266em{ padding-right: 2.128em;}
	.pr275em{ padding-right: 2.2em;}
	.pr3em{ padding-right: 2.4em;}
	.pr35em{ padding-right: 2.8em;}
	.pr4em{ padding-right: 3.2em;}
	.pr45em{ padding-right: 3.6em;}
	.pr5em{ padding-right: 4em;}

	.pr025em_sp{ padding-right: .25em;}
	.pr033em_sp{ padding-right: .33em;}
	.pr05em_sp{ padding-right: .5em;}
	.pr066em_sp{ padding-right: .66em;}
	.pr075em_sp{ padding-right: .75em;}
	.pr1em_sp{ padding-right: 1em;}
	.pr125em_sp{ padding-right: 1.25em;}
	.pr133em_sp{ padding-right: 1.33em;}
	.pr15em_sp{ padding-right: 1.5em;}
	.pr166em_sp{ padding-right: 1.66em;}
	.pr175em_sp{ padding-right: 1.75em;}
	.pr2em_sp{ padding-right: 2em;}
	.pr225em_sp{ padding-right: 2.25em;}
	.pr233em_sp{ padding-right: 2.33em;}
	.pr25em_sp{ padding-right: 2.5em;}
	.pr266em_sp{ padding-right: 2.66em;}
	.pr275em_sp{ padding-right: 2.75em;}
	.pr3em_sp{ padding-right: 3em;}
	.pr35em_sp{ padding-right: 3.5em;}
	.pr4em_sp{ padding-right: 4em;}
	.pr45em_sp{ padding-right: 4.5em;}
	.pr5em_sp{ padding-right: 5em;}
}

/************************************************************************
	リンク
**************************************************************************/
.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{/* .imgで囲んでいないimgは、元画像の大きさ準拠にしたいので */
	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{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-family: var(--mincho);
	font-size: 3.6rem;
	letter-spacing: .05em;
	line-height: 1.5;
	min-height: 17rem;
	position: relative;
	z-index: 1;
	transition: text-shadow .4s .8s;
}
.title_primary::before{
	content: "";
	display: block;
	max-width: 80rem;
	height: 17rem;
	margin: auto;
	background: url(../img/cmn/logo_wh.png) no-repeat center/contain;
	opacity: .1;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.title_primary.animation{
	text-shadow: var(--t_shadow_wh);
}

.title_primary .title_text{
	display: block;
	text-align: center;
	margin: auto;
}
.title_primary .title_text .mark01,
.title_primary .title_text .mark02{
	display: inline-block;
	font-size: 1.66em;
	line-height: 1;
	color: var(--orange01);
}
.title_primary .title_text .mark02{
	transform: translateY(.5em);
}

@media screen and (max-width: 768px) {
	.title_primary{
		font-size: 2.4rem;
		text-align: center;
		letter-spacing: 0;
		line-height: 1.2;
		min-height: 8rem;
	}
	.title_primary::before{
		width: 100%;
		height: auto;
		padding-top: 20.8%;
		margin: auto;
		background: url(../img/cmn/logo_wh.png) no-repeat center/contain;
		opacity: .1;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
}

/* 光らせるタイトル */
.title_secondary .sub{
	margin-bottom: .5rem;
}
.title_secondary .sub img{
	width: 100%;
	animation: 2s ease-in-out infinite img_light;
	
}
@keyframes img_light{
	0%{
		-webkit-filter: drop-shadow(0 0 0 var(--orange01));
		filter: drop-shadow(0 0 0 var(--orange01));
	}
	50%{
		-webkit-filter: drop-shadow(0 0 .5rem var(--orange01));
		filter: drop-shadow(0 0 .5rem var(--orange01));
	}
	100%{ 
		-webkit-filter: drop-shadow(0 0 0 var(--orange01));
		filter: drop-shadow(0 0 0 var(--orange01));
	}
}
.title_secondary .main{
	font-family: var(--mincho);
	font-size: 1.9rem;
	animation: 2s ease-in-out infinite text_light;
}
@keyframes text_light{
	0%{
		text-shadow: 0 0 .5em var(--orange01), 0 0 .5em var(--orange01);
	}
	50%{
		text-shadow: 0 0 .75em var(--orange01), 0 0 .75em var(--orange01), 0 0 1em var(--orange01);
	}
	100%{ 
		text-shadow: 0 0 .5em var(--orange01), 0 0 .5em var(--orange01);
	}
}


@media screen and (max-width: 768px) {
	.title_secondary{
		text-align: center;
	}
	.title_secondary .sub{
		margin: 0 auto 1rem;
	}
	.title_secondary .main{
		font-size: 1.4rem;
	}
}



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


/************************************************************************
	ボタン
**************************************************************************/


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


@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埋め込み、GoogleMap埋め込みなど
-------------------------------------------------------- */
.map_box{
	position: relative;
}
.map_box::before{
	content: "";
	display: block;
	padding-top: 75%;
}
.map_box iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

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


/************************************************************************
	アニメーション
**************************************************************************/
/* フェードイン　*/
.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;
}

/* フェード移動量少なく */
.animation.few.fade{/* 下から上へ */
	animation: fadeup_few .8s ease forwards;
}

.animation.few.fade_down{/* 上から下へ */
	animation: fadedown_few .8s ease forwards;
}
.animation.few.fade_right{/* 左から右へ */
	animation: faderight_few .8s ease forwards;
}
.animation.few.fade_left{/* 右から左へ */
	animation: fadeleft_few .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);
	}
}
	
@keyframes fadeup_few{
	from {
		opacity: 0;
		transform: translateY(.75em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadedown_few{
	from {
		opacity: 0;
		transform: translateY(-.75em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes faderight_few{
	from {
		opacity: 0;
		transform: translateX(-.75em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeleft_few{
	from {
		opacity: 0;
		transform: translateX(.75em);
	}
	
	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: #000;
}

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


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


/************************************************************************
	クッキー
**************************************************************************/
#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;
	}
}


/************************************************************************
	ローダー
**************************************************************************/
#loader{
    display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
    background-color: #fff;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

#loader .inner{
	max-width: 500px;
	width: 80%;
	padding: 5rem 0;
	margin: auto;
	position: relative;
	animation: loader_logo 1s ease .7s forwards;
	opacity: 0;
	transform: translateY(25%);
}

#loader .logo img{
	width: 100%;
}

@media (max-width: 768px) {
	
	#loader .inner{
		width: 86%;
		padding: 3rem 0;
		border-radius: 1.5rem;
	}

}

@keyframes loader_logo {
	0% {
		opacity: 0;
		transform: translateY(25%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


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

header .inner{
	width: 98%;
	padding: 1.75rem 0;
	margin: 0 auto;
}

header .hd_logo{
	flex-shrink: 0;
	width: 20rem;
	margin-right: auto;
}
header .hd_logo a{
	display: block;
}
header .hd_logo a img{
	vertical-align: middle;
	transition: -webkit-filter .4s, filter .4s;
}
header .hd_logo a:hover img{
	-webkit-filter: var(--drop_shadow_wh);
	filter: var(--drop_shadow_wh);
}

@media screen and (max-width: 768px) {
	header .inner{
		width: 96%;
		padding: .5rem 0;
		margin: 0 auto;
	}

	header .hd_logo{
		width: 11rem;
	}
}/*  */

/* -------------
ナビ
-------------------------------------------------------- */
#hd_nav{
	-webkit-box-flex:1;
	flex-grow:1;
	margin-right: .5em;
}
#hd_nav li{
	margin-inline: .5em;
}
#hd_nav a{
	display: block;
	padding: .5em .85em;
	position: relative;
}
#hd_nav a:hover{
	text-shadow: var(--t_shadow_wh);
}

@media screen and (max-width: 768px) {
	#hd_nav li{
		margin-inline: 0;
	}
	#hd_nav a{
		padding: .5em;
	}
	.hmb_open #hd_nav{
		opacity: 0;
		visibility: hidden;
	}
}


/* -------------
　インスタ
-------------------------------------------------------- */
.hd_insta{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	margin-right: .25%;
}

.hd_insta img{
	width: 72%;
	transition: var(--filter_transition);
}
.hd_insta:hover img{
	-webkit-filter: var(--drop_shadow_wh);
	filter: var(--drop_shadow_wh);
}


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


/* -------------
ハンバーガー
-------------------------------------------------------- */
#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: 4rem;
	border-radius: 50%;
	cursor: pointer;
	transition: .4s;
	position: relative;
	z-index: 100;
}
#hmb:hover{
	opacity: .7;
}

#hmb .text{
	text-align: center;
	line-height: 1;
	margin-bottom: .33em;
}

.hmb_bar{
	width: 60%;
	height: 2rem;
	margin: auto;
	position: relative;
	transition: .4s;
}

.hmb_bar span{
	display: inline-block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	right: 0;
	transition: .4s;
}
.hmb_bar span:nth-of-type(1){
	top: 0;
}
.hmb_bar span:nth-of-type(2){
	top: calc(50% - .5px);
}
.hmb_bar span:nth-of-type(3){
	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){
	opacity: 0;
}
.hmb_open .hmb_bar span:nth-of-type(3){
	width: 100%;
	bottom: 46%;
	transform: rotate(33deg);
}

@media screen and (min-width: 769px) {
	#hmb{
		display: none;
	}
}


/************************************************************************
	グローバル
**************************************************************************/
#global{
	display: -webkit-box;
	display: flex;
	color: #fff;
	width: 100%;
	min-height: 100dvh;
	height: 100%;
	background-color: rgba(19,43,104,.2);
	position: fixed;
	right: -120%;
	top: 0;
	z-index: 40;
	transition: .4s;
	overflow: auto;
}
.hmb_open #global{
	right: 0;
}

#global .container{
	width: 100%;
	height: fit-content;
	min-height: 100%;
	padding: 10rem 4rem;
	margin-left: auto;
	background-image: -webkit-linear-gradient(0deg,rgba(15, 15, 15, 1) 0%, rgba(27, 27, 27, 1) 20%, rgba(49, 49, 49, 1) 50%, rgba(27, 27, 27, 1) 80%, rgba(15, 15, 15, 1) 100%);
	background-image: linear-gradient(90deg,rgba(15, 15, 15, 1) 0%, rgba(27, 27, 27, 1) 20%, rgba(49, 49, 49, 1) 50%, rgba(27, 27, 27, 1) 80%, rgba(15, 15, 15, 1) 100%);
}

.gl_nav{
	margin-bottom: 5rem;
}
.gl_nav li{
	margin-bottom: 1em;
}
.gl_nav li a{
	display: block;
	text-align: center;
	position: relative;
}
.gl_nav li a:hover{
	text-shadow: var(--t_shadow_wh);
	opacity: 1;
}

.gl_nav li a .text{
	display: inline-block;
	width: fit-content;
	padding: .5em;
	position: relative;
}
.gl_nav li a .text::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #e6d8ba;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: box-shadow .4s;
}
.gl_nav li a:hover .text::after{
	box-shadow: 0 0 .1rem .1rem rgba(255, 188, 46, .5);
}

.gl_logo{
	display: block;
	max-width: 30rem;
	margin: 0 auto 1.5rem;
}
.gl_logo:hover{
	-webkit-filter: var(--drop_shadow_wh);
	filter: var(--drop_shadow_wh);
	text-shadow: var(--t_shadow_wh);
}
.gl_logo .img{
	margin-bottom: .5rem;
}
.gl_logo .text{
	font-size: 1.3rem;
	margin: 0 auto;
}

.gl_logo02{
	display: block;
	max-width: 20rem;
	margin-inline: auto;
}
.gl_logo02:hover{
	-webkit-filter: var(--drop_shadow_wh);
	filter: var(--drop_shadow_wh);
}

@media screen and (min-width: 769px) {
	#global{
		display: none;
	}
}




/************************************************************************
	フッター
**************************************************************************/
/* 上部
-------------------------------------------------------- */

.ft_top{
	background-image: -webkit-linear-gradient(0deg, rgba(235, 86, 5, 1) 0%, rgba(251, 129, 22, 1) 100%);
	background-image: linear-gradient(90deg, rgba(235, 86, 5, 1) 0%, rgba(251, 129, 22, 1) 100%);
}
.ft_top .inner{
	width: 92%;
	max-width: 1200px;
}

@media screen and (max-width: 768px) {
	.ft_top .inner{
		width: 86%;
	}
}

/* 上部 左
-------------------------------------------------------- */
.ft_top .left_wrapper{
	flex-shrink: 0;
	width: 37rem;
}

.ft_top .left_wrapper a:hover{
	text-shadow: var(--t_shadow_wh);
	-webkit-filter: var(--drop_shadow_wh);
	filter: var(--drop_shadow_wh);
}

.ft_logo{
	display: block;
	margin-bottom: 2.5rem;
}
.ft_logo .img{
	margin-bottom: 1rem;
}

.ft_logo02{
	display: block;
	width: 18rem;
}


@media screen and (max-width: 1024px) {
	.ft_top .left_wrapper{
		width: 32.5rem;
	}

	.ft_logo .text{
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 768px) {
	.ft_top .left_wrapper{
		width: 100%;
		margin-bottom: 4rem;
	}

	.ft_logo{
		margin-bottom: 1.25rem;
	}
	.ft_logo .img{
		margin-bottom: .5rem;
	}
	.ft_logo .text{
		font-size: 1.35rem;
		text-align: center;
	}

	.ft_logo02{
		display: block;
		width: 13rem;
		margin-inline: auto;
	}
}

/* 上部 右
-------------------------------------------------------- */

.ft_top .right_wrapper{
	width: calc(97% - 37rem);
	max-width: 65rem;
}

.ft_btn01,
.ft_btn02{
	display: block;
	font-size: 1.9rem;
	text-align: center;
	border-radius: 5em;
	position: relative;
}

.ft_btn01{
	max-width: 48rem;
	width: 100%;
	padding: 1.25em 1.9em;
	margin: 0 auto 2em;
	border: var(--neon_border);
	box-shadow: var(--neon_border_shadow);
	background-color: #000;
}
.ft_btn01:hover{
	text-shadow: var(--t_shadow_wh);
	box-shadow: var(--neon_border_shadow), var(--neon_border_shadow);
	background-color: #1a1a1a;
}

.ft_btn01::after,
.ft_btn02::after{
	content: "";
	display: block;
	width: .74em;
	height: .74em;
	background: url(../img/cmn/btn_arrow01.svg) no-repeat center/contain;
	position: absolute;
	right: 1em;
	top: calc(50% - .37em);
}

.ft_btn02{
	max-width: 48rem;
	width: 100%;
	padding: 1em 1.9em;
	margin: 0 auto;
	border-radius: 5em;
}
.ft_btn02:hover{
	text-shadow: var(--t_shadow_wh);
	background-color: rgba(255, 255, 255, .1);
}
.ft_btn02 .sub{
	display: inline-block;
	font-size: .82em;
	text-align: center;
	width: 100%;
	position: absolute;
	top: -1em;
	left: 0;
}
.ft_btn02::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	border-radius: 5em;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-clip-path: polygon(0 0, calc(50% - 5.5em) 0, calc(50% - 5.5em) 1em, calc(50% + 5.5em) 1em, calc(50% + 5.5em) 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, calc(50% - 5.5em) 0, calc(50% - 5.5em) 1em, calc(50% + 5.5em) 1em, calc(50% + 5.5em) 0, 100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 1024px) {
	.ft_top .right_wrapper{
		width: calc(98% - 32.5rem);
	}

	.ft_btn02{
		font-size: 1.8vw;
		letter-spacing: -.1em;
	}
}

@media screen and (max-width: 768px) {
	.ft_top .right_wrapper{
		width: 100%;
		max-width: none;
	}

	.ft_btn01,
	.ft_btn02{
		font-size: 1.4rem;
	}

	.ft_btn01{
		margin-bottom: 1em;
	}

	.ft_btn02{
		width: 100%;
		padding: .5em 1.9em;
		margin-bottom: 1em;
		border: 1px solid #fff;
	}
	.ft_btn02::before{
		display: none;
	}

	.ft_btn02 .sub{
		position: static;
		display: block;
	}
}

/* 下部
-------------------------------------------------------- */
.ft_bottom{
	background-color: #000;
}
.ft_bottom .inner{
	width: 92%;
	max-width: 1200px;
}

.ft_nav{
	flex-shrink: 0;
}

.ft_nav li{
	font-size: 1.4rem;
	margin-right: .5em;
}
.ft_nav li a{
	display: block;
	padding: 1em;
}
.ft_nav li a:hover{
	text-shadow: var(--t_shadow_wh);
	background-color: #1a1a1a;
}

.ft_instagram_btn{
	display: block;
	width: 3.4rem;
	height: 3.4rem;
	padding: .4rem;
}
.ft_instagram_btn:hover{
	background-color: #1a1a1a;
}
.ft_instagram_btn img{
	vertical-align: baseline;
	transition: -webkit-filter .4s, filter .4s;
}
.ft_instagram_btn:hover img{
	-webkit-filter: var(--drop_shadow_wh);
	filter: var(--drop_shadow_wh);
}

.ft_nav .ft_instagram_btn{
	margin-left: 1em;
}

.copyright{
	position: relative;
}
.copyright .ft_instagram_btn{
	display: none;
}

@media screen and (max-width: 768px) {
	.ft_bottom .inner{
		width: 100%;
		padding-top: 1rem;
	}

	.ft_nav{
		border-bottom: 1px solid #fff;
	}
	.ft_nav ul{
		-webkit-box-pack: center;
		justify-content: center;
	}
	.ft_nav li{
		font-size: 1.3rem;
		margin-right: 0;
	}
	.ft_nav li a{
		padding: 1em .75em;
	}

	.ft_nav .ft_instagram_btn{
		display: none;
	}
	
	.copy_wrapper{
		padding-top: 1rem;
	}
	.copy_wrapper .ft_instagram_btn{
		display: block;
	}

	.copyright{
		padding: 0 5em;
		width: fit-content;
		margin-inline: auto;
	}
	.copyright .ft_instagram_btn{
		width: 3rem;
		height: 3rem;
		position: absolute;
		right: 0;
		top: calc(50% - 1.5rem);
	}
}

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


@media screen and (max-width: 768px) {
	
}
/************************************************************************
	ページ共通事項
**************************************************************************/
body{
	background-color: #000;
}
main{
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	
}

/* 固定ボタン
-------------------------------------------------------- */
#fix_btn_container{
	font-size: 1rem;/* スクロールで小さくするため */
	color: #fff;
	width: fit-content;
	padding: 2.5rem 2rem 2rem 3rem;
	border-radius: 5rem 0 0 0;
	background-image: -webkit-linear-gradient(0deg, #eb5605 0%, #fb8116 100%);
	background-image: linear-gradient(90deg, #eb5605 0%, #fb8116 100%);
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 10;
	transition: opacity .4s, visibility .4s;
}
.is_scroll #fix_btn_container{
	font-size: .925rem;
	opacity: .8;
}
#fix_btn_container:hover{
	opacity: 1 !important;
}
#fix_btn_container.arrive_ft{
	opacity: 0 !important;
	visibility: hidden;
}

#fix_btn_container h2{
	font-size: 2.8em;
	transition: font-size .4s;
}

#fix_btn_container .btn_list .fix_btn{
	display: block;
	font-size: 1.3em;
	line-height: 1.5;
	text-align: center;
	padding: 1em 3.85em 1em 1.6em;
	margin-right: 1.15em;
	border-radius: 5em;
	position: relative;
}
#fix_btn_container .btn_list .fix_btn:nth-last-of-type(1){
	margin-right: 0;
}
#fix_btn_container .btn_list .fix_btn:hover{
	text-shadow: var(--t_shadow_wh);
}

#fix_btn_container .btn_list .fix_btn::after{
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	background: url(../img/cmn/btn_arrow01.svg) no-repeat center/contain;
	position: absolute;
	right: 1.3em;
	top: calc(50% - .5em);
}

#fix_btn_container .btn_list .fix_btn01{
	width: 56%;
	background-color: #000;
	border: 2px solid #000;
}
#fix_btn_container .btn_list .fix_btn01
#fix_btn_container .btn_list .fix_btn01:hover{
	background-color: #1a1a1a;
	border-color: #1a1a1a;
}

#fix_btn_container .btn_list .fix_btn02{
	width: 40%;
	border: 2px solid #fff;
}
#fix_btn_container .btn_list .fix_btn02:hover{
	background-color: rgba(255, 255, 255, .1);
}

@media screen and (max-width: 768px) {
	#fix_btn_container{
		width: 100%;
		padding: 1rem .5rem 1.5rem;
		border-radius: 2.5rem 2.5rem 0 0;
		transition: opacity .4s, visibility .4s, padding .4s;
	}
	.is_scroll #fix_btn_container{
		font-size: 1rem;
		padding: .5rem;
	}

	#fix_btn_container h2{
		font-size: 1.45rem;
	}

	#fix_btn_container .btn_list{
		max-width: 38rem;
		margin: 0 auto;
	}
	#fix_btn_container .btn_list .fix_btn{
		font-size: 1.2rem;
		letter-spacing: -.025em;
		padding: .5em 1em;
		margin-right: 0;
		border-width: 1px;
	}

	#fix_btn_container .btn_list .fix_btn::after{
		display: none;
	}
}

@media screen and (max-width: 370px) {
	#fix_btn_container .btn_list .fix_btn{
		font-size: 1.1rem;
	}
}


/************************************************************************
	TOP MV
**************************************************************************/
#top_mv{
	position: relative;
}
#top_mv::before{
	content: "";
	display: block;
	padding-top: 56.2%;
}

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

#top_mv .text_wrapper{
	font-size: min(10px, .8vw);/* 1200pxでfont-size10px */
	padding-inline: 4em;
	position: absolute;
	left: 10%;
	top: 31.5%;
	z-index: 2;
}

#top_mv h2{
	font-size: 6em;
	line-height: 1.5;
	letter-spacing: .07em;
	margin-bottom: .3em;
	transition: text-shadow .4s .8s;
}
#top_mv h2.animation{
	text-shadow: var(--t_shadow_wh);
}


#top_mv h2 .mark_wrap{
	display: inline-block;
	position: relative;
}
#top_mv h2 .mark01,
#top_mv h2 .mark02{
	display: inline-block;
	color: #ffbc2e;
}
#top_mv h2 .mark01{
	position: absolute;
	left: -.5em;
}
#top_mv h2 .mark02{
	transform: translateY(.75em);
}

#top_mv .text{
	font-size: 2.4em;
	line-height: 2;
	letter-spacing: .02em;
}

@media screen and (max-width: 768px) {
	#top_mv::before{
		padding-top: 146.6%;
	}

	#top_mv .text_wrapper{
		font-size: 1.3vw;/* 375pxでfont-size5px */
		left: 0;
		right: 0;
		top: 62%;
		margin: 0 auto;
	}
	#top_mv h2,
	#top_mv .text{
		text-align: center;
	}

	#top_mv h2{
		margin-bottom: .1em;
	}
	#top_mv h2 .mark01{
		position: static;
	}
}

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


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


/************************************************************************
	選ばれる理由
**************************************************************************/
#reason .inner{
	max-width: 1400px;
	width: 94%;
}

#reason .container{
	padding: 0 0 5rem;
	border: var(--neon_border);
	border-radius: 1rem;
	box-shadow: var(--neon_border_shadow);
	position: relative;
}
#reason .container > *{
	position: relative;
	z-index: 1;
}

#reason .container .title_secondary{
	text-align: right;
	position: absolute;
	right: 1%;
	top: -9.25rem;
}
#reason .container .title_secondary .sub{
	max-width: 30.6rem;
}
#reason .container .title_secondary .main{
	padding-right: 1.5em;
}

@media screen and (max-width: 768px) {
	#reason .inner{
		width: 100%;
	}

	#reason .container{
		padding: 0;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	#reason .container .title_secondary{
		text-align: center;
		right: 50%;
		top: -5rem;
		transform: translateX(50%);
	}
	#reason .container .title_secondary .sub{
		max-width: 15.4rem;
	}
	#reason .container .title_secondary .main{
		padding-right: 0;
	}
}

/* 枠線の中身
-------------------------------------------------------- */
#reason .container .wrapper .img{
	position: relative;
}

#reason .container .wrapper .text_box{
	position: relative;
}

#reason .container .wrapper .text_box h3{
	position: relative;
}
#reason .container .wrapper .num{
	display: block;
	width: 8vw;
	max-width: 13rem;
	min-width: 9rem;
	position: absolute;
}
#reason .container .wrapper .num img{
	width: 100%;
}
#reason .container .wrapper .num.sp{
	display: none;
}

#reason .container .wrapper .text_box h3,
#reason .container .wrapper .text_box .text{
	text-shadow: var(--t_shadow_bk), var(--t_shadow_bk);
}


@media screen and (max-width: 768px) {
	#reason .container .wrapper{
		position: relative;
	}
	#reason .container .wrapper::before,
	#reason .container .wrapper::after{
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: #e6d8ba;
		box-shadow: var(--neon_border_shadow);
		position: absolute;
		left: 0;
	}
	#reason .container .wrapper::before{
		top: 0;
	}
	#reason .container .wrapper::after{
		bottom: 0;
	}
	#reason .container .wrapper01::after,
	#reason .container .wrapper02::after{
		display: none;
	}

	#reason .container .wrapper .num{
		width: 6.5rem;
		max-width: none;
		min-width: 0;
	}
	#reason .container .wrapper .num.pc{
		display: none;
	}
	#reason .container .wrapper .num.sp{
		display: block;
	}

	#reason .container .wrapper .text_box{
		text-align: center;
	}
	#reason .container .wrapper .text_box h3{
		line-height: 1.45;
		letter-spacing: .066em;
		margin-bottom: .5em;
	}
}

/* 01
-------------------------------------------------------- */
#reason .container .wrapper01{
	width: calc(96% + 50vw - 48.5%);/* 見た目で調整 */
	max-width: 1475px;
	padding-top: 13.5%;
	margin-left: max(-200px, calc(48.5% - 50vw));/* 見た目で調整 */
	margin-bottom: 9rem;
}

#reason .container .wrapper01 .img{
	-ms-flex-item-align: center;
	align-self: center;
	width: calc(97% - 42rem);
	margin-top: -19.5%;
}

#reason .container .wrapper01 .text_box{
	width: 42rem;
}
#reason .container .wrapper01 .num{
	right: calc(100% - 5rem);
	bottom: calc(100% - 4rem);
}

@media screen and (max-width: 768px) {
	#reason .container .wrapper01{
		display: block;
		width: 100%;
		padding: 6.5rem 0 4rem;
		margin-left: 0;
		margin-bottom: 0;
	}

	#reason .container .wrapper01 .img{
		width: 100%;
		margin-top: 0;
	}
	#reason .container .wrapper01 .img .num{
		right: auto;
		bottom: auto;
		left: 2%;
		top: -3.25rem;
	}

	#reason .container .wrapper01 .text_box{
		width: 100%;
		margin-top: -3rem;
	}
}

/* 02、03
-------------------------------------------------------- */
#reason .container .wrapper02,
#reason .container .wrapper03{
	width: 47%;
	max-width: 565px;
}
#reason .container .wrapper02{
	margin-left: 1%;
	margin-right: 4%;
}

#reason .container .wrapper02 .text_box,
#reason .container .wrapper03 .text_box{
	padding-left: 9rem;
	margin-top: -3rem;
}
#reason .container .wrapper02 .num,
#reason .container .wrapper03 .num{
	right: calc(100% + 1rem);
	bottom: calc(100% - 9rem);
}

@media screen and (max-width: 768px) {
	#reason .container .wrapper02,
	#reason .container .wrapper03{
		width: 100%;
		max-width: none;
		padding: 6.5rem 0 4rem;
	}
	#reason .container .wrapper02{
		margin-left: 0;
		margin-right: 0;
	}

	#reason .container .wrapper02 .img,
	#reason .container .wrapper03 .img{
		width: 90%;
		margin: 0 auto;
	}
	#reason .container .wrapper02 .num,
	#reason .container .wrapper03 .num{
		right: auto;
		bottom: auto;
		left: -4%;
		top: -3.25rem;
	}

	#reason .container .wrapper02 .text_box,
	#reason .container .wrapper03 .text_box{
		padding-left: 0;
		margin-top: -3rem;
	}
}

/************************************************************************
	3つのカスタマイズ
**************************************************************************/
#feature{
	position: relative;
}
#feature::before{
	content: "";
	display: block;
	width: 100%;
	height: calc(100% + 16rem);
	background: -webkit-linear-gradient(0deg,rgba(15, 15, 15, 1) 0%, rgba(27, 27, 27, 1) 20%, rgba(49, 49, 49, 1) 50%, rgba(27, 27, 27, 1) 80%, rgba(15, 15, 15, 1) 100%);
	background: linear-gradient(90deg,rgba(15, 15, 15, 1) 0%, rgba(27, 27, 27, 1) 20%, rgba(49, 49, 49, 1) 50%, rgba(27, 27, 27, 1) 80%, rgba(15, 15, 15, 1) 100%);
	position: absolute;
	left: 0;
	top: 0;
	-webkit-clip-path: polygon(0 19vw, 100% 0, 100% calc(100% - 19vw), 0 100%);
	clip-path: polygon(0 19vw, 100% 0, 100% calc(100% - 19vw), 0 100%);
}
#feature::after{
	content: "";
	display: block;
	width: 100%;
	height: calc(100% + 16rem);
	background-color: #000;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
	transition: -webkit-clip-path .6s, clip-path .6s;
}
#feature.animation::after{
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

#feature .inner{
	position: relative;
	z-index: 2;
}

.feature_area{
	position: relative;
}
.feature_area::before{
	content: "";
	display: block;
	width: calc(63vw - 15%);/* ウィンドウ幅1200pxや2000pxでも良い位置に。見た目で調整 */
	height: calc(100% - 10rem);
	margin-left: calc(50% - 52vw);
	border-radius: 1rem;
	border: var(--neon_border);
	box-shadow: var(--neon_border_shadow);
	position: absolute;
	left: 0;
	top: 10rem;
}

.feature_area > *{
	position: relative;
	z-index: 1;
}

#feature .title_secondary .sub{
	max-width: 34rem;
	margin-bottom: 1.5rem;
}
#feature .title_secondary .main{
	padding-left: .5em;
}

@media screen and (max-width: 768px) {
	#feature::before{
		height: calc(100% + 11rem);
		-webkit-clip-path: polygon(0 32vw, 100% 0, 100% calc(100% - 32vw), 0 100%);
		clip-path: polygon(0 32vw, 100% 0, 100% calc(100% - 32vw), 0 100%);
	}
	#feature::after{
		height: calc(100% + 11rem);
		transition: -webkit-clip-path .4s, clip-path .4s;
	}

	#feature .inner{
		width: 100%;
	}

	.feature_area::before{
		width: 100%;/* ウィンドウ幅1200pxや2000pxでも良い位置に。見た目で調整 */
		height: 1px;
		margin-left: 0;
		border-radius: 0;
		border: none;
		background-color: #e6d8ba;
		top: 5rem;
	}

	#feature .title_secondary .sub{
		max-width: 17rem;
		margin-bottom: 1rem;
	}
	#feature .title_secondary .main{
		padding-left: 0;
	}
	
}

/* 共通
-------------------------------------------------------- */
.feature_sec{
	padding: 6rem 0;
	margin-right: calc(50% - 50vw);
	position: relative;
}
.feature_sec.fd_rr{
	margin-right: 0;
	margin-left: calc(50% - 50vw);
}

.feature_sec .text_wrapper{
	width: 42%;
	padding-left: 6rem;
}
.feature_sec.fd_rr .text_wrapper{
	width: 36%;
	max-width: 48rem;
}

.feature_sec h3{
	line-height: 1.66;
	position: relative;
}
.feature_sec h3 .num{
	display: block;
	width: 4.5rem;
	position: absolute;
	right: calc(100% + 3rem);
	top: -3rem;
}
.feature_sec h3 .num img{
	width: 100%;
	-webkit-filter: drop-shadow(0 0 1rem var(--orange01)) drop-shadow(0 0 1rem var(--orange01));
	filter: drop-shadow(0 0 1rem var(--orange01)) drop-shadow(0 0 1rem var(--orange01));
	animation: 2s ease-in-out infinite feature_num_light;
}
@keyframes feature_num_light{
	0%{
		-webkit-filter: drop-shadow(0 0 .4rem var(--orange01)) drop-shadow(0 0 .4rem var(--orange01));
		filter: drop-shadow(0 0 .4rem var(--orange01)) drop-shadow(0 0 .4rem var(--orange01));
	}
	50%{
		-webkit-filter: drop-shadow(0 0 .8rem var(--orange01)) drop-shadow(0 0 .8rem var(--orange01));
		filter: drop-shadow(0 0 .8rem var(--orange01)) drop-shadow(0 0 .8rem var(--orange01));
	}
	100%{ 
		-webkit-filter: drop-shadow(0 0 .4rem var(--orange01)) drop-shadow(0 0 .4rem var(--orange01));
		filter: drop-shadow(0 0 .4rem var(--orange01)) drop-shadow(0 0 .4rem var(--orange01));
	}
}

.feature_sec .text{
	line-height: 2.77;
}

.feature_sec .img{
	width: 54%;
}
.feature_sec.fd_rr .img{
	width: 60%;
}

@media screen and (max-width: 768px) {
	.feature_sec::after{
		content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: #e6d8ba;
        box-shadow: var(--neon_border_shadow);
        position: absolute;
        left: 0;
		bottom: 0;
	}

	.feature_sec{
		margin-right: 0;
	}
	.feature_sec.fd_rr{
		margin-left: 0;
	}

	.feature_sec .text_wrapper{
		width: 100%;
		padding-left: 0;
	}
	.feature_sec.fd_rr .text_wrapper{
		width: 100%;
		max-width: none;
		padding-left: 0;
	}

	.feature_sec h3{
		line-height: 1.25;
		letter-spacing: .025em;
		width: fit-content;
		padding-left: 5rem;
		padding-right: 1rem;
		margin: 0 auto 1.5em;
	}
	.feature_sec h3 .num{
		width: 2.25rem;
		position: absolute;
		right: auto;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.feature_sec .text{
		text-align: center;
		line-height: 2.3;
	}
	
	.feature_sec .img{
		width: 100%;
		margin: 0 auto 3rem;
	}
	.feature_sec.fd_rr .img{
		width: 100%;
	}
}

/* 1
-------------------------------------------------------- */
#feature01{
	padding-top: 2rem;
}

#feature01 .text_wrapper{
	padding-top: calc(5% + 3rem);
}

#feature01 .img{
	position: relative;
}
#feature01 .img .deco{
	display: block;
	width: 42%;
	position: absolute;
	right: 1%;
	top: 70%;
}

@media screen and (max-width: 768px) {
	#feature01{
		padding-top: 5rem;
		padding-bottom: 11rem;
	}

	#feature01 .text_wrapper{
		padding-top: 0;
	}

	#feature01 .img{
		width: 92%;
	}

	#feature01 .img .deco{
		display: none;
	}
	#feature01 .deco.sp{
		width: 16rem;
		position: absolute;
		right: -3rem;
		bottom: -4rem;
		z-index: 1;
	}
}

/* 2、3
-------------------------------------------------------- */
#feature02 .text_wrapper{
	padding-top: 7%;
}
#feature02 h3 .num{
	width: 7rem;
}

#feature03{
	padding-top: 8rem;
	padding-bottom: 2rem;
}

#feature03 .text_wrapper{
	width: 34%;
	padding-top: 4%;
}
#feature03 h3 .num{
	width: 7rem;
}

#feature03 .img{
	width: 62%;
}
#feature03 .img .attention_mark{
	width: fit-content;
	margin-top: 3rem;
	margin-left: auto;
	margin-right: 3%;
}

@media screen and (max-width: 768px) {
	#feature02{
		padding-top: 7rem;
	}
	#feature02 .text_wrapper{
		padding-top: 0;
	}
	#feature02 h3 .num{
		width: 3.75rem;
	}

	#feature03{
		padding-top: 6rem;
		padding-bottom: 4rem;
	}
	#feature03 .text_wrapper{
		width: 100%;
		padding-top: 0;
	}
	#feature03 h3 .num{
		width: 3.75rem;
	}
	#feature03 .img{
		width: 94%;
	}
}

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


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

/************************************************************************
	導入事例
**************************************************************************/
/* 大手ブランド・有名企業に多数導入！
-------------------------------------------------------- */
#works_intro{
	background: url(../img/works_intro_bg.jpg) no-repeat center/cover;
}

#works_intro .inner{
	padding-bottom: 24rem;
}

#works_intro .list li{
	font-size: min(10px, .9vw);/* 1110pxで10px */
	width: 18%;
	max-width: 200px;
	border: var(--neon_border);
	border-radius: 1em;
	box-shadow: var(--neon_border_shadow);
	background-color: rgba(255, 188, 46, .1);
	position: relative;
}
#works_intro .list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

#works_intro .list li .wrap{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding-top: 1vw;
	position: absolute;
	left: 0;
	top: 0;
}
#works_intro .list li .icon{
	width: 55%;
	padding-top: 34%;
	margin: 0 auto 1.25vw;
	position: relative;
}
#works_intro .list li .icon img{
	width: auto;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#works_intro .list li .text{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.6em;
	text-align: center;
	height: 3.5em;
}

@media screen and (max-width: 768px) {
	#works_intro{
		background-image: url(../img/works_intro_bg_sp.jpg);
	}

	#works_intro .inner{
		padding-bottom: 17rem;
	}

	#works_intro .list{
		-webkit-box-pack: center;
		justify-content: center;
	}

	#works_intro .list li{
		font-size: 2.6vw;/* 375pxで10px */
		width: 29%;
		max-width: none;
		border-radius: .5em;
		margin-right: 6.5%;
		margin-bottom: 6.5%;
	}
	#works_intro .list li:nth-of-type(n+4){
		margin-bottom: 0;
	}
	#works_intro .list li:nth-of-type(3),
	#works_intro .list li:nth-of-type(5){
		margin-right: 0;
	}

	#works_intro .list li::before{
		padding-top: 115%;
	}
	
	#works_intro .list li .text{
		font-size: 1.3em;
		line-height: 1.45;
		height: 4.35em;
	}
	
}

/* 導入事例一覧
-------------------------------------------------------- */
#works_main{
	background: url(../img/works_main_bg.jpg) no-repeat center/cover;
}

#works_main .inner{
	padding-top: 1px;
	position: relative;
}
#works_main .test_text{
	font-size: 1.5em;
	font-weight: 700;
	color: var(--red);
}

#works_main .title_secondary{
	text-align: center;
	margin-top: -7em;
}
#works_main .title_secondary .sub{
	width: 21em;
	margin-inline: auto;
}

.works_list li{
	cursor: pointer;
	width: 24.2%;
	margin-right: calc(3.2% / 3);
	margin-bottom: 1%;
	border: 1px solid transparent;
	box-shadow: 0 0 0 0 transparent;
	position: relative;
	transition: border .4s, box-shadow .4s;
}
.works_list li:nth-of-type(4n){
	margin-right: 0;
}
.works_list li:hover{
	border: var(--neon_border);
	box-shadow: var(--neon_border_shadow);
}

.works_list li::after{
	content: "";
	display: block;
	width: 100%;
	height: 25%;
	background-image: -webkit-linear-gradient(90deg, rgba(0,0,0,0)0% , rgba(0,0,0,.9) 100%);
	background-image: linear-gradient(180deg, rgba(0,0,0,0)0% , rgba(0,0,0,.9) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: opacity .4s;
}
.works_list li:hover::after{
	opacity: 0;
}

.works_list li .click_text{
	font-family: var(--mincho);
	font-size: 1.125em;
	width: fit-content;
	padding-right: 1.6em;
	position: absolute;
	right: 4%;
	bottom: 2%;
	z-index: 2;
}
.works_list li .click_text::after{
	content: "";
	display: block;
	width: 1.1em;
	height: 1.1em;
	background: url(../img/cmn/icon_modal.svg) no-repeat center/contain;
	position: absolute;
	right: 0;
	top: calc(50% - .6em);
}

.works_list li img{
	width: 100%;
	transition: -webkit-filter .4s, filter .4s;
}
.works_list li:hover img{
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
}

@media screen and (max-width: 768px) {
	#works_main{
		background-image: url(../img/works_main_bg_sp.jpg);
	}

	#works_main .title_secondary{
		margin-top: -4.1em;
	}
	#works_main .title_secondary .sub{
		width: 12em;
	}

	.works_list li{
		width: 49%;
		margin-right: 2%;
		margin-bottom: 2%;
	}
	.works_list li:nth-of-type(2n){
		margin-right: 0;
	}

	.works_list li .click_text{
		font-size: .925em;
	}
}

/* モーダル表示
-------------------------------------------------------- */
.modal_container{
	display: -webkit-box;
	display: flex;
	width: 100%;
	height: 100%;
	padding: min(200px, 12.5%) 0;
	background-color: rgba(0,19,49,60%);
	overflow: auto;
	opacity: 0;/* アニメーションしたいからdisplay:none;の代わり */
	visibility: hidden;/* アニメーションしたいからdisplay:none;の代わり */
	transition: opacity .4s, visibility .4s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 180;
}
.modal_container.active{/* JSでクラス着脱 */
	opacity: 1;
	visibility: visible;
}

.modal_wrapper{
	max-width: 1000px;
	width: 100%;
	height: fit-content;
	margin: auto;
	transition: .3s;
	position: relative;
	z-index: 200;
}

.modal_container .btn_close{
	width: 4rem;
	height: 4rem;
	background: url(../img/cmn/close.svg) no-repeat center/90%;
	position: absolute;
	top: -5rem;
	right: 5%;
	z-index: 2;
}
.modal_container .btn_close:hover{
	opacity: .7;
}

@media screen and (max-width: 768px) {
	.modal_container .btn_close{
		width: 3.5rem;
		height: 3.5rem;
		top: -2.5rem;
		right: 4%;
	}
}

/* スワイパー */
.modal_container .swiper{
	padding: 2% 5% 4%;
}

.modal_container .swiper .swiper-slide{
	border: 1px solid transparent;
	box-shadow: 0 0 0 0 transparent;
	transition: border .4s, box-shadow .4s;
}
.modal_container .swiper .swiper-slide-active{
	border: var(--neon_border);
	box-shadow: var(--neon_border_shadow);
}

.modal_container .swiper .swiper-slide img{
	width: 100%;
}

.modal_container .swiper .swiper-button-next, .modal_container .swiper .swiper-button-prev{
	width: 4%;
	padding-top: 7%;
	height: auto;
	top: 47%;
	backdrop-filter: drop-shadow(0 0 .3rem .3rem rgba(255, 188, 46, .7));
}
.modal_container .swiper .swiper-button-prev{/* 前へ */
	left: 0;
	transform: scale(-1, 1);
}
.modal_container .swiper .swiper-button-next{/* 次へ */
	right: 0;
}
.modal_container .swiper .swiper-button-prev::after, .modal_container .swiper .swiper-button-next::after{
	content: '';
	display: none;
}

.modal_container .swiper .swiper-button-next img, .modal_container .swiper .swiper-button-prev img{
	width: 60%;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-filter: drop-shadow(0 0 .3rem rgba(255, 188, 46, 0));
	filter: drop-shadow(0 0 .3rem rgba(255, 188, 46, 0));
	transition: -webkit-filter .4s, filter .4s;
}
.modal_container .swiper .swiper-button-next:hover img, .modal_container .swiper .swiper-button-prev:hover img{
	-webkit-filter: drop-shadow(0 0 .3rem rgba(255, 188, 46, 1)) drop-shadow(0 0 .3rem rgba(255, 188, 46, 1));
	filter: drop-shadow(0 0 .3rem rgba(255, 188, 46, 1)) drop-shadow(0 0 .3rem rgba(255, 188, 46, 1));
}

.modal_container .swiper .swiper-pagination-bullets{
	bottom: 0;
}
.modal_container .swiper .swiper-pagination-bullet{
	background-color: #fff;
}
.modal_container .swiper .swiper-pagination-bullet-active{
	box-shadow: 0 0 .2rem .2rem rgba(255, 188, 46, .7);
}

@media screen and (max-width: 768px) {
	.modal_container .swiper{
		padding: 3rem 4%;
	}
	.modal_container .swiper .swiper-button-next, .modal_container .swiper .swiper-button-prev{
		display: none;
	}
}

/************************************************************************
	お客様のリアルな声
**************************************************************************/
#reviews{
	position: relative;
	z-index: 3;
}
#reviews .title_secondary .sub{
	width: 26em;
	margin-inline: auto;
	margin-bottom: 1em;
}

#reviews .list{
	padding-top: 8rem;
}
#reviews .list li{
	width: 49.4%;
	padding: 1px 4% 9.5rem;
	margin-bottom: 18rem;
	background: url(../img/reviews_bubble.png) no-repeat center/100% 100%;
	position: relative;
}
#reviews .list li:nth-last-of-type(-n+2){
	margin-bottom: 0;
}

#reviews .list li .img{
	margin-top: -7rem;
	margin-bottom: 2.5rem;
	border-radius: 1rem;
	overflow: hidden;
}
#reviews .list li .read{
	font-family: var(--mincho);
	font-weight: 500;
	font-size: 2rem;
	margin-bottom: .5em;
}
#reviews .list li .text{
	line-height: 2.25;
	margin-bottom: 1.25em;
}
#reviews .list li .attribute{
	text-align: right;
	padding-left: calc(14rem + 4%);
}

#reviews .list li .icon{
	width: auto;
	height: 15rem;
	position: absolute;
	left: 8%;
	bottom: -4rem;
}
#reviews .list li .icon img{
	width: auto;
	height: 100%;
}

@media screen and (max-width: 768px) {
	#reviews .title_secondary .sub{
		width: 17.2em;
		margin-bottom: .75em;
	}

	#reviews .list{
		display: block;
		padding-top: 4rem;
	}
	#reviews .list li{
		width: 100%;
		padding: 1px 8% 6rem;
		margin-bottom: 12rem;
	}
	#reviews .list li:nth-last-of-type(-n+2){
		margin-bottom: 12rem;
	}
	#reviews .list li:nth-last-of-type(1){
		margin-bottom: 0;
	}

	#reviews .list li .img{
		margin-bottom: 1.5rem;
		border-radius: .5rem;
	}

	#reviews .list li .read{
		font-size: 1.6rem;
	}
	#reviews .list li .text{
		font-size: 1.3rem;
		line-height: 2;
	}
	#reviews .list li .attribute{
		font-size: 1.3rem;
		padding-left: calc(7.5rem + 8%);
	}

	#reviews .list li .icon{
		height: 8.2rem;
		position: absolute;
		left: 8%;
		bottom: -1rem;
	}
}

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


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


/************************************************************************
	インスタグラム
**************************************************************************/
#instagram{
	position: relative;
}
#instagram::before{
	content: "";
	display: block;
	width: 100%;
	height: calc(100% + 16rem);
	background-image: -webkit-linear-gradient(0deg,rgba(15, 15, 15, 1) 0%, rgba(27, 27, 27, 1) 20%, rgba(49, 49, 49, 1) 50%, rgba(27, 27, 27, 1) 80%, rgba(15, 15, 15, 1) 100%);
	background-image: linear-gradient(90deg,rgba(15, 15, 15, 1) 0%, rgba(27, 27, 27, 1) 20%, rgba(49, 49, 49, 1) 50%, rgba(27, 27, 27, 1) 80%, rgba(15, 15, 15, 1) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-clip-path: polygon(0 19vw, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 19vw, 100% 0, 100% 100%, 0 100%);
}
#instagram::after{
	content: "";
	display: block;
	width: 100%;
	height: calc(100% + 16rem);
	background-color: #000;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
	transition: -webkit-clip-path .6s, clip-path .6s;
}
#instagram.animation::after{
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

#instagram .title_secondary{
	position: relative;
	z-index: 1;
}
#instagram .title_secondary .sub{
	width: 27.5em;
	margin-inline: auto;
}

.insta_area{
	padding: 6.5rem 0;
	position: relative;
}

.insta_area::before,
.insta_area::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #e6d8ba;
	box-shadow: var(--neon_border_shadow);
	position: absolute;
	left: 0;
}
.insta_area::before{
	top: 0;
}
.insta_area::after{
	bottom: 0;
}

.insta_area .to_insta{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	width: 15rem;
	height: 15rem;
	border: var(--neon_border);
	border-radius: 50%;
	box-shadow: var(--neon_border_shadow);
	background-color: rgba(0, 0, 0, .8);
	position: absolute;
	right: 11%;
	bottom: -7.5rem;
	z-index: 1;
}
.insta_area .to_insta:hover{
	text-shadow: var(--t_shadow_wh);
	background-color: rgba(20, 20, 20, .8);
	box-shadow: var(--neon_border_shadow), var(--neon_border_shadow);
}

.insta_area .to_insta .icon{
	width: 20%;
	margin-bottom: 1rem;
}

#insta_list{
	display: none;
}

@media screen and (max-width: 768px) {
	#instagram::before{
		height: calc(100% + 11rem);
		-webkit-clip-path: polygon(0 32vw, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 32vw, 100% 0, 100% 100%, 0 100%);
	}
	#instagram::after{
		height: calc(100% + 11rem);
		transition: -webkit-clip-path .4s, clip-path .4s;
	}

	.insta_area{
		padding: 4.5rem 0;
	}

	.insta_area .to_insta{
		width: 8rem;
		height: 8rem;
		right: 6%;
		bottom: -4rem;
	}
	.insta_area .to_insta .icon{
		width: 24%;
		margin-bottom: 0;
	}
	.insta_area .to_insta p{
		letter-spacing: 0;
		margin-bottom: .5em;
	}

	#insta_list{
		display: block;
	}

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

	#insta_list ul li{
		width: 32%;
		margin-right: 2%;
		margin-bottom: 2%;
	}
	#insta_list ul li:nth-of-type(3n){
		margin-right: 0;
	}
	#insta_list ul li:nth-of-type(n+4){
		margin-bottom: 0;
	}

	#insta_list ul li:nth-of-type(n+7){
		display: none;
	}
}

/* スワイパー
-------------------------------------------------------- */
#insta_swiper .swiper-wrapper{
	transition-timing-function: linear;
}

#insta_swiper .swiper-slide a,
#insta_list ul li a{
	display: block;
	position: relative;
}
#insta_swiper .swiper-slide a:hover,
#insta_list ul li a:hover{
	opacity: .7;
}

#insta_swiper .swiper-slide a::before,
#insta_list ul li a::before{
	content: "";
	display: block;
	padding-top: 133%;
}

#insta_swiper .swiper-slide img,
#insta_list ul li img{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	#insta_swiper{
		display: none;
	}
}

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


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

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


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

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


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

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


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