@charset "utf-8";

/* ――――――――――――――――――――――――――

Webフォント読み込み

―――――――――――――――――――――――――― */
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.3.1/dist/css/yakuhanjp.min.css");
/* font-family: 'YakuHanJP' sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
/* font-family: 'Noto Sans JP', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* font-family: 'Roboto', sans-serif; */

/* ----- フォント ----- */
.en_400 { font-family: 'YakuHanJP', 'Roboto', sans-serif; letter-spacing: -0.02em; font-weight: 400; }
.en_700 { font-family: 'YakuHanJP', 'Roboto', sans-serif; letter-spacing: -0.02em; font-weight: 700; }





/* ――――――――――――――――――――――――――

base 設定
xs（～576px）
sm（577～768px）
md（769～992px）
lg（993～1200px）
xl（1201px～）

―――――――――――――――――――――――――― */
body {
	font-family: 'YakuHanJP', 'Roboto', 'Noto Sans JP', sans-serif;
	font-size: 14px;
	line-height: 1.75em;
	font-weight: 400;
	overflow-X: hidden;
}

/* ----- font ----- */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.3em;
}
.display-1, .display-2, .display-3, .display-4,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 700;
	line-height: 1.3em;
}
.display-1 { font-size: 3em; }
.display-2 { font-size: 2.75em; }
.display-3 { font-size: 2.5em; }
.display-4 { font-size: 2.25em; }
.lead { font-size: 1em; }
h1, .h1 { font-size: 2.25em; }
h2, .h2 { font-size: 2em; }
h3, .h3 { font-size: 1.75em; }
h4, .h4 { font-size: 1.5em; }
h5, .h5 { font-size: 1.25em; }
h6, .h6 { font-size: 1em; }
h1.cap, .h1.cap,
h2.cap, .h2.cap,
h3.cap, .h3.cap,
h4.cap, .h4.cap,
h5.cap, .h5.cap,
h6.cap, .h6.cap {
	margin-bottom: 0.4em;
}
h2 span,.h2 span,
h3 span,.h3 span,
h4 span,.h4 span,
h5 span,.h5 span,
h6 span,.h6 span {
	display: inline-block;
}
span.br {
	display: inline-block;
}

/* ----- .container ----- */
.container, .container-sm, .container-md, .container-lg, .container-xl {
	width: 90%;
	padding-right: 0;
	padding-left: 0;
}
.container-fluid {
	width: calc(100% - 3rem);
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 2rem;
}
@media (min-width: 576px) {
	.container-sm {
		max-width: 768px;
	}
	.container { max-width: initial; }
}
@media (min-width: 768px) {
	.container-md {
		max-width: 1024px;
	}
	.container { max-width: initial; }
}
@media (min-width: 992px) {
	.container-lg {
		max-width: 1366px;
	}
	.container { max-width: initial; }
}
@media (min-width: 1200px) {
	.container-xl {
		max-width: 1920px;
	}
	.container { max-width: initial; }
}

/* ----- LOADING ----- */
#loading {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
	display: table;
	z-index: 999;
}
#loading .icon {
	display: table-cell;
	vertical-align: middle;
}
#loading .icon img {
	width: 50px;
}

/* ----- PAGETOP ----- */
#wrapper { position:relative; }
.topBtn {
	cursor: pointer;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	background-color: rgba(0,0,0,0.7);
	text-decoration: none;
	z-index: 100;
	-webkit-border-radius: 15px;
		 -moz-border-radius: 15px;
					border-radius: 15px;
}
.topBtn:after {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: calc(50% - 5px);
	width: 10px;
	height: 10px;
	border-top: solid #ffffff 4px;
	border-right: solid #ffffff 4px;
	z-index: 101;
	-webkit-transform: rotate(-45deg);
					transform: rotate(-45deg);
}
.topBtn:hover {
	background-color: rgba(0,0,0,1);
	-webkit-transition: .2s all ease;
			-ms-transition: .2s all ease;
					transition: .2s all ease;
}
@media (min-width:768px) {
	.topBtn {
		right: 30px;
		bottom: 30px;
		width: 40px;
		height: 40px;
		-webkit-border-radius: 20px;
			 -moz-border-radius: 20px;
						border-radius: 20px;
	}
	.topBtn:after {
		top: calc(50% - 5px);
		right: calc(50% - 7px);
		width: 14px;
		height: 14px;
		border-top: solid #ffffff 5px;
		border-right: solid #ffffff 5px;
	}
}





/* ――――――――――――――――――――――――――

item 設定

―――――――――――――――――――――――――― */
/* ----- .m_y .p_y ----- */
.m_t { margin-top: 2rem; }
.m_b { margin-bottom: 2rem; }
.m_t_a { margin-top: 3rem; }
.m_b_a { margin-bottom: 3rem; }
.m_t_h { margin-top: 1rem; }
.m_b_h { margin-bottom: 1rem; }
.m_t_s { margin-top: 0.625rem; }
.m_b_s { margin-bottom: 0.625rem; }
.p_t { padding-top: 2rem; }
.p_b { padding-bottom: 2rem; }
.p_t_a { padding-top: 3rem; }
.p_b_a { padding-bottom: 3rem; }
.p_t_h { padding-top: 1rem; }
.p_b_h { padding-bottom: 1rem; }
.p_t_s { padding-top: 0.625rem; }
.p_b_s { padding-bottom: 0.625rem; }

/* ----- 表示・非表示 ----- */
.pc  { display: none; }
.tab { display: none; }
.sp  { display: block; }
@media (min-width: 768px) {
	.tab { display: block; }
	.sp  { display: none; }
}
@media (min-width: 1200px) {
	.pc { display: block; }
}

/* ----- EFFECT ----- */
._move {
	-webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
		 -moz-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
					transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* ----- .ph ----- */
main .ph img { width: 100%; }

/* ----- フォント ----- */
.f_normal { font-weight: 400 !important; }
.f_bold { font-weight: 700 !important; }
.f_x-small { font-size: 75%; line-height: 1.75em; }
.f_small { font-size: 87.5%; line-height: 1.75em; }
.f_large { font-size: 112.5%; line-height: 1.75em; }
.f_x-large { font-size: 125%; line-height: 1.75em; }
.f_default { font-size: 1rem; line-height: 1.75em; }
.nowrap { white-space: nowrap; }
.nowrap_c { white-space: normal; }
.indent { text-indent:1em; }
.indent_left { margin-left: 1em; }
.indent_right { margin-right: 1em; }
.kome { padding-left:1em; text-indent:-1em; }
sup { font-size: 0.75em; vertical-align: top; position: relative; top: -0.1em; }
sub { font-size: 0.75em; vertical-align: bottom; position: relative; top: 0.1em; }

/* ----- flex位置 ----- */
.left_top,
.left_middle,
.left_bottom,
.center_top,
.center_middle,
.center_bottom,
.right_top,
.right_middle,
.right_bottom {
	display: flex;
}
.left_top { justify-content: start; align-items: start; }
.left_middle { justify-content: start; align-items: center; }
.left_bottom { justify-content: start; align-items: flex-end; }
.center_top { justify-content: center; align-items: start; }
.center_middle { justify-content: center; align-items: center; }
.center_bottom { justify-content: center; align-items: flex-end; }
.right_top { justify-content: flex-end; align-items: start; }
.right_middle { justify-content: flex-end; align-items: center; }
.right_bottom { justify-content: flex-end; align-items: flex-end; }

/* ----- 横幅 ----- */
.w_100 { width: 100%; }
.w_90 { width: 90%; }
.w_80 { width: 80%; }
.w_75 { width: 75%; }
.w_70 { width: 70%; }
.w_66 { width: 66.666666%; }
.w_60 { width: 60%; }
.w_50 { width: 50%; }
.w_40 { width: 40%; }
.w_33 { width: 33.333333%; }
.w_30 { width: 30%; }
.w_25 { width: 25%; }
.w_20 { width: 20%; }
.w_12 { width: 12.5%; }
.w_10 { width: 10%; }
.w_5 { width: 5%; }
.w_1em { width: 1em; }
.w_2em { width: 2em; }
.w_3em { width: 3em; }
.w_4em { width: 4em; }
.w_5em { width: 5em; }
.w_6em { width: 6em; }
.w_7em { width: 7em; }
.w_8em { width: 8em; }
.w_9em { width: 9em; }
.w_10em { width: 10em; }
.w_11em { width: 11em; }
.w_12em { width: 12em; }
.w_13em { width: 13em; }
.w_14em { width: 14em; }
.w_15em { width: 15em; }

/* ----- hr ----- */
hr {
	margin-top: 1em;
	margin-bottom: 1em;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* レスポンシブ テーブル */
main .item_table > dl,
main .item_table > dl > dt,
main .item_table > dl > dd {
	margin: 0;
}
main .item_table > dl {
	display: table;
	width: 100%;
}
main .item_table > dl:last-child {
	border-bottom: 1px solid #cccccc;
}
main .item_table > dl > dt,
main .item_table > dl > dd {
	display: table-cell;
	vertical-align: middle;
	padding: 1rem;
	min-height: 1.5em;
	border-top: 1px solid #cccccc;
}

/* カテゴリー 選択ボタン */
/* ----- ul.item_choice ----- */
main ul.item_choice {
	width: 100%;
	display: flex;
}
main ul.item_choice > li {
	width: 23.5%;
	margin-left: 2%;
	margin-bottom: 0.5em;
}
main ul.item_choice > li:first-child {
	margin-left: 0;
}
main ul.item_choice >li a {
	position: relative;
	display: block;
	padding: 1em 1.5em 1em 1em;
	text-align: left;
	vertical-align: middle;
	color: #000000;
	background: #ace8ac;
	border-radius: 5px;
}
main ul.item_choice > li a:hover {
	background: #ffee66;
}
main ul.item_choice > li a:before {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: 1em;
	width: 8px;
	height: 8px;
	border-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	-webkit-transform: rotate(45deg);
					transform: rotate(45deg);
	-webkit-transition: .2s all ease;
			-ms-transition: .2s all ease;
					transition: .2s all ease;
}
main ul.item_choice > li a:hover:before {
	right: 0.75em;
}
main ul.item_choice > li.now a {
	color: #ffffff;
	background: #03ba03;
}
main ul.item_choice > li.now a:hover {
	color: #ffffff;
	background: #ffaa00;
}





/* ――――――――――――――――――――――――――

HEADER

―――――――――――――――――――――――――― */
/* ----- header ----- */
header {
	position: relative;
	width: 100%;
	height: 65px;
	margin: 0;
	border-bottom: solid #000000 2px;
}
header h1 {
	position: absolute;
	top: calc(50% - 20px);
	left: 20px;
	font-size: 24px;
	line-height: 1em;
}
header h1 img {
	width: 50px;
	margin-right: 5px;
}
header h1 a img:hover {
	opacity: 1;
}
header h1 a,
header h1 a:hover {
	color: #ffffff;
}
header h1 div {
	display: inline-block;
	margin-top: 9px;
}

/* ----- header nav ----- */
header nav a {
	color: #ffffff;
}
header nav a:hover {
	color: #ffdd00;
}
header nav a i.fa {
	font-size: 1.25em;
	margin-right: 0.25em;
	vertical-align: middle;
}
header nav {
	position: absolute;
	height: 65px;
	top: 0;
	right: 20px;
	font-size: 14px;
	line-height: 20px;
}
header nav ul {
	display: table;
	width: auto;
	height: 65px;
}
header nav li {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
	padding-left: 1.5em;
}
header nav li .button {
	padding-left: 0.2em;
}
header nav li .button a {
	padding: 3px 15px;
	color: #03BA03;
	background: #ffffff;
	-webkit-border-radius: 2em;
		 -moz-border-radius: 2em;
					border-radius: 2em;
}
header nav li .button a:hover {
	color: #000000;
	background: #ffdd00;
}




/* ――――――――――――――――――――――――――

FOOTER

―――――――――――――――――――――――――― */
footer {
	height: 45px;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.75em;
}
