@charset "utf-8";

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


/* 
Noto Sans
font-family: "Noto Sans JP", sans-serif;

Noto Serif
font-family: "Noto Serif JP", serif;

Murecho(ロゴ用)
font-family: "Murecho", sans-serif;
*/

/* 変数 */
:root {
	/* 色 */
	--font_color: #333;
	--red: #f90000;
	--blue: #0d5184;
	--light_blue: #56c8dc;
	--deep_blue: #141f40;

	/* 背景色 */
	--bg_gray: #f0f0f0;

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

	/* グラデーション */
	--btn_grada_w: -webkit-linear-gradient(0deg, #136CB6 0%, #1A2347 100%);
	--btn_grada: linear-gradient(90deg, #136CB6 0%, #1A2347 100%);

	--font_grada_w: -webkit-linear-gradient(0deg, #00BBFD 0%, #0048A2 100%);
	--font_grada: linear-gradient(90deg, #00BBFD 0%, #0048A2 100%);

	--ft_grada_w: -webkit-linear-gradient(0deg, #30597e 0%, #0e3d69 50%, var(--deep_blue) 100%);
	--ft_grada: linear-gradient(90deg, #30597e 0%, #0e3d69 50%, var(--deep_blue) 100%);

	/* vwの値をスクロールバーを含めて考慮 */
	--js_windowWidth : 100vw;/* JSで書き換え。（ウインドウ幅-スクロールバー）px */
	--js_vw : 1vw;/* JSで書き換え。(（ウインドウ幅-スクロールバー）/100)pxで、vwのように使用する。 */
	/* marjin-inline: calc(50% - 50wv); をスクロールバー考慮できるように。 */
	--break_through: calc(50% - var(--js_windowWidth) / 2);
	--break_through_half: calc(25% - var(--js_windowWidth) / 4);
	/* .inner.primaryから半分くらいはみ出す */
	--break_through_third: calc(33% - var(--js_windowWidth) / 3);
}

@media screen and (max-width: 768px) {
	:root{
		--shadow_primary: 0 .1rem 1.2rem -.6rem rgba(0, 0, 0, .16);
	}
}


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

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

a img {
	border: none;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	height: auto;
}
img[src*=".svg"] {
	width: 100%;
}
picture{
	display: block;
	width: 100%;
	height: 100%;
}
video{
	max-width: 100%;
}
a {
	cursor: pointer;
	color: inherit;
	text-decoration: none;
	transition: .4s;
}
table a,
article a{
	word-break: break-all;
}
button{
	color: var(--font_color);
	transition: .4s;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-o-appearance: none;/*Opera対応*/
	-webkit-appearance: none;/*Google Chrome/Safari対応*/
	-moz-appearance: none;/*Firefox対応*/
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
input::-webkit-calendar-picker-indicator {/* datalistタグの矢印 （たぶん消えない） */
	display: none; /* iOS対策 */
    appearance: none; /* SafariやChrome用 */
    -webkit-appearance: none; /* Safari用 */
    opacity: 0; /* 念のため */
    pointer-events: none; /* 矢印がクリックできないようにする */
}
input::-webkit-list-button{/* datalistタグの矢印iOS（これで消える） */
	content: none;
}

textarea {
	resize: none;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select,
summary{
	cursor: pointer;
}

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


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


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

/************************************************************************
	フォント関係
**************************************************************************/
html {
	font-size: 62.5%;/* 1.6remで16px */
}

/* 以降 (XXpx/16)×0.625 */
@media screen and (max-width: 1200px){
	html {
		font-size: 58.59%;/* 1.6remで15px */
	}
}
@media screen and (max-width: 1024px){
	html {
		font-size: 54.69%;/* 1.6remで14px */
	}
}
/* 以降、350pxで14pxにしたいので1.4remで指定 */
/* font-size100%時、1.4rem=22.4pxなので、XXpx/22.4=目的の％ */
@media screen and (max-width: 768px){
	html {
		font-size: 93.75%;/* 1.4remで21px */
	}
}
@media screen and (max-width: 660px){/* 350px*1.5 */
	html {
		font-size: 78.13%;/* 1.4remで17.5px */
	}
}
@media screen and (max-width: 540px){
	html {
		font-size: calc(2.667 * var(--js_vw));/* 375pxで10px 1.4remで14px 2.667vwの代わり */
	}
}

/* 1600px以上のとき */
@media screen and (min-width: 1801px){
	html {
		font-size: 66.4%;/* 1.6remで17px */
	}
}
@media screen and (min-width: 2001px){
	html {
		font-size: 70.32%;/* 1.6remで18px */
	}
}
@media screen and (min-width: 2201px){
	html {
		font-size: 74.22%;/* 1.6remで19px */
	}
}
@media screen and (min-width: 2401px){
	html {
		font-size: 78.13%;/* 1.6remで20px */
	}
}


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

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

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

.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;
}
.fz38{
	font-size: 3.8rem;
}
.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;
	}
	.fz38{
		font-size: 2.5rem;
	}
	.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: #fff;}
.red{ color: var(--red);}
.blue{ color: var(--blue);}

.grada_font{
	width: fit-content;
	background-image: var(--font_grada_w); 
	background-image: var(--font_grada); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/* =====
	文字太さ 装飾
======================================================== */
.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; }

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

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

.ls0{ letter-spacing: 0; }
.ls1{ letter-spacing: .1em; }
.ls2{ letter-spacing: .2em; }
.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%, #fff100 75%);
}


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

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

/* 「⚫︎」 */
.circle > li, .circle_mark{
	line-height: 1.5;
	padding-left: 1.25em;
	position: relative;
}
.circle > li:not(:nth-last-of-type(1)){
	margin-bottom: .5em;
}
.circle > li::before, .circle_mark::before{
	content: "";
	display: block;
	width: .5em;
	height: .5em;
	background-color: var(--blue);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: .55em;
}

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

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

}


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

.inner.secondary{
	max-width: 150rem;
	width: 96%;
}

.inner.tertiary{
	max-width: 90rem;
	width: 92%;
}

@media screen and (max-width: 768px) {
	.inner.primary,
	.inner.secondary,
	.inner.tertiary{
		width: 86.7%;/* 650/750 */
	}
	.inner.primary.sp_wide,
	.inner.secondary.sp_wide,
	.inner.tertiary.sp_wide{
		width: 94.6%;/* 710/750 */
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 768px) {/* pcの数字×0.8 */
	.pt025em{ padding-top: .2em;}
	.pt033em{ padding-top: .264em;}
	.pt05em{ padding-top: .4em;}
	.pt066em{ padding-top: .528em;}
	.pt075em{ padding-top: .6em;}
	.pt1em{ padding-top: .8em;}
	.pt125em{ padding-top: 1em;}
	.pt133em{ padding-top: 1.064em;}
	.pt15em{ padding-top: 1.2em;}
	.pt166em{ padding-top: 1.328em;}
	.pt175em{ padding-top: 1.4em;}
	.pt2em{ padding-top: 1.6em;}
	.pt225em{ padding-top: 1.8em;}
	.pt233em{ padding-top: 1.864em;}
	.pt25em{ padding-top: 2em;}
	.pt266em{ padding-top: 2.128em;}
	.pt275em{ padding-top: 2.2em;}
	.pt3em{ padding-top: 2.4em;}
	.pt35em{ padding-top: 2.8em;}
	.pt4em{ padding-top: 3.2em;}
	.pt45em{ padding-top: 3.6em;}
	.pt5em{ padding-top: 4em;}

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

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

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

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

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

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

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


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

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

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

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

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

}

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

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

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

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

/************************************************************************
	タイトル
**************************************************************************/
/* =====
	トップページ各セクション
======================================================== */
.title_primary,
.lower_title_primary{
	font-size: 2.2rem;
	font-weight: 500;
	color: var(--blue);
}
.title_primary .sub,
.lower_title_primary .sub{
	font-family: var(--mincho);
	letter-spacing: .025em;
	text-transform: capitalize;

	width: fit-content;
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.5;
}
.title_primary .sub{
	font-size: 2.727em;/* 60/22 */
	margin-bottom: .225em;
}
.lower_title_primary .sub{
	font-size: 1.727em;/* 38/22 */
	margin-bottom: .5em;
}

.title_primary.tac .sub,
.title_primary.tac_pc .sub,
.lower_title_primary.tac .sub,
.lower_title_primary.tac_pc .sub{
	margin-inline: auto;
}


.title_primary .main,
.lower_title_primary .main{
	padding-top: .25em;
	position: relative;
}
.title_primary .main::before,
.lower_title_primary .main::before{
	content: "";
	display: block;
	width: .8em;
	height: 2px;
	background-color: var(--blue);
	position: absolute;
	left: 0;
	top: 0;
}
.title_primary.tac .main::before,
.title_primary.tac_pc .main::before,
.lower_title_primary.tac .main::before,
.lower_title_primary.tac_pc .main::before{
	left: calc(50% - .4em);
}

@media screen and (max-width: 768px) {
	.title_primary,
	.lower_title_primary{
		font-size: 2rem;
	}
	.title_primary .sub{
		font-size: 2.25em;/* 45/20 */
		margin-bottom: .5em;
	}
	.lower_title_primary .sub{
		font-size: 1.4em;/* 28/20 */
		margin-bottom: 1em;
	}

	.title_primary.tac_pc .sub,
	.lower_title_primary.tac_pc .sub{
		margin-left: 0;
	}
	.title_primary.tac_pc .main::before,
	.lower_title_primary.tac_pc .main::before{
		left: 0;
	}

}

/* =====
	top_bar_deco（TOPページ Othersなど）
======================================================== */
.top_bar_deco{
	font-weight: 500;
	color: var(--blue);
	padding-top: .4em;
	position: relative;
}
.top_bar_deco::before{
	content: "";
	display: block;
	width: .8em;
	height: 2px;
	background-color: var(--blue);
	position: absolute;
	top: 0;
	left: 0;
}

@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;
	font-weight: 500;
	color: var(--blue);
	text-align: left;
	max-width: 18.5625em;/* 297/16 */
	width: 100%;
	min-height: 12rem;
	padding: .5em 5.5em .5em 1.5em;
	background-color: #fff;
	position: relative;
}
.btn_primary.wide{
	max-width: 25em;
}

.btn_primary:hover{
	color: #fff;
}

.btn_primary::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	transition: opacity .4s;
}
.btn_primary:hover::before{
	opacity: 1;
}

.btn_primary::after{
	content: "";
	display: block;
	width: 4em;
	height: 4em;
	border-radius: 50%;
	background: #f2f2f2 url(../img/cmn/btn_arrow_blue.svg) no-repeat center/25%;
	position: absolute;
	right: 1.375em;
	top: calc(50% - 2em);
	z-index: 1;
	transition: background-color .4s;
}
.btn_primary:hover::after{
	background-color: #fff;
}
.btn_primary.blank::after,
.btn_primary[target="_blank"]:not(.download)::after{
	transform: rotate(-45deg);
}
.btn_primary.download::after{
	background: #f2f2f2 url(../img/cmn/btn_dounload_blue.svg) no-repeat center/30%;
}

.btn_primary .btn_text{
	position: relative;
	z-index: 2;
}
.btn_primary.contact_btn_primary .btn_text{
	padding-left: 1.5em;
}
.btn_primary.contact_btn_primary .btn_text::before{
	content: "";
	display: block;
	width: 1.04em;
	height: .9em;
	-webkit-mask: url(../img/cmn/icon_contact_blue.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_contact_blue.svg) no-repeat center/contain;
	background-color: var(--blue);
	position: absolute;
	left: -.1em;
	top: calc(50% - .4em);
	transition: background-color .4s;
}
.btn_primary.contact_btn_primary:hover .btn_text::before{
	background-color: #fff;
}

/* r-web_btn */
.btn_primary.r-web_btn{
	max-width: 21.375em;/* 342/16 */
}
.btn_primary.r-web_btn .btn_text{
	max-width: 20rem;
	width: 88%;
}
.btn_primary.r-web_btn .btn_text img{
	width: 100%;
	transition: opacity .4s;
}
.btn_primary.r-web_btn:hover .btn_text img{
	opacity: 0;
}
.btn_primary.r-web_btn .btn_text::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/cmn/r-web_logo_white.png) no-repeat center/contain;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: opacity .4s;
}
.btn_primary.r-web_btn:hover .btn_text::after{
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.btn_primary{
		max-width: none;
		min-height: 10rem;
	}
}

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

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

}

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

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

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


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

.fit{
	width: fit-content;
}



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

@media screen and (max-width: 768px) {
	.dib_pc{
		display: inline;
	}
	.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埋め込み、GoogleMap埋め込みなど
======================================================== */

.movie_box{
	position: relative;
}
.movie_box::before{
	content: "";
	display: block;
	padding-top: 56.25%;
}
.movie_box iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

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

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



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


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

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

.animation.fade_down{/* 上から下へ */
	animation: fadedown .8s ease forwards;
}
.animation.fade_right{/* 左から右へ */
	animation: faderight .8s ease forwards;
}
.animation.fade_left{/* 右から左へ */
	animation: fadeleft .8s ease forwards;
}

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

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

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

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

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

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

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

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


/* =====
	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.delay30{
	animation-delay: 3s !important;
}
.animation.clip.delay30{
	transition-delay: 3s !important;
}
.animation.delay31{
	animation-delay: 3.1s !important;
}
.animation.clip.delay31{
	transition-delay: 3.1s !important;
}
.animation.delay32{
	animation-delay: 3.2s !important;
}
.animation.clip.delay32{
	transition-delay: 3.2s !important;
}
.animation.delay33{
	animation-delay: 3.3s !important;
}
.animation.clip.delay33{
	transition-delay: 3.3s !important;
}
.animation.delay34{
	animation-delay: 3.4s !important;
}
.animation.clip.delay34{
	transition-delay: 3.4s !important;
}
.animation.delay35{
	animation-delay: 3.5s !important;
}
.animation.clip.delay35{
	transition-delay: 3.5s !important;
}
.animation.delay36{
	animation-delay: 3.6s !important;
}
.animation.clip.delay36{
	transition-delay: 3.6s !important;
}
.animation.delay37{
	animation-delay: 3.7s !important;
}
.animation.clip.delay37{
	transition-delay: 3.7s !important;
}
.animation.delay38{
	animation-delay: 3.8s !important;
}
.animation.clip.delay38{
	transition-delay: 3.8s !important;
}
.animation.delay39{
	animation-delay: 3.9s !important;
}
.animation.clip.delay39{
	transition-delay: 3.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;
	}

	.animation.delay01sp{
		animation-delay: .1s !important;
	}
	.animation.clip.delay01sp{
		transition-delay: .1s !important;
	}
	.animation.delay02sp{
		animation-delay: .2s !important;
	}
	.animation.clip.delay02sp{
		transition-delay: .2s !important;
	}
	.animation.delay03sp{
		animation-delay: .3s !important;
	}
	.animation.clip.delay03sp{
		transition-delay: .3s !important;
	}
	.animation.delay04sp{
		animation-delay: .4s !important;
	}
	.animation.clip.delay04sp{
		transition-delay: .4s !important;
	}
	.animation.delay05sp{
		animation-delay: .5s !important;
	}
	.animation.clip.delay05sp{
		transition-delay: .5s !important;
	}
	.animation.delay06sp{
		animation-delay: .6s !important;
	}
	.animation.clip.delay06sp{
		transition-delay: .6s !important;
	}
	.animation.delay07sp{
		animation-delay: .7s !important;
	}
	.animation.clip.delay07sp{
		transition-delay: .7s !important;
	}
	.animation.delay08sp{
		animation-delay: .8s !important;
	}
	.animation.clip.delay08sp{
		transition-delay: .8s !important;
	}
	.animation.delay09sp{
		animation-delay: .9s !important;
	}
	.animation.clip.delay09sp{
		transition-delay: .9s !important;
	}
	.animation.delay10sp{
		animation-delay: 1s !important;
	}
	.animation.clip.delay10sp{
		transition-delay: 1s !important;
	}
	.animation.delay11sp{
		animation-delay: 1.1s !important;
	}
	.animation.clip.delay11sp{
		transition-delay: 1.1s !important;
	}
	.animation.delay12sp{
		animation-delay: 1.2s !important;
	}
	.animation.clip.delay12sp{
		transition-delay: 1.2s !important;
	}
	.animation.delay13sp{
		animation-delay: 1.3s !important;
	}
	.animation.clip.delay13sp{
		transition-delay: 1.3s !important;
	}
	.animation.delay14sp{
		animation-delay: 1.4s !important;
	}
	.animation.clip.delay14sp{
		transition-delay: 1.4s !important;
	}
	.animation.delay15sp{
		animation-delay: 1.5s !important;
	}
	.animation.clip.delay15sp{
		transition-delay: 1.5s !important;
	}
	.animation.delay16sp{
		animation-delay: 1.6s !important;
	}
	.animation.clip.delay16sp{
		transition-delay: 1.6s !important;
	}
	.animation.delay17sp{
		animation-delay: 1.7s !important;
	}
	.animation.clip.delay17sp{
		transition-delay: 1.7s !important;
	}
	.animation.delay18sp{
		animation-delay: 1.8s !important;
	}
	.animation.clip.delay18sp{
		transition-delay: 1.8s !important;
	}
	.animation.delay19sp{
		animation-delay: 1.9s !important;
	}
	.animation.clip.delay19sp{
		transition-delay: 1.9s !important;
	}
	.animation.delay20sp{
		animation-delay: 2s !important;
	}
	.animation.clip.delay20sp{
		transition-delay: 2s !important;
	}
	.animation.delay21sp{
		animation-delay: 2.1s !important;
	}
	.animation.clip.delay21sp{
		transition-delay: 2.1s !important;
	}
	.animation.delay22sp{
		animation-delay: 2.2s !important;
	}
	.animation.clip.delay22sp{
		transition-delay: 2.2s !important;
	}
	.animation.delay23sp{
		animation-delay: 2.3s !important;
	}
	.animation.clip.delay23sp{
		transition-delay: 2.3s !important;
	}
	.animation.delay24sp{
		animation-delay: 2.4s !important;
	}
	.animation.clip.delay24sp{
		transition-delay: 2.4s !important;
	}
	.animation.delay25sp{
		animation-delay: 2.5s !important;
	}
	.animation.clip.delay25sp{
		transition-delay: 2.5s !important;
	}
	.animation.delay26sp{
		animation-delay: 2.6s !important;
	}
	.animation.clip.delay26sp{
		transition-delay: 2.6s !important;
	}
	.animation.delay27sp{
		animation-delay: 2.7s !important;
	}
	.animation.clip.delay27sp{
		transition-delay: 2.7s !important;
	}
	.animation.delay28sp{
		animation-delay: 2.8s !important;
	}
	.animation.clip.delay28sp{
		transition-delay: 2.8s !important;
	}
	.animation.delay29sp{
		animation-delay: 2.9s !important;
	}
	.animation.clip.delay29sp{
		transition-delay: 2.9s !important;
	}
	.animation.delay30sp{
		animation-delay: 3s !important;
	}
	.animation.clip.delay30sp{
		transition-delay: 3s !important;
	}
	.animation.delay31sp{
		animation-delay: 3.1s !important;
	}
	.animation.clip.delay31sp{
		transition-delay: 3.1s !important;
	}
	.animation.delay32sp{
		animation-delay: 3.2s !important;
	}
	.animation.clip.delay32sp{
		transition-delay: 3.2s !important;
	}
	.animation.delay33sp{
		animation-delay: 3.3s !important;
	}
	.animation.clip.delay33sp{
		transition-delay: 3.3s !important;
	}
	.animation.delay34sp{
		animation-delay: 3.4s !important;
	}
	.animation.clip.delay34sp{
		transition-delay: 3.4s !important;
	}
	.animation.delay35sp{
		animation-delay: 3.5s !important;
	}
	.animation.clip.delay35sp{
		transition-delay: 3.5s !important;
	}
	.animation.delay36sp{
		animation-delay: 3.6s !important;
	}
	.animation.clip.delay36sp{
		transition-delay: 3.6s !important;
	}
	.animation.delay37sp{
		animation-delay: 3.7s !important;
	}
	.animation.clip.delay37sp{
		transition-delay: 3.7s !important;
	}
	.animation.delay38sp{
		animation-delay: 3.8s !important;
	}
	.animation.clip.delay38sp{
		transition-delay: 3.8s !important;
	}
	.animation.delay39sp{
		animation-delay: 3.9s !important;
	}
	.animation.clip.delay39sp{
		transition-delay: 3.9s !important;
	}
}


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


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

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

@media (max-width: 768px) {
	#loader{
		padding: 3rem 1rem;
	}
	#loader .logo_group{
		font-size: calc(5.5 * var(--js_vw));
	}

}

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



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

.bg_gray{
	background-color: var(--bg_gray);
}


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

}

/* =====
	ロゴ
======================================================== */
.logo_group{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	font-size: 2.1rem;
}

.logo_group .main{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	width: 3em;
	margin-right: .5em;
}
.logo_group .main img{
	width: 100%;
	vertical-align: middle;
}

.logo_group .sub{
	display: block;
	font-family: "Murecho", sans-serif;
	font-weight: 700;
	letter-spacing: .02em;
	padding-bottom: .1em;
}

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

/* =====
	波の共通部分
======================================================== */
.wave_container{
	width: 100%;
	pointer-events: none;
	position: relative;
}

.wave_container .wave_img{
	width: 100%;
}
.wave_container .gray_img{
	transition: opacity .4s;
}
.arrival .wave_container .gray_img,
.wave_container.arrival .gray_img{
	opacity: 0;
}

.wave_container .blue_img{
	-webkit-filter: drop-shadow(0 6.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
	-moz-filter: drop-shadow(0 6.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
	filter: drop-shadow(0 6.5em .5em rgba(0,0,0,0.1));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transform: translateZ(0);
}
.arrival .wave_container .blue_img,
.wave_container.arrival .blue_img{
	opacity: 1;
}

.mask{/* <mask>の共通部分 */
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dashoffset: 0;
}
.mask_path{
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dashoffset: 0;
	transform: translateY(-10%);
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	filter: blur(2px);
}

.wave_container .supple{/* 波に人のイラスト */
	position: absolute;
	z-index: 5;
}
.wave_container .supple img{
	width: 100%;
}

@media screen and (max-width: 768px) {
	.wave_container .blue_img{
		-webkit-filter: drop-shadow(0 4em .25em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
		-moz-filter: drop-shadow(0 4em .25em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
		filter: drop-shadow(0 4em .25em rgba(0,0,0,0.1));
	}
}

/* ---

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


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

}


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


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

}

/* ---

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


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

}


/************************************************************************
	ヘッダー
**************************************************************************/
header{
	font-size: 1.6rem;
	width: 100%;
	padding: 2rem 0;
	background-color: transparent;
	position: fixed;
	top: 0;
	z-index: 50;
	transition: font-size .4s, padding .4s, background-color .4s, transform .4s;
}
.is_scroll header{
	font-size: 1.4rem;
	padding: 1rem 0;
	background-color: var(--bg_gray);
}

header .hd_logo{
	flex-shrink: 0;
}
header .hd_logo a:hover{
	opacity: .7;
}

header .hd_logo .logo_group{
	transition: opacity .4s;
}

header .hd_logo .logo_group .main{
	width: 7.5em;
	padding: .35em 0;/* logo01_blackを表示するため、少し縦を大きく */
	position: relative;
	transition: width .4s;
}
.is_scroll header .hd_logo .logo_group .main{
	width: 3em;
}

header .hd_logo .logo_group .main img{
	opacity: 0;
	transition: opacity .4s;
}
.is_scroll header .hd_logo .logo_group .main img{
	opacity: 1;
}

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

@media screen and (max-width: 1340px) {
	header{
		font-size: 1.5rem;
	}
	.is_scroll header{
		font-size: 1.35rem;
	}

	header .hd_logo .logo_group{
		font-size: 1.2em;/* 18/15 */
	}
}

@media screen and (max-width: 1140px) {
	header{
		font-size: 1.4rem;
	}
	.is_scroll header{
		font-size: 1.3rem;
	}

	header .hd_logo .logo_group .main{
		width: 6em;
	}
}


@media screen and (max-width: 940px) {
	header{
		font-size: 1.6rem;
	}
	.is_scroll header{
		padding: 2rem 0;
	}

	header .hd_logo .logo_group{
		font-size: 1.25em;/* 20/16 */
	}
	header .hd_logo .logo_group .main{
		width: 7.5em;
	}
}


@media screen and (max-width: 768px) {
	header{
		font-size: 1.4rem;
		padding: 1.5rem 0;
	}
	.is_scroll header{
		font-size: 1.4rem;
		padding: 1.5rem 0;
	}
	.is_scroll.is_down header{
		transform: translateY(-100%);
	}

	header .hd_logo .logo_group{
		font-size: 1.5em;/* 21/14 */
		padding-left: .5em;
	}

	header .hd_logo .logo_group .main,
	.is_scroll header .hd_logo .logo_group .main{
		width: 3em;
	}


	header .hd_logo .logo_group .main img{
		opacity: 1;
	}
	header .hd_logo .logo_group .main::before{
		display: none;
	}
}


/* =====
	ナビ
======================================================== */
#hd_nav{
	font-weight: 500;
	padding: 0 .5em;
	margin-left: auto;
}
#hd_nav .parent_nav > li{
	margin-right: .85em;
	position: relative;
}

#hd_nav .parent_nav > li > a,
#hd_nav .parent_nav > li .trigger_text{
	display: block;
	padding: .75em .5em;
}

#hd_nav .parent_nav > li > a:hover{
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#hd_nav .parent_nav > li.acc_trigger{
	cursor: pointer;
	position: relative;
}
#hd_nav .parent_nav > li .trigger_text{
	position: relative;
}
#hd_nav .parent_nav > li .trigger_text::after{
	content: "";
	display: block;
	width: .8em;/* 10/16 から大きめ */
	height: .4em;/* 4/16 から大きめ */
	background: url(../img/cmn/hd_nav_arrow.svg) no-repeat center bottom/contain;
	position: absolute;
	bottom: .25em;
	left: calc(50% - .4em);
}

#hd_nav .parent_nav > li .child_nav{
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s, visibility .4s;

	padding: 2em 1em 1em;
	position: absolute;
	top: calc(100% - .5em);
}
#hd_nav .parent_nav > li .child_nav.nav01{
	width: 18.5em;
	left: calc(50% - 9.25em);
}
#hd_nav .parent_nav > li .child_nav.nav02{
	width: 13em;
	left: calc(50% - 6.5em);
}
#hd_nav .parent_nav > li .child_nav::before{
	content: "";
	display: block;
	width: 100%;
	height: calc(100% - 1em);
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
#hd_nav .parent_nav > li.is_hover .child_nav{
	pointer-events: all;
	opacity: 1;
	visibility: visible;
}

#hd_nav .parent_nav > li .child_nav > li{
	position: relative;
	z-index: 1;
}
#hd_nav .parent_nav > li .child_nav > li a{
	display: block;
	padding: .4em;
}
#hd_nav .parent_nav > li .child_nav > li a .grada_text{
	display: inline-block;
	position: relative;
}
#hd_nav .parent_nav > li .child_nav > li a:hover .grada_text{
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#hd_nav .parent_nav > li .child_nav > li.blank a .grada_text,
#hd_nav .parent_nav > li .child_nav > li a[target="_blank"] .grada_text{
	padding-right: 1.5em;
}
#hd_nav .parent_nav > li .child_nav > li.blank a .grada_text::after,
#hd_nav .parent_nav > li .child_nav > li a[target="_blank"] .grada_text::after{
	content: "";
	display: block;
	width: .84em;
	height: .84em;
	-webkit-mask: url(../img/cmn/icon_blank_black.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_blank_black.svg) no-repeat center/contain;
	background-color: var(--font_color);
	position: absolute;
	right: 0;
	top: .45em;
}
#hd_nav .parent_nav > li .child_nav > li a:hover .grada_text::after,
#hd_nav .parent_nav > li .child_nav > li a[target="_blank"]:hover .grada_text::after{
	background-color: var(--blue);
}

@media screen and (max-width: 1340px) {
	#hd_nav .parent_nav > li{
		margin-right: .4em;
	}
}

@media screen and (max-width: 1140px) {
	#hd_nav .parent_nav > li{
		margin-right: .15em;
	}
}

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


/* =====
	お問い合わせボタン
======================================================== */
.hd_contact{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 500;
	color: #fff;
	padding: 1em 1.4em;
	background-color: rgba(51, 51, 51, .5);
	position: relative;
}
.hd_contact:hover{
	background-color: rgba(51, 51, 51, 1);
}

.hd_contact::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	position: absolute;
	left: 0;
	top: 0;
	transition: opacity .4s;
}
.hd_contact:hover::before{
	opacity: 0;
}

.hd_contact .btn_text{
	padding-left: 1.5em;
	position: relative;
	z-index: 2;
}
.hd_contact .btn_text::before{
	content: "";
	display: block;
	width: 1.04em;
	height: .9em;
	background: url(../img/cmn/icon_contact_white.svg) no-repeat center/contain;
	position: absolute;
	left: -.1em;
	top: calc(50% - .4em);
	transition: background-color .4s;
}

@media screen and (max-width: 1140px) {
	.hd_contact{
		padding: .8em 1em;
	}
}

@media screen and (max-width: 940px) {
	.hd_contact{
		display: none;
	}
}

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

/* =====
	ハンバーガー
======================================================== */
#hmb{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 500;
	color: #fff;
	letter-spacing: .1em;
	width: 5rem;
	height: 5rem;
	cursor: pointer;
	background-color: rgba(51, 51, 51, 0);
	transition: background-color .4s;
}


#hmb .bar_wrap{
	display: block;
	width: 1.6rem;
	height: .8rem;
	position: relative;
}

#hmb .bar_wrap span{
	display: block;
	width: 100%;
	height: 1px;
	border-radius: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	transition: .4s;
}

#hmb .bar_wrap span:nth-of-type(1){
	top: 0;
}
#hmb .bar_wrap span:nth-of-type(2){
	top: 100%;
}


.hmb_open #hmb .bar_wrap span:nth-of-type(1){
	top: .4rem;
	transform: rotate(-33deg);
}
.hmb_open #hmb .bar_wrap span:nth-of-type(2){
	top: calc(100% - .4rem);
	transform: rotate(33deg);
}

#hmb .btn_text{
	display: block;
	margin-left: .5em;
}
#hmb .btn_text::before{
	content: "メニュー";
}
.hmb_open #hmb .btn_text::before{
	content: "閉じる";
}

@media screen and (max-width: 768px) {
	#hmb{
		width: 50%;
		height: 6rem;
	}

	#hmb .bar_wrap span{
		height: 2px;
	}
}


@media screen and (min-width: 769px) {
	#hmb:hover{
		background-color: rgba(51, 51, 51, 1);
	}

	#hmb .btn_text{
		display: none;
	}
}

/************************************************************************
	グローバル
**************************************************************************/
#global{
	display: -webkit-box;
	display: flex;
	font-weight: 500;
	width: fit-content;
	max-height: calc(100vh - 7rem);
	opacity: 0;
	visibility: hidden;
	position: fixed;
	right: 2%;
	top: 5rem;
	z-index: 40;
	transition: opacity .4s, visibility .4s, top .4s;
	overflow: auto;
}
.hmb_open #global{
	opacity: 1;
	visibility: visible;
	top: 6.5rem;
}

#global .container{
	width: 20em;/* 修正ある場合はコンテンツの文字数に合わせて変更必須 */
	height: fit-content;
	min-height: 100%;
	padding: 1.5rem;
	margin-left: auto;
	background-color: #fff;
}

.gl_nav .parent_nav > li{
	margin-bottom: .25em;
	position: relative;
}

.gl_nav .parent_nav > li > a,
.gl_nav .parent_nav > li .trigger_text{
	display: block;
	padding: .5em;
}
.gl_nav .parent_nav > li > a:hover{
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gl_nav .parent_nav > li.acc_trigger{
	cursor: pointer;
}
.gl_nav .parent_nav > li .trigger_text{
	width: fit-content;
	padding-right: 1.5em;
	position: relative;
}
.gl_nav .parent_nav > li.acc_trigger:hover .trigger_text{
	opacity: .7;
}

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

.gl_nav .parent_nav > li .child_nav{
	display: none;
}

.gl_nav .parent_nav > li .child_nav > li a{
	display: block;
	padding: .5em .5em .5em 1.75em;
	position: relative;
}
.gl_nav .parent_nav > li .child_nav > li a::before{
	content: "";
	display: block;
	width: .6em;
	height: 2px;
	border-radius: 1px;
	background-color: var(--font_color);
	position: absolute;
	left: .5em;
	top: calc(50% - 1px);
}
.gl_nav .parent_nav > li .child_nav > li a .grada_text{
	display: inline-block;
	position: relative;
}
.gl_nav .parent_nav > li .child_nav > li a:hover .grada_text{
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gl_nav .parent_nav > li .child_nav > li.blank a .grada_text,
.gl_nav .parent_nav > li .child_nav > li a[target="_blank"] .grada_text{
	padding-right: 1.5em;
}
.gl_nav .parent_nav > li .child_nav > li.blank a .grada_text::after,
.gl_nav .parent_nav > li .child_nav > li a[target="_blank"] .grada_text::after{
	content: "";
	display: block;
	width: .84em;
	height: .84em;
	-webkit-mask: url(../img/cmn/icon_blank_black.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_blank_black.svg) no-repeat center/contain;
	background-color: var(--font_color);
	position: absolute;
	right: 0;
	top: .45em;
}
.gl_nav .parent_nav > li .child_nav > li a:hover .grada_text::after,
.gl_nav .parent_nav > li .child_nav > li a[target="_blank"]:hover .grada_text::after{
	background-color: var(--blue);
}

@media screen and (max-width: 768px) {
	#global{
		width: 100%;
		min-height: 100dvh;
		height: 100%;
		max-height: none;
		background-color: rgba(230,230,230,.5);
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
		right: 0;
		top: auto;
		bottom: -2rem;
	}
	.hmb_open #global{
		top: auto;
		bottom: 0;
	}

	#global .container{
		width: 86%;
		min-height: calc(60% - 15rem);
		max-height: calc(100% - 15rem);
		padding: 2.5rem 4%;
		margin: auto;
		overflow: auto;
	}

	.gl_nav .parent_nav > li > a,
	.gl_nav .parent_nav > li .trigger_text{
		padding: .75em .5em;
	}
	.gl_nav .parent_nav > li .trigger_text{
		padding-right: 1.5em;
	}

	.gl_nav .parent_nav > li .child_nav > li a{
		padding: .75em .5em .75em 1.75em;
	}


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


/************************************************************************
	フッター
**************************************************************************/
footer{
	color: #fff;
	background-image: var(--ft_grada_w);
	background-image: var(--ft_grada);
	position: relative;
}

#ft_nav > ul{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 16em repeat(3, minmax(min-content, 15.5em));
    grid-template-columns: 16em repeat(3, minmax(min-content, 15.5em));
	grid-column-gap: 2%;
	grid-row-gap: 1.75em;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

#ft_nav > ul > li{
	-ms-grid-column-span: 1;
}
#ft_nav > ul > li:nth-of-type(1){
	-ms-grid-column: 1;
	grid-column: 1/ 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	grid-row: 1/ 3;
}
#ft_nav > ul > li:nth-of-type(2){
	-ms-grid-column: 2;
	grid-column: 2/ 3;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	grid-row: 1/ 3;
}
#ft_nav > ul > li:nth-of-type(3){
	-ms-grid-column: 3;
	grid-column: 3/ 4;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1/ 2;
}
#ft_nav > ul > li:nth-of-type(4){
	-ms-grid-column: 3;
	grid-column: 3/ 4;
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	grid-row: 2/ 3;
}
#ft_nav > ul > li:nth-of-type(5){
	-ms-grid-column: 4;
	grid-column: 4/ 5;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1/ 2;
}
#ft_nav > ul > li:nth-of-type(6){
	-ms-grid-column: 4;
	grid-column: 4/ 5;
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	grid-row: 2/ 3;
}

#ft_nav > ul > li > a,
#ft_nav > ul > li > .parent_text{
	display: block;
	padding: .5em 0;
	border-bottom: 1px solid #fff;
}
#ft_nav > ul > li > a:hover,
#ft_nav .child_nav > li a:hover{
	opacity: .7;
}

#ft_nav > ul > li > .parent_text{
	max-width: 15.5em;
}

#ft_nav .child_nav{
	padding-top: .4em;
}
#ft_nav .child_nav > li a{
	display: block;
	padding-left: 1em;
	position: relative;
}
#ft_nav .child_nav > li a.blank,
#ft_nav .child_nav > li a[target="_blank"]{
	padding-right: 1.5em;
}

#ft_nav .child_nav > li a::before{
	content: "";
	display: block;
	width: .4em;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
}

#ft_nav .child_nav > li a.blank::after,
#ft_nav .child_nav > li a[target="_blank"]::after{
	content: "";
	display: inline-block;
	width: .84em;
	height: .84em;
	margin-left: .5em;
	background: url(../img/cmn/icon_blank_wh.svg) no-repeat center/contain;
}

.copyright{
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: .05em;
	padding: .75em .5em;
	border-top: 1px solid #fff;
}


@media screen and (max-width: 940px) {
	#ft_nav > ul{
		-ms-grid-columns: repeat(2, minmax(min-content, 18em));
		grid-template-columns: repeat(2, minmax(min-content, 18em));
		grid-column-gap: 4%;
		grid-row-gap: 1.25em;
		max-width: 40em;
		margin-inline: auto;
	}

	#ft_nav > ul > li:nth-of-type(1){
		-ms-grid-row-span: 1;
		grid-row: 1/ 2;
	}
	#ft_nav > ul > li:nth-of-type(2){
		-ms-grid-row-span: 1;
		grid-row: 1/ 2;
	}
	#ft_nav > ul > li:nth-of-type(3){
		-ms-grid-column: 1;
		grid-column: 1/ 2;
		-ms-grid-row: 2;
		grid-row: 2/ 3;
	}
	#ft_nav > ul > li:nth-of-type(4){
		-ms-grid-column: 2;
		grid-column: 2/ 3;
	}
	#ft_nav > ul > li:nth-of-type(5){
		-ms-grid-column: 1;
		grid-column: 1/ 2;
		-ms-grid-row: 3;
		grid-row: 3/ 4;
	}
	#ft_nav > ul > li:nth-of-type(6){
		-ms-grid-column: 2;
		grid-column: 2/ 3;
		-ms-grid-row: 3;
		grid-row: 3/ 4;
	}

	#ft_nav > ul > li > .parent_text{
		max-width: none;
	}
}



@media screen and (max-width: 768px) {
	#ft_nav{
		font-size: 1.6rem;
	}

	#ft_nav > ul{
		-ms-grid-columns: repeat(2, 48%);
		grid-template-columns: repeat(2, 48%);
		grid-row-gap: 1em;
		max-width: none;
	}

	#ft_nav > ul > li:nth-of-type(1){
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/ 3;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		grid-row: 1/ 2;
	}
	#ft_nav > ul > li:nth-of-type(2){
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/ 3;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		grid-row: 2/ 3;
	}
	#ft_nav > ul > li:nth-of-type(3){
		-ms-grid-column: 1;
		grid-column: 1/ 2;
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		grid-row: 3/ 4;
	}
	#ft_nav > ul > li:nth-of-type(4){
		-ms-grid-column: 2;
		grid-column: 2/ 3;
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		grid-row: 3/ 4;
	}
	#ft_nav > ul > li:nth-of-type(5){
		-ms-grid-column: 1;
		grid-column: 1/ 2;
		-ms-grid-row: 4;
		-ms-grid-row-span: 1;
		grid-row: 4/ 5;
	}
	#ft_nav > ul > li:nth-of-type(6){
		-ms-grid-column: 2;
		grid-column: 2/ 3;
		-ms-grid-row: 4;
		-ms-grid-row-span: 1;
		grid-row: 4/ 5;
	}

	#ft_nav > ul > li > a,
	#ft_nav > ul > li > .parent_text{
		padding: .6em 0;
	}

	#ft_nav .child_nav{
		padding-top: .75em;
	}
	#ft_nav .child_nav > li{
		margin-bottom: .3em;
	}



	.copyright{
		font-size: 1.4rem;
		text-align: left;
		letter-spacing: .1em;
		padding-inline: 6.65%;
		padding-bottom: 6.5rem;/* 下固定ボタン分 */
	}
}


/* =====
	ページトップへ戻るボタン
======================================================== */
#to_top_area{
	pointer-events: none;
	width: min(150rem, 96%);
	margin-inline: auto;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 5%;
	z-index: 30;
}
#to_top_area.arrive_ft{
	position: absolute;
	bottom: calc(100% - 1px);
}
#to_top{
	display: block;
	width: 7rem;
	margin-left: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s, visibility .4s;
}
.hmb_open #to_top{
	opacity: 0 !important;
	visibility: hidden !important;
}

.is_scroll #to_top{
	pointer-events: all;
	opacity: 1;
	visibility: visible;
}

#to_top:hover,
.is_scroll #to_top:hover,
#to_top_area.arrive_ft #to_top:hover{
	opacity: .7;
}

#to_top img{
	width: 100%;
}

@media screen and (max-width: 768px) {
	#to_top_area{
		bottom: calc(6rem - 1px);/* #hmbの高さ */
		transition: transform .4s;
	}
	#to_top_area.arrive_ft{
		bottom: calc(100% - 1px);
	}

	.is_down #to_top{
		pointer-events: all;
		opacity: .4;
		visibility: visible;
	}
	.is_scroll.is_up #to_top{
		pointer-events: all;
		opacity: 1;
		visibility: visible;
	}
	#to_top_area.arrive_ft #to_top{
		pointer-events: all;
		opacity: 1;
		visibility: visible;
	}

}

/* =====
	固定ボタン（940px以下で表示）
======================================================== */
#fixed_area{
	display: -webkit-box;
	display: flex;
	width: fit-content;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	position: fixed;
	top: 1rem;
	right: 2%;
	z-index: 60;
}

.fixed_contact{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 500;
	color: #fff;
	padding: .5em 1.5em;
	border-right: 2px solid var(--bg_gray);
	background-color: rgba(51, 51, 51, 0);
	position: relative;
	transition: background-color .4s;
}
.fixed_contact .btn_text{
	padding-left: 1.5em;
	position: relative;
	z-index: 2;
}
.fixed_contact .btn_text::before{
	content: "";
	display: block;
	width: 1.04em;
	height: .9em;
	background: url(../img/cmn/icon_contact_white.svg) no-repeat center/contain;
	position: absolute;
	left: -.1em;
	top: calc(50% - .4em);
	transition: background-color .4s;
}

@media screen and (max-width: 768px) {
	#fixed_area{
		width: 100%;
		top: auto;
		bottom: 0;
		right: 0;
		transition: bottom .4s;
	}

	.fixed_contact{
		width: 50%;
		border-right: 1px solid var(--bg_gray);
	}
}

@media screen and (min-width: 769px) {
	#fixed_area .fixed_contact:hover{
		background-color: rgba(51, 51, 51, 1);
	}
}

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


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


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

}


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


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

}

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


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

}



/************************************************************************
	TOP
**************************************************************************/
/* =====
	MV
======================================================== */
#top_mv{
	font-size: min(10px, calc(.7576 * var(--js_vw)));/* 1600pxのとき1em=10px 1320px以下からvw */
	padding: 17em 0 52em;
	background: var(--bg_gray) url(../img/top/mv_bg.png) no-repeat center bottom/cover;
	position: relative;
}
@media screen and (min-width: 1601px) {
	#top_mv{
		font-size: calc(.625 * var(--js_vw));/* 1600pxのとき1em=10px */
	}
}


#top_mv .inner{
	max-width: 120em;
	width: 92%;
	position: relative;
	z-index: 1;
}
#top_mv .text_wrapper h2{
	font-size: 4.4em;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .2em;
	width: fit-content;
	margin-bottom: .45em;
	background-image: -webkit-linear-gradient(45deg, #00BBFD 0%, #0048A2 100%); 
	background-image: linear-gradient(135deg, #00BBFD 0%, #0048A2 100%); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#top_mv .text_wrapper .text01{
	font-size: 2.4em;
	font-weight: 500;
	color: #0062B6;
	letter-spacing: .15em;
	margin-bottom: 2em;
}

#top_mv .text_wrapper .gold_text01{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	align-items: flex-end;
	font-family: var(--mincho);
	font-size: 3.4em;
	font-weight: 600;
	color: #BC8833;
	line-height: 1.3;
	letter-spacing: .1em;
	width: fit-content;
	padding: .35em .8em;
	margin-bottom: .5em;
	background-color: #fff;
	position: relative;
}
#top_mv .text_wrapper .gold_text01::before,
#top_mv .text_wrapper .gold_text01::after{
	content: "";
	display: block;
	width: 100%;
	height: .09em;/* 見た目 */
	background-image: -webkit-linear-gradient(0deg, #AB6A00 0%, #FFC300 18%, #E1AB16 24%, #BC8833 38.5%, #E1AB16 55.2%, #FFC300 65%, #E1AB16 77.5%);
	background-image: linear-gradient(90deg, #AB6A00 0%, #FFC300 18%, #E1AB16 24%, #BC8833 38.5%, #E1AB16 55.2%, #FFC300 65%, #E1AB16 77.5%);
	position: absolute;
	left: 0;
}
#top_mv .text_wrapper .gold_text01::before{
	top: 0;
}
#top_mv .text_wrapper .gold_text01::after{
	bottom: 0;
}

#top_mv .text_wrapper .gold_text01 .wrap{
	display: block;
}

#top_mv .text_wrapper .gold_text01 .big{
	display: block;
	font-size: 2em;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	padding: 0 .1em;
	margin-top: -.5em;
	position: relative;
	z-index: 1;
}
#top_mv .text_wrapper .gold_text01 .big::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #fff url(../img/cmn/star_arch.png) no-repeat center top 9%/75%;
	border-radius: 50%;
	position: absolute;
	top: -28%;
	left: 0;
	z-index: -1;
}

#top_mv .text_wrapper .gold_text01 .big > span{
	display: inline-block;
	background-image: -webkit-linear-gradient(-45deg, #AB6A00 0%, #FFC300 18%, #E1AB16 24%, #BC8833 38.5%, #E1AB16 55.2%, #FFC300 65%, #E1AB16 77.5%);
	background-image: linear-gradient(45deg, #AB6A00 0%, #FFC300 18%, #E1AB16 24%, #BC8833 38.5%, #E1AB16 55.2%, #FFC300 65%, #E1AB16 77.5%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	z-index: 1;
}

#top_mv .text_wrapper .gold_text02list{
	display: -webkit-box;
	display: flex;
}
#top_mv .text_wrapper .gold_text02list li{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-family: var(--mincho);
	font-size: 2.2em;
	font-weight: 600;
	color: #BC8833;
	width: 6.37em;/* 140/22 */
	height: 6.37em;/* 140/22 */
	margin-right: .59em;/* 13/22 */
	background: url(../img/cmn/star_circle.png) no-repeat center/100% 100%;
}


@media screen and (max-width: 768px) {
	#top_mv{
		font-size: calc(2.667 * var(--js_vw));/* 375pxのとき1em=10px */
		padding: 10em 0;
		background: var(--bg_gray) url(../img/top/mv_bg_sp.png) no-repeat center top/100%;
		position: relative;
	}

	#top_mv .inner{
		width: 89.4%;
	}

	#top_mv .text_wrapper h2{
		font-size: 2.8em;
	}
	#top_mv .text_wrapper .text01{
		font-size: 1.8em;
	}

	#top_mv .text_wrapper .gold_text01{
		font-size: 2.4em;
		width: var(--js_windowWidth);
		padding: .68em 1em;
		margin-inline: var(--break_through);
		margin-bottom: .9em;
	}
	#top_mv .text_wrapper .gold_text01::before,
	#top_mv .text_wrapper .gold_text01::after{
		height: .15em;
	}

	#top_mv .text_wrapper .gold_text01 .big{
		display: block;
		font-size: 3.125em;/* 150/48 */
		padding: 0 .1em;
		margin-top: -.5em;
		position: relative;
		z-index: 1;
	}
	#top_mv .text_wrapper .gold_text01 .big::before{
		width: 90%;
		height: 80%;
		background-position: center top 20%;
		top: -35%;
		left: 5%;
	}

	#top_mv .text_wrapper .gold_text02list{
		-webkit-box-pack: center;
		justify-content: center;
		width: var(--js_windowWidth);
		margin-inline: var(--break_through);
	}
	#top_mv .text_wrapper .gold_text02list li{
		font-size: 1.4em;
		width: 5.857em;/* 164/28 */
		height: 5.857em;/* 164/28 */
		margin-right: .64em;/* 18/28 */
		background: url(../img/cmn/star_circle.png) no-repeat center/100% 100%;
	}
	#top_mv .text_wrapper .gold_text02list li:nth-last-of-type(1){
		margin-right: 0;
	}

}

/* PartnerPartner
-------------------------------------------------------- */
.mv_slider_container{
	overflow: hidden;
	position: absolute;
	bottom: -2%;
	left: 0;
}
.mv_slider{
	display: -webkit-box;
	display: flex;
	font-family: var(--mincho);
	font-size: 25.5em;
	color: #fff;
	line-height: 1;
	letter-spacing: .025em;
	text-transform: capitalize;
}
.mv_slider.slider01{
	margin-bottom: -.15em;
}

.mv_slider.slider01 > li{
	animation: mv_slider01 18s infinite linear both;
}
.mv_slider.slider02 > li{
	animation: mv_slider02 18s infinite linear both;
}
@keyframes mv_slider01 {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes mv_slider02 {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

@media screen and (max-width: 768px) {
	.mv_slider_container{
		bottom: auto;
		top: 8%;
	}
	.mv_slider{
		font-size: 8.5em;
	}

	.mv_slider.slider01 > li{
		animation: mv_slider01 12s infinite linear both;
	}
	.mv_slider.slider02 > li{
		animation: mv_slider02 12s infinite linear both;
	}
}

/* 波
-------------------------------------------------------- */
#mv_wave{
	position: absolute;
	top: 20.5em;
	z-index: 2;
}
.arrival #mv_wave .gray_img{
	transition-delay: 1.6s;
}

#mv_wave_mask_path{
	stroke-width: 40;
	stroke-dasharray: 262.1px;
}
.arrival #mv_wave_mask_path{
	animation: mv_wave 2s linear forwards;
}

@keyframes mv_wave {
	0% {
		stroke-width: 1;
		stroke-dashoffset: 262.1px;
	}
	100% {
		stroke-dashoffset: 0;
		stroke-width: 40;
	}
}

#mv_wave .supple01{
	width: 7.7%;
	top: 10.7%;
	right: 27.5%;
}
#mv_wave .supple02{
	width: 24%;
	top: 30.5%;
	right: 21.6%;
}
#mv_wave .supple03{
	width: 15.6%;
	top: 43%;
	left: 26.5%;
}

@media screen and (max-width: 768px) {
	#mv_wave_sp{
		margin-bottom: -3%;
	}
	.arrival #mv_wave_sp .gray_img{
		transition-delay: 1s;
	}

	#mv_wave_sp_mask_path{
		stroke-width: 356;
		stroke-dasharray: 1440px;
	}
	.arrival #mv_wave_sp_mask_path{
		animation: mv_wave_sp 1.4s linear forwards;
	}

	@keyframes mv_wave_sp {
		0% {
			stroke-dashoffset: 1440px;
			stroke-width: 200;
		}
		50% {
			stroke-width: 350;
		}
		100% {
			stroke-dashoffset: 0;
			stroke-width: 356;
		}
	}

	#mv_wave_sp .supple01{
		width: 17%;
		top: -5%;
		right: 13.6%;
	}
	#mv_wave_sp .supple02{
		width: 40%;
		top: 26.4%;
		right: 11.6%;
	}
	#mv_wave_sp .supple03{
		width: 26%;
		top: 28.6%;
		left: 8.4%;
	}
}


/* =====
	TOP Support
======================================================== */
#top_support .flex_container{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	align-items: flex-end;
}

#top_support .text_wrapper{
	width: 48%;
	max-width: 54rem;
}

#top_support .btn_wrapper{
	width: 50%;
	max-width: 60rem;
}
#top_support .btn_wrapper li{
	width: calc(50% - .25rem);
	margin-bottom: .5rem;
}

@media screen and (max-width: 940px) {
	#top_support .flex_container{
		display: block;
	}

	#top_support .text_wrapper{
		width: 100%;
		max-width: none;
		margin-bottom: 3rem;
	}

	#top_support .btn_wrapper{
		width: 100%;
		margin-inline: auto;
	}
}

@media screen and (max-width: 768px) {
	#top_support{
		margin-bottom: 16%;
	}

	#top_support .text_wrapper{
		margin-bottom: 4rem;
	}

	#top_support .btn_wrapper{
		display: block;
	}
	#top_support .btn_wrapper li{
		width: 100%;
		margin-bottom: .2rem;
	}
}

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


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

}


/* =====
	TOP Member
======================================================== */
#top_member .flex_container{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
	margin-bottom: -3%;
}

#top_member .text_wrapper{
	width: 36%;
	max-width: 43rem;
}
#top_member .swiper_area{
	width: calc(60% + ((var(--js_windowWidth) / 3) - 33%));/* 64％ - var(--break_through_third)の逆 */
	margin-left: var(--break_through_third);
	position: relative;
}

@media screen and (max-width: 1024px) {
	#top_member .text_wrapper{
		width: 46%;
	}
	#top_member .swiper_area{
		width: calc(52% + ((var(--js_windowWidth) / 3) - 33%));/* 64％ - var(--break_through_third)の逆 */
	}
}


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

	#top_member .flex_container{
		display: block;
		margin-bottom: 5%;
	}

	#top_member .text_wrapper{
		width: 100%;
		max-width: none;
		margin-bottom: 3rem;
	}
	#top_member .swiper_area{
		width: var(--js_windowWidth);
		margin-inline: var(--break_through);
	}
}

/* スワイパー調整
-------------------------------------------------------- */
#top_member_swiper{
	padding: 3rem 0;
}
#top_member_swiper .swiper-slide{
	font-size: min(10px, calc(.6493 * var(--js_vw)));/* 1540pxのとき1em=10px */
}
#top_member_swiper .swiper-slide .wrap{
	display: block;
	padding-top: 128.57%;/* 360/280 */
	background-image: -webkit-linear-gradient(35deg, #dddddd, #ffffff);
	background-image: linear-gradient(125deg, #dddddd, #ffffff);
	position: relative;
	transition: transform .4s, opacity .4s;
}
#top_member_swiper .swiper-slide-active .wrap{
	transform: translateY(-3rem);
}
#top_member_swiper .swiper-slide .wrap:hover{
	opacity: .7;
}

#top_member_swiper .swiper-slide .wrap::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	
	background-image: -webkit-linear-gradient(180deg, #136CB6 0%, #1A2347 100%);
	background-image: linear-gradient(270deg, #136CB6 0%, #1A2347 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity .4s;
}
#top_member_swiper .swiper-slide-active .wrap::before{
	opacity: 1;
}

#top_member_swiper .swiper-slide .img{
	width: 100%;/* 200/280 */
	height: 93%;/* 335/360 */
	margin-inline: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}
#top_member_swiper .swiper-slide .img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	-webkit-filter: saturate(30%);
    -moz-filter: saturate(30%);
	filter: saturate(30%);
	transform: translateZ(1px);/* 何故かスライド中にz軸がおかしくなったので */
	transition: -webkit-filter .4s, -moz-filter .4s, filter .4s;
}
#top_member_swiper .swiper-slide-active .img img{
	-webkit-filter: saturate(100%);
    -moz-filter: saturate(100%);
	filter: saturate(100%);
}

#top_member_swiper .swiper-slide .text_box{
	width: 100%;
	padding: 1.2em .25em 2.2em;
	background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .8));
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .8));
	transform: translateZ(2px);/* 何故かスライド中にz軸がおかしくなったので */
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
}
#top_member_swiper .swiper-slide .name_group{
	font-size: 1.6em;
	text-align: center;
}
#top_member_swiper .swiper-slide .name_group .sub{
	font-family: var(--mincho);
	font-size: 1.25em;/* 20/16 */
	font-weight: 600;
	line-height: 1;
	color: #4d4d4d;
	letter-spacing: .025em;
	text-transform: uppercase;
	transition: color .4s, -webkit-text-fill-color .4s;
}
#top_member_swiper .swiper-slide-active .name_group .sub{
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#top_member_swiper .swiper-slide .name_group .sub .first{
	font-size: 1.5em;/* 36/24 */
	color: var(--font_color);
}
#top_member_swiper .swiper-slide .name_group .main > span{
	display: inline-block;
}
#top_member_swiper .swiper-slide .name_group .main .slash{
	display: inline-block;
	font-weight: 700;
	font-style: italic;
	padding: 0 .33em;
	transition: color .4s, -webkit-text-fill-color .4s;
}
#top_member_swiper .swiper-slide-active .name_group .main .slash{
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.swiper_btn_wrapper{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	margin-top: 3rem;
	position: relative;
}
.swiper_btn_wrapper .swiper-pagination,
.swiper_btn_wrapper .swiper-button-prev,
.swiper_btn_wrapper .swiper-button-next{
	margin: 0;
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
}

.swiper_btn_wrapper .swiper-pagination{
	flex-shrink: 0;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	width: fit-content;
	margin-right: 2rem;
	margin-block: 1rem;
}
.swiper_btn_wrapper .swiper-pagination-bullet{
	width: 4rem;
	height: 2px;
	border-radius: 0;
	margin: 0 !important;
	background-color: #ccc;
	opacity: 1;
}
.swiper_btn_wrapper .swiper-pagination-bullet-active{
	background-color: var(--blue);
}

.swiper_btn_wrapper .swiper_btn_box{
	flex-shrink: 0;
	display: -webkit-box;
	display: flex;
	width: fit-content;
	max-width: 10rem;
}
.swiper_btn_wrapper .swiper-button-prev,
.swiper_btn_wrapper .swiper-button-next{
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background-image: -webkit-linear-gradient(180deg, #136CB6 0%, #1A2347 100%);
	background-image: linear-gradient(270deg, #136CB6 0%, #1A2347 100%);
}
.swiper_btn_wrapper .swiper-button-next{
	margin-left: 1.5rem;
	transform: scale(-1, 1);
}

.swiper_btn_wrapper .swiper-button-prev::before,
.swiper_btn_wrapper .swiper-button-next::before,
.swiper_btn_wrapper .swiper-button-prev::after,
.swiper_btn_wrapper .swiper-button-next::after{
	content: "";
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	border-radius: 50%;
	position: absolute;
	left: -1px;
	top: -1px;
}

.swiper_btn_wrapper .swiper-button-prev::before,
.swiper_btn_wrapper .swiper-button-next::before{
	background-color: #fff;
	transition: background-color .4s;
}
.swiper_btn_wrapper .swiper-button-prev:hover::before,
.swiper_btn_wrapper .swiper-button-next:hover::before{
	background-color: transparent;
}

.swiper_btn_wrapper .swiper-button-prev::after,
.swiper_btn_wrapper .swiper-button-next::after{
	-webkit-mask: url(../img/cmn/btn_arrow02blue.svg) no-repeat center/15%;
	mask: url(../img/cmn/btn_arrow02blue.svg) no-repeat center/15%;
	background-color: var(--blue);
	transition: background-color .4s;
}
.swiper_btn_wrapper .swiper-button-prev:hover::after,
.swiper_btn_wrapper .swiper-button-next:hover::after{
	background-color: #fff;
}

@media screen and (max-width: 1024px) {
	#top_member_swiper .swiper-slide{
		font-size: calc(.97656 * var(--js_vw));/* 1024pxのとき1em=10px */
	}
}

@media screen and (max-width: 768px) {
	#top_member_swiper .swiper-slide{
		font-size: calc(2.67 * var(--js_vw));/* 375pxのとき1em=10px */
	}

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

	#top_member_swiper .swiper-slide .name_group{
		font-size: 1.4em;
	}
	
	.swiper_btn_wrapper .swiper-pagination{
		width: calc(68% - 11.5rem);
		margin-right: 2rem;
	}

	.swiper_btn_wrapper .swiper_btn_box{
		width: 9.5rem;
		max-width: none;
	}

}

/* 波1
-------------------------------------------------------- */
#member_wave01{
	margin-bottom: -3%;
}

#member_wave01.arrival .gray_img{
	transition-delay: .8s;
}

#member_wave01 .blue_img{
	-webkit-filter: drop-shadow(0 6.5em .75em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: drop-shadow(0 6.5em .75em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
	filter: drop-shadow(0 6.5em .75em rgba(0,0,0,0.1));
}

#member_wave01mask_path{
	stroke-width: 30;
	stroke-dasharray: 197.3px;
}
.arrival #member_wave01mask_path{
	animation: member_wave01 1.2s linear forwards;
}

@keyframes member_wave01 {
	0% {
		stroke-width: 20;
		stroke-dashoffset: 197.3px;
	}
	50% {
		stroke-width: 30;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

#member_wave01 .supple01{
	width: 15.5%;
	top: -7.5%;
	right: 26%;
}

@media screen and (max-width: 768px) {
	#member_wave01sp{
		margin-bottom: 24%;
	}

	#member_wave01sp.arrival .gray_img{
		transition-delay: .6s;
	}

	#member_wave01sp .blue_img{
		-webkit-filter: drop-shadow(0 3.75em .25em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
		-moz-filter: drop-shadow(0 3.75em .25em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
		filter: drop-shadow(0 3.75em .25em rgba(0,0,0,0.1));
	}

	#member_wave01sp_mask_path{
		stroke-width: 24;
		stroke-dasharray: 95.1px;
	}
	.arrival #member_wave01sp_mask_path{
		animation: member_wave01sp 1s linear forwards;
	}

	@keyframes member_wave01sp {
		0% {
			stroke-width: 18;
			stroke-dashoffset: 95.1px;
		}
		50% {
			stroke-width: 24;
		}
		100% {
			stroke-dashoffset: 0;
		}
	}

	#member_wave01sp .supple01{
		width: 49%;
		top: -44%;
		right: 28.6%;
	}

}


/* 波2
-------------------------------------------------------- */
#member_wave02.arrival .gray_img{
	transition-delay: .3s;
}

#member_wave02 .blue_img{
	-webkit-filter: drop-shadow(0 5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: drop-shadow(0 5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
	filter: drop-shadow(0 5em .5em rgba(0,0,0,0.1));
}

#member_wave02mask_path{
	stroke-width: 32;
	stroke-dasharray: 179.2px;
}
.arrival #member_wave02mask_path{
	animation: member_wave02 .7s linear forwards;
}

@keyframes member_wave02 {
	0% {
		stroke-dashoffset: 179.2px;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@media screen and (max-width: 768px) {
	#member_wave02sp.arrival .gray_img{
		transition-delay: .3s;
	}

	#member_wave02sp .blue_img{
		-webkit-filter: drop-shadow(0 1.5em .25em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
		-moz-filter: drop-shadow(0 1.5em .25em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
		filter: drop-shadow(0 1.5em .25em rgba(0,0,0,0.1));
	}

	#member_wave02sp_mask_path{
		stroke-width: 22;
		stroke-dasharray: 79.3px;
	}
	.arrival #member_wave02sp_mask_path{
		animation: member_wave02sp .7s linear forwards;
	}

	@keyframes member_wave02sp {
		0% {
			stroke-dashoffset: 79.3px;
		}
		100% {
			stroke-dashoffset: 0;
		}
	}
}



/* =====
	TOP Others
======================================================== */
#top_others{
	margin: -4.75% 0 -10.5%;
	background-color: rgba(255, 255, 255, .5);
	-webkit-backdrop-filter: blur(4px);
	-moz-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	position: relative;
	z-index: 3;
}

#top_others .grid_container{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(2, 48.4%);
    grid-template-columns: repeat(2, 48.4%);
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#top_others .grid_container .wrapper{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;/* サブグリッドにすることで高さ調整可能に */
	grid-row: span 4;/* パーツの数 */
}

#top_others .grid_container .wrapper .img{
	margin-bottom: 5.5rem;
}
#top_others .grid_container .wrapper .top_bar_deco{
	margin-bottom: 1.3em;
}
#top_others .grid_container .wrapper .text{
	margin-bottom: 1.75em;
}
#top_others .grid_container .wrapper .btn_primary{
	max-width: 21.375em;/* 342/16 */
	padding-left: 2.5em;
}

@media screen and (max-width: 768px) {
	#top_others{
		margin: -14.5% 0 -18%;
		-webkit-backdrop-filter: blur(3px);
		-moz-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
	}

	#top_others .grid_container{
		display: block;
	}
	#top_others .grid_container .wrapper{
		display: block;
		margin-bottom: 4rem;
	}
	#top_others .grid_container .wrapper:nth-last-of-type(1){
		margin-bottom: 0;
	}

	#top_others .grid_container .wrapper .img{
		width: var(--js_windowWidth);
		margin-inline: var(--break_through);
		margin-bottom: 3rem;
	}
	#top_others .grid_container .wrapper .top_bar_deco{
		margin-bottom: .5em;
	}
	#top_others .grid_container .wrapper .text{
		margin-bottom: 1.5em;
	}
	#top_others .grid_container .wrapper .btn_primary{
		max-width: none;
		padding-left: 1.5em;
	}
}

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


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

}


/* =====
	TOP About us
======================================================== */
#top_about{
	margin-bottom: -5.25%;
}
#top_about .inner{
	margin-bottom: -1.5%;
}

#top_about .flex_container{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
}

#top_about .text{
	width: 48%;
	max-width: 54rem;
}

#top_about .btn_wrapper{
	width: 50%;
	max-width: 60rem;
	padding-top: .5rem;
}
#top_about .btn_wrapper li{
	width: calc(50% - .25rem);
	margin-bottom: .5rem;
}

@media screen and (max-width: 940px) {
	#top_about .flex_container{
		display: block;
	}

	#top_about .text{
		width: 100%;
		max-width: none;
		margin-bottom: 3rem;
	}

	#top_about .btn_wrapper{
		width: 100%;
		margin-inline: auto;
	}
}

@media screen and (max-width: 768px) {
	#top_about{
		margin-bottom: 19%;
	}
	#top_about .inner{
		margin-bottom: 43.5%;
	}

	#top_about .btn_wrapper{
		display: block;
	}
	#top_about .btn_wrapper li{
		width: 100%;
		margin-bottom: .5rem;
	}

}

/* 波1
-------------------------------------------------------- */
#about_wave01{
	margin-bottom: 4%;
}

#about_wave01.arrival .gray_img{
	transition-delay: .4s;
}

#about_wave01 .blue_img{
	-webkit-filter: drop-shadow(0 2.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: drop-shadow(0 2.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
	filter: drop-shadow(0 2.5em .5em rgba(0,0,0,0.1));
}

#about_wave01mask_path{
	stroke-width: 20;
	stroke-dasharray: 172.3px;
}
.arrival #about_wave01mask_path{
	animation: about_wave01 .8s linear forwards;
}

@keyframes about_wave01 {
	0% {
		stroke-dashoffset: 172.3px;
	}
	100% {
		stroke-dashoffset: 0;
	}
}


@media screen and (max-width: 768px) {
	#about_wave01sp{
		margin-bottom: 5.5%;
	}
	
	#about_wave01sp.arrival .gray_img{
		transition-delay: .2s;
	}

	#about_wave01sp .blue_img{
		-webkit-filter: drop-shadow(0 1em .25em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
		-moz-filter: drop-shadow(0 1em .25em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
		filter: drop-shadow(0 1em .25em rgba(0,0,0,0.1));
	}

	#about_wave01sp_mask_path{
		stroke-width: 21;
		stroke-dasharray: 79px;
	}
	.arrival #about_wave01sp_mask_path{
		animation: about_wave01sp .6s linear forwards;
	}

	@keyframes about_wave01sp {
		0% {
			stroke-dashoffset: 79px;
		}
		100% {
			stroke-dashoffset: 0;
		}
	}
}


/* 波2
-------------------------------------------------------- */
#about_wave02.arrival .gray_img{
	transition-delay: .8s;
}

#about_wave02 .blue_img{
	-webkit-filter: drop-shadow(0 6.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: drop-shadow(0 6.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
	filter: drop-shadow(0 6.5em .5em rgba(0,0,0,0.1));
}

#about_wave02mask_path{
	stroke-width: 40;
	stroke-dasharray: 224.5px;
	transform: translateY(-16%) translateX(-5%);
}
.arrival #about_wave02mask_path{
	animation: about_wave02 1.2s linear forwards;
}

@keyframes about_wave02 {
	0% {
		stroke-dashoffset: 224.5px;
		stroke-width: 10;
	}
	100% {
		stroke-dashoffset: 0;
		stroke-width: 40;
	}
}

#about_wave02 .supple01{
	width: 9.8%;
	top: 14.3%;
	left: 35%;
}
#about_wave02 .supple02{
	width: 10.3%;
	top: 23%;
	left: 15.4%;
}

@media screen and (max-width: 768px) {
	#about_wave02sp.arrival .gray_img{
		transition-delay: .2s;
	}

	#about_wave02sp .blue_img{
		-webkit-filter: drop-shadow(0 3.5em .25em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
		-moz-filter: drop-shadow(0 3.5em .25em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
		filter: drop-shadow(0 3.5em .25em rgba(0,0,0,0.1));
	}

	#about_wave02sp_mask_path{
		stroke-width: 35;
		stroke-dasharray: 86.6px;
		transform: translateY(-16%) translateX(-5%);
	}
	.arrival #about_wave02sp_mask_path{
		animation: about_wave02sp .6s linear forwards;
	}

	@keyframes about_wave02sp {
		0% {
			stroke-dashoffset: 86.6px;
			stroke-width: 20;
		}
		100% {
			stroke-dashoffset: 0;
			stroke-width: 35;
		}
	}

	#about_wave02sp .supple01{
		width: 28%;
		top: -58%;
		right: 11%;
	}
	#about_wave02sp .supple02{
		width: 33%;
		top: -57%;
		left: 10.4%;
	}

}



/* =====
	Contact
======================================================== */
.ft_contact{
	background-color: var(--bg_gray);
}
.ft_contact .btn_primary{
	max-width: 25em;
}

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

}

/* =====
	クリニック物件サポート　ひまわり薬局・パイン薬局リンク
======================================================== */
.ft_connection_area{
	background-color: var(--bg_gray);
}
.ft_connection > li{
	width: calc(50% - 2px);
}

.ft_connection > li a{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	height: 32rem;
	position: relative;
}
.ft_connection > li a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity .4s;
}
.ft_connection > li a:hover::after{
	opacity: .7;
}

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

.ft_connection > li a .text{
	font-size: 2.2rem;
	color: #fff;
	max-width: 90%;
	padding-right: 4em;
	position: relative;
	z-index: 2;
}
.ft_connection > li a .text::after{
	content: "";
	display: block;
	width: 2.9em;
	height: 2.9em;
	border-radius: 50%;
	background: rgba(255, 255, 255, .3) url(../img/cmn/btn_arrow_wh.svg) no-repeat center/28%;
	position: absolute;
	right: 0;
	top: calc(50% - 1.45em);
	transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
	.ft_connection.inner.primary{
		width: 100%;
	}
	.ft_connection > li{
		width: 100%;
		margin-bottom: .4rem;
	}

	.ft_connection > li a{
		height: 20.5rem;
	}

	.ft_connection > li a .text{
		font-size: 2rem;
		padding-right: 0;
		padding-top: 1.2em;
		padding-bottom: 3.5em;
		position: relative;
		z-index: 2;
	}
	.ft_connection > li a .text::after{
		width: 3em;
		height: 3em;
		right: calc(50% - 1.5em);
		top: auto;
		bottom: 0;
	}
}

/* =====
	フッターアクセス
======================================================== */
.ft_address{
	background-color: var(--bg_gray);
}
.ft_address .logo_group{
	-ms-grid-columns: 2.9em 1fr;
    grid-template-columns: 2.9em 1fr;/* 57/20 */
	width: fit-content;
	margin: 0 auto 1.65em;
}

.ft_address .address_dl{
	text-align: center;
	margin-bottom: 2.5rem;
}
.ft_address .address_dl dd{
	margin-bottom: 2rem;
}
.ft_address .address_dl dd:nth-last-of-type(1){
	margin-bottom: 0;
}

.ft_address .address_dl dd .tel_link{
	display: inline-block;
	margin-right: 1.5em;
}

.sns_link{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	justify-content: center;
	padding-left: 1.8rem;
	margin-bottom: 4rem;
}

.sns_link > li{
	margin: 0 .65rem;
}
.sns_link > li a{
	display: block;
	height: 3.4rem;
	padding: .5rem 1rem;
}
.sns_link > li a:hover{
	opacity: .7;
}
.sns_link > li a img{
	width: auto;
	height: 100%;
	vertical-align: sub;
}

.ft_address .btn_primary.r-web_btn{
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	.ft_address .logo_group{
		margin: 0 0 1.25em;
	}

	.ft_address .address_dl{
		font-size: 1.6rem;
		text-align: left;
	}
	.ft_address .address_dl dt{
		font-feature-settings: "palt";
	}

	.ft_address .address_dl dd .tel_link{
		display: block;
		margin-right: 0;
	}

	.sns_link{
		-webkit-box-pack: start;
		justify-content: flex-start;
		padding-left: 0;
		margin-left: -1.5rem;
	}

	.sns_link > li{
		margin: 0 .65rem;
	}
	.sns_link > li a{
		display: block;
		height: 3.4rem;
		padding: .5rem 1rem;
	}
	.sns_link > li a:hover{
		opacity: .7;
	}
	.sns_link > li a img{
		width: auto;
		height: 100%;
		vertical-align: sub;
	}

	.ft_address .btn_primary.r-web_btn{
		margin-left: 0;
	}
}


/************************************************************************
	下層共通
**************************************************************************/
/* =====
	上部
======================================================== */
.lower_head{
	padding: 17.5rem 0 0;
	margin-bottom: max(-32rem, -14.5%);/* 32rem=2401px以上の時400px */
	position: relative;
}
.lower_head::before{
	content: "";
	display: block;
	width: 100%;
	height: 70%;
	background: var(--bg_gray) url(../img/cmn/lower_head_bg.png) no-repeat center top/100%;
	position: absolute;
	left: 0;
	top: 0;
}


.lower_head h1{
	font-size: 4rem;
	font-weight: 700;
	width: fit-content;
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.5;
	letter-spacing: .1em;
	margin-bottom: .5em;
}

.lower_head h1 .small{
	font-size: .75em;/* 30/40 */
}


@media screen and (max-width: 768px) {
	.lower{
		background: var(--bg_gray) url(../img/cmn/lower_head_bg_sp.png) no-repeat center top/100%;
	}

	.lower_head{
		padding: 14rem 0 0;
		margin-bottom: 6%;
	}
	.lower_head::before{
		display: none;
	}


	.lower_head h1{
		font-size: 2.8rem;
	}

}


/* パンクズ
-------------------------------------------------------- */

.breadcrumb{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	color: #808080;
	margin-bottom: 1%;
}

.breadcrumb li{
	padding-right: 4.5em;
	margin-bottom: .5em;
	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: inline-block;
	position: absolute;
	right: 1.5em;
	top: 50%;
	transform: translateY(-50%);
}
.breadcrumb li:nth-last-of-type(1)::after{
	display: none;
}

.breadcrumb li.long{/* 記事タイトルなど */
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

@media screen and (max-width: 768px) {
	.breadcrumb{
		font-size: 1.2rem;
		margin-bottom: 5%;
	}

	.breadcrumb li{
		padding-right: 3.5em;
	}
	.breadcrumb li::after{
		right: 1.25em;
	}
}

/* 波
-------------------------------------------------------- */
.lower_wave_inner{
	width: 100%;
	max-width: 160rem;
	margin-inline: auto;
}

.lower_wave_inner .wave_container{
	width: 125%;
	margin-left: -12.5%;
}

#head_wave .gray_img{
	transition-delay: 1.2s;
}
#head_wave .blue_img{
	-webkit-filter: drop-shadow(0 2.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: drop-shadow(0 2.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
	filter: drop-shadow(0 2.5em .5em rgba(0,0,0,0.1));
}

.lower_wave_inner .mask_path{
	transform: translateY(-24%) translateX(-1%);
}

#head_wave_mask_path{
	stroke-width: 240;
	stroke-dasharray: 2235.1px;
}
.arrival #head_wave_mask_path{
	animation: head_wave 1.6s linear forwards;
}

@keyframes head_wave {
	0% {
		stroke-width: 20;
		stroke-dashoffset: 2235.1px;
	}
	75% {
		stroke-width: 240;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@media screen and (max-width: 768px) {
	.lower_wave_inner .wave_container{
		width: 100%;
		margin-left: 0;
	}

	#head_wave_sp .gray_img{
		transition-delay: .8s;
	}
	#head_wave_sp .blue_img{
		-webkit-filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
		-moz-filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
		filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1));
	}

	#head_wave_sp_mask_path{
		stroke-width: 120;
		stroke-dasharray: 866.11px;
	}
	.arrival #head_wave_sp_mask_path{
		animation: head_wave 1.2s linear forwards;
	}

	@keyframes head_wave {
		0% {
			stroke-width: 50;
			stroke-dashoffset: 866.11px;
		}
		75% {
			stroke-width: 120;
		}
		100% {
			stroke-dashoffset: 0;
		}
	}

	
}


/* 人物
-------------------------------------------------------- */
/* 会社概要・アクセス */
#head_wave .supple01{
	width: 3.6%;
	top: -24%;
	right: 20%;
}

/* ご挨拶・経営理念 */
#greeting_main #head_wave .supple01{
	width: 3.8%;
	top: -22%;
	right: 20%;
}

/* メンバー紹介 */
#member #head_wave .supple01{
	width: 8.4%;
	top: -22%;
	right: 20%;
}

/* サービス紹介動画 */
#movie #head_wave .supple01{
	width: 4%;
	top: -22%;
	right: 20%;
}

/* 5つの魅力 */
#features #head_wave .supple01{
	width: 6.4%;
	top: -19%;
	right: 20%;
}

/* 開業支援の流れ */
#flow #head_wave .supple01{
	width: 9%;
	top: -22%;
	right: 22.8%;
}

/* よくあるご質問 */
#faq #head_wave .supple01{
	width: 3.6%;
	top: -24%;
	right: 20%;
}

/* 医療機器販売 */
#sale #head_wave .supple01{
	width: 8.4%;
	top: -15%;
	right: 20%;
}

/* 調剤薬局事業 */
#pharmacy #head_wave .supple01{
	width: 9.6%;
	top: -16%;
	right: 20%;
}

/* お問い合わせ */
#contact #head_wave .supple01{
	width: 7.2%;
	top: -15.6%;
	right: 20%;
}

/* プライバシーポリシー */
#privacy #head_wave .supple01{
	width: 6%;
	top: -25%;
	right: 20%;
}

/* 採用情報 */
#recruit #head_wave .supple01{
	width: 3.7%;
	top: -21%;
	right: 20%;
}

@media screen and (max-width: 768px) {
	/* 会社概要・アクセス */
	#head_wave_sp .supple01{
		width: 9.4%;
		top: -30%;
		right: 7%;
	}

	/* ご挨拶・経営理念 */
	#greeting_main #head_wave_sp .supple01{
		width: 9.8%;
		top: -30%;
		right: 7%;
	}

	/* メンバー紹介 */
	#member #head_wave_sp .supple01{
		width: 22%;
		top: -34%;
		right: 6.4%;
	}

	/* サービス紹介動画 */
	#movie #head_wave_sp .supple01{
		width: 12%;
		top: -38%;
		right: 7%;
	}

	/* 5つの魅力 */
	#features #head_wave_sp .supple01{
		width: 17%;
		top: -36%;
		right: 6.4%;
	}

	/* 開業支援の流れ */
	#flow #head_wave_sp .supple01{
		width: 24%;
		top: -26%;
		right: 6%;
	}

	/* よくあるご質問 */
	#head_wave_sp .supple01{
		width: 9.4%;
		top: -30%;
		right: 7%;
	}

	/* 医療機器販売 */
	#sale #head_wave_sp .supple01{
		width: 22%;
		top: -29%;
		right: 6.4%;
	}

	/* 調剤薬局事業 */
	#pharmacy #head_wave_sp .supple01{
		width: 23%;
		top: -18%;
		right: 7%;
	}

	/* お問い合わせ */
	#contact #head_wave_sp .supple01{
		width: 21%;
		top: -32%;
		right: 7%;
	}

	/* プライバシーポリシー */
	#privacy #head_wave_sp .supple01{
		width: 17%;
		top: -40%;
		right: 7%;
	}

	/* 採用情報 */
	#recruit #head_wave_sp .supple01{
		width: 10.4%;
		top: -32%;
		right: 7%;
	}

}


/* =====
	テーブル
======================================================== */
.tbl_primary tr{
	border-bottom: 2px solid #fff;
}
.tbl_primary tr:nth-of-type(1){
	border-top: 2px solid #fff;
}

.tbl_primary th,
.tbl_primary td{
	padding: 1.66em .25em;
}
.tbl_primary th{
	width: 15.5em;
	color: var(--blue);
}
.tbl_primary td{
	width: calc(100% - 15.5em);
}

@media screen and (max-width: 768px) {
	.tbl_primary{
		width: 108%;
		margin-left: -4%;
	}
	.tbl_primary th,
	.tbl_primary td{
		padding: 1.25em 3%;
	}
	.tbl_primary th{
		width: 7em;
	}
	.tbl_primary td{
		width: calc(100% - 7em);
	}
}

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


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

}



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


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

}

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


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

}



/************************************************************************
	ご挨拶・経営理念
**************************************************************************/
/* =====
	ご挨拶
======================================================== */
#greeting{
	margin-bottom: min(18%, 29rem);
	position: relative;
}
/*
社長お写真ある時
#greeting .text_container{
	width: calc(88% - 22rem);
	max-width: 75rem;
}
*/
/* 社長お写真ない時 */
#greeting .text_container{
	width: 94%;
	max-width: 90rem;
	margin-inline: auto;
}
#greeting .text_container h3{
	max-width: 23.5em;
	margin-bottom: 6%;
}

#greeting .text_container .supple_text{
	max-width: 52.5em;
	margin-bottom: 6%;
}

#greeting .text_container .text{
	margin-bottom: 3.85%;
}

#greeting .text_container .name_container{
	font-size: 1.8rem;
	font-weight: 500;
	text-align: right;
	color: #fff;
	line-height: 1.5;
	padding-top: 5em;
	padding-right: .5em;
}
#greeting .text_container .name_container .big{
	display: inline-block;
	font-family: var(--mincho);
	font-size: 1.667em;/* 30/18 */
	font-weight: 700;
	letter-spacing: .1em;
	padding-left: .4em;
}

@media screen and (max-width: 1024px) {
	#greeting .text_container{
		width: calc(94% - 22rem);
	}
}

@media screen and (max-width: 768px) {
	#greeting{
		margin-bottom: 25%;
	}
	#greeting .text_container{
		width: 100%;
		max-width: none;
	}
	#greeting .text_container h3{
		/* max-width: 23.5em; */
		margin-bottom: 1.25em;
	}

	#greeting .text_container .supple_text{
		max-width: none;
		margin-bottom: 2.75em;
	}

	#greeting .text_container .text{
		margin-bottom: 1.75em;
	}

	#greeting .text_container .name_container{
		font-size: 1.6rem;
		color: var(--blue);
		text-align: left;
		padding-top: .5em;
		padding-right: 0;
	}

}

/* 波
-------------------------------------------------------- */
/* 
社長お写真ありの場合
#greeting .lower_wave_inner{
	padding-top: 10rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: max(-8rem, calc(-5 * var(--js_vw)));
	z-index: 0;
	transform: translateZ(0);
}

.arrival #greeting_wave .gray_img{
	transition-delay: 1.4s;
}

#greeting_wave .blue_img{
	-webkit-filter: drop-shadow(0 6em .5em rgba(0,0,0,0.1));
    -moz-filter: drop-shadow(0 6em .5em rgba(0,0,0,0.1));
	filter: drop-shadow(0 6em .5em rgba(0,0,0,0.1));
}

#greeting .mask_path{
	transform: translateY(-15%);
}
#greeting_wave_mask_path{
	stroke-width: 250;
	stroke-dasharray: 2553.9px;
}
.arrival #greeting_wave_mask_path{
	animation: greeting_wave 1.8s linear forwards;
}

@keyframes greeting_wave {
	0% {
		stroke-width: 100;
		stroke-dashoffset: 2553.9px;
	}
	75% {
		stroke-width: 250;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

#greeting_wave .supple01{
	width: 22rem;
	bottom: 22%;
	left: 63%;
}
*/
/* ↓社長お写真なしの場合 */
#greeting .lower_wave_inner{
	position: absolute;
	left: 0;
	right: 0;
	bottom: max(-19rem, calc(-11.5 * var(--js_vw)));
	z-index: 0;
	transform: translateZ(0);
}

.arrival #greeting_wave .gray_img{
	transition-delay: 1.4s;
}

#greeting_wave .blue_img{
	-webkit-filter: drop-shadow(0 4em .5em rgba(0,0,0,0.1));
    -moz-filter: drop-shadow(0 4em .5em rgba(0,0,0,0.1));
	filter: drop-shadow(0 4em .5em rgba(0,0,0,0.1));
}

#greeting .mask_path{
	transform: translateY(-4%) translateX(-7%);
}
#greeting_wave_mask_path{
	stroke-width: 260;
	stroke-dasharray: 2243.7px;
}
.arrival #greeting_wave_mask_path{
	animation: greeting_wave 1.8s linear forwards;
}

@keyframes greeting_wave {
	0% {
		stroke-width: 100;
		stroke-dashoffset: 2243.7px;
	}
	75% {
		stroke-width: 260;
	}
	100% {
		stroke-dashoffset: 0;
	}
}


@media screen and (max-width: 1024px) {
	/* 
	社長お写真ある時
	#greeting .lower_wave_inner{
		bottom: calc(-5.75 * var(--js_vw));
	}

	#greeting_wave{
		width: 150%;
		margin-left: -25%;
	}
	*/
	/* ↓社長お写真なしの場合 */
	#greeting .lower_wave_inner{
		bottom: calc(-12 * var(--js_vw));
	}
	#greeting_wave{
		width: 150%;
		margin-left: -25%;
	}
}

@media screen and (max-width: 768px) {
	/* 
	社長お写真ありの場合
	#greeting .lower_wave_inner{
		padding-top: 48%;
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
	}

	.arrival #greeting_wave_sp .gray_img{
		transition-delay: .8s;
	}

	#greeting_wave_sp .blue_img{
		-webkit-filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1));
		-moz-filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1));
		filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1));
	}

	#greeting_wave_sp_mask_path{
		stroke-width: 260;
		stroke-dasharray: 1194px;
	}
	.arrival #greeting_wave_sp_mask_path{
		animation: greeting_wave_sp 1.2s linear forwards;
	}

	@keyframes greeting_wave_sp {
		0% {
			stroke-width: 100;
			stroke-dashoffset: 1194px;
		}
		100% {
			stroke-width: 260;
			stroke-dashoffset: 0;
		}
	}

	#greeting_wave_sp .supple01{
		width: 29%;
		bottom: 18%;
		left: 38%;
	}
	*/

	#greeting .lower_wave_inner{
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
	}

	#greeting_wave_sp{
		width: 140%;
		margin-left: -20%;
	}
	.arrival #greeting_wave_sp .gray_img{
		transition-delay: .8s;
	}

	#greeting_wave_sp .blue_img{
		-webkit-filter: drop-shadow(0 1em .25em rgba(0,0,0,0.1));
		-moz-filter: drop-shadow(0 1em .25em rgba(0,0,0,0.1));
		filter: drop-shadow(0 1em .25em rgba(0,0,0,0.1));
	}

	#greeting_wave_sp_mask_path{
		stroke-width: 260;
		stroke-dasharray: 2243.7px;
	}
	.arrival #greeting_wave_sp_mask_path{
		animation: greeting_wave_sp 1.2s linear forwards;
	}

	@keyframes greeting_wave_sp {
		0% {
			stroke-width: 100;
			stroke-dashoffset: 2243.7px;
		}
		75% {
			stroke-width: 260;
		}
		100% {
			stroke-dashoffset: 0;
		}
	}

}


/* =====
	経営理念
======================================================== */
#philosophy .container{
	color: #fff;
	padding: 7rem 2% 8rem;
	background-image: linear-gradient(45deg, #a4dde9 0%, #0080c7 50%, var(--deep_blue) 100%);
	background-image: linear-gradient(135deg, #a4dde9 0%, #0080c7 50%, var(--deep_blue) 100%);
}

#philosophy .container .text_wrapper{
	max-width: 80.5rem;
	width: 92%;
	margin-inline: auto;
}

#philosophy .container .circle{
	margin-bottom: 3.75rem;
}
#philosophy .container .circle > li{
	font-size: 1.8rem;
	margin-bottom: .85em;
}
#philosophy .container .circle > li:nth-last-of-type(1){
	margin-bottom: 0;
}
#philosophy .container .circle > li::before{
	background-color: #fff;
}

#philosophy .container .img_box{
	padding: 4rem 5% 4rem 2%;
	background-color: rgba(255, 255, 255, .2);
}
#philosophy .container .img_box .img{
	width: 92%;
	max-width: 51.3rem;
	margin-inline: auto;
}


@media screen and (max-width: 768px) {
	#philosophy .container{
		width: 108%;
		margin-left: -4%;
		padding: 3rem 0 4.5rem;
	}

	#philosophy .container .text_wrapper{
		max-width: none;
	}

	#philosophy .container .circle > li{
		font-size: 1.6rem;
	}

	#philosophy .container .img_box{
		padding: 3rem 2% 5rem;
		background-color: rgba(255, 255, 255, .2);
	}
	#philosophy .container .img_box .img{
		width: 92%;
		max-width: 51.3rem;
		margin-inline: auto;
	}
}

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


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

}




/************************************************************************
	会社概要・アクセス
**************************************************************************/

@media screen and (max-width: 768px) {
	#about .lower_title_primary .sub{
		font-size: 1.5em;/* 30/20 */
	}
}

/* =====
	アクセス
======================================================== */
#map_switch_container .map_wrapper{
	width: 100%;
	height: 50rem;
	position: relative;
}
#map_switch_container .map_box,
#map_switch_container .map_box iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#map_switch_container .map_box{
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	z-index: 0;
	transition: opacity .4s, visibility .4s;
}
#map_switch_container .map_box.active{
	visibility: visible;
	pointer-events: all;
	opacity: 1;
	z-index: 1;
}


#map_switch_container .map_trigger_wrapper{
	margin-bottom: 4rem;
}
#map_switch_container .map_trigger_wrapper .map_trigger{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 500;
	color: #999;
	width: 50%;
	padding: 1em;
	background-color: #fff;
	position: relative;
	transition: color .4s, opacity .4s;
}
#map_switch_container .map_trigger_wrapper .map_trigger.active{
	color: #fff;
	pointer-events: none;
}
#map_switch_container .map_trigger_wrapper .map_trigger:hover{
	opacity: .7;
}

#map_switch_container .map_trigger_wrapper .map_trigger::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: opacity .4s;
}
#map_switch_container .map_trigger_wrapper .map_trigger.active::before{
	opacity: 1;
}

#map_switch_container .map_trigger_wrapper .map_trigger .btn_text{
	display: block;
	position: relative;
	z-index: 2;
}

#map_switch_container .supple_list{
	opacity: 0;
	visibility: hidden;
	height: 0;
}
#map_switch_container .supple_list.active{
	opacity: 1;
	visibility: visible;
	height: auto;
}
#map_switch_container .supple_list > li{
	margin-bottom: .25em;
}

@media screen and (max-width: 768px) {
	#map_switch_container .map_wrapper{
		height: 42.5rem;
	}

	#map_switch_container .map_trigger_wrapper{
		margin-bottom: 2.5rem;
	}
	#map_switch_container .map_trigger_wrapper .map_trigger{
		padding: .6em;
	}
}



/************************************************************************
	メンバー紹介
**************************************************************************/
#member .lower_head{
	margin-bottom: -7%;
}

@media screen and (max-width: 768px) {
	#member .lower_head{
		margin-bottom: 9%;
	}
}

/* =====
	メンバー01~04
======================================================== */
.member_sec{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 10rem;
	position: relative;
}
#member01{
	margin-bottom: 15rem;
}
#member04{
	margin-bottom: 0;
}

.member_sec .name{
	font-family: var(--mincho);
	font-size: 8rem;
	color: rgba(255, 255, 255, .7);
	line-height: 1.2;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-left: max(-20rem ,var(--break_through));
	position: absolute;
	top: .5em;
	left: 0;
	z-index: 1;
}
.member_sec.fd_rr .name{
	text-align: right;
	margin-left: 0;
	margin-right: max(-20rem ,var(--break_through));
	left: auto;
	right: 0;
}

#member01 .name{
	font-size: 10rem;
	line-height: 1;
	top: 0;
}

.member_sec .img_wrapper{
	flex-shrink: 0;
	width: 44.5rem;/* 02~04は中の.imgで調整 */
	margin-right: min(0px, calc((var(--js_windowWidth) - 160rem) / 5.2));/* （100vw - 1600px）で画面幅1600px以下ならマイナス値にして、適当に割り算で調整 */
	position: relative;
}
.member_sec.fd_rr .img_wrapper{
	margin-right: 0;
	margin-left: min(0px, calc((var(--js_windowWidth) - 160rem) / 5.2));
}

.member_sec .img_wrapper::before{
	content: "";
	display: block;
	width: 135%;/* 見た目で */
	height: 100%;
	background-color: #e3e8e7;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}
.member_sec.fd_rr .img_wrapper::before{
	left: auto;
	right: 0;
}

#member01 .img_wrapper::before{
	width: min(120rem, (calc(var(--js_windowWidth) * 1.15) - 50%));/* 適当 */
	margin-right: max(-20rem, var(--break_through_half));/* 適当に、画面はみ出るように */
	background-color: transparent;
	background-image: linear-gradient(45deg, #a4dde9 0%, #0080c7 50%, var(--deep_blue) 100%);
	background-image: linear-gradient(135deg, #a4dde9 0%, #0080c7 50%, var(--deep_blue) 100%);
}

.member_sec .img_wrapper .img{
	width: 71%;
	margin-inline: auto;
	position: relative;
	z-index: 2;
}
.member_sec.fd_rr .img_wrapper .img{
	transform: translateX(-15%);
}

#member01 .img_wrapper .img{
	width: 100%;
	padding-top: 4rem;
	margin-left: -4%;
	margin-right: 4%;
	transform: translateX(0);
}
#member02 .img_wrapper .img{
	padding-top: 8.5rem;
}
#member03 .img_wrapper .img{
	padding-top: 12rem;
}
#member04 .img_wrapper .img{
	padding-top: 10.5rem;
}


.member_sec .text_wrapper{
	-webkit-box-flex:1;
	flex-grow:1;
	max-width: 75rem;
	padding: 4.5% 5%;
	margin-top: 4.5%;
	background-color: #fff;
	position: relative;
	z-index: 2;
}

#member01 .text_wrapper{
	max-width: 74rem;
	padding: 4% 5%;
	margin-top: 6.5%;
}

.member_sec .text_wrapper h3{
	font-size: 2.8rem;
	font-weight: 700;
	width: fit-content;
	margin-bottom: .75em;
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.member_sec .text_wrapper .name_group{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 500;
	padding-top: 1.5em;
}
.member_sec .text_wrapper .name_group .sub{
	text-transform: capitalize;
	margin-right: 1em;
}
.member_sec .text_wrapper .name_group .main{
	font-size: 1.375em;/* 22/16 */
}

@media screen and (max-width: 1024px) {
	.member_sec .img_wrapper .img{
		margin-left: 0;
	}
	.member_sec.fd_rr .img_wrapper .img{
		margin-left: auto;
		margin-right: 0;
	}
}

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

	.member_sec{
		display: block;
		margin-bottom: 12rem;
	}
	#member01{
		margin-bottom: 12rem;
	}

	.member_sec .name{
		font-size: 5rem;
		line-height: 1.1;
		margin-left: 0;
		top: .2em;
	}
	.member_sec.fd_rr .name{
		margin-right: 0;
		left: auto;
		right: 0;
	}

	#member01 .name{
		font-size: 5rem;
		line-height: 1.1;
		top: .2em;
	}

	.member_sec .img_wrapper{
		width: 80%;
		margin-left: auto;
		margin-right: 0;
	}
	.member_sec.fd_rr .img_wrapper{
		margin-right: auto;
		margin-left: 0;
	}
	#member01 .img_wrapper{
		width: 100%;
	}

	.member_sec .img_wrapper::before{
		width: 100%;
	}
	#member01 .img_wrapper::before{
		width: 100%;
		margin-right: 0;
	}

	.member_sec .img_wrapper .img{
		margin-inline: auto;
		transform: translateX(-10%);
	}
	.member_sec.fd_rr .img_wrapper .img{
		transform: translateX(-30%);
	}

	#member01 .img_wrapper .img{
		width: 84%;
		padding-top: 6.5rem;
		margin-left: 0;
		margin-right: 0;
	}
	#member02 .img_wrapper .img{
		padding-top: 2rem;
	}
	#member03 .img_wrapper .img{
		padding-top: 4rem;
	}
	#member04 .img_wrapper .img{
		padding-top: 4rem;
	}

	.member_sec .text_wrapper{
		max-width: none;
		width: 94.6%;
		padding: 2.75rem 3.75% 3rem;
		margin-inline: auto;
		margin-top: -2rem;
	}

	#member01 .text_wrapper{
		max-width: none;
		padding: 2.75rem 3.75% 3rem;
		margin-top: -2rem;
	}

	.member_sec .text_wrapper h3{
		font-size: 2.4rem;
		margin-bottom: .4em;
	}

	.member_sec .text_wrapper .name_group{
		padding-top: .5em;
	}
	.member_sec .text_wrapper .name_group .main{
		font-size: 1.4286em;/* 20/14 */
	}
}

/************************************************************************
	サービス紹介動画
**************************************************************************/

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


/************************************************************************
	RHCの開業支援「5つの魅力」
**************************************************************************/
@media screen and (max-width: 768px) {
	#features .lower_head h1 .control{
		font-feature-settings: "palt";
	}
}

/* =====
	アンカー
======================================================== */
#features_anchor_area{
	padding-top: max(9rem, 5.25%);
	margin-bottom: 10rem;
}

.features_anchor_list > li{
	width: 30.4%;
	margin-right: 4.4%;
}
.features_anchor_list > li:nth-of-type(-n+3){
	margin-bottom: 9rem;
}
.features_anchor_list > li:nth-of-type(3),
.features_anchor_list > li:nth-of-type(5){
	margin-right: 0;
}

.features_anchor_list > li a{
	display: block;
	border-top: 2px solid;
	border-bottom: 2px solid;
	border-image: -webkit-linear-gradient(0deg, #ab6a00 0%, #e1ab16 12%, #ffe563 28.8%, #e1ab16 48.4%, #bc8833 57.5%, #e1ab16 68.6%, #ffe563 83.1%, #e1ab16 100%);
	border-image: linear-gradient(90deg, #ab6a00 0%, #e1ab16 12%, #ffe563 28.8%, #e1ab16 48.4%, #bc8833 57.5%, #e1ab16 68.6%, #ffe563 83.1%, #e1ab16 100%);
	border-image-slice: 1;
	position: relative;
	z-index: 1;
}
.features_anchor_list > li a::before{
	content: "Read more";
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	color: #808080;
	letter-spacing: .1em;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 4.25rem;
	left: 0;
	z-index: 1;
}
.features_anchor_list > li a::after{
	content: "";
	display: block;
	width: 3rem;
	height: 1.3rem;
	background: url(../img/features/anchor_arrow.svg) no-repeat center/contain;
	position: absolute;
	left: calc(50% - 1.5rem);
	bottom: 2rem;
	z-index: 1;
	transition: bottom .4s;
}
.features_anchor_list > li a:hover::after{
	bottom: 1.5rem;
}

.features_anchor_list > li a .num{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-family: var(--mincho);
	font-size: 3.8rem;
	font-weight: 600;
	width: 2.64em;/* 100/38 */
	height: 3.08em;/* 117/38 */
	padding-top: .35em;
	margin-inline: auto;
	background: url(../img/features/anchor_num.png) no-repeat center/contain;
	position: absolute;
	left: 0;
	right: 0;
	top: -1.85em;
	z-index: 2;
}

.features_anchor_list > li a .num .num_text{
	display: inline-block;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: -webkit-linear-gradient(0deg, #AB6A00 0%, #FFC300 18%, #E1AB16 24%, #BC8833 38.5%, #E1AB16 55.2%, #FFC300 65%, #E1AB16 77.5%);
	background-image: linear-gradient(90deg, #AB6A00 0%, #FFC300 18%, #E1AB16 24%, #BC8833 38.5%, #E1AB16 55.2%, #FFC300 65%, #E1AB16 77.5%);
}

.features_anchor_list > li a .text_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	min-height: 21.5rem;
	padding: 5rem 0 6.25rem;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}

.features_anchor_list > li a .text_wrapper::after{
	content: "";
	display: block;
	width: 300%;
	height: 100%;
	background-color: #f9f9f9;
	-webkit-clip-path: polygon(23rem 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(23rem 0, 100% 0, 100% 100%, 0 100%);
	position: absolute;
	left: 35%;
	top: 0;
	z-index: 0;
	transition: left .4s;
}
.features_anchor_list > li a:hover .text_wrapper::after{
	left: -24rem;/* clip-pathの値 + 1rem */
}

.features_anchor_list > li a .text_wrapper .text{
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
	position: relative;
	z-index: 1;
}

.features_anchor_list > li a .text_wrapper .text .big{
	font-size: 1.2727em;/* 28/22 */
	line-height: 1.35;/* 1.75 * (22/28) */
}

@media screen and (max-width: 940px) {
	.features_anchor_list > li{
		width: 47%;
		margin-right: 6%;
	}
	.features_anchor_list > li:nth-of-type(-n+4){
		margin-bottom: 9rem;
	}
	.features_anchor_list > li:nth-of-type(3){
		margin-right: 6%;
	}
	.features_anchor_list > li:nth-of-type(2n){
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	#features_anchor_area{
		padding-top: 3%;
		margin-bottom: 5rem;
	}

	.features_anchor_list > li{
		width: 100%;
		margin-right: 0;
	}
	.features_anchor_list > li:nth-of-type(-n+4){
		margin-bottom: 2rem;
	}
	.features_anchor_list > li:nth-of-type(3){
		margin-right: 0;
	}

	.features_anchor_list > li a::before{
		font-size: 1.2rem;
		text-align: left;
		width: fit-content;
		bottom: 2rem;
		left: calc(4% + 5rem);
		transition: bottom .4s;
	}
	.features_anchor_list > li a:hover::before{
		bottom: 1.5rem;
	}
	.features_anchor_list > li a::after{
		width: 1.8rem;
		height: .6rem;
		background-image: url(../img/features/anchor_arrow_sp.svg);
		left: calc(4% + 12.75rem);
		bottom: 2.5rem;
	}
	.features_anchor_list > li a:hover::after{
		bottom: 2rem;
	}

	.features_anchor_list > li a .num{
		font-size: 2.8rem;
		width: 2.24em;/* 63/28 */
		height: 2.68em;/* 75/28 */
		padding-top: .35em;
		margin-inline: 0;
		left: -.5em;
		right: auto;
		top: calc(50% - 1.55em);/* 丸い部分がおよそ中心にくるように */
		z-index: 2;
	}

	.features_anchor_list > li a .text_wrapper{
		-webkit-box-pack: start;
		justify-content: flex-start;
		min-height: 0;
		padding: 2rem 2% 4.25rem calc(4% + 5rem);
		background-color: #fff;
		position: relative;
		overflow: hidden;
	}
	.features_anchor_list > li a .text_wrapper::after{
		-webkit-clip-path: polygon(12rem 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(12rem 0, 100% 0, 100% 100%, 0 100%);
		left: 45%;
	}
	.features_anchor_list > li a:hover .text_wrapper::after{
		left: -13rem;/* clip-pathの値 + 1rem */
	}


	.features_anchor_list > li a .text_wrapper .text{
		font-size: 2rem;
		text-align: left;
		line-height: 1.5;
	}
	.features_anchor_list > li a .text_wrapper .text .big{
		font-size: 1.2em;/* 24/20 */
	}
}


/* =====
	features01~05
======================================================== */
.features_sec{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	max-width: 120rem;
	width: 92%;
	padding-top: 10.5rem;
	margin: 0 auto 8rem;
	position: relative;
}
#features05{
	margin-bottom: 14rem;
}

.features_sec .num_text{
	font-family: var(--mincho);
	font-size: min(7.2rem, calc(5.538 * var(--js_vw)));/* 1300px以下で縮み出す */
	font-weight: 500;
	color: #fff;
	line-height: 1;
	letter-spacing: .05em;
	text-transform: capitalize;
	position: absolute;
	top: 0;
	left: 0;
}
.features_sec.fd_rr .num_text{
	left: auto;
	right: -.25em;
}

.features_sec .num_text .big{
	display: inline-block;
	font-size: 3.333em;/* 240/72 */
	vertical-align: text-top;
	letter-spacing: .025em;
	padding-left: .05em;
	transform: translateY(-.05em);
}

.features_sec .text_wrapper{
	width: 50%;
	position: relative;
	z-index: 1;
}

.features_sec .text_wrapper h2{
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .1em;
	width: fit-content;
	margin-bottom: 7.5%;/* 横の画像とのバランスを維持したく、%指定 */
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.features_sec .text_wrapper .text{
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.875;
	margin-bottom: 9.5%;/* 横の画像とのバランスを維持したく、%指定 */
}
.features_sec .text_wrapper .text .grada_wrap{
	font-size: 1.22em;/* 22/18 */
	color: #fff;
	letter-spacing: .11em;
	font-feature-settings: "palt";
	padding: .15em .5em .25em;
	margin-inline: .2em;
	background-image: -webkit-linear-gradient(-45deg, #0049a2 0%, #00b6f9 60%, #0049a2 100%);
	background-image: linear-gradient(45deg, #0049a2 0%, #00b6f9 60%, #0049a2 100%);
}

.features_sec .text_wrapper .check_box{
	padding: 6% 5%;/* 横の画像とのバランスを維持したく、%指定 */
	background-color: #fff;
}
.features_sec .text_wrapper .check_box .list > li{
	font-size: 2.2rem;
	font-weight: 500;
	letter-spacing: .1em;
	padding-left: 2.25em;
	margin-bottom: 2.5%;/* 横の画像とのバランスを維持したく、%指定 */
	position: relative;
}
.features_sec .text_wrapper .check_box .list > li:nth-last-of-type(1){
	margin-bottom: 0;
}
.features_sec .text_wrapper .check_box .list > li::before{
	content: "";
	display: block;
	width: 1.38em;/* 30/22 */
	height: 1.38em;
	border-radius: 50%;
	background: #009fe7 url(../img/cmn/icon_check_wh.svg) no-repeat center/60%;
	position: absolute;
	left: 0;
	top: .25em;
}

.features_sec .illust_wrapper{
	width: 48%;
	max-width: 53rem;
	position: relative;
	z-index: 1;
}


@media screen and (max-width: 940px) {
	.features_sec{
		display: block;
		max-width: 70rem;
		width: 94.6%;/* 710/750 */
		padding-top: 8rem;
	}

	.features_sec.fd_rr .num_text{
		left: 0;
		right: auto;
	}
	.features_sec .text_wrapper{
		width: 100%;
		margin-bottom: 4rem;
	}

	.features_sec .text_wrapper h2{
		margin-bottom: .75em;
	}
	.features_sec .text_wrapper .text{
		margin-bottom: 1.5em;
	}

	.features_sec .text_wrapper .check_box{
		padding: 3rem 4.5% 2.5rem;/* 横の画像とのバランスを維持したく、%指定 */
	}

	.features_sec .illust_wrapper{
		width: 100%;
		margin-inline: auto;
	}
}


@media screen and (max-width: 768px) {
	.features_sec{
		padding-top: 5.5rem;
		margin: 0 auto 8rem;
		position: relative;
	}

	.features_sec .num_text{
		font-size: 3.6rem;
		white-space: nowrap;
		width: 91.6%;
		right: 0;
		margin-inline: auto;
	}
	.features_sec.fd_rr .num_text{
		left: 0;
		right: 0;
	}
	
	.features_sec .text_wrapper{
		margin-bottom: 3rem;
	}

	.features_sec .text_wrapper h2{
		font-size: 2.8rem;
		max-width: 91.6%;/* 650/710 */
		margin-inline: auto;
	}
	.features_sec .text_wrapper .text{
		font-size: 1.6rem;
		max-width: 91.6%;/* 650/710 */
		margin-inline: auto;
	}
	.features_sec .text_wrapper .text .grada_wrap{
		padding: 0 .4em .1em;
	}

	.features_sec .text_wrapper .check_box{
		padding: 3rem 4.5% 2.5rem;/* 横の画像とのバランスを維持したく、%指定 */
	}
	.features_sec .text_wrapper .check_box .list > li{
		font-size: 2rem;
		padding-left: 1.75em;
		margin-bottom: .5em;/* 横の画像とのバランスを維持したく、%指定 */
		position: relative;
	}
}



/************************************************************************
	クリニック開業支援の流れ
**************************************************************************/
/* =====
	スワイパー
======================================================== */
#flow_swiper_area{
	padding-top: min(24rem, 9%);
	margin-bottom: 4.5%;
	position: relative;
}

#flow_swiper{
	max-width: 146rem;
	padding: 4rem 0 1rem;
	margin-left: 0;
	margin-right: var(--break_through);
}

#flow_swiper .swiper-slide{
	height: auto;
	padding: 0 2.6% 4rem;
	background-color: #fff;
}

#flow_swiper .swiper-slide .img{
	font-size: min(1rem, calc(.7143 * var(--js_vw)));/* 1400px以下から縮む */
	margin: -4rem auto 3rem;
	position: relative;
	overflow: hidden;
}
#flow_swiper .swiper-slide .img p{
	font-family: var(--mincho);
	font-size: 3.8em;
	color: rgba(255,255,255,.7);
	text-transform: capitalize;
	line-height: 1;
	white-space: nowrap;
	-webkit-writing-mode: sideways-lr;
	-ms-writing-mode: sideways-lr;
	writing-mode: sideways-lr;
	position: absolute;
	right: -1%;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%) translateZ(0);
}
#flow_swiper .swiper-slide .img p .big{
	display: inline-block;
	font-size: 2.63em;/* 100/38 */
	margin-bottom: -.05em;
}

#flow_swiper .swiper-slide hgroup{
	font-size: 2.2rem;
	font-weight: 500;
	color: var(--blue);
	padding-top: .35em;
	margin-bottom: .5em;
	position: relative;
}
#flow_swiper .swiper-slide hgroup::before{
	content: "";
	display: block;
	width: .8em;
	height: 2px;
	border-radius: 1px;
	background-color: var(--blue);
	position: absolute;
	left: .05em;
	top: 0;
}
#flow_swiper .swiper-slide hgroup p{
	font-size: .82em;
}

#flow_swiper .swiper_btn_wrapper{
	-webkit-box-pack: start;
	justify-content: flex-start;
	margin-top: 3.5rem;
}
#flow_swiper .swiper_btn_wrapper .swiper-pagination{
	-webkit-box-flex:1;
	flex-grow:1;
	max-width: 32rem;
}


@media screen and (max-width: 1024px) {
	#flow_swiper .swiper-slide .img{
		font-size: calc(1 * var(--js_vw));/* 1024px以下は見た目で */
	}
}

@media screen and (max-width: 768px) {
	#flow_swiper_area{
		padding-top: 4%;
		margin-bottom: -20%;
	}
	#flow_swiper{
		width: 108%;
		padding: 3.5rem 0 1rem;
		margin-left: -4%;
		margin-right: auto;
		margin-bottom: 9%;
	}

	#flow_swiper .swiper-slide{
		height: auto;
		padding: 0 4% 1.5rem;
		background-color: #fff;
	}

	#flow_swiper .swiper-slide .img{
		font-size: calc(2.67 * var(--js_vw));/* 375pxのとき10px */
		margin: -3.5rem auto 3rem;
	}
	#flow_swiper .swiper-slide .img p{
		font-size: 2.8em;
	}

	#flow_swiper .swiper-slide hgroup{
		font-size: 2rem;
		margin-bottom: .25em;
	}
	#flow_swiper .swiper-slide hgroup p{
		font-size: .8em;
	}

	#flow_swiper .swiper_btn_wrapper{
		-webkit-box-pack: center;
		justify-content: center;
		width: 94%;
		margin-inline: auto;
	}
	#flow_swiper .swiper_btn_wrapper .swiper-pagination{
		max-width: none;
	}
}

/* 波
-------------------------------------------------------- */
#flow_swiper_area .lower_wave_inner{
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5%;
	z-index: 0;
	transform: translateZ(0);
}

.arrival #flow_wave .gray_img{
	transition-delay: 1.2s;
}

#flow_wave .blue_img{
	-webkit-filter: drop-shadow(0 5.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: drop-shadow(0 5.5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
	filter: drop-shadow(0 5.5em .5em rgba(0,0,0,0.1));
}

#flow_swiper_area .mask_path{
	transform: translateY(-5%) translateX(-5%);
}
#flow_wave_mask_path{
	stroke-width: 200;
	stroke-dasharray: 2365.7px;
}
.arrival #flow_wave_mask_path{
	animation: flow_wave 1.6s linear forwards;
}

@keyframes flow_wave {
	0% {
		stroke-width: 100;
		stroke-dashoffset: 2365.7px;
	}
	100% {
		stroke-width: 200;
		stroke-dashoffset: 0;
	}
}

@media screen and (max-width: 768px) {
	#flow_swiper_area .lower_wave_inner{
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
	}

	.arrival #flow_wave_sp .gray_img{
		transition-delay: .8s;
	}

	#flow_wave_sp .blue_img{
		-webkit-filter: drop-shadow(0 2.5em .25em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
		-moz-filter: drop-shadow(0 2.5em .25em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
		filter: drop-shadow(0 2.5em .25em rgba(0,0,0,0.1));
	}

	#flow_wave_sp_mask_path{
		stroke-width: 180;
		stroke-dasharray: 802.1px;
	}
	.arrival #flow_wave_sp_mask_path{
		animation: flow_wave_sp 1.2s linear forwards;
	}

	@keyframes flow_wave_sp {
		0% {
			stroke-width: 90;
			stroke-dashoffset: 802.1px;
		}
		100% {
			stroke-width: 180;
			stroke-dashoffset: 0;
		}
	}

}


/* =====
	開業までのスケジュール
======================================================== */
#support_schedule{
	padding: 7rem 0;
	margin-bottom: 14rem;
	background-color: rgba(255, 255, 255, .5);
	-webkit-backdrop-filter: blur(4px);
	-moz-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	position: relative;
	z-index: 2;
}

#support_schedule .flex_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	align-items: flex-end;
}
#support_schedule .flex_wrapper.in_anime{
	-webkit-box-align: center;
	align-items: center;
}

#support_schedule .text_wrapper{
	width: 46%;
	max-width: 54rem;
}

#support_schedule .btn_wrapper{
	width: 50%;
	padding-bottom: 1.25rem;
	position: relative;
}
#support_schedule .flex_wrapper.in_anime .btn_wrapper{
	padding-bottom: 0;
}

#support_schedule .btn_wrapper .youtube_box{
	position: relative;
}
#support_schedule .btn_wrapper .youtube_box::before{
	content: "";
	display: block;
	padding-top: 56.25%;
}
#support_schedule .btn_wrapper .youtube_box iframe{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}


#support_schedule .btn_wrapper .deco{
	width: 20rem;
	position: absolute;
	right: 4%;
	bottom: 1.25rem;
	z-index: 1;
	transform: translateZ(0);
}

@media screen and (max-width: 940px) {
	#support_schedule .btn_wrapper .deco{
		width: 15rem;
		right: 0;
		bottom: 0;
	}
}

@media screen and (max-width: 768px) {
	#support_schedule{
		padding: 9rem 0 0;
		margin-top: 30%;
		margin-bottom: 8rem;
		-webkit-backdrop-filter: blur(3px);
		-moz-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
	}

	#support_schedule .flex_wrapper{
		display: block;
	}

	#support_schedule .text_wrapper{
		width: 100%;
		max-width: none;
		margin-bottom: 2.5rem;
	}

	#support_schedule .btn_wrapper{
		width: 100%;
		padding-bottom: 1.25rem;
		position: relative;
	}

	#support_schedule .btn_wrapper .deco{
		width: 13.6rem;
		margin: -.5rem auto 0;
		position: relative;
		right: auto;
		bottom: auto;
	}
}

/************************************************************************
	よくあるご質問
**************************************************************************/
/* =====
	質問部分
======================================================== */
#faq_area{
	max-width: 90rem;
	width: 92%;
	padding-top: min(8rem, 4%);
	margin-inline: auto;
}

.faq_container .wrapper{
	margin-bottom: 1.5rem;
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	position: relative;
	z-index: 0;
	transition: color .4s, opacity .4s;
}
.faq_container .wrapper.acc_open{
	color: #fff;
}
.faq_container .wrapper::before{
	content: "";
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background-color: #fff;
	position: absolute;
	left: -1px;
	top: -1px;
	z-index: 1;
	transition: opacity .4s;
}
.faq_container .wrapper.acc_open::before{
	opacity: 0;
}

.faq_container .wrapper:has(dt:hover){
	opacity: .7;
}
.faq_container .wrapper.acc_open:has(dt:hover){
	opacity: .8;
}

.faq_container .wrapper dt,
.faq_container .wrapper dd{
	position: relative;
	z-index: 2;
}

.faq_container .wrapper dt{
	cursor: pointer;
	padding: 1.5em calc(1em + 4.5%) 1.5em calc(3.5em + 4.5%);
	border-bottom: 2px solid transparent;
}
.faq_container .wrapper.acc_open dt{
	border-color: var(--bg_gray);
}

.faq_container .wrapper dt::after{
	content: "";
	display: block;
	width: .8em;
	height: .5em;
	-webkit-mask: url(../img/cmn/hd_nav_arrow.svg) no-repeat center/contain;
	mask: url(../img/cmn/hd_nav_arrow.svg) no-repeat center/contain;
	background-color: var(--font_color);
	position: absolute;
	right: 4.5%;
	top: 2.2em;
	transition: background-color .4s, transform .4s;
}
.faq_container .wrapper.acc_open dt::after{
	background-color: #fff;
	transform: scale(1, -1);
}

.faq_container .wrapper dt .q_mark,
.faq_container .wrapper dd .a_mark{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.125em;/* 18/16 */
	font-weight: 500;
	color: #fff;
	line-height: 1;
	width: 2.22em;/* 40/16 */
	height: 2.22em;/* 40/16 */
	padding-bottom: .2em;
	border-radius: 50%;
	background-image: -webkit-linear-gradient(-45deg, #0049a2 0%, #00b6f9 60%, #0049a2 100%);
	background-image: linear-gradient(45deg, #0049a2 0%, #00b6f9 60%, #0049a2 100%);
	position: absolute;
	left: 4.5%;
	top: 1.25em;
	z-index: 1;
	transition: color .4s;
}
.faq_container .wrapper.acc_open dt .q_mark,
.faq_container .wrapper.acc_open dd .a_mark{
	color: var(--blue);
}
.faq_container .wrapper dt .q_mark::before,
.faq_container .wrapper dd .a_mark::before{
	content: "";
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	border-radius: 50%;
	background-color: transparent;
	position: absolute;
	top: -1px;
	left: -1px;
	z-index: -1;
	transition: background-color .4s;
}
.faq_container .wrapper.acc_open dt .q_mark::before,
.faq_container .wrapper.acc_open dd .a_mark::before{
	background-color: #fff;
}

.faq_container .wrapper dt > p{
	font-size: 1.125em;/* 18/16 */
	font-weight: 500;
}
.faq_container .wrapper dd{
	display: none;
	padding: 1.5em 4.5% 1.5em calc(3.5em + 4.5%);
}
.faq_container .wrapper.acc_open dd{
	display: block;
}

@media screen and (max-width: 768px) {
	#faq_area{
		width: 94.6%;/* 710/750 */
		padding-top: 4%;
	}

	.faq_container .wrapper{
		font-size: 1.6rem;
		margin-bottom: .5em;
	}

	.faq_container .wrapper dt{
		padding: 1em calc(1em + 4.5%) .8em calc(3.5em + 4.5%);
	}
	.faq_container .wrapper dt::after{
		right: 4%;
		top: 1.75em;
	}
	.faq_container .wrapper dt > p{
		font-size: 1em;
	}

	.faq_container .wrapper dd{
		padding: 1em 4.5% .8em calc(3.5em + 4.5%);
	}

	.faq_container .wrapper dt .q_mark,
	.faq_container .wrapper dd .a_mark{
		top: .5em;
	}
}

/************************************************************************
	医療機器販売
**************************************************************************/
#sale .lower_head{
	margin-bottom: max(-30rem, -13.5%);
}

@media screen and (max-width: 768px) {
	#sale .lower_head{
		margin-bottom: 0;
	}

}


/* =====
	パララックス
======================================================== */
.parallax_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: fixed;
	top: 0;
	z-index: -1;
}
.parallax_img.is_hide{
	display: none;
}


.parallax_area{
	padding: 12rem 0;
}

.parallax_area .text,
.parallax_area h2{
	text-shadow: 0 .1em .4em rgba(51, 51, 51, .5);
}

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

	.sale_parallax_bg{
		background: none;
	}
	.parallax_area{
		padding: 6.5rem 0;
	}
	#sale_parallax{
		background: url(../img/sale/sale_parallax_sp.jpg) no-repeat center/cover;
	}
}



/* =====
	一覧
======================================================== */
.sale_list{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(3, min(36rem, 31.4%));
    grid-template-columns: repeat(3, min(36rem, 31.4%));
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
	grid-row-gap: 6rem;
}
.sale_list dt{
	cursor: pointer;
	position: relative;
	transition: opacity .4s;
}
.sale_list dt::before{
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	position: absolute;
	bottom: 1px;
	left: 0;
	z-index: 0;
}

.sale_list dt .img{
	width: calc(100% + 2px);
	margin-left: -1px;
	position: relative;
	z-index: 1;
}
.sale_list dt .img::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 45, 90, .3);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: background-color .4s;
}
.sale_list dt:hover .img::after,
.sale_list dt.acc_open .img::after{
	background-color: transparent;
}
.sale_list dt.acc_open:hover{
	opacity: .7;
}

.sale_list dt .img img{
	-webkit-filter: saturate(40%);/* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: saturate(40%);/* 古いバージョンのFoxに対応時に指定 */
    filter: saturate(40%);
	transition: filter .4s, -moz-filter .4s, -webkit-filter .4s;
}
.sale_list dt:hover .img img,
.sale_list dt.acc_open .img img{
	-webkit-filter: saturate(100%);/* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: saturate(100%);/* 古いバージョンのFoxに対応時に指定 */
    filter: saturate(100%);
}

.sale_list dt .title_box{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 500;
	min-height: 5em;
	width: calc(100% + 2px);
	padding: .25em calc(6.5% + 1.1em) .25em 6.5%;
	background-color: #fff;
	position: relative;
	z-index: 1;
	transition: color .4s, background-color .4s;
}
.sale_list dt:hover .title_box,
.sale_list dt.acc_open .title_box{
	color: #fff;
	background-color: transparent;
}

.sale_list dt .title_box::before,
.sale_list dt .title_box::after{
	content: "";
	display: block;
	width: 1em;
	height: 2px;
	border-radius: 2px;
	background-color: var(--font_color);
	position: absolute;
	right: 6.5%;
	transition: background-color .4s, transform .4s;
}
.sale_list dt:hover .title_box::before,
.sale_list dt.acc_open .title_box::before,
.sale_list dt:hover .title_box::after,
.sale_list dt.acc_open .title_box::after{
	background-color: #fff;
}
.sale_list dt .title_box::after{
	transform: rotate(90deg);
}
.sale_list dt.acc_open .title_box::after{
	transform: rotate(0deg);
}

.sale_list dt .title_box > p{
	line-height: 1.5;
	position: relative;
	z-index: 2;
}

.sale_list dd{
	display: none;
	padding: 2.5rem 6.5%;
	background-color: #fff;
}

@media screen and (max-width: 960px) {
	.sale_list{
		-ms-grid-columns: repeat(2, 48.4%);
		grid-template-columns: repeat(2, 48.4%);
		grid-row-gap: 5rem;
	}
}


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

	.sale_list .wrapper{
		margin-bottom: 3.5rem;
	}
}



/************************************************************************
	調剤薬局事業
**************************************************************************/
#pharmacy .lower_head{
	margin-bottom: max(-30rem, -13.5%);
}

@media screen and (max-width: 768px) {
	#pharmacy .lower_head{
		margin-bottom: 0;
	}

}


/* =====
	パララックス
======================================================== */

@media screen and (max-width: 768px) {
	#pharmacy_parallax{
		background: url(../img/pharmacy/pharmacy_parallax_sp.jpg) no-repeat center/cover;
	}

}

/* =====
	point
======================================================== */
.pharmacy_sec{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	padding: 6.5rem 0;
}

#pharmacy01{
	padding-top: 19rem;
}

.pharmacy_sec .num_text{
	font-family: var(--mincho);
	font-size: min(7.2rem, calc(5.538 * var(--js_vw)));/* 1300px以下で縮み出す */
	font-weight: 500;
	color: #fff;
	line-height: 1;
	letter-spacing: .05em;
	text-transform: capitalize;
	white-space: nowrap;
	position: absolute;
	top: -1.3em;
	left: 0;
	z-index: -1;
}

.pharmacy_sec .num_text .big{
	display: inline-block;
	font-size: 3.333em;/* 240/72 */
	vertical-align: text-top;
	letter-spacing: .025em;
	padding-left: .05em;
	transform: translateY(-.05em);
}

.pharmacy_sec .text_wrapper{
	width: 50%;
	padding-bottom: 4rem;
	position: relative;
	z-index: 1;
}

.pharmacy_sec .text_wrapper h2{
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .1em;
	width: fit-content;
	margin-bottom: 7.25%;/* 横の画像とのバランスを維持したく、%指定 */
	background-image: var(--font_grada_w);
	background-image: var(--font_grada);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.pharmacy_sec .text_wrapper h2 .big{
	display: inline-block;
	font-size: 1.3158em;/* 50/38 */
	padding-inline: .1em;
	line-height: 1;
}

.pharmacy_sec .text_wrapper .text{
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .1em;
}

.pharmacy_sec .illust_wrapper{
	width: 48%;
	max-width: 53rem;
	position: relative;
	z-index: 1;
}


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

	#pharmacy01{
		padding-top: 10rem;
	}

	.pharmacy_sec .num_text{
		font-size: 3.6rem;
		white-space: nowrap;
		width: 91.6%;
		right: 0;
		margin-inline: auto;
	}

	.pharmacy_sec .text_wrapper{
		width: 100%;
	}

	.pharmacy_sec .text_wrapper h2{
		font-size: 2.8rem;
		width: 94.6%;/* 710/750 */
		margin: 0 auto 1em;
	}

	.pharmacy_sec .text_wrapper .text{
		font-size: 1.6rem;
		width: 94.6%;/* 710/750 */
		margin-inline: auto;
	}

	.pharmacy_sec .illust_wrapper{
		width: 100%;
		max-width: none;
	}

}

/* 02
-------------------------------------------------------- */
#pharmacy02{
	padding-bottom: 12rem;
}
#pharmacy02swiper{
	padding-top: 2rem;
}
#pharmacy02swiper .img{
	overflow: hidden;
	border-radius: 1rem;
}
#pharmacy02swiper .bubble{
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--blue);
	text-align: center;
	width: calc(96% - 10rem);
	padding: .75em .25em;
	margin-top: .9em;
	margin-inline: auto;
	background-color: #fff;
	position: relative;
	z-index: 1;
}
#pharmacy02swiper .bubble::before{
	content: "";
	display: block;
	width: 3em;
	height: 1.25em;
	background-color: #fff;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	position: absolute;
	bottom: calc(100% - 1px);
	left: calc(50% - 1.5em);
	z-index: 0;
}

#pharmacy02swiper .swiper_btn_wrapper{
	width: 100%;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin: 0;
	position: absolute;
	top: auto;
	bottom: 1rem;
}

@media screen and (max-width: 768px) {
	#pharmacy02{
		padding-bottom: 8rem;
	}
	#pharmacy02swiper{
		padding-top: 1rem;
	}
	#pharmacy02swiper .img{
		border-radius: .5rem;
	}
	#pharmacy02swiper .bubble{
		font-size: 1.6rem;
	}
}

/* 03
-------------------------------------------------------- */
#pharmacy03{
	display: block;
	padding-bottom: 20rem;
}

#pharmacy03 .text_wrapper{
	width: 100%;
	margin-bottom: 8rem;
}
#pharmacy03 .num_text{
	white-space: nowrap;
	left: 50%;
	transform: translateX(-50%);
}
#pharmacy03 .text_wrapper h2{
	margin: 0 auto;
}

#pharmacy03 .list{
	position: relative;
	z-index: 1;
}
#pharmacy03 .list > li{
	width: 24%;
	max-width: 27rem;
	padding: 9rem 2% 2.5rem;
	background-color: #fff;
	position: relative;
}
#pharmacy03 .list > li .bubble{
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
	color: #fff;
	line-height: 1.36;/* 30/22 */
	letter-spacing: .1em;
	width: 90%;
	max-width: 9.25em;
	padding: .9em .1em 1.6em;
	margin-inline: auto;
	background: url(../img/pharmacy/pharmacy03bubble.png) no-repeat center/100% 100%;
	position: absolute;
	bottom: calc(100% - 2.75em);
	left: 0;
	right: 0;
}

#pharmacy03 .list > li .img{
	max-width: 20rem;
	margin: 0 auto 2.5rem;
	position: relative;
}
#pharmacy03 .list > li .img::before{
	content: "";
	display: block;
	padding-top: 60%;/* 画像4つの横最大が200px 高さは全て120pxなので */
}
#pharmacy03 .list > li .img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 768px) {
	#pharmacy03{
		padding-bottom: 10rem;
	}

	#pharmacy03 .text_wrapper{
		max-width: 91.6%;/* 650/710 */
		margin: 0 auto 2rem;
	}
	#pharmacy03 .num_text{
		width: 91.6%;
		margin-inline: auto;
		right: 0;
		left: 0;
		transform: translateX(0);
	}

	#pharmacy03 .list > li{
		display: -webkit-box;
		display: flex;
		-webkit-box-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		justify-content: space-between;
		width: 100%;
		max-width: none;
		padding: 5rem 4% 2rem;
		margin-bottom: 4.5rem;
		border-radius: .5rem;
	}
	#pharmacy03 .list > li:nth-last-of-type(1){
		margin-bottom: 0;
	}
	#pharmacy03 .list > li .bubble{
		font-size: 2rem;
		max-width: 27.5em;
		width: 84%;
		padding: .5em .1em 1.1em;
		background-image: url(../img/pharmacy/pharmacy03bubble_sp.png);
		bottom: calc(100% - 1.75em);
	}

	#pharmacy03 .list > li .img{
		width: 11rem;
		margin: 0;
	}
	#pharmacy03 .list > li .img::before{
		padding-top: 64%;/* 140/220 */
	}

	#pharmacy03 .list > li .text{
		width: calc(96% - 11rem);
	}
}

/* #pharmacy04
-------------------------------------------------------- */
#pharmacy04{
	display: block;
	padding: 0;
	margin-bottom: 12rem;
	position: relative;
	z-index: 1;
}

#pharmacy04 .text_container{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	max-width: 60rem;
	width: 100%;
	height: 100%;
	padding: 2rem 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 3;
}
#pharmacy04 .text_container::before{
	content: "";
	display: block;
	width: 132%;
	height: 100%;
	background-color: rgba(240, 240, 240, .7);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	position: absolute;
	left: -16%;
	top: 0;
	z-index: 0;
}
#pharmacy04 .text_wrapper{
	width: 100%;
	padding-top: 7rem;
	padding-bottom: 0;
}
#pharmacy04 .num_text{
	top: -.5em;
}
#pharmacy04 .text_wrapper h2{
	margin-bottom: 1.25em;
}

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

	#pharmacy04 .text_container{
		display: block;
		max-width: none;
		height: fit-content;
		padding: 6.5rem 0;
		margin-block: auto;
	}

	#pharmacy04 .text_wrapper{
		padding-top: 3rem;
		padding-bottom: 0;
	}
	#pharmacy04 .text_wrapper h2{
		margin-bottom: .5em;
	}
}

/*  スライダー */
#pharmacy04 .slider_wrapper{
	overflow: hidden;
	display: -webkit-box;
	display: flex;
	margin-inline: var(--break_through);
}
#pharmacy04 .slider_wrapper.sp{
	display: none;
}

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

.slider .slider_item{
	width: 60rem;
}

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


@media screen and (max-width: 768px) {
	#pharmacy04 .slider_wrapper.sp{
		display: -webkit-box;
		display: flex;
	}

	#pharmacy04 .slider_wrapper .slider{
		animation: slider-left 30s infinite linear 0s both;
	}
	#pharmacy04 .slider_wrapper.sp .slider{
		display: -webkit-box;
		display: flex;
		animation: slider-left 30s infinite linear 3s both;
	}

	.slider .slider_item{
		width: var(--js_windowWidth);
	}
}


/* =====
	公式サイトのご案内
======================================================== */
#to_pharmacy{
	position: relative;
}
#to_pharmacy .text_wrapper{
	width: calc(92% - 48rem);
	padding-bottom: 2rem;
	position: relative;
	z-index: 1;
}

#to_pharmacy .btn_wrapper{
	width: 48rem;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}

#to_pharmacy .btn_wrapper .img{
	width: 15rem;
	margin-left: 5%;
}

#to_pharmacy .deco{
	opacity: .7;
	position: absolute;
	z-index: 0;
}
#to_pharmacy .deco01{
	width: 50rem;
	left: -38%;
	top: -7rem;
}
#to_pharmacy .deco02{
	width: 24rem;
	left: 7%;
	top: -21rem;
}
#to_pharmacy .deco03{
	width: 24rem;
	right: -19%;
	top: -7rem;
}


@media screen and (max-width: 960px) {
	#to_pharmacy .text_wrapper{
		width: 100%;
		padding-bottom: 2.5rem;
	}

	#to_pharmacy .btn_wrapper{
		width: 100%;
	}

}


@media screen and (max-width: 768px) {
	#to_pharmacy{
		width: 91.6%;/* 650/710 */
		margin-inline: auto;
	}

	#to_pharmacy .btn_wrapper .img{
		pointer-events: none;
		width: 12.6rem;
		margin-left: auto;
		margin-right: 7.5%;
		margin-top: -2.5rem;
		position: relative;
		z-index: 1;
	}

	#to_pharmacy .deco01{
		width: 25rem;
		left: -48%;
		top: -2.5rem;
	}
	#to_pharmacy .deco02{
		width: 10rem;
		left: 14%;
		top: auto;
		bottom: 2.5rem;
	}
	#to_pharmacy .deco03{
		width: 12rem;
		right: 4%;
		top: -10.5rem;
	}


}


/************************************************************************
	お問い合わせ
**************************************************************************/
#form_area{
	max-width: 90rem;
	width: 92%;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	#form_area{
		width: 94.6%;/* 710/750 */
	}
}


/* =====
	フォーム 
======================================================== */

/* テーブル
-------------------------------------------------------- */
.form_table{
	margin-bottom: 3.5rem;
}
.form_table th{
	font-size: 1.125em;/* 18/16 */
	font-weight: 500;
	vertical-align: text-top;
	padding: 1.7rem .5rem 1.7rem 0;
	width: 30rem;
	position: relative;
}

.form_table td{
	line-height: 1.5;
	width: calc(100% - 30rem);
	padding: 1rem 0 1rem .5rem;
}

.form_table th.required::after{
	content: "必須";
	display: inline-block;
	font-size: .778em;/* 14/18 */
	font-weight: 400;
	vertical-align: middle;
	color: #fff;
	padding: .15em .75em;
	margin-left: .85em;
	background-color: var(--blue);
}

form#mailformpro .form_table .mfp_err{
	font-size: .78em;
	font-weight: 700;
	color: var(--red);
}

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

	.form_table tr{
		margin-bottom: 1.5rem;
	}
	.form_table th{
		padding: .75rem 0;
	}
	.form_table td{
		padding: .75rem 0;
	}

}


/* input"text"など
-------------------------------------------------------- */
::placeholder {
	color: #808080;
}

form#mailformpro{
	padding: 6rem 0 0;
}

form#mailformpro .form_table input[type="text"],
form#mailformpro .form_table input[type="email"],
form#mailformpro .form_table input[type="tel"],
form#mailformpro .form_table input[type="date"],
form#mailformpro .form_table textarea,
form#mailformpro .form_table select{
	width: 100%;
	padding: .85em 1em;
	margin: 0;
	background-color: #fff;
	box-shadow: none;
}
form#mailformpro .form_table input[type="text"],
form#mailformpro .form_table input[type="email"],
form#mailformpro .form_table input[type="tel"],
form#mailformpro .form_table input[type="date"]{
	max-width: none;
}

form#mailformpro .form_table textarea{
	width: 100% !important;/* importantが必要 */
	height: 18.5em !important;/* importantが必要 */
}


@media screen and (max-width: 768px) {
	
	form#mailformpro{
		padding: 2rem 0 0;
	}
	form#mailformpro .form_table textarea{
		height: 15em !important;
	}

}

/* セレクトボックス
-------------------------------------------------------- */
select {
	-webkit-appearance: none;
	appearance: none; /* デフォルトの矢印を無効 */
	color: var(--font_color);
}
select:has(option:disabled:checked) {
	color: #808080;
}
select::-ms-expand {
	display: none;
}

.select_wrap{
	position: relative;
}
.select_wrap::after{
	content: "";
	display: block;
	width: .9em;
	height: .5em;
	background: url(../img/cmn/hd_nav_arrow.svg) no-repeat center/contain;
	position: absolute;
	right: 6%;
	top: calc(50% - .25em);
	pointer-events: none;
}

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

}

/* プライバシーポリシーに同意する
-------------------------------------------------------- */
#form_container .attention_wrapper{
	margin-bottom: 5.5rem;
}

#form_container .attention_wrapper .to_privacy{
	color: #0d68be;
}

#form_container .checkbox{
	display: block;
	font-weight: 500;
	padding-left: 1.5em;
	position: relative;
}

#form_container .checkbox::before{
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background-color: #f4f4f4;
	vertical-align: sub;
	border: #999 1px solid;
	border-radius: .2em;
	position: absolute;
	left: 0;
	top: .4em;
}

#form_container .checkbox::after{
	content: "";
	display: inline-block;
	width: .4em;
	height: .7em;
	border-right: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
	opacity: 0;
	transform: rotate(45deg);
	position: absolute;
	left: .3em;
	top: .5em;
	transition: .2s;
}

#form_container input[type="checkbox"]:checked + .checkbox::after, #form_container input[type="checkbox"]:checked + input + .checkbox::after{
	opacity: 1;
}

@media screen and (max-width: 768px) {
	#form_container .attention_wrapper{
		margin-bottom: 4rem;
	}
	#form_container .attention_wrapper .attention_mark{
		font-feature-settings: "palt";
	}

	#form_container .checkbox{
		margin-bottom: .33em;
	}

}

/* 送信ボタン
-------------------------------------------------------- */
#form_container .contact_btn_primary{
    max-width: 25em;
}

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

}
/* =====
	
======================================================== */


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

}

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


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

}






/************************************************************************
	プライバシーポリシー
**************************************************************************/
#privacy .lower_head{
	margin-bottom: max(-24rem, -10.5%);
}
#privacy_container{
	max-width: 90rem;
	width: 92%;
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	#privacy .lower_head{
		margin-bottom: 8%;
	}

	#privacy_container{
		width: 86.7%;/* 650/750 */
	}
}

/* =====
	各項
======================================================== */
.privacy_dl{
	counter-reset: privacy_num;
}

.privacy_dl .wrapper{
	counter-increment: privacy_num;
	margin-bottom: 7.5rem;
}
.privacy_dl .wrapper:nth-last-of-type(1){
	margin-bottom: 0;
}


.privacy_dl dt{
	font-size: 2.2rem;
	font-weight: 500;
	color: var(--blue);
	letter-spacing: .1em;
	padding-top: .25em;
	padding-left: 1.25em;
	margin-bottom: 1.2em;
	position: relative;
}
.privacy_dl dt::before {
    content: "";
    display: block;
    width: .8em;
    height: 2px;
    background-color: var(--blue);
    position: absolute;
    left: 0;
    top: 0;
}
.privacy_dl dt::after{
	content: counter(privacy_num)".";
	position: absolute;
	left: 0;
}

.parentheses-num_list{
	counter-reset: parentheses_num;
}
.parentheses-num_list > li{
	counter-increment: parentheses_num;
	line-height: 1.4;
	margin-bottom: .5em;
	padding-left: 1.8em;
	position: relative;
}
.parentheses-num_list > li::before{
	content: "("counter(parentheses_num)")";
	position: absolute;
	left: 0;
}

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

	.privacy_dl dt{
		font-size: 2rem;
		margin-bottom: .9em;
	}
	
}

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


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

}



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


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

}

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


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

}






/************************************************************************
	採用情報
**************************************************************************/
#recruit .lower_head{
	margin-bottom: max(-24rem, -11%);
}

@media screen and (max-width: 768px) {
	#recruit .lower_head{
		margin-bottom: 8%;
	}
}


/* =====
	募集しておりません
======================================================== */
#recruit_none .container{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	min-height: 20rem;
	padding: 2rem min(20rem, 22%);
	margin-inline: auto;
	background-color: #fff;
	position: relative;
}

#recruit_none .container .img{
	width: 18.4%;
	position: absolute;
	left: 5%;
	top: -10%;
}

@media screen and (max-width: 768px) {
	#recruit_none .container{
		min-height: 0;
		padding: 5.5rem 4% 5rem;
	}

	#recruit_none .container .img{
		width: 23%;
		position: absolute;
		left: 50%;
		top: auto;
		bottom: 80%;
		transform: translateX(-50%);
	}

}


/* =====
	メッセージ
======================================================== */
#recruit_message{
	margin-bottom: -4%;
}
#recruit_message .inner{
	margin-bottom: -11%;
	position: relative;
	z-index: 1;
	transform: translateZ(0);
}
#recruit_message .container{
	width: 111%;
	padding: 5.5rem 5.5%;
	margin-left: -5.5%;
	background-color: #fff;
}
#recruit_message .container .text{
	font-weight: 500;
	line-height: 1.97;/* 31.5/16 */
}

#recruit_message .resources_box{
	width: 92%;
	max-width: 60rem;
	padding: 6rem 2% 4rem;

	margin-inline: auto;
	background-color: #f0f0f0;
	position: relative;
}

#recruit_message .resources_box .title{
	font-size: 1.375em;/* 22/16 */
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	width: fit-content;
	padding: .4em .5em 1.2em .75em;
	background: url(../img/recruit/resources_bubble.png) no-repeat center/100% 100%;
	position: absolute;
	left: 50%;
	top: -1.5em;
	transform: translateX(-50%);
}


#recruit_message .resources_box .check_list{
	width: fit-content;
	margin-inline: auto;
}
#recruit_message .resources_box .check_list > li{
	font-size: 1.125em;/* 18/16 */
	font-weight: 500;
	line-height: 1.5;
	padding-left: 2em;
	margin-bottom: .75em;
	position: relative;
}
#recruit_message .resources_box .check_list > li:nth-last-of-type(1){
	margin-bottom: 0;
}
#recruit_message .resources_box .check_list > li::before{
	content: "";
	display: block;
	width: 1.33em;
	height: 1.33em;
	background: url(../img/recruit/resources_check.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: .15em;
}

#recruit_message .resources_box .speak_text{
	font-size: 1.375em;/* 22/16 */
	font-weight: 500;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#recruit_message{
		margin-bottom: 12%;
	}
	#recruit_message .inner{
		margin-bottom: 9%;
	}
	#recruit_message .container{
		width: 100%;
		padding: 0;
		margin-left: 0;
		background-color: transparent;
	}
	#recruit_message .container .font_wrap{
		width: 110%;
		padding: 3.25rem 5% 2rem;
		margin-left: -5%;
		margin-bottom: 3rem;
		background-color: #fff;
	}

	#recruit_message .container .text{
		line-height: 1.75;/* 49/28 */
	}

	#recruit_message .resources_box{
		width: 104%;
		max-width: none;
		margin-left: -2%;
		padding: 4rem 2% 2rem;
		background-color: transparent;
	}

	#recruit_message .resources_box .title{
		font-size: 1.2em;
	}

	#recruit_message .resources_box .check_list > li{
		font-size: 1em;
	}

	#recruit_message .resources_box .speak_text{
		font-size: 1.2em;
	}
}
/* 波
-------------------------------------------------------- */
/* 波のz-index調整 */
#recruit_message .wave_container .gray_img{
	position: relative;
	z-index: -1;
	transform: translateZ(0);
}
#recruit_message .wave_container .wave_img{
	z-index: -1;
	transform: translateZ(0);
}
#recruit_message .wave_container .supple{
	z-index: 1;
	transform: translateZ(0);
}


.arrival #message_wave .gray_img{
	transition-delay: 1.4s;
	
}

#message_wave .blue_img{
	-webkit-filter: drop-shadow(0 5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
    -moz-filter: drop-shadow(0 5em .5em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
	filter: drop-shadow(0 5em .5em rgba(0,0,0,0.1));
}

#recruit_message .mask_path{
	transform: translate(-5%, -15%);
}
#message_wave_mask_path{
	stroke-width: 220;
	stroke-dasharray: 2550.9px;
}
.arrival #message_wave_mask_path{
	animation: message_wave 1.8s linear forwards;
}

@keyframes message_wave {
	0% {
		stroke-width: 100;
		stroke-dashoffset: 2550.9px;
	}
	75% {
		stroke-width: 220;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

#message_wave .supple01{
	width: 11.7rem;
	bottom: 36%;
	left: 20%;
}
@media screen and (max-width: 1024px) {
	#recruit_message .lower_wave_inner{
		bottom: calc(-5.75 * var(--js_vw));/* 少し下へ　-92/1600 */
	}

	#message_wave{
		width: 150%;
		margin-left: -25%;
	}
}

@media screen and (max-width: 768px) {
	#recruit_message .lower_wave_inner{
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
	}

	.arrival #message_wave_sp .gray_img{
		transition-delay: .8s;
	}

	#message_wave_sp .blue_img{
		-webkit-filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1)); /* 古いバージョンのChromeとSafariに対応時に指定 */
		-moz-filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1)); /* 古いバージョンのFoxに対応時に指定 */
		filter: drop-shadow(0 2em .25em rgba(0,0,0,0.1));
	}

	#message_wave_sp_mask_path{
		stroke-width: 170;
		stroke-dasharray: 1200.6px;
	}
	.arrival #message_wave_sp_mask_path{
		animation: message_wave_sp 1.2s linear forwards;
	}

	@keyframes message_wave_sp {
		0% {
			stroke-width: 40;
			stroke-dashoffset: 1200.6px;
		}
		100% {
			stroke-width: 170;
			stroke-dashoffset: 0;
		}
	}

	#message_wave_sp .supple01{
		width: 16%;
		bottom: 20%;
		left: 17%;/* ちょっと右 */
	}

}


/* =====
	募集要項
======================================================== */
#job_description .tbl_primary{
	line-height: 1.96875;
}

@media screen and (max-width: 768px) {
	#job_description .tbl_primary,
	#job_description .tbl_primary tbody,
	#job_description .tbl_primary tr,
	#job_description .tbl_primary th,
	#job_description .tbl_primary td{
		width: 100%;
		display: block;
		line-height: 1.75;
	}
	#job_description .tbl_primary{
		width: 108%;
	}
	#job_description .tbl_primary th{
		font-size: 1.6rem;
		padding: 1.25em 3% .5em;
	}
	#job_description .tbl_primary td{
		padding: .5em 3% 1.25em;
	}
}

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


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

}
