@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@300&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');


/* 
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400 500 700 900;
  font-style: normal;
}

.m-plus-2-<uniquifier> {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

*/

/* 変数 */
:root {
	/* 色 */
	--font_color: #303030;
	--white: #fdfdfd;
	--gray: #999;
	--bg_thin_gray: #f2f2f2;
	--red: #f90000;
	--blue: #003C97;
	--light_blue: #168DDB;
	--thin_light_blue: #E2F6F8;
	--bg_light_blue: #d4f4ff;
	--pink: #fd5a68;
	--orange: #ff7c00;

	/* フォント */
	--font_primary: "Zen Kaku Gothic New", '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'YuGothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--mincho: '游明朝 Medium', 'Yu Mincho Medium', '游明朝', 'YuMincho', hiragino-mincho-pron, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	--en: Helvetica, "Helvetica Neue", Arial, Verdana, "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "YuGothic", "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--m_plus: "M PLUS 2", 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);

	/* グラデーション */
	--blue_grada_w: -webkit-linear-gradient(0deg, var(--blue) 0%, var(--light_blue) 100%);
	--blue_grada: linear-gradient(90deg, var(--blue) 0%, var(--light_blue) 100%);
	--pink_grada_w: -webkit-linear-gradient(0deg, var(--pink) 0%, #fcb184 100%);
	--pink_grada: linear-gradient(90deg, var(--pink) 0%, #fcb184 100%);

	/* 左右別色 */
	--blue_2color_w:  -webkit-linear-gradient(0deg, #0056d3 50%, var(--blue) 50%);
	--blue_2color:  linear-gradient(90deg, #0056d3 50%, var(--blue) 50%);
	--orange_2color_w:  -webkit-linear-gradient(0deg, #FC9B4C 50%, var(--orange) 50%);
	--orange_2color:  linear-gradient(90deg, #FC9B4C 50%, var(--orange) 50%);

	/* vwの値をスクロールバーを含めて考慮 */
	--js_windowWidth : 100vw;/* JSで書き換え。（ウインドウ幅-スクロールバー）px */
	--js_vw : 1vw;/* JSで書き換え。(（ウインドウ幅-スクロールバー）/100)pxで、vwのように使用する。 */
	/* marjin-inline: calc(50% - 50wv); をスクロールバー考慮できるように。 */
	--breack_through: calc(50% - var(--js_windowWidth) / 2);
	--breack_through_half: calc(25% - var(--js_windowWidth) / 4);
}

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

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

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

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

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

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


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


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

/************************************************************************
	フォント関係
**************************************************************************/
html {
	font-size: 62.5%;/* 1.6remで16px */
}
/* 以降 (XXpx/16)×0.625 */
@media screen and (max-width: 1440px){
	html {
		font-size: 57.81%;/* 1.6remで14.8px */
	}
}
@media screen and (max-width: 1320px){
	html {
		font-size: 52.73%;/* 1.6remで13.5px */
	}
}
/* ↓1200pxでアサイドがなくなる */
@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 */
	}
}
@media screen and (max-width: 960px){
	html {
		font-size: 50.78%;/* 1.6remで13px */
	}
}

/* 以降、350pxで14pxにしたいので1.4remで指定 */
/* font-size100%時、1.4rem=22.4pxなので、XXpx/22.4=目的の％ */
@media screen and (max-width: 768px){
	html {
		font-size: 93.75%;/* 1.4remで21px */
	}
}
@media screen and (max-width: 530px){/* 350px*1.5 */
	html {
		font-size: 78.13%;/* 1.4remで17.5px */
	}
}
@media screen and (max-width: 430px){
	html {
		font-size: calc(2.667 * var(--js_vw));/* 375pxで10px 1.4remで14px 本来は2.667vw */
	}
}

/* 1601px以上はvw */
@media screen and (min-width: 1616px){
	html {
		font-size: calc(.625 * var(--js_vw));/* 画面幅1600pのとき1.6remで16px */
	}
}
/*
 body
-------------------------------------------------------- */

body {
	font-family: var(--font_primary);
	color: var(--font_color);
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.5;
	background-color: var(--white);
	word-wrap: normal;
}

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

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

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

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

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

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

.fz80{
	font-size: 8rem;
}

.fz108{
	font-size: 10.8rem;
}

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

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

	.fz80{
		font-size: 5.28rem;
	}

	.fz108{
		font-size: 7.12rem;
	}

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

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


/* 
文字色
-------------------------------------------------------- */
.white{ color: var(--white);}
.gray{ color: var(--gray);}
.red{ color: var(--red);}
.blue{ color: var(--blue);}
.light_blue{ color: var(--light_blue);}
.thin_light_blue{ color: var(--thin_light_blue);}
.pink{ color: var(--pink)}
.orange{ color: var(--orange);}

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

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

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

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

.ls0{ letter-spacing: 0; }
.ls1{ letter-spacing: .1em; }
.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;
}
.capitalize.no{
	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_list li, .attention_mark{
	position: relative;
	padding-left: 1.1em;
}
.attention_list li::before, .attention_mark::before{
	content: "\0203B";
	position: absolute;
	left: 0;
}
span.attention_mark{
	display: inline-block;
}

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

/* 「⚫︎」 */
.circle li, .circle_mark{
	padding-left: 1em;
	margin-bottom: .1em;
	position: relative;
}
.circle li::before, .circle_mark::before{
	content: "";
	display: block;
	width: .3em;
	height: .3em;
	background-color: var(--blue);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: .7em;
}

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

/* (1) */
.num_list_parentheses{
	counter-reset: num_list_parentheses;
}
.num_list_parentheses > li{
	counter-increment: num_list_parentheses;
	padding-left: 1.5em;
	position: relative;
}
.num_list_parentheses > li::before{
	content: "("counter(num_list_parentheses)")";
	position: absolute;
	left: 0;
}

/* ①〜 */
.circle_num > li{
	padding-left: 1.25em;
	position: relative;
}
.circle_num > li::before{
	position: absolute;
	left: 0;
}
.circle_num > li:nth-of-type(1)::before{ content: "\2460";}
.circle_num > li:nth-of-type(2)::before{ content: "\2461";}
.circle_num > li:nth-of-type(3)::before{ content: "\2462";}
.circle_num > li:nth-of-type(4)::before{ content: "\2463";}
.circle_num > li:nth-of-type(5)::before{ content: "\2464";}
.circle_num > li:nth-of-type(6)::before{ content: "\2465";}
.circle_num > li:nth-of-type(7)::before{ content: "\2466";}
.circle_num > li:nth-of-type(8)::before{ content: "\2467";}
.circle_num > li:nth-of-type(9)::before{ content: "\2468";}
.circle_num > li:nth-of-type(10)::before{ content: "\2469";}
.circle_num > li:nth-of-type(11)::before{ content: "\246A";}
.circle_num > li:nth-of-type(12)::before{ content: "\246B";}
.circle_num > li:nth-of-type(13)::before{ content: "\246C";}
.circle_num > li:nth-of-type(14)::before{ content: "\246D";}
.circle_num > li:nth-of-type(15)::before{ content: "\246E";}
.circle_num > li:nth-of-type(16)::before{ content: "\246F";}
.circle_num > li:nth-of-type(17)::before{ content: "\2470";}
.circle_num > li:nth-of-type(18)::before{ content: "\2471";}
.circle_num > li:nth-of-type(19)::before{ content: "\2472";}
.circle_num > li:nth-of-type(20)::before{ content: "\2473";}

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

}


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

.inner.secondary{
	max-width: 148rem;
	width: 94%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

}

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

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

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

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

/************************************************************************
	タイトル
**************************************************************************/
/* 
	数字付き
-------------------------------------------------------- */
.num_sec_title{
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	width: fit-content;
	padding-left: 4em;
	margin-inline: auto;
	position: relative;
}
.num_sec_title .num{
	display: -webkit-box;
    display: flex;
	-webkit-box-pack: center;
	justify-content: center;
    -webkit-box-align: center;
    align-items: center;
	font-family: var(--m_plus);
    color: var(--white);
	line-height: 1;
    text-transform: capitalize;
    width: fit-content;
    padding: .15em .85em .3em;
    border-radius: 5em;
    background-image: var(--blue_2color_w);
    background-image: var(--blue_2color);
    position: absolute;
    left: 0;
    top: .1em;
}

@media screen and (max-width: 768px) {
	.num_sec_title{
		text-align: center;
		width: 100%;
		padding-left: 0;
		padding-top: 1.75em;
	}

	.num_sec_title .num{
		font-size: .9em;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
	}
}

/* 
	下線装飾付きタイトル
-------------------------------------------------------- */
.u_bar_title{
	font-weight: 500;
	color: var(--blue);
	text-align: center;
	letter-spacing: .1em;
	padding-bottom: .75em;
	position: relative;
}
.u_bar_title::after{
	content: "";
	display: block;
	width: 1.6em;
	height: 2px;
	background-color: var(--blue);
	position: absolute;
	left: calc(50% - .8em);
	bottom: 0;
}

@media screen and (max-width: 768px) {
	.u_bar_title{
		padding-bottom: .5em;
	}
}


/* 
	角丸、背景色付きタイトル
-------------------------------------------------------- */
.radius_title01{
	font-weight: 700;
	color: var(--blue);
	text-align: center;
	letter-spacing: .1em;
	padding: .75em;
	border-radius: 5em;
	background-color: var(--bg_thin_gray);
}


@media screen and (max-width: 768px) {
	.radius_title01{
		width: 104%;
		padding: .75em .25em;
		margin-left: -2%;
		border-radius: .84em;
	}
}


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


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


/************************************************************************
	ボタン
**************************************************************************/
.btn_primary{
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    width: fit-content;
    padding: 1em 4em 1em 1.5em;
    border-radius: 5em;
    background-color: var(--blue);
    position: relative;
    transition: background-color .4s;
}
.btn_primary:hover{
	background-color: var(--light_blue);
}

.btn_primary::before,
.btn_primary::after{
	content: "";
	display: block;
	width: 1.8em;
	height: 1.8em;
	position: absolute;
	right: .8em;
	top: calc(50% - .9em);
}
.btn_primary::before{
	border-radius: 50%;
	background-color: var(--white);
}
.btn_primary::after{
	-webkit-mask: url(../img/cmn/btn_arrow_blue.svg?250624) no-repeat center/50%;
	mask: url(../img/cmn/btn_arrow_blue.svg?250624) no-repeat center/50%;
	background-color: inherit;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.btn_primary {
        padding-right: 5em;
    }
}

.grada_btn{
	--btn_grada_w: -webkit-linear-gradient(0deg, var(--pink) 25%, #fcb184 100%);
	--btn_grada: linear-gradient(90deg, var(--pink) 25%, #fcb184 100%);
	--before_grada_w: linear-gradient(0deg, var(--pink) 80%, transparent 100%);
	--before_grada: linear-gradient(90deg, var(--pink) 80%, transparent 100%);

	display: block;
	font-weight: 700;
	color: var(--white);
	border-radius: 5em;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	position: relative;
	overflow: hidden;
}
.grada_btn:hover{
	transform: scale(1.1);
}

.grada_btn::before{
	content: "";
	display: block;
	width: 25%;
	height: 100%;
	background-image: var(--before_grada_w);
	background-image: var(--before_grada);
	position: absolute;
	left: 0;
	top: 0;
	transition: width .4s;
}
.grada_btn:hover::before{
	width: 125%;
}

.grada_btn .btn_text{
	display: block;
	padding: 1em 4.5em 1em 1.25em;
	position: relative;
	z-index: 1;
}
.grada_btn .btn_text::before,
.grada_btn .btn_text::after{
	content: "";
	display: block;
	width: 1.78em;
	height: 1.78em;
	position: absolute;
	right: .8em;
	top: calc(50% - .89em);
}
.grada_btn .btn_text::before{
	border-radius: 50%;
	background-color: var(--white);
}
.grada_btn .btn_text::after{
	background: url(../img/cmn/btn_arrow_pink.svg?250624) no-repeat center/50%;
	z-index: 1;
}

/* 電話ボタン */
.grada_btn.tel_btn{
	width: 100%;
	max-width: 9em;
}
.grada_btn.tel_btn .btn_text{
	padding: .15em .54em .15em 1.8em;
}
.grada_btn.tel_btn .btn_text::after{
	display: none;
}
.grada_btn.tel_btn .btn_text::before{
	width: 1em;
	height: 1em;
	background: url(../img/cmn/icon_tel_wh.svg) no-repeat center/contain;
	top: calc(50% - .5em);
	right: auto;
	left: .5em;
}

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

}


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

}

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

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

.nowrap {
	flex-wrap: nowrap;
}

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

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

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

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

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

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

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



/************************************************************************
	その他
**************************************************************************/
.body_wrap{
	padding: 0 1.2%;/* 1600px時左右20px */
}
.hidden{
	overflow: hidden;
}

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


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

.fit{
	width: fit-content;
}

.relative{
	position: relative;
}

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

/* 
 ボックスシャドウ
-------------------------------------------------------- */
.shadow, .shadow_trance{
	box-shadow: var(--shadow_primary);
}
a.shadow:hover, .shadow_trance:hover{
	box-shadow: 0 0 0 0 rgba(0, 0, 0, .08);
	transform: translateY(.2rem);
}

/* 
 Youtube埋め込み、GoogleMap埋め込みなど
-------------------------------------------------------- */
.map_box{
	position: relative;
}
.map_box::before{
	content: "";
	display: block;
	padding-top: 75%;
}
.map_box iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

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


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


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



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


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

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

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

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

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

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

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

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

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

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

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

/* 黒背景スライドしてから本来の要素がスライド　*/

.black_slide,
.black_slide_wrap{
	position: relative;
}
.black_slide_wrap.fit{
	width: fit-content;
}
.black_slide::after,
.black_slide_wrap::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 0;
	background-color: #000;
}

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

.animation.black_slide::after,
.animation.black_slide_wrap::after{
	animation: black_slide 1.2s ease-in-out forwards;
}
.animation.black_slide.reverse::after,
.animation.black_slide_wrap.reverse::after{
	animation: black_slide_reverse 1.2s ease-in-out forwards;
}
.animation.black_slide.both::before,
.animation.black_slide_wrap.both::before{/* 両方向から用 */
	animation: black_slide 1.2s ease-in-out forwards;
}
.animation.black_slide.both::after,
.animation.black_slide_wrap.both::after{/* 両方向から用 */
	animation: black_slide_reverse 1.2s ease-in-out forwards;
}

.black_slide > *,
.black_slide_wrap > *{
	opacity: 0;
}
.animation.black_slide > *,
.animation.black_slide_wrap > *{
	animation: black_fade 1.2s ease forwards;
}

.black_slide.animation.delay01::after,
.black_slide_wrap.animation.delay01::after,
.black_slide.both.animation.delay01::before,
.black_slide_wrap.animation.delay01::before,
.black_slide.animation.delay01 > *,
.black_slide_wrap.animation.delay01 > *{
	animation-delay: .1s !important;
}
.black_slide.animation.delay02::after,
.black_slide_wrap.animation.delay02::after,
.black_slide.both.animation.delay02::before,
.black_slide_wrap.animation.delay02::before,
.black_slide.animation.delay02 > *,
.black_slide_wrap.animation.delay02 > *{
	animation-delay: .2s !important;
}
.black_slide.animation.delay03::after,
.black_slide_wrap.animation.delay03::after,
.black_slide.both.animation.delay03::before,
.black_slide_wrap.animation.delay03::before,
.black_slide.animation.delay03 > *,
.black_slide_wrap.animation.delay03 > *{
	animation-delay: .3s !important;
}
.black_slide.animation.delay04::after,
.black_slide_wrap.animation.delay04::after,
.black_slide.both.animation.delay04::before,
.black_slide_wrap.animation.delay04::before,
.black_slide.animation.delay04 > *,
.black_slide_wrap.animation.delay04 > *{
	animation-delay: .4s !important;
}
.black_slide.animation.delay05::after,
.black_slide_wrap.animation.delay05::after,
.black_slide.both.animation.delay05::before,
.black_slide_wrap.animation.delay05::before,
.black_slide.animation.delay05 > *,
.black_slide_wrap.animation.delay05 > *{
	animation-delay: .5s !important;
}
.black_slide.animation.delay06::after,
.black_slide_wrap.animation.delay06::after,
.black_slide.both.animation.delay06::before,
.black_slide_wrap.animation.delay06::before,
.black_slide.animation.delay06 > *,
.black_slide_wrap.animation.delay06 > *{
	animation-delay: .6s !important;
}
.black_slide.animation.delay07::after,
.black_slide_wrap.animation.delay07::after,
.black_slide.both.animation.delay07::before,
.black_slide_wrap.animation.delay07::before,
.black_slide.animation.delay07 > *,
.black_slide_wrap.animation.delay07 > *{
	animation-delay: .7s !important;
}
.black_slide.animation.delay08::after,
.black_slide_wrap.animation.delay08::after,
.black_slide.both.animation.delay08::before,
.black_slide_wrap.animation.delay08::before,
.black_slide.animation.delay08 > *,
.black_slide_wrap.animation.delay08 > *{
	animation-delay: .8s !important;
}
.black_slide.animation.delay09::after,
.black_slide_wrap.animation.delay09::after,
.black_slide.both.animation.delay09::before,
.black_slide_wrap.animation.delay09::before,
.black_slide.animation.delay09 > *,
.black_slide_wrap.animation.delay09 > *{
	animation-delay: .9s !important;
}
.black_slide.animation.delay10::after,
.black_slide_wrap.animation.delay10::after,
.black_slide.both.animation.delay10::before,
.black_slide_wrap.animation.delay10::before,
.black_slide.animation.delay10 > *,
.black_slide_wrap.animation.delay10 > *{
	animation-delay: 1s !important;
}
.black_slide.animation.delay11::after,
.black_slide_wrap.animation.delay11::after,
.black_slide.both.animation.delay11::before,
.black_slide_wrap.animation.delay11::before,
.black_slide.animation.delay11 > *,
.black_slide_wrap.animation.delay11 > *{
	animation-delay: 1.1s !important;
}
.black_slide.animation.delay12::after,
.black_slide_wrap.animation.delay12::after,
.black_slide.both.animation.delay12::before,
.black_slide_wrap.animation.delay12::before,
.black_slide.animation.delay12 > *,
.black_slide_wrap.animation.delay12 > *{
	animation-delay: 1.2s !important;
}
.black_slide.animation.delay13::after,
.black_slide_wrap.animation.delay13::after,
.black_slide.both.animation.delay13::before,
.black_slide_wrap.animation.delay13::before,
.black_slide.animation.delay13 > *,
.black_slide_wrap.animation.delay13 > *{
	animation-delay: 1.3s !important;
}
.black_slide.animation.delay14::after,
.black_slide_wrap.animation.delay14::after,
.black_slide.both.animation.delay14::before,
.black_slide_wrap.animation.delay14::before,
.black_slide.animation.delay14 > *,
.black_slide_wrap.animation.delay14 > *{
	animation-delay: 1.4s !important;
}
.black_slide.animation.delay15::after,
.black_slide_wrap.animation.delay15::after,
.black_slide.both.animation.delay15::before,
.black_slide_wrap.animation.delay15::before,
.black_slide.animation.delay15 > *,
.black_slide_wrap.animation.delay15 > *{
	animation-delay: 1.5s !important;
}
.black_slide.animation.delay16::after,
.black_slide_wrap.animation.delay16::after,
.black_slide.both.animation.delay16::before,
.black_slide_wrap.animation.delay16::before,
.black_slide.animation.delay16 > *,
.black_slide_wrap.animation.delay16 > *{
	animation-delay: 1.6s !important;
}
.black_slide.animation.delay17::after,
.black_slide_wrap.animation.delay17::after,
.black_slide.both.animation.delay17::before,
.black_slide_wrap.animation.delay17::before,
.black_slide.animation.delay17 > *,
.black_slide_wrap.animation.delay17 > *{
	animation-delay: 1.7s !important;
}
.black_slide.animation.delay18::after,
.black_slide_wrap.animation.delay18::after,
.black_slide.both.animation.delay18::before,
.black_slide_wrap.animation.delay18::before,
.black_slide.animation.delay18 > *,
.black_slide_wrap.animation.delay18 > *{
	animation-delay: 1.8s !important;
}
.black_slide.animation.delay19::after,
.black_slide_wrap.animation.delay19::after,
.black_slide.both.animation.delay19::before,
.black_slide_wrap.animation.delay19::before,
.black_slide.animation.delay19 > *,
.black_slide_wrap.animation.delay19 > *{
	animation-delay: 1.9s !important;
}
.black_slide.animation.delay20::after,
.black_slide_wrap.animation.delay20::after,
.black_slide.both.animation.delay20::before,
.black_slide_wrap.animation.delay20::before,
.black_slide.animation.delay20 > *,
.black_slide_wrap.animation.delay20 > *{
	animation-delay: 2s !important;
}
.black_slide.animation.delay21::after,
.black_slide_wrap.animation.delay21::after,
.black_slide.both.animation.delay21::before,
.black_slide_wrap.animation.delay21::before,
.black_slide.animation.delay21 > *,
.black_slide_wrap.animation.delay21 > *{
	animation-delay: 2.1s !important;
}
.black_slide.animation.delay22::after,
.black_slide_wrap.animation.delay22::after,
.black_slide.both.animation.delay22::before,
.black_slide_wrap.animation.delay22::before,
.black_slide.animation.delay22 > *,
.black_slide_wrap.animation.delay22 > *{
	animation-delay: 2.2s !important;
}
.black_slide.animation.delay23::after,
.black_slide_wrap.animation.delay23::after,
.black_slide.both.animation.delay23::before,
.black_slide_wrap.animation.delay23::before,
.black_slide.animation.delay23 > *,
.black_slide_wrap.animation.delay23 > *{
	animation-delay: 2.3s !important;
}
.black_slide.animation.delay24::after,
.black_slide_wrap.animation.delay24::after,
.black_slide.both.animation.delay24::before,
.black_slide_wrap.animation.delay24::before,
.black_slide.animation.delay24 > *,
.black_slide_wrap.animation.delay24 > *{
	animation-delay: 2.4s !important;
}
.black_slide.animation.delay25::after,
.black_slide_wrap.animation.delay25::after,
.black_slide.both.animation.delay25::before,
.black_slide_wrap.animation.delay25::before,
.black_slide.animation.delay25 > *,
.black_slide_wrap.animation.delay25 > *{
	animation-delay: 2.5s !important;
}
.black_slide.animation.delay26::after,
.black_slide_wrap.animation.delay26::after,
.black_slide.both.animation.delay26::before,
.black_slide_wrap.animation.delay26::before,
.black_slide.animation.delay26 > *,
.black_slide_wrap.animation.delay26 > *{
	animation-delay: 2.6s !important;
}
.black_slide.animation.delay27::after,
.black_slide_wrap.animation.delay27::after,
.black_slide.both.animation.delay27::before,
.black_slide_wrap.animation.delay27::before,
.black_slide.animation.delay27 > *,
.black_slide_wrap.animation.delay27 > *{
	animation-delay: 2.7s !important;
}
.black_slide.animation.delay28::after,
.black_slide_wrap.animation.delay28::after,
.black_slide.both.animation.delay28::before,
.black_slide_wrap.animation.delay28::before,
.black_slide.animation.delay28 > *,
.black_slide_wrap.animation.delay28 > *{
	animation-delay: 2.8s !important;
}
.black_slide.animation.delay29::after,
.black_slide_wrap.animation.delay29::after,
.black_slide.both.animation.delay29::before,
.black_slide_wrap.animation.delay29::before,
.black_slide.animation.delay29 > *,
.black_slide_wrap.animation.delay29 > *{
	animation-delay: 2.9s !important;
}
.black_slide.animation.delay30::after,
.black_slide_wrap.animation.delay30::after,
.black_slide.both.animation.delay30::before,
.black_slide_wrap.animation.delay30::before,
.black_slide.animation.delay30 > *,
.black_slide_wrap.animation.delay30 > *{
	animation-delay: 3s !important;
}


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

	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@keyframes black_slide_reverse{
	0% {
		left: 100%;
		width: 0;
	}

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

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

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


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

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

/* アニメーション時間差 */
.animation.delay01{
	animation-delay: .1s !important;
}
.animation.clip.delay01{
	transition-delay: .1s !important;
}
.animation.delay02{
	animation-delay: .2s !important;
}
.animation.clip.delay02{
	transition-delay: .2s !important;
}
.animation.delay03{
	animation-delay: .3s !important;
}
.animation.clip.delay03{
	transition-delay: .3s !important;
}
.animation.delay04{
	animation-delay: .4s !important;
}
.animation.clip.delay04{
	transition-delay: .4s !important;
}
.animation.delay05{
	animation-delay: .5s !important;
}
.animation.clip.delay05{
	transition-delay: .5s !important;
}
.animation.delay06{
	animation-delay: .6s !important;
}
.animation.clip.delay06{
	transition-delay: .6s !important;
}
.animation.delay07{
	animation-delay: .7s !important;
}
.animation.clip.delay07{
	transition-delay: .7s !important;
}
.animation.delay08{
	animation-delay: .8s !important;
}
.animation.clip.delay08{
	transition-delay: .8s !important;
}
.animation.delay09{
	animation-delay: .9s !important;
}
.animation.clip.delay09{
	transition-delay: .9s !important;
}
.animation.delay10{
	animation-delay: 1s !important;
}
.animation.clip.delay10{
	transition-delay: 1s !important;
}
.animation.delay11{
	animation-delay: 1.1s !important;
}
.animation.clip.delay11{
	transition-delay: 1.1s !important;
}
.animation.delay12{
	animation-delay: 1.2s !important;
}
.animation.clip.delay12{
	transition-delay: 1.2s !important;
}
.animation.delay13{
	animation-delay: 1.3s !important;
}
.animation.clip.delay13{
	transition-delay: 1.3s !important;
}
.animation.delay14{
	animation-delay: 1.4s !important;
}
.animation.clip.delay14{
	transition-delay: 1.4s !important;
}
.animation.delay15{
	animation-delay: 1.5s !important;
}
.animation.clip.delay15{
	transition-delay: 1.5s !important;
}
.animation.delay16{
	animation-delay: 1.6s !important;
}
.animation.clip.delay16{
	transition-delay: 1.6s !important;
}
.animation.delay17{
	animation-delay: 1.7s !important;
}
.animation.clip.delay17{
	transition-delay: 1.7s !important;
}
.animation.delay18{
	animation-delay: 1.8s !important;
}
.animation.clip.delay18{
	transition-delay: 1.8s !important;
}
.animation.delay19{
	animation-delay: 1.9s !important;
}
.animation.clip.delay19{
	transition-delay: 1.9s !important;
}
.animation.delay20{
	animation-delay: 2s !important;
}
.animation.clip.delay20{
	transition-delay: 2s !important;
}
.animation.delay21{
	animation-delay: 2.1s !important;
}
.animation.clip.delay21{
	transition-delay: 2.1s !important;
}
.animation.delay22{
	animation-delay: 2.2s !important;
}
.animation.clip.delay22{
	transition-delay: 2.2s !important;
}
.animation.delay23{
	animation-delay: 2.3s !important;
}
.animation.clip.delay23{
	transition-delay: 2.3s !important;
}
.animation.delay24{
	animation-delay: 2.4s !important;
}
.animation.clip.delay24{
	transition-delay: 2.4s !important;
}
.animation.delay25{
	animation-delay: 2.5s !important;
}
.animation.clip.delay25{
	transition-delay: 2.5s !important;
}
.animation.delay26{
	animation-delay: 2.6s !important;
}
.animation.clip.delay26{
	transition-delay: 2.6s !important;
}
.animation.delay27{
	animation-delay: 2.7s !important;
}
.animation.clip.delay27{
	transition-delay: 2.7s !important;
}
.animation.delay28{
	animation-delay: 2.8s !important;
}
.animation.clip.delay28{
	transition-delay: 2.8s !important;
}
.animation.delay29{
	animation-delay: 2.9s !important;
}
.animation.clip.delay29{
	transition-delay: 2.9s !important;
}



.animation.duration06{
	animation-duration: 0.6s;
}
.animation.duration10{
	animation-duration: 1s;
}

/* animation-delay PCだけ */
@media screen and (max-width: 768px) {
	.animation.delay_pc{
		animation-delay: 0s !important;
	}
	.animation.clip.delay_pc{
		transition-delay: 0s !important;
	}
}


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


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

.dots {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.dots .dot {
    width: 1.2rem;
	height: 1.2rem;
    margin: 0 .6rem;
    background-color: var(--light_blue);
    border-radius: 50%;
	transform: scale(0.8);
	opacity: 0.5;
    animation: dot-pulse 1.2s ease-in-out infinite;
}
.dots .dot:nth-child(1) { animation-delay: 0s; }
.dots .dot:nth-child(2) { animation-delay: 0.2s; } /* Fixed delays for simplicity */
.dots .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
}

/************************************************************************
	ページ全体
**************************************************************************/
main{
	padding: 9.7rem 1.2% 0;/* 1600pxの時20px */
}

.light_blue_bg{
	background-color: var(--bg_light_blue);
}

@media screen and (max-width: 1200px) {
	main{
		padding: 8.54rem 1.2% 0;/*  */
	}
}

@media screen and (max-width: 768px) {
	main{
		padding: 8rem 2.6% 0;/* 750pxの時20px */
	}
}


/************************************************************************
	ヘッダー
**************************************************************************/
header{
	width: 100%;
	background-color: var(--white);
	position: fixed;
	top: 0;
	z-index: 50;
	transition: font-size .4s, transform .4s;
}
.is_scroll header{
	font-size: .937em;/* 16px→15px */
}
@media screen and (min-width: 1201px) {
	.is_scroll.is_down header{
		transform: translateY(-100%);
	}
}


header .inner{
	width: 94%;
	padding: 2.25rem 0;
	margin: 0 auto;
	transition: padding .4s
}
.is_scroll header .inner{
	padding: 1.25rem 0;
}

header .hd_logo{/* aタグ */
	display: block;
	flex-shrink: 0;
	margin-right: auto;
}
header .hd_logo_group .sub{
	color: var(--blue);
	font-weight: 700;
	letter-spacing: .1em;
	padding-bottom: .2em;
}
header .hd_logo_group .main{
	width: 15.1em;
}
header .hd_logo_group .main img{
	width: 100%;
}


@media screen and (max-width: 1200px) {
	header .inner{
		padding: 1rem 0;
	}
	.is_scroll header .inner{
		padding: 0;
	}
}
@media screen and (max-width: 768px) {
	header .inner{
		width: 94.8%;
		padding: 1rem 0;
		margin: 0 auto;
	}
	.is_scroll header .inner{
		padding: 0;
	}
	
}


/* -------------
ナビ
-------------------------------------------------------- */
#hd_nav{
	-webkit-box-flex:1;
	flex-grow:1;
}
#hd_nav li{
	font-size: .875em;/* 14px */
	font-weight: 500;
	margin: 0 .5em;
}
#hd_nav li a{
	display: block;
	padding: .5em .85em;
	border-radius: 5em;
	position: relative;
}
#hd_nav li a:hover{
	color: var(--white);
	background-color: var(--blue);
}

#hd_nav .grada_btn{
	font-size: .875em;/* 14px */
}

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

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


/* -------------
ハンバーガー　TELボタン
-------------------------------------------------------- */
#hmb{
	--btn_color: var(--blue);
	--btn_bg_color: var(--white);
}
.hd_tel{
	--btn_color: var(--pink);
	--btn_bg_color: var(--white);
}
#hmb:hover{
	--btn_color: var(--white);
	--btn_bg_color: var(--blue);
}
.hd_tel:hover{
	--btn_color: var(--white);
	--btn_bg_color: var(--pink);
}

#hmb,
.hd_tel{
	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;
	font-size: .857em;/* 12px/body14px */
	font-weight: 700;
	color: var(--btn_color);
	text-align: center;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	width: 7rem;
	padding: 1.25rem .5rem;
	margin-right: 1%;
	background-color: var(--btn_bg_color);
	transition: .4s;
	position: relative;
	z-index: 100;
}
.hd_tel{
	margin-right: 0;
}

.hmb_bar,
.hd_tel .icon{
	width: 60%;
	height: 2rem;
	margin: auto;
	
}
.hmb_bar{
	position: relative;
	transition: .4s;
}
.hd_tel .icon{
	-webkit-mask: url(../img/cmn/icon_tel_pink.svg) no-repeat center/contain;
	mask: url(../img/cmn/icon_tel_pink.svg) no-repeat center/contain;
	background-color: var(--btn_color);
	transition: -webkit-mask .4s, mask .4s , background-color .4s;
}

.hmb_bar span{
	display: inline-block;
	width: 100%;
	height: 2px;
	background-color: var(--btn_color);
	position: absolute;
	right: 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: 45%;
	transform: rotate(-33deg);
}
.hmb_open .hmb_bar span:nth-of-type(2){
	opacity: 0;
}
.hmb_open .hmb_bar span:nth-of-type(3){
	bottom: 45%;
	transform: rotate(33deg);
}

#hmb .hmb_text,
.hd_tel .btn_text{
	margin-top: .5em;
}
#hmb .hmb_text::before{
	content: "menu";
	white-space: nowrap;
	text-transform: uppercase;
}
.hmb_open #hmb .hmb_text::before{
	content: "close";
}

@media screen and (max-width: 768px) {
	#hmb,
	.hd_tel{
		width: 4.5rem;
		padding: 1.2rem 0;
	}
	#hmb .hmb_text,
	.hd_tel .btn_text{
		font-size: .937em;
	}
}

@media screen and (min-width: 1201px) {
	#hmb,
	.hd_tel{
		display: none;
	}
}


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

#global .container{
	width: 33rem;
	padding: 13rem 3rem 5rem;
	margin-left: auto;
	height: fit-content;
	background-color: var(--white);
	overflow: auto;
}

@media screen and (max-width: 768px) {
	#global .container{
		width: 100%;
		height: 100vh;
		padding: 10rem 6% 5rem;
	}
}

/* 中の要素は#aside01を参照 */

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




/************************************************************************
	フッター
**************************************************************************/
/* =====
	お問い合わせ窓口
======================================================== */
.ft_contact_btn_container .grada_box{
	display: block;
	font-weight: 500;
	color: #fff;
	width: 48%;
	padding: 3.25rem 4%;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	position: relative;
	overflow: hidden;
}
.ft_contact_btn_container .grada_box.tel_box{
	--btn_color: #0161eb;
	--btn_grada_w: -webkit-linear-gradient(0deg, #0161eb 25%, #00bdf9 100%);
	--btn_grada: linear-gradient(90deg, #0161eb 25%, #00bdf9 100%);
	--before_grada_w: linear-gradient(0deg, #0161eb 80%, transparent 100%);
	--before_grada: linear-gradient(90deg, #0161eb 80%, transparent 100%);
	
}
.ft_contact_btn_container .grada_box.contact_box{
	--btn_color: var(--pink);
	--btn_grada_w: -webkit-linear-gradient(0deg, var(--pink) 25%, #fcb184 100%);
	--btn_grada: linear-gradient(90deg, var(--pink) 25%, #fcb184 100%);
	--before_grada_w: linear-gradient(0deg, var(--pink) 80%, transparent 100%);
	--before_grada: linear-gradient(90deg, var(--pink) 80%, transparent 100%);
}

.ft_contact_btn_container .grada_box::before{
	content: "";
	display: block;
	width: 25%;
	height: 100%;
	background-image: var(--before_grada_w);
	background-image: var(--before_grada);
	position: absolute;
	left: 0;
	top: 0;
	transition: width .4s;
}
.ft_contact_btn_container .grada_box:hover::before{
	width: 125%;
}

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

.ft_contact_btn_container .grada_box h3{
	font-size: 2.4rem;
	text-align: center;
	letter-spacing: .1em;
	padding-bottom: .6em;
	position: relative;
}
.ft_contact_btn_container .grada_box h3::after{
	content: "";
	display: block;
	width: 4.2em;
	height: 2px;
	background-color: var(--white);
	position: absolute;
	bottom: 0;
	left: calc(50% - 2.1em);
}

.ft_contact_btn_container .grada_box .tel_text{
	font-size: 3rem;
	width: fit-content;
	padding-left: 1em;
	margin: .25em auto;
	position: relative;
	transition: transform .4s
}
.ft_contact_btn_container .grada_box:hover .tel_text{
	transform: scale(1.1);
}

.ft_contact_btn_container .grada_box .tel_text::before{
	content: "";
	display: block;
	width: .7em;
	height: .84em;
	background: url(../img/cmn/icon_tel_ft_wh.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: calc(50% - .42em);
}

.ft_contact_btn_container .grada_box .btn{
    color: var(--btn_color);
    width: fit-content;
    padding: 1em 4.5em 1em 2em;
    margin: 1.25em auto 0;
    border-radius: 5em;
    background-color: var(--white);
    position: relative;
    transition: transform .4s
}
.ft_contact_btn_container .grada_box:hover .btn{
	transform: scale(1.1);
}

.ft_contact_btn_container .grada_box .btn::before,
.ft_contact_btn_container .grada_box .btn::after{
	content: "";
	display: block;
	width: 2.2em;
	height: 2.2em;
	position: absolute;
	right: .6em;
	top: calc(50% - 1.1em);
}
.ft_contact_btn_container .grada_box .btn::before{
	border-radius: 50%;
	background-color: var(--btn_color);
}
.ft_contact_btn_container .grada_box .btn::after{
	background: url(../img/cmn/btn_arrow_wh.svg?250624) no-repeat center/50%;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.ft_contact_btn_container .grada_box{
		width: 100%;
		padding: 2rem 4% 2.5rem;
	}
	.ft_contact_btn_container .grada_box.tel_box{
		margin-bottom: 2.5rem;
	}

	.ft_contact_btn_container .grada_box h3{
		font-size: 2rem;
	}
	.ft_contact_btn_container .grada_box h3::after{
		width: 3.2em;
		left: calc(50% - 1.6em);
	}

	.ft_contact_btn_container .grada_box .tel_text{
		font-size: 2.4rem;
		margin: .2em auto .15em;
	}
}

/* =====
	フッターナビ・コピーライト
======================================================== */

#ft_nav{
	font-weight: 500;
	padding: 5rem 0;
	position: relative;
	z-index: 1;
}
#ft_nav::before{
	content: "";
	display: block;
	width: calc(100% + 33rem);
	height: 100%;
	background-color: var(--bg_light_blue);
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

#ft_nav ul{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(5, max-content);
    grid-template-columns: repeat(5, max-content);
	-webkit-box-pack: justify;
	justify-content: space-between;
	font-size: 1.4rem;
}

#ft_nav a{
	display: block;
	padding: .5em .25em;
}
#ft_nav a:hover{
	opacity: .7;
}

.copyright{
	margin-left: -33rem;
	padding: .7em;
}


@media screen and (max-width: 1200px) {
	#ft_nav::before{
		width: 100%;
	}

	.copyright{
		margin-left: 0;
	}
	
}


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

	#ft_nav ul{
		-ms-grid-columns: repeat(2, max-content);
		grid-template-columns: repeat(2, max-content);
		font-size: 1.2rem;
		grid-row-gap: .6em;
	}

}

/************************************************************************
	TOP MV
**************************************************************************/
#top_mv{
	font-size: min(10px, calc(.625 * var(--js_vw)));/* 1600pxのときfz10px */
	padding: 3.5% 0 0;
	background-color: var(--bg_light_blue);
	overflow: hidden;
	position: relative;
}

@media screen and (max-width: 960px) {
	#top_mv{
		padding: 5% 2% 0;
	}
	
}
@media screen and (max-width: 768px) {
	#top_mv{
		font-size: calc(2.667 * var(--js_vw));/* 375pxのときfz10px */
		padding: 8.4% 4% 0;
		overflow: hidden;
		position: relative;
	}
}

/* スワイパー
-------------------------------------------------------- */
#top_mv_swiper{
	padding-bottom: 2.5%;
}
#top_mv_swiper img{
	width: 100%;
}

#top_mv_swiper .swiper-slide{
	transform: scale(.9);
	transition: .5s;
}
#top_mv_swiper .swiper-slide-active{
	transform: scale(1);
}

#top_mv_swiper .swiper-slide a{
	display: block;
}
#top_mv_swiper .swiper-slide a:hover{
	-webkit-filter: brightness(102%);
	filter: brightness(102%);
	transform: scale(1.025);
}

@media screen and (max-width: 960px) {
	#top_mv_swiper .swiper-slide{
		opacity: 0;
	}
	#top_mv_swiper .swiper-slide-active{
		opacity: 1;
	}
}

/* スワイパーページネーション
-------------------------------------------------------- */
.pagination_area{
	width: 32%;/* 下の.mv_telと同じ値に */
	margin-inline: auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5px;
}

.pagination_wrap{
	width: fit-content;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
#top_mv_stop{
	display: block;
	width: 2em;
	height: 2em;
	background: url(../img/cmn/btn_stop_blue.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: calc(50% - 1em);
	z-index: 1;
}
.mv_stop #top_mv_stop{
	background-image: url(../img/cmn/btn_start_blue.svg);
}

#top_mv_pagination{
	position: static;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	width: fit-content;
	padding: 0 2.5em;
}
#top_mv_pagination .swiper-pagination-bullet{
	width: 2em;
	height: 2em;
	margin: 0 .75em;
	background-color: transparent;
	position: relative;
	opacity: 1;
}
#top_mv_pagination .swiper-pagination-bullet::before{
	content: "";
	display: block;
	width: 25%;
	height: 25%;
	margin: auto;
	border-radius: 50%;
	background-color: var(--blue);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#top_mv_pagination .swiper-pagination-bullet-active::before{
	background-color: var(--orange);
}

#top_mv_pagination .swiper-pagination-bullet .ring-path {
	opacity: 0;
	stroke-dasharray: 94; /* 円周 */
	stroke-dashoffset: 94; /* 初期は全て隠す */
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
}


#top_mv_pagination .swiper-pagination-bullet-active .ring-path {
	opacity: 1;
	animation: ring-draw 4s linear forwards;
}
.mv_stop #top_mv_pagination .swiper-pagination-bullet-active .ring-path {
	opacity: 0;
	animation: ring-stop 1s linear forwards;
}


@keyframes ring-draw {
	to {
	  stroke-dashoffset: 0; /* 最後は全体が描かれる */
	}
}
@keyframes ring-stop {
	to {
	  stroke-dashoffset: 94; /* 最後は全体が描かれる */
	}
}


@media screen and (max-width: 960px) {
	.pagination_area{
		width: 100%;/* 下の.mv_telと同じ値に */
		padding: 2% 0;
		position: relative;
		right: auto;
		bottom: auto;
	}

	#top_mv_stop{
		width: 5em;
		height: 5em;
		top: calc(50% - 2.5em);
	}

	#top_mv_pagination{
		padding: 0 5.5em;
	}

	#top_mv_pagination .swiper-pagination-bullet{
		width: 5em;
		height: 5em;
		margin: 0 .75em;
	}
}

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

	#top_mv_stop{
		width: 2.2em;
		height: 2.2em;
		top: calc(50% - 1.1em);
	}

	#top_mv_pagination{
		padding: 0 2.5em;
	}
	#top_mv_pagination .swiper-pagination-bullet{
		width: 2.2em;
		height: 2.2em;
		margin: 0 .5em;
	}
}

/* 電話ボタン
-------------------------------------------------------- */
.top_mv_tel{
	font-size: 1.6em;
	max-width: 32em;
	width: 32%;/* 見た目で調整 */
	padding: 1.2% 1.8%;
	background-color: var(--white);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}
.top_mv_tel .tel_btn{
	--btn_grada_w: -webkit-linear-gradient(0deg, var(--pink) 25%, #fcb184 100%);
	--btn_grada: linear-gradient(90deg, var(--pink) 25%, #fcb184 100%);
	--before_grada_w: linear-gradient(0deg, var(--pink) 80%, transparent 100%);
	--before_grada: linear-gradient(90deg, var(--pink) 80%, transparent 100%);

	display: block;
	font-size: 2.125em;/* 34px */
	font-weight: 900;
	color: var(--white);
	letter-spacing: .066em;
	margin-right: .25em;
	border-radius: 5em;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	position: relative;
	overflow: hidden;
	transition: .4s;
}
.top_mv_tel .tel_btn:hover{
	transform: scale(1.1);
}

.top_mv_tel .tel_btn::before{
	content: "";
	display: block;
	width: 25%;
	height: 100%;
	background-image: var(--before_grada_w);
	background-image: var(--before_grada);
	position: absolute;
	left: 0;
	top: 0;
	transition: width .4s;
}
.top_mv_tel .tel_btn:hover::before{
	width: 125%;
}

.top_mv_tel .tel_btn .btn_text{
	display: block;
	width: 100%;
	padding: .05em .54em .15em 1.8em;
	position: relative;
	z-index: 1;
}
.top_mv_tel .tel_btn .btn_text::before{
	content: "";
	display: block;
	width: .8em;
	height: .8em;
	background: url(../img/cmn/icon_tel_wh.svg) no-repeat center/contain;
	position: absolute;
	top: calc(50% - .36em);
	right: auto;
	left: .7em;
}

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


/************************************************************************
	アサイド・メイン領域
**************************************************************************/
/* アサイド
-------------------------------------------------------- */
#sidebar01{
	width: 33rem;
	padding: 3rem;
	max-height: calc(100vh - 11rem);
	background-color: var(--white);
	position: -webkit-sticky;
	position: sticky;
	top: 10rem;
	z-index: 5;
	overflow: auto;
}

@media screen and (max-width: 1200px) {
	.has_aside_area{
		display: block;
	}
	#sidebar01{
		display: none;
	}
}

/* ----- 検索 ----- */
/* .input_wrapper{
	font-size: .875em;
	margin-bottom: 1.5em;
	position: relative;
}
.input_wrapper .search_word{
	width: 100%;
	padding: 1em 3em 1em 1.5em;
	border-radius: 5em;
	background-color: #f2f2f2;
}
.input_wrapper .search_word::placeholder{
	color: var(--gray);
}

.input_wrapper .search_btn{
	display: block;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	background-color: var(--blue);
	position: absolute;
	right: .8em;
	top: calc(50% - 1em);
	transition: background-color .4s;
}
.input_wrapper .search_btn:hover{
	background-color: var(--light_blue);
}
.input_wrapper .search_btn::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/cmn/icon_search_wh.svg) no-repeat center/50%;
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 768px) {
	.input_wrapper{
		font-size: .8571em;
		margin-bottom: 1.5em;
		position: relative;
	}
} */

/* ----- 見積もり・問い合わせボタン ----- */
.aside_btn{
	--btn_color: var(--orange);
	--btn_grada_w: -webkit-linear-gradient(0deg, var(--orange) 25%, #ffd665 100%);
	--btn_grada: linear-gradient(90deg, var(--orange) 25%, #ffd665 100%);
	--before_grada_w: linear-gradient(0deg, var(--pink) 80%, transparent 100%);
	--before_grada: linear-gradient(90deg, var(--orange) 80%, transparent 100%);

	display: block;
	text-align: center;
	padding: 1em 1.5em 1.25em;
	margin-bottom: 1.25em;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	position: relative;
	overflow: hidden;
}
.aside_btn.contact_btn{
	--btn_color: var(--pink);
	--btn_grada_w: -webkit-linear-gradient(0deg, var(--pink) 25%, #fcb184 100%);
	--btn_grada: linear-gradient(90deg, var(--pink) 25%, #fcb184 100%);
	--before_grada_w: linear-gradient(0deg, var(--pink) 80%, transparent 100%);
	--before_grada: linear-gradient(90deg, var(--pink) 80%, transparent 100%);
}
.aside_btn.tel_btn{
	--btn_color: var(--blue);
	--btn_grada_w: -webkit-linear-gradient(0deg, var(--blue) 25%, var(--light_blue) 100%);
	--btn_grada: linear-gradient(90deg, var(--blue) 25%, var(--light_blue) 100%);
	--before_grada_w: linear-gradient(0deg, var(--blue) 80%, transparent 100%);
	--before_grada: linear-gradient(90deg, var(--blue) 80%, transparent 100%);
}
.aside_btn::before{
	content: "";
	display: block;
	width: 25%;
	height: 100%;
	background-image: var(--before_grada_w);
	background-image: var(--before_grada);
	position: absolute;
	left: 0;
	top: 0;
	transition: width .4s;
}
.aside_btn:hover::before{
	width: 125%;
}

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

.aside_btn .text{
	font-size: .875em;/* 14/16 */
	font-weight: 500;
	color: var(--white);
	letter-spacing: .1em;
	text-align: center;
	margin-bottom: .6em;
}
.aside_btn .btn{
	font-weight: 700;
	color: var(--btn_color);
	padding: .8em 3.75em .8em 1.1em;
	border-radius: 5em;
	background-color: var(--white);
	position: relative;
	transition: transform .4s;
}
.aside_btn .btn::before,
.aside_btn .btn::after{
	content: "";
	display: block;
	width: 2em;
	height: 2em;
	position: absolute;
	right: .8em;
	top: calc(50% - .87em);
}
.aside_btn .btn::before{
	border-radius: 50%;
	background-color: var(--btn_color);
}
.aside_btn .btn::after{
	background: url(../img/cmn/btn_arrow_wh.svg?250624) no-repeat center/50%;
	z-index: 1;
}

.aside_btn:hover .btn{
	transform: scale(1.1);
}

/* グローバルで768以下で出現　電話ボタン */
.aside_btn .text_wrapper{
	width: 100%;
}
.aside_btn .tel_text{
	font-size: 1.5em;/* 21/14 */
	font-weight: 500;
	color: var(--white);
	letter-spacing: -.02em;
	line-height: 1.2;
	width: fit-content;
	padding-left: 1em;
	margin: .25em auto;
	position: relative;
	transition: transform .4s
}
.aside_btn:hover .tel_text{
	transform: scale(1.1);
}
.aside_btn .tel_text::before{
	content: "";
	display: block;
	width: .7em;
	height: .84em;
	background: url(../img/cmn/icon_tel_ft_wh.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: calc(50% - .42em);
}
.aside_btn .text01{
	font-size: .8571em;/* 12/14 */;
	color: var(--white);
}

@media screen and (max-width: 768px) {
	.aside_btn{
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		align-items: center;
		min-height: 9.5rem;
		padding: 1em 5%;
		margin-bottom: 1em;
	}
	.aside_btn .text{
		font-size: .8571em;/* 12/14 */
		text-align: left;
		width: 35.6%;
		margin-bottom: 0;
	}
	.aside_btn .btn,
	.aside_btn .text_wrapper{
		width: 57.7%;
	}
}

/* ----- ナビゲーション ----- */
.aside_nav{
	padding: 1.5rem;
	background-color: #f2f2f2;
}

.aside_nav ul li{
	font-size: .875em;/* 14/16 */
	font-weight: 500;
	margin-bottom: .55em;
}
.aside_nav ul li a{
	display: block;
	padding: .4em 1em;
	border-radius: 5em;
	background-color: var(--white);
}
.aside_nav ul li a:hover{
	color: var(--white);
	background-color: var(--blue);
}

@media screen and (max-width: 768px) {
	.aside_nav{
		padding: 1.75rem 5%;
		background-color: #f2f2f2;
	}
	.aside_nav ul{
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
	.aside_nav ul li{
		font-size: .8571em;/* 12/14 */;
		letter-spacing: 0;
		width: 49%;
		margin-bottom: .75em;
	}
	.aside_nav ul li a{
		padding: .5em .75em;
	}
}

/* メイン領域
-------------------------------------------------------- */
.main_area{
	width: calc(100% - 33rem);
}
.main_area .light_blue_area,
.main_area .thin_gray_area{
	position: relative;
	z-index: 1;
}
.main_area .light_blue_area::before,
.main_area .thin_gray_area::before{
	content: "";
	display: block;
	width: calc(100% + 33rem);
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}
.main_area .light_blue_area::before{
	background-color: var(--bg_light_blue);
}
.main_area .thin_gray_area::before{
	background-color: var(--bg_thin_gray);
}

@media screen and (max-width: 1200px) {
	.main_area{
		width: 100%;
	}
	.main_area .light_blue_area::before,
	.main_area .thin_gray_area::before{
		width: 100%;
	}
}


/************************************************************************
	トップ MVより下のセクション
**************************************************************************/
.main_area_inner{
	width: 92%;
	margin: 0 auto;
}

.top_title_primary{
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .1em;
}

@media screen and (max-width: 1200px) {
	.main_area_inner{
		width: 96%;
	}
}

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

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

/* =====
	輸入代行サービスの強み
======================================================== */
#top_advantage .list li{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	width: 32.6%;
	max-width: 34.3rem;
	padding: 5.5rem 2% 2.5rem;
	margin-bottom: 6rem;
	background-color: var(--white);
	position: relative;
}
#top_advantage .list li:nth-of-type(n+4){
	margin-bottom: 0;
}

.num_2color{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: start;
	justify-content: flex-start;
	font-weight: 900;
	color: var(--white);
	letter-spacing: 0;
	text-transform: capitalize;
	width: fit-content;
	padding: .7em 1.5em .9em;
	border-radius: 5em;
	background-image: var(--blue_2color_w);
	background-image: var(--blue_2color);
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
}
.num_2color .big{
	display: inline-block;
	font-family: var(--m_plus);
	font-size: 1.875em;/* 30px/16px */
	font-weight: 300;
	letter-spacing: .05em;
	line-height: 1;
	padding-left: .15em;
}

#top_advantage .list li h3{
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-align: center;
	color: var(--blue);
	margin: auto;
}

#top_advantage .list li .icon{
	height: 9rem;
	margin: 1.5rem auto;
}
#top_advantage .list li .icon img{
	width: auto;
	max-width: 100%;
	height: 100%;
}

#top_advantage .list li .text{
	margin-bottom: auto;
}

@media screen and (max-width: 768px) {
	#top_advantage .list li{
		width: 100%;
		padding: 5rem 6% 2.5rem;
		margin: 0 auto 5.5rem;
	}
	#top_advantage .list li:nth-of-type(n+4){
		margin-bottom: 5.5rem;
	}
	#top_advantage .list li:nth-last-of-type(1){
		margin-bottom: 0;
	}

	#top_advantage .list li .icon{
		height: 7.5rem;
		margin: 1.75rem auto;
	}
}


/* =====
	取り扱いができる海外医薬品
======================================================== */
#top_handling .list li{
	width: 32.6%;
	max-width: 34.3rem;
	margin-bottom: 3rem;
	background-color: var(--white);
}

#top_handling .list li .acc_trigger{
	cursor: pointer;
	display: -webkit-box;
	display: flex;
	min-height: 12.5rem;
	padding: 0 5%;
}

#top_handling .list li .acc_trigger .icon{
	-ms-flex-item-align: end;
	align-self: flex-end;
	width: 14.8rem;
	height: 10rem;
	text-align: center;
}
#top_handling .list li .acc_trigger .icon img{
	width: auto;
	max-width: 100%;
	height: 100%;
}

#top_handling .list li .acc_trigger h3{
	-ms-flex-item-align: center;
	align-self: center;
	font-weight: 700;
	color: var(--blue);
	line-height: 1.75;
	letter-spacing: .1em;
	padding-right: 1.5em;
	margin-left: auto;
	position: relative;
	transition: color .4s;
}
#top_handling .list li .acc_trigger:hover h3,
#top_handling .list li .acc_trigger.acc_open h3{
	color: var(--light_blue);
}

#top_handling .list li .acc_trigger h3::before,
#top_handling .list li .acc_trigger h3::after{
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	bottom: .3em;
	right: 0;
}
#top_handling .list li .acc_trigger h3::before{
	border-radius: 50%;
	background-color: var(--blue);
	transition: background-color .4s;
}
#top_handling .list li .acc_trigger:hover h3::before,
#top_handling .list li .acc_trigger.acc_open h3::before{
	background-color: var(--light_blue);
}
#top_handling .list li .acc_trigger h3::after{
	background: url(../img/cmn/arrow01_wh.svg) no-repeat center top 52%/50%;
	z-index: 1;
}

#top_handling .list li .text_wrapper{
	display: none;
	padding: 2.5rem 6%;
	background-color: var(--thin_light_blue);
}

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

	#top_handling .list li .acc_trigger{
		min-height: 11.25rem;/* ×0.9 */
	}

	#top_handling .list li .acc_trigger .icon{
		width: 13.32rem;/* ×0.9 */
		height: 9rem;/* ×0.9 */
	}

	#top_handling .list li .acc_trigger h3{
		font-size: .9em;/* ×0.9 */
	}
}

@media screen and (max-width: 768px) {
	#top_handling .list li{
		width: 100%;
		margin: 0 auto 1.5rem;
		background-color: var(--white);
	}
	#top_handling .list li:nth-last-of-type(1){
		margin-bottom: 0;
	}
	
	#top_handling .list li .acc_trigger{
		min-height: 11.8rem;
		padding: 0 6%;
	}

	/* 
		#top_handling .list li .acc_trigger .icon は大きさそのまま
	*/

	#top_handling .list li .acc_trigger h3{
		font-size: 1em;
	}

	#top_handling .list li .text_wrapper{
		padding: 3rem 6%;
	}
}


/* =====
	海外医薬品 輸入代行サービスのご注文の流れ
======================================================== */
#top_flow .guidance{
	width: fit-content;
	margin: 0 auto 3em;
}

#top_flow .flow_list{
	padding-bottom: 14%;
}

#top_flow .flow_list li{
	width: calc(100% / 3);
	padding: 4rem 2% 4rem 4%;
	background-color: #ffc948;
	position: relative;
	z-index: 3;
}
#top_flow .flow_list li:nth-last-of-type(1){
	padding: 4rem 3.5%;
}

#top_flow .flow_list li:nth-of-type(2){
	background-color: #ffd564;
	z-index: 2;
}
#top_flow .flow_list li:nth-of-type(3){
	background-color: #ffe573;
	z-index: 1;
}
/* 三角 */
#top_flow .flow_list li::after{
	content: "";
	display: block;
	width: 6.63%;/* 25/377（デザイン参照） */
	height: 100%;
	background-color: inherit;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	position: absolute;
	left: 100%;
	top: 0;
}
#top_flow .flow_list li:nth-last-of-type(1)::after{
	display: none;
}

#top_flow .flow_list li hgroup{
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--orange);
	width: 100%;
	padding: .85em .5em .85em 6.5em;
	margin-bottom: 1em;
	border-radius: 5em;
	background-color: var(--white);
	position: relative;
}
#top_flow .flow_list li:nth-of-type(2) hgroup{
	padding: .85em .5em .85em 5.5em;
}
#top_flow .flow_list li:nth-of-type(3) hgroup{
	padding: .85em 5em;
}
#top_flow .flow_list li hgroup .num{
	font-weight: 900;
	text-transform: capitalize;
	position: absolute;
	left: 1.5em;
	top: calc(50% - .9em);
}
#top_flow .flow_list li hgroup .num .big{
	font-size: 1.1428em;/* 16/14 */
}

#top_flow .flow_list li hgroup h3{
	font-size: 1.4285em;/* 20/14 */
	line-height: 1.2;
	letter-spacing: .1em;
}
#top_flow .flow_list li:nth-of-type(3) hgroup h3{
	text-align: center;
}

#top_flow .flow_list li .text{
	position: relative;
	z-index: 2;
}

#top_flow .flow_list li .img{
	width: 42.3%;
	position: absolute;
	top: calc(100% - 5rem);
	right: 5%;
	z-index: 1;
}
#top_flow .flow_list li:nth-of-type(2) .img{
	width: 52%;
	right: 2%;
}
#top_flow .flow_list li:nth-of-type(3) .img{
	width: 51.2%;
	top: calc(100% - 2rem);
}

@media screen and (max-width: 860px) {
	#top_flow .flow_list li hgroup{
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 768px) {
	#top_flow .guidance{
		margin-bottom: 1.5em;
	}

	#top_flow .flow_list li{
		width: 100%;
		padding: 4rem 6% 3.5rem;
	}
	#top_flow .flow_list li:nth-of-type(n+2){
		padding-top: 7rem;
	}
	
	/* 三角 */
	#top_flow .flow_list li::after{
		width: 100%;
		height: 3rem;
		-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		left: 0;
		top: 100%;
	}

	#top_flow .flow_list li hgroup{
		text-align: center;
		padding: .85em 5em;
	}
	#top_flow .flow_list li:nth-of-type(2) hgroup{
		padding: .85em 5em;
	}
	#top_flow .flow_list li:nth-of-type(3) hgroup{
		padding: .85em 5em;
	}
	#top_flow .flow_list li hgroup .num{
		top: calc(50% - 1em);
	}
	#top_flow .flow_list li hgroup .num .big{
		font-size: 1.1666em;/* 14/12 */
	}
	#top_flow .flow_list li hgroup h3{
		font-size: 1.5em;/* 18/12 */
	}

	#top_flow .flow_list li .img{
		width: 8.85rem;
		top: calc(100% - 4.5rem);
		right: 15%;
	}
	#top_flow .flow_list li:nth-of-type(2) .img{
		width: 9.8rem;
		top: calc(100% - 5rem);
		right: 15%;
	}
	#top_flow .flow_list li:nth-of-type(3) .img{
		width: 11.14rem;
		top: calc(100% - 3rem);
		right: 12%;
	}
}


/* =====
	海外医薬品 輸入にかかる費用について
======================================================== */
#top_price .list{
	max-width: 114rem;
	margin: 0 auto;
}
#top_price .list li{
	width: 49%;
	max-width: 54rem;
	min-height: 20rem;
	padding: 5.5rem 2.5% 4rem;
	margin-bottom: 6rem;
	background-color: #f2f2f2;
	position: relative;
}
#top_price .list li:nth-of-type(n+3){
	margin-bottom: 0;
}

.num_2color_flex{
	display: -webkit-box;
	display: flex;
	width: 8.375em;/* 134/16 */
	height: 3.75em;/* 60/16 */
	border-radius: 5em;
	position: absolute;
	left: calc(50% - 4.1875em);
	top: -1.875em;
	overflow: hidden;
}

.num_2color_flex .num01,
.num_2color_flex .num02{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	color: var(--white);
	width: 50%;
	height: 100%;
}
.num_2color_flex .num01{
	font-weight: 900;
	letter-spacing: 0;
	text-transform: capitalize;
	padding-left: .25em;
	padding-bottom: .2em;
	background-color: #FC9B4C;
}
.num_2color_flex .num02{
	font-family: var(--m_plus);
	font-size: 1.875em;/* 30/16 */
	font-weight: 300;
	padding-right: .15em;
	padding-bottom: .1em;
	background-color: var(--orange);
}

#top_price .list li h3{
	font-size: 1.25em;/* 20px */
	font-weight: 700;
	color: var(--orange);
	text-align: center;
	margin-bottom: .5em;
}

#top_price .list li .text{
	width: fit-content;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	#top_price .list li{
		width: 100%;
		min-height: auto;
		padding: 5rem 6% 4rem;
		margin-bottom: 5.5rem;
	}
	#top_price .list li:nth-of-type(n+3){
		margin-bottom: 5.5rem;
	}
	#top_price .list li:nth-last-of-type(1){
		margin-bottom: 0;
	}

	.num_2color_flex .num02{
		font-size: 1.7142em;/* 24/14 */
	}

	#top_price .list li h3{
		font-size: 1.2857em;/* 18/14 */
	}
}


/* =====
	サービス案内
======================================================== */
#top_service .list li{
	display: -webkit-box;
	display: flex;
	margin-bottom: 3rem;
	background-color: var(--white);
}
#top_service .list li:nth-last-of-type(1){
	margin-bottom: 0;
}

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

#top_service .list li .text_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	width: calc(100% - 32.8%);
	padding: 4% 2.5% 1.75%;
}

#top_service .list li h3{
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	margin-bottom: 1.8%;
}
#top_service .list li .text{
	margin-bottom: 2.6%;
}

#top_service .list li .btn{
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--white);
	width: fit-content;
	padding: 1em 4em 1em 1.5em;
	margin-left: auto;
	margin-top: auto;
	border-radius: 5em;
	background-color: var(--blue);
	position: relative;
	transition: background-color .4s;
}
#top_service .list li .btn:hover{
	background-color: var(--light_blue);
}

#top_service .list li .btn::before,
#top_service .list li .btn::after{
	content: "";
	display: block;
	width: 1.8em;
	height: 1.8em;
	position: absolute;
	right: .8em;
	top: calc(50% - .9em);
}
#top_service .list li .btn::before{
	border-radius: 50%;
	background-color: var(--white);
}
#top_service .list li .btn::after{
	-webkit-mask: url(../img/cmn/btn_arrow_blue.svg?250624) no-repeat center/50%;
	mask: url(../img/cmn/btn_arrow_blue.svg?250624) no-repeat center/50%;
	background-color: inherit;
	z-index: 1;
}

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

	#top_service .list li .img{
		width: 100%;
	}

	#top_service .list li .text_wrapper{
		display: block;
		width: 100%;
		padding: 2.5rem 6% 2rem;
	}

	#top_service .list li h3{
		font-size: 1.8rem;

		margin-bottom: .5em;
	}
	#top_service .list li .text{
		margin-bottom: 1.5em;
	}

	#top_service .list li .btn{
		font-size: 1.2rem;
		padding-right: 5em;
	}
}


/* =====
	お客様の声
======================================================== */
/* #top_voice .list li{
	width: 32.8%;
}
#top_voice .list li .text_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	color: var(--white);
	width: 96%;
	max-width: 30rem;
	min-height: 13.6rem;
	margin: 0 auto -3.5rem;
	background-color: var(--light_blue);
	position: relative;
	z-index: 1;
}
#top_voice .list li .text_wrapper::after{
	content: "";
	display: block;
	width: 2.4em;
	height: 1.3em;
	background-color: inherit;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	top: calc(100% - 1px);
	left: calc(50% - 1.2em);
}

#top_voice .list li h3{
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: .5em;
}
#top_voice .list li h4{
	font-weight: 700;
}

#top_voice .list li .img_ab{
	background-color: #ccc;
}
#top_voice .list li .img_ab::before{
	padding-top: 66.2%;
}

@media screen and (max-width: 768px) {
	#top_voice .list li{
		width: 100%;
		margin-bottom: 2.5rem;
	}
	#top_voice .list li:nth-last-of-type(1){
		margin-bottom: 0;
	}

	#top_voice .list li .text_wrapper{
		width: 92%;
		max-width: 26.5rem;
		min-height: 11.3rem;
		margin-bottom: -2.5rem;
	}

	#top_voice .list li h3{
		font-size: 1.8rem;
	}
} */

/* =====
	医薬品等輸入確認証発給件数
======================================================== */
/* #top_issued .graph_wrapper{
	overflow: auto;
}
#top_issued .graph{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30rem;
	background-color: #ccc;
}

@media screen and (max-width: 768px) {
	#top_issued .graph{
		width: 60rem;
		height: 20rem;
	}
} */


/* =====
	輸入代行サービスのこだわり
======================================================== */
#top_commitment .list li{
	display: -webkit-box;
	display: flex;
	background-color: var(--white);
	margin-bottom: 3rem;
}
#top_commitment .list li:nth-last-of-type(1){
	margin-bottom: 0;
}


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

#top_commitment .list li .text_wrapper{
	width: calc(100% - 32.8%);
	padding: 5.5% 2.5% 4.5%;
}

#top_commitment .list li h3{
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	margin-bottom: 1.8%;
}

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

	#top_commitment .list li .img{
		width: 100%;
	}

	#top_commitment .list li .text_wrapper{
		display: block;
		width: 100%;
		padding: 2.5rem 6%;
	}

	#top_commitment .list li h3{
		font-size: 1.8rem;
		margin-bottom: .5em;
	}
}

/* =====
	〇〇のサイトについて
======================================================== */
#top_about{
	position: relative;
}
#top_about::before{
	content: "";
	display: block;
	width: calc(100% + 33rem);
	height: 100%;
	background: url(../img/top/about_bg.jpg) no-repeat center top/cover;
	position: absolute;
	right: 0;
	top: 0;
}

#top_about .container{
	padding: 5rem 3.7%;
	background-color: var(--white);
}

#top_about .container .img{
	width: 48%;
}
#top_about .container .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#top_about .container .text_wrapper{
	width: 50%;
	max-width: 51.4rem;
	padding: 1% 0;
}

@media screen and (max-width: 1200px) {
	#top_about::before{
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	#top_about::before{
		background-image: url(../img/top/about_bg_sp.jpg);
		background-position: center bottom;
	}

	#top_about .container{
		display: block;
		padding: 3rem 6% 2.5rem;
		background-color: var(--white);
	}
	
	#top_about .container .img{
		width: 100%;
	}

	#top_about .container .text_wrapper{
		width: 100%;
		max-width: none;
		padding: 2.5rem 0 0;
	}
}


/************************************************************************
	下層共通
**************************************************************************/
/* =====
	ページタイトル
======================================================== */
.lower_head{
	padding: 3.25% 0;
	background-color: var(--bg_light_blue);
}

.lower_head .container{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
	width: 94%;
	min-height: 20rem;
	padding: 4.25rem 3%;
	margin-inline: auto;
	background-color: #fff;
}
.lower_head .container.nowrap{
	flex-wrap: nowrap;
}

.lower_head .container .lower_title{
	flex-shrink: 0;
	font-size: 3.6rem;
	font-weight: 900;
	color: var(--blue);
	letter-spacing: .15em;
}
.lower_head .container.has_multi .lower_title{
	padding-right: 2%;
}

.lower_head .container.has_multi .lower_title.control{
	width: 8.1em;/* 「よくあるご質問」に合わせる */
	padding-right: 0;
	margin-right: 3%;
}

@media screen and (max-width: 1200px) {
	.lower_head .container.switch1200{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-pack: center;
		justify-content: center;
	}

	.lower_head .container.switch1200 .lower_title{
		text-align: center;
		margin-bottom: .66em;
	}
	.lower_head .container.has_multi.switch1200 .lower_title{
		padding-right: 0;
	}
	.lower_head .container.has_multi.switch1200 .lower_title.control{
		width: auto;
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	.lower_head{
		padding: 8.4% 0;
	}

	.lower_head .container{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-pack: center;
		justify-content: center;
		width: 92%;
		min-height: 16.9rem;
		padding: 5.25rem 5% 4.75rem;
	}
	.lower_head .container .lower_title{
		font-size: 2.4rem;
		text-align: center;
		line-height: 1.75;
	}
	.lower_head .container.has_multi .lower_title{
		padding-right: 0;
		margin-bottom: .5em;
	}
}

/* アンカー
-------------------------------------------------------- */
.head_anchor_list{
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	width: fit-content;
}

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

.head_anchor_list.flex{
	-webkit-box-flex:1;
	flex-grow:1;
	width: auto;
}
.head_anchor_list.flex li{
	width: 32.4%;
	margin-right: 1.4%;
	margin-block: .25em;
}
.head_anchor_list.flex li:nth-of-type(3n){
	margin-right: 0;
}

.head_anchor_list li a{
	display: inline-block;
	padding: .5em 1.75em .5em 4.5em;
	position: relative;
}
.head_anchor_list li a:hover{
	color: var(--light_blue);
}

.head_anchor_list li a::before,
.head_anchor_list li a::after{
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	top: .75em;
	right: 0;
}
.head_anchor_list li a::before{
	border-radius: 50%;
	background-color: var(--blue);
	transition: background-color .4s;
}
.head_anchor_list li a:hover::before{
	background-color: var(--light_blue);
}
.head_anchor_list li a::after{
	background: url(../img/cmn/arrow01_wh.svg) no-repeat center top 52%/50%;
	z-index: 1;
}

.head_anchor_list li .num{
	display: -webkit-box;
    display: flex;
	-webkit-box-pack: center;
	justify-content: center;
    -webkit-box-align: center;
    align-items: center;
	font-family: var(--m_plus);
    color: var(--white);
	line-height: 1;
    text-transform: capitalize;
    width: fit-content;
    padding: .25em 1em .4em;
    border-radius: 5em;
    background-image: var(--blue_2color_w);
    background-image: var(--blue_2color);
    position: absolute;
    left: 0;
    top: .5em;
	transition: background-color .4s;
	overflow: hidden;
}

.head_anchor_list li a .num::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--light_blue);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: opacity .4s;
}

.head_anchor_list li a:hover .num::after{
	opacity: 1;
}

.head_anchor_list li .num span{
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 1200px) {

	.lower_head .container.switch1200 .head_anchor_list{
		margin-inline: auto;
	}

	.lower_head .container.switch1200 .head_anchor_list.flex{
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.head_anchor_list{
		width: 100%;
		max-width: 40rem;
		margin-inline: auto;
	}
	.head_anchor_list.flex{
		display: block;
	}

	.head_anchor_list li{
		margin-bottom: .1em;
	}
	.head_anchor_list.flex li{
		width: 100%;
	}

	.head_anchor_list li a{
		display: block;
		padding: .5em 1.75em .5em 3.75em;
	}

	.head_anchor_list li .num{
		font-size: .9em;
		padding: .2em .9em .3em;
		top: .66em;
	}
}


/* =====
	白セクション
======================================================== */
.white_sec{
	padding: 7.5rem 2.2%;
	margin-bottom: 5rem;
	background-color: var(--white);
}
.white_sec.pad{
	padding-inline: 4.5%;
}
.white_sec.pad0{
	padding: 0;
}
.white_sec.mb0{
	margin-bottom: 0;
}



@media screen and (max-width: 768px) {
	.white_sec{
		padding: 5.5rem 5%;
		margin-bottom: 3rem;
		background-color: var(--white);
	}
	.white_sec.pad{
		padding-inline: 5%;
	}

	.white_sec .sp_wide{
		width: 104%;
		margin-left: -2%;
	}
}

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


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

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


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

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


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



/************************************************************************
	薬監証明(輸入確認証)の取得方法
**************************************************************************/
/* =====
	01 薬監証明(輸入確認証)とは 取得が必要なケース
======================================================== */
.yakkan01child .case_container{
	padding-top: 8rem;
}

.yakkan01child .case_container .radius_title01{
	font-size: 2rem;
	margin-bottom: 1.25em;
}

.yakkan01child .case_container .list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.yakkan01child .case_container .list .wrapper{
	width: 32%;
	max-width: 31rem;
}

.yakkan01child .case_container .list .wrapper .u_bar_title{
	font-size: 1.8rem;
	margin-bottom: .5em;
}

@media screen and (max-width: 768px) {
	.yakkan01child .case_container{
		padding-top: 5rem;
	}

	.yakkan01child .case_container .radius_title01{
		font-size: 1.8rem;
		margin-bottom: 1em;
	}

	.yakkan01child .case_container .list{
		display: block;
	}

	.yakkan01child .case_container .list .wrapper{
		width: 100%;
		max-width: none;
		margin-bottom: 1.25rem;
	}
	.yakkan01child .case_container .list .wrapper:nth-last-of-type(1){
		margin-bottom: 0;
	}


	.yakkan01child .case_container .list .wrapper .u_bar_title{
		font-size: 1.6rem;
	}

}


/* =====
	02 薬監証明(輸入確認証)の取得方法について
======================================================== */
#yakkan02 .intro_container{
	padding: 7rem 2.2%;
}

.yakkan02child{
	--bg_color: #c2e9ff;
	padding: 8rem 0;
	background-color: var(--bg_color);
	position: relative;
}
.yakkan02child::after{
	content: "";
	display: block;
	width: 15rem;
	height: 3rem;
	background-color: var(--bg_color);
	position: absolute;
	top: calc(100% - 1px);
	left: calc(50% - 7.5rem);
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#yakkan02step01{
	z-index: 5;
}
#yakkan02step02{
	--bg_color: #b6e0f2;
	z-index: 4;
}
#yakkan02step03{
	--bg_color: #92cbea;
	z-index: 3;
}
#yakkan02step04{
	--bg_color: #70c0e8;
	z-index: 2;
}
#yakkan02step05{
	--bg_color: #23a2e2;
	padding-bottom: 4.5rem;
	z-index: 1;
}
#yakkan02step05::after{
	display: none;
}

@media screen and (max-width: 768px) {
	#yakkan02 .intro_container{
		padding: 5.5rem 5%;
	}

	.yakkan02child{
		padding: 7rem 0 4rem;
	}
	#yakkan02step01{
		padding-top: 4rem;
	}

	.yakkan02child::after{
		width: 100%;
		left: 0;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 1px ,50% 100%, 0 1px);
		clip-path: polygon(0 0, 100% 0, 100% 1px ,50% 100%, 0 1px);
	}
}

/* step中身
-------------------------------------------------------- */
.yakkan02child .inner{
	max-width: 80rem;
	width: 90%;
}
.yakkan02child .step_title{
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	text-align: center;
	letter-spacing: .1em;
	max-width: 20em;
	padding: .75em 4em;
	margin: 0 auto 1em;
	border-radius: 5em;
	background-color: var(--white);
	position: relative;
}

.yakkan02child .step_title .num{
	display: block;
	font-size: .7em;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: capitalize;
	position: absolute;
	left: 1.75em;
	top: 1.15em;
}
.yakkan02child .step_title .num .big{
	font-size: 1.14em;
}

@media screen and (max-width: 768px) {
	.yakkan02child .step_title{
		font-size: 1.8rem;
		padding: .35em 3.25em;
	}
	.yakkan02child .step_title .num{
		left: 1.25em;
		top: .66em;
	}
}

/* Step01
-------------------------------------------------------- */
#yakkan02step01 .list .wrapper{
	width: 32.4%;
	padding: 3.5rem 1%;
	background-color: var(--white);
}

#yakkan02step01 .list .wrapper dd{
	text-align: center;
}
#yakkan02step01 .list .wrapper .u_bar_title{
	font-size: 1.8rem;
	letter-spacing: .05em;
	margin-bottom: .5em;
}

@media screen and (max-width: 768px) {
	#yakkan02step01 .list .wrapper{
		width: 100%;
		padding: 2rem 4%;
		margin-bottom: 1.5rem;
	}
	#yakkan02step01 .list .wrapper:nth-of-type(3){
		margin-bottom: 0;
	}

	#yakkan02step01 .list .wrapper .u_bar_title{
		font-size: 1.6rem;
		margin-bottom: .5em;
	}

}


/* Step02
-------------------------------------------------------- */
#yakkan02step02 .white_container{
	padding: 4.5rem 2.2%;
	background-color: var(--white);
}

#yakkan02step02 .white_container .u_bar_title{
	font-size: 1.8rem;
	margin-bottom: .5em;
}

#yakkan02step02 .white_container .circle{
	max-width: 50rem;
	margin: 0 auto 3.25rem;
}

@media screen and (max-width: 768px) {
	#yakkan02step02 .white_container{
		padding: 3.5rem 5%;
	}
	#yakkan02step02 .white_container .circle{
		margin-bottom: 1.5rem;
	}
}


/* Step04
-------------------------------------------------------- */
#yakkan02step04 .flex_container .wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	width: 48.4%;
	padding: 3.5rem 3%;
	background-color: var(--white);
}

#yakkan02step04 .flex_container .wrapper .u_bar_title{
	font-size: 1.8rem;
	margin-bottom: 1.5em;
}

#yakkan02step04 .flex_container .wrapper .img{
	text-align: center;
	padding-bottom: 3rem;
	margin: auto;
}
#yakkan02step04 .flex_container .wrapper01 .img{
	padding-bottom: 2rem;
}

#yakkan02step04 .flex_container .wrapper .img img{
	width: auto;
	height: 10rem;
	object-fit: contain;
}
#yakkan02step04 .flex_container .wrapper01 .img img{
	height: 11rem;
}

#yakkan02step04 .flex_container .wrapper .text{
	max-width: 31rem;
	margin: auto;
}
#yakkan02step04 .flex_container .wrapper01 .text{
	padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
	#yakkan02step04 .flex_container .wrapper{
		width: 100%;
		padding: 2.5rem 3%;
		background-color: var(--white);
	}
	#yakkan02step04 .flex_container .wrapper01{
		margin-bottom: 1.5rem;
	}

	#yakkan02step04 .flex_container .wrapper .u_bar_title{
		font-size: 1.6rem;
	}

	#yakkan02step04 .flex_container .wrapper01 .img{
		padding-bottom: 2.5rem;
	}

	#yakkan02step04 .flex_container .wrapper .img img{
		height: 7.5rem;
	}
	#yakkan02step04 .flex_container .wrapper01 .img img{
		height: 8rem;
	}

	#yakkan02step04 .flex_container .wrapper .text{
		text-align: center;
	}
	#yakkan02step04 .flex_container .wrapper01 .text{
		padding-bottom: 0;
	}
	#yakkan02step04 .flex_container .wrapper02 .text{
		width: 92%;
	}
}



/* Step05
-------------------------------------------------------- */

#yakkan02step05 .circle{
	max-width: 76rem;
	margin: 0 auto 3.25rem;
}
#yakkan02step05 .circle li{
	padding-left: 1em;
	margin-bottom: .1em;
}
#yakkan02step05 .circle li::before{
	width: .3em;
	height: .3em;
	background-color: var(--white);
	left: 0;
	top: .7em;
}

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


/* =====
	03 薬監証明(輸入確認証)申請時の注意点
	04 薬監証明(輸入確認証)申請代行を依頼するメリット
======================================================== */
#yakkan03 .flex_container,
#yakkan04 .flex_container{
	padding-top: 7.5rem;
}
#yakkan03 .flex_container .wrapper,
#yakkan04 .flex_container .wrapper{
	width: 49%;
	margin-bottom: 4.5rem;
}
#yakkan03 .flex_container .wrapper:nth-of-type(n+3),
#yakkan04 .flex_container .wrapper:nth-of-type(n+3){
	margin-bottom: 0;
}

#yakkan03 .flex_container .wrapper .radius_title01,
#yakkan04 .flex_container .wrapper .radius_title01{
	font-size: 2rem;
	margin-bottom: 1em;
}

#yakkan03 .flex_container .wrapper .text,
#yakkan04 .flex_container .wrapper .text{
	width: 92%;
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	#yakkan03 .flex_container,
	#yakkan04 .flex_container{
		padding-top: 5rem;
	}

	#yakkan03 .flex_container .wrapper,
	#yakkan04 .flex_container .wrapper{
		width: 100%;
	}
	#yakkan03 .flex_container .wrapper:nth-of-type(3),
	#yakkan04 .flex_container .wrapper:nth-of-type(3){
		margin-bottom: 4.5rem;
	}

	#yakkan03 .flex_container .wrapper .radius_title01,
	#yakkan04 .flex_container .wrapper .radius_title01{
		font-size: 1.8rem;
		margin-bottom: 1.25em;
	}
}

/* =====
	お問い合わせ
======================================================== */
#ft_contact.yakkan_ft_contact h2{
	max-width: 108rem;
	margin-inline: auto;
	line-height: 1.75;
}

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

/************************************************************************
	医薬品のオリジナルパッケージ
**************************************************************************/
/* =====
	こんな課題をお持ちの医療機関・クリニック様へおすすめ
======================================================== */
#original_intro .container{
	padding: 4rem 0 3.5rem;
	background-color: var(--thin_light_blue);
	position: relative;
}
#original_intro .container01{
	margin-bottom: 2.5rem;
}

#original_intro .container::after{
	content: "";
	display: block;
	width: 15rem;
	height: 20rem;
	background: url(../img/original/intro01.png) no-repeat bottom right/contain;
	position: absolute;
	right: 4%;
	bottom: 0;
}
#original_intro .container02::after{
	background-image: url(../img/original/intro02.png);
}

#original_intro .container .u_bar_title{
	font-weight: 700;
}

#original_intro .container .check_list{
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-shadow: 0 0 .5em var(--bg_light_blue), 0 0 .5em var(--bg_light_blue);
	max-width: 31.5em;
	width: calc(96% - 30rem);/* 画像分引く */
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
#original_intro .container .check_list li{
	padding-left: 2.7em;
	margin-bottom: 1em;
	position: relative;
}
#original_intro .container .check_list li::before{
	content: "";
	display: block;
	width: 1.68em;
	height: 1.68em;
	background: var(--blue) url(../img/cmn/check_wh.svg) no-repeat center/ 60%;
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 768px) {
	#original_intro .container{
		padding: 4rem 0 20rem;
	}
	#original_intro .container01{
		margin-bottom: 1.5rem;
	}
	#original_intro .container02{
		padding-bottom: 18rem;
	}

	#original_intro .container::after{
		width: 13.2rem;
		height: 17.5rem;
		right: calc(50% - 6.6rem);
	}

	#original_intro .container .check_list{
		font-size: 1.6rem;
		width: 94.6%;/* 画像分引く */
	}

	#original_intro .container .check_list li{
		padding-left: 2em;
		margin-bottom: .75em;
	}
	#original_intro .container .check_list li::before{
		width: 1.25em;
		height: 1.25em;
		top: .25em;
	}
}


/* =====
	医薬品オリジナルパッケージ 発注の流れ
======================================================== */
#original_flow{
	margin-bottom: 7rem;
}

.original_flow_child{
	--bg_color: #f2f2f2;

	text-shadow: 0 0 .5em var(--bg_color), 0 0 .5em var(--bg_color);
	padding: 7.5rem 0 3.5rem;
	background-color: var(--bg_color);
	position: relative;
}
.original_flow_child:nth-of-type(2n){
	--bg_color: var(--white);
}

#original_flow01{
	padding-top: 4.5rem;
	z-index: 8;
}
#original_flow02{ z-index: 7;}
#original_flow03{ z-index: 6;}
#original_flow04{ z-index: 5;}
#original_flow05{ z-index: 4;}
#original_flow06{ z-index: 3;}
#original_flow07{ z-index: 2;}
#original_flow08{
	padding-bottom: 2rem;
	z-index: 1;
}

.original_flow_child::after{
	content: "";
	display: block;
	width: 15rem;
	height: 3rem;
	background-color: var(--bg_color);
	position: absolute;
	top: calc(100% - 1px);
	left: calc(50% - 7.5rem);
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#original_flow08::after{
	display: none;
}

.original_flow_child .inner{
	position: relative;
	z-index: 1;
}

.original_flow_child .u_bar_title{
	font-size: 2rem;
	font-weight: 700;
	padding-top: 1.5em;
	margin-bottom: .5em;
}
.original_flow_child .u_bar_title .num{
	display: block;
	font-size: .7em;
	letter-spacing: 0;
	text-transform: capitalize;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.original_flow_child .u_bar_title .num .big{
	font-size: 1.14em;
}

.original_flow_child .img{
	width: 16rem;
	height: 12rem;
	position: absolute;
	left: 5%;
	top: calc(50% - 6rem);
	z-index: -1;
}
.original_flow_child .img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

	.original_flow_child{
		padding: 5.75rem 0 1rem;
	}
	#original_flow01{
		padding-top: 2.5rem;
	}
	#original_flow08{
		padding-bottom: 1.5rem;
	}

	.original_flow_child::after{
		width: 100%;
		left: 0;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 1px ,50% 100%, 0 1px);
		clip-path: polygon(0 0, 100% 0, 100% 1px ,50% 100%, 0 1px);
	}

	.original_flow_child .inner{
		width: 94.6%;
	}

	.original_flow_child .u_bar_title{
		font-size: 1.8rem;
		margin-bottom: 1em;
	}

	.original_flow_child .img{
		width: 13.4rem;
		height: 10rem;
		margin: 0 auto 2rem;
		position: static;
	}
}

/* =====
	よくあるご質問
======================================================== */
#original_faq{
	margin-bottom: 0;
}
.faq_container .wrapper{
	cursor: pointer;
	padding: 2.5rem 2.5%;
	margin-bottom: 1rem;
	background-color: var(--bg_thin_gray);
	position: relative;
	transition: background-color .4s;
}
.faq_container .wrapper:nth-last-of-type(1){
	margin-bottom: 0;
}
.faq_container .wrapper.acc_open{
	background-color: var(--thin_light_blue);
}

.faq_container .wrapper::after{
	content: "";
	display: block;
	width: 1.4rem;
	height: .7rem;
	background: url(../img/cmn/arrow01_blue.svg?250804) no-repeat center/contain;
	position: absolute;
	right: 2.5%;
	top: 4rem;
	transition: transform .4s;
}
.faq_container .wrapper.acc_open::after{
	transform: scale(1, -1);
}

.faq_container .wrapper dt,
.faq_container .wrapper dd{
	padding-inline: 5rem 2rem;
	position: relative;
}

.faq_container .wrapper dt{
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--blue);
	padding-block: .5rem;
}
.faq_container .wrapper dd{
	display: none;
	padding-top: 3rem;
}

.faq_container .wrapper dt::before,
.faq_container .wrapper dd::before{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 700;
	color: var(--white);
	font-size: 2rem;
	width: 2em;
	height: 2em;
	padding-bottom: .1em;
	position: absolute;
	left: 0;
}
.faq_container .wrapper dt::before{
	content: "Q";
	background-color: var(--blue);
	top: 0;
}
.faq_container .wrapper dd::before{
	content: "A";
	background-color: var(--pink);
	top: 2.25rem;
}

@media screen and (max-width: 768px) {
	.faq_container .wrapper{
		margin-bottom: 1.5rem;
	}
	
	.faq_container .wrapper::after{
		width: 1.2rem;
		height: .6rem;
		right: 2.5%;
		top: 3.5rem;
	}

	.faq_container .wrapper dt,
	.faq_container .wrapper dd{
		padding-inline: 4rem 1.5rem;
	}
	.faq_container .wrapper dt{
		font-size: 1.6rem;
		padding-block: 0;
	}
	.faq_container .wrapper dd{
		padding-top: 1.75rem;
	}

	.faq_container .wrapper dt::before,
	.faq_container .wrapper dd::before{
		font-size: 1.8rem;
		width: 1.66em;
		height: 1.66em;
		padding-bottom: .15em;
	}
	.faq_container .wrapper dd::before{
		top: 1.5rem;
	}
}


/************************************************************************
	よくあるご質問
**************************************************************************/
#faq .head_anchor_list.flex{
	max-width: 100rem;
}

#faq .white_sec{
	padding-bottom: 9rem;
}
#faq .white_sec:nth-last-of-type(1){
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	#faq .head_anchor_list.flex{
		max-width: 40rem;
	}

	#faq .white_sec{
		padding-bottom: 6rem;
	}

	#faq .white_sec .num_sec_title{
		padding-top: 2em;

	}
}


/************************************************************************
	会社概要
**************************************************************************/
#company .head_anchor_list.flex{
	max-width: 72rem;
}

@media screen and (max-width: 1200px) {
	#company .head_anchor_list.flex{
		max-width: 60rem;
	}
}


@media screen and (max-width: 768px) {
	#company .white_sec .num_sec_title{
		padding-top: 2.5em;
	}
	#company .white_sec .num_sec_title .num {
        font-size: 1.25em;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
}


/* =====
	会社概要
======================================================== */
.tbl_primary tr{
	border-bottom: 1px solid #e6e6e6;
}
.tbl_primary tr:nth-last-of-type(1){
	border-bottom: none;
}
.tbl_primary th{
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	width: 10em;
	padding: 1.75em .75em 1.75em 1.5em;
}
.tbl_primary td{
	padding: 1.75em .75em 1.75em 1em;
}

@media screen and (max-width: 768px) {
	.tbl_primary th{
		width: 7.5em;
		padding: 1.35em .75em;
	}
	.tbl_primary td{
		padding: 1.35em .75em;
	}

}

/* =====
	アクセス
======================================================== */
#company_access{
	margin-bottom: 0;
}
#company_access .map{
	height: 40rem;
	position: relative;
}
#company_access .map iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

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

/************************************************************************
	お問い合わせ
**************************************************************************/
/* =====
	フォーム内
======================================================== */
.form_tbl{
	margin-top: -1.5rem;
	margin-bottom: 5rem;
}
.form_tbl .wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding: 1.5rem 0;
	margin-bottom: 4.25rem;
}
.form_tbl .wrapper:nth-last-of-type(1){
	margin-bottom: 0;
}

.form_tbl dt{
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	width: 23rem;
	position: relative;
}
.form_tbl dt.required::after{
	content: "必須";
	display: block;
	font-size: .7em;
	font-weight: 500;
	color: var(--white);
	letter-spacing: .05em;
	width: fit-content;
	padding: 0 .4em .1em;
	margin-top: .5em;
	background-color: var(--pink);
}

.form_tbl dd{
	width: calc(98% - 23rem);
	padding-top: .5rem;
}
.form_tbl dd.radio_wrap{
	padding-top: 0;
}


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

	.form_tbl .wrapper{
		display: block;
		padding: 1.5rem 0;
		margin-bottom: .5rem;
	}

	.form_tbl dt{
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
		-webkit-box-align: center;
		align-items: center;
		font-size: 1.8rem;
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.form_tbl dt.required::after{
		margin-top: .1em;
		margin-left: .5em;
		background-color: var(--pink);
	}
	.form_tbl dd{
		width: 100%;
		padding-top: 0;
	}
	.form_tbl dd.radio_wrap{
		margin-top: -.5rem;
	}
}


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

/* inputを囲むspan */
.form_area .wpcf7-form-control-wrap{
	display: block;
}

/* type=textなど */
.form_area input[type="text"],
.form_area input[type="email"],
.form_area input[type="tel"],
.form_area textarea{
	width: 100%;
	padding: .75em 2em;
	background-color: var(--bg_thin_gray);
}
.form_area input[type="tel"]{
	letter-spacing: .1em;
}
.form_area textarea{
	height: 18.75em;
}

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

	.form_area input[type="text"],
	.form_area input[type="email"],
	.form_area input[type="tel"],
	.form_area textarea{
		padding: .75em 1.5em;
	}
}


/* ラジオ・チェックボックス
-------------------------------------------------------- */
.form_area .wpcf7-form-control{
	display: block;
}
.form_area .wpcf7-list-item{
	display: inline-block;
	margin: .5rem 2rem .5rem 0;
}
.form_area .wpcf7-list-item-label{
	display: block;
	width: fit-content;
}

.form_area label{
	display: inline-block;
	position: relative;
	padding-left: 2em;
}

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

/* チェックのマーク部分 */
.form_area input[type="checkbox"]::before,
.form_area input[type="checkbox"]::after{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	left: 0;
	top: .2em;
	z-index: 1;
}
.form_area input[type="checkbox"]::before{
	background-color: var(--bg_thin_gray);
	transition: background-color .4s;
}
.form_area input[type="checkbox"]:checked::before{
	background-color: var(--blue);
}
.form_area input[type="checkbox"]::after{
	background: url(../img/cmn/icon_form_check_wh.svg) no-repeat center/60% 60%;
	opacity: 0;
	z-index: 2;
	transition: opacity .4s;
}
.form_area input[type="checkbox"]:checked::after{
	opacity: 1;
}

/* ラジオのマーク部分 */
.form_area input[type="radio"]::before,
.form_area input[type="radio"]::after{
	content: "";
	display: block;
	width: 1.25em;
	height: 1.25em;
	border-radius: 50%;
	background-color: var(--bg_thin_gray);
	position: absolute;
	left: 0;
	top: .2em;
	z-index: 1;
	transition: background-color .4s;
}
.form_area input[type="radio"]::after{
	z-index: 2;
	transform: scale(.6);
}

.form_area input[type="radio"]:checked::before{
	background-color: #fff;
}
.form_area input[type="radio"]:checked::after{
	background-color: var(--blue);
}

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

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

	.form_area .wpcf7-list-item{
		margin: .25rem 2.5rem .25rem 0;
	}
	.form_area input[type="radio"]::before,
	.form_area input[type="radio"]::after{
		width: 1.42em;
		height: 1.42em;
		left: 0;
		top: 0;
		z-index: 1;
		transition: background-color .4s;
	}

}


/* プライバシーポリシーに同意・フォーム入力内容を確認しました
-------------------------------------------------------- */
.form_area .privacy_check_wrapper > *,
.form_area .confirm_check_wrapper > *{
	display: block;
	width: fit-content;
	margin-inline: auto;
}

.form_area .privacy_check_wrapper a{/* プライバシーポリシーへの遷移 */
	display: inline-block;
	position: relative;
	z-index: 1;
}

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


/* 送信ボタン
-------------------------------------------------------- */
.form_area .wpcf7-spinner{
	display: none;
}

.form_submit_wrapper{
	--btn_grada_w: -webkit-linear-gradient(0deg, var(--pink) 25%, #fcb184 100%);
	--btn_grada: linear-gradient(90deg, var(--pink) 25%, #fcb184 100%);
	--before_grada_w: linear-gradient(0deg, var(--pink) 80%, transparent 100%);
	--before_grada: linear-gradient(90deg, var(--pink) 80%, transparent 100%);

	width: 92%;
	max-width: 31.2rem;
	margin-inline: auto;
}
.form_submit_wrapper > p{
	font-weight: 700;
	color: var(--white);
	border-radius: 5em;
	background-image: var(--btn_grada_w);
	background-image: var(--btn_grada);
	position: relative;
	overflow: hidden;
	transition: transform .4s;
}
.form_submit_wrapper:hover > p{
	transform: scale(1.1);
}

.form_submit_wrapper > p::before{
	content: "";
	display: block;
	width: 25%;
	height: 100%;
	background-image: var(--before_grada_w);
	background-image: var(--before_grada);
	position: absolute;
	left: 0;
	top: 0;
	transition: width .4s;
}
.form_submit_wrapper:hover > p::before{
	width: 125%;
}
.form_submit_wrapper > p::after{
	pointer-events: none;
	content: "";
	display: block;
	width: 2.18em;
	height: 2.18em;
	border-radius: 50%;
	background: var(--white) url(../img/cmn/btn_arrow_pink.svg?250624) no-repeat center/50%;
	position: absolute;
	right: .5em;
	top: calc(50% - 1.09em);
	z-index: 1;
	transition: opacity .4s;
}

.form_submit_wrapper input{
	display: block;
	text-align: left;
	letter-spacing: .1em;
	width: 100%;
	color: inherit;
	padding: 1em 3em 1em 1.5em;
	background-color: transparent;
	position: relative;
	z-index: 1;
}


.form_submit_wrapper:has(input[disabled]){
	pointer-events: none;
}
.form_submit_wrapper:has(input[disabled]) > p::before{
	display: none;
}

.form_submit_wrapper:has(input[disabled]) > p::after{
	opacity: 0;
}

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

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


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

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





/* =====
	サンクスページ
======================================================== */


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


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



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



/************************************************************************
	特定商取引法に基づく表記
**************************************************************************/
#law_sec .tbl_primary{
	margin-block: -1.5rem;
}

#law_sec .tbl_primary th{
	width: 15em;
}

@media screen and (max-width: 768px) {
	#law_sec .tbl_primary th{
		width: 7.5em;
		padding: 1.35em .25em 1.35em .75em;
	}
	#law_sec .tbl_primary td{
		padding: 1.35em .75em 1.35em 0;
	}
}


/************************************************************************
	利用規約
**************************************************************************/
.tarms_dl > dt{
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	margin-bottom: 1.5em;
}

.tarms_dl > dd{
	margin-bottom: 4.5em;
}
.tarms_dl > dd:nth-last-of-type(1){
	margin-bottom: 0;
}

.tarms_dl .child_dl > .wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding: 3.8rem 2.2%;
	margin-bottom: 1rem;
	background-color: var(--bg_thin_gray);
}
.tarms_dl .child_dl > .wrapper:nth-last-of-type(1){
	margin-bottom: 0;
}

.tarms_dl .child_dl > .wrapper > dt{
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--blue);
	width: 14.5rem;
	padding-right: .5rem;
}

.tarms_dl .child_dl > .wrapper > dd{
	width: calc(100% - 14.5rem);
	padding-left: 2.5rem;
	position: relative;
}
.tarms_dl .child_dl > .wrapper > dd::before{
	content: "";
	display: block;
	width: 2px;
	height: calc(100% - .5em);
	background-color: var(--blue);
	position: absolute;
	left: 0;
	top: .25em;
}

.tarms_dl .tbl_primary th{
	width: 8em;
	padding: 1em .75em 1em 1.5em;
}
.tarms_dl .tbl_primary td{
	padding: 1em .75em 1em 1em;
}

.tarms_dl .num_list > li{
	margin-bottom: 1.5em;
}
.tarms_dl .num_list > li:nth-last-of-type(1){
	margin-bottom: 0;
}
.tarms_dl .num_list > li > .num_list_parentheses{
	padding-top: 1em;
}
.tarms_dl .num_list_parentheses > li{
	padding-left: 1.85em;
	margin-bottom: 1em;
}
.tarms_dl .num_list_parentheses > li:nth-last-of-type(1){
	margin-bottom: 0;
}

.tarms_dl .num_list_parentheses > li > .circle_num{
	padding-top: .75em;
}
.tarms_dl .circle_num > li{
	margin-bottom: .75em;
}
.tarms_dl .circle_num > li:nth-last-of-type(1){
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	#tarms_sec{
		padding-inline: 7%;
	}
	.tarms_dl > dt{
		font-size: 1.8rem;
		margin-bottom: 1.35em;
	}

	.tarms_dl > dd{
		margin-bottom: 3.75em;
	}

	.tarms_dl .child_dl > .wrapper{
		display: block;
		width: 110%;
		margin-left: -5%;
		padding: 2rem 5%;
		margin-bottom: 1.5rem;
		background-color: var(--bg_thin_gray);
	}

	.tarms_dl .child_dl > .wrapper > dt{
		font-size: 1.6rem;
		width: fit-content;
		padding-right: 1em;
		margin-bottom: .5em;
		position: relative;
	}
	.tarms_dl .child_dl > .wrapper > dt::before{
		content: "";
		display: block;
		width: 2px;
		height: calc(100% - .5em);
		background-color: var(--blue);
		position: absolute;
		right: 0;
		top: .25em;
	}

	.tarms_dl .child_dl > .wrapper > dd{
		width: 100%;
		padding-left: 0;
	}
	.tarms_dl .child_dl > .wrapper > dd::before{
		display: none;
	}

	.tarms_dl .tbl_primary th{
		width: 6em;
		padding: 1em .75em;
	}
	.tarms_dl .tbl_primary td{
		padding: 1em .75em;
	}
}


/************************************************************************
	医薬品一覧
**************************************************************************/
.lower_head .search_area{
	-webkit-box-flex:1;
	flex-grow:1;
}

.lower_head .search_wrapper{
	margin-bottom: 1rem;
}

.lower_head .search_title{
	padding: 1.5em 0;
}
.lower_head .cat_search_title{
	padding: 2em 0 1em;
}

.lower_head .search_box{
	min-width: calc(98% - 20rem);
	width: fit-content;
	position: relative;
}
.lower_head .search_box input[type="text"]{
	width: 100%;
	padding: .75em 3em .75em 1.75em;
	border-radius: 5em;
	background-color: var(--bg_thin_gray);
}
.lower_head .search_box button{
	display: block;
	width: 1.7em;
	height: 1.7em;
	border-radius: 50%;
	background: var(--blue) url(../img/cmn/icon_search_wh.svg) no-repeat center/50%;
	position: absolute;
	right: 1em;
	top: calc(50% - .85em);
	z-index: 1;
}
.lower_head .search_box button:hover{
	opacity: .7;
}

.lower_head .cat_search_box{
	min-width: calc(98% - 20rem);
	width: fit-content;
	padding: 2.5rem 4% 2.5rem 2%;
	background-color: var(--bg_thin_gray);
}

.lower_head .cat_search_box ul{
	font-size: 1.4rem;

	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(3, minmax(0, 15.7em));
    grid-template-columns: repeat(3, minmax(0, 15.7em));
	grid-column-gap: 1em;
	grid-row-gap: 1em;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.lower_head .cat_search_box .cat-item a{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	height: 100%;
	padding: .5em 1.25em;
	border-radius: 5em;
	background-color: #fff;
}
.lower_head .cat_search_box .cat-item a:hover{
	color: var(--white);
	background-color: var(--blue);
}
.lower_head .cat_search_box .cat-item.current-cat a{
	color: var(--white);
	background-color: var(--blue);
}


@media screen and (max-width: 1200px) {
	.lower_head .switch1200 .cat_search_wrapper{
		display: block;
	}
	
	.lower_head .switch1200 .cat_search_box{
		min-width: 0;
		width: auto;
	}

}


@media screen and (max-width: 768px) {
	.lower_head .search_wrapper,
	.lower_head .cat_search_wrapper{
		display: block;
	}

	.lower_head .search_wrapper{
		margin-bottom: 2rem;
	}

	.lower_head .search_title{
		text-align: center;
		padding: .5em 0;
	}
	.lower_head .cat_search_title{
		text-align: center;
		padding: .5em 0 1em;
	}

	.lower_head .search_box{
		width: 100%;
	}

	.lower_head .cat_search_box{
		min-width: 0;
		width: auto;
	}

	.lower_head .cat_search_box ul{
		font-size: 1.2rem;

		-ms-grid-columns: repeat(2, minmax(49%, 15.7em));
		grid-template-columns: repeat(2, minmax(49%, 15.7em));
		grid-column-gap: 2%;
		grid-row-gap: .75em;
	}
	.lower_head .cat_search_box .cat-item a{
		-webkit-box-pack: center;
		justify-content: center;
		padding: .5em 1em;
	}
}

/* =====
	一覧部分
======================================================== */
.pharmaceuticals_list{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(4, 24%);
    grid-template-columns: repeat(4, 24%);
	grid-column-gap: calc(4% / 3);
	grid-row-gap: 2rem;
}

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

.pharmaceuticals_list li .thumb_wrapper{
	position: relative;
}
.pharmaceuticals_list li .thumb_wrapper::before{
	content: "";
	display: block;
	padding-top: 75%;
}
.pharmaceuticals_list li .thumb_wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}
.pharmaceuticals_list li .thumb_wrapper img.vertical{
	object-fit: contain;
}

.pharmaceuticals_list li .thumb_wrapper .cat{
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--blue);
	max-width: 96%;
	width: fit-content;
	padding: .4em 1em;
	background-color: var(--bg_thin_gray);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: background-color .4s;
}
.pharmaceuticals_list li:has(.btn:hover) .thumb_wrapper .cat{
	background-color: #c4e8e7;
}

.pharmaceuticals_list li .text_wrapper{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;/* サブグリッドにすることで高さ調整可能に */
	grid-row: span 3;/* パーツの数 */
	padding: 2.25rem 5% 3rem;
	background-color: var(--bg_thin_gray);
	transition: background-color .4s;
}
.pharmaceuticals_list li:has(.btn:hover) .text_wrapper{
	background-color: #c4e8e7;
}

.pharmaceuticals_list li .text_wrapper h3{
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	margin-bottom: .75em;
}

.pharmaceuticals_list .component_dl{
	margin-bottom: 1.25em;
}
.pharmaceuticals_list .component_dl dt{
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .1em;
	margin-bottom: .25em;
}
.pharmaceuticals_list .component_dl .disc_mark{
	padding-left: 1em;
}
.pharmaceuticals_list .component_dl .disc_mark::before{
	left: 0;
}

.pharmaceuticals_list li .text_wrapper .btn{
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	width: fit-content;
	padding: .5em 1em;
	border-radius: 5em;
	background-color: var(--white);
}
.pharmaceuticals_list li .text_wrapper .btn:hover{
	color: var(--white);
	background-color: var(--blue);
}

@media screen and (max-width: 1400px) {
	.pharmaceuticals_list{
		-ms-grid-columns: repeat(3, 32.4%);
		grid-template-columns: repeat(3, 32.4%);
		grid-column-gap: calc(2.8% / 2);
	}
}

@media screen and (max-width: 1200px) {
	.pharmaceuticals_list{
		-ms-grid-columns: repeat(4, 24%);
		grid-template-columns: repeat(4, 24%);
		grid-column-gap: calc(4% / 3);
	}
}

@media screen and (max-width: 1024px) {
	.pharmaceuticals_list{
		-ms-grid-columns: repeat(3, 32.4%);
		grid-template-columns: repeat(3, 32.4%);
		grid-column-gap: calc(2.8% / 2);
	}
}

@media screen and (max-width: 768px) {
	.pharmaceuticals_list{
		display: block;
	}
	.pharmaceuticals_list li{
		display: block;
		width: 100%;
		margin-bottom: 3rem;
	}

	.pharmaceuticals_list li .thumb_wrapper .cat{
		font-size: 1.2rem;
		padding: .5em 1em;
	}

	.pharmaceuticals_list li .text_wrapper{
		display: block;
		padding: 2.5rem 5% 3rem;
	}

	.pharmaceuticals_list li .text_wrapper h3{
		font-size: 1.8rem;
	}

	.pharmaceuticals_list .component_dl dt{
		font-size: 1.6rem;
	}
}


/* =====
	ページャー
======================================================== */
.wp-pagenavi{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	padding-top: 1.5em;
	text-align: center;
	position: relative;
	z-index: 1;
}
.wp-pagenavi a, .wp-pagenavi span{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	line-height: 1;
	width: 2.5em;
	height: 2.5em;
	margin: 0 .1em;
	border-radius: 50%;
}

.wp-pagenavi .current{
	color: var(--white);
	background-color: var(--blue);
	
}
.wp-pagenavi .page{
	position: relative;
	overflow: hidden;
}
.wp-pagenavi .page:hover{
	color: var(--white);
	background-color: var(--blue);
}

.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink,
.wp-pagenavi .first, .wp-pagenavi .last{
	position: relative;
	overflow: hidden;
	text-indent: -999999999999px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .first{
	margin-right: .25em;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .last{
	margin-left: .25em;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .first:hover,
.wp-pagenavi .last:hover{
	background-color: var(--blue);
}

.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after,
.wp-pagenavi .first::after, .wp-pagenavi .last::after{
	content: "";
	display: block;
	width: .6em;
	height: .6em;
	background-color: var(--font_color);
	position: absolute;
	left: calc(50% - .3em);
	top: calc(50% - .3em);
	transition: background-color .4s;
}
.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after{
	-webkit-mask: url(../img/cmn/arrow02.svg) no-repeat center/contain;
	mask: url(../img/cmn/arrow02.svg) no-repeat center/contain;
}
.wp-pagenavi .first::after, .wp-pagenavi .last::after{
	-webkit-mask: url(../img/cmn/arrow02double.svg) no-repeat center/contain;
	mask: url(../img/cmn/arrow02double.svg) no-repeat center/contain;
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .first::after{
	transform: scale(-1, 1);
}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after,
.wp-pagenavi .first:hover::after,
.wp-pagenavi .last:hover::after{
	background-color: var(--white);
}

@media screen and (max-width: 768px) {
	.wp-pagenavi{
		font-size: 1.8rem;
		padding-top: .5em;
	}
	.wp-pagenavi a, .wp-pagenavi span{
		width: 1.67em;
		height: 1.67em;
		padding-bottom: .2em;
		margin: 0 .075em;
	}

	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .first{
		margin-right: .1em;
	}
	.wp-pagenavi .nextpostslink,
	.wp-pagenavi .last{
		margin-left: .1em;
	}
	
	.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after,
	.wp-pagenavi .first::after, .wp-pagenavi .last::after{
		width: .67em;
		height: .67em;
		left: calc(50% - .33em);
		top: calc(50% - .33em);
	}
}


/************************************************************************
	医薬品詳細
**************************************************************************/
/* =====
	冒頭
======================================================== */
#pharmaceuticals_article .article_intro{
	margin-bottom: 4rem;
}

#pharmaceuticals_article .article_intro .thumb{
	width: 42%;
	position: relative;
}
#pharmaceuticals_article .article_intro .thumb::before{
	content: "";
	display: block;
	padding-top: 75%;
}
#pharmaceuticals_article .article_intro .thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}
#pharmaceuticals_article .article_intro .thumb img.vertical{
	object-fit: contain;
}

#pharmaceuticals_article .article_intro .thumb .cat{
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--blue);
	max-width: 96%;
	width: fit-content;
	padding: .4em 1em;
	background-color: var(--bg_thin_gray);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: background-color .4s;
}

#pharmaceuticals_article .article_intro .text_wrapper{
	width: 56%;
	padding-top: 1.5%;
}

#pharmaceuticals_article .article_intro .text_wrapper h1{
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	margin-bottom: 1em;
}

#pharmaceuticals_article .article_intro .text_wrapper dl .wrapper{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
	margin-bottom: 1.1em;
}
#pharmaceuticals_article .article_intro .text_wrapper dl dt{
	flex-shrink: 0;
	font-weight: 700;
	color: var(--blue);
	width: 8em;
	padding-right: 1em;
	position: relative;
}
#pharmaceuticals_article .article_intro .text_wrapper dl dt::after{
	content: "";
	display: block;
	width: 2px;
	height: 1em;
	background-color: var(--blue);
	position: absolute;
	right: 0;
	top: calc(50% - .5em);
}
#pharmaceuticals_article .article_intro .text_wrapper dl dd{
	width: calc(100% - 8em);
	padding-left: 1em;
}

.pharmaceuticals_contact_btn{
	font-size: 1.4rem;
	width: fit-content;
	text-align: center;
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	#pharmaceuticals_article{
		padding-top: 3rem;
		padding-inline: 6%;
	}

	#pharmaceuticals_article .article_intro .thumb{
		width: 100%;
	}

	#pharmaceuticals_article .article_intro .text_wrapper{
		width: 100%;
		padding-top: 2.5rem;
	}

	#pharmaceuticals_article .article_intro .text_wrapper h1{
		font-size: 2.2rem;
		margin-bottom: .9em;
	}

	#pharmaceuticals_article .article_intro .text_wrapper dl .wrapper{
		display: block;
		margin-bottom: 1.5em;
	}

	#pharmaceuticals_article .article_intro .text_wrapper dl dt{
		font-size: 1.6rem;
		width: fit-content;
		margin-bottom: .5em;
	}

	#pharmaceuticals_article .article_intro .text_wrapper dl dd{
		width: 100%;
	}

	.pharmaceuticals_contact_btn{
		text-align: center;
	}
}


/* =====
	内容
======================================================== */
.pharmaceuticals_sec{
	padding-top: 5.75rem;
}
.pharmaceuticals_sec.pt_control{
	padding-top: 3rem;
}

.pharmaceuticals_sec .sec_title_wrapper{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	text-align: center;
	width: 104%;
	padding: 1em .5em;
	margin-left: -2%;
	margin-bottom: 1.75em;
	border-radius: 10em;
	background-color: var(--bg_thin_gray);
}

#top_advantage.pharmaceuticals_sec .list{
	width: 104%;
	margin-left: -2%;
	padding-top: 5rem;
}

#top_advantage.pharmaceuticals_sec .list li{
	padding-top: 2.5rem;
	margin-bottom: 4rem;
}
#top_advantage.pharmaceuticals_sec .list li .num_2color{
	font-family: var(--m_plus);
	letter-spacing: .1em;
	line-height: 1;
	padding: .25em 1em .4em;
}
#top_advantage.pharmaceuticals_sec .list li h3{
	font-size: 1.6rem;
}

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

	.pharmaceuticals_sec .sec_title_wrapper{
		font-size: 1.8rem;
		padding: .85em .5em;
		border-radius: .84em;
	}

	#top_advantage.pharmaceuticals_sec .list{
		width: 100%;
		margin-left: 0;
		padding-top: 4rem;
	}
	#top_advantage.pharmaceuticals_sec .list li{
		padding-inline: 0;
		margin-bottom: 2.5rem;
	}

	#top_advantage.pharmaceuticals_sec .list li .num_2color{
		padding: .3em 1em .35em;
	}

}


/* =====
	お問い合わせ
======================================================== */
#pharmaceuticals_form{
	padding-top: 0;
}

#pharmaceuticals_form .form_tbl dt{
	font-size: 1.8rem;
}

/* #pharmaceuticals_form .form_tbl{
	max-width: 65.4rem;
	margin-top: 0;
}

#pharmaceuticals_form .form_tbl dt{
	font-size: 1.6rem;
	width: 100%;
	margin-bottom: .5em;
}
#pharmaceuticals_form .form_tbl dt.required::after{
	display: inline-block;
	font-size: .875em;
	margin-left: .5em;
}

#pharmaceuticals_form .form_tbl .wrapper{
	display: block;
	padding: 1rem 0;
	margin-bottom: 2rem;
}

#pharmaceuticals_form .form_tbl dd{
	width: 100%;
}

#pharmaceuticals_form .form_area .privacy_check_wrapper > *,
#pharmaceuticals_form .form_area .confirm_check_wrapper > *{
	margin-left: 0;
}
#pharmaceuticals_form .form_submit_wrapper{
	margin-left: 0;
}
#pharmaceuticals_form .cf7-cf-turnstile{
	margin-left: 0 !important;
} */

/* @media screen and (max-width: 768px) {
	#pharmaceuticals_form .form_tbl dt{
		margin-bottom: 1em;
	}
} */

@media screen and (max-width: 768px) {
	#pharmaceuticals_form .form_tbl dt{
		font-size: 1.7rem;
	}
}

/* =====
	一覧へボタン
======================================================== */
.to_pharmaceuticals_list{
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--white);
	width: fit-content;
	padding: 1em 3em;
	margin: auto;
	border-radius: 5em;
	background-color: var(--blue);
}
.to_pharmaceuticals_list:hover{
	color: var(--blue);
	background-color: var(--white);
	transform: scale(1.1);
}

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


/************************************************************************
	医薬品輸入の知識
**************************************************************************/
#explanation .lower_title{
	line-height: 1.75;
}

#explanation .head_anchor_list li a{
	padding-left: 6em;
}


@media screen and (max-width: 768px) {
	#explanation .head_anchor_list li a{
		padding-left: 3.75em;
	}
}

/* =====
	01~06共通
======================================================== */
#explanation .num_sec_title{
	font-size: 3rem;
	margin-bottom: 2.75em;
}

.explanation_layout01{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(2, 48.8%);
    grid-template-columns: repeat(2, 48.8%);
	grid-row-gap: 4.5rem;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.explanation_layout01 .wrapper{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;/* サブグリッドにすることで高さ調整可能に */
	grid-row: span 3;/* パーツの数「.radius_title .img .text_box」 */
	grid-row-gap: 2.25rem;
}

.explanation_layout01 .radius_title{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	text-align: center;
	padding: 1em .5em;
	border-radius: 10em;
	background-color: var(--bg_thin_gray);
}

.explanation_layout01 .img{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	height: 15rem;
}

.explanation_layout01 .img img{
	max-height: 100%;
	object-fit: contain;
}

.explanation_layout01 .text_box{
	width: 94%;
}
.explanation_layout01 .wrapper:nth-of-type(2n+1) .text_box{
	margin-left: 4%;
	margin-right: 2%;
}
.explanation_layout01 .wrapper:nth-of-type(2n) .text_box{
	margin-left: 2%;
	margin-right: 4%;
}

.explanation_layout01 .text_box p{
	margin-bottom: 1.5em;
}
.explanation_layout01 .text_box p:nth-last-of-type(1){
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	#explanation .white_sec{
		padding-inline: 5.5%;
	}

	#explanation .num_sec_title{
		font-size: 2.4rem;
		margin-bottom: 2.4em;
	}

	.explanation_layout01{
		display: block;
	}
	.explanation_layout01 .wrapper{
		display: block;
		margin-bottom: 5.5rem;
	}
	.explanation_layout01 .wrapper:nth-last-of-type(1){
		margin-bottom: 0;
	}

	.explanation_layout01 .radius_title{
		font-size: 1.8rem;
		width: 106%;
		margin-left: -3%;
		margin-bottom: 2.5rem;
		padding: .85em .5em;
		border-radius: .84em;
	}

	.explanation_layout01 .img{
		height: 9rem;
		margin-bottom: 1.5rem;
	}

	.explanation_layout01 .text_box{
		width: 100%;
	}
	.explanation_layout01 .wrapper:nth-of-type(2n+1) .text_box,
	.explanation_layout01 .wrapper:nth-of-type(2n) .text_box{
		margin: 0;
	}

}

/* =====
	03~05出現水色領域
======================================================== */
.explanation_layout02{
	padding: 7.25rem 2.5%;
	background-color: var(--thin_light_blue);
}

.explanation_layout02title{
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	text-align: center;
	margin-bottom: .66em;
}
.explanation_layout02title.attached_img{
	position: relative;
}
.explanation_layout02title.attached_img img{
	object-fit: contain;
	position: absolute;
}

.explanation_layout02 .intro_text{
	text-align: center;
	margin-bottom: 1.5em;
}
.explanation_layout02 .outro_text{
	width: fit-content;
	margin: 1.5em auto 0;
}

.explanation_layout02_column4list{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(4, 23.2%);
    grid-template-columns: repeat(4, 23.2%);
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.explanation_layout02_column4list li{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;/* サブグリッドにすることで高さ調整可能に */
	grid-row: span 2;/* パーツの数 */
	background-color: var(--white);
	padding: 2.5rem 8%;
}

.explanation_layout02_column4list li .title_box{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--blue);
	letter-spacing: .1em;
	text-align: center;
	padding-bottom: 1em;
	position: relative;
}
.explanation_layout02_column4list li .title_box::after{
	content: "";
	display: block;
	width: 1.8em;
	height: 2px;
	background-color: var(--blue);
	position: absolute;
	bottom: 0;
	left: calc(50% - .9em);
}
.explanation_layout02_column4list li .text_box{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	padding-top: .5em;
}

.explanation_layout02_column3list{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.explanation_layout02_column3list li{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--blue);
	letter-spacing: .1em;
	width: 32%;
	padding: 1.5em 2%;
	background-color: var(--white);
}

@media screen and (max-width: 768px) {
	.explanation_layout02{
		width: 106%;
		padding: 3.5rem 3%;
		margin-left: -3%;
	}

	.explanation_layout02title{
		font-size: 2.2rem;
		margin-bottom: .75em;
	}

	.explanation_layout02 .intro_text{
		text-align: left;
		margin-bottom: 1.25em;
	}
	.explanation_layout02 .outro_text{
		margin: 1.25em auto 0;
	}

	.explanation_layout02_column4list{
		display: block;
	}
	.explanation_layout02_column4list li{
		display: block;
		padding: 2rem 8%;
		margin-bottom: 1.5rem;
	}
	.explanation_layout02_column4list li:nth-last-of-type(1){
		margin-bottom: 0;
	}

	.explanation_layout02_column4list li .title_box{
		font-size: 1.6rem;
		padding-bottom: .66em;
	}

	.explanation_layout02_column4list li .deco_text_box{
		text-align: center;
		padding-top: .66em;
	}

	.explanation_layout02_column3list{
		display: block;
	}

	.explanation_layout02_column3list li{
		font-size: 1.6rem;
		text-align: center;
		width: 100%;
		padding: 1.33em 8%;
		margin-bottom: 1em;
		background-color: var(--white);
	}

}

/* =====
	06
======================================================== */
#explanation06{
	margin-bottom: 0;
}
#explanation06 .flex_wrapper{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
	margin-bottom: 5rem;
}
#explanation06 .flex_wrapper:nth-last-of-type(1){
	margin-bottom: 0;
}

#explanation06 .flex_wrapper .img{
	width: 37rem;
}

#explanation06 .flex_wrapper .text_box{
	width: calc(97.5% - 37rem);
	margin-top: -.5rem;
}
#explanation06 .flex_wrapper h3{
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: .1em;
	margin-bottom: .5em;
}

@media screen and (max-width: 768px) {
	#explanation06 .flex_wrapper{
		display: block;
		margin-bottom: 5.5rem;
	}

	#explanation06 .flex_wrapper .img{
		width: 100%;
		margin-bottom: 2rem;
	}

	#explanation06 .flex_wrapper .text_box{
		width: 100%;
		margin-top: 0;
	}
	#explanation06 .flex_wrapper h3{
		font-size: 1.8rem;
		margin-bottom: .5em;
	}
}



/* =====
	01~06 各要素 調整
======================================================== */
/* 01~06 画像
-------------------------------------------------------- */
.explanation01_01 .img img{
	width: 40%;
	margin-right: 12%;
}
.explanation02_02 .img img{
	width: 24%;
	margin-right: 2%;
}
.explanation02_04 .img img{
	width: 32%;
	margin-right: 10%;
}
.explanation03_01 .img img{
	width: 20%;
}
.explanation04_01 .img img{
	width: 27%;
}
.explanation04_02 .img img{
	width: 43%;
	margin-right: 2%;
}


@media screen and (max-width: 768px) {
	.explanation01_01 .img{
		height: 7.5rem;
		margin-bottom: 2.25rem;
	}
	.explanation04_01 .img{
		height: 7.5rem;
		margin-bottom: 2.25rem;
	}

	.explanation_layout01 .wrapper .img img{
		width: 100%;
		margin: 0;
	}
}


/* 03〜05 水色背景部分 タイトル調整
-------------------------------------------------------- */
#explanation03document .explanation_layout02title{
	padding-inline: calc(5% + 11rem);
}
#explanation03document .explanation_layout02title img{
	width: 11rem;
	height: 6.8rem;
	left: 2.5%;
	top: calc(50% - 3.4rem);
}

#explanation03trouble .explanation_layout02title{
	padding-inline: calc(5.5% + 15rem);
}
#explanation03trouble .explanation_layout02title img{
	width: 15rem;
	height: 15rem;
	left: 4.5%;
	top: calc(50% - 10rem);
}

#explanation05support .explanation_layout02title{
	padding-inline: calc(10% + 9rem);
}
#explanation05support .explanation_layout02title img{
	width: 9rem;
	height: 14rem;
	left: 8.5%;
	bottom: .5rem;
}

@media screen and (max-width: 768px) {
	#explanation03document .explanation_layout02title{
		padding-inline: 0;
	}
	#explanation03document .explanation_layout02title img{
		width: 8.2rem;
		height: 5rem;
		top: -6rem;
	}

	#explanation03trouble .explanation_layout02title{
		padding-inline: 0;
	}
	#explanation03trouble .explanation_layout02title img{
		width: 9rem;
		height: 9rem;
		left: 2.5%;
		top: -8.5rem;
	}

	#explanation05support .explanation_layout02title{
		padding-inline: 0;
	}
	#explanation05support .explanation_layout02title img{
		width: 5.7rem;
		height: 9rem;
		left: 2.5%;
		bottom: 100%;
	}
}


/* その他
-------------------------------------------------------- */
#explanation03 .ft_contact_btn_container .grada_box{
	width: 49%;
}

#explanation03trouble .intro_text{
	padding-right: 2em;
}

.explanation04_03 .text_box p{
	margin-bottom: 1em;
}
.explanation04_03 .text_box ul{
	margin-bottom: 1em;
}
.explanation04_03 .text_box p:nth-last-of-type(1){
	margin-bottom: 0;
}

#explanation05case{
	padding-bottom: 5rem;
}
#explanation05case .intro_text{
	text-align: left;
	margin-bottom: 1.75em;
}
#explanation05case .explanation_layout02_column4list li{
	padding-top: 1.75rem;
}
#explanation05case .explanation_layout02_column4list li .title_box{
	padding-bottom: .75em;
}
#explanation05case .explanation_layout02_column4list li .text_box{
	display: block;
}
#explanation05case .outro_text{
	width: 100%;
	margin-bottom: 2em;
}

#explanation05support .intro_text{
	text-align: left;
	margin-bottom: 1.75em;
}
#explanation05support .explanation_layout02_column4list li{
	padding-inline: 10%;
}
#explanation05support .explanation_layout02_column4list li .img{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	height: 11rem;
}
#explanation05support .explanation_layout02_column4list li .img img{
	width: auto;
	height: 100%;
}
#explanation05support .explanation_layout02_column4list li:nth-of-type(1) .img img{
	height: 64%;/* 70px */
}
#explanation05support .explanation_layout02_column4list li:nth-of-type(2) .img img{
	height: 91%;/* 100px */
}
#explanation05support .explanation_layout02_column4list li:nth-of-type(4) .img img{
	height: 72.7%;/* 80px */
}
#explanation05support .explanation_layout02_column4list li h4{
	padding-top: .5em;
}
#explanation05support .explanation_layout02_column4list li h4 .small{
	display: inline-block;
	font-size: .89em;
	font-weight: 400;
	padding-top: .25em;
}
#explanation05support .outro_text{
	width: 100%;
}

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

	#explanation03 .ft_contact_btn_container .grada_box{
		width: 100%;
	}

	#explanation05case .outro_text{
		margin-bottom: 1.5em;
	}

	#explanation05support .intro_text{
		margin-bottom: 2.5em;
	}
	#explanation05support .explanation_layout02_column4list li .img{
		height: 9rem;
		margin-bottom: 2rem;
	}
	#explanation05support .explanation_layout02_column4list li:nth-of-type(1) .img img{
		height: 66%;/* 60px */
	}
	#explanation05support .explanation_layout02_column4list li:nth-of-type(2) .img img{
		height: 100%;/* 90px */
	}
	#explanation05support .explanation_layout02_column4list li:nth-of-type(4) .img img{
		height: 84%;/* 75px */
	}
	#explanation05support .explanation_layout02_column4list li h4{
		text-align: center;
		padding-top: 0;
	}
	#explanation05support .outro_text{
		margin-top: 2em;
	}

}


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


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


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



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


/************************************************************************
	お知らせ実装用
**************************************************************************/
/* =====
	エディター出力部分（ブロックエディタ）
======================================================== */
/* -----
	共通
-------------------- */
.content > *{/* .contentは<?php the_content(); ?>を囲む要素なので、任意のクラス名 */
    margin-bottom: 2.8rem;
    margin-top: 2.8rem;
}

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

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

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

.has-thin-gray-background-color {
	background-color: #f2f2f2;
}
.has-thin-gray-color {
	color: #f2f2f2;
}


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

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

.content a{
	cursor: pointer;
	color: #2271b1;
	text-decoration: underline;
	transition: .4s;
}
.content a:hover{
	text-decoration: none;
}

/* -----
	見出し
-------------------- */
.wp-block-heading{
	font-weight: 700;
	letter-spacing: .1em;
}
h2.wp-block-heading{/* デザインに合わせて20px */
	font-size: 1.25em;
}
h3.wp-block-heading{/* デザインに合わせて18px */
	font-size: 1.125em;
}
h4.wp-block-heading{
	font-size: 1.1em;
}
h5.wp-block-heading{
	font-size: 1.05em;
}
h6.wp-block-heading{
	font-size: 1em;
}

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

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

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

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

/* ファイルブロックのダウンロードボタン */
.content .wp-block-file__button {/* .content aを上書きするため、「.content」も必要 */
    text-decoration: none;
	padding: .5em 1em;
}
.content .wp-block-file__button:not(.has-text-color){
	color: #fff;
}
.content .wp-block-file__button:not(.has-background){
	background: #32373c;
}


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


/* -----
	追加スタイル
-------------------- */
/* ボタン */
.is-style-editor_btn_primary a{
	display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    width: fit-content;
    padding: 1em 4em 1em 1.5em;
    border-radius: 5em;
    background-color: var(--blue);
    position: relative;
    transition: background-color .4s;
}

.is-style-editor_btn_primary a:hover{
	background-color: var(--light_blue);
}

.is-style-editor_btn_primary a::before,
.is-style-editor_btn_primary a::after{
	content: "";
	display: block;
	width: 1.8em;
	height: 1.8em;
	position: absolute;
	right: .8em;
	top: calc(50% - .9em);
}
.is-style-editor_btn_primary a::before{
	border-radius: 50%;
	background-color: var(--white);
}
.is-style-editor_btn_primary a::after{
	-webkit-mask: url(./img/cmn/btn_arrow_blue.svg?250624) no-repeat center/50%;
	mask: url(./img/cmn/btn_arrow_blue.svg?250624) no-repeat center/50%;
	background-color: inherit;
	z-index: 1;
}