@charset "utf-8";

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

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

Zen Maru Gothic
font-family: "Zen Maru Gothic", sans-serif;
font-weight: 500;
font-style: normal;

*/

/* 変数 */
:root {
	/* 色 */
	--font_color: #4f3b17;
	--pink: #ee869a;
	--deep_pink: #e9537d;
	--orange: #f2a222;
	--green: #80bc22;
	--deep_green: #329e60;
	--thin_green: #c4c405;
	--bg_pink: #fcf5f5;

	--link_blue: #2271b1;/* 一般的なデフォルトのリンクテキストの色 */

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

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

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

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

/* =====
	base
======================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol, summary{
	list-style-type: none;
}
summary::-webkit-details-marker {
	/* Safari-デフォルトの三角形を削除*/
	display: none;
}
table {
	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;
	word-break: break-all;
	text-decoration: none;
	transition: .4s;
}
button{
	display: block;
	color: var(--font_color);
	padding: 0;
	background-color: transparent;
	transition: .4s;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-o-appearance: none;/*Opera対応*/
	-webkit-appearance: none;/*Google Chrome/Safari対応*/
	-moz-appearance: none;/*Firefox対応*/
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
input::-webkit-calendar-picker-indicator {/* datalistタグの矢印 （たぶん消えない） */
	display: none; /* iOS対策 */
    appearance: none; /* SafariやChrome用 */
    -webkit-appearance: none; /* Safari用 */
    opacity: 0; /* 念のため */
    pointer-events: none; /* 矢印がクリックできないようにする */
}
input::-webkit-list-button{/* datalistタグの矢印iOS（これで消える） */
	content: none;
}

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

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

input::placeholder{
	color: #b3b3b3;
}


/************************************************************************
	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の代わり */
	}
}

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

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

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


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

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

.fz80{
	font-size: 8rem;
}

.fz108{
	font-size: 10.8rem;
}

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

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

	.fz80{
		font-size: 5.28rem;
	}

	.fz108{
		font-size: 7.12rem;
	}

	.fz12sp{
		font-size: 1.2rem;
	}
	.fz13sp{
		font-size: 1.3rem;
	}
	.fz14sp{
		font-size: 1.4rem;
	}
	.fz15sp{
		font-size: 1.5rem;
	}
	.fz16sp{
		font-size: 1.6rem;
	}
	.fz18sp{
		font-size: 1.8rem;
	}
	.fz20sp{
		font-size: 2rem;
	}
	.fz21sp{
		font-size: 2.1rem;
	}
	.fz22sp{
		font-size: 2.2rem;
	}
	.fz24sp{
		font-size: 2.4rem;
	}
	.fz25sp{
		font-size: 2.5rem;
	}
	.fz28sp{
		font-size: 2.8rem;
	}
	.fz30sp{
		font-size: 3rem;
	}

	.fz84sp{
		font-size: 8.4rem;
	}
}


/* =====
	文字色
======================================================== */
.pink{ color: var(--pink);}
.deep_pink{ color: var(--deep_pink);}

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

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

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

@media screen and (min-width: 769px) {
	.u_trance[href*="tel:"] {
		text-decoration: none;
	}
}
/* =====
	並び 間隔
======================================================== */
.tal { text-align: left; }
.tac, .tac_pc { text-align: center; }
.tar, .tar_pc { text-align: right; }
.taj{ text-align: justify;}

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

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

@media screen and (max-width: 768px) {
	.tac_pc { text-align: left; }
	.tar_pc { text-align: left; }
	.lh14sp{ line-height: 1.4; }
	.lh15sp{ line-height: 1.5; }
	.lh175sp{ line-height: 1.75; }
	.lh1875sp{ line-height: 1.875; }
	.lh2sp{ line-height: 2; }
	.lh225sp{ line-height: 2.25; }
}

/* =====
	文字関係その他
======================================================== */
.v-rl{
	writing-mode: vertical-rl;
}
.upright{
	text-orientation: upright;
}

.indent{
	text-indent: 1em;
}
span.indent{
	display: inline-block;
}

.palt{
	font-feature-settings: "palt";
}

.capitalize{
	text-transform: capitalize;
}
.no_capitalize{
	text-transform: none;
}
.uppercase{
	text-transform: uppercase;
}

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

.marker{
	background:linear-gradient(transparent 75%, #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{
	line-height: 1.5;
	padding-left: 1.33em;
	position: relative;
}
.disc > li:not(:nth-last-of-type(1)){
	margin-bottom: .4em;
}
.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.33em;
	position: relative;
}
.circle > li:not(:nth-last-of-type(1)){
	margin-bottom: .4em;
}
.circle > li::before, .circle-mark::before{
	content: "";
	display: block;
	width: .625em;
	height: .625em;
	background-color: #0079c2;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: .3em;
}

/* 「1.」 */

/* counter-increment
------------------------------------ */
.num_list{
	counter-reset: num-list;
}

.num_list > li{
	counter-increment: num-list;
	position: relative;
}
.num_list > li::before{
	content: counter(num-list)".";
	display: inline-block;
	margin-right: .5em;
}

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

}


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

.inner.secondary{
	max-width: 1200px;
	width: 92%;
}

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

/* =====
	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_hover_pink:hover{
	color: var(--deep_pink);
}

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


.link_primary{
	color: var(--deep_pink);
	text-decoration: underline;
	transition: .4s;
}
.link_primary:hover{
	color: var(--font_color);
	text-decoration: none;
}

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


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

/************************************************************************
	タイトル
**************************************************************************/
/* =====
	セクションタイトル
======================================================== */
.section_title{
	font-size: 3.2rem;
	line-height: 1.5;
	text-align: center;
}

.section_title .sub{
	font-size: .75em;/* 24/32 */
	color: var(--pink);
	line-height: 1.25;
	text-transform: capitalize;
}

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

	.section_title .sub{
		font-size: .833em;/* 20/24 */
		line-height: 1.1;
	}
}

/* =====
	飾り付きタイトル（アンケート結果ページなど）
======================================================== */
.border_left_title{
	font-size: 2.4rem;
	line-height: 1.5;
	padding: .4em .5em .4em .75em;
	border-left: .33em solid var(--pink);
	background-color: #f7f7f7;
}

.border_left_title02{
	font-size: 2rem;
	line-height: 1.5;
	padding: 0 0 0 .6em;
	border-left: .2em solid var(--pink);
}

.circle_left_title{
	font-size: 2rem;
	line-height: 1.5;
	padding-left: 1em;
	position: relative;
}
.circle_left_title::before{
	content: "";
	display: block;
	width: .4em;
	height: .4em;
	border-radius: 50%;
	background-color: var(--deep_pink);
	position: absolute;
	left: 0;
	top: .6em;
}

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

	.border_left_title02{
		font-size: 1.8rem;
	}

	.circle_left_title{
		font-size: 1.6rem;
	}
}

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

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

/* =====
	リスト上の付箋のようなタイトル
======================================================== */
.tag_title{
	--tag_color: var(--orange);
	font-size: 1.8rem;
	color: #fff;
	text-align: center;
	width: fit-content;
	min-width: 30rem;
	padding: .9em;
	margin: 0 auto;
	border-radius: 2.4rem 2.4rem 0 0;
	background-color: var(--tag_color);
}
#general .tag_title{ --tag_color: var(--orange);}

.tag_title.tag_green{
	--tag_color: var(--green);
}
#professionals .tag_title{ --tag_color: var(--green);}

@media screen and (max-width: 768px) {
	.tag_title{
		font-size: 1.6rem;
		min-width: 18rem;
		padding: .66em;
		border-radius: 1.8rem 1.8rem 0 0;
	}
}


/************************************************************************
	ボタン
**************************************************************************/
/* =====
	矢印付きボタン（「一覧をみる→」　など）
======================================================== */
.btn_with_arrow{
	display: block;
	width: fit-content;
	padding: .5em 3.5em .5em 0;
	position: relative;
}
.btn_with_arrow:hover{
	color: var(--deep_pink);
}

.btn_with_arrow .circle{
	display: block;
	width: 2.5em;/* 40/16 */
	height: 2.5em;
	border-radius: 50%;
	background-color: var(--pink);
	overflow: hidden;
	position: absolute;
	right: 0;
	top: calc(50% - 1.25em);
	transition: transform .4s, background-color .4s;
}
.btn_with_arrow:hover .circle{
	background-color: var(--deep_pink);
	transform: scale(1.1);
}
.btn_with_arrow .circle::before,
.btn_with_arrow .circle::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	margin: auto;
	background: url(../img/cmn/arrow_white.svg) no-repeat center/40%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: transform .4s;
}
.btn_with_arrow .circle::after{
	transform: translateX(-110%);
}
.btn_with_arrow:hover .circle::before{
	transform: translateX(110%);
}
.btn_with_arrow:hover .circle::after{
	transform: translateX(0);
}


@media screen and (max-width: 768px) {
	.btn_with_arrow .circle{
		width: 2.86em;/* 40/14 */
		height: 2.86em;
		top: calc(50% - 1.43em);
	}
	.btn_with_arrow .circle::before,
	.btn_with_arrow .circle::after{
		width: 2.86em;
		height: 2.86em;
	}
}

/* =====
	戻るボタン（検索結果ページ冒頭など）
======================================================== */
.back_btn{
	display: block;
	color: #fff;
	width: fit-content;
	padding: .66em 1.75em .66em 3.25em;
	border-radius: 5em;
	background-color: var(--pink);
	position: relative;
}
.back_btn:hover{
	background-color: var(--deep_pink);
}

.back_btn::before{
	content: "";
	display: block;
	width: 1.25em;
	height: 1em;
	background: url(../img/cmn/icon_back.svg) no-repeat center/contain;
	position: absolute;
	left: 1.5em;
	top: calc(50% - .5em);
}

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

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


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

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


/************************************************************************
	アニメーション
**************************************************************************/
/* =====
	フェードイン
======================================================== */
.fade, .fade-down, .fade-right, .fade-left{
	opacity: 0;
}

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

.animation.fade-down{/* 上から下へ */
	animation: fade-down .8s ease forwards;
}
.animation.fade-right{/* 左から右へ */
	animation: fade-right .8s ease forwards;
}
.animation.fade-left{/* 右から左へ */
	animation: fade-left .8s ease forwards;
}

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

.animation.few.fade-down{/* 上から下へ */
	animation: fade-down_few .8s ease forwards;
}
.animation.few.fade-right{/* 左から右へ */
	animation: fade-right_few .8s ease forwards;
}
.animation.few.fade-left{/* 右から左へ */
	animation: fade-left_few .8s ease forwards;
}
	
@keyframes fade-up{
	from {
		opacity: 0;
		transform: translateY(2em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fade-down{
	from {
		opacity: 0;
		transform: translateY(-2em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fade-right{
	from {
		opacity: 0;
		transform: translateX(-2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fade-left{
	from {
		opacity: 0;
		transform: translateX(2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
	
@keyframes fade-up_few{
	from {
		opacity: 0;
		transform: translateY(.75em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fade-down_few{
	from {
		opacity: 0;
		transform: translateY(-.75em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fade-right_few{
	from {
		opacity: 0;
		transform: translateX(-.75em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fade-left_few{
	from {
		opacity: 0;
		transform: translateX(.75em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* =====
	スライドイン
======================================================== */
.slide-left{
	transform: translateX(-200vw);
}
.animation.slide-left{
	animation: slide-left 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: slide-right 1s ease forwards;
}
.animation.slide-right.fast{
	animation-duration: .6s;
}
.animation.slide-right.slow{
	animation-duration: 1.5s;
}

/* 
<p class="js-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: slide-up 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: slide-down 1s ease forwards;
}
.animation.slide-down.fast .slide_child{
	animation-duration: .6s;
}
.animation.slide-down.slow .slide_child{
	animation-duration: 1.5s;
}

@keyframes slide-left{
	from {
		transform: translateX(-200vw);
	}
	
	to {
		transform: translateX(0);
	}
}
@keyframes slide-right{
	from {
		transform: translateX(200vw);
	}
	
	to {
		transform: translateX(0);
	}
}
@keyframes slide-up{
	from {
		transform: translateY(200vh);
	}
	
	to {
		transform: translateY(0);
	}
}
@keyframes slide-down{
	from {
		transform: translateY(-200vw);
	}
	
	to {
		transform: translateY(0);
	}
}

/* =====
	黒背景スライドしてから本来の要素がスライド
======================================================== */
.black-slide,
.black-slide_wrap{
	position: relative;
}
.black-slide_wrap.fit{
	width: fit-content;
}
.black-slide::after,
.black-slide_wrap::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 0;
	background-color: #000;
}

.black-slide.both::after,
.black-slide_wrap.both::after{/* 両方向から用 */
	top: auto;
	height: 60%;
}
.black-slide.both::before,
.black-slide_wrap::before{/* 両方向から用 */
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 0;
	height: 60%;
	background-color: #000;
	z-index: 2;
}

.animation.black-slide::after,
.animation.black-slide_wrap::after{
	animation: black-slide 1.2s ease-in-out forwards;
}
.animation.black-slide.reverse::after,
.animation.black-slide_wrap.reverse::after{
	animation: black-slide_reverse 1.2s ease-in-out forwards;
}
.animation.black-slide.both::before,
.animation.black-slide_wrap.both::before{/* 両方向から用 */
	animation: black-slide 1.2s ease-in-out forwards;
}
.animation.black-slide.both::after,
.animation.black-slide_wrap.both::after{/* 両方向から用 */
	animation: black-slide_reverse 1.2s ease-in-out forwards;
}

.black-slide > *,
.black-slide_wrap > *{
	opacity: 0;
}
.animation.black-slide > *,
.animation.black-slide_wrap > *{
	animation: black_fade 1.2s ease forwards;
}

.black-slide.animation.delay01::after,
.black-slide_wrap.animation.delay01::after,
.black-slide.both.animation.delay01::before,
.black-slide_wrap.animation.delay01::before,
.black-slide.animation.delay01 > *,
.black-slide_wrap.animation.delay01 > *{
	animation-delay: .1s !important;
}
.black-slide.animation.delay02::after,
.black-slide_wrap.animation.delay02::after,
.black-slide.both.animation.delay02::before,
.black-slide_wrap.animation.delay02::before,
.black-slide.animation.delay02 > *,
.black-slide_wrap.animation.delay02 > *{
	animation-delay: .2s !important;
}
.black-slide.animation.delay03::after,
.black-slide_wrap.animation.delay03::after,
.black-slide.both.animation.delay03::before,
.black-slide_wrap.animation.delay03::before,
.black-slide.animation.delay03 > *,
.black-slide_wrap.animation.delay03 > *{
	animation-delay: .3s !important;
}
.black-slide.animation.delay04::after,
.black-slide_wrap.animation.delay04::after,
.black-slide.both.animation.delay04::before,
.black-slide_wrap.animation.delay04::before,
.black-slide.animation.delay04 > *,
.black-slide_wrap.animation.delay04 > *{
	animation-delay: .4s !important;
}
.black-slide.animation.delay05::after,
.black-slide_wrap.animation.delay05::after,
.black-slide.both.animation.delay05::before,
.black-slide_wrap.animation.delay05::before,
.black-slide.animation.delay05 > *,
.black-slide_wrap.animation.delay05 > *{
	animation-delay: .5s !important;
}
.black-slide.animation.delay06::after,
.black-slide_wrap.animation.delay06::after,
.black-slide.both.animation.delay06::before,
.black-slide_wrap.animation.delay06::before,
.black-slide.animation.delay06 > *,
.black-slide_wrap.animation.delay06 > *{
	animation-delay: .6s !important;
}
.black-slide.animation.delay07::after,
.black-slide_wrap.animation.delay07::after,
.black-slide.both.animation.delay07::before,
.black-slide_wrap.animation.delay07::before,
.black-slide.animation.delay07 > *,
.black-slide_wrap.animation.delay07 > *{
	animation-delay: .7s !important;
}
.black-slide.animation.delay08::after,
.black-slide_wrap.animation.delay08::after,
.black-slide.both.animation.delay08::before,
.black-slide_wrap.animation.delay08::before,
.black-slide.animation.delay08 > *,
.black-slide_wrap.animation.delay08 > *{
	animation-delay: .8s !important;
}
.black-slide.animation.delay09::after,
.black-slide_wrap.animation.delay09::after,
.black-slide.both.animation.delay09::before,
.black-slide_wrap.animation.delay09::before,
.black-slide.animation.delay09 > *,
.black-slide_wrap.animation.delay09 > *{
	animation-delay: .9s !important;
}
.black-slide.animation.delay10::after,
.black-slide_wrap.animation.delay10::after,
.black-slide.both.animation.delay10::before,
.black-slide_wrap.animation.delay10::before,
.black-slide.animation.delay10 > *,
.black-slide_wrap.animation.delay10 > *{
	animation-delay: 1s !important;
}
.black-slide.animation.delay11::after,
.black-slide_wrap.animation.delay11::after,
.black-slide.both.animation.delay11::before,
.black-slide_wrap.animation.delay11::before,
.black-slide.animation.delay11 > *,
.black-slide_wrap.animation.delay11 > *{
	animation-delay: 1.1s !important;
}
.black-slide.animation.delay12::after,
.black-slide_wrap.animation.delay12::after,
.black-slide.both.animation.delay12::before,
.black-slide_wrap.animation.delay12::before,
.black-slide.animation.delay12 > *,
.black-slide_wrap.animation.delay12 > *{
	animation-delay: 1.2s !important;
}
.black-slide.animation.delay13::after,
.black-slide_wrap.animation.delay13::after,
.black-slide.both.animation.delay13::before,
.black-slide_wrap.animation.delay13::before,
.black-slide.animation.delay13 > *,
.black-slide_wrap.animation.delay13 > *{
	animation-delay: 1.3s !important;
}
.black-slide.animation.delay14::after,
.black-slide_wrap.animation.delay14::after,
.black-slide.both.animation.delay14::before,
.black-slide_wrap.animation.delay14::before,
.black-slide.animation.delay14 > *,
.black-slide_wrap.animation.delay14 > *{
	animation-delay: 1.4s !important;
}
.black-slide.animation.delay15::after,
.black-slide_wrap.animation.delay15::after,
.black-slide.both.animation.delay15::before,
.black-slide_wrap.animation.delay15::before,
.black-slide.animation.delay15 > *,
.black-slide_wrap.animation.delay15 > *{
	animation-delay: 1.5s !important;
}
.black-slide.animation.delay16::after,
.black-slide_wrap.animation.delay16::after,
.black-slide.both.animation.delay16::before,
.black-slide_wrap.animation.delay16::before,
.black-slide.animation.delay16 > *,
.black-slide_wrap.animation.delay16 > *{
	animation-delay: 1.6s !important;
}
.black-slide.animation.delay17::after,
.black-slide_wrap.animation.delay17::after,
.black-slide.both.animation.delay17::before,
.black-slide_wrap.animation.delay17::before,
.black-slide.animation.delay17 > *,
.black-slide_wrap.animation.delay17 > *{
	animation-delay: 1.7s !important;
}
.black-slide.animation.delay18::after,
.black-slide_wrap.animation.delay18::after,
.black-slide.both.animation.delay18::before,
.black-slide_wrap.animation.delay18::before,
.black-slide.animation.delay18 > *,
.black-slide_wrap.animation.delay18 > *{
	animation-delay: 1.8s !important;
}
.black-slide.animation.delay19::after,
.black-slide_wrap.animation.delay19::after,
.black-slide.both.animation.delay19::before,
.black-slide_wrap.animation.delay19::before,
.black-slide.animation.delay19 > *,
.black-slide_wrap.animation.delay19 > *{
	animation-delay: 1.9s !important;
}
.black-slide.animation.delay20::after,
.black-slide_wrap.animation.delay20::after,
.black-slide.both.animation.delay20::before,
.black-slide_wrap.animation.delay20::before,
.black-slide.animation.delay20 > *,
.black-slide_wrap.animation.delay20 > *{
	animation-delay: 2s !important;
}
.black-slide.animation.delay21::after,
.black-slide_wrap.animation.delay21::after,
.black-slide.both.animation.delay21::before,
.black-slide_wrap.animation.delay21::before,
.black-slide.animation.delay21 > *,
.black-slide_wrap.animation.delay21 > *{
	animation-delay: 2.1s !important;
}
.black-slide.animation.delay22::after,
.black-slide_wrap.animation.delay22::after,
.black-slide.both.animation.delay22::before,
.black-slide_wrap.animation.delay22::before,
.black-slide.animation.delay22 > *,
.black-slide_wrap.animation.delay22 > *{
	animation-delay: 2.2s !important;
}
.black-slide.animation.delay23::after,
.black-slide_wrap.animation.delay23::after,
.black-slide.both.animation.delay23::before,
.black-slide_wrap.animation.delay23::before,
.black-slide.animation.delay23 > *,
.black-slide_wrap.animation.delay23 > *{
	animation-delay: 2.3s !important;
}
.black-slide.animation.delay24::after,
.black-slide_wrap.animation.delay24::after,
.black-slide.both.animation.delay24::before,
.black-slide_wrap.animation.delay24::before,
.black-slide.animation.delay24 > *,
.black-slide_wrap.animation.delay24 > *{
	animation-delay: 2.4s !important;
}
.black-slide.animation.delay25::after,
.black-slide_wrap.animation.delay25::after,
.black-slide.both.animation.delay25::before,
.black-slide_wrap.animation.delay25::before,
.black-slide.animation.delay25 > *,
.black-slide_wrap.animation.delay25 > *{
	animation-delay: 2.5s !important;
}
.black-slide.animation.delay26::after,
.black-slide_wrap.animation.delay26::after,
.black-slide.both.animation.delay26::before,
.black-slide_wrap.animation.delay26::before,
.black-slide.animation.delay26 > *,
.black-slide_wrap.animation.delay26 > *{
	animation-delay: 2.6s !important;
}
.black-slide.animation.delay27::after,
.black-slide_wrap.animation.delay27::after,
.black-slide.both.animation.delay27::before,
.black-slide_wrap.animation.delay27::before,
.black-slide.animation.delay27 > *,
.black-slide_wrap.animation.delay27 > *{
	animation-delay: 2.7s !important;
}
.black-slide.animation.delay28::after,
.black-slide_wrap.animation.delay28::after,
.black-slide.both.animation.delay28::before,
.black-slide_wrap.animation.delay28::before,
.black-slide.animation.delay28 > *,
.black-slide_wrap.animation.delay28 > *{
	animation-delay: 2.8s !important;
}
.black-slide.animation.delay29::after,
.black-slide_wrap.animation.delay29::after,
.black-slide.both.animation.delay29::before,
.black-slide_wrap.animation.delay29::before,
.black-slide.animation.delay29 > *,
.black-slide_wrap.animation.delay29 > *{
	animation-delay: 2.9s !important;
}
.black-slide.animation.delay30::after,
.black-slide_wrap.animation.delay30::after,
.black-slide.both.animation.delay30::before,
.black-slide_wrap.animation.delay30::before,
.black-slide.animation.delay30 > *,
.black-slide_wrap.animation.delay30 > *{
	animation-delay: 3s !important;
}
.black-slide.animation.delay31::after,
.black-slide_wrap.animation.delay31::after,
.black-slide.both.animation.delay31::before,
.black-slide_wrap.animation.delay31::before,
.black-slide.animation.delay31 > *,
.black-slide_wrap.animation.delay31 > *{
	animation-delay: 3.1s !important;
}
.black-slide.animation.delay32::after,
.black-slide_wrap.animation.delay32::after,
.black-slide.both.animation.delay32::before,
.black-slide_wrap.animation.delay32::before,
.black-slide.animation.delay32 > *,
.black-slide_wrap.animation.delay32 > *{
	animation-delay: 3.2s !important;
}
.black-slide.animation.delay33::after,
.black-slide_wrap.animation.delay33::after,
.black-slide.both.animation.delay33::before,
.black-slide_wrap.animation.delay33::before,
.black-slide.animation.delay33 > *,
.black-slide_wrap.animation.delay33 > *{
	animation-delay: 3.3s !important;
}
.black-slide.animation.delay34::after,
.black-slide_wrap.animation.delay34::after,
.black-slide.both.animation.delay34::before,
.black-slide_wrap.animation.delay34::before,
.black-slide.animation.delay34 > *,
.black-slide_wrap.animation.delay34 > *{
	animation-delay: 3.4s !important;
}
.black-slide.animation.delay35::after,
.black-slide_wrap.animation.delay35::after,
.black-slide.both.animation.delay35::before,
.black-slide_wrap.animation.delay35::before,
.black-slide.animation.delay35 > *,
.black-slide_wrap.animation.delay35 > *{
	animation-delay: 3.5s !important;
}
.black-slide.animation.delay36::after,
.black-slide_wrap.animation.delay36::after,
.black-slide.both.animation.delay36::before,
.black-slide_wrap.animation.delay36::before,
.black-slide.animation.delay36 > *,
.black-slide_wrap.animation.delay36 > *{
	animation-delay: 3.6s !important;
}
.black-slide.animation.delay37::after,
.black-slide_wrap.animation.delay37::after,
.black-slide.both.animation.delay37::before,
.black-slide_wrap.animation.delay37::before,
.black-slide.animation.delay37 > *,
.black-slide_wrap.animation.delay37 > *{
	animation-delay: 3.7s !important;
}
.black-slide.animation.delay38::after,
.black-slide_wrap.animation.delay38::after,
.black-slide.both.animation.delay38::before,
.black-slide_wrap.animation.delay38::before,
.black-slide.animation.delay38 > *,
.black-slide_wrap.animation.delay38 > *{
	animation-delay: 3.8s !important;
}
.black-slide.animation.delay39::after,
.black-slide_wrap.animation.delay39::after,
.black-slide.both.animation.delay39::before,
.black-slide_wrap.animation.delay39::before,
.black-slide.animation.delay39 > *,
.black-slide_wrap.animation.delay39 > *{
	animation-delay: 3.9s !important;
}
.black-slide.animation.delay40::after,
.black-slide_wrap.animation.delay40::after,
.black-slide.both.animation.delay40::before,
.black-slide_wrap.animation.delay40::before,
.black-slide.animation.delay40 > *,
.black-slide_wrap.animation.delay40 > *{
	animation-delay: 4s !important;
}


@keyframes black_fade{
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	51% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
@keyframes black-slide{
	0% {
		left: 0;
		width: 0;
	}

	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@keyframes black-slide_reverse{
	0% {
		left: 100%;
		width: 0;
	}

	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 0;
		width: 0;
	}
}

/* =====
	clip-path
======================================================== */
.clip{
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	transition: -webkit-clip-path 1s ease-out, clip-path 1s ease-out;
}
.clip.fast{
	transition-duration: .6s;
}
.clip.late{
	transition-duration: 1.5s;
}
.clip.left{
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
}
.clip.down{
	-webkit-clip-path: inset(0 0 100% 0);
	clip-path: inset(0 0 100% 0);
}
.clip.up{
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

.clip.animation{
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}

/* =====
	回転
======================================================== */
.rotate{
	animation:6s linear infinite rotate;
}

@keyframes rotate{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}

/* =====
	文字出現アニメーション (.delay非対応)
======================================================== */
/* 
<h1 class="appearance_text"><span class="in_text">サービス</span></h1>
*/
.appearance_text{
	color: var(--font_color);
	width: fit-content;
	overflow: hidden;
	position: relative;
}
.appearance_text.animation{
	--skewX: 0deg;
	--cover-x: 101%;
	--x: 0;
}

.appearance_text::before,
.appearance_text::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 5em;
	transform: translateX(var(--cover-x, -101%));
	transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.appearance_text::before{
	background-color: #fff;
}
.appearance_text::after{
	background-color: var(--font_color);
	transition-delay: 0.16s;
}

.appearance_text .in_text,
.appearance_text .in_text{
	display: inline-block;
	transform: translateX(var(--x, -110%)) skewX(var(--skewX, 8deg));
	transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.3s;
}

/* =====
	アニメーション時間差
======================================================== */
.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.delay40{
	animation-delay: 4s !important;
}
.animation.clip.delay40{
	transition-delay: 4s !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;
	}
	.animation.delay40sp{
		animation-delay: 4s !important;
	}
	.animation.clip.delay40sp{
		transition-delay: 4s !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_pink);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

#loader .logo{
	font-family: var(--noto);
	font-size: 2rem;
	text-align: center;
	width: fit-content;
	margin: auto;
	position: relative;
	animation: loader_logo 1s ease .7s forwards;
	opacity: 0;
	transform: translateY(1em);
}

#loader .logo .main{
	font-size: 1.286em;/* 18/14 */
	letter-spacing: .1em;
}
#loader .logo .sub{
	color: var(--pink);
}

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

@media screen and (max-width: 768px) {
	#loader .logo{
		font-size: 1.4rem;
	}
}

/************************************************************************
	ページ全体
**************************************************************************/
main{
	padding-top: 9.7rem;
}

@media screen and (max-width: 1400px) {
	main{
		padding-top: 9.2rem;
	}
}

@media screen and (max-width: 1110px) {
	main{
		padding-top: 9.9rem;
	}
}

@media screen and (max-width: 768px) {
	main{
		padding-top: 7rem;
	}
}

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


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

}

/* ---

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


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

}


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


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

}

/* ---

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


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

}


/************************************************************************
	ヘッダー
**************************************************************************/
header{
	display: flex;
	align-items: center;
	width: 100%;
	padding: 2.5rem 1.1%;
	background-color: #fff;
	position: fixed;
	top: 0;
	z-index: 50;
	transition: padding .4s, transform .6s;
}

.is_scroll header{
	padding: 1rem 1.1%;
}

header .hd_logo{
	flex-shrink: 0;
	display: block;
	font-family: var(--noto);
	font-size: 1.8rem;
	line-height: 1.5;
	width: fit-content;
	margin-left: 2%;
	margin-right: auto;
}

header .hd_logo:hover{
	opacity: .7;
}

header .hd_logo .main,
header .hd_logo .sub{
	display: block;
}
header .hd_logo .main{
	letter-spacing: .1em;
}
header .hd_logo .sub{
	font-size: .778em;/* 14/18 */
	color: var(--pink);
}

@media screen and (max-width: 1400px) {
	header .hd_logo{
		font-size: 1.6rem;
		margin-left: 1.5%;
	}
}

@media screen and (max-width: 1110px) {
	header{
		padding: 2rem 1.1%;
	}
	.is_scroll header{
		padding: 1rem 1.1%;
	}

	header .hd_logo{
		font-size: 1.8rem;
		margin-left: 2%;
	}
}

@media screen and (max-width: 768px) {
	header{
		padding: 1rem 3%;
	}
	.is_scroll header{
		padding: 1rem 3%;
		transform: translateY(-102%);
	}
	.is_up header,
	.hmb_open header{
		transform: translateY(0);
	}

	header .hd_logo{
		font-size: 1.4rem;
		margin-left: 0;
	}
	header .hd_logo .sub{
		font-size: .857em;/* 12/14 */
	}
}


/* =====
	ナビ
======================================================== */
#hd_nav{
	-webkit-box-flex:1;
	flex-grow:1;
	margin-right: 1.75%;
}
#hd_nav > ul{
	display: flex;
	justify-content: flex-end;
}
#hd_nav li{
	margin-left: .5em;
}
#hd_nav a{
	display: block;
	padding: .5em .9em;
	position: relative;
}
#hd_nav a:hover{
	color: var(--deep_pink);
}
#hd_nav a::before{
	pointer-events: none;
	content: "";
	display: block;
	width: .1em;
	height: .1em;
	border-radius: 50%;
	background-color: var(--deep_pink);
	position: absolute;
	top: 50%;
	left: calc(50% - 1.25em);
	opacity: 0;
	transition: .4s;
}
#hd_nav a:hover::before{
	width: .5em;
	height: .5em;
	top: 0;
	left: calc(50% - .25em);
	opacity: 1;
}

@media screen and (max-width: 1400px) {
	#hd_nav{
		font-size: 1.5rem;
		margin-right: 1.5%;
	}
	#hd_nav li{
		margin-left: .3em;
	}
	#hd_nav a{
		padding: .5em .5em;
	}
}

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

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



/* =====
	ハンバーガー
======================================================== */
#hmb{
	cursor: pointer;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	border-radius: 1rem;
	background-color: var(--pink);
	transition: .4s;
	position: relative;
}
#hmb:hover{
	background-color: var(--deep_pink);
}

.hmb_bar{
	width: 40%;/* 24/60 */
	height: 1.7rem;
	margin: auto auto .5rem;
	position: relative;
}

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

.hmb_bar span:nth-of-type(1){
	top: 0;
}
.hmb_bar span:nth-of-type(2){
	top: calc(50% - 1px);
}
.hmb_bar span:nth-of-type(3){
	bottom: 0;
}

.hmb_open .hmb_bar span:nth-of-type(1){
	top: calc(50% - 1px);
	transform: rotate(-45deg);
}
.hmb_open .hmb_bar span:nth-of-type(2){
	opacity: 0;
}
.hmb_open .hmb_bar span:nth-of-type(3){
	width: 100%;
	bottom: calc(50% - 1px);
	transform: rotate(45deg);
}

#hmb .hmb_text{
	color: #fff;
	text-align: center;
	line-height: 1;
	text-transform: capitalize;
	margin: 0 auto auto;
}
#hmb .hmb_text::before{
	content: "menu";
}
.hmb_open #hmb .hmb_text::before{
	content: "close";
}

@media screen and (max-width: 768px) {
	#hmb{
		width: 5rem;
		height: 5rem;
		border-radius: 1rem;
	}

	.hmb_bar{
		height: 1.4rem;
	}

	#hmb .hmb_text{
		font-size: 1.2rem;
	}
}

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




/************************************************************************
	グローバル
**************************************************************************/
#global{
	pointer-events: none;
	display: -webkit-box;
	display: flex;
	color: #fff;
	width: 100%;
	min-height: 100dvh;
	height: 100%;
	padding: 9.7rem 0 5rem;
	background-color: rgba(79,59,23,.4);
	position: fixed;
	right: -5%;
	top: 0;
	z-index: 40;
	opacity: 0;
	visibility: hidden;
	transition: .4s;
	overflow: auto;
}
.is_scroll #global{
	padding-top: 6.8rem;
}

.hmb_open #global{
	pointer-events: all;
	right: 0;
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 1400px) {
	#global{
		padding-top: 9.2rem;
	}
	.is_scroll #global{
		padding-top: 6.2rem;
	}
}

@media screen and (max-width: 1110px) {
	#global{
		padding-top: 9.9rem;
	}
	.is_scroll #global{
		padding-top: 7.9rem;
	}
}

#global .container{
	width: fit-content;
	height: fit-content;
	padding: 4rem 5rem 4rem 5.25rem;
	margin-left: auto;
	margin-top: 2.5rem;
	border-radius: 2rem 0 0 2rem;
	background-color: var(--pink);
}

.gl_nav{
	color: #fff;
}
.gl_nav li{
	margin-bottom: .9em;
}
.gl_nav li:nth-last-of-type(1){
	margin-bottom: 0;
}

.gl_nav li a{
	display: block;
	padding: .3em 0 .3em 1em;
	position: relative;
	transition: padding .4s;
}
.gl_nav li a:hover{
	opacity: 1;
	padding: .3em 1em .3em 0;
}

.gl_nav li a::before{
	content: "";
	display: block;
	width: .5em;
	height: .5em;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: calc(50% - .25em);
	transition: opacity .4s;
}
.gl_nav li a:hover::before{
	opacity: 0;
}

@media screen and (max-width: 768px) {
	#global{
		padding-top: 7rem;
	}
	.is_scroll #global{
		padding-top: 7rem;
	}

	#global .container{
		padding: 3.5rem 5.5rem 3.5rem 6rem;
		margin-top: 2rem;
		border-radius: 1.8rem 0 0 1.8rem;
	}

	.gl_nav li{
		margin-bottom: 1.2em;
	}
	.gl_nav li:nth-last-of-type(1){
		margin-bottom: 0;
	}
}

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




/************************************************************************
	フッター
**************************************************************************/
/* ロゴ周辺（飾り含む）
-------------------------------------------------------- */
footer{
	overflow: hidden;
}

.ft_logo_area{
	padding-top: 31.5rem;
	position: relative;
}
.ft_logo_area::before{
	content: "";
	display: block;
	width: 100%;
	min-width: 160rem;
	height: 17rem;
	background: url(../img/cmn/footer_radius.png) no-repeat center bottom/100% 100%;
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
}
.ft_logo_area::after{
	content: "";
	display: block;
	width: 57rem;
	height: 12.6rem;
	background: url(../img/cmn/footer_deco.png) no-repeat center bottom/100% 100%;
	position: absolute;
	bottom: 15rem;
	left: 50%;
	transform: translateX(-50%);
}


.ft_logo{
	display: block;
	font-family: var(--noto);
	font-size: 2rem;
	line-height: 1.5;
	text-align: center;
	width: fit-content;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.ft_logo:hover{
	opacity: .7;
}

.ft_logo .main{
	letter-spacing: .1em;
}
.ft_logo .sub{
	font-size: .8em;/* 16/20 */
	color: var(--pink);
}

@media screen and (max-width: 768px) {
	footer{
		padding-top: calc(8rem + 39.467%);
	}
	.ft_logo_area{
		padding-top: 4rem;
		background-color: var(--bg_pink);
	}
	.ft_logo_area::before{
		min-width: 0;
		height: auto;
		padding-top: 39.467%;/* 296/750 */
		background-image: url(../img/cmn/footer_deco_sp.png);
		position: absolute;
		bottom: calc(100% - 1px);
		left: 0;
		transform: translateX(0);
	}
	.ft_logo_area::after{
		display: none;
	}

	.ft_logo .sub{
		font-size: .7em;/* 14/20 */
	}

}


/* フッターメイン領域
-------------------------------------------------------- */
.ft_main{
	padding: 4.5rem 0 2rem;
	background-color: var(--bg_pink);
	position: relative;
	z-index: 1;
}

.ft_main .inner{
	width: 94.6%;
	max-width: 1480px;
}

.ft_main address{
	text-align: center;
	margin-bottom: 3.5rem;
}


@media screen and (max-width: 768px) {
	.ft_main{
		padding: 3rem 0 1rem;
	}

	.ft_main address{
		margin-bottom: 2rem;
	}
}

/* ナビ
-------------------------------------------------------- */
#ft_nav{
	margin-bottom: 6rem;
}
#ft_nav > ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#ft_nav li{
	margin-inline: .2em;
}
#ft_nav a{
	display: block;
	padding: .5em .9em;
	position: relative;
}
#ft_nav a:hover{
	color: var(--deep_pink);
}
#ft_nav a::before{
	pointer-events: none;
	content: "";
	display: block;
	width: .1em;
	height: .1em;
	border-radius: 50%;
	background-color: var(--deep_pink);
	position: absolute;
	top: 50%;
	left: calc(50% - 1.25em);
	opacity: 0;
	transition: .4s;
}
#ft_nav a:hover::before{
	width: .5em;
	height: .5em;
	top: 0;
	left: calc(50% - .25em);
	opacity: 1;
}

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

	#ft_nav a{
		padding: .5em .5em;
	}
}

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

@media screen and (max-width: 768px) {
	#ft_nav{
		margin-bottom: 3.5rem;
	}
	#ft_nav > ul{
		display: block;
	}
	#ft_nav li{
		text-align: center;
	}

	#ft_nav a{
		display: inline-block;
	}
}


/* コピーライト
-------------------------------------------------------- */
footer .copyright{
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--pink);
	text-align: center;
	line-height: 1.5;
}

footer .copyright small{
	letter-spacing: .03em;
}

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

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

img[loading="lazy"]{
	height: auto;
}

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

}

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


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

}


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


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

}

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


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

}



/************************************************************************
	TOP
**************************************************************************/
/* =====
	TOP MV
======================================================== */
#top_mv{
	min-height: 80rem;
	position: relative;
}
#top_mv picture{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#top_mv img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 65% 50%;
}

#top_mv .inner{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#top_mv .text_wrapper{
	width: fit-content;
	padding: 3rem 1.75rem 3rem 3.5rem;
	margin-top: 5.5%;
	border-radius: .8rem;
	background-color: #fff;
}

#top_mv .text_wrapper hgroup{
	font-size: 3rem;
	font-weight: 700;
	color: var(--deep_pink);
}
#top_mv .text_wrapper hgroup .main{
	letter-spacing: .1em;
}
#top_mv .text_wrapper hgroup .sub{
	font-size: .6em;/* 18/30 */
	margin-top: .66em;
	letter-spacing: .1em;
}

@media screen and (max-width: 1200px) {
	#top_mv{
		min-height: 60rem;
	}
	#top_mv .text_wrapper{
		padding: 2rem 1rem 2rem 2.25rem;
		margin-top: 5%;
	}

	#top_mv .text_wrapper hgroup{
		font-size: 2.4rem;
	}
}

@media screen and (max-width: 768px) {
	#top_mv{
		min-height: 0;
	}
	#top_mv picture{
		height: auto;
		position: static;
	}
	#top_mv img{
		height: auto;
		object-position: 50% 50%;
	}

	#top_mv .text_wrapper{
		padding: 1.8rem 1rem 2rem 2.25rem;
		margin: 5.25% auto 0;
	}

	#top_mv .text_wrapper hgroup{
		font-size: 2.1rem;
	}
	#top_mv .text_wrapper hgroup .sub{
		font-size: .62em;/* 13/21 */
		margin-top: .66em;
		letter-spacing: .1em;
	}
}

@media screen and (min-width: 1601px) {
	#top_mv{
		min-height: 0;
	}
	#top_mv picture{
		height: auto;
		position: static;
	}
	#top_mv img{
		height: auto;
		object-position: 50% 50%;
	}

	#top_mv .text_wrapper{
		padding: 3rem 1.75rem 3rem 3.5rem;
		padding: calc(1.875 * var(--js_vw)) calc(1.09375 * var(--js_vw)) calc(1.875 * var(--js_vw)) calc(2.1875 * var(--js_vw));
	}

	#top_mv .text_wrapper hgroup{
		font-size: calc(1.875 * var(--js_vw));
	}
}


/* =====
	TOP お知らせ
======================================================== */
#top_hidden_wrap{
	padding-top: 1px;
	margin-top: -.5rem;
	overflow: hidden;
}

#top_news{
	background-color: var(--bg_pink);
	position: relative;
	z-index: 1;
}
#top_news::after{
	content: "";
	display: block;
	width: 100%;
	padding-top: 11.25%;/* 180/1600 */
	background: url(../img/top/top_news_after.svg) no-repeat top center/100%;
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
}

#top_news .sp_deco_wrapper{
	display: none;
}

@media screen and (max-width: 768px) {
	#top_hidden_wrap{
		margin-top: -1.5rem;
	}
	#top_news::after{
		padding-top: 21.33%;/* 80/375 */
		background-image: url(../img/top/top_news_after_sp.svg);
	}

	#top_news .sp_deco_wrapper{
		display: flex;
		align-items: center;
		width: 96%;
		margin: 0 auto;
		position: absolute;
		top: calc(100% - 1.75rem);
		left: 0;
		right: 0;
		z-index: 2;
	}

	#top_news .sp_deco_wrapper .deco01{
		width: 5.8rem;
		margin-right: 4%;
	}
	#top_news .sp_deco_wrapper .deco02{
		width: 5.8rem;
		margin-right: auto;
	}
	#top_news .sp_deco_wrapper .deco03{
		width: 5.25rem;
	}

	#top_news .sp_deco_wrapper .deco img{
		width: 100%;
	}
}

/* 大枠
-------------------------------------------------------- */
#top_news .grid_container{
	display: grid;
    grid-template-columns: repeat(2, 48.4%);
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#top_news .grid_container .wrapper{
    display: inherit;
    grid-template-rows: subgrid;
    grid-row: span 3;
	position: relative;
}

#top_news .tag_title{
	min-width: 24rem;
}


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

	#top_news .grid_container .wrapper{
		margin-bottom: 6rem;
	}
	#top_news .grid_container .wrapper:nth-last-of-type(1){
		margin-bottom: 0;
	}

	#top_news .tag_title{
		min-width: 18rem;
	}

}

/* リスト
-------------------------------------------------------- */
.top_news_list{
	padding: .5rem 3.4%;
	margin-bottom: 3.75rem;
	border-radius: .8rem;
	background-color: #fff;
	position: relative;
}
.top_news_list::before{
	content: "";
	display: block;
	width: 8.9rem;
	height: 17rem;
	background: url(../img/top/top_news_deco01.png) no-repeat center/contain;
	position: absolute;
	bottom: -5.8rem;
}
.to_general .top_news_list::before{
	right: 96%;
}
.to_professionals .top_news_list::before{
	background-image: url(../img/top/top_news_deco02.png);
	left: 92%;
}

.top_news_list li{
	border-bottom: 1px solid #e6e6e6;
}
.top_news_list li:nth-of-type(5){
	border-bottom: none;
}

.top_news_list li a{
	display: flex;
	align-items: center;
	padding: 2rem 3%;
}
.top_news_list li a:hover{
	color: var(--deep_pink);
	background-color: var(--bg_pink);
}

.top_news_list .date_box{
	width: 6.4rem;
}
.top_news_list .date_box .year,
.top_news_list .date_box .date{
	display: block;
	text-align: center;
	white-space: nowrap;
}
.top_news_list .date_box .year{
	line-height: 1.25;
}
.top_news_list .date_box .date{
	font-size: 1.5em;/* 24/16 */
	line-height: 1;
}

.top_news_list .text{
	margin-left: 3%;
	/* 行数制限 */
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: 3.5em;
}


@media screen and (max-width: 768px) {
	.top_news_list{
		padding: .75rem 4%;
		margin-bottom: 2rem;
		border-radius: .4rem;
	}
	.top_news_list::before{
		display: none;
	}

	.top_news_list li:nth-last-of-type(1){
		border-bottom: none;
	}

	.top_news_list li a{
		padding: 1.5rem 0;
	}

	.top_news_list .date_box{
		width: 5.4rem;
	}
	.top_news_list .date_box .date{
		font-size: 1.4286em;/* 20/14 */
	}

	.top_news_list .text{
		margin-left: 4%;
	}
}

/* 一覧を見るボタン
-------------------------------------------------------- */
#top_news .btn_with_arrow{
	margin: 0 auto;
}

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

}


/* =====
	リンクいっぱいセクション
======================================================== */
#top_link{
	padding-top: calc(12% + 11rem);
}

#top_link .inner{
	position: relative;
}
#top_link .deco01{
	width: 8.58rem;
	top: -10rem;
	right: 5%;
	position: absolute;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	#top_link{
		padding-top: calc(21.33% + 6rem);
	}

	#top_link .deco01{
		display: none;
	}
}

/* 並び3つ
-------------------------------------------------------- */
.link_list_3column{
	display: flex;
	justify-content: space-between;
}
#top_link .link_list_3column{
	margin-bottom: 12rem;
}

.link_list_3column > li{
	width: 32.4%;
	max-width: 38rem;
}

.link_list_3column > li a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30rem;
	border-radius: 2.4rem;
	overflow: hidden;
	position: relative;
}
.link_list_3column > li a::before{
	content: "";
	pointer-events: none;
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--pink);
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	transition: visibility .4s, opacity .4s;
}
.link_list_3column > li a:hover::before{
	visibility: visible;
	opacity: .6;
}

.link_list_3column > li .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.link_list_3column > li .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}
.link_list_3column > li a:hover .bg img{
	transform: scale(1.1);
}

.link_list_3column > li .text{
	font-size: 2.4rem;
	line-height: 1.5;
	color: var(--pink);
	width: fit-content;
	max-width: 92%;
	padding: .5em 1.25em;
	border-radius: 5em;
	background-color: #fff;
	position: relative;
	z-index: 2;
	transition: color .4s, background-color .4s;
}
.link_list_3column > li a:hover .text{
	color: #fff;
	background-color: var(--deep_pink);
}

.link_list_3column > li .arrow{
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 2.4rem 0 2.4rem 0;
	background-color: var(--pink);
	overflow: hidden;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	transition: background-color .4s;
}
.link_list_3column > li a:hover .arrow{
	background-color: var(--deep_pink);
}

.link_list_3column > li .arrow::before,
.link_list_3column > li .arrow::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	margin: auto;
	background: url(../img/cmn/arrow_white.svg) no-repeat center/35%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: transform .4s;
}
.link_list_3column > li .arrow::after{
	transform: translateX(-110%);
}
.link_list_3column > li a:hover .arrow::before{
	transform: translateX(110%);
}
.link_list_3column > li a:hover .arrow::after{
	transform: translateX(0);
}

.link_list_3column > li .to_file .arrow::before,
.link_list_3column > li .to_file .arrow::after{
	background-image: url(../img/cmn/icon_file_wh.svg);
}

@media screen and (max-width: 1110px) {
	.link_list_3column > li a{
		height: 24rem;/* 30*.8 */
	}
	.link_list_3column > li .text{
		font-size: 1.92rem;/* 24*.8 */
	}
}
@media screen and (max-width: 920px) {
	.link_list_3column > li a{
		height: 21rem;/* 30*.7 */
	}
	.link_list_3column > li .text{
		font-size: 1.68rem;/* 24*.7 */
	}
}

@media screen and (max-width: 768px) {
	.link_list_3column{
		display: block;
	}
	#top_link .link_list_3column{
		margin-bottom: 6rem;
	}

	.link_list_3column > li{
		width: 100%;
		max-width: 40rem;
		margin-bottom: 2rem;
	}
	.link_list_3column > li:nth-last-of-type(1){
		margin: 0;
	}

	.link_list_3column > li a{
		height: 25.6rem;
		border-radius: 1.8rem;
	}

	.link_list_3column > li .text{
		font-size: 2rem;
	}

	.link_list_3column > li .arrow{
		width: 4.4rem;
		height: 4.4rem;
		border-radius: 1.8rem 0 1.8rem 0;
	}
}

/* トップ3つ並びのアイコン
-------------------------------------------------------- */
#top_link .link_list_3column > li a::after{
	content: "";
	display: block;
	width: 8.1rem;
	height: 6.8rem;
	-webkit-mask: url(../img/top/top_link_deco01.png) no-repeat bottom right/contain;
	mask: url(../img/top/top_link_deco01.png) no-repeat bottom right/contain;
	background-color: var(--pink);
	position: absolute;
	bottom: calc(50% + 2.2rem);
	left: 9%;
	z-index: 3;
	transition: background-color .4s;
}
#top_link .link_list_3column > li:nth-of-type(2) a::after{
	width: 6.5rem;
	height: 6.4rem;
	left: 12%;
	-webkit-mask-image: url(../img/top/top_link_deco02.png);
	mask-image: url(../img/top/top_link_deco02.png);
}
#top_link .link_list_3column > li:nth-of-type(3) a::after{
	width: 5.1rem;
	height: 6rem;
	left: 11%;
	-webkit-mask-image: url(../img/top/top_link_deco03.png);
	mask-image: url(../img/top/top_link_deco03.png);
}

#top_link .link_list_3column > li a:hover::after{
	background-color: #fff;
}

@media screen and (max-width: 1110px) {
	#top_link .link_list_3column > li a::after{
		bottom: calc(50% + 2rem);
	}
}


@media screen and (max-width: 768px) {
	#top_link .link_list_3column > li a::after{
		width: 7rem;
		height: 5.85rem;
	}
	#top_link .link_list_3column > li:nth-of-type(2) a::after{
		width: 5.55rem;
		height: 5.5rem;
	}
	#top_link .link_list_3column > li:nth-of-type(3) a::after{
		width: 4.4rem;
		height: 5.6rem;
	}
}


/* 2つ並びリンク
-------------------------------------------------------- */
.top_link_list{
	display: flex;
}

.top_link_list > li{
	--link_color: var(--orange);
	width: 50%;
}
.top_link_list > li:nth-of-type(2){
	--link_color: var(--green);
}

.top_link_list > li a{
	display: block;
	height: 40rem;
	overflow: hidden;
	position: relative;
}
.top_link_list > li:nth-of-type(1) a{
	border-radius: 2.4rem 0 0 2.4rem;
}
.top_link_list > li:nth-of-type(2) a{
	border-radius: 0 2.4rem 2.4rem 0;
}
.top_link_list > li a:hover{
	--link_color: var(--deep_pink);
}


.top_link_list > li a::before{
	content: "";
	pointer-events: none;
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--pink);
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	transition: visibility .4s, opacity .4s;
}
.top_link_list > li a:hover::before{
	visibility: visible;
	opacity: .6;
}

.top_link_list > li .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.top_link_list > li .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}
.top_link_list > li a:hover .bg img{
	transform: scale(1.1);
}

.top_link_list > li .text{
	font-size: 2.4rem;
	letter-spacing: .1em;
	color: #fff;
	/* 縦書き */
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;/* 英数字は縦に */
	/* 縦書き */
	width: fit-content;
	height: 90%;
	padding: 1em 10% 2.6em;/* 1％=6px */
	margin: auto 0;
	border-radius: 0 2.4rem 2.4rem 0;
	background-color: var(--link_color);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	transition: color .4s, background-color .4s;
}
.top_link_list > li .text .arrow{
	display: block;
	width: 1.8em;/* 44/24 */
	height: 1.8em;
	border-radius: 50%;
	background-color: #fff;
	overflow: hidden;
	position: absolute;
	left: calc(50% - .9em);
	bottom: .75em;
	transition: transform .4s;
}
.top_link_list > li a:hover .text .arrow{
	transform: scale(1.1);
}

.top_link_list > li .text .arrow::before,
.top_link_list > li .text .arrow::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: var(--link_color);
	-webkit-mask: url(../img/cmn/arrow_white.svg) no-repeat center/40%;
	mask: url(../img/cmn/arrow_white.svg) no-repeat center/40%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: background-color .4s, transform .4s;
}
.top_link_list > li .text .arrow::after{
	transform: translateX(-110%);
}
.top_link_list > li a:hover .text .arrow::before{
	transform: translateX(110%);
}
.top_link_list > li a:hover .text .arrow::after{
	transform: translateX(0);
}

@media screen and (max-width: 1110px) {
	.top_link_list > li a{
		height: 32rem;/* 40*.8 */
	}
	.top_link_list > li .text{
		font-size: 1.92rem;/* 24*.8 */
	}
}

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

	.top_link_list > li{
		width: 100%;
	}

	.top_link_list > li a{
		height: 32.5rem;
	}
	.top_link_list > li:nth-of-type(1) a{
		border-radius: 1.8rem 1.8rem 0 0;
	}
	.top_link_list > li:nth-of-type(2) a{
		border-radius: 0 0 1.8rem 1.8rem;
	}

	.top_link_list > li .text{
		font-size: 2rem;
		height: 100%;
		padding: 1.4em 1.15em 2.6em;/* 1％=6px */
		margin: 0;
		border-radius: 1.8rem 1.8rem 0 0;
	}
	.top_link_list > li:nth-of-type(2) .text{
		border-radius: 0 0 1.8rem 1.8rem;
		left: auto;
		right: 0;
	}
}


/************************************************************************
	下層共通
**************************************************************************/
/* ページタイトル
-------------------------------------------------------- */
.lower_head{
	padding: 8rem 0 8.5rem;
	overflow: hidden;
	position: relative;
}
.lower_head.more_text{
	padding: 7rem 0;
}
.lower_head::before{
	content: "";
	display: block;
	width: 100%;
	min-width: 1600px;
	height: 100%;
	background: url(../img/cmn/lower_head.png) no-repeat center top/100% 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.lower_head.no_title{
	padding: 2rem 0;
	background-color: var(--bg_pink);
}
.lower_head.no_title::before{
	display: none;
}

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

.lower_title{
	text-align: center;
	font-size: 3.2rem;
	line-height: 1.5;
}
.lower_title .sub{
	font-size: .5em;/* 16/32 */
	color: var(--pink);
	text-transform: capitalize;
	padding-top: .2em;
}
.lower_title .parent_page_name{
	font-size: .5625em;/* 18/32 */
}

@media screen and (max-width: 768px) {
	.lower_head{
		padding: 4.5rem 0 5.5rem;
	}
	.lower_head.more_text{
		padding: 4rem 0 4.5rem;
	}
	.lower_head::before{
		min-width: 0;
		background-image: url(../img/cmn/lower_head_sp.png);
		left: 0;
		transform: translateX(0);
	}

	.lower_head.no_title{
		padding: 1rem 0;
	}

	.lower_title{
		font-size: 2.4rem;
	}
	.lower_title .sub{
		font-size: .584em;/* 14/24 */
		padding-top: .25em;
	}
}

/* パンクズ
-------------------------------------------------------- */
#breadcrumb{
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	max-width: 1200px;
	width: 92%;
	color: #999;
	padding-top: 1rem;
	margin: 0 auto 6rem;
}

#breadcrumb li{
	padding-left: 2.5em;
	margin-bottom: .5em;
	position: relative;
}

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

#breadcrumb li::before{
	content: "";
	display: block;
	width: .6em;/* 8/14 */
	height: 2px;
	border-radius: 1px;
	background-color: var(--deep_pink);
	position: absolute;
	left: 1em;
	top: calc(50% - 1px);
}
#breadcrumb li:nth-of-type(1)::before{
	display: none;
}

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

#breadcrumb li a{
	display: block;
	text-decoration: underline;
}
#breadcrumb li a:hover{
	color: var(--deep_pink);
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	#breadcrumb{
		font-size: 1.2rem;
		width: 88%;/* デザイン650/750 より少し広く */
		padding-top: 1.75rem;
		margin-bottom: 1.5rem;
	}

}



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

}

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


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

}


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


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

}

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


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

}


/************************************************************************
	02-01 お知らせ
**************************************************************************/
/* =====
	全体
======================================================== */
/* 色設定
-------------------------------------------------------- */
main{ --page_color: var(--deep_pink);}
#general{ --page_color: var(--orange);}
#professionals{ --page_color: var(--green);}

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

}

/* 配置
-------------------------------------------------------- */
.column2_outer{
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1200px;
	width: 92%;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.column2_outer{
		display: block;
		width: 88%;/* デザイン650/750　より気持ち広く */
	}
}


/* =====
	サイドバー
======================================================== */
.column2_outer aside{
	width: 20rem;
	max-height: calc(100vh - 10rem);
	padding: 2rem 1.5rem;
	border-radius: .78rem;
	background-color: #f7f7f7;
	position: -webkit-sticky;
	position: sticky;
	top: 10rem;
	overflow: auto;

	/* スクロールバー */
	scrollbar-color: #e6e6e6 #f7f7f7;/* ハンドルの色, 背景色 */
	scrollbar-width: thin;
}
.column2_outer aside::-webkit-scrollbar {/* Safariなど */
  width: 1rem; /* お好み。指定しなくてもいい */
}
.column2_outer aside::-webkit-scrollbar-thumb {/* Safariなど */
  background: #e6e6e6; /* ハンドルの色 */
}
.column2_outer aside::-webkit-scrollbar-track {/* Safariなど */
  background: #f7f7f7; /* 背景色 */
}

.column2_outer aside .wrapper{
	margin-bottom: 2rem;
}
.column2_outer aside .wrapper:nth-last-of-type(1){
	margin-bottom: 0;
}

.column2_outer aside .title{
	text-align: center;
	line-height: 1.5;
	margin-bottom: .35em;
}

@media screen and (max-width: 768px) {
	.column2_outer aside{
		width: 100%;
		padding: 2.75rem 2.5% 2.5rem;
		border-radius: .4rem;
		overflow: visible;
		position: static;
	}

	.column2_outer aside .wrapper{
		margin-bottom: 1.75rem;
	}

	.column2_outer aside .title{
		margin-bottom: .5em;
	}
}

/* カテゴリリスト
-------------------------------------------------------- */
.aside_cat_list > li{
	color: #fff;
	line-height: 1.25;
	margin-bottom: .5em;
}
.aside_cat_list > li:nth-last-of-type(1){
	margin-bottom: 0;
}
.aside_cat_list > li a{
	display: block;
	padding: .225em 1em .275em;
	border-radius: 5em;
	background-color: var(--page_color);
}
.aside_cat_list > li.current-cat a{
	pointer-events: none;
	background-color: var(--pink) !important;
}

.aside_cat_list > li a:hover{
	background-color: var(--deep_pink) !important;
}

@media screen and (max-width: 768px) {
	.aside_cat_list{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: calc(100% + .75em);
	}
	.aside_cat_list > li{
		margin-right: .75em;
		margin-bottom: .75em;
	}
	.aside_cat_list > li:nth-last-of-type(1){
		margin-bottom: .75em;
	}
	.aside_cat_list > li a{
		display: flex;
		justify-content: center;
		min-width: 6.78em;
		padding: .375em 1.25em .425em;
	}
}

/* タグリスト
-------------------------------------------------------- */
.aside_tag_list{
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	width: calc(100% + .57em);
}
.aside_tag_list > li{
	margin: 0 .57em .57em 0;
}
.aside_tag_list > li a{
	display: block;
	color: var(--page_color);
	line-height: 1.25;
	padding: .25em .7em .25em 1.7em;
	border-radius: .285em;/* 4/14 */
	background-color: #fff;
	position: relative;
}
.aside_tag_list > li a::before{
	content: "#";
	display: inline-block;
	position: absolute;
	left: .9em;
	top: .25em;
}
.aside_tag_list > li a:hover{
	color: #fff;
	background-color: var(--deep_pink);
}

.aside_tag_list > li.current-tag a{
	pointer-events: none;
	color: #fff !important;
	background-color: var(--pink) !important;
}

@media screen and (max-width: 768px) {
	.aside_tag_list{
		font-size: 1.2rem;
		width: calc(100% + .84em);
	}
	.aside_tag_list > li{
		margin: 0 .84em .84em 0;
	}
}

/* アーカイブリスト
-------------------------------------------------------- */
.aside_archive_list > li{
	line-height: 1.25;
	margin-bottom: .5em;
}
.aside_archive_list > li:nth-last-of-type(1){
	margin-bottom: 0;
}
.aside_archive_list > li a{
	display: block;
	padding: .225em 1em .275em;
	border-radius: 5em;
	background-color: #fff;
}
.aside_archive_list > li a[aria-current="page"]{
	pointer-events: none;
	color: #fff !important;
	background-color: var(--pink) !important;
}

.aside_archive_list > li a:hover{
	color: #fff !important;
	background-color: var(--deep_pink) !important;
}

@media screen and (max-width: 768px) {
	.aside_archive_list{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: calc(100% + .75em);
	}
	.aside_archive_list > li{
		margin-right: .75em;
		margin-bottom: .75em;
	}
	.aside_archive_list > li:nth-last-of-type(1){
		margin-bottom: .75em;
	}
	.aside_archive_list > li a{
		display: flex;
		justify-content: center;
		padding: .375em 1.25em .425em;
		border-radius: 5em;
	}
}



/* =====
	リスト
======================================================== */
.column2_outer .right_container{
	width: calc(97% - 20rem);
}

.news_list > li{
	display: grid;
    grid-template-columns: 22.5rem calc(97% - 22.5rem);
	justify-content: space-between;
	padding: 2rem 1.6rem;
	border-bottom: 1px solid #e6e6e6;
	position: relative;
	transition: background-color .4s;
}
.news_list > li:nth-of-type(1){
	border-top: 1px solid #e6e6e6;
}
.news_list > li:has(.to_single:hover){
	background-color: var(--bg_pink);
}

.news_list > li .to_single{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.news_list > li .thumb{
	grid-column: 1/ 2;
    grid-row: 1/ 3;
	display: block;
	align-self: center;
	overflow: hidden;
	position: relative;
}
.news_list > li .thumb::before{
	content: "";
	display: block;
	padding-top: 66.67%;
}

.news_list > li .thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: transform .4s;
}

.news_list > li .to_single:hover ~ .thumb img{
	transform: scale(1.1);
}

.news_list > li .text_wrapper{
	grid-column: 2/ 3;
    grid-row: 1/ 2;
	align-self: flex-end;
	padding-bottom: 1.2rem;
}

.date_cat{
	display: flex;
	align-items: center;
}
.news_list > li .date_cat{
	margin-bottom: 1.6rem;
}

.date_cat .date{
	margin-right: .5em;
	transition: color .4s;
}
.news_list > li .to_single:hover ~ .text_wrapper .date{
	color: var(--deep_pink);
}

.date_cat .cat{
	display: block;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1.5;
	padding: .15em .75em;
	border-radius: 5em;
	background-color: var(--page_color);
	transition: background-color .4s;
}
.date_cat a.cat:hover{
	background-color: var(--deep_pink);
}
.news_list > li .to_single:hover ~ .text_wrapper .cat{
	background-color: var(--deep_pink);
}

.news_list > li .text{
	font-size: 2rem;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: 3em;
	transition: color .4s;
}
.news_list > li .to_single:hover ~ .text_wrapper .text{
	color: var(--deep_pink);
}

.tag_list{
	display: flex;
	flex-wrap: wrap;
	align-self: flex-start;
	font-size: 1.4rem;
}
.news_list > li .tag_list{
	grid-column: 2/ 3;
    grid-row: 2/ 3;
}

.tag_list > li{
	margin-right: 1em;
}

.tag_list > li a{
	display: block;
	color: var(--page_color);
	position: relative;
	z-index: 2;
}
.tag_list > li a::before{
	content: "#";
	display: inline-block;
	margin-right: .25em;
}
.tag_list > li a:hover,
.news_list > li .to_single:hover ~ .tag_list > li a{
	color: var(--deep_pink);
}


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

	.news_list > li{
		display: block;
		padding: 2rem .8rem 1.5rem;
	}

	.news_list > li .thumb{
		width: 73.8%;/* 480/650 */
		margin: 0 auto 1rem;
	}

	.news_list > li .text_wrapper{
		padding-bottom: .6rem;
	}

	.date_cat .cat{
		font-size: 1.2rem;
		padding: .1em .75em .15em;
	}

	.news_list > li .date_cat{
		margin-bottom: .5rem;
	}

	.news_list > li .text{
		font-size: 1.4rem;
		line-height: 1.75;
		max-height: 3.5em;
	}

	.tag_list{
		font-size: 1.2rem;
	}
}

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


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

}


/* =====
	ページャー
======================================================== */
.pager,
.wp-pagenavi{
	display: flex;
	justify-content: flex-start;
	font-size: 1.6rem;
	padding-top: 2.5em;
	text-align: center;
	position: relative;
	z-index: 1;
}
/* 並び順 */
.wp-pagenavi .previouspostslink { order: 1; } /* 「前へ」矢印 */
.wp-pagenavi .first { order: 2; } /* 「最初」のページ番号 */
.wp-pagenavi .previouspostslink + .extend { order: 3; } /* 前へ「...」 */
.wp-pagenavi .page,
.wp-pagenavi .current { order: 4; } /* 中間のページ番号 */
.wp-pagenavi .page + .extend,
.wp-pagenavi .current + .extend { order: 5; } /* 「...」 */
.wp-pagenavi .last { order: 6; } /* 「最後」のページ番号 */
.wp-pagenavi .nextpostslink { order: 7; } /* 「次へ」矢印 */

.pager a, .pager span,
.wp-pagenavi a, .wp-pagenavi span{
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.2;
	width: 2.5em;/* 40/16 */
	height: 2.5em;
	margin-inline: .5em;
	border-radius: 50%;
}
.pager a:nth-child(1),
.wp-pagenavi a:nth-child(1){
	margin-left: 0;
}
.pager a:nth-last-child(1),
.wp-pagenavi a:nth-last-child(1){
	margin-right: 0;
}

.pager .current,
.wp-pagenavi .current{
	color: #fff;
	background-color: var(--pink);
}
.pager .page-numbers,
.wp-pagenavi .page,
.wp-pagenavi .last,
.wp-pagenavi .first{
	position: relative;
	overflow: hidden;
}
.pager .page-numbers:hover,
.wp-pagenavi .page:hover,
.wp-pagenavi .last:hover,
.wp-pagenavi .first:hover{
	color: #fff;
	background-color: var(--deep_pink);
}


.pager .prev, .pager .next,
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink{
	color: transparent;
	position: relative;
	overflow: hidden;
	text-indent: -999999999999px;
}

.pager .prev,
.wp-pagenavi .previouspostslink{
	transform: scale(-1,1);
}

.pager .prev:hover, .pager .next:hover,
.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover{
	background-color: var(--deep_pink);
}

.pager .prev::before, .pager .prev::after, .pager .next::before, .pager .next::after,
.wp-pagenavi .previouspostslink::before, .wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::before, .wp-pagenavi .nextpostslink::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	margin: auto;
	-webkit-mask: url(../img/cmn/arrow_white.svg) no-repeat center/40%;
	mask: url(../img/cmn/arrow_white.svg) no-repeat center/40%;
	background-color: var(--font_color);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: transform .4s;
}
.pager .prev::after, .pager .next::after,
.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after{
	transform: translateX(-110%);
}

.pager .prev:hover::before, .pager .prev:hover::after, .pager .next:hover::before, .pager .next:hover::after,
.wp-pagenavi .previouspostslink:hover::before, .wp-pagenavi .previouspostslink:hover::after, .wp-pagenavi .nextpostslink:hover::before, .wp-pagenavi .nextpostslink:hover::after{
	background-color: #fff;
}

.pager .prev:hover::before, .pager .next:hover::before,
.wp-pagenavi .previouspostslink:hover::before, .wp-pagenavi .nextpostslink:hover::before{
	transform: translateX(110%);
}
.pager .prev:hover::after, .pager .next:hover::after,
.wp-pagenavi .previouspostslink:hover::after, .wp-pagenavi .nextpostslink:hover::after{
	transform: translateX(0);
}

@media screen and (max-width: 768px) {
	.pager,
	.wp-pagenavi{
		justify-content: center;
		font-size: 1.5rem;
		width: 110%;
		margin-left: -5%;
	}

	.pager a, .pager span,
	.wp-pagenavi a, .wp-pagenavi span{
		margin-inline: .25em;
	}
	.pager a:nth-child(1),
	.wp-pagenavi a:nth-child(1){
		margin-left: 0;
	}
	.pager a:nth-last-child(1),
	.wp-pagenavi a:nth-last-child(1){
		margin-right: 0;
	}
}



/************************************************************************
	02-02 お知らせ詳細
**************************************************************************/
.single_inner{
	max-width: 96rem;
	width: 88%;
	margin: 0 auto;
}

.date_cat_container{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
.date_cat_container .date_cat{
	margin-right: 2rem;
}

.article_title{
	font-size: 3.2rem;
	line-height: 1.5;
	margin-bottom: 1em;
}

.article .content{
	padding: 2rem 0;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 768px) {
	.article_title{
		font-size: 2.4rem;
	}

	.date_cat_container{
		display: block;
	}

	.date_cat_container .date_cat{
		margin-right: 0;
		margin-bottom: .5rem;
	}

	.article .content{
		padding: 1.5rem 0;
	}

}

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

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

@media screen and (max-width: 768px) {
	.content{
		font-size: 1.4rem;
	}
	.content > *{
		margin-top: 1.2rem;
		margin-bottom: 2.8rem;
	}
}

/* -----
	色（function.phpで追加したテーマ用カラー）
-------------------- */
.has-font-brown-background-color {
	background-color: var(--font_color);
}
.has-font-brown-color {
	color: var(--font_color);
}

.has-linktext-blue-background-color {
	background-color: var(--link_blue);
}
.has-linktext-blue-color {
	color: var(--link_blue);
}

.has-pink-background-color {
	background-color: var(--pink);
}
.has-pink-color {
	color: var(--pink);
}

.has-deep-pink-background-color {
	background-color: var(--deep_pink);
}
.has-deep-pink-color {
	color: var(--deep_pink);
}

.has-orange-background-color {
	background-color: var(--orange);
}
.has-orange-color {
	color: var(--orange);
}

.has-thin-yellow-green-background-color {
	background-color: var(--thin_green);
}
.has-thin-yellow-green-color {
	color: var(--thin_green);
}

.has-yellow-green-background-color {
	background-color: var(--green);
}
.has-yellow-green-color {
	color: var(--green);
}

.has-green-background-color {
	background-color: var(--deep_green);
}
.has-green-color {
	color: var(--deep_green);
}

/* -----
	文字
-------------------- */
pre{
	white-space: pre-wrap;/* 折り返し。入力したスペース維持 */
}
strong{/* 太字 */
	font-weight: 600;
}
.content em{/* イタリック */
	font-style: italic;
}

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

.content a:not(.wp-block-button__link){
	color: var(--pink);
	text-decoration: underline;
	transition: .4s;
}
.content a:not(.wp-block-button__link):hover{
	color: var(--font_color);
	text-decoration: none;
}

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

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

/* -----
	見出し
-------------------- */
.content .wp-block-heading{/* 見出し要素 */
	line-height: 1.5;
	margin-bottom: 1.8rem;/* 上下余白（デフォルトは28px） */
}
h1.wp-block-heading,
h2.wp-block-heading{
	font-size: 1.5em;/* 24/16 */
}
h3.wp-block-heading{
	font-size: 1.25em;/* 20/16 */
}
h4.wp-block-heading{
	font-size: 1.125em;/* 18/16 */
}
h5.wp-block-heading{
	font-size: 1.05em;
}
h6.wp-block-heading{
	font-size: 1em;
}

@media screen and (max-width: 768px) {
	.content .wp-block-heading{/* 見出し要素 */
		margin-bottom: 1.2rem;
	}

	h1.wp-block-heading,
	h2.wp-block-heading{
		font-size: 1.428em;/* 20/14 */
	}
	h3.wp-block-heading{
		font-size: 1.286em;/* 18/14 */
	}
	h4.wp-block-heading{
		font-size: 1.143em;/* 16/14 */
	}
}


/* オリジナルスタイル */
.content .is-style-border_left{
	padding: .4em .5em .4em 1em;
	margin-bottom: 2.6rem;
	border-left: .33em solid var(--pink);
	background-color: #f7f7f7;
}
.content .is-style-circle_left{
	padding-left: 1em;
	position: relative;
}
.content .is-style-circle_left::before{
	content: "";
	display: block;
	width: .4em;
	height: .4em;
	border-radius: 50%;
	background-color: var(--deep_pink);
	position: absolute;
	left: 0;
	top: .66em;
}

@media screen and (max-width: 768px) {
	.content .is-style-border_left{
		margin-bottom: 1.6rem;
	}
}


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

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

/* -----
	メディア系ブロック
-------------------- */
:root :where(.wp-block-image figcaption){/* 配置指定ある時は.content .alignleftなどの記述がある行で上書き */
	text-align: left;
}
.content .alignleft > figcaption{
    text-align: left;
}
.content .aligncenter > figcaption{
	text-align: center;
}
.content .alignright > figcaption{
    text-align: right;
}

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

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


/* -----
	ページャー
-------------------- */
.single_pager{
	width: fit-content;
	padding: 0 11em;
	margin: 5.5rem auto 0;
	position: relative;
}

.single_pager a{
	display: block;
	color: #fff;
	line-height: 1.4;
	border-radius: 5em;
	background-color: var(--pink);
	position: relative;
}
.single_pager a:hover{
	background-color: var(--deep_pink);
}

.single_pager .to_list{
	padding: .5em 1em;
}

.single_pager .prev, .single_pager .next{
    position: absolute;
	top: 0;
}

.single_pager .prev{
	padding: .5em 1.5em;
	left: 0;
}
.single_pager .next{
	padding: .5em 1.5em;
	right: 0;
}

.single_pager .prev::after{
	content: "前の記事";
	display: inline-block;
}
.single_pager .next::before{
	content: "次の記事";
	display: inline-block;
}
.single_pager .prev::before, .single_pager .next::after{
	content: "";
	display: inline-block;
	width: 1em;
	height: .75em;
	background: url(../img/cmn/arrow_white.svg) no-repeat center/contain;
}
.single_pager .prev::before{
	margin-right: .85em;
	transform: scale(-1, 1);
}
.single_pager .next::after{
	margin-left: .85em;
}

@media screen and (max-width: 768px) {
	.single_pager{
		padding: 0 7.5em;
		margin: 3rem auto 0;
	}

	.single_pager .prev{
		padding: .5em 1em;
		left: 0;
	}
	.single_pager .next{
		padding: .5em 1em;
		right: 0;
	}

	.single_pager .prev::after{
		content: "前へ";
	}
	.single_pager .next::before{
		content: "次へ";
	}

}


/************************************************************************
	03 移行期医療とは
**************************************************************************/
.what_area{
	padding: 6rem 0;
	border-top: 1px solid #e6e6e6;
}

.what_area .faq_container{
	margin-bottom: 12rem;
}
.what_area .faq_container:nth-last-of-type(1){
	margin-bottom: 0;
}

/* 挿入画像 */
.what_area .faq_img {
	margin-top: 4rem;
	text-align: center;
}
.what_area .faq_img img {
	max-width: 100%;
	height: auto;
}

/* =====
	Q and A
======================================================== */
.what_area .faq_dl{
	padding: 0 16.4rem 0 13rem;
}

.what_area .faq_dl dt{
	font-size: 1.8rem;
	color: #fff;
	width: fit-content;
	max-width: min(80rem, 92%);
	padding: .75em 1.25em;
	margin-bottom: 1.78em;/* 32/18 */
	border-radius: 2.8rem;
	background-color: var(--pink);
	position: relative;
}
.what_area .faq_dl dt::before{
	content: "";
	display: block;
	width: 13rem;
	height: 15.6rem;
	background: url(../img/what/q_img.png) no-repeat bottom left/contain;
	position: absolute;
	top: 0;
	right: 100%;
}
.what_area .faq_dl dt::after{
	content: "";
	display: block;
	width: 2.32rem;
	height: 1.66rem;
	background: url(../img/what/q_deco.svg) no-repeat top right/contain;
	position: absolute;
	left: -.3rem;
	bottom: 0;
}

.what_area .faq_dl dd{
	width: fit-content;
	max-width: min(80rem, 92%);
	padding: 1.5em;
	margin-left: auto;
	border-radius: 2.8rem;
	background-color: #e5f2f8;
	position: relative;
}
.what_area .faq_dl dd::before{
	content: "";
	display: block;
	width: 16rem;
	height: 15rem;
	background: url(../img/what/a_img.png) no-repeat bottom right/contain;
	position: absolute;
	top: calc(50% - 7.5rem);
	left: 100%;
}
.what_area .faq_dl dd::after{
	content: "";
	display: block;
	width: 2.05rem;
	height: 1.7rem;
	background: url(../img/what/a_deco.svg) no-repeat top left/contain;
	position: absolute;
	right: -2rem;
	top: calc(50% - 1.7rem);
}

/* =====
	3つのCase
======================================================== */
.what_area .case_list {
	display: flex;
	justify-content: space-between;
	gap: 2%;
	margin-top: 5rem;
}
.what_area .case_list > li {
	flex: 1;
	background-color: #f7f7f7;
	border-radius: 1rem;
	padding: 3rem 2rem 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	overflow: hidden;
    max-width: 30rem;
}
.what_area .case_head {
	color: var(--pink);
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.what_area .case_title {
	font-size: 1.8rem;
	color: var(--deep_pink);
	margin-bottom: 2rem;
	line-height: 1.5;
}
.what_area .case_title span {
	display: block;
}
.what_area .case_img {
	margin: 0 auto 2rem;
	width: 14rem;
}
.what_area .case_txt {
	font-size: 1.4rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	flex-grow: 1;
}
.what_area .case_tags {
	display: flex;
	justify-content: center;
	width: calc(100% + 4rem); /* padding分を広げる */
	margin-left: -2rem;
}
.what_area .case_tags span {
	display: block;
	width: 50%;
	padding: .8em 0;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
}
.what_area .case_tags .tag_orange {
	background-color: var(--orange);
}
.what_area .case_tags .tag_blue {
	background-color: #4ab7d6; /* 水色（適宜調整） */
}
.what_area .case_tags .tag_full {
	width: 100%;
}

/* ===== Case 1 のタグ（矢印の食い込み）装飾 ===== */
.what_area .case_list > li:nth-of-type(1) .tag_orange {
    position: relative;
    z-index: 2; /* 隣の青いタグより前面（上）に出す */
}

/* 矢印（三角形）を作る */
.what_area .case_list > li:nth-of-type(1) .tag_orange::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%; /* オレンジの右端にくっつける */
    width: 1.5rem; /* 矢印の出っ張り幅（好みで調整してください） */
    background-color: var(--orange); /* オレンジ色を引き継ぐ */
    /* クリップパスで右向きの三角形に切り抜く */
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* 矢印が被る分、青いタグの文字が少し左寄りになっちゃうので、左に余白を入れて真ん中に見えるよう調整 */
.what_area .case_list > li:nth-of-type(1) .tag_blue {
    padding-left: 1.5rem; 
}

/* ===== Caseの下部タグの角を親カード（li）の角丸に合わせる ===== */

/* 左側にあるタグ（小児診療科）の左下を角丸に */
.what_area .case_tags span:first-child {
    /* 親の border: 1px 分を引くと、隙間なくピッタリ綺麗にハマります */
    border-bottom-left-radius: calc(1rem - 1px);
}

/* 右側にあるタグ（成人診療科）の右下を角丸に */
.what_area .case_tags span:last-child {
    border-bottom-right-radius: calc(1rem - 1px);
}

/* =====
	5つのStep
======================================================== */
.what_area .step_list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 5rem;
	gap: 1.5%;
}
.what_area .step_list > li {
	flex: 1;
	background-color: #f7f7f7;
	border-radius: 1rem;
	padding: 2rem 1rem;
	text-align: center;
	position: relative;
}
/* 矢印（CSSで作成） */
.what_area .step_list > li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -1.5rem;
	top: 50%;
	transform: translateY(-50%);
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;
	border-left: 1.5rem solid var(--pink);
	z-index: 1;
}
.what_area .step_head {
	color: var(--pink);
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
/* 白丸背景 */
.what_area .step_icon {
	width: 12rem;
	height: 12rem;
	background-color: #fff;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* ===== 5つのStep 画像ごとの個別サイズ調整 ===== */
/* ベースのサイズ（必要に応じて変更してください） */
.what_area .step_icon img {
    width: 55%;
    height: auto;
}

/* ▼ ここから個別に微調整 ▼ */
/* Step 1 の画像 */
.what_area .step_list > li:nth-of-type(1) .step_icon img {
    width: 75%;
}

/* Step 2 の画像 */
.what_area .step_list > li:nth-of-type(2) .step_icon img {
    width: 50%;
}

/* Step 3 の画像 */
.what_area .step_list > li:nth-of-type(3) .step_icon img {
    width: 70%;
}

/* Step 4 の画像 */
.what_area .step_list > li:nth-of-type(4) .step_icon img {
    width: 42%;
}

/* Step 5 の画像 */
.what_area .step_list > li:nth-of-type(5) .step_icon img {
    width: 57%;
}

.what_area .step_txt {
	font-size: 1.4rem;
	line-height: 1.5;
}



/* ---
	PC時の全体調整 (ブレイクポイント以上)
-------------------------------------------------------- */
@media screen and (min-width: 769px) {
	/* コンテンツ幅の修正 (最大1000pxで中央寄せ) */
	.what_area .case_list,
	.what_area .step_list {
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}

	/* 「CaseN」「StepN」の見出しボックスデザイン */
	.what_area .case_list > li,
	.what_area .step_list > li {
		padding-top: 5rem; /* 見出しボックス分の余白を確保 */
		position: relative;
		overflow: visible; /* 見出しがはみ出せるように */
	}

	/* 見出し自体のスタイル (deeppink、#efefefボックス、上辺まっすぐ) */
	.what_area .case_head,
	.what_area .step_head {
		color: var(--deep_pink); /* deeppinkに変更 */
		background-color: #efefef;
		display: block;
		width: fit-content;
		padding: 0.5rem 3.5rem;
		border-radius: 0 0 1.5rem 1.5rem; /* 下左右の角にradius、上は0 */
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%); /* 中央寄せ */
		margin-bottom: 0; /* 既存上書き */
	}
}

/* ---
	SP向けレスポンス修正 (ブレイクポイント以下)
-------------------------------------------------------- */
@media screen and (max-width: 768px) {
	.what_area {
		padding: 4rem 0;
        overflow-x: hidden;
	}
	.what_area .faq_container {
		margin-bottom: 8rem;
	}
	.what_area .faq_img {
		margin-top: 2rem;
	}

	/* -------------------------------------------
		QA 吹き出しのレイアウト変更 (SP専用)
	------------------------------------------- */
	.what_area .faq_dl {
		padding: 0;
	}

	/* ■ Q: 吹き出し本体（右側に配置） */
	.what_area .faq_dl dt {
		width: calc(100% - 9.5rem); /* アイコン幅+余白分を引く */
		margin-left: auto; /* 右寄せ */
		margin-right: 0;
		padding: 1.5rem 1.25em;
		margin-bottom: 2.5rem;
		border-radius: 1.8rem;
		position: relative; 
		display: block; /* 念のためフレックス解除 */
        font-size: 1.6rem;
	}
	.what_area .faq_container:nth-of-type(1) .faq_dl dt{
		margin-bottom: 4.5rem;
	}
	/* ■ Q: アイコン（吹き出しの左外側に配置） */
	.what_area .faq_dl dt::before {
		content: "";
		display: block;
		width: 8.5rem;
		height: 10rem;
		background: url(../img/what/q_img.png) no-repeat top center/contain;
		position: absolute;
		top: -1rem; /* 少し上に飛び出させる */
		left: -9.5rem; /* 左外側へ押し出す */
		right: auto;
	}
	/* ■ Q: 吹き出しの先っちょ（左側） */
	.what_area .faq_dl dt::after {
		content: "";
		display: block;
		width: 2.32rem;
		height: 1.66rem;
		background: url(../img/what/q_deco.svg) no-repeat top right/contain;
		position: absolute;
		left: -1.6rem; /* 吹き出しの左端から少し外へ */
		top: 2.5rem; 
		bottom: auto;
		transform: rotate(45deg);
	}

	/* ■ A: 吹き出し本体（横幅いっぱい） */
	.what_area .faq_dl dd {
		width: 100%;
		max-width: none;
		margin-left: 0; 
		padding: 1.5em;
		border-radius: 1.8rem;
		margin-bottom: 14rem; /* 下のアイコン用のスペースを確保 */
		position: relative;
	}
	/* ■ A: アイコン（右下に配置） */
	.what_area .faq_dl dd::before {
		content: "";
		display: block;
		width: 10.5rem;
		height: 10rem;
		background: url(../img/what/a_img.png) no-repeat bottom right/contain;
		position: absolute;
		top: auto;
		left: auto;
		bottom: -11.5rem; /* 吹き出しのすぐ下 */
		right: 0; /* 右寄せ */
	}
	/* ■ A: 吹き出しの先っちょ（右下側） */
	.what_area .faq_dl dd::after {
		content: "";
		display: block;
		width: 2.05rem;
		height: 1.7rem;
		background: url(../img/what/a_deco.svg) no-repeat top left/contain;
		position: absolute;
		left: auto; 
		right: 6.5rem; 
		top: auto;
		bottom: -1.3rem; /* 吹き出しの下へ突き出す */
		transform: rotate(60deg); /* 向きを下に向ける */
	}

	/* -------------------------------------------
		3つのCase (右側の謎の余白を解消！)
	------------------------------------------- */
	.what_area .case_list {
		flex-direction: column;
		gap: 2.5rem;
		margin-top: 3rem;
		padding: 0;
	}
	.what_area .case_list > li {
		padding: 4.5rem 0 0; /* 左右のpaddingをなくす */
		width: 100%;
		position: relative;
		overflow: visible;
        max-width: 100%;
	}
	/* タグ部分の突き抜けを防止 */
	.what_area .case_tags {
		width: 100%; /* calcをやめて100%に */
		margin-left: 0; /* マイナスマージンを解除 */
        margin-right: 0;
	}
	/* その代わり、中身のテキスト等に左右の余白を持たせる */
	.what_area .case_title,
	.what_area .case_img,
	.what_area .case_txt {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.what_area .case_head {
		margin-bottom: 0;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		width: fit-content;
		padding: 0.6rem 2.5rem;
		border-radius: 0 0 1.2rem 1.2rem;
		background-color: #efefef;
		color: var(--deep_pink);
		font-size: 1.4rem;
	}

	/* -------------------------------------------
		5つのStep
	------------------------------------------- */
	.what_area .step_list {
		flex-direction: column;
		gap: 1.5rem;
		margin-top: 3rem;
		padding: 0;
	}
	.what_area .step_list > li {
		display: flex;
		align-items: center; /* アイコンとテキストを横並びで中央揃え */
		text-align: left;
		padding: 4.5rem 2rem 2.5rem; /* 上は見出し（Step1）用のスペース */
		position: relative;
	}
	/* Stepの見出し（Caseと同じスタイル） */
	.what_area .step_head {
		margin-bottom: 0;
		position: absolute; /* 親(li)を基準に上部中央へ */
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		width: fit-content;
		padding: 0.6rem 2.5rem;
		border-radius: 0 0 1.2rem 1.2rem;
		background-color: #efefef;
		color: var(--deep_pink);
		font-size: 1.4rem;
	}
	/* Stepのアイコン（横並び） */
	.what_area .step_icon {
		flex-shrink: 0;
		width: 10rem;
		height: 10rem;
		margin: 0 2rem 0 0; /* 右に余白 */
	}
	/* 矢印 (Step間の下向き) */
	.what_area .step_list > li:not(:last-child)::after {
		right: 50%;
		top: auto;
		bottom: -1.6rem;
		transform: translateX(50%);
		border-left: 1rem solid transparent;
		border-right: 1rem solid transparent;
		border-top: 1.5rem solid var(--pink);
		border-bottom: none;
		z-index: 2;
	}
}



/************************************************************************
	04 センターについて
**************************************************************************/
/* センターについて
-------------------------------------------------------- */
.center_member_list > li {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.center_member_list > li:not(:last-child) {
	margin: 0 0 3.2rem;
}
.center_member_img-wrapper {
	width: 34rem;
}
.center_member_img {
	background: #f7f7f7;
	border-radius: 50%;
	padding: 1rem;
}
.center_member_caption {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin: -4rem 0 0;
}
.center_member_caption span {
	color: #fff;
	font-size: 2.4rem;
	background: #ee869a;
	border-radius: 10rem;
	padding: .25em 1.5em;
}
.center_member_content {
	width: calc(100% - 34rem);
	padding: 0 0 0 6rem;
}
.center_member_content_head {
	padding: 0 3.2rem;
}
.center_member_name {
	font-size: 2.4rem;
	display: -webkit-box;
	display: flex;
	margin: .25em 0 0;
}
.center_member_name .en {
	color: #ee869a;
	margin: 0 0 0 1em;
}
.center_member_affiliation {
	margin: .5em 0 0;
}
.center_member_message {
	background: #f7f7f7;
	border-radius: .8rem;
	margin: .75em 0 0;
	padding: 2em 2.5em;
	position: relative;
}
.center_member_message::before {
	content: "";
	width: 3.6rem;
	height: 2.4rem;
	background-image: url("../img/about/bubble.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 1.2rem);
	left: -3.6rem;
}
@media screen and (max-width: 768px) {
.center_member_list > li {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
}
.center_member_list > li:not(:last-child) {
	margin: 0 0 4.8rem;
}
.center_member_img-wrapper {
	width: auto;
	margin: 0 0 1.6rem;
}
.center_member_img {
	width: 22rem;
	margin: auto;
	padding: .5rem;
}
.center_member_caption {
	margin: -3rem 0 0;
}
.center_member_caption span {
	font-size: 1.6rem;
}
.center_member_content {
	width: 100%;
	padding: 0;
}
.center_member_content_head {
	text-align: center;
	padding: 0;
}
.center_member_post { display: none; }
.center_member_name {
	font-size: 2rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
}
.center_member_name .en {
	margin: -.0625em 0 0;
}
.center_member_affiliation {
	margin: .1875em 0 0;
}
.center_member_message {
	border-radius: .4rem;
	margin: 1.875em 0 0;
	padding: 1em 1.25em;
}
.center_member_message::before {
	width: 2rem;
	height: 2.5rem;
	background-image: url("../img/about/bubble_sp.svg");
	top: -2.5rem;
	left: 20%;
}
}


/* アクセス
-------------------------------------------------------- */
#center_access .border_left_title {
	margin: 0 0 1.5em;
}
#center_access address {
	margin: 0 0 1em;
}
.center_access_map {
	overflow: hidden;
	padding-top: 41.6666%;
	position: relative;
}
.center_access_map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}
@media screen and (max-width: 768px) {
#center_access .border_left_title {
	margin: 0 0 1.25em;
}
#center_access address {
	margin: 0 0 .75em;
}
.center_access_map {
	padding-top: 82%;
}
}

/************************************************************************
	05-01 移行期医療機関検索
**************************************************************************/
/* =====
	冒頭
======================================================== */
#search_intro{
	margin-bottom: 5.5rem;
}

#search_intro .wrapper{
	margin-bottom: 1.75em;
}

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

/* =====
	キーワードから探す
======================================================== */
.search_block{
	padding: 4rem 3.3% 5.25rem;
	border-radius: .8rem;
	background-color: #f7f7f7;
}
.keyword_block{
	padding-block: 2.75rem;
	margin-bottom: 4rem;
}

.keyword_block .flex_wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.search_block .block_title{
	font-size: 2.4rem;
	line-height: 1.5;
}

.keyword_block .block_title{
	flex-shrink: 0;
	width: fit-content;
}

.keyword_block #searchform{
	flex-grow: 1;
	margin-left: 5%;
}

.keyword_block #searchform .search_input{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.keyword_block #searchform .search_input input[type="text"]{
	flex-grow: 1;
	display: block;
	padding: .8em 1.5em;
	border-radius: .8rem;
	border: 1px solid #e6e6e6;
}

.keyword_block #searchform .search_input button{
	flex-shrink: 0;
	display: block;
	color: #fff;
	padding: .45em 3em .5em;
	margin-left: 5%;
	border-radius: 5em;
	background-color: var(--pink);
}
.keyword_block #searchform .search_input button:hover{
	background-color: var(--deep_pink);
	transition: background-color .4s;
}

@media screen and (max-width: 768px) {
	.search_block{
		padding: 2.5rem 3.5% 3rem;
		border-radius: .4rem;
	}
	.keyword_block{
		padding-block: 2rem;
	}

	.keyword_block .flex_wrapper{
		display: block;
	}

	.search_block .block_title{
		font-size: 2rem;
	}
	.keyword_block .block_title{
		width: auto;
		margin-bottom: .5em;
	}

	.keyword_block #searchform{
		margin-left: 0;
	}
	.keyword_block #searchform .search_input{
		display: block;
	}

	.keyword_block #searchform .search_input input[type="text"]{
		width: 100%;
		border-radius: .4rem;
		border: 1px solid #e6e6e6;
		margin-bottom: 1.5rem;
	}

	.keyword_block #searchform .search_input button{
		margin-inline: auto;
	}

}

/* =====
	疾患群・疾患名から探す
======================================================== */
.search_block .container{
	padding: 2.25rem 0 3rem;
	border-top: 2px dashed var(--pink);
}
.container_title{
	font-size: 2rem;
	color: var(--deep_pink);
	padding-left: 2.5em;
	position: relative;
}
.container_title .num{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 2em;
	height: 2em;
	padding-bottom: .15em;
	border-radius: 50%;
	background-color: var(--pink);
	position: absolute;
	left: 0;
	top: 0;
}

.container_title .required{
	display: inline-block;
	font-size: .7em;/* 14/20 */
	color: #fff;
	padding: .1em .8em .2em;
	margin-left: .75em;
	vertical-align: text-bottom;
	border-radius: 5em;
	background-color: var(--deep_pink);
}

#disease_search_container .pad{
	padding-left: 4.5%;
}

#disease_search_container .flex_wrapper{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

#disease_search_container .box{
	width: 49.4%;
	padding: 0 1rem;
	margin-bottom: 1rem;
	border: 1px solid #e6e6e6;
	border-radius: .8rem;
	background-color: #fff;
}

@media screen and (max-width: 768px) {
	.search_block .container{
		padding: 2.5rem 0 3.5rem;
		border-width: 1px;
	}

	.container_title{
		font-size: 1.8rem;
		padding-left: 2.15em;
	}
	.container_title .num{
		width: 1.8em;
		height: 1.8em;
	}
	.container_title .required{
		padding: .1em .66em .15em;
	}

	#disease_search_container .flex_wrapper{
		display: block;
	}
	#disease_search_container .box{
		width: 100%;
		border-radius: .4rem;
	}
}


/* 疾患群
-------------------------------------------------------- */
#disease_search_container .box .category,
#disease_search_container .box .acc_category{
	padding: 1.5rem 2.75em 1.5rem 1.5rem;
	position: relative;
}
#disease_search_container .box .acc_category{
	cursor: pointer;
}

#disease_search_container .box .acc_category .acc_btn{
	display: block;
	width: 2.5em;
	height: 2.5em;
	border-radius: 50%;
	background-color: #f7f7f7;
	position: absolute;
	top: 1rem;
	right: 0;
	transition: background-color .4s;
}
#disease_search_container .box .acc_category .acc_btn:hover,
#disease_search_container .box .acc_category.hover .acc_btn{
	background-color: var(--deep_pink);
}

#disease_search_container .box .acc_category .acc_btn::before,
#disease_search_container .box .acc_category .acc_btn::after{
	content: "";
	display: block;
	width: 1em;
	height: 1px;
	margin: auto;
	background-color: var(--font_color);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: transform .4s, background-color .4s;
}
#disease_search_container .box .acc_category .acc_btn::after{
	transform: rotate(90deg);
}

#disease_search_container .box .acc_category .acc_btn:hover::before,
#disease_search_container .box .acc_category .acc_btn:hover::after,
#disease_search_container .box .acc_category.hover .acc_btn::before,
#disease_search_container .box .acc_category.hover .acc_btn::after{
	background-color: #fff;
}
#disease_search_container .box .acc_category.acc_open .acc_btn::after{
	transform: rotate(0deg);
}


@media screen and (max-width: 768px) {
	#disease_search_container .box .category,
	#disease_search_container .box .acc_category{
		padding: 1.5rem 2.75em 1.5rem 0;
	}
}

/* 疾患名
-------------------------------------------------------- */
#disease_search_container .box .items{
	display: none;
	font-size: 1.4rem;
	padding: 1.5rem;
	border-top: 1px solid #e6e6e6;
}

#disease_search_container .box .items > ul > li{
	display: inline;
	margin-right: 0;
}
#disease_search_container .box .items > ul > li::after{
	content: "/";
	display: inline-block;
	padding: 0 0 0 .4em;
}
#disease_search_container .box .items > ul > li:nth-last-of-type(1)::after{
	display: none;
}


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

}

/* チェックボックス
-------------------------------------------------------- */
.checkbox{
	display: block;
	width: fit-content;
	padding-left: 1.8em;
	position: relative;
	border-radius: 0;
	margin: 0;
}

.checkbox input[type="checkbox"]{
	cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.checkbox input[type="checkbox"]::before,
.checkbox input[type="checkbox"]::after{
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	left: .2em;
	top: .4em;
}

.checkbox input[type="checkbox"]::before{
	border: 1px solid #ccc;
	border-radius: .2em;
	background-color: #fff;
}

.checkbox input[type="checkbox"]::after{
	border: 1px solid var(--pink);
	border-radius: .2em;
	background: var(--pink) url(../img/cmn/check_wh.svg) no-repeat center/80%;
	opacity: 0;
	z-index: 1;
	transition: opacity .4s;
}
.checkbox input[type="checkbox"]:checked::after{
	opacity: 1;
}

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

}


/* =====
	地域を選択
======================================================== */
#area_search_container{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 4rem;
	margin-bottom: 4rem;
	border-bottom: 2px dashed var(--pink);
}
#area_search_container .left{
	width: calc(96.5% - 52rem);
}
#area_search_container .pad{
	padding-left: 9%;
}

@media screen and (max-width: 1060px) {
	#area_search_container .left{
		width: calc(96.5% - 40rem);
	}
}

@media screen and (max-width: 860px) {
	#area_search_container .left{
		width: calc(98% - 32rem);
	}
}

@media screen and (max-width: 768px) {
	#area_search_container{
		display: block;
		padding-bottom: 3rem;
		margin-bottom: 2.5rem;
		border-width: 1px;
	}
	#area_search_container .left{
		width: 100%;
	}

	#area_search_container .pad{
		padding-left: 4.5%;
	}
}


/* 奈良県全域で探す
-------------------------------------------------------- */
#area_search_container .all_check_wrapper{
	padding: 1.5rem 3.5%;
	margin-bottom: 3.5rem;
	border: 1px solid #e6e6e6;
	border-radius: .8rem;
	background-color: #fff;
}


@media screen and (max-width: 768px) {
	#area_search_container .all_check_wrapper{
		padding: 1.5rem 1rem;
		margin-bottom: 2.5rem;
		border-radius: .4rem;
	}

}

/* 地域を絞って探す
-------------------------------------------------------- */

/* タブ
---------------- */
.subdivision_wrapper .tab_btn_box{
	display: flex;
	justify-content: space-between;
}

.subdivision_wrapper .tab_btn{
	--btn_color: #ffea85;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 19%;
	padding: .4em .25em;
	border-radius: 1.2em 1.2em 0 0;
	background-color: var(--btn_color);
	opacity: .5;
}
.subdivision_wrapper .tab_btn.blue_btn{
	--btn_color: #b7ebf8;
}
.subdivision_wrapper .tab_btn.green_btn{
	--btn_color: #c9e05d;
}
.subdivision_wrapper .tab_btn.purple_btn{
	--btn_color: #cec5fe;
}
.subdivision_wrapper .tab_btn.pink_btn{
	--btn_color: #ffdadc;
}

.subdivision_wrapper .tab_btn:hover,
.subdivision_wrapper .tab_btn.active{
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.subdivision_wrapper .tab_btn{
		width: 19.4%;
		padding: .4em .2em;
		border-radius: .6em .6em 0 0;
	}
}

/* チェック領域
---------------- */
.subdivision_wrapper .area_box{
	--box_color: #ffea85;
	width: 0;
	height: 0;
	padding: 0;
	border-width: 0;
	border-style: solid;
	border-color: var(--box_color);
	border-radius: 0 0 .8rem .8rem;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
}
.subdivision_wrapper .blue_box{
	--box_color: #b7ebf8;
}
.subdivision_wrapper .green_box{
	--box_color: #c9e05d;
}
.subdivision_wrapper .purple_box{
	--box_color: #cec5fe;
}
.subdivision_wrapper .pink_box{
	--box_color: #ffdadc;
}

.subdivision_wrapper .area_box.active{
	width: 100%;
	height: auto;
	padding: 2rem 2%;
	border-width: 1px;
	border-top-width: 4px;
	opacity: 1;
	visibility: visible;
}

.subdivision_wrapper .area_box .check_list{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(3, 33%);
    grid-template-columns: repeat(3, 33%);
	-webkit-box-pack: justify;
	justify-content: space-between;
	grid-row-gap: 1.25rem;
	max-width: 41rem;
	margin: 0 auto;
}

@media screen and (max-width: 540px) {
	.subdivision_wrapper .area_box .check_list{
		-ms-grid-columns: repeat(2, 48%);
		grid-template-columns: repeat(2, 48%);
		max-width: 24rem;
	}
}

/* マップ
-------------------------------------------------------- */
#area_search_container .right{
	width: 52rem;
	padding-top: 2rem;
}

#area_search_container #map_trigger{
	cursor: pointer;
	position: relative;
	transition: opacity .4s;
}
#area_search_container #map_trigger:hover{
	opacity: .7;
}

#area_search_container #map_trigger .map img{
	width: 100%;
}

#area_search_container #map_trigger .icon_expansion{
	display: block;
	width: 4%;/* 20/520 */
	position: absolute;
	right: 3%;
	bottom: 1%;
	z-index: 1;
}
#area_search_container .map_container .icon_expansion img{
	width: 100%;
}

@media screen and (max-width: 1060px) {
	#area_search_container .right{
		width: 40rem;
	}
}

@media screen and (max-width: 860px) {
	#area_search_container .right{
		width: 32rem;
	}
}

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

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

.modal_wrapper{
	max-width: 78rem;
	width: 92%;
	height: fit-content;
	margin: auto;
	transition: .4s;
	position: relative;
	z-index: 200;
}


.modal_wrapper .btn_close{
	width: 5rem;
	height: 5rem;
	position: absolute;
	right: 0;
	top: -5rem;
}

.modal_wrapper .btn_close::before,
.modal_wrapper .btn_close::after{
	content: "";
	display: block;
	width: 80%;
	height: 2px;
	margin: auto;
	background-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: background-color .4s;
}
.modal_wrapper .btn_close::before{
	transform: rotate(45deg);
}
.modal_wrapper .btn_close::after{
	transform: rotate(-45deg);
}

.modal_wrapper .btn_close:hover::before,
.modal_wrapper .btn_close:hover::after{
	background-color: var(--font_color);
}

#map_modal .map_img{
	width: 100%;
}

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

}

/* 検索ボタン
-------------------------------------------------------- */
#area_search_submit{
	display: block;
	color: #fff;
	padding: .45em 1.75em .5em;
	margin: 0 auto;
	border-radius: 5em;
	background-color: var(--pink);
}
#area_search_submit:hover{
	background-color: var(--deep_pink);
	transition: background-color .4s;
}

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

}

/************************************************************************
	05-02 移行期医療機関検索結果
**************************************************************************/
.results_intro{
	margin-bottom: 4rem;
}
.results_intro .parts_wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.results_intro .parts_wrapper .results_number{
	font-size: 1.8rem;
}
.results_intro .parts_wrapper .results_number .num{
	display: inline-block;
	font-size: 1.778em;/* 32/18 */
	line-height: 1;
	vertical-align: text-bottom;
	padding-inline: .15em;
}

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

	.results_intro .parts_wrapper .results_number{
		font-size: 1.4rem;
	}
	.results_intro .parts_wrapper .results_number .num{
		font-size: 1.666em;
		padding-inline: .1em;
	}
}

/* =====
	検索結果一覧部分
======================================================== */
.results_area{
	margin-bottom: 5.5rem;
}

.results_area .container{
	padding: 0 1.4%;
	border-top: 1px solid #e6e6e6;
}
.results_area .container:nth-last-of-type(1){
	border-bottom: 1px solid #e6e6e6;
}


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

	.results_area .container{
		padding: 0 .8rem;
	}
}

/* 病院名周辺
-------------------------------------------------------- */
.results_area .title_wrapper{
	cursor: pointer;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 2rem 5rem 2rem 0;
	position: relative;
}


.results_area .area_text{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	width: 7.7em;
	padding: 0 .5em .1em;
	margin-right: 1em;
	margin-block: 1rem;
	border-radius: 5em;
	background-color: #c9e05d;
	transition: color .4s, background-color .4s;
}
.results_area .title_wrapper:hover .area_text{
	color: #fff;
	background-color: var(--deep_pink);
}

.results_area .title{
	font-size: 2.4rem;
	line-height: 1.5;
	margin-right: 1.25em;
	margin-block: 1rem;
	transition: color .4s;
}
.results_area .title_wrapper:hover .title{
	color: var(--deep_pink);
}

.results_area .address{
	padding-left: 1.75em;
	margin-block: 1rem;
	position: relative;
	transition: color .4s;
}
.results_area .title_wrapper:hover .address{
	color: var(--deep_pink);
}
.results_area .address::before{
	content: "";
	display: block;
	width: 1em;
	height: 1.5em;
	background: url(../img/cmn/icon_pin.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: .25em;
}

.results_area .acc_btn{
	display: block;
	width: 2.5em;
	height: 2.5em;
	border-radius: 50%;
	background-color: #f7f7f7;
	position: absolute;
	top: calc(50% - 1.25em);
	right: 0;
	transition: background-color .4s;
}
.results_area .acc_btn:hover,
.results_area .title_wrapper:hover .acc_btn{
	background-color: var(--deep_pink);
}

.results_area .acc_btn::before,
.results_area .acc_btn::after{
	content: "";
	display: block;
	width: 1em;
	height: 1px;
	margin: auto;
	background-color: var(--font_color);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: transform .4s, background-color .4s;
}
.results_area .acc_btn::after{
	transform: rotate(90deg);
}

.results_area .title_wrapper:hover .acc_btn::before,
.results_area .title_wrapper:hover .acc_btn::after{
	background-color: #fff;
}
.results_area .title_wrapper.acc_open .acc_btn::after{
	transform: rotate(0deg);
}

@media screen and (max-width: 768px) {
	.results_area .title_wrapper{
		display: block;
		padding: 3.25rem 5rem 3.5rem 0;
		position: relative;
	}

	.results_area .area_text{
		font-size: 1.2rem;
		width: fit-content;
		margin: 0 0 1rem;
	}

	.results_area .title{
		font-size: 2rem;
		margin: 0 0 1rem;
	}

	.results_area .address{
		margin: 0;
	}
}

/* アコーディオン中身
-------------------------------------------------------- */
.results_area .acc_wrapper{
	display: none;
	padding-bottom: 1rem;
}

.results_area .acc_wrapper .box{
	margin-bottom: 2.5rem;
}

.results_area .border_left_title02{
	margin-bottom: .5em;
}

.results_area .department_list,
.results_area .system_list{
	display: flex;
	flex-wrap: wrap;
}

.results_area .department_list > li{
	padding-left: 1em;
	margin-right: 2em;
	position: relative;
}
.results_area .department_list > li::before{
	content: "";
	display: block;
	width: .4em;
	height: .4em;
	border-radius: 50%;
	background-color: var(--pink);
	position: absolute;
	left: 0;
	top: .66em;
}

.results_area .system_list{
	font-size: 1.4rem;
}
.results_area .system_list > li{
	position: relative;
}
.results_area .system_list > li::after{
	content: "/";
	display: inline-block;
	padding-inline: .25em;
}
.results_area .system_list > li:nth-last-of-type(1):after{
	display: none;
}

.results_area .link_primary{
	margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
	.results_area .system_list{
		font-size: 1.2rem;
	}
}


/************************************************************************
	06-01 患者さん・一般の方へ
**************************************************************************/
/* =====
	お知らせ
======================================================== */
#lower_index_news{
	background-color: var(--bg_pink);
}

#lower_index_news .inner{
	max-width: 104rem;
	width: 90%;
	margin: 0 auto;
}

#lower_index_news .tag_title{
	padding: .9em 1.25em;
}

#lower_index_news .news_list{
	padding: 2rem 3.8%;
	margin-bottom: 4rem;
	border-radius: .8rem;
	background-color: #fff;
}

#lower_index_news .news_list > li:nth-of-type(1){
	border-top: none;
}
#lower_index_news .news_list > li:nth-last-of-type(1){
	border-bottom: none;
}

#lower_index_news .news_list > li .text{
	font-size: 1.6rem;
}


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

	#lower_index_news .tag_title{
		padding: .66em 1em;
	}

	#lower_index_news .news_list{
		margin-bottom: 3rem;
	}

	#lower_index_news .news_list > li .text{
		font-size: 1.4rem;
	}
}


/************************************************************************
	06-02 公的な医療制度のご案内
**************************************************************************/
#systems .wrapper{
	padding: 3.25rem 1.5% 3.5rem;
	border-bottom: 1px solid #e6e6e6;
}
#systems .wrapper:nth-of-type(1){
	border-top: 1px solid #e6e6e6;
}

#systems .wrapper_title{
	font-size: 2.4rem;
	line-height: 1.5;
	margin-bottom: .85em;
}

#systems .link_text{
	line-height: 1.5;
	margin-bottom: .66em;
}
#systems .wrapper .link_text:nth-last-of-type(1){
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	#systems .wrapper{
		padding: 3rem 3% 3.25rem;
	}

	#systems .wrapper_title{
		font-size: 2rem;
	}
}

/************************************************************************
	07-02 移行期医療支援ガイド
**************************************************************************/

/* =====
	サイドバー
======================================================== */
/* カテゴリ
-------------------------------------------------------- */
.support_guide_sidebar .aside_cat_list > li:nth-of-type(2n) a{
	background-color: var(--green);
}
.support_guide_sidebar .aside_cat_list > li:nth-of-type(2n+1) a{
	background-color: var(--deep_green);
}
.support_guide_sidebar .aside_cat_list > li:nth-of-type(1) a{
	background-color: var(--thin_green);
}

@media screen and (max-width: 768px) {
	.support_guide_sidebar .aside_cat_list{
		justify-content: center;
	}
	.support_guide_sidebar .aside_cat_list > li a{
		min-width: 0;
		padding: .4em 1em;
	}
}

/* タグ
-------------------------------------------------------- */
.support_guide_sidebar .aside_tag_list{
	width: calc(100% + .8em);
	margin-left: -.2em;
}
.support_guide_sidebar .aside_tag_list > li{
	margin: 0 .4em .57em 0;
}
.support_guide_sidebar .aside_tag_list > li a{
	padding: .25em .4em .25em .4em;
}
.support_guide_sidebar .aside_tag_list > li a::before{
	display: none;
}

@media screen and (max-width: 768px) {
	.support_guide_sidebar .aside_tag_list{
		width: calc(100% + .84em);
		margin-left: 0;
	}
	.support_guide_sidebar .aside_tag_list > li{
		margin: 0 .84em .84em 0;
	}
}

/* =====
	リスト
======================================================== */
.support_guide_list > li{
	padding: 3.25rem 1.7% 3.5rem;
	border-bottom: 1px solid #e6e6e6;
}
.support_guide_list > li:nth-of-type(1){
	border-top: 1px solid #e6e6e6;
}

@media screen and (max-width: 768px) {
	.support_guide_list > li{
		padding: 3.25rem .8rem 3.5rem;
	}
}

/* カテゴリ・タイトル
-------------------------------------------------------- */
.support_guide_list > li .title_cat{
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-bottom: 2.5rem;
}

.support_guide_list > li .title_cat .cat{
	display: flex;
	align-items: center;
	justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.5;
	min-width: 9.3em;/* 130/14 */
    padding: .15em 1em;
	margin-right: 1.5em;
    border-radius: 5em;
    background-color: var(--green);
}
.support_guide_list > li .title_cat .cat.disease_cat{
	background-color: var(--deep_green);
}

.support_guide_list > li .title_cat .title{
	font-size: 2.4rem;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.support_guide_list > li .title_cat{
		display: block;
		margin-bottom: 1.5rem;
	}

	.support_guide_list > li .title_cat .cat{
		font-size: 1.2rem;
		max-width: 10em;
		min-width: 0;
		padding: .1em 1em .15em;
		margin-right: 0;
		margin-bottom: .66em;
	}

	.support_guide_list > li .title_cat .title{
		font-size: 2rem;
	}

}

/* 対象となる疾患 / 参考サイト
-------------------------------------------------------- */
.support_guide_list > li > dl{
	margin-bottom: 1.5rem;
}
.support_guide_list > li > dl:nth-last-of-type(1){
	margin-bottom: 0;
}

.support_guide_list > li > dl dt{
	font-size: 2rem;
	line-height: 1.5;
	padding-left: 1em;
	margin-bottom: .5em;
	position: relative;
}
.support_guide_list > li > dl dt::before{
	content: "";
	display: block;
	width: .2em;
	height: 1.4em;
	background-color: var(--pink);
	position: absolute;
	left: 0;
	top: calc(50% - .7em);
}

.support_guide_list > li .disease_dl dd{
	display: inline-block;
	line-height: 1.5;
	padding-left: 1em;
	margin-right: 1.75em;
	margin-bottom: .75em;
	position: relative;
}
.support_guide_list > li .disease_dl dd::before{
	content: "";
	display: block;
	width: .4em;/* 6/16 */
	height: .4em;
	border-radius: 50%;
	background-color: var(--pink);
	position: absolute;
	left: 0;
	top: .55em;
}

.support_guide_list > li .reference_dl dd{
	line-height: 1.5;
	margin-bottom: .55em;
}
.support_guide_list > li .reference_dl dd:nth-last-of-type(1){
	margin-bottom: 0;
}


@media screen and (max-width: 768px) {
	.support_guide_list > li > dl{
		margin-bottom: 2rem;
	}

	.support_guide_list > li > dl dt{
		font-size: 1.6rem;
	}

	.support_guide_list > li .disease_dl dd{
		margin-right: .75em;
		margin-bottom: .25em;
		position: relative;
	}
	.support_guide_list > li .reference_dl dd{
		margin-bottom: .75em;
	}
}

/************************************************************************
	07-03 セミナーアーカイブ
**************************************************************************/
/* =====
	セミナーアーカイブ用左右配置
======================================================== */


@media screen and (max-width: 1024px) {
	.seminar_outer{
		display: block;
		width: 92%;
	}

	.seminar_outer aside{
		width: fit-content;
		max-width: 50rem;
		padding: 2.75rem 2.5% 2.5rem;
		margin-inline: auto;
		border-radius: .8rem;
		overflow: visible;
		position: static;
	}

	.seminar_outer .aside_archive_list{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: calc(100% + .75em);
	}
	.seminar_outer .aside_archive_list > li{
		margin-right: .75em;
		margin-bottom: .75em;
	}
	.seminar_outer .aside_archive_list > li:nth-last-of-type(1){
		margin-bottom: .75em;
	}
	.seminar_outer .aside_archive_list > li a{
		display: flex;
		justify-content: center;
		padding: .375em 1.25em .425em;
		border-radius: 5em;
	}

	.seminar_outer .right_container{
		width: 100%;
		margin-bottom: 4rem;
	}

	.pager,
	.wp-pagenavi{
		justify-content: center;
		font-size: 1.5rem;
		width: 110%;
		margin-left: -5%;
	}

	.pager a, .pager span,
	.wp-pagenavi a, .wp-pagenavi span{
		margin-inline: .25em;
	}
	.pager a:nth-child(1),
	.wp-pagenavi a:nth-child(1){
		margin-left: 0;
	}
	.pager a:nth-last-child(1),
	.wp-pagenavi a:nth-last-child(1){
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	.seminar_outer{
		width: 88%;/* デザイン650/750　より気持ち広く */
	}
	.seminar_outer aside{
		width: 100%;
		max-width: none;
		margin-left: 0;
		border-radius: .4rem;
	}

}

/* =====
	リスト
======================================================== */
.seminar_list{
	display: flex;
	flex-wrap: wrap;
}
.seminar_list > li{
	width: 49%;/* 470/960 */
	padding: 2rem 2% 2.5rem;
	margin-right: 2%;
	margin-bottom: 2rem;
	border-radius: .8rem;
	background-color: #f7f7f7;
}
.seminar_list > li:nth-of-type(2n){
	margin-right: 0;
}

@media screen and (max-width: 768px) {
	.seminar_list{
		display: block;
	}
	.seminar_list > li{
		width: 100%;
		padding: 2rem 4% 2.5rem;
		margin-right: 0;
		border-radius: .4rem;
	}
}

/* 中身
-------------------------------------------------------- */
.seminar_list > li .movie_wrapper{
	width: 100%;
	margin-bottom: 1rem;
	position: relative;
}
.seminar_list > li .movie_wrapper::before{
	content: "";
	display: block;
	padding-top: 56.25%;
}
.seminar_list > li .movie_wrapper iframe,
.seminar_list > li .movie_wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.seminar_list > li .date{
	margin-bottom: .5em;
}

.seminar_list > li .title{
	font-size: 2rem;
	line-height: 1.5;
	/* 行数制限 */
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	max-height: 4.5em;
}

@media screen and (max-width: 768px) {
	.seminar_list > li .title{
		font-size: 1.6rem;
	}
}


/************************************************************************
	07-04 アンケート結果
**************************************************************************/

.questionnaire_container{
	margin-bottom: 10rem;
}
.questionnaire_container:nth-last-of-type(1){
	margin-bottom: 0;
}

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

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

/* テキスト
-------------------------------------------------------- */
.questionnaire_container .border_left_title{
	margin-bottom: 1.5em;
}

.questionnaire_container .circle_left_title{
	margin-bottom: .75em;
}

.questionnaire_container .guidance{
	margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
	.questionnaire_container .border_left_title{
		margin-bottom: 1.25em;
	}

	.questionnaire_container .guidance{
		margin-bottom: 1.25em;
	}

}

/* 調査期間など
-------------------------------------------------------- */
.questionnaire_dl{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.questionnaire_dl dt{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 7.5em;
	background-color: #f7f7f7;
}

.questionnaire_dl dd{
	width: calc(98.25% - 7.5em);
}

.questionnaire_dl dt,
.questionnaire_dl dd{
	padding: .4em 0;
	margin-bottom: .5em;
}

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

}


/* ボタン
-------------------------------------------------------- */
.questionnaire_container .to_result{
	display: block;
	color: #fff;
	width: fit-content;
	padding: .35em 3em .4em 1.75em;
	border-radius: 5em;
	background-color: var(--pink);
	position: relative;
}
.questionnaire_container .to_result:hover{
	background-color: var(--deep_pink);
}

.questionnaire_container .to_result::after{
	content: "";
	width: .9em;
	height: 1.1em;
	background: url(../img/cmn/icon_file_wh.svg) no-repeat center/contain;
	position: absolute;
	right: 1.5em;
	top: calc(50% - .55em);
}

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

}


/************************************************************************
	08 お問い合わせ
**************************************************************************/
#form_area {
	padding: 6rem 5%;
	background-color: #f7f7f7;
}
.form_tbl {
	max-width: 91rem;
	margin: 0 auto 2rem;
}
.form_tbl .wrapper {
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding: 1.5rem 0;
}
.form_tbl .wrapper > dt {
	flex-shrink: 0;
	font-size: 1.8rem;
	line-height: 1.5;
	width: 31.4rem;
}

.form_tbl .wrapper > dt > p {
	padding-left: 3.2em;
	position: relative;
}
.form_tbl .wrapper > dt > p::before {
	content: "任意";
	display: block;
	font-size: .78em;/* 14/18 */
	color: #fff;
	width: fit-content;
	padding: .15em .75em .175em;
	border-radius: 5em;
	background-color: #999;
	position: absolute;
	left: 0;
	top: .15em;
}
.form_tbl .wrapper > dt.required > p::before {
	content: "必須";
	background-color: var(--pink);
}
.form_tbl .wrapper > dd {
	flex-grow: 1;
}
.radio_wrap {
	background: #fff;
	border: solid 1px #e6e6e6;
	border-radius: .8rem;
	padding: 2.4rem;
}
.radio_wrap .wpcf7-form-control {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.form_age > p{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.form_age .age_unit {
	margin: 0 0 0 1.2rem;
}
.form_acceptance {
	margin: 2.4rem 0 0;
}
.form_submit_wrapper {
	border-top: solid 1px #e6e6e6;
	padding: 4rem 0 0;
}
.form_submit_wrapper > p {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
}
.form_submit_wrapper input {
	color: #fff;
	font-weight: 700;
	max-width: 15rem;
	width: 100%;
	background: var(--pink);
	border-radius: 100px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	padding: .5em;
	transition: background-color .4s;
}
.form_submit_wrapper input:hover{
	background-color: var(--deep_pink);
}
.form_submit_wrapper input:disabled {
	background: #ccc;
}
.wpcf7-spinner {
	display: none;
}

@media screen and (max-width: 768px) {
#form_area {
	padding: 4rem 5%;
}
.form_tbl .wrapper {
	display: block;
	padding: 0;
}
.form_tbl .wrapper:not(:last-child) {
	margin: 0 0 3.2rem;
}
.form_tbl .wrapper > dt {
	font-size: 1.6rem;
	width: auto;
	margin: 0 0 1.6rem;
}
.radio_wrap {
	padding: 1.2rem;
}
.radio_wrap .wpcf7-form-control {
	display: block;
}
.form_submit_wrapper {
	padding: 2.4rem 0 0;
}
}


/* 各フォーム要素
-------------------------------------------------------- */
/* プレースホルダー */
.form_tbl ::placeholder {
	color: #b3b3b3;
}

/* input系 */
.form_tbl input[type="text"],
.form_tbl input[type="email"],
.form_tbl input[type="tel"],
.form_tbl select,
.form_tbl textarea {
	width: 100%;
	background: #fff;
	border: solid 1px #e6e6e6;
	border-radius: .8rem;
	display: block;
	padding: 1.2rem 2.4rem;
}
.form_tbl textarea {
	height: 28rem;
}
.form_tbl input.is-medium {
	max-width: 16rem;
}
.form_tbl input.is-small {
	max-width: 6rem;
	padding: 1.2rem 2rem;
}

@media screen and (max-width: 768px) {
	.form_tbl input[type="text"],
	.form_tbl input[type="email"],
	.form_tbl input[type="tel"],
	.form_tbl select,
	.form_tbl textarea {
		padding: 1.2rem;
	}
	.form_tbl textarea {
		height: 14rem;
	}
}

/* ラジオ */
.wpcf7-radio,
.wpcf7-radio .wpcf7-list-item {
	display: block;
}
.wpcf7-radio .wpcf7-list-item.first {
	margin-top: 0;
}
.wpcf7-radio .wpcf7-list-item-label {
	display: inline-block;
	padding: 0 0 0 1.5em;
	position: relative;
}
.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item-label::after {
	content: "";
	width: 1em;
	height: 1em;
	border: solid 1px #ccc;
	border-radius: 50%;
	position: absolute;
	top: .4em;
	left: 0;
}
.wpcf7-radio .wpcf7-list-item-label::before {
	background: #fff;
}
.wpcf7-radio .wpcf7-list-item-label::after {
	background: var(--pink);
	outline: 1px solid #fff;
	outline-offset: -2px;
	opacity: 0;
}
@media screen and (min-width: 769px) {
	.wpcf7-radio .wpcf7-list-item {
		margin: 0 4rem 0 0;
	}
	.wpcf7-radio .wpcf7-list-item.last {
		margin-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.wpcf7-radio .wpcf7-list-item {
		margin-top: .8rem;
	}
	.wpcf7-radio .wpcf7-list-item.first {
		margin-top: 0;
	}
}

/* アピアランス */
.wpcf7-acceptance .wpcf7-list-item-label {
	display: inline-block;
	padding: 0 0 0 1.8em;
	position: relative;
}
.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
	content: "";
	width: 1em;
	height: 1em;
	position: absolute;
	top: .4em;
	left: .2em;
	transition: .5s;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
	border: 1px solid #ccc;
	border-radius: .2em;
	background-color: #fff;
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
	border: 1px solid var(--pink);
	border-radius: .2em;
	background: var(--pink) url(../img/cmn/check_wh.svg) no-repeat center / 80%;
	opacity: 0;
	z-index: 1;
	transition: opacity .4s;
}
.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}

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


/* プライバシーポリシー
-------------------------------------------------------- */
#privacy{
	max-height: 40rem;
	padding: 1em 3%;
	border: 1px solid #e6e6e6;
	border-radius: .8rem;
	background-color: #fff;
	overflow: auto;
}

#privacy dl > dd{
	margin-bottom: 1.5em;
}

#privacy dl > dd .disc > li{
	padding-left: 2em;
}
#privacy dl > dd .disc > li::before{
	left: 0;
}

@media screen and (max-width: 768px) {
#privacy{
	max-height: 20rem;
}
}

/* 送信完了
-------------------------------------------------------- */
.thanks_container .border_left_title {
	margin: 0 0 1.5em;
}
.thanks_container .back_btn {
	margin: 4rem auto 0;
}
@media screen and (max-width: 768px) {
.thanks_container .border_left_title {
	margin: 0 0 1.25em;
}
.thanks_container .back_btn {
	margin: 2.4rem auto 0;
}
}

