@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/* 
Noto Sans JP
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400 500 700;

Noto Serif JP
	font-family: "Noto Serif JP", serif;
	font-weight: 200 600;

*/

/* 変数 */
:root {
	/* vwの代わり（JSでスクロールバーも考慮した数値に変更する） */
	--js_vw: 100vw;
	--break_through: calc(50% - var(--js_vw) / 2);
	--break_through_half: calc(25% - var(--js_vw) / 4);

	/* 色 */
	--font_color: #000;
	--red: #f90000;
	--blue: #0068b7;
	--font_blue: #004986;
	--light_blue: #05a1d7;

	/* フォント */
	--font_primary: "Noto Sans JP", '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'YuGothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--mincho: "Noto Serif JP", '游明朝', '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;

	/* ボックスシャドウ */
	--shadow_primary: 0 .2rem 1.2rem -.5rem rgba(0, 0, 0, .16);
	--text_shadow_primary: 0 0 .3em rgba(0, 0, 0, .2), 0 0 .3em rgba(0, 0, 0, .2);
}

@media screen and (max-width: 768px) {
	:root{
		--shadow_primary: 0 .1rem 1.2rem -.6rem 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;
	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: 400;
	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);
	font-weight: 200;
}

.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;
	}
	.fz11sp{
		font-size: 1.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(--font_blue);}
.light_blue{ color: var(--light_blue);}

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

.b { font-weight: 700; }
.fw200 { font-weight: 200; }
.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;
}

/* 
並び 間隔
-------------------------------------------------------- */
.tal { text-align: left; }
.tac, .tac_pc { text-align: center; }
.tar, .tar_pc { 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; }
.lh166{ line-height: 1.66; }
.lh175{ line-height: 1.75; }
.lh1875{ line-height: 1.875; }
.lh2{ line-height: 2; }
.lh225{ line-height: 2.25; }

@media screen and (max-width: 768px){
	.tac_pc, .tar_pc { text-align: left; }

	.lh14sp{ line-height: 1.4; }
	.lh15sp{ line-height: 1.5; }
	.lh175sp{ line-height: 1.75; }
	.lh1875sp{ line-height: 1.875; }
	.lh2sp{ line-height: 2; }
	.lh225sp{ 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 .1em .4em rgba(0, 0, 0, .08), 0 .1em .4em 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;
}

/* 「・」 */
.disc li, .disc_mark{
	padding-left: 1.33em;
	position: relative;
}
.disc li::before, .disc_mark::before{
	content: "・";
	position: absolute;
	left: .25em;
}
span.disc_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.pc1200{
	max-width: 1200px;
	width: 92%;
}
.inner.pc1300{
	max-width: 1300px;
	width: 92%;
}

.inner.pc1400{
	max-width: 1400px;
	width: 94%;
}

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

	.inner.sp700{
		width: 93.3%;
	}
	.inner.sp680{
		width: 90.6%;
	}

	.inner.sp100per{
		width: 100%;
	}

	.sp_break_through{
		margin-inline: var(--break_through);
	}
}

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

/************************************************************************
	タイトル
**************************************************************************/
.top_title_primary{
	font-size: 3rem;
}
.top_title_primary .sub{
	font-size: 1.6em;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.2;
	text-transform: capitalize;
}
.top_title_primary .main{
	font-family: var(--mincho);
	font-weight: 200;
	letter-spacing: .05em;
}

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


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



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


/************************************************************************
	ボタン
**************************************************************************/
.btn_primary{
	--btn_color: #fff;
	--btn_bg_color: transparent;
	--btn_hover_bg: rgba(0, 25, 45, .6);

	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;
	font-size: 1.8rem;
	color: var(--btn_color);
	line-height: 1.3;
	width: 92%;
	max-width: 40rem;
	min-height: 3.33em;/* 60px 2行までは高さ変わらず */
	padding: .25em .5em;
	border: 1px solid var(--btn_color);
	border-radius: 5em;
	background-color: var(--btn_bg_color);
	position: relative;
	overflow: hidden;
}
.btn_primary.sp{
	display: none;
}
.btn_primary.transparent{
	--btn_color: #fff;
	--btn_bg_color: transparent;
}
.btn_primary.blue{
	--btn_color: var(--blue);
	--btn_bg_color: #fff;
	--btn_hover_bg: var(--blue);
}
.btn_primary.blue:hover{
	color: var(--btn_bg_color);
}
.btn_primary.blue02{
	--btn_color: #fff;
	--btn_bg_color: var(--font_blue);
	--btn_hover_bg: #fff;
	border-color: var(--btn_bg_color);
}
.btn_primary.blue02:hover{
	color: var(--font_blue);
}

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

.btn_primary .btn_text{
	display: block;
	width: fit-content;
	padding-right: 2em;
	position: relative;
	z-index: 1;
}
.btn_primary .btn_text::after{
	content: "\2192";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_primary{
		font-size: 1.4rem;
		max-width: 25rem;
	}
	.btn_primary.pc{
		display: none;
	}
	.btn_primary.sp{
		display: -webkit-box;
		display: flex;
	}
}


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



/************************************************************************
	その他
**************************************************************************/
main{
	overflow: hidden;
}
main.no_hidden{
	overflow: visible;
}

.hidden{
	overflow: hidden;
}

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


.block{
	display: block;
}
.dib, .dib_pc{
	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;
}

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


/* 
 ボックスシャドウ
-------------------------------------------------------- */
.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);
}

/* 
 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.popup_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;
	}
	.animation.clip.delay_pc{
		transition-delay: 0s !important;
	}
	
}


/************************************************************************
	クッキー
**************************************************************************/
#cookie-notice {
	font-size: 1.8rem;
	z-index: 999;
}
#cookie-notice .cn-button {
	color: #fff;
	background: var(--light_blue);
	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;
	}
}


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

header .inner{
	width: 98.4%;
	padding: .5rem 0 1rem;
	transition: padding .4s;
}
.in_mv header .inner{
	padding: 1.75rem 0;
}

header .hd_logo{
	flex-shrink: 0;
	width: 12rem;/* デザインサイズから85%くらい */
	transition: width .4s;
}
.in_mv header .hd_logo{
	width: 14.4rem;
}

header .hd_logo a{
	display: block;
	position: relative;
}

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

header .hd_logo a img{
	width: 100%;
	vertical-align: middle;
	transition: opacity .4s;
}
.in_mv header .hd_logo a img{
	opacity: 0;
}

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

	header .inner{
		padding: .25rem 0 .5rem;
	}
	.in_mv header .inner{
		padding: 1rem 0;
	}

	header .hd_logo{
		width: 10rem;/* ↓の約85% */
	}
	.in_mv header .hd_logo{
		width: 12rem;
	}
}


/* -------------
ナビ
-------------------------------------------------------- */
#hd_nav{
	-webkit-box-flex:1;
	flex-grow:1;

	font-family: var(--mincho);
	font-size: .85em;/* デザインサイズから85%くらい */
	text-shadow: 0 0 0 rgba(0, 0, 0, .2);
	padding-top: 0;
	margin-right: 1%;
	transition: font-size .4s, text-shadow .4s, padding-top .4s;
}
.in_mv #hd_nav{
	font-size: 1em;
	text-shadow: var(--text_shadow_primary);
	padding-top: 1rem;
}

#hd_nav > ul > li{
	margin: 0 .3em;
	position: relative;
}
#hd_nav > ul > li::before{
	content: "";
	display: block;
	width: 1px;
	height: 1em;
	background-color: #000;
	position: absolute;
	left: 0;
	top: calc(50% - .5em);
	transition: background-color .4s;
}
.in_mv #hd_nav > ul > li::before{
	background-color: #fff;
}
#hd_nav > ul > li:nth-of-type(1)::before{
	display: none;
}

#hd_nav li.hover_trigger::after{
	content: "";
	display: block;
	width: .8em;
	height: .5em;
	-webkit-mask: url(../img/cmn/hover_trigger_bk.svg) no-repeat center/contain;
	mask: url(../img/cmn/hover_trigger_bk.svg) no-repeat center/contain;
	background-color: #000;
	position: absolute;
	top: 100%;
	left: calc(50% - .25em);
	transition: top .4s, background-color .4s;
}
.in_mv #hd_nav li.hover_trigger::after{
	background-color: #fff;
}

#hd_nav li.hover_trigger:hover::after{
	top: calc(100% + .2em);
}

#hd_nav a{
	display: block;
	padding: .25em .85em;
	position: relative;
}
#hd_nav a::after{
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: #000;
	position: absolute;
	bottom: .25em;
	left: .85em;
	transition: width .4s;
}
.in_mv #hd_nav a::after{
	background-color: #fff;
}
#hd_nav a:hover::after{
	width: calc(100% - 1.7em);
}

#hd_nav .sub_nav{/* ホバーするまで非表示のナビ */
	width: 12em;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(255, 255, 255, .9);
	position: absolute;
	top: calc(100% + .75em);
	left: calc(50% - 6em);
	transition: .4s;
}
.in_mv #hd_nav .sub_nav{
	background-color: rgba(0, 25, 45, .3);
}

#hd_nav li.hover_trigger:hover .sub_nav{
	opacity: 1;
	visibility: visible;
	top: calc(100% + 1.25em);
}

#hd_nav li.hover_trigger .sub_nav a{
	width: fit-content;
	margin: 0 auto .25em;
}
@media screen and (max-width: 1024px) {
	#hd_nav li{
		margin-left: .2em;
	}
}

@media screen and (max-width: 768px) {
	#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: 5.5rem;
	height: 5.5rem;
	padding-left: .75rem;
	padding-bottom: .75rem;
	cursor: pointer;
	transition: .4s;
	position: fixed;
	top: 0;
	right: 1rem;
	z-index: 110;
}
.in_mv #hmb{
	top: 1rem;
}
.hmb_open #hmb{
	top: 0;
	right: 0;
}

#hmb:hover{
	opacity: .7;
}
#hmb::after{
	content: "";
	display: block;
	width: 120%;
	height: 120%;
	background-color: var(--light_blue);
	border-radius: 50%;
	opacity: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	transition: opacity .4s;
}
.hmb_open #hmb::after{
	opacity: 1;
}

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

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

.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(-45deg);
}
.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(45deg);
}

@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(0,0,0,.5);
	position: fixed;
	right: -120%;
	top: 0;
	z-index: 100;
	transition: .4s;
	overflow: auto;
}
.hmb_open #global{
	right: 0;
}

#global .container{
	width: 90%;
	height: fit-content;
	min-height: 100%;
	padding: 8rem 0;
	margin-left: auto;
	background-color: #1e2b3b;
}

.gl_nav{
	font-size: 1.5rem;
	margin-bottom: 2.5em;
}

.gl_nav a{
	display: block;
	position: relative;
}
.gl_nav a:hover{
	background-color: #2a3b51;
}

.gl_nav > ul > li{
	border-bottom: 1px solid #fff;
}
.gl_nav > ul > li > a{
	padding: .75em 1em;
}
.gl_nav > ul > li > a::after{
	content: "\2192";
	display: block;
	font-size: .9em;
	position: absolute;
	right: 2em;
	top: 50%;
	transform: translateY(-50%);
}

.gl_nav .has_child_box .parent{
	cursor: pointer;
	position: relative;
	padding: 1em 3em .75em 1em;
	transition: background-color .4s;
}
.gl_nav .has_child_box .parent:hover{
	background-color: #2a3b51;
}

.gl_nav .has_child_box .parent::before,
.gl_nav .has_child_box .parent::after{
	content: "";
	width: 1.2em;
	height: 1px;
	background-color: #fff;
	position: absolute;
	right: 1.75em;
	top: 50%;
}
.gl_nav .has_child_box .parent::after{
	transform: rotate(90deg);
	transition: transform .4s;
}
.gl_nav .has_child_box .parent.acc_open::after{
	transform: rotate(0);
}

.gl_nav .has_child_box > ul{
	display: none;
	font-size: .92em;
	padding-top: 0;
	padding-bottom: 1em;
}
.gl_nav .has_child_box > ul > li{
	margin-bottom: 0;
}
.gl_nav .has_child_box > ul > li a{
	padding: .5em .5em .5em 4em;
}
.gl_nav .has_child_box > ul > li a::before{
	content: "\3e";
	position: absolute;
	left: 2.5em;
}

#global .tel_wrapper{
	margin-bottom: 1em;
}
#global .tel_text{
	margin: 0 auto;
}

#global .mail_btn{
	margin: 0 auto;
}

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




/************************************************************************
	フッター
**************************************************************************/
/* お問い合わせ
-------------------------------------------------------- */
#ft_contact{
	color: #fff;
	background: url(../img/cmn/ft_contact.jpg) no-repeat center/cover;
}

#ft_contact .inner{
	width: 93.3%;
}

#ft_contact .top_title_primary .sub{
	font-size: 2em;
}

#ft_contact .flex_container{
	max-width: 1200px;
	padding-left: 4%;
	margin: 0 auto;
}

#ft_contact .wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}
#ft_contact .tel_wrapper{
	width: 48%;
	border-right: 2px solid #fff;
}
#ft_contact .contact_wrapper{
	width: 52%;
	padding-left: 4%;
}

.tel_text{
	display: block;
	line-height: 1.4;
	width: fit-content;
	padding: 0 .9em;
	position: relative;
}
.tel_text::before{
	content: ""; 
	display: block;
	width: .64em;
	height: .64em;
	background: url(../img/cmn/icon_tel_wh.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: calc(50% - .32em);
}

.mail_btn{
	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;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1.3;
	letter-spacing: .05em;
	width: 92%;
	max-width: 47rem;
	min-height: 4.44em;/* 80px */
	border: 1px solid var(--light_blue);
	border-radius: 5em;
	background-color: var(--light_blue);
	position: relative;
	overflow: hidden;
}
.mail_btn:hover{
	color: var(--light_blue);
}
.mail_btn::before{
	content: "";
	display: block;
	width: 0;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	transition: width .4s;
}
.mail_btn:hover::before{
	width: 100%;
}

.mail_btn .btn_text{
	display: block;
	text-align: center;
	width: 100%;
	padding: .25em 4em;
	position: relative;
	z-index: 1;
}
.mail_btn .btn_text::before,
.mail_btn .btn_text::after{
	content: "";
	display: block;
	position: absolute;
}
.mail_btn .btn_text::before{
	width: 1.8em;
	height: 1.5em;
	-webkit-mask: url(../img/cmn/icon_mail_wh.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_mail_wh.svg) no-repeat center/contain;
	background-color:  #fff;
	left: 2em;
	top: calc(50% - .75em);
	transition: background-color .4s;
}
.mail_btn:hover .btn_text::before{
	background-color: var(--light_blue);
}
.mail_btn .btn_text::after{
	content: "\2192";
    right: 2em;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 920px) {
	#ft_contact .flex_container{
		padding-left: 0;
	}
	
	#ft_contact .tel_wrapper{
		width: 50%;
	}
	#ft_contact .contact_wrapper{
		width: 50%;
		padding-left: 2%;
	}
}

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

	#ft_contact .top_title_primary .sub{
		font-size: 1.66em;
	}
	
	#ft_contact .tel_wrapper{
		width: 100%;
		padding-bottom: 2.5rem;
		margin-bottom: 3rem;
		border-right: none;
		position: relative;
	}
	#ft_contact .tel_wrapper::after{
		content: "";
		display: block;
		width: 100%;
		max-width: 25rem;
		height: 1px;
		margin: 0 auto;
		background-color: #fff;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
	}

	#ft_contact .contact_wrapper{
		width: 100%;
		padding-left: 0;
	}

	.mail_btn{
		font-size: 1.3rem;
		max-width: 30rem;
	}
	
}



/* アドレス
-------------------------------------------------------- */
#ft_main{
	color: #fff;
	background-color: #1e2b3b;
}

#ft_main .address_wrapper{
	width: 48rem;
}

#ft_main .ft_logo{
	width: 29rem;
	margin-bottom: 4.5rem;
}

#ft_main .to_map{
	display: inline-block;
}

@media screen and (max-width: 960px) {
	#ft_main .address_wrapper{
		width: 38rem;
	}
}

@media screen and (max-width: 768px) {
	#ft_main .address_wrapper{
		width: 96%;
		padding-bottom: 5.5rem;
		margin: 0 auto;
		text-align: center;
	}

	#ft_main .ft_logo{
		width: 20rem;
		margin: 0 auto 2.5rem;
	}
}


/* ナビ
-------------------------------------------------------- */
.ft_nav{
	font-size: 1.8rem;
	width: calc(96% - 48rem);
	max-width: 62rem;
	margin-right: 2%;
}
.ft_nav .box{
	width: fit-content;
}
.ft_nav .box a{
	display: block;
	position: relative;
}
.ft_nav .box a:hover{
	text-decoration: underline;
}
.ft_nav ul.box > li{
	margin-bottom: 1.5em;
}

.ft_nav .has_child_box > ul{
	font-size: .89em;
	padding-top: 1.25em;
}
.ft_nav .has_child_box > ul > li{
	margin-bottom: .75em;
}

.ft_nav .has_child_box > ul > li a{
	padding-left: 1.25em;
}
.ft_nav .has_child_box > ul > li a::before{
	content: "\3e";
	position: absolute;
	left: 0;
}

@media screen and (min-width: 769px) {
	.ft_nav .has_child_box > ul{
		display: block !important;
	}

	.ft_nav .has_child_box .parent{
		display: none !important;
	}
}

@media screen and (max-width: 960px) {
	.ft_nav{
		font-size: 1.6rem;
		width: calc(98% - 38rem);
		margin-right: 0;
	}
}


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

	.ft_nav{
		font-size: 1.5rem;
		width: 100%;
		max-width: none;
		border-bottom: 1px solid #fff;
	}

	.ft_nav .box{
		width: 100%;
	}
	.ft_nav .box a:hover{
		text-decoration: none;
		background-color: #2a3b51;
	}

	.ft_nav ul.box > li{
		margin-bottom: 0;
		border-top: 1px solid #fff;
	}
	.ft_nav ul.box > li > a{
		padding: .75em 3em .75em 1em;
		position: relative;
	}
	.ft_nav ul.box > li > a::after{
		content: "\2192";
		display: block;
		font-size: .9em;
		position: absolute;
		right: 2em;
		top: 50%;
		transform: translateY(-50%);
	}

	.ft_nav .has_child_box{
		border-top: 1px solid #fff;
	}
	.ft_nav .has_child_box .parent_link{
		display: none !important;
	}
	.ft_nav .has_child_box .parent{
		cursor: pointer;
		position: relative;
		padding: 1em 3em .75em 1em;
		transition: background-color .4s;
	}
	.ft_nav .has_child_box .parent:hover{
		background-color: #2a3b51;
	}
	.ft_nav .has_child_box .parent::before,
	.ft_nav .has_child_box .parent::after{
		content: "";
		width: 1.2em;
		height: 1px;
		background-color: #fff;
		position: absolute;
		right: 1.5em;
		top: 50%;
	}
	.ft_nav .has_child_box .parent::after{
		transform: rotate(90deg);
		transition: transform .4s;
	}
	.ft_nav .has_child_box .parent.acc_open::after{
		transform: rotate(0);
	}

	.ft_nav .has_child_box > ul{
		display: none;
		font-size: .92em;
		padding-top: 0;
		padding-bottom: 1em;
	}
	.ft_nav .has_child_box > ul > li{
		margin-bottom: 0;
	}
	.ft_nav .has_child_box > ul > li a{
		padding: .5em .5em .5em 4em;
	}
	.ft_nav .has_child_box > ul > li a::before{
		left: 2.5em;
	}
}

/* コピーライト
-------------------------------------------------------- */
footer .copyright{
	text-align: right;
	width: 98%;
	padding-bottom: 1em;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	footer .copyright{
		text-align: center;
		padding: 1em 0;
	}
}


/************************************************************************
	ローダー
**************************************************************************/
#loader{
	color: #fff;
	background: url(../img/cmn/loader_bg.jpg) no-repeat center/cover;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

#loader .text_container{
	height: 110rem;/* TOP MVと高さを揃える */
	position: relative;
}

#loader .text_wrapper .main_text .main{
	opacity: 0;
	animation: faderight .8s ease 1.6s forwards;
}
#loader .text_wrapper .main_text .sub{
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	animation: loader_clip 1s ease .6s forwards;
}
/* 位置調整の記述はTOP MVへ */

@media (max-width: 768px) {
	#loader .text_container{
		height: 65rem;/* TOP MVと高さを揃える */
	}
}

@keyframes loader_clip {
	0% {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}
	100% {
		-webkit-clip-path: inset(0);
		clip-path: inset(0);
	}
}


/************************************************************************
	TOP
**************************************************************************/
/* ----------
	TOP MV
------------------------------------------------------------------ */
#top_mv{
	height: 110rem;
	color: #fff;
	position: relative;
	overflow: hidden;
}
#top_mv::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(30, 106, 169, .2);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
#top_mv #mv_movie{
	width: 100%;
	height: 102%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: -1%;
}
.deco img{
	width: 100%;
}
#top_mv .deco{
	position: absolute;
	z-index: 1;
}
#top_mv .deco01{
	width: 67rem;
	top: 0;
	left: 0;
}
#top_mv .deco02{
	width: 103rem;
	bottom: -9rem;
	right: 0;
}

#top_mv .text_wrapper,
#loader .text_wrapper{
	position: absolute;
	left: 9.5%;
	top: 35%;
	z-index: 1;
}
#top_mv .main_text,
#loader .main_text{
	font-size: 4.2rem;
	margin-bottom: .3em;
}
#top_mv .main_text .main,
#loader .main_text .main{
	width: 17.1em;/* 718px */
	margin-bottom: .45em;
}
#top_mv .main_text .sub,
#loader .main_text .sub{
	letter-spacing: .28em;
	text-shadow: var(--text_shadow_primary);
	margin-left: -.1em;
}

#top_mv .sub_text{
	font-size: 1.8rem;
	letter-spacing: .05em;
	line-height: 2.4;
}

#top_mv .scroll_text{
	font-size: 1.4rem;
	letter-spacing: .1em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;/* 英数字は縦に */
	padding-top: 19em;
	padding-bottom: 3.5em;
	padding-right: .5em;
	position: absolute;
	left: 1.5%;
	bottom: 9%;
	overflow: hidden;
}
#top_mv .scroll_text::before{
	content: "";
	display: block;
	width: 6px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	right: 0;
	top: 0;
}
#top_mv .scroll_text::after{
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #fff;
	position: absolute;
	right: 2px;
	bottom: 0;
}

@media screen and (max-width: 768px) {
	#top_mv{
		height: 65rem;
	}
	#top_mv .deco01{
		width: 100%;
	}
	#top_mv .deco02{
		width: 97%;
		bottom: -9rem;
		right: 0;
	}

	#top_mv .text_wrapper,
	#loader .text_wrapper{
		width: 100%;
		left: 0;
		right: 0;
		top: 38%;
		margin: 0 auto;
	}

	#top_mv .main_text,
	#loader .main_text{
		font-size: 2rem;
		margin-bottom: .5em;
		text-align: center;
	}
	#top_mv .main_text .main,
	#loader .main_text .main{
		width: 14.4em;
		margin: 0 auto .6em;
	}
	#top_mv .main_text .sub,
	#loader .main_text .sub{
		padding-left: .33em;
		text-align: center;
		letter-spacing: .1em;
	}

	#top_mv .sub_text{
		font-size: 1.3rem;
		line-height: 2.2;
		text-align: center;
	}

	#top_mv .scroll_text{
		display: none;
	}
}

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


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


/* ----------
	TOP Achievements
------------------------------------------------------------------ */
#top_achievements{
	position: relative;
}

.jag{
	width: 100%;
	position: absolute;
	z-index: 1;
}
.jag img{
	width: 100%;
}
#top_achievements .jag{
	bottom: calc(100% - 1px);
	right: 0;
}

#top_achievements .inner{
	padding: 5rem 0 7rem;
}

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

/* 強み3つ
-------------------------------------------------------- */
#top_achievements .achievements_list li{
	color: #fff;
	width: calc(100% / 3);
	height: 40rem;
	background: url(../img/top/achievements01.jpg) no-repeat center/cover;
	position: relative;
}
#top_achievements .achievements_list li:nth-of-type(2){
	margin-top: 2rem;
	background-image: url(../img/top/achievements02.jpg);
}
#top_achievements .achievements_list li:nth-of-type(3){
	background-image: url(../img/top/achievements03.jpg);
}

#top_achievements .achievements_list li .wrap{
	width: 90%;
	margin: 0 auto;
	position: absolute;
	top: 25%;
	left: 0;
	right: 0;
}

#top_achievements .achievements_list li .icon{
	width: 6rem;
	height: 6rem;
	margin: 0 auto 2rem;
	background: url(../img/top/achievements_icon01.svg) no-repeat center/contain;
}
#top_achievements .achievements_list li:nth-of-type(1) .icon{
	background-size: 95%;/* 57px */
}
#top_achievements .achievements_list li:nth-of-type(2) .icon{
	background-image: url(../img/top/achievements_icon02.svg);
}
#top_achievements .achievements_list li:nth-of-type(3) .icon{
	background-image: url(../img/top/achievements_icon03.svg);
	background-size: 91.6%;/* 55px */
}

#top_achievements .achievements_list li h3{
	font-family: var(--mincho);
	font-size: 3.6rem;
	font-weight: 200;
	text-align: center;
	margin-bottom: .45em;
}
#top_achievements .achievements_list li p{
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.5;
}

@media screen and (max-width: 960px) {
	#top_achievements .achievements_list li h3{
		font-size: 3.2rem;
	}
	#top_achievements .achievements_list li p{
		font-size: 1.7rem;
	}
}

@media screen and (max-width: 768px) {
	#top_achievements .achievements_list li{
		width: 100%;
		height: 15rem;
		margin-bottom: .6rem;
		background: url(../img/top/achievements01.jpg) no-repeat center/cover;
		position: relative;
	}
	#top_achievements .achievements_list li:nth-of-type(2){
		margin-top: 0;
	}
	#top_achievements .achievements_list li:nth-last-of-type(1){
		margin-bottom: 0;
	}
	#top_achievements .achievements_list li .wrap{
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		align-items: center;
		width: 88%;
		height: 100%;
		top: 0;
	}

	#top_achievements .achievements_list li .icon{
		width: 3rem;
		height: 3rem;
		margin: 0;
	}

	#top_achievements .achievements_list li .text_box{
		width: calc(96% - 3rem);
	}
	#top_achievements .achievements_list li h3{
		font-size: 2.4rem;
		text-align: left;
		line-height: 1.3;
		margin-bottom: .25em;
	}
	#top_achievements .achievements_list li p{
		font-size: 1.4rem;
		text-align: left;
	}
}

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


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


/* ----------
	TOP 選ばれる理由
------------------------------------------------------------------ */
#top_reason .jag{
	width: 78%;
	position: static;
}
#top_reason_bg{
	background-image: url(../img/top/reason_bg.jpg);
	background-repeat: no-repeat;
	background-position-y: 0%;
	background-size: 100%;
	position: relative;
}
#top_reason_bg::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 25, 45, .6);
	position: absolute;
	left: 0;
	top: 0;
}

#top_reason .inner{
	padding: 36rem 0 34rem;
	position: relative;
	z-index: 1;
}

#top_reason .inner::before,
#top_reason .inner::after{
	content: "";
	display: block;
	background-color: #fff;
	position: absolute;
	top: 10rem;
}
#top_reason .inner::before{
	width: 6px;
	height: 2px;
	left: calc(50% - 3px);
}
#top_reason .inner::after{
	width: 2px;
	height: 20rem;
	left: calc(50% - 1px);
}

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

	#top_reason .inner{
		padding: 19.5rem 0 12.5rem;
		position: relative;
		z-index: 1;
	}

	#top_reason .inner::before,
	#top_reason .inner::after{
		top: 5.5rem;
	}
	#top_reason .inner::before{
		width: 3px;
		height: 1px;
		left: calc(50% - 1.5px);
	}
	#top_reason .inner::after{
		width: 1px;
		height: 10rem;
		left: calc(50% - .5px);
	}

	#top_reason .text{
		line-height: 2.3;
	}
}

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


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

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


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

/* ----------
	TOP 自動スライダー
------------------------------------------------------------------ */
#top_bridge{
	background-color: #e7ecf2;
	position: relative;
}

#top_bridge .jag{
	width: 100%;
	top: calc(100% - 1px);
	left: 0;
}

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

/* CSSスライダー
-------------------------------------------------------- */
#top_bridge .slider_wrapper{
	overflow: hidden;
}
#top_bridge .slider_wrapper{
	display: -webkit-box;
	display: flex;
}

#top_bridge .slider_wrapper .slider{
	display: -webkit-box;
	display: flex;
	animation: slider-left 45s infinite linear both;
}

#top_bridge .slider .slider_item{
	width: 70rem;
	margin: 0 1.5rem;
}
#top_bridge .slider .slider_item:nth-of-type(2n+1){
	margin-top: 6rem;
}

@keyframes slider-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 768px) {
	#top_bridge .slider_wrapper{
		padding: 1.5rem 0;
	}

	#top_bridge .slider .slider_item{
		width: 35rem;
		margin: 0 .8rem;
	}
	#top_bridge .slider .slider_item:nth-of-type(2n+1){
		margin-top: 3rem;
	}
}


/* ----------
	TOP Technology
------------------------------------------------------------------ */
#top_technology{
	color: #fff;
	padding: calc(15% + 15rem) 0 calc(12% + 6rem);
	background: url(../img/top/technology_bg.jpg) no-repeat center/cover;
	position: relative;
}

@media screen and (max-width: 768px) {
	#top_technology{
		color: #fff;
		padding: calc(14% + 5.5rem) 0 calc(15% + 4.5rem);
		background-image: url(../img/top/technology_bg_sp.jpg);
	}
}

/* 左
-------------------------------------------------------- */
#top_technology .text_container{
	width: 40rem;
	padding-top: 2%;
}

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

	#top_technology .text_container .top_title_primary{
		text-align: center;
	}
}

/* 右
-------------------------------------------------------- */
#top_technology .swiper_container{
	width: calc(96% - 40rem);
	max-width: 79rem;
	position: relative;
}

#top_technology .swiper-slide{
	padding-right: 1rem;
	padding-bottom: 1rem;
	position: relative;
}
#top_technology .swiper-slide::after{
	content: "";
	display: block;
	width: calc(100% - 1rem);
	height: 7rem;
	background-color: #000;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

#top_technology .swiper-slide .name{
	font-size: 1.8rem;
	line-height: 1.4;
	padding: .75em 2.4em;
	width: fit-content;
	max-width: 80%;
	background-color: #000;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}
#top_technology .swiper-slide .name::before{
	content: "";
	display: block;
	width: 1.6em;
	height: calc(100% + .5em);
	background-color: inherit;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

#top_technology .btn_wrapper{
	max-width: 12rem;
	margin-left: auto;
	margin-top: 4.5rem;
}

.swiper-button-prev,
.swiper-button-next{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	width: 5rem;
	height: 5rem;
	border: 1px solid #fff;
	border-radius: 50%;
	transition: background-color .4s;
}
#top_technology .swiper-button-prev,
#top_technology .swiper-button-next{
	background: url(../img/cmn/swiper_arrow01wh.svg) no-repeat center/24%;
	position: static;
}

.swiper-button-next{
	transform: scale(-1, 1);
}

#top_technology .swiper-button-prev:hover,
#top_technology .swiper-button-next:hover{
	background-color: rgba(0, 25, 45, .6);
}

.swiper-button-prev::after,
.swiper-button-next::after{
	display: none;
}

@media screen and (max-width: 768px) {
	#top_technology .swiper_container{
		width: 100%;
		max-width: none;
		margin-bottom: 3rem;
	}

	#top_technology_swiper{
		margin: 0 var(--break_through);
	}

	#top_technology .swiper-slide{
		padding-right: 0;
		padding-bottom: .5rem;
	}
	#top_technology .swiper-slide::after{
		width: 100%;
		height: 1rem;
	}

	#top_technology .swiper-slide .name{
		font-size: 1rem;
		line-height: 1.4;
		padding: .85em 2.25em;
		width: fit-content;
		max-width: 80%;
		background-color: #000;
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: 1;
	}
	#top_technology .swiper-slide .name::before{
		content: "";
		display: block;
		width: 1.6em;
		height: calc(100% + .5em);
		background-color: inherit;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: -1;
	}

	#top_technology .btn_wrapper{
		max-width: 8rem;
		margin-top: 4.5rem;
	}
	.swiper-button-prev,
	.swiper-button-next{
		width: 3.5rem;
		height: 3.5rem;
	}
	

}

/* ----------
	TOP Equipment
------------------------------------------------------------------ */
#top_equipment{
	padding-top: 12%;
	margin-top: -12%;
	position: relative;
}
#top_equipment .jag{
	top: 2px;
	left: 0;
}

#top_equipment .guidance{
	line-height: 2.3;
}
@media screen and (max-width: 768px) {
	#top_equipment{
		padding-top: 14.8%;
		margin-top: -14.8%;
	}

	#top_equipment .top_title_primary{
		text-align: center;
	}
	#top_equipment .guidance{
		width: 92%;
		margin: 0 auto;
	}
}

/* スワイパー
-------------------------------------------------------- */
.top_equipment_swiper_container{
	padding-top: 12rem;
	position: relative;
}

#top_equipment_swiper{
	overflow: visible;
	margin-bottom: 8rem;
}

#top_equipment_swiper .swiper-slide{
	height: 44rem;
	position: relative;
	overflow: hidden;
	transition: width 1s, transform 1s;
}
#top_equipment_swiper .swiper-slide-active{
	transform: translateY(-5rem);
}
@media screen and (min-width: 769px) {
	#top_equipment_swiper .swiper-slide{
		width: 31.3333% !important;/* JSでslidesPerView: 3, にしたので 100%/3で 33.333% margin1%ずつとるので-2%で 31.3333% */
		margin: 0 1%;
	}
	#top_equipment_swiper .swiper-slide-active{
		width: 62.6666% !important;/* 今回は↑の2倍に */
	}
}

#top_equipment_swiper .swiper-slide a{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#top_equipment_swiper .swiper-slide a::after{
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	background-image: -webkit-linear-gradient(900deg,rgba(0, 0, 0, 0) 50%, rgba(0, 104, 183, .7) 100%);
	background-image: linear-gradient(180deg,rgba(0, 0, 0, 0) 50%, rgba(0, 104, 183, .7) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
}

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

#top_equipment_swiper .swiper-slide p{
	font-size: 1.8rem;
	color: #fff;
	line-height: 1.5;
	padding: .5em .75em;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}


@media screen and (max-width: 768px) {
	.top_equipment_swiper_container{
		padding-top: 6rem;
	}

	#top_equipment_swiper{
		width: 94%;
		margin-left: auto;
		margin-right: var(--break_through);
		margin-bottom: 6rem;
	}

	#top_equipment_swiper .swiper-slide{
		height: auto;
	}
	#top_equipment_swiper .swiper-slide::before{
		content: "";
		display: block;
		padding-top: 66%;
	}

	#top_equipment_swiper .swiper-slide-active{
		transform: translateY(-2rem);
	}

	#top_equipment_swiper .swiper-slide p{
		font-size: 1.4rem;
		padding: .5em;
	}
	
}

/* スワイパーボタン・ページネーション
-------------------------------------------------------- */
.top_equipment_swiper_container .btn_wrapper{
	width: 100%;
	padding-left: 12rem;
	margin-left: auto;
	position: relative;
}

.top_equipment_swiper_container .swiper-button-prev,
.top_equipment_swiper_container .swiper-button-next{
	border: 1px solid #14578f;
	transition: background-color .4s;
}
.top_equipment_swiper_container .swiper-button-prev:hover,
.top_equipment_swiper_container .swiper-button-next:hover{
	background-color: #14578f;
}

.top_equipment_swiper_container .swiper-button-prev::after,
.top_equipment_swiper_container .swiper-button-next::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	-webkit-mask: url(../img/cmn/swiper_arrow01wh.svg) no-repeat center/24%;
	mask: url(../img/cmn/swiper_arrow01wh.svg) no-repeat center/24%;
	background-color: #14578f;
	transition: background-color .4s;
}
.top_equipment_swiper_container .swiper-button-prev:hover::after,
.top_equipment_swiper_container .swiper-button-next:hover::after{
	background-color: #fff;
}

.top_equipment_swiper_container .swiper-button-prev{
	left: 0;
}
.top_equipment_swiper_container .swiper-button-next{
	left: 6.5rem;
}

.top_equipment_swiper_container .swiper-pagination{
	display: -webkit-box;
	display: flex;
	max-width: 110rem;
	width: 96%;
	margin-left: auto;
	position: static;
}
.top_equipment_swiper_container .swiper-pagination .swiper-pagination-bullet{
	-webkit-box-flex:1;
	flex-grow:1;
	display: block;
	width: auto;
	height: 2px;
	margin: 0;
	border-radius: 0;
	background-color: #dadada;
	opacity: 1;
	transition: background-color 1s;
}
.top_equipment_swiper_container .swiper-pagination .swiper-pagination-bullet-active{
	background-color: var(--font_blue);
}

@media screen and (max-width: 768px) {
	.top_equipment_swiper_container .btn_wrapper{
		padding-left: 8rem;
	}

	.top_equipment_swiper_container .swiper-button-next{
		left: 4.5rem;
	}
}

/* ----------
	TOP 会社情報・採用情報
------------------------------------------------------------------ */
#top_to_company .btn_list li{
	width: 48.2%;
}
#top_to_company .btn{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	padding: 1%;
	box-shadow: 0 0 2rem -.5rem rgba(5, 125, 215, .5);
}
#top_to_company .btn:hover{
	box-shadow: 0 0 .2rem 0 rgba(5, 125, 215, .5);
	transform: translateY(.5rem);
}

#top_to_company .btn .img{
	width: 42%;
}
#top_to_company .btn .text_box{
	width: 55%;
	margin: auto;
}
#top_to_company .btn .top_title_primary{
	font-size: min(3rem, 2.1vw);/* 1410pxでfz30px */
	text-align: center;
}

@media screen and (max-width: 768px) {
	#top_to_company .btn_list li{
		width: 100%;
	}
	#top_to_company .btn{
		max-width: 44rem;
		margin-bottom: 1.5rem;
		box-shadow: 0 0 1rem -.3rem rgba(5, 125, 215, .5);
	}
	#top_to_company .btn:hover{
		box-shadow: 0 0 .2rem 0 rgba(5, 125, 215, .5);
		transform: translateY(.3rem);
	}

	#top_to_company .btn .top_title_primary{
		font-size: 4vw;/* 750pxでfz30px */
	}
}

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


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

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


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

/************************************************************************
	下層共通
**************************************************************************/
/* ページタイトル
-------------------------------------------------------- */
#lower_head{
	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: 100%;
	min-height: 40rem;
	padding: 6rem 1rem 3rem;
	background: url(../img/head/equipment.jpg) no-repeat center/cover;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#lower_head::before{
	content: "";
	display: block;
	width: 64rem;
	height: 26rem;
	background: url(../img/head/deco.png) no-repeat top left/contain;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.lower_title{
	font-size: 2rem;
	color: #fff;
	text-align: center;
}
.lower_title .sub{
	font-size: 2.4em;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: capitalize;
}
.lower_title .main{
	font-family: var(--mincho);
	font-weight: 200;
	letter-spacing: .05em;
}

/* 加工技術 */ 
#technology #lower_head{
	background-image: url(../img/head/technology.jpg);
}
/* お問い合わせ */
#contact #lower_head{
	background-image: url(../img/head/contact.jpg);
}
/* 会社情報 */
#company #lower_head{
	background-image: url(../img/head/company.jpg);
}
/* 採用情報 */
#recruit #lower_head{
	background-image: url(../img/head/recruit.jpg);
}
/* 選ばれる理由 */
#achievements #lower_head{
	background-image: url(../img/head/achievements.jpg);
}

@media screen and (max-width: 768px) {
	#lower_head{
		min-height: 30rem;
		padding: 4rem 1rem 2rem;
		background-image: url(../img/head/equipment_sp.jpg);
	}
	#lower_head::before{
		width: 100%;
		height: auto;
		padding-top: 42.5%;
		background-image: url(../img/head/deco_sp.png);
	}

	.lower_title .sub{
		font-size: 1.8em;
	}

	/* 加工技術 */
	#technology #lower_head{
		background-image: url(../img/head/technology_sp.jpg);
	}
	/* お問い合わせ */
	#contact #lower_head{
		background-image: url(../img/head/contact_sp.jpg);
	}
	/* 会社情報 */
	#company #lower_head{
		background-image: url(../img/head/company_sp.jpg);
	}
	/* 採用情報 */
	#recruit #lower_head{
		background-image: url(../img/head/recruit_sp.jpg);
	}
	/* 選ばれる理由 */
	#achievements #lower_head{
		background-image: url(../img/head/achievements_sp.jpg);
	}
}

/* パンクズ （無しで進める）
<ol id="breadcrumb" class="inner pc1200 trigger fade">
	<li><a href="./">ホーム</a></li>
	<li>会社情報</li>
</ol>
-------------------------------------------------------- */
#breadcrumb{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	padding: .5rem 0;
	position: relative;
	z-index: 2;
}

#breadcrumb li{
	padding-left: 1em;
	margin-bottom: 1rem;
	position: relative;
}
#breadcrumb li.omission{
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#breadcrumb li:nth-of-type(1){
	padding-left: 0;
}

#breadcrumb li::before{
	content: "\3e";
	display: inline-block;
	position: absolute;
	left: .25em;
	top: calc(50% - .85em);
}
#breadcrumb li:nth-of-type(1)::before{
	display: none;
}

#breadcrumb li a{
	display: block;
	text-decoration: underline;
}
#breadcrumb li a:hover{
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	#breadcrumb{
		font-size: 1.3rem;
		padding-top: 1.5rem;
	}
	
}

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


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


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


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



/************************************************************************
	設備紹介
**************************************************************************/
/* 2カラム
-------------------------------------------------------- */
.column2_outer{
	position: relative;
	z-index: 1;
}
.column2_outer::before,
.column2_outer::after{
	content: "";
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
}
.column2_outer::before{
	background-color: #e7ecf2;
	left: 0;
}
.column2_outer::after{
	background-color: #fff;
	right: 0;
}

.column2_inner{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	max-width: 1600px;
	margin-inline: auto;
}

@media screen and (max-width: 1024px) {
	.column2_outer::before,
	.column2_outer::after{
		display: none;
	}

	.column2_inner{
		display: block;
	}
}

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

/* サイドバー
-------------------------------------------------------- */
.column2_outer aside{
	overflow: auto;
	width: 30rem;
	max-height: 100vh;
	padding: 7rem 0;
	background-color: #e7ecf2;
	position: -webkit-sticky;
	position: sticky;
	top: 3rem;
}
.column2_outer aside .inner{
	width: fit-content;
	max-width: 96%;
	margin-right: 0;
}

.aside_nav li{
	line-height: 1.5;
	margin-bottom: .5em;
}
.aside_nav li a{
	display: block;
	padding: .5em 3.5em .5em 1.25em;
	border: 1px solid transparent;
	border-right: none;
	border-radius: 5em 0 0 5em;
	position: relative;
}
.aside_nav li a:hover{
	color: #036fbc;
	border-color: #036fbc;
	background-color: #fff;
}
.aside_nav li a::after{
	content: "\2192";
	display: block;
	font-size: 1.25em;
	color: transparent;
	position: absolute;
	right: .75em;
	top: calc(50% - .75em);
	transition: color .4s;
}
.aside_nav li a:hover::after{
	color: #036fbc;
}

@media screen and (max-width: 1024px) {
	.column2_outer aside{
		overflow: visible;
		width: 100%;
		max-height: none;
		padding: 4rem 0;
		position: static;
		top: auto;
	}

	.column2_outer aside .inner{
		width: 94.6%;
		max-width: 70rem;
		margin-right: auto;
	}

	.aside_nav{
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
	}
	.aside_nav li{
		width: fit-content;
	}
	.aside_nav li a{
		padding: .5em 1em .5em 1.5em;
		border: none;
		border-radius: 0;
	}
	.aside_nav li a:hover{
		background-color: transparent;
	}
	.aside_nav li a::after{
		content: "-";
		display: block;
		font-size: 1em;
		color: inherit;
		right: auto;
		left: .5em;
	}
}

@media screen and (max-width: 768px) {
	.column2_outer aside{
		padding: 2.5rem 0;
	}
}


/* 右側コンテンツ タイトル
-------------------------------------------------------- */
.column2_outer .right_container{
	width: calc(100% - 30rem);
	max-width: 1200px;
	background-color: #fff;
}
.column2_outer .right_container .inner{
	width: 94.6%;
	max-width: 1000px;
}

.has_aside_sec{
	padding: 3rem 0 5rem;
}
.has_aside_sec_title{
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: .25em;
	margin-bottom: .75em;
	border-bottom: 1px solid #000;
}

@media screen and (max-width: 1024px) {
	.column2_outer .right_container{
		width: 100%;
		max-width: none;
	}
	.column2_outer .right_container .inner{
		width: 94.6%;
		max-width: none;
	}
}

@media screen and (max-width: 1024px) {
	.has_aside_sec{
		padding: 2rem 0 4rem;
	}
	.has_aside_sec_title{
		font-size: 1.8rem;
	}
}


/* 右側 テーブル
-------------------------------------------------------- */
.table_wrapper{
	overflow: auto;
}
.has_aside_sec_table{/* .equipment_table_container　= <dl>構造 */
	min-width: 60rem;
}

.equipment_thead,
.equipment_tbody{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

.equipment_tbody .wrapper{
	display: -webkit-box;
	display: flex;
	width: 50%;
}

.has_aside_sec_table thead th,
.equipment_thead > li,
.has_aside_sec_table tbody th,
.has_aside_sec_table tbody td,
.equipment_tbody dt,
.equipment_tbody dd{
	border: 1px solid #bfbfbf;
}
.equipment_thead > li:not(:nth-of-type(1)){
	border-left: none;
}
.equipment_tbody .wrapper:not(:nth-of-type(2n+1)) dt,
.equipment_tbody dd{
	border-left: none;
}
.equipment_tbody dt,
.equipment_tbody dd{
	border-top: none;
}

.has_aside_sec_table thead th,
.equipment_thead > li{
	padding: .25em .75em;
	font-weight: 500;
	background-color: #f4f4f4;
}

.has_aside_sec_table tbody tr th,
.has_aside_sec_table tbody tr td,
.equipment_tbody dt,
.equipment_tbody dd{
	padding: .7em .75em;
}

.equipment_thead > li:nth-of-type(2n+1){
	width: calc(50% - 5em);
}
.equipment_tbody dt{
	width: calc(100% - 5em);
}

.equipment_thead > li:nth-of-type(2n),
.equipment_tbody dd{
	width: 5em;
}
.equipment_tbody dd{
	text-align: center;
}

.equipment_thead > .control{
	display: none;
}

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

	.equipment_tbody .wrapper{
		width: 100%;
	}

	.equipment_thead > li:nth-of-type(2n+1),
	.equipment_tbody dt{
		width: calc(100% - 4.75em);
	}
	.equipment_tbody .wrapper:not(:nth-of-type(2n+1)) dt{
		border-left: 1px solid #bfbfbf;
	}

	.equipment_thead > li:nth-of-type(2n),
	.equipment_tbody dd{
		width: 4.75em;
	}
}


/* 右側 スワイパー
-------------------------------------------------------- */
.equipment_swiper,
.equipment_img_container{
	margin: 3rem 0;
}
.equipment_swiper::before{
	pointer-events: none;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: -webkit-linear-gradient(0deg, rgba(30, 43, 59, .9) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0) 85%, rgba(30, 43, 59, .9) 100%);
	background-image: linear-gradient(90deg, rgba(30, 43, 59, .9) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0) 85%, rgba(30, 43, 59, .9) 100%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.equipment_swiper .swiper-slide,
.equipment_img{
	position: relative;
	background-color: #fafafa;
}
.equipment_img{
	width: 48.75%;
	margin-inline: auto;
}
.equipment_swiper .swiper-slide::before,
.equipment_img::before{
	content: "";
	display: block;
	width: 100%;
	padding-top: 76%;
}
.equipment_swiper .swiper-slide img,
.equipment_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}
.equipment_swiper .swiper-slide img.vertical,
.equipment_img img.vertical{
	object-fit: contain;
}
.equipment_swiper .swiper-button-prev, .equipment_swiper .swiper-button-next{
	background: rgba(255,255,255,.2) url(../img/cmn/swiper_arrow01wh.svg) no-repeat center / 24%;
}
.equipment_swiper .swiper-button-prev:hover, .equipment_swiper .swiper-button-next:hover{
	background: rgba(255,255,255,.5) url(../img/cmn/swiper_arrow01wh.svg) no-repeat center / 24%;
}

@media screen and (max-width: 1024px) {
	.equipment_swiper::before{
		background-image: -webkit-linear-gradient(0deg, rgba(30, 43, 59, .9) 0%, rgba(255,255,255,0) 13%, rgba(255,255,255,0) 87%, rgba(30, 43, 59, .9) 100%);
		background-image: linear-gradient(90deg, rgba(30, 43, 59, .9) 0%, rgba(255,255,255,0) 13%, rgba(255,255,255,0) 87%, rgba(30, 43, 59, .9) 100%);
	}

	.equipment_img{
		width: 70.3%;
	}
}
@media screen and (max-width: 768px) {
	.equipment_swiper .swiper-button-prev{
		left: 5px;
	}
	.equipment_swiper .swiper-button-next{
		right: 5px;
	}

}


/************************************************************************
	加工技術
**************************************************************************/
#technology .has_aside_sec{
	padding: 3rem 0;
}
.has_aside_sec .child_wrapper{
	padding: 3rem 0;
}

.has_aside_sec .child_wrapper h3{
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: .75em;
}

.technology_table tbody tr td:nth-child(1){
	width: 5.75em;
}
.technology_table tbody tr td:nth-child(2),
.technology_table tbody tr td:nth-child(3){
	width: 6.25em;
}
.technology_table tbody tr td:nth-child(4){
	width: calc(100% - 5.75em - 6.25em - 6.25em);
}

@media screen and (max-width: 1024px) {
	#technology .has_aside_sec{
		padding: 2rem 0;
	}

}

@media screen and (max-width: 768px) {
	.has_aside_sec .child_wrapper{
		padding: 2rem 0;
	}

	.has_aside_sec .child_wrapper h3{
		font-size: 1.6rem;
	}

}


/* ポップアップリスト
-------------------------------------------------------- */
.has_aside_sec .popup_list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}
.has_aside_sec .popup_list li{
	cursor: pointer;
	width: 20%;
	position: relative;
	border: 1px solid #bfbfbf;
	transition: opacity .4s;
}
.has_aside_sec .popup_list li:hover{
	opacity: .7;
}

.has_aside_sec .popup_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}
.has_aside_sec .popup_list li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}

.has_aside_sec .popup_list li::after{
	content: "";
	display: block;
	width: 18%;
	padding-top: 18%;
	background: url(../img/cmn/icon_popup02.svg) no-repeat bottom right/contain;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.has_aside_sec .popup_list li{
		width: calc(100% / 3);
	}
}


/* モーダル表示
-------------------------------------------------------- */
.popup_container{
	display: -webkit-box;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 12rem 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;
}
.popup_container.active{/* JSでクラス着脱 */
	opacity: 1;
	visibility: visible;
}

.popup_wrapper{
	max-width: 800px;
	width: calc(96% - 15rem);
	height: fit-content;
	margin: auto;
	transition: .3s;
	position: relative;
	z-index: 200;
}

.popup_wrapper .popup_box{
	padding: 2rem 0 4rem;
}
.popup_wrapper .popup_box .border_img{
	border: 5px solid #fff;
}
.popup_wrapper .popup_box .border_img img{
	width: 100%;
}

.popup_container .btn_close{
	width: 4rem;
	height: 4rem;
	background: url(../img/cmn/close.svg) no-repeat center/66%;
	border: 2px solid #fff;
	position: absolute;
	top: 15%;
	right: -7.5rem;
	z-index: 2;
}
.popup_container .btn_close:hover{
	background-color: rgba(255, 255, 255, .5);
}

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

	.popup_wrapper{
		width: 96%;
	}


	.popup_wrapper .popup_box{
		padding: 3rem 0;
	}
	.popup_wrapper .popup_box .border_img{
		border-width: 3px;
	}

	.popup_container .btn_close{
		width: 3.5rem;
		height: 3.5rem;
		top: -2rem;
		right: 2%;
	}
}

/* スワイパー
-------------------------------------------------------- */
.popup_container .swiper{
	padding: 2rem 0 4rem;
}

.popup_container .swiper-wrapper{
	-webkit-box-align: center;
	align-items: center;
}

.popup_container .swiper .swiper-slide{
	border: 5px solid #fff;
}
.popup_container .swiper .swiper-slide img{
	width: 100%;
}

.popup_container .swiper-button-next, .popup_container .swiper-button-prev{
	background: rgba(255, 255, 255, .2) url(../img/cmn/swiper_arrow01wh.svg) no-repeat center / 24%;
	top: 47%;
}
.popup_container .swiper-button-prev{/* 前へ */
	left: -7.5rem;
}
.popup_container .swiper-button-next{/* 次へ */
	right: -7.5rem;
	transform: scale(-1, 1);
}
.popup_container .swiper-button-next:hover, .popup_container .swiper-button-prev:hover{
	background-color: rgba(255, 255, 255, .5);
}

.popup_container .swiper-button-prev::after, .popup_container .swiper-button-next::after{
	content: '';
	display: none;
}

.popup_container .swiper-pagination-bullets{
	bottom: 0;
}
.popup_container .swiper-pagination-bullet{
	background-color: #fff;
}

@media screen and (max-width: 768px) {
	.popup_container .swiper{
		padding: 3rem 0;
	}
	.popup_container .swiper .swiper-slide{
		border-width: 3px;
	}
	.popup_container .swiper-button-next, .popup_container .swiper-button-prev{
		display: none;
	}
}

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


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


/************************************************************************
	お問い合わせ
**************************************************************************/
#contact .form_area{
	background-color: #f7f7f7;
}

#contact .form_area h2{
	line-height: 1.5;
	padding-bottom: .5em;
	border-bottom: 1px solid #000;
}

#contact .form_area .more_inner{
	width: 94.6%;
	max-width: 1100px;
	margin-inline: auto;
}

.form_tbl{
	margin-bottom: 1rem;
}
.form_tbl .wrapper{
	padding: 1.5rem 0;
}

.form_tbl dt{
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: .4em;
}
.form_tbl dt .required_mark{
	color: var(--red);
}

.form_tbl dd{
	font-size: 1.8rem;
}
.form_tbl dd.file_dd{
	font-size: 1.6rem;
	padding-top: .75em;
}

@media screen and (max-width: 768px) {
	.form_tbl{
		margin-bottom: .75rem;
	}
	.form_tbl .wrapper{
		padding: 1rem 0;
	}

	.form_tbl dt{
		font-size: 1.6rem;
	}
	.form_tbl dd{
		font-size: 1.45rem;
	}
	.form_tbl dd.file_dd{
		font-size: 1.3rem;
	}
}


/* 選択肢で表示切り替え */
.form_area #switch01,
.form_area #switch02{
	display: none;
}



/* 各フォーム要素
-------------------------------------------------------- */
::placeholder{
	color: #aaa;
}

/* inputを囲むspan */
.form_area .wpcf7-form-control-wrap{
	display: block;
}
/* type=textなど */
.form_area input[type="text"],
.form_area input[type="email"],
.form_area input[type="tel"],
.form_area textarea{
	width: 100%;
	padding: .5em;
	background-color: #fff;
}
.form_area textarea{
	height: 12.5em;
}

@media screen and (max-width: 768px) {
	.form_area textarea{
		height: 10em;
	}
}


/* ファイル添付 */
.form_area .wpcf7-file{
	font-size: .925em;
	color: #3a3a3a;
}

/* ラジオボタン */
.form_area .wpcf7-form-control{
	display: block;
}
.form_area .wpcf7-list-item{
	display: block;
	padding: .4em 0;
}
.form_area .wpcf7-list-item-label{
	display: block;
	width: fit-content;
}

.form_area label{
	display: inline-block;
	position: relative;
	padding-left: 1.5em;
}
.form_area label:has(input[type="checkbox"]){
	padding-left: 2em;
}

.form_area input[type="checkbox"],
.form_area input[type="radio"]{
	cursor: pointer;
	display: inline-block;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	left: 0;
	top: .33em;
}
.form_area input[type="checkbox"]::before{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	background-color: #d9d9d9;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: background-color .4s;
}
.form_area input[type="checkbox"]:checked::before{
	background-color: #036fbc;
}
.form_area input[type="checkbox"]::after{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	background: url(../img/cmn/icon_form_check_wh.svg) no-repeat center/60% 60%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity .4s;
}
.form_area input[type="checkbox"]:checked::after{
	opacity: 1;
}

.form_area input[type="radio"]::before,
.form_area .pseudo_radio input[type="checkbox"]::before{
	content: "";
	display: block;
	width: .9em;
	height: .9em;
	border: 1px solid #bcbcbc;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: .1em;
	z-index: 1;
	transition: background-color .4s;
}
.form_area input[type="radio"]::after,
.form_area .pseudo_radio input[type="checkbox"]::after{
	content: "";
	display: block;
	width: .9em;
	height: .9em;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: .1em;
	z-index: 1;
	transform: scale(.6);
	transition: background-color .4s;
}
.form_area .pseudo_radio input[type="checkbox"]::after{
	background-image: none;
}

.form_area input[type="radio"]:checked::after,
.form_area .pseudo_radio input[type="checkbox"]:checked::after{
	background-color: #036fbc;
}


.form_area .form_area .wpcf7-list-item{
	display: block;
}
.form_area .form_area .radio_wrap label:nth-last-of-type(1){
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.form_area .wpcf7-list-item{
		padding: .25em 0;
	}

}

/* ドロップダウン */
.form_area .wpcf7-form-control-wrap:has(select){
	width: 100%;
	max-width: 20rem;
	position: relative;
}

.form_area select{
	width: 100%;
	padding: .25em .5em;
	position: relative;
}

.form_area .wpcf7-form-control-wrap:has(select)::after{
	content: "";
	display: block;
	width: .6em;
	height: .4em;
	background-color: #333;
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	right: 1em;
	top: calc(50% - .2em);
}

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


/* 送信ボタン */
.form_area .wpcf7-spinner{
	display: none;
}
.form_submit_wrapper{
	width: 92%;
	max-width: 30rem;
	margin: 0 auto;
}
.form_submit_wrapper p{
	font-size: 1.8rem;
	width: 100%;
	position: relative;
	--btn_color: var(--blue);
}
.form_submit_wrapper p::after{
	content: "\2192";
	display: block;
	color: var(--btn_color);
	position: absolute;
	left: calc(50% + 3em);
	top: 50%;
	transform: translateY(-50%);
	transition: .4s;
}
.form_submit_wrapper p:hover::after{
	color: #fff;
}

.form_submit_wrapper p input{
	display: block;
	color: var(--btn_color);
	line-height: 1.5;
	text-align: center;
	width: 100%;
	min-width: 30rem;
	max-width: 40rem;
	padding: .85em 3.5em .85em 2em;
	margin: auto;
	border: 1px solid var(--btn_color);
	border-radius: 5em;
	background-color: #fff;
	position: relative;
	transition: .4s;
}
.form_submit_wrapper p input:hover{
	color: #fff;
	background-color: var(--btn_color);
}

.form_submit_wrapper p input[disabled]{
	color: #fff;
	background-color: #acacac;
	border-color: #acacac;
	pointer-events: none;
}
.form_submit_wrapper p:has(input[disabled]){
	pointer-events: none;
}
.form_submit_wrapper p:has(input[disabled])::after{
	color: #fff;
}

@media screen and (max-width: 768px) {
	.form_submit_wrapper p input{
		font-size: 1.4rem;
		padding: .75em 1.5em;
	}
}

/* Cloudflare Turnstile */
.cf7-cf-turnstile{
	width: fit-content;
	margin: 2em auto 0 !important;
}




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


/* プライバシーポリシー
-------------------------------------------------------- */
#privacy{
	max-height: 30rem;
	padding: 1.25em 2%;
	margin-bottom: 6rem;
	border: 1px solid #b3b3b3;
	border-radius: 1rem;
	background-color: #fff;
	overflow: auto;
}

#privacy > dl > dt{
	font-weight: 700;
	margin-bottom: .25em;
}
#privacy > dl > dd{
	margin-bottom: 1.75em;
}

@media screen and (max-width: 768px) {
	#privacy{
		max-height: 36rem;
		padding: 1.25em 4%;
		margin-bottom: 4rem;
		border-radius: .5rem;
	}
}


/************************************************************************
	会社情報
**************************************************************************/
.company_sec_title{
	font-family: var(--mincho);
	font-size: 3rem;
	font-weight: 600;
	color: var(--font_blue);
	line-height: 1.5;
	padding-bottom: .4em;
	border-bottom: 1px solid #000;
}

#company_top_sec .link_list li{
	width: 48%;
	max-width: 55rem;
}
#company_top_sec .link_list li:nth-of-type(-n+2){
	margin-bottom: 7rem;
}

#company_top_sec .link_list li a{
	display: block;
	margin-bottom: 1.5rem;
	position: relative;
}
#company_top_sec .link_list li a:hover{
	opacity: .7;
}

#company_top_sec .link_list li a img{
	width: 100%;
}

#company_top_sec .link_list li a h3{
	font-family: var(--mincho);
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--font_blue);
	line-height: 1.5;
	padding: .4em 2em .4em 1em;
	background-color: rgba(255, 255, 255, .9);
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}
#company_top_sec .link_list li a h3::after{
	content: "\2192";
	display: block;
	font-size: .84em;/* 20px/24px */
	position: absolute;
	right: 1em;
	top: calc(50% - .75em);
}

#company_top_sec .link_list li .text{
	line-height: 2;
}

@media screen and (max-width: 768px) {
	.company_sec_title{
		font-size: 1.8rem;
		line-height: 2;
		padding: 0 3.3% .4em;
		margin-inline: var(--break_through);
	}

	#company_top_sec .link_list li{
		width: 100%;
		max-width: none;
		margin-bottom: 5rem;
	}
	#company_top_sec .link_list li:nth-of-type(-n+2){
		margin-bottom: 5rem;
	}

	#company_top_sec .link_list li a{
		margin-bottom: 1rem;
	}

	#company_top_sec .link_list li a h3{
		font-size: 1.8rem;
	}
}


/************************************************************************
	経営理念・ご挨拶
**************************************************************************/
/* ご挨拶
-------------------------------------------------------- */
#message .thumb{
	width: 50rem;
}

#message .text_wrapper{
	width: calc(97% - 50rem);
	max-width: 65rem;
	margin-top: -1rem;
}

#message .text_wrapper .text{
	font-size: 1.8rem;
	line-height: 2;
	margin-bottom: .5em;
}

#message .text_wrapper .name_group{
	line-height: 2;
	margin-top: 1.75em;
}

@media screen and (max-width: 1024px) {
	#message .thumb{
		width: 40rem;
	}

	#message .text_wrapper{
		width: calc(97% - 40rem);
	}
}

@media screen and (max-width: 768px) {
	#message .thumb{
		width: 100%;
		margin: 0 auto 2rem;
	}

	#message .text_wrapper{
		width: 100%;
		max-width: none;
		margin-top: 0;
	}

	#message .text_wrapper .text{
		font-size: 1.4rem;
		margin-bottom: .75em;
	}
}


/* 経営理念/経営目的
-------------------------------------------------------- */
#philosophy{
	background-color: #e7ecf2;
}

#philosophy .box{
	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: 48.4%;
	max-width: 58rem;
	min-height: 17rem;
	padding: .8rem;
	background-color: #fff;
}

#philosophy .box hgroup{
	font-family: var(--mincho);
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
}
#philosophy .box hgroup h2{
	color: var(--font_blue);
}
#philosophy .box hgroup p{
	font-size: 1.2em;
	letter-spacing: .04em;
}

@media screen and (max-width: 1024px) {
	#philosophy .box hgroup{
		font-size: 2.4rem;
	}
}

@media screen and (max-width: 768px) {
	#philosophy .box{
		width: 100%;
		max-width: none;
		min-height: 0;
		padding: 2rem 4%;
		background-color: #fff;
	}
	#philosophy .box:nth-of-type(1){
		margin-bottom: 2rem;
	}
	#philosophy .box hgroup{
		font-size: 1.8rem;
	}

}



/* 経営理念指針
-------------------------------------------------------- */
#guidelines .num_list{
	max-width: 1100px;
	width: 96%;
	margin-inline: auto;
}

#guidelines .num_list li{
	line-height: 1.5;
	letter-spacing: .04em;
	padding-left: 1.25em;
	margin-bottom: .4em;
}
#guidelines .num_list li::before{
	content: counter(num_list)".";
	position: absolute;
	left: 0;
}

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




/************************************************************************
	会社概要・アクセス
**************************************************************************/
/* 会社概要
-------------------------------------------------------- */
.tbl_primary{
	font-size: 1.8rem;
	line-height: 1.875;
}
.tbl_primary tr{
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
}
.tbl_primary th,
.tbl_primary td{
	padding: 1em;
}

.tbl_primary th{
	font-family: var(--mincho);
	font-weight: 700;
	text-align: center;
	width: 20rem;
	background-color: #f4f4f4;
}

@media screen and (max-width: 768px) {
	.tbl_primary,
	.tbl_primary tbody,
	.tbl_primary tr,
	.tbl_primary th,
	.tbl_primary td{
		display: block;
		width: 100%;
	}

	.tbl_primary{
		font-size: 1.4rem;
	}

	.tbl_primary tr:nth-of-type(n+2){
		border-top: none;
	}

	.tbl_primary th,
	.tbl_primary td{
		padding: .5em 3.3%;
	}
	.tbl_primary th{
		text-align: left;
	}

}


/* 事業所
-------------------------------------------------------- */
#plant{
	background-color: #e7ecf2;
}

#plant .container{
	display: -webkit-box;
	display: flex;
	width: 100%;
	margin-bottom: 3rem;
	background-color: #fff;
}

#plant .container .thumb{
	width: 65rem;
}
#plant .container .thumb img{
	width: 100%;
}

#plant .container .text_wrapper{
	width: calc(100% - 65rem);
	padding: 5.5% 4%;
}

#plant .container h3{
	font-family: var(--mincho);
	font-size: 3rem;
	font-weight: 600;
	color: var(--font_blue);
	margin-bottom: .5em;
}

#plant .container .text{
	font-size: 1.8rem;
}

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

	#plant .container .thumb{
		width: 100%;
	}

	#plant .container .text_wrapper{
		width: 100%;
		padding: 5.5% 4%;
	}

	#plant .container h3{
		font-size: 2rem;
		margin-bottom: .1em;
	}
	#plant .container .text{
		font-size: 1.4rem;
	}
}



/* アクセス
-------------------------------------------------------- */
#access .map{
	width: 100%;
	height: 50rem;
	margin-bottom: 3.5rem;
	position: relative;
}
#access .map iframe{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#access .flex_container .text_wrapper{
	width: 48.4%;
	margin-right: 3.2%;
	max-width: 57rem;
}
#access .flex_container .text_wrapper:nth-of-type(2n){
	margin-right: 0;
}

#access .flex_container .text_wrapper h3{
	font-family: var(--mincho);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: .04em;
	line-height: 1.5;
	padding: .5em;
	margin-bottom: .4em;
	background-color: #f4f4f4;
}

#access .flex_container .text_wrapper .disc{
	font-size: 1.8rem;
}
#access .flex_container .text_wrapper .disc li{
	margin-bottom: .25em;
}

@media screen and (max-width: 768px) {
	#access .map{
		height: 28rem;
	}

	#access .flex_container{
		margin-inline: var(--break_through);
	}

	#access .flex_container .text_wrapper{
		width: 100%;
		margin-right: 0;
		max-width: none;
		margin-bottom: 2rem;
	}

	#access .flex_container .text_wrapper .text_box{
		width: 94.6%;
		margin-inline: auto;
	}
	#access .flex_container .text_wrapper h3{
		font-size: 1.6rem;
		padding: .5em 3.3%;
	}

	#access .flex_container .text_wrapper .disc{
		font-size: 1.4rem;
	}
}


/************************************************************************
	会社沿革
**************************************************************************/
/* 沿革
-------------------------------------------------------- */
.history_dl .wrapper{
	display: -webkit-box;
	display: flex;
	background-color: #fff;
}
.history_dl .wrapper:nth-of-type(2n){
	background-color: #f4f4f4;
}

.history_dl dt{
	flex-shrink: 0;
	text-align: center;
	width: 16.4rem;
	padding: 1rem 0 1.5rem;
	position: relative;
}

.history_dl dt::before,/* 線 */
.history_dl dt::after{/* 丸 */
	content: "";
	display: block;
	background-color: var(--blue);
	position: absolute;
}
.history_dl dt::before{/* 線 */
	width: 2px;
	height: 100%;
	right: 0;
	top: 3.5rem;
}
.history_dl .wrapper:nth-last-of-type(1) dt::before{
	height: calc(100% + 2.5rem);
}
.history_dl dt::after{/* 丸 */
	width: 10px;
	height: 10px;
	border-radius: 50%;
	right: -4px;
	top: calc(3.5rem - 5px);
}

.history_dl .western_calendar{
	font-family: var(--mincho);
	font-size: 2.8rem;
	color: var(--blue);
	line-height: 1.5;
}
.history_dl .japanese_calendar{
	line-height: 1.5;
}


.history_dl dd{
	-webkit-box-flex:1;
	flex-grow:1;
	font-size: 1.8rem;
	padding: 1.25rem 5%;
	position: relative;
}

.history_dl .wrapper:nth-last-of-type(1) dd::before,/* 矢印の先端 */
.history_dl .wrapper:nth-last-of-type(1) dd::after{
	content: "";
	display: block;
	width: 2px;
	height: 30px;
	background-color: var(--blue);
	position: absolute;
	bottom: -6rem;
	left: -2px;
}
.history_dl dd::before{
	transform: rotate(-45deg);
	transform-origin: right bottom;
}
.history_dl dd::after{
	transform: rotate(45deg);
	transform-origin: left bottom;
}


@media screen and (max-width: 768px) {
	.history_dl dt{
		width: 8rem;
		padding: 1.25rem 0 1.5rem;
	}

	.history_dl dt::before{/* 線 */
		width: 1px;
		top: 2.5rem;
	}
	.history_dl .wrapper:nth-last-of-type(1) dt::before{
		height: 100%;
	}
	.history_dl dt::after{/* 丸 */
		width: 7px;
		height: 7px;
		right: -3px;
		top: calc(2.5rem - 4px);
	}

	.history_dl .western_calendar{
		font-size: 2rem;
	}
	.history_dl .japanese_calendar{
		font-size: 1.2rem;
	}

	.history_dl dd{
		font-size: 1.3rem;
		padding: 1.5rem 3% 1.5rem 4%;
		position: relative;
	}

	.history_dl .wrapper:nth-last-of-type(1) dd::before,/* 矢印の先端 */
	.history_dl .wrapper:nth-last-of-type(1) dd::after{
		width: 1px;
		height: 15px;
		bottom: -2.5rem;
		left: -1px;
	}

}


/* 受賞歴
-------------------------------------------------------- */
#award .list li{
	width: 48%;
	margin-right: 4%;
	margin-bottom: 4%;
}
#award .list li:nth-of-type(2n){
	margin-right: 0;
}

@media screen and (max-width: 768px) {
	#award .list li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 6%;
	}
}



/* SDGs行動宣言
-------------------------------------------------------- */
#history_sdgs .img{
	display: block;
	width: 60%;
	margin-inline: auto;
}
#history_sdgs .img:hover{
	opacity: .7;
}

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




/************************************************************************
	採用情報
**************************************************************************/
/* 冒頭ガイダンス
-------------------------------------------------------- */
#recruit_message .guidance_area{
	padding: 2.25rem 1rem;
	margin-bottom: 17rem;
	border-top: 1px solid #a6a6a6;
	border-bottom: 1px solid #a6a6a6;
}
#recruit_message .guidance_area .text{
	letter-spacing: .05em;
	width: fit-content;
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	#recruit_message .guidance_area{
		padding: 1.5rem 1rem;
		margin-bottom: 6rem;
	}
}


/* メッセージ
-------------------------------------------------------- */
#recruit_message .flex_container .thumb{
	width: 45rem;
}

#recruit_message .flex_container .text_wrapper{
	width: calc(97% - 45rem);
	max-width: 70rem;
}

#recruit_message .flex_container .text_wrapper h2{
	margin-bottom: 4%;
}
#recruit_message .flex_container .text_wrapper .text{
	line-height: 1.875;
	margin-bottom: 4%;
}

@media screen and (max-width: 1024px) {
	#recruit_message .flex_container .thumb{
		width: 38rem;
	}

	#recruit_message .flex_container .text_wrapper{
		width: calc(97% - 38rem);
		max-width: none;
	}

}

@media screen and (max-width: 768px) {
	#recruit_message .flex_container .thumb{
		width: 100%;
		margin-bottom: 3rem;
	}

	#recruit_message .flex_container .text_wrapper{
		width: 100%;
		max-width: none;
	}

	#recruit_message .flex_container .text_wrapper h2{
		margin-bottom: 1.25em;
	}
	#recruit_message .flex_container .text_wrapper .text{
		margin-bottom: 1.5em;
	}
}


/* 福利厚生
-------------------------------------------------------- */
#recruit_benefits{
	background-color: #e7ecf2;
}

#recruit_benefits .container{
	padding: 7rem 1.5% 5rem 3.5%;
	background-color: #fff;
}

#recruit_benefits .container .text_wrapper{
	width: calc(96% - 30rem);
}

#recruit_benefits .container h2{
	margin-bottom: 5%;
}
#recruit_benefits .container h3{
	margin-bottom: 4%;
}

#recruit_benefits .container .disc li{
	margin-bottom: .5em;
}
#recruit_benefits .container .disc li::before{
	left: 0;
}

#recruit_benefits .container .img_wrapper{
	width: 30rem;
	margin-top: -3rem;
}

#recruit_benefits .img{
	margin-bottom: 4%;
	background-color: #fafafa;
	position: relative;
}

#recruit_benefits .img.has_vertical::before{
	content: "";
	display: block;
	padding-top: 54%;
}
#recruit_benefits .img img.vertical{
	object-fit: contain;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

#recruit_benefits .img .text{
	font-family: var(--mincho);
	font-size: 1.2rem;
	font-weight: 600;
	width: fit-content;
	padding: .25em 1em;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	#recruit_benefits .container{
		padding: 3rem 3.3%;
		background-color: #fff;
	}

	#recruit_benefits .container .text_wrapper{
		width: 100%;
		margin-bottom: 4rem;
	}

	#recruit_benefits .container h2{
		margin-bottom: 1em;
	}
	#recruit_benefits .container h3{
		margin-bottom: 1.5em;
	}

	#recruit_benefits .container .img_wrapper{
		width: 100%;
		max-width: 25rem;
		margin-top: 0;
	}

	#recruit_benefits .img{
		margin-bottom: 5%;
	}
	#recruit_benefits .img .text{
		font-size: 1rem;
	}


}



/* 募集要項
-------------------------------------------------------- */
.recruit_table{
	margin-bottom: 11rem;
}
#recruit_requirements .recruit_table:nth-last-of-type(1){
	margin-bottom: 0;
}

.recruit_table caption{
	font-family: var(--mincho);
	font-size: 2.4rem;
	font-weight: 600;
	letter-spacing: .05em;
	padding: .33em .8em;
	border: 1px solid #bfbfbf;
	border-bottom: none;
	background-color: #f4f4f4;
}

.recruit_table th,
.recruit_table td{
	font-size: 1.8rem;
	color: #595959;
	padding: 1.3em 1em;
	border: 1px solid #bfbfbf;
}
.recruit_table th{
	width: 30rem;
}
.recruit_table .btn_wrap td{
	padding-block: 2em 2.75em;
}

.entry_btn{
	display: block;
	font-size: 2.6rem;
	color: #fff;
	text-align: center;
	max-width: 20.1em;
	width: 92%;
	padding: .75em;
	border: 2px solid #59616e;
	background-color: #59616e;
}
.entry_btn:hover{
	color: #59616e;
	background-color: #fff;
}

.recruit_table .entry_btn{
	margin-left: 12%;
}

@media screen and (max-width: 1100px) {
	.recruit_table .entry_btn{
		margin-inline: auto;
	}
}


@media screen and (max-width: 768px) {
	.recruit_table{
		margin-bottom: 6rem;
	}

	.recruit_table,
	.recruit_table caption,
	.recruit_table tbody,
	.recruit_table tr,
	.recruit_table th,
	.recruit_table td{
		display: block;
		width: 100%;
	}

	.recruit_table caption{
		font-size: 1.65rem;
		padding: .5em;
	}

	.recruit_table th,
	.recruit_table td{
		font-size: 1.4rem;
		padding: 1em .75em;
	}

	.recruit_table th{
		font-weight: 700;
		border-bottom: none;
	}

	.recruit_table tr:not(:nth-last-of-type(1)) td{
		border-bottom: none;
	}

	.recruit_table .btn_wrap th{
		display: none;
	}
	.recruit_table .btn_wrap td{
		padding-block: 2em;
	}
	.entry_btn{
		font-size: 1.8rem;
	}

}



/************************************************************************
	選ばれる理由
**************************************************************************/
/* 『多品種少量生産』のモノ作りを大切に
-------------------------------------------------------- */
#achievements_intro .flow_area{
	padding-inline: 2.5rem;
	margin-inline: -2.5rem;
	overflow: auto;
}
#achievements_intro .flow_ol{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: calc(2rem + 19%) repeat(3, calc((62% - 4rem) / 3)) calc(2rem + 19%);
	grid-template-columns: calc(2rem + 19%) repeat(3, calc((62% - 4rem) / 3)) calc(2rem + 19%);
	min-width: 800px;
	position: relative;
}

#achievements_intro .flow_ol li{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;/* サブグリッドにすることで高さ調整可能に */
	grid-row: span 3;/* パーツの数 */
}

#achievements_intro .flow_ol li .icon{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	width: 35%;/* 最大91px */
	margin-inline: auto;
	margin-bottom: 3.5rem;
}
#achievements_intro .flow_ol li .icon img{
	width: 100%;
}
#achievements_intro .flow_ol li:nth-of-type(1) .icon img{
	width: 98%;
}
#achievements_intro .flow_ol li:nth-of-type(2) .icon img{
	width: 96%;
}
#achievements_intro .flow_ol li:nth-of-type(5) .icon img{
	width: 87%;
}

#achievements_intro .flow_ol li .text_wrapper{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;/* サブグリッドにすることで高さ調整可能に */
	grid-row: span 2;/* パーツの数 */
	padding-block: 2.75rem 4rem;
	border-top: 2px solid var(--font_blue);
	background-color: #f8f8f8;
	position: relative;
}
#achievements_intro .flow_ol li .text_wrapper::before,
#achievements_intro .flow_ol li:nth-last-of-type(1) .text_wrapper::after{
	content: "";
	display: block;
	background-color: var(--font_blue);
	position: absolute;
}
#achievements_intro .flow_ol li .text_wrapper::before{/* 青丸 */
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	top: -1rem;
	left: -1rem;
}
#achievements_intro .flow_ol li:nth-of-type(1) .text_wrapper::before{
	left: 0;
}
#achievements_intro .flow_ol li:nth-last-of-type(1) .text_wrapper::after{/* 最後の三角 */
	width: 2.6rem;
	height: 3.2rem;
	top: -1.6rem;
	right: -2px;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

#achievements_intro .flow_ol li .text_box{
	display: inherit;
	display: inherit;
	-ms-grid-rows: inherit;
	grid-template-rows: inherit;
	grid-row: inherit;
	padding: 2.5rem 8% 2rem;
	border-right: 2px solid var(--font_blue);
	position: relative;
}
#achievements_intro .flow_ol li:nth-of-type(1) .text_box{
	padding-inline: calc(4% + 2rem) 8%;
}
#achievements_intro .flow_ol li:nth-last-of-type(1) .text_box{
	padding-inline: 8% calc(4% + 2rem);
	border-right: none;
}


#achievements_intro .flow_ol li:nth-of-type(1) .text_box::after,
#achievements_intro .flow_ol li:nth-last-of-type(1) .text_box::after{
	display: inline-block;
	font-family: var(--mincho);
	font-size: 2.3rem;
	position: absolute;
}
#achievements_intro .flow_ol li:nth-of-type(1) .text_box::after{/* 開始 */
	content: "開始";
	top: -3.5em;
	left: -.5em;
}
#achievements_intro .flow_ol li:nth-last-of-type(1) .text_box::after{/* 出荷 */
	content: "出荷";
	top: -3.75em;
	right: -1em;
}

#achievements_intro .flow_ol li h4{
	font-family: var(--mincho);
	font-size: 2.3rem;
	font-weight: 600;
	color: var(--font_blue);
	line-height: 1.3;
	text-align: center;
	margin-bottom: .5em;
}
#achievements_intro .flow_ol li h4 .small{
	font-size: .695em;/* 16/23 */
}

#achievements_intro .flow_ol li .text{
	font-size: 1.8rem;
	line-height: 2;
}

@media screen and (max-width: 768px) {
	#achievements_intro .flow_area{
		padding-inline: 0;
		margin-inline: 0;
		overflow: visible;
	}
	#achievements_intro .flow_ol{
		display: block;
		min-width: 0;
	}

	#achievements_intro .flow_ol li{
		display: -webkit-box;
		display: flex;
	}

	#achievements_intro .flow_ol li .icon{
		width: 6rem;
		margin: auto;
	}

	#achievements_intro .flow_ol li .text_wrapper{
		display: block;
		width: calc(92% - 6rem);
		padding: 0 calc(.8rem + 3%);
		border-top: none;
		border-left: 1px solid var(--font_blue);
	}

	#achievements_intro .flow_ol li .text_wrapper::before{/* 青丸 */
		width: 1.6rem;
		height: 1.6rem;
		top: -.8rem;
		left: -.8rem;
	}
	#achievements_intro .flow_ol li:nth-of-type(1) .text_wrapper::before{
		left: -.8rem;
		top: 0;
	}
	#achievements_intro .flow_ol li:nth-last-of-type(1) .text_wrapper::after{/* 最後の三角 */
		width: 2.6rem;
		height: 2rem;
		top: auto;
		bottom: -2px;
		right: auto;
		left: -1.3rem;
		-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
		clip-path: polygon(0 0, 100% 0, 50% 100%);
	}

	#achievements_intro .flow_ol li .text_box{
		padding: 2rem 4%;
		border-right: none;
		border-bottom: 1px solid var(--font_blue);
	}
	#achievements_intro .flow_ol li:nth-of-type(1) .text_box{
		padding: 2.5rem 4% 2rem;
	}
	#achievements_intro .flow_ol li:nth-last-of-type(1) .text_box{
		padding: 2rem 4% 2.5rem;
		border-bottom: none;
	}

	#achievements_intro .flow_ol li:nth-of-type(1) .text_box::after,
	#achievements_intro .flow_ol li:nth-last-of-type(1) .text_box::after{
		font-size: 1.8rem;
	}
	#achievements_intro .flow_ol li:nth-of-type(1) .text_box::after{/* 開始 */
		top: -1.75em;
		left: -2em;
	}
	#achievements_intro .flow_ol li:nth-last-of-type(1) .text_box::after{/* 出荷 */
		top: auto;
		bottom: -2em;
		right: auto;
		left: -2em;
	}

	#achievements_intro .flow_ol li h4{
		font-size: 1.8rem;
		text-align: left;
	}

	#achievements_intro .flow_ol li .text{
		font-size: 1.4rem;
		line-height: 2;
	}

}


/* 西本電器の強み
-------------------------------------------------------- */
#achievements_strengths{
	background-color: #e7ecf2;
}

#achievements_strengths .top_title_primary .sub{
	margin-bottom: .15em;
}

#achievements_strengths .list{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(3, 30.4%);
    grid-template-columns: repeat(3, 30.4%);
	-webkit-box-pack: justify;
	justify-content: space-between;
	max-width: 92rem;
	margin-inline: auto;
}

#achievements_strengths .list li{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;/* サブグリッドにすることで高さ調整可能に */
	grid-row: span 3;/* パーツの数 */
}

#achievements_strengths .list li a{
	display: inherit;
	display: inherit;
	-ms-grid-rows: inherit;
	grid-template-rows: inherit;
	grid-row: inherit;
	padding: 4.5rem 5%;
	background-color: #fff;
	box-shadow: var(--shadow_primary);
}
#achievements_strengths .list li a:hover{
	box-shadow: none;
	transform: translateY(.5rem);
}

#achievements_strengths .list li .icon{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	width: 50%;
	max-width: 5.7rem;
	margin: 0 auto 1rem;
}
#achievements_strengths .list li .icon img{
	width: 100%;
}
#achievements_strengths .list li:nth-of-type(1) .icon img{
	width: 98%;
}
#achievements_strengths .list li:nth-of-type(3) .icon img{
	width: 95%;
}


#achievements_strengths .list li h3{
	font-family: var(--mincho);
	font-size: 3rem;
	color: var(--font_blue);
	text-align: center;
	letter-spacing: .05em;
	margin-bottom: .1em;
}

#achievements_strengths .list li .text{
	font-size: 1.8rem;
	text-align: center;
}

@media screen and (max-width: 920px) {
	#achievements_strengths .list li h3{
		font-size: 2.8rem;
	}
}

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

	#achievements_strengths .list li a{
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 6rem calc(96% - 6rem);
		grid-template-columns: 6rem calc(96% - 6rem);
		-ms-grid-rows: repeat(2, max-content);
		grid-template-rows: repeat(2, max-content);
		-webkit-box-pack: justify;
		justify-content: space-between;
		padding: 2.5rem 5%;
		background-color: #fff;
		box-shadow: var(--shadow_primary);
	}

	#achievements_strengths .list li .icon{
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1/ 2;
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
		grid-row: 1/ 3;
		width: 100%;
		max-width: none;
	}

	#achievements_strengths .list li h3{
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-column: 2/ 3;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		grid-row: 1/ 2;
		font-size: 2.2rem;
	}
	#achievements_strengths .list li .text{
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-column: 2/ 3;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		grid-row: 2/ 3;
		font-size: 1.4rem;
	}
}

/* 共通
---------- */
.strength_sec{
	padding-top: 6rem;
	margin-bottom: 10rem;
}

.strength_sec .container{
	padding: 6.5rem 3.5% 7rem;
	background-color: #fff;
	position: relative;
}

.strength_sec .container .icon{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	width: 12rem;
	height: 12rem;
	padding-bottom: 1rem;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	top: -6rem;
	left: calc(50% - 6rem);
}
.strength_sec .container .icon img{
	width: 45%;
}

.strength_sec .container h3{
	font-family: var(--mincho);
	font-size: 3rem;
	font-weight: 600;
	color: var(--font_blue);
	text-align: center;
	margin-bottom: .25em;
}
.strength_sec .container .guidance{
	font-size: 1.8rem;
	text-align: center;
	line-height: 2;
	letter-spacing: .025em;
}

@media screen and (max-width: 768px) {
	.strength_sec{
		padding-top: 4rem;
	}

	.strength_sec .container{
		padding: 4.5rem 5% 5rem;
	}

	.strength_sec .container .icon{
		width: 8rem;
		height: 8rem;
		padding-bottom: .75rem;
		top: -4rem;
		left: calc(50% - 4rem);
	}

	.strength_sec .container h3{
		font-size: 2.2rem;
		margin-bottom: .5em;
	}
	.strength_sec .container .guidance{
		font-size: 1.4rem;
		text-align: left;
	}
}


/* 多彩な加工技術
---------- */
.strengths01_list{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(3, 32.2%);
    grid-template-columns: repeat(3, 32.2%);
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 5.5rem;
}

.strengths01_list li{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;/* サブグリッドにすることで高さ調整可能に */
	grid-row: span 3;/* パーツの数 */
}

.strengths01_list li .img{
	margin-bottom: 3rem;
}

.strengths01_list li h4{
	font-family: var(--mincho);
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--font_blue);
	text-align: center;
	margin-bottom: .25em;
}

.strengths01_list li .text{
	font-size: 1.8rem;
	line-height: 2;
	padding-inline: 4%;
}

@media screen and (max-width: 768px) {
	.strengths01_list{
		display: block;
		margin-bottom: 4rem;
	}

	.strengths01_list li{
		margin-bottom: 2.5rem;
	}
	.strengths01_list li:nth-last-of-type(1){
		margin-bottom: 0;
	}

	.strengths01_list li .img{
		margin-bottom: 1.5rem;
	}

	.strengths01_list li h4{
		font-size: 2rem;
	}

	.strengths01_list li .text{
		font-size: 1.4rem;
		line-height: 2;
		padding-inline: 4%;
	}
}


/* 高い生産力
---------- */
#strengths02{
	margin-bottom: 3rem;
}

#strengths02 .flex_wrapper{
	margin-bottom: 5.5rem;
}
#strengths02 .flex_wrapper .img{
	width: 49%;
}
#strengths02 .flex_wrapper .text_box{
	width: 49%;
	max-width: 53rem;
	padding-top: 1%;
}

#strengths02 .flex_wrapper .text_box p.mb{
	margin-bottom: 6%;
}

@media screen and (max-width: 768px) {
	#strengths02 .flex_wrapper{
		margin-bottom: 3rem;
	}
	#strengths02 .flex_wrapper .img{
		width: 100%;
		margin-bottom: 1.5rem;
	}
	#strengths02 .flex_wrapper .text_box{
		width: 100%;
		max-width: none;
		padding-top: 0;
	}

	#strengths02 .flex_wrapper .text_box p.mb{
		margin-bottom: 1em;
	}
}

/* 安定した品質
---------- */
#strengths03{
	margin-top: 6rem;
	margin-bottom: 0;
}

#strengths03 .iso_wrapper{
	padding: 5.5rem 0;
	position: relative;
}
#strengths03 .iso_wrapper::before{
	content: "";
	display: block;
	width: 107.5%;
	height: 2px;
	background-color: #e5e5e5;
	position: absolute;
	left: -3.75%;
	top: 0;
}

#strengths03 .iso_wrapper .img{
	width: 48%;
	padding-top: 1%;
}

#strengths03 .iso_wrapper .text_box{
	width: 50%;
	max-width: 53rem;
}

#strengths03 .iso_wrapper .text_box p.mb{
	margin-bottom: 5%;
}

#strengths03 .policy_wrapper{
	padding-top: 2rem;
}
#strengths03 .policy_wrapper .img{
	width: 49%;
}

@media screen and (max-width: 768px) {
	#strengths03 .iso_wrapper{
		padding: 3.5rem 0;
	}
	#strengths03 .iso_wrapper::before{
		width: 110%;
		height: 1px;
		left: -5%;
	}

	#strengths03 .iso_wrapper .img{
		width: 100%;
		padding-top: 0;
		margin-bottom: 1.5rem;
	}

	#strengths03 .iso_wrapper .text_box{
		width: 100%;
		max-width: none;
	}

	#strengths03 .iso_wrapper .text_box p.mb{
		margin-bottom: 1em;
	}

	#strengths03 .policy_wrapper .img{
		width: 108%;
		margin-left: -4%;
		margin-bottom: 1.5rem;
	}
	#strengths03 .policy_wrapper .img:nth-last-of-type(1){
		margin-bottom: 0;
	}
}


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


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


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


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



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

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


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


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



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


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

