@charset "utf-8";

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


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

*/

/* 変数 */
:root {
	/* 色 */
	--font_color: #333;
	--red: #f90000;
	--orange: #dd6400;
	--white: #fdfdfd;
	--gray: #b3b3b3;

	--bg_beige: #e6e4da;
	--bg_blue: #023960;

	--hover_blue: #27648a;
	--hover_light-blue: #529ae8;
	--hover_thin-blue: #cce0f2;

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

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

	/* vwの値をスクロールバーを含めて考慮 */
	--js_windowWidth : 100vw;/* JSで書き換え。（ウインドウ幅-スクロールバー）px */
	--js_vw : 1vw;/* JSで書き換え。(（ウインドウ幅-スクロールバー）/100)pxで、vwのように使用する。 */
	/* marjin-inline: calc(50% - 50wv); をスクロールバー考慮できるように。 */
	--protrude: calc(50% - var(--js_windowWidth) / 2);
	--protrude_half: calc(25% - var(--js_windowWidth) / 4);
	/* ↑ではみ出した要素のwidthは、（100%+「はみ出た分」が必要なので */
	--width_protrude: calc(100% - (50% - var(--js_windowWidth) / 2));
	--width_protrude_half: calc(100% - (25% - var(--js_windowWidth) / 4));
}

@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 {
	word-break: break-all;
	cursor: pointer;
	color: inherit;
	text-decoration: none;
	transition: .4s;
}
button{
	color: var(--font_color);
	background-color: transparent;
	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: calc(2.667 * var(--js_vw));/* 375pxで10px 1.4remで14px 2.667vwの代わり */
	}
}

/* =====
	body
======================================================== */
body {
	font-family: var(--font_primary);
	color: var(--font_color);
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.75;
	word-wrap: normal;
	background-color: var(--bg_beige);
}

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

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

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


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

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

.fz80{
	font-size: 8rem;
}

.fz108{
	font-size: 10.8rem;
}

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

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

	.fz80{
		font-size: 5.28rem;
	}

	.fz108{
		font-size: 7.12rem;
	}

	.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: var(--white);}
.red{ color: var(--red);}
.orange{ color: var(--orange);}
.light_blue{ color: var(--hover_light-blue);}

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

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

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

@media screen and (min-width: 769px) {
	.u_trance[href*="tel:"] {
		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; }
.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 { text-align: left; }
	.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;
}
.no_capitalize{
	text-transform: none;
}
.uppercase{
	text-transform: uppercase;
}

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

.marker{
	background:linear-gradient(transparent 75%, var(--white)100 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{
	margin-bottom: .5em;
}
.disc > li:nth-last-of-type(1){
	margin-bottom: 0;
}
.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;
}
@media screen and (max-width: 768px) {
	.disc > li{
		margin-bottom: .3em;
	}
}

/* 「⚫︎」 */
.circle > li{
	margin-bottom: .5em;
}
.circle > li:nth-last-of-type(1){
	margin-bottom: 0;
}
.circle > li, .circle_mark{
	padding-left: 1em;
	position: relative;
}
.circle > li::before, .circle_mark::before{
	content: "";
	display: block;
	width: .4em;
	height: .4em;
	background-color: var(--hover_blue);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: .6em;
}
@media screen and (max-width: 768px) {
	.circle > li{
		margin-bottom: .3em;
	}
}

/* 「01.」 */
.num_list{
	counter-reset: num_list;
}
.num_list > li{
	counter-increment: num_list;
	padding-left: 1.5em;
	margin-bottom: .5em;
	position: relative;
}
.num_list > li:nth-last-of-type(1){
	margin-bottom: 0;
}
.num_list > li::before{
	content: counter(num_list, decimal-leading-zero)".";
	position: absolute;
	left: 0;
}

@media screen and (max-width: 768px) {
	.num_list > li{
		margin-bottom: .3em;
	}
}


/************************************************************************
	インナー　その他余白
**************************************************************************/
.inner{
	margin: auto;
}
.inner.primary{
	max-width: 1200px;
	width: 92%;
}

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

/* インナー内で特定のアイテムが大きい場合 */
.inner .inner_primary_wide_item{
	width: 104%;
	margin-left: -2%;
}

@media screen and (max-width: 768px) {
	.inner.primary,
	.inner.secondary{
		width: 88%;/* 650/750から少しだけ大きく→660/750 */
	}

	.inner.sp_wide{
		width: 94.6%;/* 710/750 */
	}
	.inner.sp_wide .more_inner{
		width: 92.9%;/* 660/710 */
		margin-inline: auto;
	}

	/* インナー内で特定のアイテムが大きい場合 */
	.inner .inner_primary_sp_wide_item{
		width: 108%;
		margin-left: -4%;
	}
}

/* =====
	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;}
.mt025em{ margin-top: .25em;}
.mt033em{ margin-top: .33em;}
.mt05em{ margin-top: .5em;}
.mt066em{ margin-top: .66em;}
.mt075em{ margin-top: .75em;}
.mt1em{ margin-top: 1em;}
.mt125em{ margin-top: 1.25em;}
.mt133em{ margin-top: 1.33em;}
.mt15em{ margin-top: 1.5em;}
.mt166em{ margin-top: 1.66em;}
.mt175em{ margin-top: 1.75em;}
.mt2em{ margin-top: 2em;}
.mt225em{ margin-top: 2.25em;}
.mt233em{ margin-top: 2.33em;}
.mt25em{ margin-top: 2.5em;}
.mt266em{ margin-top: 2.66em;}
.mt275em{ margin-top: 2.75em;}
.mt3em{ margin-top: 3em;}
.mt35em{ margin-top: 3.5em;}
.mt4em{ margin-top: 4em;}
.mt45em{ margin-top: 4.5em;}
.mt5em{ margin-top: 5em;}
.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;}

	.mt025em{ margin-top: .2em;}
	.mt033em{ margin-top: .264em;}
	.mt05em{ margin-top: .4em;}
	.mt066em{ margin-top: .528em;}
	.mt075em{ margin-top: .6em;}
	.mt1em{ margin-top: .8em;}
	.mt125em{ margin-top: 1em;}
	.mt133em{ margin-top: 1.064em;}
	.mt15em{ margin-top: 1.2em;}
	.mt166em{ margin-top: 1.328em;}
	.mt175em{ margin-top: 1.4em;}
	.mt2em{ margin-top: 1.6em;}
	.mt225em{ margin-top: 1.8em;}
	.mt233em{ margin-top: 1.864em;}
	.mt25em{ margin-top: 2em;}
	.mt266em{ margin-top: 2.128em;}
	.mt275em{ margin-top: 2.2em;}
	.mt3em{ margin-top: 2.4em;}
	.mt35em{ margin-top: 2.8em;}
	.mt4em{ margin-top: 3.2em;}
	.mt45em{ margin-top: 3.6em;}
	.mt5em{ margin-top: 4em;}

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

	.mt025em_sp{ margin-top: .25em;}
	.mt033em_sp{ margin-top: .33em;}
	.mt05em_sp{ margin-top: .5em;}
	.mt066em_sp{ margin-top: .66em;}
	.mt075em_sp{ margin-top: .75em;}
	.mt1em_sp{ margin-top: 1em;}
	.mt125em_sp{ margin-top: 1.25em;}
	.mt133em_sp{ margin-top: 1.33em;}
	.mt15em_sp{ margin-top: 1.5em;}
	.mt166em_sp{ margin-top: 1.66em;}
	.mt175em_sp{ margin-top: 1.75em;}
	.mt2em_sp{ margin-top: 2em;}
	.mt225em_sp{ margin-top: 2.25em;}
	.mt233em_sp{ margin-top: 2.33em;}
	.mt25em_sp{ margin-top: 2.5em;}
	.mt266em_sp{ margin-top: 2.66em;}
	.mt275em_sp{ margin-top: 2.75em;}
	.mt3em_sp{ margin-top: 3em;}
	.mt35em_sp{ margin-top: 3.5em;}
	.mt4em_sp{ margin-top: 4em;}
	.mt45em_sp{ margin-top: 4.5em;}
	.mt5em_sp{ margin-top: 5em;}

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

	.mb0_sp{ margin-bottom: 0;}
}

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

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

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

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


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

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

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

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

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

}

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

/************************************************************************
	画像
**************************************************************************/
.img img,
.img picture{/* .imgで囲んでいないimgは、元画像の大きさ準拠にしたいので */
	width: 100%;
}

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

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

/************************************************************************
	タイトル
**************************************************************************/
/* =====
	セクションタイトル
======================================================== */
.title_primary{
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 3.4rem;
	font-weight: 500;
	color: var(--hover_blue);
	letter-spacing: .3em;
	padding: 1.5em .5em .5em;
	background-color: #e6e4da;
	position: relative;
}
.title_primary.fz32{
	font-size: 3.2rem;
}
.title_primary.horizon{
	font-size: 3.2rem;
	letter-spacing: .2em;
	/* 初期値に戻す↓ */
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: horizontal-tb;
	writing-mode: horizontal-tb;
	text-orientation: mixed;

	width: fit-content;
	margin-inline: auto;
}
.title_primary.bg_blue{
	color: var(--white);
	background-color: var(--bg_blue);
}
.title_primary.bg_transparent{
	color: var(--white);
	background-color: transparent;
}

.title_primary::before{
	content: "";
	display: block;
	width: 2.2em;
	height: 1.1em;
	background: url(../img/cmn/title_deco.svg) no-repeat center/contain;
	position: absolute;
	left: calc(50% - 1.1em);
	top: 0;
}
.title_primary.horizon::before{
	width: 2.4em;
	left: calc(50% - 1.2em);
	top: .25em;
}
.title_primary.bg_blue::before,
.title_primary.bg_transparent::before{
	background-image: url(../img/cmn/title_deco_wh.svg);
}



@media screen and (max-width: 768px) {
	.title_primary{
		font-size: 2.4rem;
		padding: 1.5em .5em .5em;
		background-color: #e6e4da;
		position: relative;
	}
	.title_primary.fz32{
		font-size: 2.4rem;
	}
	.title_primary.horizon{
		font-size: 2.4rem;
	}
}

/* =====
	
======================================================== */

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

/* =====
	
======================================================== */

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


/************************************************************************
	ボタン
**************************************************************************/
/* =====
	ボタン
======================================================== */
.btn_primary{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	letter-spacing: .05em;
	width: fit-content;
	min-height: 5em;
	padding-left: 4em;
	position: relative;
	z-index: 2;
}
.btn_primary .first-letter{
	color: var(--white);
}
.btn_primary.white .first-letter{
	color: var(--font_color);
}

.btn_primary::before{
	content: "";
	display: block;
	width: 5em;
	height: 5em;
	border-radius: 50%;
	background-color: var(--hover_blue);
	position: absolute;
	left: 0;
	top: calc(50% - 2.5em);
	z-index: -2;
	transition: background-color .4s;
}
.btn_primary.white::before{
	background-color: var(--hover_thin-blue);
}
.btn_primary:hover::before{
	background-color: var(--hover_light-blue);
	animation: .6s ease btn_anime;
}

.btn_primary::after{
	content: "";
	display: block;
	width: 5em;
	height: 5em;
	background: url(../img/cmn/btn_arrow_wh.svg) no-repeat center/24%;
	position: absolute;
	left: 0;
	top: calc(50% - 2.5em);
	z-index: -1;
}
.btn_primary.white::after{
	background-image: url(../img/cmn/btn_arrow_black.svg);
}
.btn_primary.back::after{
	transform: scale(-1, 1);
}



@keyframes btn_anime{
	0% {
		transform: scale(1);
	}
	15% {
		transform: scale(0.7);
	}
	60% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

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

/* =====
	ボタン2
======================================================== */
.btn_secondary{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.4rem;
	letter-spacing: .05em;
	width: fit-content;
	min-height: 3.6em;
	padding-right: 4.25em;
	position: relative;
	z-index: 2;
}
.btn_secondary::before{
	content: "";
	display: block;
	width: 3.6em;
	height: 3.6em;
	border-radius: 50%;
	background-color: var(--hover_blue);
	position: absolute;
	right: 0;
	top: calc(50% - 1.8em);
	z-index: -2;
	transition: background-color .4s;
}
.btn_secondary.white::before{
	background-color: var(--hover_thin-blue);
}
.btn_secondary:hover::before{
	background-color: var(--hover_light-blue);
	animation: .6s ease btn_anime;
}

.btn_secondary::after{
	content: "";
	display: block;
	width: 3.6em;
	height: 3.6em;
	background: url(../img/cmn/btn_arrow_wh.svg) no-repeat center/24%;
	position: absolute;
	right: 0;
	top: calc(50% - 1.8em);
	z-index: -1;
}
.btn_secondary.white::after{
	background-image: url(../img/cmn/btn_arrow_black.svg);
}

@media screen and (max-width: 768px) {
	.btn_secondary{
		padding-right: 3.75em;
	}
	.btn_secondary::before,
	.btn_secondary::after{
		width: 2.9em;
		height: 2.9em;
		top: calc(50% - 1.45em);
	}
	.btn_secondary::after{
		background-size: 45%;
	}
}

/* =====
	
======================================================== */

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

}

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

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

.nowrap {
	flex-wrap: nowrap;
}

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

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

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

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

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

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

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



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

.block{
	display: block;
}
.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;
	}
	.dib_sp{
		display: inline-block;
	}
}


/* =====
	ボックスシャドウ
======================================================== */
.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埋め込み
======================================================== */
.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: var(--white);
	background: #1a1a1a;
}
::selection {
	color: var(--white);
	background: #1a1a1a;
} */

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


/************************************************************************
	アニメーション
**************************************************************************/
/* =====
	フェードイン
======================================================== */
.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: #1a1a1a;
	background: #00ff00;
	border-radius: .6rem;
	line-height: 1;
	padding: 1rem 1.5rem;
}
.cn-close-icon {
	opacity: 1;
}
.cn-close-icon:before,
.cn-close-icon:after {
	background: var(--white);
}
@media screen and (max-width: 768px) {
	.page_content { padding: 6rem 0; }
	.c_section { padding: 4rem 0; }
	#cookie-notice {
		font-size: 1.4rem;
	}
}


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

.logo_group{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 2.8em 1fr;
    grid-template-columns: 2.8em 1fr;/* 50/20 */
	grid-column-gap: .5em;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.7rem;
}

#loader .logo_group{
	font-size: min(2rem, 2 * var(--js_vw));
	margin: auto;
	animation: loader_logo 1s ease .2s forwards;
	opacity: 0;
	transform: translateY(25%);
}

.logo_group .logo{
	display: block;
	-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;
}
.logo_group .logo img{
	width: 100%;
}

.logo_group .sub_text{
	display: block;
	-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;
	letter-spacing: .1em;
	padding-left: .1em;
	margin-bottom: -.75em;
}
.logo_group .main_text{
	display: block;
	-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.769em;/* 30/17 */
	letter-spacing: .05em;
}


@media (max-width: 768px) {
	.logo_group{
		font-size: 1.2rem;
		-ms-grid-columns: 4.3em 1fr;
    	grid-template-columns: 4.3em 1fr;/* 52/12 */
	}
	#loader .logo_group{
		font-size: 3.59vw;/* 14/390 */
	}
}

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



/************************************************************************
	ページ全体
**************************************************************************/
main{
	overflow: hidden;
}

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

}

/* =====
	モーダル等の半透明背景
======================================================== */
body::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	padding: 10rem 0;
	background-color: rgba(253, 253, 253, .05);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	overflow: hidden;
	opacity: 0;/* アニメーションしたいからdisplay:none;の代わり */
	visibility: hidden;/* アニメーションしたいからdisplay:none;の代わり */
	transition: opacity .4s, visibility .4s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

body.hmb_open, body.modal_open{
	overflow: hidden;
}
@media screen and (min-width: 961px) {
	body.hmb_open{
		overflow: visible;
	}
}
@media screen and (max-width: 960px) {
	body.hmb_open::after{
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (min-width: 961px) {
	
}

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

}

/* ---

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


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

}



/************************************************************************
	下層共通
**************************************************************************/
/* =====
	下層ページタイトル
======================================================== */
#lower_head{
	padding: 18.5rem 0 8.5rem;
	background: url(../img/cmn/lower_head_bg.jpg) no-repeat center/cover;
}

.lower_title{
	font-size: 3.2rem;
	color: var(--white);
	letter-spacing: .2em;
	width: fit-content;
	padding: 1.25em .5em .5em;
	margin-inline: auto;
	position: relative;
}
.lower_title::after{
	content: "";
	display: block;
	width: 2.4em;
	height: 1.1em;
	background: url(../img/cmn/title_deco_wh.svg) no-repeat center/contain;
	position: absolute;
	left: calc(50% - 1.2em);
	top: 0;
}

.lower_title.lock::before{
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: .4em;
	background: url(../img/cmn/icon_lock_wh.svg) no-repeat center/contain;
	transform: translateY(.1em);
}

.lower_title .sub{
	font-size: .6875em;/* 22/32 */
	letter-spacing: .1em;
	line-height: 1.1;
	text-align: center;
	padding-top: .5em;
}

@media screen and (max-width: 768px) {
	#lower_head{
		padding: 15rem 0 6rem;
		background-image: url(../img/cmn/lower_head_bg_sp.jpg);
	}

	.lower_title{
		font-size: 2.4rem;
	}
}

/* =====
	パンクズ
======================================================== */
#breadcrumb{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--white);
	line-height: 1.7;
	letter-spacing: .1em;
	width: fit-content;
	max-width: 92%;
	padding-top: 1.8em;
	margin-inline: auto;
	margin: auto;
}

#breadcrumb > li{
	padding-right: 2.75em;
	margin-bottom: 1rem;
	position: relative;
}
#breadcrumb > li.omission{
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#breadcrumb > li:nth-last-of-type(1){
	padding-right: 0;
}

#breadcrumb > li::after{
	content: "\FF1E";
	display: block;
	font-weight: 700;
	color: var(--orange);
	position: absolute;
	right: .75em;
	top: 50%;
	transform: translateY(-50%);
}
#breadcrumb > li:nth-last-of-type(1)::after{
	display: none;
}

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

#breadcrumb .lock::before{
	content: "";
	display: inline-block;
	width: 1em;
	height: 1.2em;
	margin-right: .7em;
	background: url(../img/cmn/icon_lock_wh.svg) no-repeat center/contain;
	transform: translateY(.15em);
}

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


/* =====
	背景色
======================================================== */
.bg_beige{
	background-color: var(--bg_beige);
}

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

}

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


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

}


/* =====
	セクションタイトル
======================================================== */
.title_under_dots{/* ドットの下線がひかれる */
	font-size: 2.6rem;
	letter-spacing: .2em;
	position: relative;
	padding-bottom: .5em;
	background: url(../img/cmn/under_dots_blue.png) repeat-x left bottom;
}
.title_under_dots.white{/* 白線の場合 */
	background-image: url(../img/cmn/under_dots_white.png);
}

.title_left_deco01{/* 左に青線がつく */
	font-size: 2.2rem;
	letter-spacing: .1em;
	line-height: 1.5;
	padding-left: 1em;
	position: relative;
}
.title_left_deco01::before{
	content: "";
	display: block;
	width: .25em;
	height: 100%;
	background-color: #27648a;
	position: absolute;
	left: 0;
	top: 0;
}

.pattern_title{/* 青四角で「01」「02」や「A」「B」など */
	font-size: 1.8rem;
	padding-left: 2.5em;
	position: relative;
}
.pattern_title .num{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.6rem;
	color: var(--white);
	width: 2em;
	height: 2em;
	padding-bottom: .15em;
	background-color: var(--hover_blue);
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 768px) {
	.title_under_dots{/* ドットの下線がひかれる */
		font-size: 2rem;
		padding-bottom: 1em;
	}

	.title_left_deco01{/* 左に青線がつく */
		font-size: 2rem;
	}

	.pattern_title{/* 青四角で「01」「02」や「A」「B」など */
		font-size: 1.6rem;
	}
}

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


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

}

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


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

}

/* =====
	テーブル
======================================================== */
.tbl_primary{
	width: 100%;
}

.tbl_primary th,
.tbl_primary td{
	font-weight: 500;
	padding: 1.62em 1.5%;
	border-bottom: 1px solid var(--bg_beige);
	position: relative;
}
.tbl_primary tr:nth-last-of-type(1) th,
.tbl_primary tr:nth-last-of-type(1) td{
	border-bottom: none;
}

.tbl_primary th{
	text-align: center;
	color: var(--white);
	width: 10.625em;/* 170/16 */
	background-color: var(--hover_blue);
}
.tbl_primary td{
	width: calc(100% - 10.625em);
	padding-left: 3%;
	background-color: var(--white);
}

@media screen and (max-width: 768px) {
	.tbl_primary th,
	.tbl_primary td{
		padding-block: 1.5em;
	}
	.tbl_primary th{
		width: 5.72em;/* 160/28 */
	}
	.tbl_primary td{
		width: calc(100% - 5.72em);
	}
}



/* =====
	アサイドありページ
======================================================== */
.has_aside{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
}

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

}

/* ---

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


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

}



/* =====
	
======================================================== */


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

}

/* ---

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


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

}


/************************************************************************
	ヘッダー
**************************************************************************/
header{	
	width: 96.875%;/* 1550/1600 */
	max-width: 155rem;
	margin-inline: auto;
	border-radius: 1rem;
	background-color: rgba(253, 253, 253, .6);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	position: fixed;
	top: 2rem;
	left: 0;
	right: 0;
	z-index: 50;
	transition: background-color .4s;
}

@media screen and (max-width: 960px) {
	.hmb_open header{
		background-color: rgba(253, 253, 253, 1);
	}
}

header .inner{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	width: 96.78%;/* 1500/1550 */
	padding: 1.2rem 0;
	margin-inline: auto;
	transition: padding .4s;
}

.hd_logo{
	flex-shrink: 0;
	margin-right: auto;
}
.hd_logo .logo_group{
	font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
	header{	
		width: 94.6%;/* 710/750 */
		border-radius: .5rem;
		top: .8rem;
	}
	header .inner{
		width: 92%;/* 650/710 */
		padding: 1.75rem 0;
	}
	.is_scroll header .inner{
		padding: .75rem 0;
	}

	.hd_logo .logo_group{
		font-size: 1.1rem;
	}
	.is_scroll .hd_logo .logo_group{
		font-size: 1rem;
	}

}


/* =====
	ナビ
======================================================== */
#hd_nav{
	-webkit-box-flex:1;
	flex-grow:1;
	margin-right: -1em;
}

#hd_nav > ul{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
}
#hd_nav > ul > li{
	margin-left: 1em;
	position: relative;
}
#hd_nav > ul > li > a{
	display: block;
	padding: .5em .85em;
	position: relative;
	transition: color .4s;
}
#hd_nav > ul > li > a:hover{
	color: var(--hover_light-blue);
}

#hd_nav > ul > li > a.exclusive{
	padding-left: 1.5em;
}
#hd_nav > ul > li > a.exclusive::before{
	content: "";
	display: block;
	width: 1.1em;
	height: 1.1em;
	-webkit-mask: url(../img/cmn/icon_lock_black.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_lock_black.svg) no-repeat center/contain;
	background-color: var(--font_color);
	position: absolute;
	left: 0;
	top: calc(50% - .55em);
	transition: background-color .4s;
}
#hd_nav > ul > li > a.exclusive:hover::before{
	background-color: var(--hover_light-blue);
}

#hd_nav .child_list{
	pointer-events: none;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(2, max-content);
    grid-template-columns: repeat(2, max-content);
	width: 50rem;
	padding: 2.5rem 4rem 2rem;
	border-radius: 1rem;
	background-color: rgba(253, 253, 253, .6);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: calc(100% + 2.5rem);
	left: calc(50% - 26rem);
	transition: opacity .4s, visibility .4s, top .4s, background-color .4s;
}

#hd_nav .child_list::before{
	content: "";
	display: block;
	width: 100%;
	height: 2.5rem;
	position: absolute;
	left: 0;
	bottom: 100%;
	z-index: 0;
}

#hd_nav .child_list > li{
	margin-bottom: .5em;
	position: relative;
	z-index: 1;
}

#hd_nav .child_list > li a{
	display: block;
	padding: .5em .5em .5em 3em;
	position: relative;
}
#hd_nav .child_list > li a:hover{
	color: var(--hover_light-blue);
}

#hd_nav .child_list > li a::before,
#hd_nav .child_list > li a::after{
	content: "";
	display: block;
	width: 2em;
	height: 2em;
	position: absolute;
	left: 0;
	top: calc(50% - 1em);
	transition: background-color .4s;
}
#hd_nav .child_list > li a::before{
	border-radius: 50%;
	background-color: transparent;
}
#hd_nav .child_list > li a:hover::before{
	background-color: var(--hover_thin-blue);
}
#hd_nav .child_list > li a::after{
	-webkit-mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/50%;
	mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/50%;
	background-color: var(--font_color);
}
#hd_nav .child_list > li a:hover::after{
	background-color: #416b90;
}

@media screen and (max-width: 1200px) {
	#hd_nav > ul > li{
		margin-left: .5em;
	}
	#hd_nav > ul > li > a{
		padding: .5em;
	}
	#hd_nav > ul > li > a.exclusive{
		padding-left: 1.25em;
	}
}

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

/* =====
	ハンバーガー
======================================================== */
#hmb{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	width: 6rem;
	background-color: transparent;
	transition: .4s;
	position: relative;
	z-index: 100;
}

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

.hmb_bar span{
	display: inline-block;
	width: 100%;
	height: 2px;
	background-color: var(--font_color);
	position: absolute;
	right: 0;
	transition: .4s;
}
#hmb:hover .hmb_bar span{
	background-color: var(--hover_light-blue);
}

.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){
	transform: translateX(20%);
}
.hmb_open .hmb_bar span:nth-of-type(3){
	transform: translateX(-20%);
}

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


/************************************************************************
	グローバル
**************************************************************************/
#global{
	display: -webkit-box;
	display: flex;
	width: 100%;
	min-height: 100dvh;
	height: 100%;
	padding: 10.5rem 1.8% 0;
	position: fixed;
	left: 0;
	top: -2rem;
	z-index: 40;
	transition: top .4s, opacity .4s;
	opacity: 0;
	visibility: hidden;
}
.hmb_open #global{
	top: 0;
	opacity: 1;
	visibility: visible;
}

#global .container{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	width: fit-content;
	height: fit-content;
	max-height: calc(100% - 2rem);
	padding: 4rem;
	margin-left: auto;
	border-radius: 1rem;
	background-color: var(--white);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	overflow: auto;
}

.gl_nav > ul > li{
	margin-bottom: .5em;
}
.gl_nav > ul > li a{
	display: block;
	padding: .55em .5em .55em 2.75em;
	margin-bottom: .1em;
	position: relative;
}
.gl_nav > ul > li a:hover{
	color: var(--hover_light-blue);
}

.gl_nav > ul > li a::before,
.gl_nav > ul > li a::after{
	content: "";
	display: block;
	width: 2em;
	height: 2em;
	position: absolute;
	left: 0;
	top: calc(50% - 1em);
	transition: background-color .4s;
}
.gl_nav > ul > li a::before{
	border-radius: 50%;
	background-color: transparent;
}
.gl_nav > ul > li a:hover::before{
	background-color: var(--hover_thin-blue);
}
.gl_nav > ul > li a::after{
	-webkit-mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/50%;
	mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/50%;
	background-color: var(--font_color);
}
.gl_nav > ul > li a:hover::after{
	background-color: #416b90;
}

@media screen and (max-width: 768px) {
	#global{
		padding: 10rem 1.8% 0;
		z-index: 40;
		transition: .4s;
		overflow: auto;
	}
	.is_scroll #global{
		padding-top: 8rem;
	}

	#global .container{
		width: 100%;
		padding: 2rem 2rem 3rem;
		margin: 0;
		border-radius: .5rem;
	}
}

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




/************************************************************************
	フッター
**************************************************************************/
/* =====
	フッター前半
======================================================== */
#ft_main{
	color: var(--white);
	padding: 8rem 0;
	background-color: var(--bg_blue);
}

#ft_main .inner{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 38rem min(calc(96% - 38rem), 60rem);
    grid-template-columns: 38rem min(calc(96% - 38rem), 60rem);
	-webkit-box-pack: justify;
	justify-content: space-between;
}

#ft_main address{
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1/ 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1/ 2;
}
#ft_main .ft_nav{
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2/ 3;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	grid-row: 1/ 3;
}
#ft_main .copyright{
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1/ 2;
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	grid-row: 2/ 3;
}


@media screen and (max-width: 768px) {
	#ft_main{
		padding: 6rem 0 2rem;
	}

	#ft_main .inner{
		display: block;
	}
}


/* アドレス
-------------------------------------------------------- */
#ft_main address .logo_group{
    -ms-grid-columns: 4.4em 1fr;
    grid-template-columns: 4.4em 1fr;
	grid-column-gap: 1em;
	grid-row-gap: .25em;
	margin-bottom: 1.75em;
}

#ft_main .address_list > li{
	font-size: 1.8rem;
	letter-spacing: .05em;
	margin-bottom: .25em;
}


@media screen and (max-width: 768px) {
	#ft_main address{
		margin-bottom: 3.5rem;
	}
	#ft_main address .logo_group{
		width: fit-content;
		margin: 0 auto 1.75em;
	}
	#ft_main .address_list{
		width: fit-content;
		margin-inline: auto;
	}
	#ft_main .address_list > li{
		font-size: 1.6rem;
	}
}


/* ナビ
-------------------------------------------------------- */
.ft_nav{
	letter-spacing: .05em;
	padding-top: .75em;
}
.ft_nav a:hover{
	opacity: .7;
}
.ft_nav > ul{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.ft_nav > ul > li{
	width: 48%;
	max-width: 27rem;
	margin-bottom: 1.5em;
}
.ft_nav > ul > li:nth-last-of-type(-n+2){
	margin-bottom: 0;
}

.ft_nav > ul > li > .title{
	display: block;
	padding: .5em 0 1em;
	position: relative;
	background: url(../img/cmn/ft_nav_line.png) no-repeat left bottom/100%;
}
.ft_nav > ul > li > .title.exclusive{
	padding-left: 1.5em;
}
.ft_nav > ul > li > .title.exclusive::before {
    content: "";
    display: block;
    width: 1.1em;
    height: 1.1em;
    background: url(../img/cmn/icon_lock_wh.svg) no-repeat center / contain;
    position: absolute;
    left: 0;
    top: calc(50% - .7em);
    transition: background-color .4s;
}


@media screen and (max-width: 768px) {
	.ft_nav{
		margin-bottom: 5rem;
	}
	.ft_nav > ul > li > .title{
		padding: .5em 0 .75em;
		background-image: url(../img/cmn/ft_nav_line_sp.png);
	}

	.ft_nav > ul > li{
		width: 46%;
		max-width: none;
		margin-bottom: 1.75em;
	}

}

/* コピーライト
-------------------------------------------------------- */
.copyright{
	align-self: flex-end;
	font-size: 1.2rem;
	letter-spacing: .05em;
}

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

}


/* =====
	フッター後半
======================================================== */
#ft_bottom{
	padding: 8rem 0;
	background-color: var(--bg_beige);
}

@media screen and (max-width: 768px) {
	#ft_bottom{
		padding: 4rem 0;
	}
}

/* 大バナー
-------------------------------------------------------- */
.ft_bnr_list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.ft_bnr_list > li{
	width: 19.5%;
	margin-right: calc(2.5% / 4);
	margin-bottom: .75rem;
}
.ft_bnr_list > li:nth-of-type(5n){
	margin-right: 0;
}

.ft_bnr_list > li a{
	display: block;
}
.ft_bnr_list > li a:hover{
	opacity: .7;
}
.ft_bnr_list > li a img{
	width: 100%;
}
@media screen and (max-width: 768px) {
	.ft_bnr_list{
		margin-bottom: 1.5rem;
	}
	.ft_bnr_list > li{
		width: 48.4%;
		margin-right: 3.2%;
	}
	.ft_bnr_list > li:nth-of-type(5n){
		margin-right: 3.2%;
	}
	.ft_bnr_list > li:nth-of-type(2n){
		margin-right: 0;
	}
}

/* スワイパー
-------------------------------------------------------- */
.ft_bnr_swiper_area{
	padding: 0 5.5rem;
	position: relative;
}

#ft_bnr_swiper .swiper-slide a{
	display: block;
}
#ft_bnr_swiper .swiper-slide a:hover{
	opacity: .7;
}
#ft_bnr_swiper .swiper-slide a img{
	width: 100%;
}

.ft_bnr_swiper_area .swiper-button-prev,
.ft_bnr_swiper_area .swiper-button-next{
	background-color: var(--white);
}
.ft_bnr_swiper_area .swiper-button-prev:hover,
.ft_bnr_swiper_area .swiper-button-next:hover{
	background-color: var(--hover_blue);
}

#ft_bnr_prev{
	left: 0;
	top: calc(50% - 2rem);
}
#ft_bnr_next{
	right: 0;
	top: calc(50% - 2rem);
}
@media screen and (max-width: 768px) {
	.ft_bnr_swiper_area{
		padding: 0 4.2rem;
	}
	#ft_bnr_prev, #ft_bnr_next{
		top: calc(50% - 1.6rem);
	}
}



/************************************************************************
	トップページ
**************************************************************************/
/* =====
	トップ MV
======================================================== */
#mv_swiper{
	font-size: calc(.625 * var(--js_vw));
	width: 104%;
	margin-top: -1px;
	margin-left: -2%;
	border-radius: 0% 0% 50% 50% / 0% 0% 7.5% 7.5%;
}
#mv_swiper .swiper-slide{
	text-align: center;/* imgを100vwにして中央に寄せるため */
	position: relative;
	overflow: hidden;
}
#mv_swiper .swiper-slide img{
	width: calc(var(--js_windowWidth) + 2px);
	transform: scale(1.3);
	transition: transform .5s linear .5s;
}
#mv_swiper .swiper-slide-active img{
	transform: scale(1);
	transition: transform 6s linear 0s;
}

#mv_swiper .swiper-slide .text_wrapper{
	text-align: left;/* .swiper-slideのtacをリセット */
	color: var(--white);
	position: absolute;
	top: 64%;
	left: 14%;
	z-index: 1;
}
#mv_swiper .swiper-slide .text_wrapper h2{
	font-size: 4em;
	letter-spacing: .4em;
	margin-bottom: .25em;
}
#mv_swiper .swiper-slide .text_wrapper .text{
	font-size: 2.2em;
	letter-spacing: .2em;
}

#mv_swiper .swiper-slide.slide03 .text_wrapper{
	width: 100%;
	left: 11.5%;
	top: 80%;
}
#mv_swiper .swiper-slide.slide03 h2{
	width: 79.5%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#mv_swiper .swiper-slide.slide03 h2 .slide03text{
	display: block;
	position: relative;
	z-index: 1;
}
#mv_swiper .swiper-slide.slide03 h2 .slide03text::before{
	content: "";
	display: block;
	width: 2.5em;
	height: 2.5em;
	border-radius: 50%;
	background-color: var(--hover_thin-blue);
	opacity: .5;
	position: absolute;
	left: -.7em;
	top: -.35em;
	z-index: -1;
}

@media screen and (max-width: 768px) {
	#mv_swiper{
		font-size: calc(2.564 * var(--js_vw));/* 10/390 */
		width: 106%;
		height: 100vh;
		max-height: 80rem;
		margin-left: -3%;
		border-radius: 0% 0% 50% 50% / 0% 0% 5% 5%;
		position: relative;
	}
	#mv_swiper .swiper-wrapper{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1;
	}

	#mv_swiper .swiper-slide img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	#mv_swiper .swiper-slide .text_wrapper{
		width: 76%;
		top: 47%;
	}
	#mv_swiper .swiper-slide .text_wrapper h2{
		font-size: 3em;
		width: fit-content;
		margin-inline: auto;
	}
	#mv_swiper .swiper-slide .text_wrapper .text{
		font-size: 2em;
		letter-spacing: .1em;
	}

	#mv_swiper .swiper-slide.slide03 .text_wrapper{
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
	}
	#mv_swiper .swiper-slide.slide03 h2{
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
	}
	#mv_swiper .swiper-slide.slide03 h2 .slide03text{
		-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
		text-orientation: upright;/* 英数字は縦に */
		height: max-content;
		position: absolute;
	}
	#mv_swiper .swiper-slide.slide03 h2 .slide03text:nth-of-type(1){
		top: 16%;
		left: 9%;
	}
	#mv_swiper .swiper-slide.slide03 h2 .slide03text:nth-of-type(2){
		top: 42%;
		right: 9%;
	}
	#mv_swiper .swiper-slide.slide03 h2 .slide03text:nth-of-type(3){
		top: 66%;
		left: 9%;
	}

	#mv_swiper .swiper-slide.slide03 h2 .slide03text::before{
		left: calc(50% - 1.25em);
		top: -.75em;
	}

}

/* =====
	トップ　お知らせ
======================================================== */
/* タイトル
-------------------------------------------------------- */
#top_news .title_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	flex-shrink: 0;
	width: 20rem;
	margin-inline: auto;
}
#top_news .title_wrapper .btn_primary{
	margin-bottom: 1.5em;
	margin-right: auto;
}



@media screen and (max-width: 768px) {
	#top_news .title_wrapper{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		flex-direction: row;
		-webkit-box-pack: center;
		justify-content: center;
		width: 100%;
		margin-bottom: 2.5rem;
	}

	#top_news .title_wrapper .title_primary{
		margin-right: 6%;
	}
	#top_news .title_wrapper .btn_primary{
		margin: 0;
	}
}


/* タブ切り替えボタン
-------------------------------------------------------- */
#top_news .news_container{
	width: calc(96% - 20rem);
	max-width: 90rem;
}


.news_container .btn_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: end;
	align-items: flex-end;
	height: 10rem;
}
.news_container .btn_wrapper .tab_btn{
	font-size: 1.8rem;
	width: calc(100% / 3);
	padding: 1.35em 0;
	background-color: var(--white);
	position: relative;
	transition: padding .4s, border-radius .4s, color .4s;
}
.news_container .btn_wrapper .tab_btn:hover{
	color: var(--hover_blue);
}

.news_container .btn_wrapper .tab_btn.lock::before{
	content: "";
	display: inline-block;
	width: .8em;
	height: 1em;
	margin-right: .5em;
	-webkit-mask: url(../img/cmn/icon_lock_black.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_lock_black.svg) no-repeat center/contain;
	background-color: var(--font_color);
}
.news_container .btn_wrapper .tab_btn.lock.active::before{
	background-color: #fff;
}

.news_container .btn_wrapper .tab_btn:nth-of-type(1){
	border-radius: .66em 0 0 0;
}
.news_container .btn_wrapper .tab_btn:nth-of-type(3){
	border-radius: 0 .66em 0 0;
}
.news_container .btn_wrapper .tab_btn.active{
	pointer-events: none;
	color: #fff;
	padding: 1.9em 0;
	border-radius: .66em .66em 0 0;
	background-color: var(--hover_blue);
}


@media screen and (max-width: 768px) {
	#top_news .news_container{
		width: 100%;
		max-width: none;
	}
	.news_container .btn_wrapper{
		height: 6rem;
	}
	.news_container .btn_wrapper .tab_btn{
		font-size: 1.4rem;
		padding: .9em 0;
	}
	.news_container .btn_wrapper .tab_btn.active{
		padding: 1.25em 0;
	}
}

/* 一覧
-------------------------------------------------------- */
.news_list,
.topics_list{
	background-color: #fff;
}
#top_news .news_list,
#top_news .topics_list{
	display: none;
	height: 50rem;
	overflow: auto;
	border-top: 2px solid var(--hover_blue);
}
#top_news .news_list.active,
#top_news .topics_list.active{
	display: block;
}

.news_list::-webkit-scrollbar,
.topics_list::-webkit-scrollbar{
	width: 8px;
}
.news_list::-webkit-scrollbar-track,
.topics_list::-webkit-scrollbar-track{
	background: transparent;
	border-radius: 1px;
}
.news_list::-webkit-scrollbar-thumb,
.topics_list::-webkit-scrollbar-thumb{
	background: var(--hover_blue);
	border-radius: 4px;
	border: 1px solid #fff;
}

.news_list > li,
.topics_list > li{
	border-bottom: 2px solid var(--bg_beige);
}
.news_list > li:nth-last-of-type(1),
.topics_list > li:nth-last-of-type(1){
	border-bottom: none;
}

.news_list > li a{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	height: 9.75rem;
	padding: 1rem calc(5rem + 2%) 1rem 3.5%;
	position: relative;
}
.topics_list > li{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
	padding: 3rem 3.5%;
	position: relative;
}

#top_news .news_list > li a{
	padding: 1rem calc(5rem + 2%) 1rem 4.5%;
}
#top_news .topics_list > li{
	padding: 3rem 4.5%;
}
.news_list > li a::after{
	content: "";
	display: block;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: transparent url(../img/cmn/btn_arrow_blue.svg) no-repeat center/40%;
	position: absolute;
	right: 2%;
	top: calc(50% - 2.5rem);
	transition: background-color .4s;
}
.news_list > li a:hover::after{
	background-color: var(--hover_thin-blue);
}

.date_cat_wrap{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
	margin-right: 1.5rem;
}

.date_cat_wrap .date{
	color: var(--hover_blue);
	letter-spacing: .05em;
	width: 9.5rem;
	margin-right: 1rem;
	transition: color .4s;
}
a:hover .date_cat_wrap .date{
	color: var(--hover_light-blue);
}

.date_cat_wrap .cat{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: .875em;/* 14/16 */
	letter-spacing: .05em;
	width: 8.5rem;
	padding: 0 .1em .1em;
	border-radius: 5em;
	transition: background-color .4s;
}
.cat{
	color: var(--white);
	background-color: var(--hover_blue);
}
.cat.important, .cat.recruit{
	background-color: var(--orange);
}
.news_list > li a:hover .cat{
	background-color: var(--hover_light-blue);
}

.news_list > li a .text{
	line-height: 1.5;
	width: calc(96% - 1.25rem - 9.5rem - .75rem - 8.5rem);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	mb225ｴm-webkit-line-clamp: 2;
	max-height: 3em;/* 古いSafariで、heightを指定しないとoverflow:hidden;が効かないみたいなので。 */
	transition: color .4s;
}
.news_list > li a:hover .text{
	color: var(--hover_light-blue);
}

.topics_list > li .date{
	color: var(--hover_blue);
	letter-spacing: .05em;
	width: 9.5rem;
}
.topics_list > li .text_wrapper{
	width: calc(96% - 9.5rem);
}


@media screen and (max-width: 768px) {
	#top_news .news_list,
	#top_news .topics_list{
		height: 65rem;
		border-width: 1px;
	}

	.news_list > li a,
	#top_news .news_list > li a,
	.topics_list > li{
		display: block;
		height: auto;
		padding: 2.5rem calc(4rem + 1%) 2.25rem 4%;
	}

	.news_list > li a::after{
		width: 4rem;
		height: 4rem;
		right: 1%;
		top: calc(50% - 1rem);/* 日付け・カテゴリー分下へ */
		transition: background-color .4s;
	}

	.date_cat_wrap{
		margin-right: 0;
		margin-bottom: .6em;
	}
	.date_cat_wrap .date{
		width: 6.25em;
		margin-right: .5em;
	}
	.date_cat_wrap .cat{
		font-size: .857em;/* 12/14 */
		width: 6.75em;
		padding: .1em .1em .2em;
	}

	.news_list > li a .text{
		width: 100%;
		-webkit-line-clamp: 3;
		max-height: 4.5em;
	}

	.topics_list > li .date{
		width: auto;
		margin-bottom: .6em;
	}
	.topics_list > li .text_wrapper{
		width: 100%;
	}
}


/* =====
	トップ 奈良建築協同組合とは
======================================================== */
/* 背景スライダー
-------------------------------------------------------- */
#top_about{
	padding: 6rem 0;
	position: relative;
}
#top_about::after{
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	background-color: var(--bg_blue);
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 0;
}

#top_about .bg_slider_container{
	height: fit-content;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
#top_about .bg_slider_container::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(51, 51, 51, .5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

#top_about .slider_wrapper{
	display: -webkit-box;
	display: flex;
}

#top_about .slider_wrapper.right .slider{
	display: -webkit-box;
	display: flex;
	animation: slider-right 50s infinite linear both;
}
#top_about .slider_wrapper.left .slider{
	display: -webkit-box;
	display: flex;
	animation: slider-left 50s infinite linear both;
}

#top_about .slider .slider_item{
	width: 52.5rem;
}

#top_about .sp_slide_container{
	display: none;
	position: relative;
	z-index: 1;
}

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

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

	#top_about .bg_slider_container{
		position: relative;
		bottom: auto;
		right: auto;
	}

	#top_about .slider .slider_item{
		width: 19.5rem;
	}

	#top_about .sp_slide_container{
		display: block;
	}
	#top_about .sp_slide_container::after{
		content: "";
		display: block;
		width: 100%;
		height: 102%;
		background-color: rgba(51, 51, 51, .5);
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
	}

}

/* テキスト部分
-------------------------------------------------------- */
#top_about .title_primary{
	height: fit-content;
	position: absolute;
	left: calc(54% + 30rem);
	top: -2em;
	z-index: 4;
}

#top_about .text_wrapper{
	width: calc(96% - 20rem);
	max-width: 60rem;
	padding: 10rem min(13.2rem, 11%) 12rem;
	margin-inline: auto;
	background: url(../img/cmn/blue_paper.jpg) no-repeat;
	position: relative;
	z-index: 3;
}

#top_about .text_wrapper h3{
	font-size: 2.8rem;
	font-weight: 500;
	color: var(--white);
	letter-spacing: .2em;
	padding-bottom: .75em;
	margin-bottom: 1.66em;
	background: url(../img/cmn/line01_wh.png) repeat-x left bottom;
}

#top_about .text_wrapper .text{
	color: var(--white);
	line-height: 2;
}

@media screen and (max-width: 768px) {
	#top_about .title_primary{
		left: auto;
		right: 6%;
		top: 0;
	}

	#top_about .text_wrapper{
		width: 100%;
		max-width: none;
		padding: 7rem 6% 7.5rem;
		margin-top: -1px;
	}
	#top_about .text_wrapper h3{
		font-size: 2.4rem;
		padding-bottom: .5em;
		margin-bottom: 1.5em;
	}


}


/* =====
	トップ 事業内容
======================================================== */
.bg_blue_area{
	background-color: var(--bg_blue);
}

#top_business{
	padding: 12rem 0 20rem;
}

.business_link_list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
}
#top_business .business_link_list{
	color: var(--white);
}

.business_link_list > li{
	--icon: url(../img/business/icon_benefits.svg);

	width: calc(50% + 1px);
	border: 2px solid var(--bg_beige);
	background-color: var(--white);
	transition: background-color .4s;
}
.business_link_list > li.benefits{
	--icon: url(../img/business/icon_benefits.svg);
}
.business_link_list > li.aid{
	--icon: url(../img/business/icon_aid.svg);
}
.business_link_list > li.education{
	--icon: url(../img/business/icon_education.svg);
}
.business_link_list > li.orders{
	--icon: url(../img/business/icon_orders.svg);
}
.business_link_list > li.scrap{
	--icon: url(../img/business/icon_scrap.svg);
}
.business_link_list > li.vocational_training{
	--icon: url(../img/business/icon_vocational_training.svg);
}




#top_business .business_link_list > li{
	background-color: transparent;
	border-color: var(--white);
}
.business_link_list > li:nth-of-type(2n + 1){
	margin-right: -1px;
}
.business_link_list > li:nth-of-type(2n){
	margin-left: -1px;
}
.business_link_list > li:nth-of-type(n + 3){
	margin-top: -2px;
}


.business_link_list > li.acc_open{
	color: var(--white);
	background-color: var(--hover_blue);
}

.business_link_list > li .parent_trigger{
	cursor: pointer;
}

.business_link_list > li .parent_trigger,
.business_link_list > li .no_trigger{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	font-size: 2.2rem;
	line-height: 1.5;
	min-height: 5.45em;/* 120/22 */
	padding: .75em calc(2rem + 6%) .75em calc(5.6rem + 6% + 4%);
	position: relative;
	transition: background-color .4s, color .4s;
}
.business_link_list > li .parent_trigger:hover,
.business_link_list > li .no_trigger:hover{
	color: var(--white);
	background-color: var(--hover_blue);
}

#top_business .business_link_list > li .parent_trigger::before,
#top_business .business_link_list > li .no_trigger::before{
	background-color: var(--white);
}

.business_link_list > li .parent_trigger::before,
.business_link_list > li .no_trigger::before{
	content: "";
	display: block;
	width: 5.6rem;
	height: 5.6rem;/* childとの兼ね合いが難しいのでrem表記 */
	border-radius: 50%;
	background: var(--bg_beige) no-repeat center/contain;
	background-image: var(--icon);
	position: absolute;
	left: 6%;
	top: calc(50% - 2.8rem);
}

.business_link_list > li .parent_trigger::after,
.business_link_list > li .no_trigger::after{
	content: "";
	display: block;
	width: 1.8rem;
	height: 1.8rem;/* childとの兼ね合いが難しいのでrem表記 */
	position: absolute;
	right: 6%;
	top: calc(50% - .9rem);
	transition: background-color .4s;
}
.business_link_list > li .parent_trigger::after{
	-webkit-mask: url(../img/cmn/acc_arrow_wh.svg) no-repeat center/90%;
	mask: url(../img/cmn/acc_arrow_wh.svg) no-repeat center/90%;
	background-color: var(--hover_blue);
	transform: scale(1, -1);
	transition: transform .4s, background-color .4s;
}
.business_link_list > li .parent_trigger:hover::after{
	background-color: var(--white);
}
.business_link_list > li.acc_open .parent_trigger::after{
	background-color: var(--white);
	transform: scale(1, 1);
}
.business_link_list > li .no_trigger::after{
	-webkit-mask: url(../img/cmn/btn_arrow_wh.svg) no-repeat center/contain;
	mask: url(../img/cmn/btn_arrow_wh.svg) no-repeat center/contain;
	background-color: var(--hover_blue);
}

#top_business .business_link_list > li .parent_trigger::after,
#top_business .business_link_list > li .no_trigger::after{
	background-color: var(--white);
}

.business_link_list > li .no_trigger:hover::after{
	background-color: var(--white);
}

.business_link_list .child_list{
	display: none;
	padding: 0 6% 2em calc(5.6rem + 6% + 4%);
	margin-top: -1.5em;
}

.business_link_list .child_list > li{
	line-height: 1.5;
}
.business_link_list .child_list > li a{
	display: block;
	padding: .25em .5em .25em 2.75em;
	margin-bottom: .1em;
	position: relative;
}
.business_link_list .child_list > li a::before,
.business_link_list .child_list > li a::after{
	content: "";
	display: block;
	width: 2em;
	height: 2em;
	position: absolute;
	left: 0;
	top: calc(50% - 1em);
	transition: background-color .4s;
}
.business_link_list .child_list > li a::before{
	border-radius: 50%;
	background-color: transparent;
}
.business_link_list .child_list > li a:hover::before{
	background-color: var(--hover_thin-blue);
}
.business_link_list .child_list > li a::after{
	-webkit-mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/50%;
	mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/50%;
	background-color: var(--white);
}
.business_link_list .child_list > li a:hover::after{
	background-color: #416b90;
}


@media screen and (max-width: 768px) {
	#top_business{
		padding: 8rem 0 23rem;
	}
	.business_link_list{
		display: block;
	}
	.business_link_list > li{
		width: 100%;
		border-width: 1px;
	}
	.business_link_list > li:nth-of-type(2n + 1){
		margin-right: 0;
	}
	.business_link_list > li:nth-of-type(2n){
		margin-left: 0;
	}
	.business_link_list > li:nth-of-type(n + 2){
		margin-top: -1px;
	}

	.business_link_list > li .parent_trigger,
	.business_link_list > li .no_trigger{
		font-size: 2rem;
		min-height: 4.8em;/* 96/20 */
		padding: .75em calc(2rem + 4%) .75em calc(5.6rem + 4% + 4%);
		position: relative;
		transition: background-color .4s;
	}

	.business_link_list > li .parent_trigger::before,
	.business_link_list > li .no_trigger::before{
		left: 4%;
	}
	.business_link_list > li .parent_trigger::after{
		width: 1.2rem;
		height: 1.2rem;
		right: 5%;
		top: calc(50% - .6rem);
	}
	.business_link_list > li .no_trigger::after{
		right: 4%;
	}

	#top_business .child_list{
		display: none;
		padding: 0 4% 2em calc(5.6rem + 2% + 4%);
		margin-top: -.75em;
	}
}


/* =====
	組合員・業種紹介
======================================================== */
/* テキスト部分
-------------------------------------------------------- */
#top_members{
	position: relative;
}
#top_members::before{
	content: "";
	display: block;
	width: 100%;
	height: calc(100% - 16rem);/* #top_members .swiper-button_containerの高さ参照 */
	background-color: var(--bg_blue);
	position: absolute;
	right: 0;
	top: 0;
}

#top_members .title_primary{
	height: fit-content;
	position: absolute;
	left: calc(54% + 30rem);
	top: -4.25em;
	z-index: 4;
}

#top_members .text_wrapper{
	width: calc(96% - 20rem);
	max-width: 80rem;
	padding: 8rem min(16rem, 11%);
	margin-inline: auto;
	position: relative;
	z-index: 3;
}
#top_members .text_wrapper::before{
	content: "";
	display: block;
	width: calc(100% + 50vw);
	height: 100%;
	background: url(../img/cmn/blue_paper.jpg);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#top_members .text_wrapper h3{
	font-size: 2.8rem;
	font-weight: 500;
	color: var(--white);
	letter-spacing: .2em;
	padding-bottom: .75em;
	margin-bottom: 1.66em;
	background: url(../img/cmn/line01_wh.png) repeat-x left bottom;
}

#top_members .text_wrapper .text{
	color: var(--white);
	line-height: 2;
}

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

	#top_members .title_primary{
		text-indent: -.5em;
		padding: 2.25em .5em .75em;
		left: auto;
		right: 6%;
		top: -6.25em;
	}

	#top_members .text_wrapper{
		width: 100%;
		max-width: none;
		padding: 7rem 6% 7.5rem;
		margin-top: -1px;
	}
	#top_members .text_wrapper h3{
		font-size: 2.4rem;
		padding-bottom: .5em;
		margin-bottom: 1.5em;
	}


}

/* スライド
-------------------------------------------------------- */
.top_members_swiper{
	position: relative;
}
@media screen and (min-width: 769px) {
	.top_members_swiper::after{
		pointer-events: none;
		content: "";
		display: block;
		width: 9%;
		height: fit-content;
		padding-top: 9%;
		margin: auto;
		background: url(../img/cmn/icon_swipe.svg) no-repeat center/contain;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1;
		opacity: 0;
	}
	.top_members_swiper.animation::after{
		animation: icon_swipe 4s ease forwards;
	}
	.top_members_swiper.swiped::after{
		display: none;
	}
	@keyframes icon_swipe{
		0% {
			opacity: 0;
		}
		15% {
			opacity: 1;
		}
		30% {
			opacity: 0;
		}
		45% {
			opacity: 1;
		}
		90% {
			opacity: 1;
		}
		100% {
			opacity: 0;
		}
	}
}

.top_members_swiper .swiper-slide{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
#top_members_swiper_pc .top_member_trigger{
	width: calc(100% / 5);
}

#top_members_swiper_tb{
	visibility: hidden;
	position: absolute;
	pointer-events: none;
}
#top_members_swiper_tb .top_member_trigger{
	width: calc(100% / 3);
}

#top_members_list_sp{
	visibility: hidden;
	position: absolute;
	pointer-events: none;

	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
#top_members_list_sp .top_member_trigger{
	width: calc(100% / 2);
}

.top_member_trigger{
	cursor: pointer;
	position: relative;
	z-index: 0;
}
.top_member_trigger::before{
	pointer-events: none;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(2, 57, 96, 0);
	border: 1px solid var(--white);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	transition: background-color .4s;
}
.top_member_trigger:hover::before{
	background-color: rgba(2, 57, 96, .7);
}
.top_member_trigger::after{
	content: "";
	display: block;
	width: 5%;
	height: 20%;
	background-color: var(--white);
	-webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.top_member_trigger .name{
	font-size: 2.2rem;
	color: var(--white);
	text-align: center;
	letter-spacing: .1em;
	width: fit-content;
	height: fit-content;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}


@media screen and (max-width: 1024px) {
	#top_members_swiper_pc{
		visibility: hidden;
		position: absolute;
		pointer-events: none;
	}
	#top_members_swiper_tb{
		visibility: visible;
		position: relative;
		pointer-events: all;
	}
}


@media screen and (max-width: 768px) {
	#top_members_swiper_tb{
		visibility: hidden;
		position: absolute;
		pointer-events: none;
	}
	#top_members_list_sp{
		visibility: visible;
		position: relative;
		pointer-events: all;
	}

	.top_member_trigger .name{
		font-size: 1.4rem;
	}

}

/* ボタン共通
-------------------------------------------------------- */
.swiper-button-prev,
.swiper-button-next{
	width: 4rem;
	height: 4rem;
	margin: 0;
	background-color: var(--hover_thin-blue);
	border-radius: 50%;
	transition: background-color .4s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
	background-color: var(--bg_blue);
}

.swiper-button-prev::before,
.swiper-button-next::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	mask: url(../img/cmn/btn_arrow_black.svg) no-repeat center/50%;
	background-color: var(--hover_blue);
	transition: background-color .4s;
}
.swiper-button-prev::before{
	transform: scale(-1, 1);
}
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before{
	background-color: var(--white);
}

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

@media screen and (max-width: 768px) {
	.swiper-button-prev,
	.swiper-button-next{
		width: 3.2rem;
		height: 3.2rem;
	}
}



/* ボタン調整
-------------------------------------------------------- */
#top_members .swiper-button_container{
	width: calc(96% - 20rem);/* 背景合わせるため、.text_wrapperと同サイズ */
	max-width: 80rem;
	height: 16rem;/* #top_members::beforeの高さに影響を与えるので確認 */
	margin-inline: auto;
	position: relative;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
#top_members #top_members_swiper_tb + .swiper-button_container{
	position: absolute;
	visibility: hidden;
	pointer-events: none;
}

#top_members .swiper-button_container::before{/* 背景合わせるため、.text_wrapperと同サイズ */
	content: "";
	display: block;
	width: calc(100% + 50vw);
	height: 100%;
	background: url(../img/cmn/blue_paper.jpg);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#top_members .swiper-button_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	max-width: 32rem;
	margin-inline: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 4rem;
}

#top_members .swiper-button-prev,
#top_members .swiper-button-next{
	margin: 0;
	position: static;
}
#top_members .swiper-pagination{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	width: calc(82% - 8rem);
	position: static;
}

#top_members .swiper-pagination .swiper-pagination-bullet{
	width: 25%;
	height: 2px;
	border-radius: 0;
	background-color: var(--white);
	opacity: 1;
}
#top_members .swiper-pagination .swiper-pagination-bullet-active{
	background-color: var(--orange);
}


@media screen and (max-width: 1024px) {
	#top_members #top_members_swiper_pc + .swiper-button_container{
		position: absolute;
		visibility: hidden;
		pointer-events: none;
	}
	#top_members #top_members_swiper_tb + .swiper-button_container{
		position: relative;
		visibility: visible;
		pointer-events: all;
	}
}

@media screen and (max-width: 768px) {
	#top_members #top_members_swiper_tb + .swiper-button_container{
		position: absolute;
		visibility: hidden;
		pointer-events: none;
	}
}


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

.modal_container{
	max-width: 1200px;
	width: 92%;
	margin: auto;
	border: 1px solid var(--white);
	background-color: var(--hover_blue);
	position: relative;
	z-index: 1;
}

.modal_container .btn_close{
	display: block;
	width: 6rem;
	height: 6rem;
	background: transparent url(../img/cmn/modal_close.svg) no-repeat center/66%;
	position: absolute;
	top: -3rem;
	right: -3rem;
	z-index: 1;
}
.popup_container .btn_close:hover{
	opacity: .7;
}

.modal_container .modal_wrapper{
	--sb-track-color: var(--hover_thin-blue);
	--sb-thumb-color: var(--hover_blue);
	--sb-size: .8rem;
	overflow: auto;
	height: fit-content;
	max-height: calc(100vh - 20rem);
	padding: 5rem 5% 8rem;
}
.modal_container .modal_wrapper::-webkit-scrollbar {
	width: var(--sb-size);
}
.modal_container .modal_wrapper::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: .4rem;
}
.modal_container .modal_wrapper::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border: 1px solid var(--sb-track-color);
	border-radius: .4rem;
}
@supports not selector(::-webkit-scrollbar) {
	.modal_container .modal_wrapper{
		scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
	}
}

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

	.modal_container .btn_close{
		width: 4rem;
		height: 4rem;
		background-size: 75%;
		top: -2rem;
		right: -2rem;
	}

	.modal_container .modal_wrapper{
		max-height: calc(100vh - 10rem);
		padding: 2.5rem 7% 4rem;
	}

}
/* #top_members モーダル中身
-------------------------------------------------------- */
#top_members_modal .content{
	display: none;
	color: var(--white);
}
#top_members_modal .content.display{
	display: block;
}

#top_members_modal .title_box{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom: 1.5rem;
}
#top_members_modal .title{
	font-size: 2.2rem;
	line-height: 1.5;
	letter-spacing: .1em;
	margin: .5em 5% .5em 0;
}

#top_members_modal .detail_box{
	margin-bottom: 3rem;
}

#top_members_modal .detail_box dt,
#top_members_modal .name_box dt{
	padding-top: .2em;
	margin-bottom: .5em;
	position: relative;
}
#top_members_modal .detail_box dt::before,
#top_members_modal .name_box dt::before{
	content: "";
	display: block;
	width: 1.2em;
	height: 2px;
	background-color: var(--orange);
	position: absolute;
	top: 0;
	left: 0;
}

#top_members_modal .detail_box dd,
#top_members_modal .name_box dd{
	font-size: 1.4rem;
	letter-spacing: .1em;
}

#top_members_modal .detail_box dd{
	padding-left: 1.25em;
	margin-bottom: .5em;
	position: relative;
}
#top_members_modal .detail_box dd::before{
	content: "";
	display: block;
	width: .4em;
	height: .4em;
	border-radius: 50%;
	background-color: currentColor;
	position: absolute;
	left: 0;
	top: .7em;
}

#top_members_modal .name_box dd{
	line-height: 2.286;
}

@media screen and (max-width: 768px) {
	#top_members_modal .title_box{
		display: block;
		margin-bottom: 3rem;
	}
	#top_members_modal .title{
		font-size: 2rem;
		line-height: 1.75;
		margin: 0 0 1em;
	}

	#top_members_modal .detail_box{
		margin-bottom: 2.5rem;
	}
}

/* =====
	フッター直前 お問い合わせ
======================================================== */
#ft_contact{
	pointer-events: none;
	padding: calc(16rem + 17.5rem) 0 20rem;
	margin-top: -16rem;/* #top_members .swiper-button_containerの高さ参照 */
	position: relative;
}
body.arrival_ft_contact #ft_contact::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	background: url(../img/cmn/contact_bg.jpg) no-repeat center/cover;
}

#ft_contact .inner{
	pointer-events: all;
}
#ft_contact .guidance{
	color: var(--white);
	text-align: center;
	margin-bottom: 3.25em;
}

@media screen and (max-width: 768px) {
	#ft_contact{
		padding: 8rem 0;
		margin-top: 0;
	}
	#ft_contact .guidance{
		text-align: left;
		margin-bottom: 4em;
	}
}

/* リンク
-------------------------------------------------------- */
.ft_contact_list{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.ft_contact_list > li{
	color: var(--white);
	width: 32.4%;
	max-width: 35rem;
	border: 1px solid var(--white);
	background-color: rgba(200, 200, 200, .1);/* 祖先要素が.fadeだと（transformかかってると）backdrop-filter効かないので、ここにかけることに。 */
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	position: relative;
	transition: background-color .4s;
}
.ft_contact_list > li:has(a:hover){
	background-color: rgba(200, 200, 200, .3);
}
.ft_contact_list > li::after{
	content: "";
	display: block;
    width: 2.5%;
    height: 10%;
    background-color: var(--white);
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    position: absolute;
    right: -1px;
    bottom: -1px;
    z-index: 1;
}
.ft_contact_list > li.tel::after{
	display: none;
}

.ft_contact_list > li a{
	display: block;
	height: 100%;
	padding: 4.5rem 2%;
}

.ft_contact_list > li .title_text{
	font-size: 1.8rem;
	letter-spacing: .1em;
	width: fit-content;
	padding-bottom: 1em;
	margin: 0 auto 1.2em;
	position: relative;
}
.ft_contact_list > li .title_text::after{
	content: "";
	display: block;
	width: 7.6em;
	height: .4em;
	background: url(../img/cmn/ft_contact_title_line.png) no-repeat center/ 100%;
	position: absolute;
	left: calc(50% - 3.8em);
	bottom: 0;
}

.ft_contact_list > li .deco_text{
	font-size: 2.8rem;
	text-align: center;
	letter-spacing: .2em;
	line-height: 1.5;
	width: fit-content;
	padding-top: 1.2em;
	margin-inline: auto;
	position: relative;
}
.ft_contact_list > li .deco_text::before{
	content: "";
	display: block;
	width: 1.1em;
	height: .9em;
	background: url(../img/cmn/icon_bubble_wh.svg) no-repeat center/contain;
	position: absolute;
	left: calc(50% - .55em);
	top: 0;
}
.ft_contact_list > li.tel .deco_text::before{
	background-image: url(../img/cmn/icon_tel_wh.svg);
}
.ft_contact_list > li.mail .deco_text::before{
	background-image: url(../img/cmn/icon_mail_wh.svg);
}

.ft_contact_list > li .supple{
	letter-spacing: .05em;
	padding-top: 1em;
	text-align: center;
}

@media screen and (max-width: 860px) {
	.ft_contact_list > li .deco_text{
		font-size: 2.6rem;
	}
}

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

	.ft_contact_list > li{
		width: 100%;
		max-width: none;
		margin-bottom: 2rem;
	}
	.ft_contact_list > li:nth-last-of-type(1){
		margin-bottom: 0;
	}
	.ft_contact_list > li a{
		height: auto;
		padding: 3.5rem 8%;
	}

	.ft_contact_list > li .title_text{
		font-size: 1.6rem;
		padding-bottom: .8em;
		margin-bottom: 1em;
	}
	.ft_contact_list > li .title_text::after{
		width: 8.4em;
		left: calc(50% - 4.2em);
	}

	.ft_contact_list > li .deco_text{
		font-size: 2.4rem;
		text-align: center;
		line-height: 1.5;
		width: auto;
	}
	.ft_contact_list > li .supple{
		padding-top: 0;
	}
}


/* =====
	フッター直前 アクセス
======================================================== */
#ft_access{
	padding: 20rem 0;
	background-color: var(--bg_beige);
}
#ft_access .inner{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
}

#ft_access .text_wrapper{
	flex-shrink: 0;
	color: var(--white);
	width: fit-content;
	padding: 10rem 1rem;
	margin-right: 9%;
	position: relative;
}
#ft_access .text_wrapper::before{
	content: "";
	display: block;
	width: calc(204% + 200px);/* %部分は見た目で調整 */
	height: 100%;
	background: url(../img/cmn/blue_paper.jpg);
    position: absolute;
    left: -200px;
    top: 0;
    z-index: -1;
}

#ft_access .title_primary.horizon {
	padding-top: 1.25em;
}

#ft_access .text_wrapper .text{
	text-align: center;
	letter-spacing: .05em;
	margin-bottom: .25em;
}

#ft_access .map_box{
	-webkit-box-flex:1;
	flex-grow:1;
	height: 50rem;
	margin-top: 3.5%;
	margin-right: max(-200px, var(--protrude));
	position: relative;
}
#ft_access .map_box iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 768px) {
	#ft_access{
		padding: 4rem 0 8rem;
	}
	#ft_access .inner{
		display: block;
	}

	#ft_access .text_wrapper{
		width: 100%;
		padding: 10rem 1rem 13rem;
		margin-right: 0;
	}
	#ft_access .text_wrapper::before{
		width: 100vw;
		left: auto;
		right: 0;
	}

	#ft_access .text_wrapper .text{
		font-size: 1.6rem;
	}
	#ft_access .text_wrapper .text02{
		font-size: 1.4rem;
	}

	#ft_access .map_box{
		height: 39rem;
		margin-top: -10rem;
	}
}


/************************************************************************
	お知らせ
**************************************************************************/
#news .news_list{
	margin-bottom: 5rem;
}


/* タブ切り替え
-------------------------------------------------------- */
.news_tab3_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 4rem;
}

.news_tab3_wrapper > li{
	width: calc((100% - 2px) / 3);
}
.news_tab3_wrapper > li:nth-of-type(1) > *{
	border-radius: 1rem 0 0 1rem;
}
.news_tab3_wrapper > li:nth-of-type(3) > *{
	border-radius: 0 1rem 1rem 0;
}

.news_tab3_wrapper > li .current,
.news_tab3_wrapper > li a{
	display: block;
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .1em;
	position: relative;
}

.news_tab3_wrapper > li .current{
	color: var(--white);
	padding: 2em .25em;
	border-radius: 1rem !important;
	background-color: var(--hover_blue);
}
.news_tab3_wrapper > li a{
	padding: 1.5em .25em;
	background-color: var(--white);
}
.news_tab3_wrapper > li a:hover{
	color: var(--hover_light-blue);
}

.news_tab3_wrapper > li .current .lock_icon,
.news_tab3_wrapper > li a .lock_icon{
	display: inline-block;
	width: 1.1em;
	height: 1.1em;
	margin-right: .5em;
	-webkit-mask: url(../img/cmn/icon_lock_black.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_lock_black.svg) no-repeat center/contain;
	transform: translateY(.1em);
}
.news_tab3_wrapper > li .current .lock_icon{
	background-color: var(--white);
}
.news_tab3_wrapper > li a .lock_icon{
	background-color: var(--font_color);
}

@media screen and (max-width: 768px) {
	.news_tab3_wrapper{
		margin-bottom: 2.75rem;
	}
	.news_tab3_wrapper > li .current,
	.news_tab3_wrapper > li a{
		font-size: 1.4rem;
	}

	.news_tab3_wrapper > li .current{
		padding: 1.4em .2em;
	}
	.news_tab3_wrapper > li a{
		padding: 1em .2em;
	}
}


/* =====
	組合員限定
======================================================== */
.members_news_list > li a .text_wrapper{
	width: calc(96% - 1.25rem - 9.5rem - .75rem - 8.5rem);
}
.members_news_list > li a .text_wrapper .text01{
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	max-height: 1.5em;/* 古いSafariで、heightを指定しないとoverflow:hidden;が効かないみたいなので。 */
	margin-block: .4em;
	transition: color .4s;
}
.members_news_list > li a:hover .text_wrapper .text01{
	color: var(--hover_light-blue);
}

.members_news_list > li a .text_wrapper .members_text{
	font-size: .875em;/* 14/16 */
	color: var(--gray);
	letter-spacing: .05em;
	padding-left: 1.6em;
	margin-bottom: 1rem;
	position: relative;
	transition: color .4s;
}
.members_news_list > li a:hover .text_wrapper .members_text{
	color: var(--hover_light-blue);
}
.members_news_list > li a .text_wrapper .members_text::before{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	-webkit-mask: url(../img/cmn/icon_human.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_human.svg) no-repeat center/contain;
	background-color: currentColor;
	position: absolute;
	left: 0;
	top: calc(50% - .6em);
}

@media screen and (max-width: 768px) {
	.members_news_list > li a .text_wrapper{
		width: 100%;
	}
	.members_news_list > li a .text_wrapper .text01{
		-webkit-line-clamp: 2;
		max-height: 3.5em;
		margin-block: .25em;
	}
}



/* --------------------------------------------------------
	ページャー
-------------------------------------------------------- */
.wp-pagenavi{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	padding: 2em 8em;
	margin-inline: auto;
	position: relative;
	z-index: 1;
	background: url(../img/cmn/under_dots_blue.png) repeat-x left bottom;
}
.wp-pagenavi a, .wp-pagenavi span{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	line-height: 1;
	letter-spacing: .05em;
	width: 3.75em;/* 60/16 */
	height: 3.75em;
	margin: 0 .2em;
	border-radius: 50%;
}

.wp-pagenavi .current{
	color: var(--white);
	background-color: var(--hover_blue);
}
.wp-pagenavi .page:hover,
.wp-pagenavi .last:hover{
	color: var(--white);
	background-color: var(--hover_light-blue);
}
.wp-pagenavi .extend{
	padding-bottom: .5em;
}

.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink{
	width: auto;
	height: auto;
	padding-block: 1em;
	position: absolute;
	top: calc(50%);
	transform: translateY(-50%);
}
.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover{
	color: var(--hover_light-blue);
}

.wp-pagenavi .previouspostslink{
	padding-left: 3.75em;
	left: 0;
}
.wp-pagenavi .nextpostslink{
	padding-right: 3.75em;
	right: 0;
}
.wp-pagenavi .previouspostslink::before, .wp-pagenavi .nextpostslink::before,
.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after{
	content: "";
	display: block;
	width: 3.6em;
	height: 3.6em;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 1.8em);
}

.wp-pagenavi .previouspostslink::before, .wp-pagenavi .nextpostslink::before{
	background-color: transparent;
	transition: background-color .4s;
}
.wp-pagenavi .previouspostslink:hover::before, .wp-pagenavi .nextpostslink:hover::before{
	background-color: var(--hover_light-blue);
}

.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after{
	-webkit-mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/34%;
	mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/34%;
	background-color: var(--hover_blue);
	z-index: 1;
	transition: background-color .4s;
}
.wp-pagenavi .previouspostslink:hover::after, .wp-pagenavi .nextpostslink:hover::after{
	background-color: var(--white);
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .previouspostslink::after{
	transform: scale(-1, 1);
	left: -.2em;
}
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .nextpostslink::after{
	right: -.2em;
}
@media screen and (max-width: 768px) {
	.wp-pagenavi{
		padding: 1em 0 4.75em;
	}

	.wp-pagenavi a, .wp-pagenavi span{
		width: 2.86em;/* 80/28 */
		height: 2.86em;
		margin: 0 .25em;
	}

	.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink{
		padding-block: .75em;
		bottom: 1.5em;
		top: auto;
		transform: none;
	}
	.wp-pagenavi .previouspostslink{
		padding-left: 3.25em;
		
	}
	.wp-pagenavi .nextpostslink{
		padding-right: 3.25em;
	}
	.wp-pagenavi .previouspostslink::before, .wp-pagenavi .nextpostslink::before,
	.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after{
		width: 2.86em;
		height: 2.86em;
		top: calc(50% - 1.43em);
	}
	.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after{
		-webkit-mask-size: 45%;
		mask-size: 45%;
	}

}


/************************************************************************
	お知らせ詳細
**************************************************************************/
/* =====
	タイトルなど
======================================================== */
.single_article .title_wrapper{
	padding: 3.5rem 3% 4.5rem;
	margin-bottom: 5rem;
	background-color: var(--hover_blue);
}

.single_article .title_wrapper h1{
	font-size: 2.8rem;
	color: var(--white);
	line-height: 1.5;
	letter-spacing: .1em;
}


.single_article .title_wrapper .date_cat_wrap{
	margin-bottom: 1rem;
}

.single_article .date{
	color: var(--white);
	margin-right: 1em;
	margin-bottom: 1rem;
}
.single_article .cat{
	margin-right: 1em;
	margin-bottom: 1rem;
	background-color: var(--hover_light-blue);
}
.single_article .cat.important, .single_article .cat.recruit{
	background-color: var(--orange);
}

.single_article .title_wrapper .members_link{
	display: block;
	font-size: .875em;/* 14/16 */
	color: var(--gray);
	letter-spacing: .05em;
	padding-left: 1.6em;
	margin-bottom: 1rem;
	text-decoration: underline;
	text-underline-position: under;
	position: relative;
}
.single_article .title_wrapper .members_link:hover{
	text-decoration: none;
}
.single_article .title_wrapper .members_link::before{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	background: url(../img/cmn/icon_human.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: calc(50% - .6em);
}

@media screen and (max-width: 768px) {
	.single_article .title_wrapper{
		padding: 3rem 5% 4rem;
		margin-bottom: 5rem;
		background-color: var(--hover_blue);
	}
	.single_article .title_wrapper h1{
		font-size: 2rem;
	}
}

/* =====
	ページャー
======================================================== */
.single_pager{
	width: fit-content;
	max-width: 100%;
	padding: 1.8em 10.5em;
	margin-inline: auto;
	position: relative;
	z-index: 1;
	background: url(../img/cmn/under_dots_blue.png) repeat-x left bottom;
}

.single_pager a{
	display: block;
	letter-spacing: .05em;
}

.single_pager .to_list{
	color: var(--white);
	width: fit-content;
	padding: 1em 2em;
	border-radius: 5em;
	background-color: var(--hover_blue);
}

.single_pager .to_list:hover{
	background-color: var(--hover_light-blue);
}

.single_pager .prev, .single_pager .next{
	padding-block: 1em;
	position: absolute;
	top: calc(50%);
	transform: translateY(-50%);
}
.single_pager .prev:hover, .single_pager .next:hover{
	color: var(--hover_light-blue);
}
.single_pager .prev{
	padding-left: 4em;
	left: 0;
}
.single_pager .next{
	padding-right: 4em;
	right: 0;
}

.single_pager .prev::before, .single_pager .next::before,
.single_pager .prev::after, .single_pager .next::after{
	content: "";
	display: block;
	width: 3.6em;
	height: 3.6em;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 1.8em);
}
.single_pager .prev::before, .single_pager .next::before{
	background-color: transparent;
	transition: background-color .4s;
}
.single_pager .prev:hover::before, .single_pager .next:hover::before{
	background-color: var(--hover_light-blue);
}

.single_pager .prev::after, .single_pager .next::after{
	-webkit-mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/34%;
	mask: url(../img/cmn/btn_arrow_blue.svg) no-repeat center/34%;
	background-color: var(--hover_blue);
	z-index: 1;
	transition: background-color .4s;
}
.single_pager .prev:hover::after, .single_pager .next:hover::after{
	background-color: var(--white);
}

.single_pager .prev::before,
.single_pager .prev::after{
	transform: scale(-1, 1);
	left: 0;
}
.single_pager .next::before,
.single_pager .next::after{
	right: 0;
}


@media screen and (max-width: 768px) {
	.single_pager{
		width: 100%;
		padding: 1.2em 7.5em;
	}
	.single_pager .to_list{
		padding: .5em 1em;
		margin-inline: auto;
	}

	.single_pager .prev, .single_pager .next{
		padding-block: .75em;
	}
	.single_pager .prev{
		padding-left: 3em;
		
	}
	.single_pager .next{
		padding-right: 3em;
	}

	.single_pager .prev::before, .single_pager .next::before,
	.single_pager .prev::after, .single_pager .next::after{
		width: 2.86em;
		height: 2.86em;
		top: calc(50% - 1.43em);
	}
	.single_pager .prev::after, .single_pager .next::after{
		-webkit-mask-size: 45%;
		mask-size: 45%;
	}
}

/* =====
	エディター出力部分（ブロックエディタ）
======================================================== */
/* 今だけ */
.wp-block-columns{
	gap: 2em;
}
/* -----
	共通
-------------------- */
.content{
	font-size: 1.6rem;/* 本文16px */
	padding-bottom: 2rem;
}
.content > *{/* 大体の要素 */
	line-height: 1.75;
	margin-block: 1.5rem;/* 上下余白（デフォルトは28px） */
}

.content :where(.wp-block-columns.has-background) {/* 背景色のある要素 */
    padding: 1.25em 2.375em;
}

/* 各色はfunction.phpで追加後、CSSに記述 */
.has-blue-background-color {
	background-color: #003C97;
}
.has-blue-color {
	color: #003C97;
}

.has-pink-background-color {
	background-color: #fd5a68;
}
.has-pink-color {
	color: #fd5a68;
}

.has-green-background-color {
	background-color: #01BFA9;
}
.has-green-color {
	color: #01BFA9;
}

@media screen and (max-width: 768px) {
	.content{
		font-size: 1.4rem;/* 本文18px */
	}
	.content > *{/* .contentは<?php the_content(); ?>を囲む要素なので、任意のクラス名 */
		margin-bottom: 1.4rem;
		margin-top: 1.4rem;
	}
}


/* -----
	文字
-------------------- */
strong{/* 太字 */
	font-weight: 600;
}
.content em{/* イタリック */
	font-style: italic;
}

.content sup{/* 上付き文字 */
	vertical-align: super;
    font-size: smaller;
}
.content sub{/* 下付き文字 */
	vertical-align: sub;
    font-size: smaller;
}

.content a{
	cursor: pointer;
	color: var(--hover_light-blue);
	transition: .4s;
}
.content a:hover{
	color: var(--font_color);
}

.content a[target="_blank"]{
	display: inline-block;
	position: relative;
}
.content a[target="_blank"]::after{
	content: "";
	display: inline-block;
	width: .9em;
	height: .9em;
	margin-left: .5em;
	-webkit-mask: url(../img/cmn/icon_blank.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_blank.svg) no-repeat center/contain;
	background-color: currentColor;
}

.wp-element-caption{
	font-size: .778em;/* 14/18 */
}

/* -----
	見出し
-------------------- */
h1.wp-block-heading,
h2.wp-block-heading{/* デザインに合わせる可能性あり */
	font-size: 1.625em;/* 26/16 */
	letter-spacing: .2em;
}
h3.wp-block-heading{/* デザインに合わせる可能性あり */
	font-size: 1.375em;/* 22/16 */
	letter-spacing: .1em;
}
h4.wp-block-heading{
	font-size: 1.125em;/* 18/16 */
	letter-spacing: .1em;
}
h5.wp-block-heading{
	font-size: 1.05em;
	letter-spacing: .1em;
}
h6.wp-block-heading{
	font-size: 1em;
}

/* オリジナルスタイル */
.wp-block-heading.is-style-heading_under_dots{
	position: relative;
	padding-bottom: .5em;
	background: url(../img/cmn/under_dots_blue.png) repeat-x left bottom;
}

.wp-block-heading.is-style-heading_left_deco01{
	padding-left: 1em;
	position: relative;
}
.wp-block-heading.is-style-heading_left_deco01::before{
	content: "";
	display: block;
	width: .25em;
	height: 100%;
	background-color: var(--hover_blue);
	position: absolute;
	left: 0;
	top: 0;
}

.wp-block-heading.is-style-heading_left_deco02{
	padding-left: 1.75em;
	position: relative;
}
.wp-block-heading.is-style-heading_left_deco02::before{
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	background-color: var(--hover_blue);
	position: absolute;
	left: 0;
	top: calc(50% - .5em);
}

/* -----
	リスト
-------------------- */
.wp-block-list{
	list-style-type: disc;
	padding-left: 1em;/* リストの記号がインナー外にでるため */
}
.wp-block-list .wp-block-list{
	list-style-type: circle;
	padding-left: 2em;
}
.wp-block-list .wp-block-list .wp-block-list{
	list-style-type: square;
}

ol.wp-block-list{
	list-style-type: decimal;
}

/* -----
	ボタン
-------------------- */
/* 通常のボタン */
.content .wp-block-button__link:not(.has-vivid-red-color){
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
}
.content .wp-block-button__link:not(.has-text-color){
	color: #fff;
}
.content .wp-block-button__link:not(.has-background){
    background-color: #32373c;
}

.content .wp-block-button__link{/* .content aを上書きするため、「.content」も必要 */
	text-decoration: none;
}

/* -----
	テーブル
-------------------- */
/* 
	テーブルはCSS調整必要なし。
	プラグイン「Flexible Table Block」を導入すること。
*/


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



/************************************************************************
	組合について
**************************************************************************/
/* =====
	奈良県建築協同組合について
======================================================== */

/* 背景スライダー
-------------------------------------------------------- */
#about_intro{
	padding: 8rem 0;
	position: relative;
}

#about_intro .bg_slider_container{
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
#about_intro .bg_slider_container::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(51, 51, 51, .5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

#about_intro .slider_wrapper{
	display: -webkit-box;
	display: flex;
	height: 50%;
}

/* アニメーションは#top_about引用 */
#about_intro .slider_wrapper.right .slider{
	display: -webkit-box;
	display: flex;
	animation: slider-right 50s infinite linear both;
}
#about_intro .slider_wrapper.left .slider{
	display: -webkit-box;
	display: flex;
	animation: slider-left 50s infinite linear both;
}

#about_intro .slider .slider_item img{
	max-width: none;
	height: 100%;
}

#about_intro .sp_slide_container{
	display: none;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	#about_intro{
		padding: 0;
	}

	#about_intro .bg_slider_container{
		height: auto;
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
	}

	#about_intro .slider_wrapper{
		height: auto;
	}


	#about_intro .slider .slider_item{
		width: 19.5rem;
	}
	#about_intro .slider .slider_item img{
		max-width: 100%;
		height: auto;
	}

	#about_intro .sp_slide_container{
		display: block;
	}
	#about_intro .sp_slide_container::after{
		content: "";
		display: block;
		width: 100%;
		height: 102%;
		background-color: rgba(51, 51, 51, .5);
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
	}
}

/* テキスト部分+画像
-------------------------------------------------------- */
#about_intro .flex_container{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: end;
	align-items: flex-end;
	position: relative;
	z-index: 3;
}
#about_intro .flex_container .text_wrapper{
	color: var(--white);
	width: calc(100% - 54rem - ((100% / 2.7) - (var(--js_windowWidth) / 2.7)));
	padding: 7rem 5% 7.25rem 0;
	position: relative;
}

#about_intro .flex_container .text_wrapper::before{
	content: "";
	display: block;
	width: calc(124% + 20rem);/* %部分は見た目で調整 */
	height: 100%;
	background: url(../img/cmn/blue_paper.jpg);
    position: absolute;
    right: -24%;
    top: 0;
    z-index: -1;
}

#about_intro .flex_container .img{
	width: 54rem;
	margin-right: calc((100% / 2.7) - (var(--js_windowWidth) / 2.7));
	margin-bottom: -2rem;
}

@media screen and (max-width: 1200px) {
	#about_intro .flex_container .text_wrapper{
		width: calc(100% - 44rem - ((100% / 2.7) - (var(--js_windowWidth) / 2.7)));
	}

	#about_intro .flex_container .img{
		width: 44rem;
	}
}
@media screen and (max-width: 900px) {
	#about_intro .flex_container{
		display: block;
	}

	#about_intro .flex_container .text_wrapper{
		width: 100%;
		padding: 7rem 0 18rem;
		position: relative;
	}
	#about_intro .flex_container .text_wrapper::before{
		width: 120%;
		right: -10%;
		z-index: -1;
	}

	#about_intro .flex_container .img{
		width: 100%;
		max-width: 44rem;
		margin: -15rem auto 0;
	}
}

@media screen and (max-width: 768px) {
	#about_intro .flex_container .text_wrapper{
		padding: 7rem 0;
	}

	#about_intro .flex_container .img{
		width: 100%;
		max-width: 35rem;
		margin: 0 auto;
		position: absolute;
		top: calc(100% - 4rem);
		left: 0;
		right: 0;
	}
}


/************************************************************************
	組合員紹介
**************************************************************************/
/* =====
	上部
======================================================== */

@media screen and (max-width: 768px) {
	#members .guidance{
		width: 92%;
		margin-inline: auto;
	}
}
/* タブ切り替え
-------------------------------------------------------- */
.tab3_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 6rem;
}
#members .tab3_wrapper{
	margin-bottom: 4rem;
}

.tab3_wrapper > li{
	width: calc((100% - 2px) / 3);
}
.tab3_wrapper > li:nth-of-type(1) > *{
	border-radius: 1rem 0 0 1rem;
}
.tab3_wrapper > li:nth-of-type(3) > *{
	border-radius: 0 1rem 1rem 0;
}

.tab3_wrapper > li > .active,
.tab3_wrapper > li > *{
	display: block;
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .1em;
	width: 100%;
	position: relative;
}

.tab3_wrapper > li > .active{
	pointer-events: none;
	color: var(--white);
	padding: 2em .25em;
	border-radius: 1rem !important;
	background-color: var(--hover_blue);
}
.tab3_wrapper > li > *{
	padding: 1.5em .25em;
	background-color: var(--white);
}
.tab3_wrapper > li > *:hover{
	color: var(--hover_light-blue);
}

@media screen and (max-width: 768px) {
	.tab3_wrapper{
		margin-bottom: 3rem;
	}
	#members .tab3_wrapper{
		margin-bottom: 2.75rem;
	}
	.tab3_wrapper > li > .active,
	.tab3_wrapper > li > *{
		font-size: 1.6rem;
	}
	.tab3_wrapper.sp_small > li > .active,
	.tab3_wrapper.sp_small > li > *{
		font-size: 1.5rem;
	}

	.tab3_wrapper > li > .active{
		padding: 1em .25em;
	}
	.tab3_wrapper > li > *{
		padding: .75em .25em;
	}
}

/* タブ切り替え
-------------------------------------------------------- */
.narrow_list_wrapper{
	display: none;
	margin-bottom: 3rem;
}
.narrow_list_wrapper.active{
	display: block;
}

.narrow_list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	color: var(--hover_blue);
	letter-spacing: .05em;
	width: calc(100% + 1.05em);
	margin-bottom: 3rem;
}

.narrow_list > .cat-item{
	margin-right: 1.05em;
	margin-bottom: 1em;
}
.narrow_list > .cat-item a{
	display: block;
	width: fit-content;
	padding: 0 1.85em .1em;
	border-radius: 5em;
	background-color: var(--white);
}
.narrow_list > .current-cat a{
	color: var(--white);
	background-color: var(--hover_blue);
}

@media screen and (max-width: 768px) {
	.narrow_list_wrapper{
		margin-bottom: 2rem;
	}
	.narrow_list{
		font-size: 1.2rem;
		width: calc(100% + 1em);
		margin-bottom: 2rem;
	}
	.narrow_list.sp_3column,
	.narrow_list.sp_4column{
		width: 100%;
	}

	.narrow_list > .cat-item{
		margin-right: 1em;
	}

	.narrow_list.sp_3column > .cat-item{
		width: 31%;
		margin-right: calc(7% / 2);
	}
	.narrow_list.sp_3column > .cat-item:nth-of-type(3n){
		margin-right: 0;
	}

	.narrow_list.sp_4column > .cat-item{
		width: 23.4%;
		margin-right: calc(6.4% / 3);
	}
	.narrow_list.sp_4column > .cat-item:nth-of-type(4n){
		margin-right: 0;
	}
	
	.narrow_list > .cat-item a{
		padding: .05em 2.25em .15em;
	}
	.narrow_list.sp_3column > .cat-item a,
	.narrow_list.sp_4column > .cat-item a{
		width: 100%;
		text-align: center;
		padding: .05em .1em .15em;
	}
}

/* =====
	一覧
======================================================== */
/* トリガー
-------------------------------------------------------- */
.members_list{
	margin-bottom: 5rem;
}
.members_list > li{
	background-color: var(--white);
	transition: background-color .4s;
}
.members_list > li.is_acc_open{
	background-color: var(--hover_blue);
}

.members_list > li .trigger_container{
	cursor: pointer;
	padding: 2rem calc(5rem + 2.5%) 2rem 2.5%;
	border-bottom: 1px solid var(--bg_beige);
	position: relative;
}

.members_list > li .trigger_container h3{
	font-size: 2.2rem;
	line-height: 1.4;
	letter-spacing: .1em;
	margin-bottom: .2em;
	transition: color .4s;
}
.members_list > li.is_acc_open .trigger_container h3{
	color: var(--white);
}
.members_list > li .trigger_container:hover h3{
	color: var(--hover_light-blue);
}
.members_list > li .trigger_container .type{
	font-size: 1.4rem;
	color: var(--gray);
	line-height: 1.7;
	letter-spacing: .1em;
	padding-left: 1.6em;
	margin-left: .75em;
	position: relative;
	transition: color .4s;
}
.members_list > li .trigger_container:hover .type{
	color: var(--hover_light-blue);
}
.members_list > li .trigger_container .type::before{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	-webkit-mask: url(../img/cmn/icon_type.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_type.svg) no-repeat center/contain;
	background-color: currentColor;
	position: absolute;
	left: 0;
	top: .25em;
}

.members_list > li .trigger_container button{
	display: block;
	width: 5rem;
	height: 5rem;
	background-color: transparent;
	border-radius: 50%;
	position: absolute;
	right: 2%;
	top: calc(50% - 2.5rem);
	transition: background-color .4s;
}
.members_list > li .trigger_container:hover button{
	background-color: var(--hover_thin-blue);
}

.members_list > li .trigger_container button::before,
.members_list > li .trigger_container button::after{
	content: "";
	display: block;
	width: 35%;
	height: 35%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: opacity .4s;
}
.members_list > li .trigger_container button::before{
	background: url(../img/cmn/acc_minus.svg) no-repeat center/contain;
	opacity: 0;
}
.members_list > li .trigger_container button::after{
	background: url(../img/cmn/acc_plus.svg) no-repeat center/contain;
}
.members_list > li.is_acc_open .trigger_container button::before{
	opacity: 1;
}
.members_list > li.is_acc_open .trigger_container button::after{
	opacity: 0;
}

@media screen and (max-width: 768px) {
	.members_list{
		margin-bottom: 2.5rem;
	}
	.members_list > li .trigger_container{
		padding: 2.5rem calc(4rem + .5%) 2.5rem 2.5%;
	}
	.members_list > li .trigger_container h3{
		font-size: 2rem;
		margin-bottom: .1em;
	}
	.members_list > li .trigger_container .type{
		font-size: 1.2rem;
	}

	.members_list > li .trigger_container button{
		width: 4rem;
		height: 4rem;
		right: .5%;
		top: calc(50% - 2rem);
	}

	.members_list > li .trigger_container button::before,
	.members_list > li .trigger_container button::after{
		width: 42%;
		height: 42%;
	}
}

/* 中身
-------------------------------------------------------- */
.members_list > li .detail_container{
	display: none;
	padding: 4rem 3.25%;
	border-bottom: 2px solid var(--bg_beige);
}

.members_list > li .detail_container .flex_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.members_list > li .detail_container .thumb{
	-ms-flex-item-align: start;
	align-self: flex-start;
	width: 48%;
	position: relative;
}
.members_list > li .detail_container .thumb::before{
	content: "";
	display: block;
	padding-top: 66.66%;
}

.members_list > li .detail_container .thumb img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.members_list > li .detail_container .right_box{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	width: 50%;
	max-width: 54rem;
}

.members_list > li .detail_container .detail_list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding-bottom: 1em;
}
.members_list > li .detail_container .detail_list dt{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-transform: uppercase;
	line-height: 1.5;
	width: 12rem;
	padding: .45em .2em .55em;
	margin-bottom: .7em;
	background-color: var(--white);
}
.members_list > li .detail_container .detail_list dd{
	color: var(--white);
	line-height: 1.5;
	width: calc(96% - 12rem);
	padding-top: .4em;
	margin-bottom: 1.2em;
}
.members_list > li .detail_container .detail_list dd a:hover{
	text-decoration: underline;
}

.members_list > li .detail_container .btn_secondary{
	margin-top: auto;
	margin-left: auto;
	margin-right: -2%;
}
.members_list > li .detail_container .btn_secondary .icon{
	display: block;
	width: 1em;
	height: 1.2em;
	margin-right: .5em;
	position: relative;
}
.members_list > li .detail_container .btn_secondary .icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
@media screen and (max-width: 768px) {
	.members_list > li .detail_container{
		padding: 2rem 3.5% 4rem;
	}

	.members_list > li .detail_container .flex_wrapper{
		display: block;
	}

	.members_list > li .detail_container .thumb{
		width: 100%;
		margin-bottom: 2rem;
	}

	.members_list > li .detail_container .right_box{
		display: block;
		width: 100%;
		max-width: none;
	}

	.members_list > li .detail_container .detail_list dt{
		width: 10rem;
		padding: .6em .2em .7em;
		margin-bottom: .4em;
	}
	.members_list > li .detail_container .detail_list dd{
		line-height: 1.75;
		width: calc(94% - 10rem);
		margin-bottom: .8em;
	}

	.members_list > li .detail_container .btn_secondary{
		margin: 0 auto;
	}
}



/************************************************************************
	組合員詳細
**************************************************************************/
/* タイトル
-------------------------------------------------------- */
.member_single .title_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	padding-bottom: 1.75rem;
	background: url(../img/cmn/under_dots_blue.png) repeat-x left bottom;
}

.member_single h1{
	font-size: 2.8rem;
	line-height: 1.5;
	letter-spacing: .15em;
	font-feature-settings: "palt";
	padding-right: .5em;
}

.member_single .type{
	font-size: 1.4rem;
	color: var(--hover_blue);
	padding-left: 1.75em;
	margin-left: auto;
	position: relative;
}
.member_single .type::before{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	background: url(../img/cmn/icon_type_blue.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: .25em;
}

@media screen and (max-width: 768px) {
	.member_single .title_wrapper{
		display: block;
		width: 92%;
		margin-inline: auto;
		padding-bottom: 1.5rem;
		background: url(../img/cmn/under_dots_blue.png) repeat-x left bottom;
	}

	.member_single h1{
		font-size: 2rem;
		padding-right: 0;
	}

	.member_single .type{
		font-size: 1.2rem;
	}
}


/* サムネイル・詳細情報
-------------------------------------------------------- */
.member_single .detail_container{
	padding: 2.25rem 0 5rem;
}

.member_single .detail_container .flex_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
	margin-bottom: 4rem;
}

.member_single .detail_container .thumb{
	width: 54rem;
	position: relative;
}
.member_single .detail_container .thumb::before{
	content: "";
	display: block;
	padding-top: 66.66%;
}

.member_single .detail_container .thumb img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.member_single .detail_container .detail_list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	justify-content: space-between;
	width: calc(98% - 54rem);
	max-width: 60rem;
}
.member_single .detail_container .detail_list dt{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	color: var(--hover_blue);
	text-transform: uppercase;
	line-height: 1.5;
	width: 12rem;
	padding: .45em .2em .55em;
	margin-bottom: .7em;
	background-color: var(--white);
}
.member_single .detail_container .detail_list dd{
	line-height: 1.5;
	width: calc(96% - 12rem);
	padding-top: .4em;
	margin-bottom: 1.2em;
}
.member_single .detail_container .detail_list dd a:hover{
	text-decoration: underline;
}

@media screen and (max-width: 1024px) {
	.member_single .detail_container .thumb{
		width: 45rem;
	}
	.member_single .detail_container .detail_list{
		width: calc(98% - 45rem);
	}
}

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

	.member_single .detail_container .flex_wrapper{
		display: block;
		width: 92%;
		margin-inline: auto;
		margin-bottom: 5.5rem;
	}

	.member_single .detail_container .thumb{
		width: 100%;
		margin-bottom: 2rem;
	}

	.member_single .detail_container .detail_list{
		width: 100%;
		max-width: none;
	}
	.member_single .detail_container .detail_list dt{
		width: 10rem;
		padding: .6em .2em .7em;
		margin-bottom: .4em;
	}
	.member_single .detail_container .detail_list dd{
		line-height: 1.75;
		width: calc(94% - 10rem);
		margin-bottom: .8em;
	}
}

/* ニュース
-------------------------------------------------------- */
.member_single.news_list{
	height: 50rem;
	overflow: auto;
}

@media screen and (max-width: 768px) {
	.member_single .news_list{
		height: 53rem;
	}
}


/* ページャー
-------------------------------------------------------- */
#members_single .single_pager{
	padding: 1.8em 9em;
}

#members_single .single_pager .to_list{
	padding: 1em 2.5em;
}

#members_single .single_pager .prev{
	left: .5em;
}
#members_single .single_pager .next{
	right: .5em;
}


@media screen and (max-width: 768px) {
	#members_single .single_pager{
		width: 92%;
		padding: 1.2em 4.75em;
	}

	#members_single .single_pager .to_list{
		padding: .5em 1.75em;
	}

	
	#members_single .single_pager .prev{
		padding-left: 3.25em;
		left: 0;
		
	}
	#members_single .single_pager .next{
		padding-right: 3.25em;
		right: 0;
	}
}




/************************************************************************
	事業内容下層
**************************************************************************/
/* =====
	スクロールヒント
======================================================== */
.scroll-hint-icon{
    left: calc(50% - 50px);
    width: 100px;
}
.scroll-hint-icon-white{
	box-shadow: var(--shadow_primary);
}

/* =====
	共通
======================================================== */
.business_lower{
	overflow: visible;
}

.has_aside{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
	padding-block: 8rem 10rem;
}

.has_aside .left_area{
	/* -----------
		冒頭（.business_intro）のはみ出しを綺麗に計算するため、max-widthを定めていない要素で囲む必要がある
	----------- */
	width: calc(100% - 24rem);
}
/* -----------
	.business_introより下はmax-widthを定めたいので、divで囲む
----------- */
.has_aside .left_inner{
	width: min(88rem, 96%);
}

@media screen and (max-width: 768px) {
	.business_lower{
		overflow: hidden;
	}

	.has_aside{
		display: block;
		padding-block: 0 8rem;
	}

	.has_aside .left_area{
		width: 100%;
		margin-bottom: 6rem;
	}
	.has_aside .left_inner{
		width: 100%;
	}
}

/* サイドバー
-------------------------------------------------------- */
.has_aside aside{
	width: 24rem;
	position: -webkit-sticky;
	position: sticky;
	top: 11rem;
}

.aside_business_title{
	font-size: 1.8rem;
	color: var(--white);
	text-align: center;
	padding: .75em .5em;
	background-color: var(--hover_blue);
}

.aside_business_link_list > li{
	margin-bottom: 1px;
	--icon: url(../img/business/icon_benefits.svg);
}
.aside_business_link_list > li.benefits{
	--icon: url(../img/business/icon_benefits.svg);
}
.aside_business_link_list > li.aid{
	--icon: url(../img/business/icon_aid.svg);
}
.aside_business_link_list > li.education{
	--icon: url(../img/business/icon_education.svg);
}
.aside_business_link_list > li.scrap{
	--icon: url(../img/business/icon_scrap.svg);
}
.aside_business_link_list > li.vocational_training{
	--icon: url(../img/business/icon_vocational_training.svg);
}

.aside_business_link_list > li > .parent_trigger,
.aside_business_link_list > li > .no_trigger{
	cursor: pointer;
	display: block;
	padding: 1em 1em 1em 2.75em;
	border-left: .4em solid var(--white);
	background-color: var(--white);
	position: relative;
	transition: border-color .4s, background-color .4s, opacity .4s;
}
.aside_business_link_list > li > .parent_trigger:hover,
.aside_business_link_list > li a:hover{
	opacity: .8;
}
.aside_business_link_list > li.acc_open > .parent_trigger{
	border-color: #e6eef1;
	background-color: #e6eef1;
}
.aside_business_link_list > li > .parent_trigger::before,
.aside_business_link_list > li > .no_trigger::before{
	content: "";
	display: block;
	width: 2.6em;
	height: 2.6em;
	background: no-repeat center/contain;
	background-image: var(--icon);
	position: absolute;
	left: .15em;
	top: calc(50% - 1.3em);
}

.aside_business_link_list > li > .parent_trigger::after{
	content: "";
	display: block;
	width: 1em;
	height: .4em;
	background: url(../img/cmn/sidebar_arrow.svg) no-repeat center/contain;
	position: absolute;
	right: .55em;
	top: calc(50% - .2em);
	transition: transform .4s;
}
.aside_business_link_list > li.acc_open > .parent_trigger::after{
	transform: scale(1, -1);
}

.aside_business_link_list > li > a.current{
	pointer-events: none;
	color: var(--hover_blue);
	border-color: var(--hover_blue);
	background-color: var(--hover_thin-blue);
}
.aside_business_link_list > li.acc_open > .parent_trigger{
	border-color: #e6eef1;
	background-color: #e6eef1;
}

.aside_business_link_list .child_list{
	display: none;
	letter-spacing: 0;
}
.aside_business_link_list .child_list > li a{
	display: block;
	padding: .75em 1em .75em 1.5em;
	border-left: .4em solid var(--white);
	background-color: var(--white);
	position: relative;
}
.aside_business_link_list .child_list > li a:hover{
	opacity: .8;
}
.aside_business_link_list > li.acc_open .child_list > li a{
	color: var(--hover_blue);
	border-color: #e6eef1;
	background-color: #e6eef1;
}
.aside_business_link_list > li.acc_open .child_list > li a.current{
	pointer-events: none;
	color: var(--hover_blue);
	border-color: var(--hover_blue);
	background-color: var(--hover_thin-blue);
}


@media screen and (max-width: 768px) {
	.has_aside aside{
		width: 100%;
		position: static;
		top: auto;
	}

	.aside_business_title{
		font-size: 1.6rem;
	}

	.aside_business_link_list > li > .parent_trigger,
	.aside_business_link_list > li > .no_trigger{
		padding: 1em 2.5em 1em 3.3em;
	}
	.aside_business_link_list > li > .parent_trigger::before,
	.aside_business_link_list > li > .no_trigger::before{
		left: .5em;
	}

	.aside_business_link_list > li > .parent_trigger::after{
		right: 1.25em;
	}
}

/* 冒頭文
-------------------------------------------------------- */
.business_lower{
	--intro_bg: url(../img/business/intro_skills_training.jpg);
}
/* 技術・講習・資格取得 */
#skills_training{
	--intro_bg: url(../img/business/intro_skills_training.jpg);
}
/* 労働保険事務組合 */
#labor_office{
	--intro_bg: url(../img/business/intro_labor_office.jpg);
}
/* 労働保険について */
#labor_insurance{
	--intro_bg: url(../img/business/intro_labor_insurance.jpg);
}
/* 労働保険料・各種資料 */
#insurance_fees{
	--intro_bg: url(../img/business/intro_insurance_fees.jpg);
}
/* 建設業退職金制度 */
#construction_pension{
	--intro_bg: url(../img/business/intro_construction_pension.jpg);
}
/* 団体保険制度 */
#group_insurance{
	--intro_bg: url(../img/business/intro_group_insurance.jpg);
}
/* 教育情報事業 */
#education{
	--intro_bg: url(../img/business/intro_education.jpg);
}
/* 廃材処理対策事業 */
#scrap{
	--intro_bg: url(../img/business/intro_scrap.jpg);
}
/* 職業訓練事業 */
#vocational_training{
	--intro_bg: url(../img/business/intro_vocational_training.jpg);
}

.business_intro{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	color: var(--white);
	width: 100%;
	min-height: 40rem;
	padding-block: 9rem;
	margin-bottom: 3.5rem;
	position: relative;
}
.business_intro .text_box{
	font-size: 1.8rem;
	letter-spacing: .1em;
	width: 92%;
	max-width: 80rem;
	position: relative;
	z-index: 1;
}

.business_intro::before{
	content: "";
	display: block;
	/* -----------
		.left_innerの「96% + はみ出し分」
		又は、.left_inner最大値「88rem + はみ出し分」
	----------- */
	width: min(calc(88rem + var(--js_windowWidth) / 2 - (100% + 24rem) / 2), calc(96% + var(--js_windowWidth) / 2 - (100% + 24rem) / 2));
	/* -----------
		最大幅は、ウィンドウ1600pxの時の 「88rem+はみ出し200px」なのでmax-widthをさらに指定
	----------- */
	max-width: calc(88rem + 200px);
	height: 100%;
	/* -----------
		ウィンドウ1600pxの時、左へ-200px。それ以上-方向へは進めない。
		50% - 50vwの容量で、
		50% = 要素の半分 = width100%にasideの幅を足してから、2で割る
		50vw = 画面幅の半分
		calc((100% + 24rem) / 2 - var(--js_windowWidth) / 2)
	----------- */
	margin-left: max(-200px, calc((100% + 24rem) / 2 - var(--js_windowWidth) / 2));
	background: no-repeat center/cover;
	background-image: var(--intro_bg);
	position: absolute;
	left: 0;
	top: 0;
}


@media screen and (max-width: 768px) {
	/* 技術・講習・資格取得 */
	#skills_training{
		--intro_bg: url(../img/business/intro_skills_training_sp.jpg);
	}
	/* 労働保険事務組合 */
	#labor_office{
		--intro_bg: url(../img/business/intro_labor_office_sp.jpg);
	}
	/* 労働保険について */
	#labor_insurance{
		--intro_bg: url(../img/business/intro_labor_insurance_sp.jpg);
	}
	/* 労働保険料・各種資料 */
	#insurance_fees{
		--intro_bg: url(../img/business/intro_insurance_fees_sp.jpg);
	}
	/* 建設業退職金制度 */
	#construction_pension{
		--intro_bg: url(../img/business/intro_construction_pension_sp.jpg);
	}
	/* 団体保険制度 */
	#group_insurance{
		--intro_bg: url(../img/business/intro_group_insurance_sp.jpg);
	}
	/* 教育情報事業 */
	#education{
		--intro_bg: url(../img/business/intro_education_sp.jpg);
	}
	/* 廃材処理対策事業 */
	#scrap{
		--intro_bg: url(../img/business/intro_scrap_sp.jpg);
	}
	/* 職業訓練事業 */
	#vocational_training{
		--intro_bg: url(../img/business/intro_vocational_training_sp.jpg);
	}

	.business_intro{
		min-height: 37.5rem;
	}
	.business_intro .text_box{
		font-size: 1.6rem;
		width: 100%;
		max-width: none;
	}
	.business_intro::before{
		width: calc(100% + (var(--js_windowWidth) - 100%));
		max-width: none;
		margin-inline: var(--protrude);
	}
}


/* 左セクション基本
-------------------------------------------------------- */
.business_sec{
	padding-top: 3.5rem;
	margin-bottom: 3.25rem;
}
.business_sec:nth-last-of-type(1){
	margin-bottom: 0;
}

.business_sec_child{
	padding-top: 5.5rem;
}
.business_sec_child.pt0{
	padding-top: 0;
}
.business_sec_child.pt_few{
	padding-top: 3.5rem;
}

.business_sec .title_under_dots{
	margin-bottom: .75em;
}
.business_sec .title_left_deco01{
	margin-bottom: 1em;
}

.business_sec .over-flow_box{
	overflow: auto;
	scrollbar-color: #8e8c81 #d6d3c3;
	scrollbar-width: thin;
}

.business_sec .over-flow_box .img,
.business_sec .over-flow_box.only_pc .img{
	min-width: 88rem;
}
.business_sec .over-flow_box.only_sp .img{
	min-width: 0;
}


@media screen and (max-width: 768px) {
	.business_sec{
		padding-top: 2.5rem;
		margin-bottom: 2.5rem;
	}

	.business_sec_child{
		padding-top: 3.5rem;
	}

	.business_sec .over-flow_box .img,
	.business_sec .over-flow_box.only_sp .img{
		min-width: 60rem;
	}
	.business_sec .over-flow_box.only_pc .img{
		min-width: 0;
	}
}


/* =====
	技術・講習・資格取得
======================================================== */
.attention_orange {
    background-color: var(--orange);
    color: var(--white);
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    border-radius: 11px;
    width: fit-content;
    margin: 2rem 0 0.7rem;
}


.skills_training_container {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.skills_training_container .skills_training_item {
    background-color: var(--white);
    padding-bottom: 4rem;
    text-align: center;
    font-weight: normal;
    font-feature-settings: "palt" 1;
}

.skills_training_container .skills_training_item h3 {
    background-color: var(--hover_blue);
    color: var(--white);
    padding: 2rem 0;
    width: 100%;
    margin-bottom: 2rem;
}

.skills_training_container .skills_training_item img {
    padding: 0 4rem 2rem; 
}

.skills_training_container .skills_training_item p {
    padding: 0 4rem;
    text-align: left;
}

.nara_ability_association img {
    width: 50%;
    transition: .4s;
}

.nara_ability_association img:hover {
    opacity: .7;
}

@media screen and (max-width: 768px) {
    .skills_training_container {
        flex-direction: column;
        margin-bottom: 2.5rem;
    }
    .nara_ability_association img {
        width: 100%;
    }
}


/*
#skills_training .news_list {
    overflow: auto;
    height: 29.2rem;
}
*/

#skills_training .btn_primary {
    padding-left: 0;
}

#skills_training .btn_primary::before {
    width: 3em;
    height: 3em;
    padding-top: 2em;
    left: 7em;
    top: calc(50% - 1.5em);
}

#skills_training .btn_primary::after {
    left: 6em;
}

/* =====
	労働保険について
======================================================== */
#labor_insurance .focus_box {
    display: flex;
    flex-direction: column;
}

#labor_insurance .focus_box .img:first-child {
    width: calc(100% - 20%);
    margin: 0 auto 2rem;
}

#labor_insurance .focus_box ul {
    width: calc(100% - 30%);
    margin: 0 auto;
    font-feature-settings: "palt" 1;
}

#labor_insurance .focus_box:not(:first-child) {
    padding: 2rem 8rem;
}

#labor_insurance p a {
    color: var(--hover_light-blue);
    text-decoration: underline;
}

#labor_insurance p a:hover {
    text-decoration: none;
}

#labor_insurance a img {
    width: 22rem;
    transition: .4s;
}

#labor_insurance a img:hover {
    opacity: .7;
}

.labor_insurance_grid_container {
    display: grid;
    grid-template-columns: 10rem 1fr;
    column-gap: 4rem;
    row-gap: 1rem;
    font-feature-settings: "palt" 1;
}
.labor_insurance_grid_container .lii01,
.labor_insurance_grid_container .lii03 {
    box-sizing: border-box;
    background-color: #e6e6e6;
    border-radius: 10px;
    padding: 1.6rem;
    display: grid;
    place-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    min-height: 0;
}
.labor_insurance_grid_container .lii02,
.labor_insurance_grid_container .lii04 {
    display: grid;
    align-items: center;
}
.labor_insurance_grid_container .labor_insurance_grid_item p span {
    color: var(--hover_blue);
}
#labor_insurance .labor_insurance_grid_item ul {
    margin: 0;
}

#labor_insurance03 .labor_insurance_grid_container .lii03 img {
    padding: 0 0.5rem;
}


@media screen and (max-width: 768px) {
    #labor_insurance .focus_box .img:first-child {
        width: 100%;
    }
    #labor_insurance .focus_box ul {
        width: 100%;
    }
    #labor_insurance .focus_box:not(:first-child) {
        padding: 2.5rem 1.6rem;
    }
    .labor_insurance_grid_container {
        grid-template-columns: 1fr 3fr;
        column-gap: 2rem;
    }
    .labor_insurance_grid_container .lii01,
    .labor_insurance_grid_container .lii03 {
        padding: 2.1rem 1rem;
        aspect-ratio: auto;
    }
    #labor_insurance03 .labor_insurance_grid_container .lii03 img {
        padding: 0 0.3rem;
    }

}


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


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


/* =====
	労働保険料・各種資料
======================================================== */
#insurance_fees p a,
#insurance_fees td a,
#insurance_fees .detail_container li a {
    color: var(--hover_light-blue);
    text-decoration: underline;
}

#insurance_fees p a:hover,
#insurance_fees td a:hover,
#insurance_fees .detail_container li a:hover {
    text-decoration: none;
}

/* トリガー */
.insurance_fees_list > li{
	background-color: var(--hover_blue);
	transition: background-color .4s;
}
.insurance_fees_list > li.is_acc_open{
	background-color: var(--hover_blue);
}

.insurance_fees_list > li .trigger_container{
	cursor: pointer;
	padding: 2rem calc(5rem + 2.5%) 2rem 2.5%;
	border-bottom: 1px solid var(--bg_beige);
	position: relative;
}

.insurance_fees_list > li .trigger_container h3{
	font-size: 2.2rem;
	line-height: 1.4;
	letter-spacing: .1em;
	margin-bottom: .2em;
	transition: color .4s;
    color: var(--white);
}
.insurance_fees_list > li.is_acc_open .trigger_container h3{
	color: var(--white);
}
.insurance_fees_list > li .trigger_container:hover h3{
/*	color: var(--hover_light-blue);*/
}
.insurance_fees_list > li .trigger_container .type{
	font-size: 1.4rem;
	color: var(--gray);
	line-height: 1.7;
	letter-spacing: .1em;
	padding-left: 1.6em;
	margin-left: .75em;
	position: relative;
	transition: color .4s;
}
.insurance_fees_list > li .trigger_container:hover .type{
/*	color: var(--hover_light-blue);*/
}
.insurance_fees_list > li .trigger_container .type::before{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	-webkit-mask: url(../img/cmn/icon_type.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_type.svg) no-repeat center/contain;
	background-color: currentColor;
	position: absolute;
	left: 0;
	top: .25em;
}

.insurance_fees_list > li .trigger_container button{
	display: block;
	width: 5rem;
	height: 5rem;
	background-color: transparent;
	border-radius: 50%;
	position: absolute;
	right: 2%;
	top: calc(50% - 2.5rem);
	transition: background-color .4s;
}
.insurance_fees_list > li .trigger_container:hover button{
	background-color: var(--hover_thin-blue);
}

.insurance_fees_list > li .trigger_container button::before,
.insurance_fees_list > li .trigger_container button::after{
	content: "";
	display: block;
	width: 35%;
	height: 35%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: opacity .4s;
}
.insurance_fees_list > li .trigger_container button::before{
	background: url(../img/cmn/acc_minus.svg) no-repeat center/contain;
	opacity: 0;
}
.insurance_fees_list > li .trigger_container button::after{
	background: url(../img/cmn/acc_plus.svg) no-repeat center/contain;
    filter: brightness(0) invert(1);
}

.insurance_fees_list > li:hover .trigger_container button::after {
    filter: none;    
}

.insurance_fees_list > li:hover .trigger_container button::before {
    filter: brightness(0) invert(34%) sepia(35%) saturate(883%) hue-rotate(169deg) brightness(95%) contrast(88%);
    opacity: 1;
}

.insurance_fees_list > li.is_acc_open .trigger_container button::before{
	opacity: 1;
}
.insurance_fees_list > li.is_acc_open .trigger_container button::after{
	opacity: 0;
}

@media screen and (max-width: 768px) {
	.insurance_fees_list{
		margin-bottom: 2.5rem;
	}
	.insurance_fees_list > li .trigger_container{
		padding: 2.5rem calc(4rem + .5%) 2.5rem 2.5%;
	}
	.insurance_fees_list > li .trigger_container h3{
		font-size: 2rem;
		margin-bottom: .1em;
	}
	.insurance_fees_list > li .trigger_container .type{
		font-size: 1.2rem;
	}

	.insurance_fees_list > li .trigger_container button{
		width: 4rem;
		height: 4rem;
		right: .5%;
		top: calc(50% - 2rem);
	}

	.insurance_fees_list > li .trigger_container button::before,
	.insurance_fees_list > li .trigger_container button::after{
		width: 42%;
		height: 42%;
	}
}

/* 中身 */
.insurance_fees_list > li .detail_container{
	display: none;
	padding: 4rem 0;
	border-bottom: 2px solid var(--bg_beige);
    background-color: var(--bg_beige);
}

.insurance_fees_list > li .detail_container:last-child {
    padding-bottom: 0;    
}

@media screen and (max-width: 768px) {
	.insurance_fees_list > li .detail_container{
		padding: 2rem 0 4rem;
	}
}

.wide_table_wrapper {
    overflow-x: auto;
}

.wide_table th,
.wide_table td {
    border-right: 1px solid var(--bg_beige);
}
.wide_table th:last-child,
.wide_table td:last-child{
    border-right: none;
}

.wide_table td {
    text-align: center;
    padding: 3%;
}

.wide_table .th_half {
    padding: 0.5em 1%;
    width: 15%;
}

.wide_table th:nth-child(1) {
    width: 18%;
}

.week_table th {
    width: 30%;
}

@media screen and (max-width: 768px) {
    .wide_table {
        min-width: 48rem;
    }
    .week_table th {
        width: 45%;
    }
}

.poster_focus_box {
    background-color: var(--white);
    display: flex;
    justify-content: center;
    padding: 2rem;
    column-gap: 4rem;
    row-gap: 1rem;
}

.poster_focus_box img {
    max-width: 30rem;
}

@media screen and (max-width: 768px) {
    .poster_focus_box {
        flex-direction: column;
        padding: 2rem 6rem;
    }
}

#insurance_fees04 a img {
    width: 22rem;
    transition: .4s;
}

#insurance_fees04 a img:hover {
    opacity: .7;
}




/* =====
	建設業退職金制度
======================================================== */
.severance_pay_tbl_wrapper{
	overflow: auto;
	max-height: 48.6rem;
	scrollbar-color: var(--hover_blue) var(--white);
	scrollbar-width: thin;
}

.severance_pay_tbl th,
.severance_pay_tbl td{
	font-weight: 500;
	text-align: center;
	width: 50%;
	padding: 1em .5em;
	border-bottom: 1px solid var(--bg_beige);
}

.severance_pay_tbl th{
	color: var(--white);
	background-color: var(--hover_blue);
}
.severance_pay_tbl td{
	background-color: var(--white);
	text-align: right;
}

.severance_pay_tbl tr th:nth-of-type(1),
.severance_pay_tbl tr td:nth-of-type(1){
	border-right: 1px solid var(--bg_beige);
}

#construction_pension .kentaikyo_bnr{
	display: block;
	width: 90%;
	max-width: 27rem;
}

@media screen and (max-width: 768px) {
	.severance_pay_tbl_wrapper{
		max-height: 40rem;
	}
}


/* =====
	団体保険制度
======================================================== */
.group_insurance_list > li{
	padding: 1.05em 3.5%;
	margin-bottom: 1px;
	background-color: var(--white);
}

.group_insurance_list > li h3{
	color: var(--hover_blue);
	margin-bottom: .1em;
}

@media screen and (max-width: 768px) {
	.group_insurance_list > li{
		padding: 1.25em 5%;
	}

}

/* =====
	教育情報事業
======================================================== */
#education .e_tax_bnr{
	display: block;
	width: 90%;
	max-width: 18rem;
}

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

}


/* =====
	廃材処理対策事業
======================================================== */
.business_lower .members_detail_container{
	color: var(--white);
	background-color: var(--hover_blue);
}

.business_lower .members_detail_container h3{
	font-size: 2.2rem;
	line-height: 1.4;
	letter-spacing: .1em;
	padding: 1.15em 4.5%;
	border-bottom: 1px solid var(--bg_beige);
}

.business_lower .members_detail_container .detail_wrapper{
	padding: 2rem 4.5%;
}

.business_lower .members_detail_container .detail_list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding-bottom: .5em;
}
.business_lower .members_detail_container .detail_list dt{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-transform: uppercase;
	color: var(--font_color);
	line-height: 1.5;
	width: 12rem;
	padding: .45em .2em .55em;
	margin-bottom: .6em;
	background-color: var(--white);
}
.business_lower .members_detail_container .detail_list dd{
	color: var(--white);
	line-height: 1.5;
	width: calc(97% - 12rem);
	padding-top: .4em;
	margin-bottom: 1.1em;
}
.business_lower .members_detail_container .detail_list dd a{
	text-decoration: underline;
}
.business_lower .members_detail_container .detail_list dd a[href*="tel"],
.business_lower .members_detail_container .detail_list dd a:hover{
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.business_lower .members_detail_container h3{
		font-size: 2rem;
		padding: 1em 5%;
	}

	.business_lower .members_detail_container .detail_wrapper{
		padding: 1.5rem 5%;
	}

	.business_lower .members_detail_container .detail_list dt{
		width: 10rem;
		padding: .6em .2em .7em;
		margin-bottom: .4em;
	}
	.business_lower .members_detail_container .detail_list dd{
		line-height: 1.75;
		width: calc(94% - 10rem);
		margin-bottom: .8em;
	}
}

/* =====
	職業訓練事業
======================================================== */
.business_lower .tbl_primary th{
	width: 8.75em;/* 140/16 */
}
.business_lower .tbl_primary td{
	width: calc(100% - 8.75em);
}

.business_lower .tbl_primary th.department_mark::before{
	content: "";
	display: block;
	width: 1.82em;
	height: 1.3em;
	margin: 0 auto .5em;
	background: url(../img/cmn/icon_department.svg) no-repeat center/contain;
}
.business_lower .tbl_primary th.skills_mark::before{
	content: "";
	display: block;
	width: 1.82em;
	height: 1.3em;
	margin: 0 auto .5em;
	background: url(../img/cmn/icon_skills.svg) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
	.business_lower .tbl_primary th{
		width: 5.72em;/* 160/28 */
	}
	.business_lower .tbl_primary td{
		width: calc(100% - 5.72em);
	}
}


/* 募集は行っておりません
-------------------------------------------------------- */
#vocational_training .not_recruitment{
	font-size: 2.2rem;
	padding: 6rem 0;
}

@media screen and (max-width: 768px) {
	#vocational_training .not_recruitment{
		font-size: 1.75rem;
		letter-spacing: .05em;
		padding-top: 3rem 0;
	}
}



/************************************************************************
	リンク
**************************************************************************/
/* =====
	一覧
======================================================== */
.tab-content_area{
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
}
.tab-content_area.active{
	pointer-events: all;
	opacity: 1;
	visibility: visible;
	position: static;
}

.tab-content_area .link_wrapper{
	margin-bottom: 6rem;
}
.tab-content_area .link_wrapper:nth-last-of-type(1){
	margin-bottom: 0;
}

.link_list > li{
	border-bottom: 2px solid var(--bg_beige);
}
.link_list > li:nth-last-of-type(1){
	border-bottom: none;
}

.link_list > li a,
.link_list > li span {
	display: block;
	padding: 1em calc(5rem + 2%) 1em 2.75%;
	background-color: var(--white);
	position: relative;
}
.link_list > li a::after{
	content: "";
	display: block;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: transparent url(../img/cmn/btn_arrow_blue.svg) no-repeat center/40%;
	position: absolute;
	right: 2%;
	top: calc(50% - 2.5rem);
	transform: rotate(-45deg);
	transition: background-color .4s;
}
.link_list > li a:hover::after{
	background-color: var(--hover_thin-blue);
}

.link_list > li h4{
	color: var(--hover_light-blue);
	text-decoration: underline;
	margin-bottom: .15em;
}
.link_list > li.not_link h4{
	color: var(--font_color);
	text-decoration: none;
}

.link_list > li a:hover h4{
	text-decoration: none;
}

.link_list > li p{
	transition: color .4s;
}
.link_list > li a:hover p{
	color: var(--hover_light-blue);
}


@media screen and (max-width: 768px) {
	.link_list > li{
		border-width: 1px;
	}

	.link_list > li a,
	.link_list > li span {
		padding: 1.5em calc(4rem + 1%) 1.5em 3%;
		background-color: var(--white);
		position: relative;
	}
	.link_list > li a::after{
		width: 4rem;
		height: 4rem;
		right: 1%;
		top: calc(50% - 2rem);
	}
}

/************************************************************************
	よくあるご質問
**************************************************************************/
/* =====
	タブボタン
======================================================== */
.tab4_wrapper{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 6rem;
}

.tab4_wrapper > li{
	width: calc((100% - 3px) / 4);
	position: relative;
}
.tab4_wrapper > li:nth-of-type(1) > *{
	border-radius: 1rem 0 0 1rem;
}
.tab4_wrapper > li:nth-of-type(4) > *{
	border-radius: 0 1rem 1rem 0;
}

.tab4_wrapper > li > *,
.tab4_wrapper > li > .active{
	display: block;
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .1em;
	width: 100%;
	position: relative;
}

.tab4_wrapper > li > *{
	padding: 1.5em .25em;
	background-color: var(--white);
}
.tab4_wrapper > li > *:hover{
	color: var(--hover_light-blue);
}
.tab4_wrapper > li > .active{
	pointer-events: none;
	color: var(--white);
	padding: 2em .25em;
	border-radius: 1rem;
	background-color: var(--hover_blue);
}
.tab4_wrapper.is-3col > li {
	width: calc((100% - 6px) / 3);
	position: relative;
}
.tab4_wrapper.is-3col > li > * {
	background-color: var(--white);
	border-radius: 1rem;
	padding: 1.5em .25em;
	position: relative;
}
.tab4_wrapper.is-3col > li::before,
.tab4_wrapper.is-3col > li::after {
	content: "";
	background: var(--bg_beige);
	position: absolute;
	z-index: 0;
}
.tab4_wrapper.is-3col > li::before {
	width: 1.5px;
	height: 100%;
	top: 0;
	right: -1.5px;
}
.tab4_wrapper.is-3col > li::after {
	width: 100%;
	height: 1.5px;
	bottom: -1.5px;
	left: 0;
}
.tab4_wrapper.is-3col > li span {
	position: relative;
	z-index: 3;
}
.tab4_wrapper.is-3col > li > *::before{
	content: "";
	width: 100%;
	height: calc(100% + .5em);
	background-color: var(--hover_blue);
	border-radius: 1rem;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 2;
}
.tab4_wrapper.is-3col > li > .active{
	padding: 1.5em .25em;
}
.tab4_wrapper.is-3col > li > .active::before{
	opacity: 1;
}
@media screen and (min-width: 769px) {
.tab4_wrapper.is-3col {
	-webkit-box-pack: start;
	justify-content: flex-start;
}
.tab4_wrapper.is-3col > li {
	margin-top: 3px;
	margin-right: 3px;
}
.tab4_wrapper.is-3col > li:nth-child(-n + 3) {
	margin-top: 0;
}
.tab4_wrapper.is-3col > li:nth-child(3n) {
	margin-right: 0;
}

}
@media screen and (max-width: 1024px) {
	.tab4_wrapper > li > *,
	.tab4_wrapper > li > .active{
		font-size: 1.6rem;
		letter-spacing: 0;
	}
}

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

	.tab4_wrapper > li{
		width: calc((100% - 1px) / 2);
		margin-bottom: 1px;
	}
	.tab4_wrapper > li:nth-of-type(1) > *{
		border-radius: 1rem 0 0 0;
	}
	.tab4_wrapper > li:nth-of-type(2) > *{
		border-radius: 0 1rem 0 0;
	}
	.tab4_wrapper > li:nth-of-type(3) > *{
		border-radius: 0 0 0 1rem;
	}
	.tab4_wrapper > li:nth-of-type(4) > *{
		border-radius: 0 0 1rem 0;
	}
	
	.tab4_wrapper > li > *,
	.tab4_wrapper > li > .active{
		font-size: 1.35rem;
	}

	.tab4_wrapper > li > *{
		padding: 1em .2em;
	}
	.tab4_wrapper > li > .active{
		padding: 1em .2em;
	}
.tab4_wrapper.is-3col > li {
	width: calc((100% - 2px) / 2);
	margin-top: 2px;
	margin-right: 2px;
}
.tab4_wrapper.is-3col > li > * {
	border-radius: 1rem;
}
.tab4_wrapper.is-3col > li:nth-child(-n + 2) {
	margin-top: 0;
}
.tab4_wrapper.is-3col > li:nth-child(2n) {
	margin-right: 0;
}

}

/* =====
	ご質問一覧
======================================================== */
.faq_container .faq_wrapper{
	position: relative;
	transition: color .4s;
}
.faq_container .faq_wrapper dt,
.faq_container .faq_wrapper dd{
	position: relative;
}

.faq_container .faq_wrapper dt{
	cursor: pointer;
	font-size: 2.2rem;
	letter-spacing: .1em;
	padding: 2rem calc(5rem + 2%) 2rem calc(5rem + 3.25%);
	border-bottom: 1px solid var(--bg_beige);
	background-color: var(--white);
	transition: color .4s, background-color .4s;
}
.faq_container .faq_wrapper dt:hover{
	color: var(--hover_light-blue);
}
.faq_container .faq_wrapper.is_acc_open dt{
	color: var(--white);
	background-color: var(--hover_blue);
}

.faq_container .faq_wrapper dt .btn{
	display: block;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	position: absolute;
	right: 2%;
	top: calc(50% - 2.5rem);
	transition: background-color .4s;
}
.faq_container .faq_wrapper dt:hover .btn{
	background-color: var(--hover_thin-blue);
}
.faq_container .faq_wrapper.is_acc_open dt:hover .btn{
	background-color: #5b89a6;
}

.faq_container .faq_wrapper dt .btn::before,
.faq_container .faq_wrapper dt .btn::after{
	content: "";
	display: block;
	width: 35%;
	height: 35%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: opacity .4s;
}
.faq_container .faq_wrapper dt .btn::before{
	background: url(../img/cmn/acc_minus.svg) no-repeat center/contain;
	opacity: 0;
}
.faq_container .faq_wrapper dt .btn::after{
	background: url(../img/cmn/acc_plus.svg) no-repeat center/contain;
}
.faq_container .faq_wrapper.is_acc_open dt .btn::before{
	opacity: 1;
}
.faq_container .faq_wrapper.is_acc_open dt .btn::after{
	opacity: 0;
}

.faq_container .faq_wrapper dt::before,
.faq_container .faq_wrapper dd::before{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 2.2rem;
	line-height: 1;
	width: 2.28em;/* 50/22 */
	height: 2.28em;
	padding-bottom: .2em;
	border-radius: 50%;
	position: absolute;
	left: 1.9%;
	z-index: 1;
	transition: color .4s;
}
.faq_container .faq_wrapper dt::before{
	content: "Q";
	color: var(--hover_blue);
	background-color: var(--hover_thin-blue);
	top: .7em;
	transition: color .4s, background-color .4s;
}
.faq_container .faq_wrapper.is_acc_open dt::before{
	color: var(--white);
	background-color: transparent;
}

.faq_container .faq_wrapper dd::before{
	content: "A";
	color: var(--white);
	top: .8em;
}

.faq_container .faq_wrapper dd{
	display: none;
	color: var(--white);
	padding: 2.75rem 3% 2.75rem calc(5rem + 3.25%);
	border-bottom: 1px solid var(--bg_beige);
	background-color: #5b89a6;
}
.faq_container .faq_wrapper dd a {
	text-decoration: underline;
}
.faq_container .faq_wrapper dd a:hover {
	opacity: 1;
	text-decoration: none;
}

@media screen and (max-width: 1024px) {
	.faq_container .faq_wrapper dt,
	.faq_container .faq_wrapper dt::before,
	.faq_container .faq_wrapper dd::before{
		font-size: 2rem;
	}
	.faq_container .faq_wrapper dt::before{
		top: .75em;
	}
	.faq_container .faq_wrapper dd::before{
		top: 1em;
	}
}

@media screen and (max-width: 768px) {
	.faq_container .faq_wrapper dt,
	.faq_container .faq_wrapper dt::before,
	.faq_container .faq_wrapper dd::before{
		font-size: 1.6rem;
	}
	.faq_container .faq_wrapper dt::before{
		top: 1em;
	}
	.faq_container .faq_wrapper dd::before{
		top: 1.3em;
	}

	.faq_container .faq_wrapper dt{
		padding: 2rem calc(4rem + 2%) 2rem calc(4rem + 3.5%);
	}

	.faq_container .faq_wrapper dt .btn{
		width: 4rem;
		height: 4rem;
		right: 1%;
		top: calc(50% - 2rem);
	}
	.faq_container .faq_wrapper dt .btn::before,
	.faq_container .faq_wrapper dt .btn::after{
		width: 42%;
		height: 42%;
	}

	.faq_container .faq_wrapper dd{
		padding: 2.75rem 3% 2.75rem calc(4rem + 3.5%);
	}
}

/************************************************************************
	お問い合わせ
**************************************************************************/

#form_area{
	padding: 5.25rem 3%;
	background-color: #d6d3c3;
}

.required_mark{
	color: var(--orange);
}
@media screen and (max-width: 768px) {
	#form_area{
		padding: 2.5rem 3.5%;
	}
}

/* レイアウト
-------------------------------------------------------- */
.form_tbl{
	margin-bottom: 2.5rem;
}
.form_tbl .wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.form_tbl .wrapper.ai_fs{
	-webkit-box-align: start;
	align-items: flex-start;
}

.form_tbl dt{
	font-size: 1.8rem;
	width: 26rem;
	padding: 1.75rem 0;
}
.form_tbl dt.required p::after{
	content: "*";
	color: var(--orange);
}

.form_tbl dd{
	width: calc(100% - 26rem);
	padding: .5rem 0;
}


@media screen and (max-width: 768px) {
	.form_tbl .wrapper{
		display: block;
	}
	.form_tbl dt{
		font-size: 1.5rem;
		width: 100%;
		padding: 1.5rem 0 .75rem;
	}
	.form_tbl dd{
		width: 100%;
		padding: 0;
	}

}


/* 各フォーム要素
-------------------------------------------------------- */
::placeholder{
	color: var(--gray);
}

/* 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{
	letter-spacing: .1em;
	width: 100%;
	padding: 1em 4%;
	border-radius: .25em;
	background-color: var(--white);
}
#form_area textarea{
	height: 12.5em;
}

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


/* チェックボックス */
.confirm_check{
	text-align: center;
}

.confirm_check a{
	display: inline-block;
	color: var(--hover_light-blue);
	text-decoration: underline;
	position: relative;
	z-index: 1;
}
.confirm_check a:hover{
	text-decoration: none;
}

#form_area .wpcf7-form-control{
	display: block;
}
#form_area .wpcf7-list-item{
	display: block;
	padding: 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 input[type="checkbox"]{
	cursor: pointer;
	display: inline-block;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	left: 0;
	top: .33em;
}
#form_area input[type="checkbox"]::before,
#form_area input[type="checkbox"]::after{
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: .1em;
}
#form_area input[type="checkbox"]::before{
	border: 1px solid var(--gray);
	background-color: var(--white);
	z-index: 1;
}
#form_area input[type="checkbox"]::after{
	background-color: var(--hover_blue);
	opacity: 0;
	transform: scale(.5);
	z-index: 2;
	transition: opacity .4s;
}
#form_area input[type="checkbox"]:checked::after{
	opacity: 1;
}

#form_area .radio_wrap label:nth-last-of-type(1){
	margin-bottom: 0;
}

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

}

/* 送信ボタン */
#form_area .wpcf7-spinner{
	display: none;
}
.form_submit_wrapper{
	width: 92%;
	max-width: 18rem;
	margin: 0 auto;
}
.form_submit_wrapper p{
	width: 100%;
	position: relative;
}

.form_submit_wrapper p input{
	display: block;
	color: var(--white);
	text-align: center;
	width: 100%;
	padding: .9em;
	border-radius: 5em;
	background-color: var(--hover_blue);
	position: relative;
	transition: .4s;
}
.form_submit_wrapper p input:hover{
	background-color: var(--hover_light-blue);
}

.form_submit_wrapper p input[disabled]{
	background-color: var(--gray);
	pointer-events: none;
}
.form_submit_wrapper p:has(input[disabled]){
	pointer-events: none;
}

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

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

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



/************************************************************************
	プライバシーポリシー
**************************************************************************/
#privacy {
	font-feature-settings: "palt" 1;
}

#privacy ol {
	padding-left: 1.5em;
}

#privacy ol li{
	list-style: decimal;
	padding-left: 0.5em;
	margin-bottom: 0.8em;
}

#privacy ol li:last-child {
	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) {

}


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


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

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


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




/************************************************************************
	室内用耐震シェルター
**************************************************************************/
#shelter_01 a, #shelter_02 a {
    color: var(--hover_light-blue);
    text-decoration: underline;
}

#shelter_01 h3 span {
    font-size: 1.6rem;
}

.shelter_container {
    display: flex;
    background-color: #26648a;
    color: #fff;
    text-align: center;
    font-weight: normal;
}
.shelter_title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.shelter_item {
    flex: 1;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-right: 1px solid #e7e4db;
}
.shelter_txt {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shelter_item:last-child {
    border-right: none;
}
.shelter_icon {
    width: 12rem;
    height: 12rem;
    background-color: #e6e6e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
.shelter_icon img {
    width: 51%;
    height: auto;
}
.shelter_icon img:last-child {
    padding-bottom: 0.3rem;
}

@media screen and (max-width: 768px) {
     #shelter_01 h3 span {
         font-size: 1.3rem;
     }
    .shelter_container {
        flex-direction: column;
    }
    .shelter_title {
        width: 100%;
        margin-bottom: 1.2rem;
    }
    .shelter_item {
        padding: 2rem 4.5rem;
        border-right: none;
        border-bottom: 1px solid #e7e4db;
    }
    .shelter_txt {
        flex-direction: row;
        justify-content: flex-start;
        width: fit-content;
        align-items: center;
        width: 100%;
    }
    .shelter_icon {
        width: 10rem;
        height: 10rem;
        margin-bottom: 0;
        margin-right: 2rem;
    }
    .shelter_txt p {
        text-align: left;
    }
    .shelter_content-inner {
        display: flex;
        flex-direction: column;
    }
}

#shelter_04 p {
    font-weight: normal;
    margin-top: 0.8em;
}
.focus_box {
    padding: 5.25rem 10%;
    background-color: #d6d3c3;
}
.shelter_grid_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}
.si05 {
    grid-column: 2 / -1;
    display: grid;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .shelter_grid_container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .focus_box {
        padding: 2.5rem 2rem;
    }
    .si01, .si02, .si03, .si04 {
        padding: 0 2.5rem;
    }
    .si05 {
        grid-column: auto;
    }
}
.shelter_table_wrapper {
    width: 100%;
    margin: 20px 0;
    overflow-x: auto; /* SP版でのスライド用準備 */
}
.shelter_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    overflow: hidden;
}
/* ヘッダーの設定 */
.shelter_table thead th {
    background-color: #5b89a6;
    border-radius: 8px 8px 0 0;
    color: var(--white);
    padding: 15px;
    text-align: center;
    border-right: 1px solid #e7e4db;
}
.shelter_table thead th:first-child {
    background-color: transparent;
    border: none;
}
/* 左側ラベル列の設定 */
.shelter_table th.shelter_label {
    background-color: var(--hover_blue);
    color: var(--white);
    width: 28%;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e7e4db;
}
/* データセルの設定 */
.shelter_table td {
    padding: 15px 20px;
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    line-height: 1.6;
}
.shelter_table td:last-child {
    border-right: none;
}
.shelter_table tr:last-child th, .shelter_table tr:last-child td {
    border-bottom: none;
}
@media screen and (max-width: 768px) {
    .shelter_table {
        min-width: 48rem;
        font-feature-settings: "palt"1;
    }
    .shelter_table td {
        padding: 12px;
    }
}

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


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

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


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



/* =====
	
======================================================== */


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

}


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


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

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


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




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


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

}


/* =====
	
======================================================== */


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

}


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


@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) {
	
}





/************************************************************************
	仮ログイン画面
**************************************************************************/
#login_text{
	font-size: 1.8rem;
	color: var(--white);
	width: fit-content;
	padding: .5em 1em;
	background-color: var(--hover_blue);
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s, visibility .4s;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 40;
}
#login_text.active{
	opacity: .4;
	visibility: visible;
}
#login_text .sub{
	font-size: .5em;
}
#login_modal{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 5rem 0;
	background-color: rgba(253, 253, 253, .2);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s, visibility .4s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
#login_modal #login_close_area{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#login_modal.active{
	opacity: 1;
	visibility: visible;
}

#login_modal .container{
	width: 92%;
	max-width: 50rem;
	border: 4px solid var(--hover_blue);
	border-radius: 1.5rem 1.5rem 0 0;
	position: relative;
	z-index: 2;
}

#login_modal .container .title{
	font-size: 2.2rem;
	color: var(--white);
	text-align: center;
	padding: .25em;
	background-color: var(--hover_blue);
}

#login_modal .container .box{
	padding: 2.5rem 6%;
	background: var(--bg_beige);
}
#login_modal .container input{
	display: block;
	width: 100%;
	font-size: 1.8rem;
	padding: .25em .75em;
	margin-bottom: .75em;
	border: 1px solid var(--hover_blue);
}
#login_modal .container input::placeholder{
	font-weight: 400;
	color: var(--gray);
}

#login_modal .container #login_button{
	display: block;
	font-size: 1.8rem;
	color: var(--white);
	width: 100%;
	max-width: 10em;
	padding: .5em;
	margin: 1em auto 0;
	background-color: var(--hover_blue);
	transition: color .4s, background-color .4s;
}
#login_modal .container #login_button:disabled{
	pointer-events: none;
	background-color: var(--gray);
}

#login_modal #login_close{
	display: block;
	width: 6rem;
	height: 6rem;
	background: transparent url(../img/cmn/modal_close.svg) no-repeat center/66%;
	position: absolute;
	top: -3rem;
	right: -3rem;
	z-index: 1;
}
#login_modal #login_close:hover{
	opacity: .7;
}

@media screen and (max-width: 768px) {
	#login_text{
		font-size: 1.5rem;
		padding: .5em 1em;
	}
	#login_modal .container{
		width: 86%;
		border: 2px solid var(--hover_blue);
		border-radius: 1rem 1rem 0 0;
	}

	#login_modal .container .title{
		font-size: 1.8rem;
		padding: .5em;
	}

	#login_modal .container input{
		font-size: 1.6rem;
	}

	#login_modal .container #login_button{
		font-size: 1.6rem;
	}
	#login_modal .container #login_button:disabled{
		pointer-events: none;
		background-color: var(--gray);
	}

	#login_modal #login_close{
		display: block;
		width: 6rem;
		height: 6rem;
		background: transparent url(../img/cmn/modal_close.svg) no-repeat center/66%;
		position: absolute;
		top: -3rem;
		right: -3rem;
		z-index: 1;
	}
}
