@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* 
Noto Sans
font-family: "Noto Sans JP", sans-serif;
font-weight: 400;
font-style: normal;

*/

/* 
	font-family: "GN-Kin-iro", sans-serif;
	font-weight: 700;
*/

/* 変数 */
:root {
	--red: #e60012;
	--thin_red: #ff5d50;
	--green: #248074;
	--yellow_green: #36e487;
	--blue: #255b94;
	--light_blue: #5baef4;
	--thin_light_blue: #e5f8ff;
	--yellow: #fff100;

	--font-color: #000;
	--white: #fff;

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

	--shadow_primary: 0 .8rem 1.6rem .2rem rgba(0, 0, 0, .16);
}

/* -------------
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;
}
table a,
article a{
	word-break: break-all;
}
*,
: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: 400;
	letter-spacing: 0;
	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: var(--font_mincho);
	font-weight: 500;
}

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

.yu-go{
	font-family: var(--font_yugo);
}

/* 
 文字サイズ
-------------------------------------------------------- */
.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;
}
.fz27{
	font-size: 2.7rem;
}
.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;
	}
	.fz17sp{
		font-size: 1.7rem;
	}
	.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;
	}
	.fz27sp{
		font-size: 2.7rem;
	}
	.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; }
.ls1{ letter-spacing: .1em; }
.ls05{ letter-spacing: .05em; }
.ls025{ letter-spacing: .025em; }

.lh150{ line-height: 1.5; }
.lh200{ line-height: 2; }

.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;}
.red{ color: var(--red);}
.thin_red{ color: var(--thin_red);}
.green{ color: var(--green);}
.blue{ color: var(--blue);}
.yellow{ color: var(--yellow);}
.light_blue{ color: var(--light_blue);}
.thin_light_blue{ color: var(--thin_light_blue);}


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

.b { font-weight: 700; }
.fw300 { font-weight: 300; }
.fw400 { font-weight: 400; }
.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;
}

.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 80%, var(--yellow) 80%);
}

@media screen and (max-width: 768px) {
	.b_sp { font-weight: 700; }
	.fw300_sp { font-weight: 300; }
	.fw400_sp { font-weight: 400; }
	.fw500_sp { font-weight: 500; }
	.fw600_sp { font-weight: 600; }
	.fw900_sp { font-weight: 900; }
}

/************************************************************************
	リストなど　擬似要素装飾
**************************************************************************/
/* 「※」 */
.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: 1200px;
	width: 92%;
}

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

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

/* 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-size: 2rem;
	font-weight: 400;
	text-align: center;
	
}
.title_primary .sub{
	display: inline-block;
	font-size: 3.6em;/* 72/20 */
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	transform: scaleX(.85);
}

@media screen and (max-width: 768px) {
	.title_primary{
		font-size: 1.5rem;
	}
	.title_primary .sub{
		font-size: 3.33em;/* 50/15 */
	}
}

/************************************************************************
	ボタン
**************************************************************************/
.btn{
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	max-width: 23.3em;/* 560/24 */
	width: 100%;
	padding: .6em 2.5em .7em;
	border: 1px solid var(--font-color);
	border-radius: 5em;
	background-color: #fff;
	position: relative;
}
.btn.yellow_btn{
	background-color: var(--yellow);
}

.btn.preparation{
	pointer-events: none;
	color: #ccc;
	background-color: #e5e5e5;
}
.btn.preparation::before{
	content: "準備中です";
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.25em;
	color: var(--red);
	text-align: center;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.btn::after{
	content: "";
	display: block;
	width: 1.12em;/* 27/24 */
	height: .708em;/* 17/24 */
	background: url(../img/cmn/btn_arrow.svg) no-repeat center/contain;
	position: absolute;
	right: 1.16em;/* 28/24 */
	top: calc(50% - .354em);
}

.btn.preparation::after{
	opacity: .2;
}

.btn:hover{
	opacity: .7;
}

@media screen and (max-width: 768px) {
	.btn{
		font-size: 1.5rem;
		max-width: 20em;/* 300/15 */
		padding: .75em 2.5em .85em;
	}
}


@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: var(--shadow_primary);
}
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埋め込みなど
-------------------------------------------------------- */
.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;
	}
}


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


/************************************************************************
	アニメーション
**************************************************************************/
/* フェードイン　*/
.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: #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.more_fast{
	transition-duration: .4s;
}
.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;
	}
}


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

.surpass_mv header{
	padding: .9rem 0 1rem;
}

header .hd_logo{
	flex-shrink: 0;
	width: 36rem;
	margin-left: .5%;
	margin-right: auto;
}
header .hd_logo a{
	display: block;
	position: relative;
}
header .hd_logo a:hover{
	opacity: .7;
}

header .hd_logo a::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/cmn/logo02.png) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: opacity .4s;
}

header .hd_logo a img{
	vertical-align: middle;
	transition: opacity .4s;
}

@media screen and (max-width: 1280px) {
	header .hd_logo{
		width: 32rem;
	}
}


@media screen and (max-width: 768px) {
	header{
		padding: 1.4rem 0 1.5rem;
	}

	.surpass_mv header{
		padding: .9rem 0 1rem;
	}
	header .hd_logo{
		width: 19rem;
		margin-left: 1%;
	}
}

/* -------------
ナビ
-------------------------------------------------------- */
#hd_nav{
	-webkit-box-flex:1;
	flex-grow:1;
}
#hd_nav ul{
	margin-right: 3%;
}
#hd_nav li{
	margin-left: .66em;
}
#hd_nav a,
#hd_nav .modal_trigger{
	display: block;
	padding: .5em .75em;
	position: relative;
}
#hd_nav a:hover{
	opacity: 1;
}
#hd_nav a::after,
#hd_nav .modal_trigger::after{
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: .25em;
	left: .85em;
	transition: width .4s;
}
.surpass_mv #hd_nav a::after,
.surpass_mv #hd_nav .modal_trigger::after,
.hmb_open #hd_nav a::after,
.hmb_open #hd_nav .modal_trigger::after{
	background-color: #000;
}
#hd_nav a:hover::after,
#hd_nav .modal_trigger:hover::after{
	width: calc(100% - 1.7em);
}

@media screen and (max-width: 1280px) {
	#hd_nav ul{
		margin-right: 2%;
	}
	#hd_nav li{
		margin-left: .33em;
	}

	#hd_nav a,
	#hd_nav .modal_trigger{
		padding: .5em .4em;
	}
}
@media screen and (max-width: 960px) {
	#hd_nav{
		display: none;
	}
}



/* -------------
ハンバーガー
-------------------------------------------------------- */
#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;
	margin-right: 2%;
	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: 80%;
	height: 2.2rem;
	margin: auto;
	position: relative;
	transition: .4s;
}

.hmb_bar span{
	display: inline-block;
	width: 100%;
	height: 2px;
	background-color: var(--font-color);
	position: absolute;
	right: 0;
	transition: .4s;
}
.surpass_mv .hmb_bar span,
.hmb_open .hmb_bar span{
	background-color: #000;
}

.hmb_bar span:nth-of-type(1){
	top: 0;
}
.hmb_bar span:nth-of-type(2){
	top: calc(50% - 1px);
}
.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: 961px) {
	#hmb{
		display: none;
	}
}


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

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

.gl_nav{
	margin-bottom: 3rem;
}
.gl_nav li{
	margin-bottom: .5em;
}
.gl_nav li a,
.gl_nav li .modal_trigger{
	display: block;
	padding: .25em 0;
	position: relative;
}
.gl_nav li a:hover{
	opacity: 1;
}

.gl_nav li a .text,
.gl_nav li .modal_trigger .text{
	display: inline-block;
	position: relative;
}
.gl_nav li a .text::after,
.gl_nav li .modal_trigger .text::after{
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: #000;
	position: absolute;
	bottom: .05em;
	left: 0;
	transition: width .4s;
}
.gl_nav li a:hover .text::after,
.gl_nav li .modal_trigger:hover .text::after{
	width: 100%;
}


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


/************************************************************************
	フッター
**************************************************************************/
footer{
	padding: 2rem 0 1.5rem;
	background-color: #fff;
}

.ft_bnr_list{
	width: 92%;
	max-width: 580px;
	margin: 0 auto 1.5rem;
}

.ft_bnr_list li{
	width: 48.6%;
}
.ft_bnr_list li a{
	display: block;
}
.ft_bnr_list li a:hover{
	opacity: .7;
}
.ft_bnr_list li a img{
	width: 100%;
}

@media screen and (max-width: 768px) {
	footer{
		padding: 3rem 0 1.5rem;
	}

	.ft_bnr_list{
		width: 94.6%;
		max-width: none;
	}
}





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


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


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

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


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

/************************************************************************
	MV
**************************************************************************/
main{
	padding-top: 9.5rem;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	main{
		padding-top: 5.8rem;
	}
}

#mv{
	overflow: hidden;
	position: relative;
}

#mv .bg{
	width: 100%;
}
#mv .bg picture,
#mv .bg img{
	width: 100%;
	height: 100%;
}
#mv .bg img{
	object-fit: cover;
}

#mv .mv_member{
	width: 46.2%;
	position: absolute;
	top: 2%;
	left: -.6%;
	z-index: 1;
}
#mv .mv_member img{
	filter: drop-shadow(0 1rem 0 rgba(255, 241, 0, .5));
}

#mv .mv_text{
	width: 49.4%;
	position: absolute;
	top: 9.5%;
	right: 1.9%;
	z-index: 2;
}
#mv .mv_text_sub{
	display: none;
	position: absolute;
	z-index: 3;
}
#mv .mv_text_sub img{
	width: 100%;
}

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

	#mv .mv_member{
		width: 97%;
		top: 17%;
		z-index: 2;
	}
	#mv .mv_member img{
		filter: drop-shadow(0 .6rem 0 rgba(255, 241, 0, .5));
	}

	#mv .mv_text{
		width: 94%;
		top: 4.8%;
		right: 2.8%;
		z-index: 1;
	}

	#mv .mv_text_sub{
		display: block;
		width: 98.6%;
		bottom: 16%;
		left: .7%;
	}
}

/************************************************************************
	NAISTオープンキャンパスにようこそ！
**************************************************************************/
#intro .inner{
	max-width: 1230px;
	width: 93%;
}
#intro .intro_title{
	font-family: var(--font_yugo);
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-align: center;
	width: fit-content;
	padding: 0 .8em 1.25em;
	margin: 0 auto .8em;
	position: relative;
}

#intro .intro_title::before,
#intro .intro_title::after{
	content: "";
	display: block;
	position: absolute;
}

#intro .intro_title::before{
	width: 1.36em;/* 49/36 */
	height: 1.08em;/* 39/36 */
	background: url(../img/intro_bubble01.svg) no-repeat top left/100% 100%;
	top: 0;
	left: 0;
}
#intro .intro_title::after{
	width: 3.61em;/* 130/36 */
	height: 1.78em;/* 64/36 */
	background: url(../img/intro_bubble02.svg) no-repeat bottom right/100% 100%;
	bottom: 0;
	right: 0;
}

#intro .intro_list{
	font-family: var(--font_yugo);
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .05em;
	padding-bottom: 1em;
}
#intro .intro_list li{
	--li_color: var(--thin_red);
	
	width: 24.2%;
	padding: .5em;
	margin-bottom: .5em;
	background-color: #eee;
	position: relative;
}
#intro .intro_list li:nth-of-type(2){
	--li_color: var(--yellow_green);
}
#intro .intro_list li:nth-of-type(3){
	--li_color: var(--light_blue);
}
#intro .intro_list li:nth-of-type(4){
	--li_color: var(--yellow);
}

#intro .intro_list li::before{
	content: "";
	display: block;
	width: .42em;/* 10/24 */
	height: 100%;
	background-color: var(--li_color);
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 1140px) {
	#intro .intro_list li{
		width: 48%;
	}
}

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

	#intro .intro_title{
		font-size: 2rem;
		letter-spacing: 0;
		width: 100%;
		max-width: 20em;
		padding: .5em .4em 1.25em;
		margin: 0 auto 1.5em;
	}
	#intro .intro_title .small_sp{
		font-size: .9em;/* 18/20 */
		font-feature-settings: "palt";
	}

	#intro .intro_list{
		font-size: 1.5rem;
		padding-bottom: 1.5em;
	}

}


/************************************************************************
	CSSスライダー
**************************************************************************/

/*  スライダー */
.slider_wrapper{
	padding: 0 0 calc(4rem + 5%);
	overflow: hidden;
}
.slider_wrapper.left{
	display: -webkit-box;
	display: flex;
}

.slider_wrapper.left .slider{
	display: -webkit-box;
	display: flex;
	animation: slider-left 100s infinite linear 0.5s both;
}

.slider .slider_item{
	width: 60rem;
	margin: 0 .3%;
}
@keyframes slider-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 768px) {
	.slider_wrapper{
		padding: 1rem 0 7rem;
		overflow: hidden;
	}
	.slider .slider_item{
		width: 28rem;
		margin: 0 .2%;
	}
}


/************************************************************************
	オープンキャンパスにようこそ！
**************************************************************************/

#welcome .attention{
	margin-bottom: 2.5em;
}

#welcome .map_wrapper{
	width: 92%;
	margin: auto auto 6%;
	position: relative;
}
#welcome .map{
	display: block;
	width: 75%;
	margin: auto;
}

#welcome .map_link{
	position: absolute;
	z-index: 1;
}
#welcome .map_link01{
	width: 42%;
	top: 62%;
	right: 0;
}
#welcome .map_link02{
	width: 32%;
	top: 75%;
	left: 0;
}
#welcome .map_link03{
	width: 50.4%;
	top: 81%;
	right: 0;
}
#welcome .map_link04-1{
	width: 32%;
	top: 57%;
	left: -4%;
}
#welcome .map_link04-2{
	width: 26%;
	top: 34.5%;
	right: 1%;
}

#welcome .map_link06-1{
	width: 44%;
	top: 73%;
	right: 0;
}
#welcome .map_link06-2{
	width: 34%;
	top: 81.6%;
	right: 0;
}

#welcome .map_link::before{
	content: "";
	display: block;
	width: 31%;
	padding-top: 42%;
	background-color: rgba(0,0,0,0);
	position: absolute;
	z-index: -1;
	transition: .4s;
}
#welcome .map_link:hover::before{
	opacity: 1;
}
#welcome .map_link01::before{
	left: -18%;
	top: -160%;
}
#welcome .map_link01:hover::before{
	opacity: 1;
	background-color: rgba(215,70,27,.5);
}
#welcome .map_link02::before{
	width: 42%;
	padding-top: 70%;
	right: -20%;
	top: -80%;
}
#welcome .map_link02:hover::before{
	background-color: rgba(42,141,48,.5);
}
#welcome .map_link03::before{
	width: 41%;
	padding-top: 29.5%;
	left: -17%;
	top: -24%;
}
#welcome .map_link03:hover::before{
	background-color: rgba(0,121,194,.5);
}
#welcome .map_link04-1::before{
	width: 22%;
    padding-top: 11%;
    right: -6%;
    top: 18%;
}
#welcome .map_link04-1:hover::before{
	background-color: rgba(237,209,37,.5);
}
#welcome .map_link04-2::before{
	width: 76%;
    padding-top: 110%;
    left: -38%;
    top: -136%;
}
#welcome .map_link04-2:hover::before{
	background-color: rgba(104,60,147,.5);
}

#welcome .map_link06-1::before{
	display: none;
}

#welcome .map_link06-2::before{
	width: 18%;
    padding-top: 9%;
    left: -13.6%;
    top: -34%;
}
#welcome .map_link06-2:hover::before{
	background-color: rgba(239,177,55,.5);
}

#welcome .map_supple{
	position: absolute;
}
#welcome .map_supple01{
	width: 25%;
	top: 64.5%;
	left: -2%;
}
#welcome .map_supple02{
	width: 36.5%;
	top: 26.5%;
	left: -1%;
}

.map_supple03_anchor{
	display: none;
	width: 13.3%;
	padding-top: 13.4%;
	background-color: rgba(255, 255, 255, 0);
	position: absolute;
	left: 2%;
	bottom: 15.8%;
}
.map_supple02 .map_supple02_anchor img:hover,
.map_supple03_anchor:hover {
	opacity: 1;
	background-color: rgba(255, 255, 255, .3);
}
#welcome .map_supple03{
	width: 37.5%;
	top: 38%;
	left: -1%;
}
#welcome .map_supple04{
	width: 13.3%;
	top: 32%;
	left: 43%;
}

#welcome .btn_wrapper{
	display: flex;
	justify-content: space-between;
	width: 92%;
	margin-inline: auto;
}
#welcome .btn_wrapper .btn{
	width: 48%;
}

@media screen and (max-width: 768px) {
	#welcome .title_primary .sub{
		font-size: 2.4em;/* 36/15 */
	}

	#welcome .map_wrapper{
		width: 100%;
		margin: auto auto 15%;
	}
	#welcome .map{
		width: 100%;
	}

	#welcome .map_link01{
		width: 37%;
		top: 61.6%;
	}
	#welcome .map_link02{
		width: 35%;
		top: 97%;
		left: 16%;
		z-index: 2;
	}
	#welcome .map_link03{
		width: 52%;
		top: 83.4%;
		right: 0;
	}
	#welcome .map_link04-1{
		width: 30%;
        top: 50%;
        left: -1%;
	}
	#welcome .map_link04-2{
		width: 30%;
		top: 15%;
		right: 0;
	}
	#welcome .map_link06-1{
		width: 43%;
		top: 71%;
	}
	#welcome .map_link06-2{
		width: 33%;
		top: 81%;
	}

	#welcome .map_link01::before{
		width: 46%;
		padding-top: 64%;
		left: -34%;
		top: -150%;
	}
	#welcome .map_link02::before{
		width: 50%;
		padding-top: 43%;
		right: auto;
		left: -0.5%;
		top: -250%;
	}
	#welcome .map_link03::before{
		width: 54%;
		padding-top: 39%;
		left: -20%;
		top: -43%;
	}
	#welcome .map_link04-1::before{
		width: 34%;
        padding-top: 15%;
        right: 15%;
        top: 114%;
	}
	#welcome .map_link04-2::before{
		width: 90%;
		padding-top: 129%;
		left: -10%;
		top: 76%;
	}
	#welcome .map_link06-2::before{
		width: 24%;
		left: -5%;
		top: -16%;
	}
	
	#welcome .map_supple{
		display: none;
	}
	
	#welcome .btn_wrapper{
	display: block;
	width: 100%;
	padding-top: 1rem;
}
	#welcome .btn_wrapper .btn{
		width: 100%;
		margin: 0 auto .75em;
}

.map_supple03_anchor {
	display: block;
	width: 13.3%;
	padding-top: 13.4%;
	background-color: rgba(255, 255, 255, 0);
	position: absolute;
	left: 2%;
	bottom: 30%;
}
	
.map_supple02_anchor{
	display: none;
}
}



/* イベントスケジュール
-------------------------------------------------------- */

/* ナビ */
#schedule_nav{
	font-size: 1.125em;
	width: 25rem;
	position: -webkit-sticky;
	position: sticky;
	top: 14rem;
}

#schedule_nav .item{
	--item_color: #000;
	--current_bg: #e5e5e5;
	cursor: pointer;
	letter-spacing: 0;
	padding: .33em 1em;
	border-top: 1px solid #b3b3b3;
	position: relative;
	transition: .4s;
}
#schedule_nav .item[data-schedule="schedule01"]{
	--item_color: #d7461b;
	--current_bg: #fbece8;
}
#schedule_nav .item[data-schedule="schedule02"]{
	--item_color: #2a8d30;
	--current_bg: #e9f3ea;
}
#schedule_nav .item[data-schedule="schedule03"]{
	--item_color: #0079c2;
	--current_bg: #e5f1f9;
}
#schedule_nav .item[data-schedule="schedule04"]{
	--item_color: #f7d911;
	--current_bg: #fffcea;
}
#schedule_nav .item[data-schedule="schedule05"]{
	--item_color: #ea68a2;
	--current_bg: #fdf0f6;
}
#schedule_nav .item[data-schedule="schedule06"]{
	--item_color: #f39800;
	--current_bg: #fef4e5;
}

#schedule_nav .item:nth-last-of-type(1){
	border-bottom: 1px solid #b3b3b3;
}
#schedule_nav .item:hover{
	opacity: .7;
}
#schedule_nav .item.current{
	background-color: var(--current_bg);
}

#schedule_nav .item::before{
	content: "";
	display: block;
	width: .5rem;
	height: 100%;
	background-color: var(--item_color);
	position: absolute;
	left: 0;
	top: 0;
}
#schedule_nav .item::after{
	content: "";
	display: block;
	width: 1em;
	height: .67em;
	-webkit-mask: url(../img/cmn/arrow.svg) no-repeat center/contain;
    mask: url(../img/cmn/arrow.svg) no-repeat center/contain;
	background-color: var(--item_color);
	position: absolute;
	right: .5em;
	top: calc(50% - .33em);
}

@media screen and (max-width: 768px) {
	#schedule_nav{
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
		font-size: .95em;
		width: 100%;
		margin-bottom: 2em;
		position: relative;
		top: auto;
	}

	#schedule_nav .item{
		display: -webkit-box;
		display: flex;
		-webkit-box-align: center;
		align-items: center;
		width: 50%;
		padding: 1.1em .75em;
	}
	#schedule_nav .item:nth-of-type(1){
		width: 100%;
	}

	#schedule_nav .item:nth-of-type(2n+1){
		border-right: 1px solid #b3b3b3;
	}
	#schedule_nav .item:nth-last-of-type(-n+2){
		border-bottom: 1px solid #b3b3b3;
	}

	#schedule_nav .item::after{
		transform: rotate(90deg);
		right: .1em;
	}
	
}

/* テーブル */
.schedule_box{
	width: calc(96% - 25rem);
	overflow: auto;
}
.schedule_table{
	--table_color: #d7461b;
	--th_bg: #fbece8;
	font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'YuGothic', sans-serif;
	font-weight: 500;
	width: 100%;
	margin-bottom: 2em;
}
.schedule_table:nth-last-of-type(1){
	margin-bottom: 0;
}
.schedule_table.hide{
	display: none;
}

.schedule_table caption{
	font-size: 1.5em;
	font-weight: 700;
	color: #fff;
	padding: .5em 0;
	background-color: var(--table_color);
	text-align: center;
	border-radius: 2rem 2rem 0 0;
}
.schedule_table[data-schedule="schedule02"]{
	--table_color: #2a8d30;
	--th_bg: #e9f3ea;
}
.schedule_table[data-schedule="schedule03"]{
	--table_color: #0079c2;
	--th_bg: #e5f1f9;
}
.schedule_table[data-schedule="schedule04"]{
	--table_color: #f7d911;
	--th_bg: #fcf8dc;
}
.schedule_table[data-schedule="schedule04"][data-scroll="scroll04-2"]{
	--table_color: #683c93;
	--th_bg: #f0ebf4;
}
.schedule_table[data-schedule="schedule05"]{
	--table_color: #ea68a2;
	--th_bg: #fdf0f6;
}
.schedule_table[data-schedule="schedule06"]{
	--table_color: #f39800;
	--th_bg: #fef4e5;
}

.schedule_table tbody{
	border: 1px solid #b3b3b3;
	border-top: none;
	border-radius: 0 0 2rem 2rem;
	overflow: hidden;
}
.schedule_table tr{
	border-bottom: 1px solid #b3b3b3;
}
.schedule_table tr:nth-last-of-type(1){
	border-bottom: none;
}

.schedule_table th{
	font-size: 1.25em;
	letter-spacing: 0;
	width: 16rem;
	text-align: center;
	font-weight: 700;
	background-color: var(--th_bg);
	border-right: 1px solid #b3b3b3;
}
.schedule_table th .fw500{
	font-weight: 500;
}
.schedule_table th .fz16{
	font-size: .8em;
}

.schedule_table td{
	width: calc(100% - 16rem);
	padding: 1em 3%;
}

.schedule_table td h3{
	font-size: 1.5em;
	font-weight: 700;
	color: var(--table_color);
}

.schedule_table td h4{
	font-size: 1.125em;
	font-weight: 700;
}

.schedule_table td p{
	letter-spacing: 0;
	margin: .25em 0;
}

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

	.schedule_table th{
		font-size: 1.13em;
		text-align: left;
		width: 8rem;
		padding: .75em 3%;
	}

	.schedule_table td{
		width: calc(100% - 8rem);
	}

	.schedule_table td h3{
		font-size: 1.28em;
		letter-spacing: 0;
	}

	.schedule_table td h4{
		font-size: 1.08em;
		letter-spacing: 0;
	}
}


/************************************************************************
	開催イベント
**************************************************************************/

#event{
	background: #eaf3f9 url(../img/event_bg.jpg) no-repeat top center/100%;
}

#event .title_primary{
	color: var(--white);
	text-shadow: 0 .25em 1em rgba(0, 0, 0, .2);
}
#event .title_primary .main{
	font-weight: 700;
}

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

/* 01~03
-------------------------------------------------------- */
#event .list{
	margin-bottom: 8rem;
}
#event .list li{
	display: -webkit-box;
	display: flex;
	margin-bottom: 3rem;
	background-color: var(--white);
	box-shadow: var(--shadow_primary);
}
#event .list li:nth-last-of-type(1){
	margin-bottom: 0;
}

#event .list li .img{
	width: 42%;
}
#event .list li .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#event .list li .text_wrapper{
	width: 58%;
	padding: 5% 4% 4% 4.5%;
}

#event .list li h3{
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 2.5%;
}

#event .list li .text{
	font-size: 1.8rem;
	line-height: 2;
	letter-spacing: .05em;
}

@media screen and (max-width: 768px) {
	#event .list{
		margin-bottom: 2.5rem;
	}
	#event .list li{
		display: block;
		margin-bottom: 2.5rem;
	}

	#event .list li .img{
		width: 100%;
	}
	#event .list li .img img{
		height: auto;
	}

	#event .list li .text_wrapper{
		width: 100%;
		padding: 2rem 1.75rem;
	}
	
	#event .list li h3{
		font-size: 1.8rem;
		text-align: center;
	}
	
	#event .list li .text{
		font-size: 1.4rem;
		line-height: 1.75;
	}
	
}

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


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

/************************************************************************
	アクセス情報
**************************************************************************/
#access{
	background-color: #fffde3;
}

#access .address_list{
	width: fit-content;
	margin: 0 auto 5rem;
}

@media screen and (max-width: 768px) {
	#access .address_list{
		margin-bottom: 4.5rem;
	}
}

/* 各要素
-------------------------------------------------------- */
#access .grid_outer{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(2, 47%);
    grid-template-columns: repeat(2, 47%);
	-webkit-box-pack: justify;
	justify-content: space-between;
}

#access .grid_outer .container{
	display: inherit;
    grid-template-rows: subgrid;
    grid-row: span 3;
	grid-row-gap: 3rem;
}

#access .grid_outer .container hgroup{
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: .25em;
}
#access .grid_outer .container hgroup .sub{
	font-size: .6em;/* 18/30 */
	letter-spacing: .05em;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	#access .inner{
		width: 80%;
	}
	#access .grid_outer{
		display: block;
	}

	#access .grid_outer .container{
		margin-bottom: 5rem;
	}
	#access .grid_outer .container:nth-last-of-type(1){
		margin-bottom: 0;
	}

	#access .grid_outer .container .img{
		width: 94%;
		margin: 0 auto 2rem;
	}

	#access .grid_outer .container .text_wrapper{
		margin-bottom: 3rem;
	}

	#access .grid_outer .container hgroup{
		font-size: 1.8rem;
		text-align: center;
		margin-bottom: .25em;
	}
	#access .grid_outer .container hgroup .sub{
		font-size: .78em;/* 14/18 */
	}
}

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


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

/************************************************************************
	参加者の声
**************************************************************************/
#voice{
	background: url(../img/voice_bg.png) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
	#voice{
		background-image: url(../img/voice_bg_sp.png);
	}
}

/* 並び
-------------------------------------------------------- */
#voice .list{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(3, 32%);
    grid-template-columns: repeat(3, 32%);
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#voice .list li{
	display: inherit;
    grid-template-rows: subgrid;
    grid-row: span 2;
	position: relative;
}

#voice .list li .text_wrapper{
	padding: 2.5rem 8% 10rem;
	position: relative;
}

#voice .list li .bubble{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}
#voice .list li .bubble img{
	width: 100%;
	height: 100%;
	filter: drop-shadow(.2rem .2rem .5rem rgba(0, 0, 0, 0.1));
}

#voice .list li .text_wrapper .name,
#voice .list li .text_wrapper .text{
	letter-spacing: .05em;
	position: relative;
	z-index: 1;
}
#voice .list li .text_wrapper .name{
	font-size: 2rem;
	margin-bottom: .5em;
}
#voice .list li .text_wrapper .text{
	font-size: 1.4rem;
}

#voice .list li .member{
	width: 60.5%;/* 230/380 */
	margin: -7rem auto 0;
	position: relative;
	z-index: 2;
}
#voice .list li .member img{
	width: 100%;
	object-fit: contain;
	object-position: bottom center;
}

@media screen and (max-width: 768px) {
	#voice .list{
		display: block;
	}
	#voice .list li{
		display: block;
		margin-bottom: 2.5rem;
	}

	#voice .list li .text_wrapper{
		padding: 2.5rem 34% 6rem 7%;
		position: relative;
	}

	#voice .list li .bubble{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 0;
	}
	#voice .list li .bubble img{
		width: 100%;
		height: 100%;
		filter: drop-shadow(.2rem .2rem .5rem rgba(0, 0, 0, 0.1));
	}

	#voice .list li .text_wrapper .name{
		font-size: 1.5rem;
	}
	#voice .list li .text_wrapper .text{
		font-size: 1.2rem;
	}

	#voice .list li .member{
		width: 34.4%;/* 117/340 */
		margin: 0;
		position: absolute;
		bottom: 1rem;
		right: -2%;
	}
}


/************************************************************************
	入試情報
**************************************************************************/
#flow{
	background: var(--white) url(../img/flow_bg.jpg) no-repeat bottom center/100%;
}

#flow .title_primary{
	font-size: 3.6rem;
	font-weight: 700;
}
#flow .title_primary .sub{
	font-size: 2em;/* 72/36 */
	font-weight: 900;
}

@media screen and (max-width: 768px) {
	#flow{
		background-image: url(../img/flow_bg_sp.jpg);
	}
	#flow .title_primary{
		font-size: 1.8rem;
	}
	#flow .title_primary .sub{
		font-size: 2.78em;/* 50/18 */
	}
}

/* 要素
-------------------------------------------------------- */
#flow .list{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(5, 18%);
    grid-template-columns: repeat(5, 18%);
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 10.5rem;
	position: relative;
	z-index: 1;
}

#flow .list li{
	display: inherit;
    grid-template-rows: subgrid;
    grid-row: span 2;
	grid-row-gap: 1.5rem;
}
#flow .list li .icon{
	width: 100%;
	max-width: 20rem;
	margin: 0 auto;
	position: relative;
}
#flow .list li .icon img{
	width: 100%;
}

#flow .list li:nth-of-type(1) .icon::before{
	content: "";
	display: block;
	width: 96vw;
	max-width: 1320px;
	height: 2rem;
	background: url(../img/flow_arrow.png) no-repeat right center/100% 100%;
	position: absolute;
	top: calc(50% - 1rem);
	left: -30%;
	z-index: -1;
}

@media screen and (max-width: 1360px) {
	#flow .list li:nth-of-type(1) .icon::before{
		left: -24%;
	}
}
@media screen and (max-width: 1320px) {
	#flow .list li:nth-of-type(1) .icon::before{
		left: -16%;
	}
}


#flow .list li .text_box{
	display: flex;
	justify-content: center;
	align-items: center;
}
#flow .list li h3{
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.36;
}

@media screen and (max-width: 1200px) {
	#flow .list{
		-ms-grid-columns: repeat(5, 18.4%);
		grid-template-columns: repeat(5, 18.4%);
	}
	#flow .list li h3{
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 768px) {
	#flow .list{
		-ms-grid-columns: repeat(6, 14%);
		grid-template-columns: repeat(6, 14%);
		grid-row-gap: 1.5rem;
		margin-bottom: 3rem;
	}
	
	#flow .list li{
		grid-row-gap: .75rem;
	}
	#flow .list li:nth-of-type(1){
		grid-column: 1/ 3;
	}
	#flow .list li:nth-of-type(2){
		grid-column: 3/ 5;
	}
	#flow .list li:nth-of-type(3){
		grid-column: 5/ 7;
	}
	#flow .list li:nth-of-type(4){
		grid-column: 2/ 4;
	}
	#flow .list li:nth-of-type(5){
		grid-column: 4/ 6;
	}

	#flow .list li .icon{
		width: 92%;
		max-width: none;
	}

	#flow .list li:nth-of-type(1) .icon::before{
		width: 120vw;
		max-width: none;
		height: 1rem;
		top: calc(50% - .5rem);
		left: -10vw;
	}
	#flow .list li:nth-of-type(5) .icon::before{
		content: "";
		display: block;
		width: 100vw;
		max-width: none;
		height: 1rem;
		background: url(../img/flow_arrow.png) no-repeat right center/100% 100%;
		position: absolute;
		top: calc(50% - .5rem);
		right: -5vw;
		z-index: -1;
	}

	#flow .list li h3{
		font-size: 1.2rem;
	}

	#flow .btn{
		font-size: 1.8rem;
		max-width: 18.34em;/* 300/18 */
		padding: .6em 1.8em .7em;
	}
	#flow .btn::after{
		width: .78em;/* 14/18 */
		height: .5em;/* 9/18 */
		right: .89em;/* 16/18 */
		top: calc(50% - .25em);
	}
}

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


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


/************************************************************************
	当日参加できない方へ
**************************************************************************/
#event_guidance{
	background: url(../img/event_guidance_bg.png) repeat-y center top/100%;
}

#event_guidance hgroup .sub{
	font-size: 1.8em;/* 36/20 */
	font-weight: 700;
	margin-bottom: .2em;
}


@media screen and (max-width: 768px) {
	#event_guidance{
		background-image: url(../img/event_guidance_bg_sp.png);
	}

	#event_guidance hgroup .sub{
		font-size: 1.67em;/* 25/15 */
		margin-bottom: .1em;
	}
}

/* 
-------------------------------------------------------- */
#event_guidance .outer{
	position: relative;
}
#event_guidance .outer::before{
	content: "";
	display: block;
	width: 19.5rem;
	height: 18.4rem;
	background: url(../img/event01_mascot.png) no-repeat bottom center/contain;
	position: absolute;
	left: 0;
	top: -12rem;
}
#event_guidance .outer02::before{
	background-image: url(../img/event02_mascot.png);
}
#event_guidance .outer03::before{
	background-image: url(../img/event03_mascot.png);
}

#event_guidance .container{
	--container_color: var(--thin_red);
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 4%;
	margin-bottom: 15rem;
	border-radius: 2rem;
	background-color: #fff3f2;
	box-shadow: var(--shadow_primary);
	position: relative;
	z-index: 1;
}
#event_guidance .container02{
	--container_color: var(--yellow_green);
	background-color: #eaf9f2;
}
#event_guidance .container03{
	--container_color: var(--light_blue);
	margin-bottom: 0;
	background-color: #eaf3f9;
}

#event_guidance .container::after{
	content: "";
	display: block;
	width: 16.67%;/* 200/1200 */
	height: 100%;
	border-radius: 0 2rem 2rem 0;
	background-color: var(--container_color);
	position: absolute;
	right: 0;
	top: 0;
}

#event_guidance .container .right_wrapper,
#event_guidance .container .left_wrapper{
	position: relative;
	z-index: 1;
}
#event_guidance .container .right_wrapper{
	width: 38%;
}

#event_guidance .container .right_wrapper img{
	width: 100%;
}

#event_guidance .container .left_wrapper{
	width: 60%;
	max-width: 60rem;
}

#event_guidance .container .left_wrapper h3{
	font-size: 3rem;
	font-weight: 700;
	color: var(--container_color);
	letter-spacing: .05em;
	margin-bottom: .85em;
}

#event_guidance .container .list{
	display: flex;
	width: 102%;
	margin-left: -2%;
}

#event_guidance .container .list li{
	width: 32.6%;
	margin-right: 1.1%;
}
#event_guidance .container .list li:nth-of-type(3){
	margin-right: 0;
}

#event_guidance .container .list li a{
	display: block;
}

#event_guidance .container .list li .img{
	width: 82%;
	margin: 0 auto 1.5rem;
	position: relative;
	z-index: 1;
}

#event_guidance .container .list li .img::before{
	content: "";
	display: block;
	width: calc(100% + 1rem);
	height: calc(100% + 1rem);
	border-radius: 50%;
	border: 1px solid var(--container_color);
	position: absolute;
	left: -.5rem;
	top: -.5rem;
	z-index: -1;
	opacity: 0;
	transition: opacity .4s;
}
#event_guidance .container .list li a:hover .img::before{
	opacity: 1;
}

#event_guidance .container .list li .img img{
	border-radius: 50%;
	transition: -webkit-filter .4s, filter .4s;
}
#event_guidance .container .list li a:hover .img img{
	-webkit-filter: brightness(106%);
	filter: brightness(106%);
}


#event_guidance .container .list li .link_text{
	font-weight: 500;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#event_guidance .outer::before{
		display: none;
	}
	#event_guidance .container{
		display: block;
		padding: 2rem 4.3%;
		margin-bottom: 5.5rem;
		border-radius: 1rem;
	}
	#event_guidance .container03{
		margin-bottom: 0;
	}

	#event_guidance .container::after{
		content: "";
		display: block;
		width: 100%;
		height: 12.6rem;
		border-radius: 1rem 1rem 0 0;
	}

	#event_guidance .container .right_wrapper{
		width: 100%;
		margin-bottom: 1.5rem;
	}

	#event_guidance .container .right_wrapper::after{
		content: "";
		display: block;
		width: 9.7rem;
		height: 9.2rem;
		background: url(../img/event01_mascot.png) no-repeat bottom center/contain;
		position: absolute;
		right: -3%;
		bottom: -3rem;
		z-index: 1;
	}
	#event_guidance .container02 .right_wrapper::after{
		background-image: url(../img/event02_mascot.png);
	}
	#event_guidance .container03 .right_wrapper::after{
		background-image: url(../img/event03_mascot.png);
	}

	#event_guidance .container .left_wrapper{
		width: 100%;
		max-width: none;
	}

	#event_guidance .container .left_wrapper h3{
		font-size: 1.8rem;
		text-align: center;
		margin-bottom: .5em;
	}

	#event_guidance .container .list{
		width: 104%;
		justify-content: center;
	}

	#event_guidance .container .list li .img{
		width: 90%;
		margin-bottom: .75rem;
	}

	#event_guidance .container .list li .link_text{
		font-size: 1.3rem;
	}

}


/************************************************************************
	お問い合わせ
**************************************************************************/
#contact{
	background: url(../img/contact_bg.png) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
	#contact{
		background-image: url(../img/contact_bg_sp.png);
	}
}

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

#contact .container{
	max-width: 1200px;
	width: 92%;
	padding: 4rem 4%;
	margin: 0 auto;
	border-radius: 2rem;
	box-shadow: var(--shadow_primary);
	background-color: #fff;
}

#contact .container a{
	display: block;
}
#contact .container a:hover{
	opacity: .7;
}

#contact .container .tel_contact{
	font-size: 2rem;
	width: 54.5%;
	padding: 0 2.5% .1em;
	border-right: 1px solid #959595;
}

#contact .container .tel_contact .text01{
	font-size: 1em;/* 20/20 */
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	padding: .5em;
	margin-bottom: .5em;
	border-radius: 1em;
	background-color: var(--yellow);
}

#contact .container .tel_contact .text02{
	font-size: 2.5em;/* 50/20 */
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -.025em;
	padding: .1em 0 .1em .5em;
	margin-bottom: .1em;
	position: relative;
}
#contact .container .tel_contact .text02::before{
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	background: url(../img/cmn/tel_icon.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: calc(50% - .5em);
}
#contact .container .tel_contact .text02 p{
	transform: scaleX(.85);
}

#contact .container .tel_contact .text03{
	font-size: .9em;/* 18/20 */
	text-align: center;
	letter-spacing: .05em;
}

#contact .container .mail_contact{
	width: 45.5%;
	padding-left: 3%;
}
#contact .container .mail_contact a{
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--white);
	text-align: center;
	letter-spacing: .05em;
	padding: 1.1em;
	border-radius: .833em;/* 20/24 */
	background-color: var(--font-color);
	position: relative;
}

#contact .container .mail_contact a::before,
#contact .container .mail_contact a::after{
	content: "";
	display: block;
	position: absolute;
}

#contact .container .mail_contact a::before{
	width: 2.08em;
	height: 2.08em;
	background: url(../img/cmn/mail_icon.svg) no-repeat center/contain;
	left: 2.2%;/* 10/460 */
	top: calc(50% - 1.04em);
}

#contact .container .mail_contact a::after{
	width: 1.125em;/* 27/24 */
	height: .708em;/* 17/24 */
	background: url(../img/cmn/btn_arrow_wh.svg) no-repeat center/contain;
	right: 7%;/* 32/460 */
	top: calc(50% - .354em);
}

@media screen and (max-width: 1120px) {
	#contact .container .tel_contact{
		font-size: 1.6rem;/* ×0.8 */
	}

	#contact .container .mail_contact a{
		font-size: 1.92rem;/* ×0.8 */
	}
}
@media screen and (max-width: 840px) {
	#contact .container .tel_contact{
		font-size: 1.4rem;/* ×0.875 */
	}

	#contact .container .mail_contact a{
		font-size: 1.68rem;/* ×0.875 */
	}
}

@media screen and (max-width: 768px) {
	#contact .container{
		width: 94.6%;
		padding: 4rem 0 3rem;
		margin: 0 auto;
		border-radius: 1rem;
		box-shadow: var(--shadow_primary);
		background-color: #fff;
	}
	
	#contact .container .flex_wrapper{
		display: block;
	}

	#contact .container .tel_contact{
		font-size: 1.4rem;
		width: 100%;
		padding: 0 5% 1.5em;
		border-right: none;
		border-bottom: 1px solid #959595;
	}

	#contact .container .tel_contact .text01{
		width: 98%;
		padding: .4em;
		margin: 0 auto .5em;
		border-radius: .72em;/* 10/14 */
	}

	#contact .container .tel_contact .text02{
		font-size: 2.23em;/* 31.25/14 */
	}

	#contact .container .tel_contact .text03{
		font-size: .8em;/* 11.25/14 */
	}

	#contact .container .mail_contact{
		width: 100%;
		padding: 2rem 0 0;
	}
	#contact .container .mail_contact a{
		font-size: 1.5rem;
		width: 88%;
		padding: .75em 3em;
		margin: 0 auto;
		border-radius: .667em;/* 10/15 */
	}

	#contact .container .mail_contact a::before{
		left: 5%;/* 10/460 */
	}

	#contact .container .mail_contact a::after{
		right: 9%;
	}
}

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


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

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


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


/************************************************************************
	モーダル表示部分
**************************************************************************/
.modal_trigger,
.schedule_trigger{
	cursor: pointer;
	transition: .4s;
}
.modal_trigger:hover,
.schedule_trigger:hover{
	opacity: .7;
}
.modal_trigger.current,
.schedule_trigger.current{
	pointer-events: none;
}
/* モーダル要素
-------------------------------------------------------- */
.modal_outer{
	width: 100%;
	min-height: 100vh;
	padding: min(180px, 11.25%) 0;
	background-color: rgba(0,0,0,.6);
	transition: .3s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 180;
	opacity: 0;
	visibility: hidden;
}
.modal_outer.active{
	opacity: 1;
	visibility: visible;
}

.modal_outer > .inner{
	position: relative;
}

.modal_outer .btn_close{
	display: block;
	width: 6rem;
	height: 6rem;
	margin-left: auto;
	background: url(../img/cmn/close.svg) no-repeat center/contain;
	position: absolute;
	right: 0;
	top: -6.5rem;
}

.modal_container{
	background-color: #fff;
	border-radius: 2rem;
	max-height: 80vh;
	overflow: auto;
}
.modal_container h2{
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	padding: .75em 0;
	background-color: #fff;
	border-bottom: .2rem solid #b3b3b3;
	position: sticky;
	top: 0;
	z-index: 1;
}

.modal_container .wrapper{
	padding: 5% 4%;
	position: relative;
}

@media screen and (max-width: 768px) {
	.modal_outer{
		padding: 5rem 0;
	}

	.modal_outer .btn_close{
		width: 4rem;
		height: 4rem;
		top: -4.5rem;
	}

	.modal_container{
		max-height: 90vh;
		border-radius: 1rem;
	}

	.modal_container h2{
		font-size: 2rem;
		padding: 1em 0 .5em;
		border-bottom: .1rem solid #b3b3b3;
	}

	.modal_container .wrapper{
		display: block;
		padding: 6% 2% 12%;
		position: relative;
	}
}



/* 乗り場マップ
-------------------------------------------------------- */
#modal_bus .box{
	margin-bottom: 3.5em;
}

#modal_bus h3{
	font-weight: 700;
	color: #fff;
	width: fit-content;
	padding: .25em 1em;
	margin-bottom: .75em;
	background-color: var(--light_blue);
}

#modal_bus p{
	letter-spacing: 0;
	margin-bottom: 1em;
}

#modal_bus .map_wrapper{
	width: 92%;
	margin: auto;
	position: relative;
}
#modal_bus .map_wrapper::before{
	content: "";
	display: block;
	padding-top: 47%;
}
#modal_bus .map_wrapper iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}


@media screen and (max-width: 768px) {
	#modal_bus h3{
		letter-spacing: 0;
	}
	#modal_bus .map_wrapper::before{
		padding-top: 75%;
	}
}



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


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

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


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