@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

:root {
	--keyColor: #014099;
	/* rgb(1, 64, 153) */
	--blue--ex-light: #5681c7;
	--blue--light: rgba(1, 64, 153, .5);
	--aqua: #019fe9;
	--green: #009b74;
	--red: #ff316f;

	--grape: #aa1254;
	--blueberry: #692493;
	--orange: #ff9900;
	--gold: #bbae1d;

	--bg--blue: #f3f8ff;
	--bg--green: #e9f8f5;

	--menu-bar-start: var(--keyColor);
	--menu-bar-end: var(--keyColor);

	--duration--fast: .3s;
	--duration--normal: 1s;
	--duration--slow: 3s;
}

/* --------------------------------------------------
  COMMON STYLES
  -------------------------------------------------- */
/* ===== RESET ===== */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

*:before,
*:after {
	box-sizing: border-box;
}

li {
	list-style: none;
}

p {
	margin: 0;
}

/* CSS Document */
html {
	font-size: 62.5%;
}

body {
	line-height: 1.7;
	font-family: "游ゴシック体", YuGothic, 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, arial, helvetica, sans-serif;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	/*font-size: 1.6rem;*/
	letter-spacing: 1px;
	color: #000;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}

body.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.tab,
.sp {
	display: none;
}

.sp,
.sp2 {
	display: none !important;
}

.pc,
.pc.tab {
	display: block;
}

.em {
	color: #ee0000;
}

.noteText {
	font-size: .9em;
	color: #566577;
}

dl.noteText {
	display: flex;
	justify-content: flex-start;
	gap: .5em;
}

.marker {
	display: inline;
	padding: 0 .5em;
	background: linear-gradient(transparent 0%, #ffcccc 0%);
}

.f_bold {
	font-weight: bold;
}

.f_normal {
	font-weight: normal;
}

.font_en {
	font-family: 'Lato', sans-serif;
	font-weight: bold;
}

.font_ja {
	font-family: "游ゴシック体", YuGothic, 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, arial, helvetica, sans-serif;
}

.font_xs {
	font-size: .8em;
}

.font_s {
	font-size: .9em;
}

.font_m {
	font-size: 1em;
}

.font_l {
	font-size: 1.1em;
}

.font_xl {
	font-size: 1.2em;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-full {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

a,
.hover {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

a:hover,
.hover:hover {
	opacity: .7;
	color: #000;
	text-decoration: underline;
}

.link,
.link:hover {
	color: #2196f3 !important;
}

.link_txt,
.link_txt:hover,
.link_txt:visited {
	color: #ff1313;
}

a.mail,
a.pdf,
a.word,
a.excel {
	position: relative;
	padding-left: 25px;
}

a.mail:before,
a.pdf:before,
a.word:before,
a.excel:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0px;
	width: 21px;
	height: 21px;
	transform: translateY(-50%);
	vertical-align: middle;
}

a.mail.alignTop:before,
a.pdf.alignTop:before,
a.word.alignTop:before,
a.excel.alignTop:before {
	top: 1px;
	transform: translateY(0);
}

a.mail:before {
	content: "\f0e0";
	display: block;
	position: absolute;
	line-height: 21px;
	font-size: 14px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #ff1313;
	text-align: center;
}

a.pdf,
a.excel,
a.word {
	position: relative;
	padding-left: 1.35em;
}

a.pdf:before,
a.excel:before,
a.word:before {
	content: "\f1c1";
	display: inline-block;
	position: absolute;
	top: .65em;
	left: 0;
	width: auto;
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1.25;
	color: var(--keyColor);
}

a.excel:before {
	content: "\f1c3";
}

a.word:before {
	content: "\f1c2";
}

.pdf--after:after {
	content: "\f1c1";
	display: inline-block;
	position: relative;
	margin-left: .5em;
	width: 1em;
	height: 1em;
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	font-size: 1.3125em;
	color: var(--keyColor);
	line-height: 1;
	/* vertical-align: middle; */
}

a.ico i {
	position: relative;
	top: -.15em;
	margin-right: .5em;
	line-height: 1;
	font-size: 1.2em;
	color: var(--keyColor);
	vertical-align: middle;
}

.arrw01 {
	position: relative;
}

.arrw01:before {
	content: "";
	display: inline-block;
	position: relative;
	top: -2px;
	margin: 0 5px 0 0;
	border: 4px solid transparent;
	border-left: 5px solid var(--keyColor);
}

.arrw01_after {
	position: relative;
	padding-right: 1.15em;
}

.arrw01_after:before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	border: 4px solid transparent;
	border-left: 5px solid #1479c3;
	transform: translateY(-50%);
}


/* ===== FORM ===== */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="button"],
input[type="submit"],
textarea {
	/* reset */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	font-weight: normal;
	outline: none;
	/* end - reset */
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea {
	/* padding: 10px; */
	padding: .58em .625em;
	border: 1px solid #c3c3c3;
	border-radius: 3px;
	background: #fff;
	font-size: 100%;
}

select {
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
	padding: 4px;
	border: 1px solid #c3c3c3;
	border-radius: 3px;
	font-size: 100%;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #aaa;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #aaa;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-input-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
	color: #aaa;
}

input[type="checkbox"],
input[type="radio"] {
	margin-right: 4px;
}


.label_checkbox,
.label_radio {
	position: relative;
	cursor: pointer;
	font-weight: normal;
}

.checkbox,
.radio {
	display: inline-block;
	position: relative;
	top: -2px;
	margin-right: 6px;
	width: 1.3em;
	height: 1.3em;
	vertical-align: middle;
	border: 1px solid #c3c3c3;
	border-radius: 3px;
	background: #fff;
}

.radio {
	border-radius: 50%;
}

.checkbox:before {
	content: "";
	display: block;
	position: absolute;
	left: 0.098em;
	top: 0.54em;
	width: 0;
	height: 0;
	border-left: 3px solid var(--green);
	border-bottom: 3px solid var(--green);
	margin: 1px 0 0 1px;
	opacity: 0;
	transform-origin: 0 0;
	transform: rotate(-45deg);
	transition: opacity .2s cubic-bezier(0, 0, 0, .97) 0s,
		width .2s cubic-bezier(0, 0, 0, .97) .2s,
		height .2s cubic-bezier(0, 0, 0, .97) .2s;
}

.radio:before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: .5em;
	height: .5em;
	border-radius: 50%;
	background: var(--green);
	opacity: 0;
	transform: translate(-50%, -50%) scale(0, 0);
	transition: all .25s ease-out;
}

.label_checkbox input[type="checkbox"]:checked+.checkbox:before {
	transition-duration: .35s;
	transition-delay: 0s, .2s, 0s;
	opacity: 1;
	width: 0.75em;
	height: 0.45em;
}

.label_radio input[type="radio"]:checked+.radio:before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1, 1);
}

.label_checkbox input[type="checkbox"],
.label_radio input[type="radio"] {
	display: none;
}

textarea {
	resize: vertical;
}

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

/* ===== end - FORM ===== */


.mt0 {
	margin-top: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt25 {
	margin-top: 25px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mt35 {
	margin-top: 35px !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb25 {
	margin-bottom: 25px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb35 {
	margin-bottom: 35px !important;
}

.mb1em {
	margin-bottom: 1em !important;
}

.mb1-5em {
	margin-bottom: 1.5em !important;
}

.ml10 {
	margin-left: 10px !important;
}

.ml1em {
	margin-left: 1em !important;
}

.mt1em {
	margin-top: 1em !important;
}

.mt2em {
	margin-top: 2em !important;
}

.mt3em {
	margin-top: 3em !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pt10 {
	padding-top: 10px !important;
}

.pt15 {
	padding-top: 15px !important;
}

.pt20 {
	padding-top: 20px !important;
}

.pt25 {
	padding-top: 25px !important;
}

.pt30 {
	padding-top: 30px !important;
}

.pb0 {
	padding-bottom: 0 !important;
}

.pb10 {
	padding-bottom: 10px !important;
}

.pb15 {
	padding-bottom: 15px !important;
}

.pb20 {
	padding-bottom: 20px !important;
}

.pb25 {
	padding-bottom: 25px !important;
}

.pb30 {
	padding-bottom: 30px !important;
}

.pl10 {
	padding-left: 10px !important;
}

.pl20 {
	padding-left: 20px !important;
}

.pl30 {
	padding-left: 30px !important;
}

.pl1em {
	padding-left: 1em;
}

.pl2em {
	padding-left: 2em;
}

.w6per {
	width: 6%;
}

.w7per {
	width: 7%;
}

.w8per {
	width: 8%;
}

.w9per {
	width: 9%;
}

.w10per {
	width: 10%;
}

.w12per {
	width: 12%;
}

.w14per {
	width: 14%;
}

.w15per {
	width: 15%;
}

.w20per {
	width: 20%;
}

.w25per {
	width: 25%;
}

.w30per {
	width: 30%;
}

.w33per {
	width: 33%;
}

.w12em {
	width: 12em;
}

.min-w800 {
	min-width: 800px;
}

.min-w1000 {
	min-width: 1000px;
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.clearfix {
	overflow: hidden;
}

.block {
	display: block;
}

.in-block {
	display: inline-block;
}

.inline {
	display: inline;
}

.block-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.m-auto {
	margin-left: auto;
	margin-right: auto;
}

.clr:after {
	content: "";
	display: block;
	clear: both;
}

.fit-content {
	display: block;
	width: fit-content;
}

.ico {
	position: relative;
	top: -2px;
	vertical-align: middle;
}

.nowrap {
	white-space: nowrap;
}

.hide {
	display: none;
}

.indent {
	text-indent: -1em;
	padding-left: 1em;
}

.indnt-05 {
	text-indent: -.5em;
}

.indnt-1 {
	text-indent: -1em;
}

.list_indent1 {
	text-indent: -1;
	padding-left: 1em;
}

@media print,
screen and (min-width: 768px) {
	.colWrap {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	.colWrap.rtl {
		flex-direction: row-reverse;
	}

	.colWrap.wrap {
		flex-wrap: wrap;
	}

	.colWrap.boxAlign-left {
		justify-content: flex-start;
	}

	.colWrap.boxAlign-right {
		justify-content: flex-end;
	}

	.colWrap.boxAlign-center {
		justify-content: center;
	}

	.colWrap.align-center {
		align-items: center;
		align-content: center;
	}

	.colWrap.btm {
		align-items: flex-end;
		align-content: flex-end;
	}

	.colWrap.even>* {
		flex: 1;
	}

	.colWrap.col4 {
		margin-left: -10px;
		margin-right: -10px;
	}

	.colWrap.col4>* {
		margin: 0 10px 20px;
		width: calc(25% - 20px);
	}

	.colWrap.col2>* {
		width: 50%;
	}

	.colWrap.gap3em.col2>* {
		width: calc(calc(100% - 3em) / 2);
	}

	.gap1em {
		gap: 1em;
	}

	.gap2em {
		gap: 2em;
	}

	.gap3em {
		gap: 3em;
	}
}

.commonTbl {
	width: 100%;
	border-collapse: collapse;
}

.commonTbl th,
.commonTbl td {
	/* padding: 10px; */
	padding: .8em;
	border: 1px solid #ccc;
	line-height: 1.4;
}

.commonTbl.condensed th,
.commonTbl.condensed td {
	padding: .8em .5em;
}

@media print,
screen and (max-width: 767px) {

	.commonTbl.condensed th,
	.commonTbl.condensed td {
		padding: .4em .25em;
	}
}

.commonTbl th {
	font-weight: normal;
	background: #f7f7f7;
	text-align: left;
}

.commonTbl tbody .th {
	background: #f0f7fd;
}


.commonTbl .txt_center th,
.commonTbl .text-center th {
	text-align: center;
}

.commonTbl.type1 thead,
.commonTbl.type2 thead {
	background: #d2e6e6;
}

.commonTbl thead.f_bold th {
	font-weight: bold;
}

.commonTbl.type2 {
	border-top: 1px solid #ccc;
}

.commonTbl.type2 tr {
	border-bottom: 1px solid #ccc;
}

.commonTbl.type2 th,
.commonTbl.type2 td {
	border: 0;
}

.commonTbl.color01 thead th {
	background: var(--keyColor);
	color: #fff;
}

.commonTbl.color01 tbody .bg {
	background: var(--bg--blue);
}

.tblWrap {
	position: relative;
	overflow-x: auto;
}

.tblGuideTxt {
	display: none;
	margin: 0 0 10px;
	padding: 8px 15px;
	line-height: 1;
	font-size: .9em;
	border-radius: 12px;
	background: #e0eaef;
}

.commonList {
	border-top: 1px solid #ddd;
}

/*.commonList .tr:not(:last-child) { */
.commonList .tr {
	border-bottom: 1px solid #ddd;
}

.commonList .tr.block {
	display: block;
}

.commonList .th,
.commonList .td {
	padding: 5px 5px;
}

.commonList .th {
	padding-bottom: 0;
	width: auto;
	font-weight: 500;
}

.commonList .tHead {
	border-bottom: 1px solid #ddd;
	background: #f3f3f3;
	font-weight: bold;
}

.commonList.type1 .tHead {
	background: #d2e6e6;
}

.commonList .tHead .th {
	padding-bottom: 10px;
}

.commonList .lined {
	border-bottom: 1px solid #ddd;
}

.commonList.noLine,
.commonList.noLine .tr {
	border: 0;
}

.commonList.type2 .th {
	color: #4e658c;
	font-size: .9em;
}

@media print,
screen and (min-width: 768px) {
	.commonList .tr {
		display: flex;
		justify-content: flex-start;
	}

	.commonList .th,
	.commonList .td {
		padding: 10px 20px;
	}

	.commonList .high .th,
	.commonList .high .td {
		padding: 20px;
	}

	.commonList .mdl .th,
	.commonList .mdl .td,
	.commonList .mdl.th,
	.commonList .mdl.td {
		display: flex;
		align-items: center;
		align-content: center;
	}

	.commonList .mdl .th>*,
	.commonList .mdl .td>*,
	.commonList .mdl.th>*,
	.commonList .mdl.td>* {
		width: 100%;
	}

	.commonList .tr.block .th {
		padding-bottom: 0;
	}

	.commonList .tr.block .td {
		padding-top: 0;
		padding-left: 25px;
	}

	.commonList .th {
		/* flex: 1 1 auto;
		max-width: 7em; */
		flex: 0 0 7em;
		font-weight: 500;
	}

	.commonList .td {
		flex: 0 1 calc(100% - 7em);
		padding-left: 20px;
	}

	.commonList.th-pd0 .th {
		padding-inline: 0;
	}

	.commonList.th-w9em .th {
		flex: 0 0 9em;
	}

	.commonList.th-w9em .td {
		flex: 1;
	}

	.commonList.th-w10em .th {
		flex: 0 0 10em;
	}

	.commonList.th-w10em .td {
		flex: 1;
	}

	.commonList.th-w11em .th {
		flex: 0 0 11em;
	}

	.commonList.th-w11em .td {
		flex: 1;
	}

	.commonList.th-w12em .th {
		flex: 0 0 12em;
	}

	.commonList.th-w12em .td {
		flex: 1;
	}
}

@media print,
screen and (max-width: 767px) {
	.commonList .tr.sp-flex {
		display: flex;
	}

	.commonList .tr.sp-flex .th,
	.commonList .tr.sp-flex .td {
		padding: 10px;
	}

	.sp-commonList .tr {
		display: flex;
	}

	.sp-commonList .th,
	.sp-commonList .td {
		padding: 10px 5px;
	}

	.sp-commonList .sp-mdl .th,
	.sp-commonList .sp-mdl .td,
	.sp-commonList .sp-mdl.th,
	.sp-commonList .sp-mdl.td {
		display: flex;
		align-items: center;
		align-content: center;
	}

	.sp-commonList .tr.block .th {
		padding-bottom: 0;
	}

	.sp-commonList .tr.block .td {
		padding-top: 0;
		padding-left: 25px;
	}

	.sp-commonList .th {
		width: auto;
		font-weight: bold;
	}

	.sp-commonList .td {
		flex: 1 1 auto;
		padding-left: 10px;
	}

	.sp-commonList.th-pd0 .th {
		padding-inline: 0;
	}

	.sp-commonList.th-w9em .th {
		flex: 0 0 9em;
	}

	.sp-commonList.th-w9em .td {
		flex: 1;
	}

	.sp-commonList.th-w10em .th {
		flex: 0 0 10em;
	}

	.sp-commonList.th-w10em .td {
		flex: 1;
	}

	.sp-commonList.th-w11em .th {
		flex: 0 0 11em;
	}

	.sp-commonList.th-w11em .td {
		flex: 1;
	}

	.sp-commonList.th-w12em .th {
		flex: 0 0 12em;
	}

	.sp-commonList.th-w12em .td {
		flex: 1;
	}

	.commonList:not(.sp-commonList) .tHead {
		/*	display: flex;
		justify-content: flex-start; */
		display: block;
		overflow: hidden;
		line-height: 1;
	}

	.commonList:not(.sp-commonList) .tHead .th {
		float: left;
	}

	.commonList:not(.sp-commonList) .tHead .th:after {
		content: "/";
		display: inline-block;
		margin: 0 0 0 10px;
	}

	.commonList:not(.sp-commonList) .tHead .th:last-child:after {
		display: none;
	}

	.commonList:not(.sp-commonList) .tr:not(:last-child) {
		margin-bottom: 10px;
	}

	.commonList:not(.sp-commonList) .th,
	.commonList:not(.sp-commonList) .td {
		display: block;
	}
}

.list_alpha {
	list-style-type: lower-alpha;
}

.list_number>li {
	text-indent: -1.35em;
	padding-left: 1.35em;
}

.list_arrow>li {
	position: relative;
	padding-left: 1.25em;
}

.list_arrow>li:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 0.4em;
	height: 0.4em;
	border-top: 2px solid rgba(51, 84, 148, .5);
	border-right: 2px solid rgba(51, 84, 148, .5);
	transform: rotate(45deg);
}


.list_dot>li,
.list_dot>.li {
	position: relative;
	padding-left: 1.25em;
}

.list_dot>li:before,
.list_dot>.li:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: .6em;
	width: .45em;
	height: .45em;
	border-radius: 50%;
	/* background: #4b83a7; */
	background: var(--keyColor);
	opacity: .5;
}

.commonList.list_dot>li:before,
.commonList.list_dot>.li:before {
	top: calc(.6em + 10px);
	left: 20px;
}

.commonList .innerBox {
	margin: 30px 0 0;
	padding: 0 0 20px;
	border-top: 1px solid rgba(13, 57, 107, .4);
	border-bottom: 1px solid rgba(13, 57, 107, .4);

}

.commonList .innerBox .hd {
	display: inline-block;
	margin: 0;
	padding: 3px 15px 4px;
	font-size: .94em;
	line-height: 1;
	background: var(--keyColor);
	border-radius: 2px;
	color: #fff;
	transform: translateY(-50%);
}

.list.spc>li+li {
	margin-top: .7em;
}

.list>li {
	text-indent: -1em;
	padding-left: 1em;
}

.list.indent2>li {
	text-indent: -2em;
	padding-left: 2em;
}

.ol {
	margin: 2.5em 0;
}

.ol>li {
	counter-increment: ol-idx;
	position: relative;
	margin: 0 0 .65em;
	padding-left: 2em;
}

.ol>li:before {
	content: counter(ol-idx);
	display: block;
	position: absolute;
	top: .15em;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	font-size: .9em;
	font-weight: bold;
	border-radius: .1em;
	background: var(--keyColor);
	color: #fff;
	text-align: center;
}

.dl dd {
	padding-left: 1em;
	margin: .5em 0 1.75em;
}

.bg {
	background: #f5f8f7;
}

.bg2 {
	background: #eaf0ee;
}

.color {
	color: var(--keyColor);
}

.box01 {
	background: #f5f5f5;
	padding: 1.65em;
	margin: 30px 0;
}

.box02 {
	background: var(--bg--blue);
	padding: 1.65em;
	margin: 30px 0;
}

.box01 .head,
.box02 .head {
	margin: 0 0 .5em;
	line-height: 1.3;
	font-size: 1.1em;
	font-weight: bold;
}

/* animation */
.fadeIn {
	position: relative;
	opacity: 0;
}

.fadeIn.active {
	-webkit-transition: all var(--duration--slow) cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: all var(--duration--slow) cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: all var(--duration--slow) cubic-bezier(0.23, 1, 0.32, 1);
	transition: all var(--duration--slow) cubic-bezier(0.23, 1, 0.32, 1);
}

.fadeInUp {
	position: relative;
	opacity: 0;
	-webkit-transform: translate(0, 80px);
	-moz-transform: translate(0, 80px);
	-o-transform: translate(0, 80px);
	transform: translate(0, 80px);
}

.fadeInUp_in-row .animItem {
	position: relative;
	opacity: 0;
	-webkit-transform: translate(0, 30px);
	-moz-transform: translate(0, 30px);
	-o-transform: translate(0, 30px);
	transform: translate(0, 30px);
}

.fadeInDown {
	position: relative;
	opacity: 0;
	-webkit-transform: translate(0, -2em);
	-moz-transform: translate(0, -2em);
	-o-transform: translate(0, -2em);
	transform: translate(0, -2em);

	-webkit-transition: all var(--duration--normal) cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: all var(--duration--normal) cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: all var(--duration--normal) cubic-bezier(0.23, 1, 0.32, 1);
	transition: all var(--duration--normal) cubic-bezier(0.23, 1, 0.32, 1);
}

.fadeInUp.active,
.fadeInUp_in-row .animItem.active {
	-webkit-transition: all var(--duration--slow) cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: all var(--duration--slow) cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: all var(--duration--slow) cubic-bezier(0.23, 1, 0.32, 1);
	transition: all var(--duration--slow) cubic-bezier(0.23, 1, 0.32, 1);
}

.fadeIn.active,
.fadein.active,
.fadeInUp.active,
.fadeInUp_in-row .animItem.active,
.fadeInDown.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.anim,
.animItem {
	will-change: transform;
}

/* zoom */
.fadeInZoom {
	opacity: 0;
	-webkit-transform: scale(.9) translateY(50px);
	-moz-transform: scale(.9) translateY(50px);
	-o-transform: scale(.9) translateY(50px);
	transform: scale(.9) translateY(50px);
	transition: transform .85s cubic-bezier(0.215, 0.61, 0.355, 1);
	;
}

.fadeInZoom.active {
	opacity: 1;
	-webkit-transform: scale(1) translateY(0);
	-moz-transform: scale(1) translateY(0);
	-o-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.slideIn {
	opacity: 0;
	transition: transform .55s cubic-bezier(0.215, 0.61, 0.355, 1),
		opacity .35s ease .25s;
	transform: translateX(-99.99%);
}

.slideIn.active {
	opacity: 1;
	transform: translateX(0);
}

/* ttl animation */
@-webkit-keyframes ttl_block {}

/*
@keyframes ttl_block {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px) rotate(45deg);
		transform: translateY(-20px) rotate(45deg);
	}

	40% {
		opacity: 1;
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(20px) rotate(-45deg);
		transform: translateY(20px) rotate(-45deg);
	}
}
*/

@keyframes ttl_block {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-25px) rotate(-20deg) scale(.75);
		transform: translateY(-25px) rotate(-20deg) scale(.75);
	}

	30% {
		opacity: 1;
		transform: translateY(-25px) rotate(-15deg) scale(1);
	}

	75% {
		opacity: 1;
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0) scale(1);
	}

	88% {
		opacity: 1;
		-webkit-transform: translateY(-6px) rotate(-5deg);
		transform: translateY(-6px) rotate(-5deg);
	}

	94% {
		opacity: 1;
		-webkit-transform: translateY(-3px) rotate(0);
		transform: translateY(-3px) rotate(0);
	}


	100% {
		opacity: 1;
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
}

/* header */
header {
	position: relative;
	height: 87px;
	background: rgba(255, 255, 255, .9);
	z-index: 100;
}

header>.container {
	position: relative;
	padding-left: 25px;
	padding-right: 25px;
	height: 100%;
}

header>.container>.colWrap {
	height: 100%;
}

header.fixed {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
}

header .logo {
	width: min(26.7%, 331px);
	font-size: 1.35em;
	font-weight: bold;
	letter-spacing: 0;
	color: #424242;
	white-space: nowrap;
}

header .logo a {
	text-decoration: none;
	color: inherit;
	text-decoration: none;
}

header .navFrame {
	flex: 1 1 auto;
	max-width: 860px;
}

header .navFrame>ul {
	flex-grow: 1;
	width: auto;
}

header .navFrame>ul a:hover {
	opacity: 1;
}

.gnav .menu {
	gap: 3.8%;
	margin: 0 auto;
	height: auto;
	font-size: clamp(1.3rem, 1.1188vw, 1em);
}

.gnav .menu>li {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	overflow: initial;
	position: relative;
}

.gnav .menu>li>a,
.gnav .menu>li>span {
	display: block;
	position: relative;
	padding: 0 0 3px;
	width: 100%;
	letter-spacing: 1px;
	color: inherit;
	font-size: 1.125em;
	text-align: center;
	cursor: pointer;
}

.gnav .menu>li>a:before,
.gnav .menu>li>span:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: .1em;
	width: 100%;
	height: 1px;
	background: var(--keyColor);
	transform-origin: 0 0;
	transform: scale(0, 1);
	transition: transform .2s ease-out;
}

.gnav .menu>.current>a,
.gnav .menu>li>a:hover {
	opacity: 1;
	text-decoration: none;
	color: var(--keyColor);
}

.gnav .menu>.current>a:before,
.gnav .menu>li>a:hover:before,
.gnav .menu>li>span:hover:before {
	transform: scale(1, 1);
}

.gnav .menu>li>.btn_contact {
	display: block;
	padding: .35em 1em .45em;
	width: max(10.25em, 10.743vw);
	border: 1px solid var(--keyColor);

	border-radius: 9999px;
	color: #fff;
	font-size: 1em;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
}

.gnav .menu>li>.btn_contact:before {
	all: unset;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--keyColor);
	transition: transform .2s ease-out;
	z-index: -1;
}

.gnav .menu>li>.btn_contact:hover {
	color: var(--keyColor);
	background: transparent;
	opacity: 1;
}

.gnav .menu>li>.btn_contact:hover:before {
	transform: translateX(100%);
}

@media print,
screen and (min-width: 767px) {

	.navFrame,
	.gnav,
	.gnav nav,
	.gnav .menu,
	.gnav .menu>li {
		height: 100%;
	}
}

/* subMenu */
.gnav .subMenu {
	position: absolute;
	overflow: hidden;
	top: 87px;
	left: -1em;
}

@media screen and (min-width: 768px) {
	.gnav .subMenu {
		display: block;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		z-index: 1000;
	}
}

.gnav li:hover .subMenu {
	opacity: 1;
	visibility: visible;
	pointer-events: visible;
}

.gnav .subMenu_inner {
	position: relative;
	margin: 0 auto;
	padding: 1em;
}

.gnav .subMenu .submenu li {
	padding: 0;
}

.gnav .subMenu .submenu li>a,
.gnav .subMenu .submenu li>span {
	display: block;
	position: relative;
	padding: .3em;
	font-size: .9em;
	;
	color: #333;
	text-decoration: none;
	transition: all .3s ease-out;
}

.gnav .subMenu .submenu li>a:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: .4em;
	height: .4em;
	border-top: 2px solid #ddd;
	border-right: 2px solid #ddd;
	opacity: 1;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s ease-out;
}

@media screen and (min-width: 768px) {
	.gnav .subMenu .submenu {
		opacity: 0;
		;
		width: fit-content;
		min-width: 20em;
		background: #fff;
		border-radius: .5em;
		;
		padding: 1.25em;
		box-shadow: 0 0 1em rgba(0, 0, 0, .1);
		transition: all .5s ease-out .2s;
		transform: translateY(-.5em);
	}

	.gnav li:hover .subMenu .submenu {
		opacity: 1;
		transform: translateY(0);
	}

	.gnav .subMenu .submenu li>a>span {
		position: relative;
		width: fit-content;
		padding: .25em 0;
	}

	.gnav .subMenu .submenu li>a>span:before,
	.gnav .subMenu .submenu li>span>span:before {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: var(--keyColor);
		width: 0;
		transition: all .3s ease-out;
	}

	.gnav .subMenu .submenu li>a:hover>span:before,
	.gnav .subMenu .submenu li>span:hover>span:before {
		width: 100%;
	}
}

/* menuBtn */
.menuBtn,
.gnav .closeBtn {
	position: fixed;
	top: 21px;
	right: 15px;
	width: 42px;
	/* height: 27px; */
	height: 42px;
	background: rgba(255, 255, 255, .3);
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	pointer-events: all;
	z-index: 200;
	/*	z-index: 40;*/
}

.menuBtn div,
.gnav .closeBtn div {
	position: relative;
	margin: 7px auto;
	width: 32px;
	height: 22px;
	top: 0;
	-webkit-transition: all 0.75s ease-out;
	transition: all 0.75s ease-out;
}

.menuBtn div:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	margin-top: -1px;
	margin-left: -16px;
	width: 32px;
	height: 2px;
	border-radius: 1px;
	/*background: #fff; */
	background: var(--keyColor);
	opacity: 1;
	-webkit-transition: 0.35s ease-in-out;
	-webkit-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
}

.menuBtn span,
.gnav .closeBtn span {
	display: block;
	margin: 0 auto;
	width: 32px;
	height: 22px;
	color: #fff;
	font-size: 1.1rem;
	font-family: Helvetica, Arial, sans-serif;
	letter-spacing: 0.5px;
	line-height: 76px;
	overflow: hidden;
}

.menuBtn span:before,
.gnav .closeBtn span:before {
	content: '';
	position: absolute;
	left: 50%;
	display: block;
	margin-left: -16px;
	width: 32px;
	height: 2px;
	border-radius: 1px;
	/* background: #fff; */
	background: var(--keyColor);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	top: 0;
	transition: transform 0.3s ease-out;
}

.menuBtn span:after,
.gnav .closeBtn span:after {
	content: '';
	position: absolute;
	left: 50%;
	display: block;
	margin-left: -16px;
	width: 32px;
	height: 2px;
	border-radius: 1px;
	/* background: #fff; */
	background: var(--keyColor);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	bottom: 0;
	transition: transform 0.3s ease-out;
}

.menuBtn.close span:before {
	-webkit-animation: menu-bar01 0.75s forwards;
	animation: menu-bar01 0.75s forwards;
	-webkit-animation: menu-bar01 0.75s forwards;
	animation: menu-bar01 0.75s forwards;
}

.menuBtn.close span:after {
	-webkit-animation: menu-bar03 0.75s forwards;
	animation: menu-bar03 0.75s forwards;
	-webkit-animation: menu-bar03 0.75s forwards;
	animation: menu-bar03 0.75s forwards;
}

.menuBtn.open {
	background: none;
}

.menuBtn.open span:before {
	-webkit-animation: active-menu-bar01 0.75s forwards;
	animation: active-menu-bar01 0.75s forwards;
	-webkit-animation: active-menu-bar01 0.75s forwards;
	animation: active-menu-bar01 0.75s forwards;
}

.menuBtn.open span:after {
	-webkit-animation: active-menu-bar03 0.75s forwards;
	animation: active-menu-bar03 0.75s forwards;
	-webkit-animation: active-menu-bar03 0.75s forwards;
	animation: active-menu-bar03 0.75s forwards;
}

.menuBtn.open div:before {
	opacity: 0;
}

@-webkit-keyframes menu-bar01 {
	0% {
		background: var(--menu-bar-start);
		-webkit-transform: translateY(1px) rotate(45deg);
	}

	50% {
		-webkit-transform: translateY(1px) rotate(0);
	}

	100% {
		background: var(--menu-bar-end);
		-webkit-transform: translateY(0) rotate(0);
	}
}

@keyframes menu-bar01 {
	0% {
		top: 50%;
		background: var(--menu-bar-start);
		-webkit-transform: translateY(-1px) rotate(45deg);
		transform: translateY(-1px) rotate(45deg);
	}

	50% {
		top: 50%;
		-webkit-transform: translateY(-1px) rotate(0);
		transform: translateY(-1px) rotate(0);
	}

	100% {
		top: 0;
		background: var(--menu-bar-end);
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
}

@-webkit-keyframes menu-bar03 {
	0% {
		bottom: 50%;
		background: var(--menu-bar-start);
		-webkit-transform: translateY(1px) rotate(-45deg);
	}

	50% {
		bottom: 50%;
		-webkit-transform: translateY(1px) rotate(0);
	}

	100% {
		bottom: 0;
		background: var(--menu-bar-end);
		-webkit-transform: translateY(0) rotate(0);
	}
}

@keyframes menu-bar03 {
	0% {
		bottom: 50%;
		background: var(--menu-bar-start);
		-webkit-transform: translateY(1px) rotate(-45deg);
		transform: translateY(1px) rotate(-45deg);
	}

	50% {
		bottom: 50%;
		-webkit-transform: translateY(1px) rotate(0);
		transform: translateY(1px) rotate(0);
	}

	100% {
		bottom: 0;
		background: var(--menu-bar-end);
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
}

@-webkit-keyframes active-menu-bar01 {
	0% {
		top: 0;
		background: var(--menu-bar-start);
		-webkit-transform: translateY(0) rotate(0);
	}

	50% {
		top: 50%;
		-webkit-transform: translateY(-1px) rotate(0);
	}

	100% {
		top: 50%;
		background: var(--menu-bar-start);
		-webkit-transform: translateY(-1px) rotate(45deg);
	}
}

@keyframes active-menu-bar01 {
	0% {
		top: 0;
		background: var(--menu-bar-end);
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		top: 50%;
		-webkit-transform: translateY(-1px) rotate(0);
		transform: translateY(-1px) rotate(0);
	}

	100% {
		top: 50%;
		background: var(--menu-bar-start);
		-webkit-transform: translateY(-1px) rotate(45deg);
		transform: translateY(-1px) rotate(45deg);
	}
}

@-webkit-keyframes active-menu-bar03 {
	0% {
		bottom: 0;
		background: var(--menu-bar-end);
		-webkit-transform: translateY(0) rotate(0);
	}

	50% {
		bottom: 50%;
		-webkit-transform: translateY(1px) rotate(0);
	}

	100% {
		bottom: 50%;
		background: var(--menu-bar-start);
		-webkit-transform: translateY(1px) rotate(-45deg);
	}
}

@keyframes active-menu-bar03 {
	0% {
		bottom: 0;
		background: var(--menu-bar-end);
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		bottom: 50%;
		-webkit-transform: translateY(1px) rotate(0);
		transform: translateY(1px) rotate(0);
	}

	100% {
		bottom: 50%;
		background: var(--menu-bar-start);
		-webkit-transform: translateY(1px) rotate(-45deg);
		transform: translateY(1px) rotate(-45deg);
	}
}

.gnav .closeBtn {
	position: absolute;
	top: 7px;
	right: 15px;
	z-index: 200;
	background: none;
}

.gnav .closeBtn span:before,
.gnav .closeBtn span:after {
	background: #fff;
}

.gnav .closeBtn span:before {
	top: 50%;
	-webkit-transform: translateY(-2px) rotate(45deg);
	transform: translateY(-2px) rotate(45deg);
}

.gnav .closeBtn span:after {
	top: 50%;
	-webkit-transform: translateY(-2px) rotate(-45deg);
	transform: translateY(-2px) rotate(-45deg);
}


/* pageTop */
.pageTop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 99;
	width: 50px;
}

.pageTop a {
	position: relative;
	display: block;
	overflow: hidden;
	margin: -25px auto 0;
	padding: 48px 0 0;
	width: 50px;
	height: 0;
	outline: none;
	border: 1px solid #fff;
	background: rgba(0, 0, 0, .15);
	border-radius: 50%;
	text-align: center;
	text-decoration: none;
}

.pageTop a:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -7px;
	width: 12px;
	height: 12px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg);
}

/* footer */
footer {
	background: #f1f1f1;
}

footer a,
footer a:hover {
	text-decoration: none;
}

.footer-wrap {
	padding-block: clamp(3em, 6.5%, 5.5em);
}

footer .footer-address {
	/* margin: 1em 0 0 65px; */
}

footer .footer-logo {
	display: block;
	max-width: 280px;
}

footer .fnavFrame {
	margin-top: min(5%, 4em);
}

footer .fnavFrame .fnav {
	gap: min(2em, 3%);
}


footer .fnavFrame .fnav .fnav-item {
	flex: 1;
}

footer .fnavFrame .fnav .fnav-link {
	display: block;
	white-space: nowrap;
	margin-bottom: .8em;
	line-height: 1;
	font-size: 1.125em;
	/* padding-bottom: .8em;
	border-bottom: 1px solid #d2d2d2; */
}

footer .fnavFrame .fnav .fnav-link+.fnav-link {
	margin-top: 2em;
}

footer .fnavFrame .fnav a {
	position: relative;
	padding-left: 1em;
}

footer .fnavFrame .fnav a:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: .35em;
	width: .35em;
	height: .35em;
	border-top: 2px solid var(--keyColor);
	border-right: 2px solid var(--keyColor);
	transform: rotate(45deg);
	opacity: .7;
}


footer .fnavFrame .fnav_sub {
	font-size: .9em;
	margin-left: 1em;
}

footer .fnavFrame .fnav_sub li {
	font-weight: normal;
}

footer .fnavFrame .fnav_sub li a {
	display: block;
	width: fit-content;
	position: relative;
	padding-block: .15em;
	padding-left: 1em;
}

footer .fnavFrame .fnav_sub li a:before {
	top: .85em;
	width: 5px;
	height: 5px;
	border-color: #aaa;
}

footer .copyright {
	border-top: 1px solid #d2d2d2;
	padding: 2em 0;
	font-size: 1.1rem;
	font-weight: 400;
	text-align: center;
}

.wrapper {
	position: relative;
	/*	word-break: break-all;*/
	word-break: break-word;
}

.content {
	margin-top: 87px;
	padding-bottom: 80px;
}

.contentWrap {}

.contentWrap .section:first-child {
	padding-top: 0;
}

.contentWrap .side .side_ttl {
	margin: 0;
	padding: .9em .5em;
	line-height: 1.3;
	font-size: 1.15em;
	font-weight: normal;
	background: var(--keyColor);
	color: #fff;
	text-align: center;
}

.contentWrap .side .side_list {
	border: 1px solid #e3e3e3;
}

.contentWrap .side .side_list li:not(:last-child) {
	border-bottom: 1px solid #e3e3e3;
}

.contentWrap .side .side_list a {
	display: block;
	position: relative;
	padding: .75em .75em .75em 1.75em;
	text-decoration: none;
}

.contentWrap .side .side_list a:before {
	content: "";
	display: block;
	position: absolute;
	left: .7em;
	top: 50%;
	width: 5px;
	height: 5px;
	border-top: 2px solid var(--keyColor);
	border-right: 2px solid var(--keyColor);
	transform: translateY(-50%) rotate(45deg);
}

.contentWrap .side .side_list a:hover {
	background: #eef1f5;
}

.contentWrap .side .side_list .current a {
	color: rgba(13, 57, 107, .8);
}

@media print,
screen and (min-width: 768px) {
	.contentWrap .main {
		flex: 1 1 auto;
		width: calc(100% - 15em);
		padding-left: 4em;
	}

	.contentWrap .side {
		width: 15em;
	}
}

.section {
	overflow: hidden;
	padding: 60px 0;
}

.section .article+.article {
	margin-top: 65px;
}

.section .article.narrow {
	padding-left: 1em;
	padding-right: 1em;
}

@media print,
screen and (max-width: 575px) {
	.section .article.narrow {
		padding-left: .5em;
		padding-right: .5em;
	}
}

.container {
	margin-inline: auto;
	padding-inline: clamp(15px, 4.65116vw, 60px);
	width: min(100%, 1290px)
}

.container.full {
	max-width: 100%;
	max-width: initial;
}

.ttlSection {
	position: relative;
	/* padding: 2.3em 0; */
	padding: 0 !important;
	display: grid;
	align-items: center;
	min-height: clamp(120px, 18.5vw, 200px);
	background-size: cover;
	border-bottom: 2px solid #a2bce2;
	border-top: 2px solid #a2bce2;
	z-index: 1;
}

.ttlSection:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -5%;
	width: 30%;
	height: 100%;
	z-index: -1;
	background: rgb(35, 126, 255, .1);
	background-size: cover;
	transform: skewX(-20deg);
	transform: skew(30deg, 0deg);
}

.ttlSection:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -12%;
	left: -15%;
	width: 45%;
	height: 100%;
	z-index: -1;
	background: #59b3fc;
	opacity: .1;
	background-size: cover;
	transform: skewX(-45deg);
}

.ttlSection .container {
	padding-block: min(4%, 2em);
}

.pg_car .ttlSection:before {
	background: url(../images/purpose/car/ttl_bg.jpg) no-repeat center bottom;
}

.pgTitle {
	overflow: hidden;
	text-align: center;
	padding: 0;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	color: var(--keyColor);
	line-height: 1.1;
	letter-spacing: .08em;
	font-size: clamp(2rem, 3vw, 2.5em);
	opacity: 0;
	will-change: opacity;
}

.pgTitle.anim:not(.active) {
	transform: translateY(.5em);
}

.pgTitle.anim {
	transition-duration: var(--duration--normal);
	will-change: opacity, transform;
}

/* .pgTitle.active {
	opacity: 1;
	transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) .05s;
} */


.pgTitle+.lead {
	margin-top: min(3%, 2em);
	text-align: center;

}

/*.pgTitle.active .item { */
.pgTitle .item.active {
	opacity: 1;
	transform: translateY(0) !important;
	transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.ttl {
	position: relative;
	margin: 0 0 1em;
	font-size: 1.8em;
	line-height: 1.3;
	font-weight: bold;
	color: var(--keyColor);
	/* opacity: 0;
    transition: all .65s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateY(.5em); */
}

.ttl.color0 {
	color: #000;
}

/* .ttl.active {
	opacity: 1;
	transform: translateY(0);
} */

.ttl .sub {
	display: inline-block;
	position: relative;
	top: -.15em;
	margin-left: .5em;
	font-size: .7em;
}


.section .ttl:first-child,
.section .ttl_idx:first-child,
.section .ttl_m:first-child,
.section .ttl_s:first-child {
	margin-top: 0;
}

.ttl_idx {
	margin: 1.5em 0 2em;
	position: relative;
	overflow: hidden;
	padding: 0.7em 0.5em 0.7em 4.5em;
	font-size: 1.4em;
	border-top: 3px solid var(--keyColor);
}

.ttl_idx:before {
	position: absolute;
	width: 5.5em;
	height: 250%;
	left: 0;
	top: 50%;
	content: '';
	-webkit-transform: translate(-50%, -50%) rotate(25deg);
	transform: translate(-50%, -50%) rotate(25deg);
	background: var(--keyColor);
}

.ttl_idx>.idx {
	font-size: 1.5em;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: flex;
	height: 100%;
	align-items: center;
	align-content: center;
	justify-content: center;
	color: #fff;
	width: 1.85em;
	font-family: 'Oswald', sans-serif;
	line-height: 1.65;
	text-align: center;
}

.ttl_idx .sub {
	font-size: .65em;
	display: inline-block;
	margin-left: 1em;
	letter-spacing: .02em;
}

.ttl_m {
	position: relative;
	margin: 2.5em 0 1.5em;
	padding: 0 0 .6em;
	font-size: 1.3em;
	letter-spacing: 0.002em;
	;
	line-height: 1.3;
	/* color: var(--keyColor); */
	font-weight: bold;
	border-bottom: 2px solid #d7d7d7;
}


.ttl_m:before {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 6.2em;
	height: 2px;
	background-color: var(--keyColor);
	content: "";
}

.ttl_m .sub {
	font-size: .7em;
	font-weight: normal;
}


.ttl_m .pdf--after {
	color: #000 !important;
	text-decoration: none;
}

.ttl_m .pdf--after:after {
	font-size: min(2.1rem, 1.2em);
}

.ttl_s {
	font-size: 24px;
	margin: 0.84em 0;
	font-weight: bold;
	color: var(--keyColor);
}

.ttl_xs {
	font-size: 1.2em;
	margin: 0.84em 0;
	font-weight: bold;
	color: var(--keyColor);
}

.btn {
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 18px 15px;
	width: 100%;
	max-width: 280px;
	line-height: 1.3;
	font-size: 16px;
	font-weight: bold;
	/* letter-spacing: 2px; */
	background: transparent;
	border: 1px solid var(--keyColor);
	color: var(--keyColor);
	text-decoration: none;
	text-align: center;
}


.btn .align__center {
	position: relative;
	top: calc(50% - 1.4em);
}

.btn.fill {
	background: var(--keyColor);
	color: #fff;
}

.btn.en {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}

.btn:link,
.btn:hover,
.btn:active,
.btn:visited {
	color: var(--keyColor);
	text-decoration: none;
}

.btn.fill:link,
.btn.fill:hover,
.btn.fill:active,
.btn.fill:visited {
	color: #fff;
}

.btn.type02,
.btn.type02:link,
.btn.type02:active,
.btn.type02:visited {
	border-color: var(--green);
	color: var(--green);
}

.btn.type02:before {
	border-color: var(--green);
}

.btn.type02:hover {
	background: var(--green);
	color: #fff;
}

.btn.type02.fill,
.btn.type02.fill:link,
.btn.type02.fill:active,
.btn.type02.fill:visited {
	background: var(--green);
	color: #fff;
}

.btn.type02.fill:before {
	border-color: #fff;
}

.btn.type02.fill:hover {
	background: transparent;
	border-color: var(--green);
	color: var(--green);
}

.btn.type02.fill:hover:before {
	border-color: var(--green);
}

.btn_s {
	font-size: .9em;
	padding-block: 1em;
}

.btn_input {
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	width: 100%;
	max-width: 240px;
	line-height: 1.3;
	font-size: 16px;
	font-weight: bold;
	/* background: transparent;
	border: 1px solid var(--keyColor);
	color: var(--keyColor); */
	background: var(--keyColor);
	border: 1px solid var(--keyColor);
	color: #fff;
	text-decoration: none;
	text-align: center;
}

.btn_input>input {
	display: block;
	padding: 15px 10px;
	width: 100%;
	height: 100%;
	line-height: 1.3;
	font-size: 100%;
	color: inherit;
	cursor: pointer;
	text-align: center;
}

.btn_input:hover {
	transition: all .4s ease-out;
	/* background: var(--keyColor);
	color: #fff; */
	background: transparent;
	color: var(--keyColor);
}

.btn:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 1em;
	height: .35em;
	border-bottom: 1px solid var(--keyColor);
	;
	border-right: 1px solid var(--keyColor);
	;
	transform: translateY(-50%) skew(20deg);
	transition: all .2s ease-out;
}

.btn.fill:before {
	border-color: #fff;
}

.btn:hover:before {
	margin-right: -5px;
}

.btn:hover:after {
	margin-right: -5px;
}

.btn.arrow.fill:before {
	border-color: #fff;
}

.btn.arrw:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	box-sizing: border-box;
	width: 8px;
	height: 8px;
	background: none;
	border-top: 1px solid var(--keyColor);
	border-right: 1px solid var(--keyColor);
	transform: translateY(-50%) rotate(45deg);
	transition: all.1s ease-out;
}

.btn.arrw:after {
	display: none;
}

.btn.left {
	margin-left: 0;
	margin-right: 0;
}

.btn.right {
	float: right;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.btn.text-left {
	text-align: left;
}

.btn.no-arrw:before {
	display: none;
}

.btn:hover {
	opacity: 1;
	background: var(--keyColor);
	color: #fff;
}

.btn:hover:before {
	margin-right: -2px;
	border-color: #fff;
}

.btn.fill:hover {
	background: transparent;
	border: 1px solid var(--keyColor);
	color: var(--keyColor);
}

.btn.fill:hover:before {
	border-color: var(--keyColor);
}

.btn.rounded {
	border-radius: .3em;
}

.btnFrame.fadeInZoom {
	opacity: 0;
	transform: scale(0.9) translateY(50px);
	transition: all 0.85s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btnFrame.fadeInZoom.active {
	opacity: 1;
	transform: scale(1) translateY(0);
}

.btn.in-block {
	display: inline-block;
	padding: 18px 28px;
	width: auto;
	max-width: initial;
}

.btn.pdf,
.btn.excel,
.btn.word {
	padding-left: 2.6em;
	padding-right: 1.4em;
}

.btn.pdf:after,
.btn.excel:after,
.btn.word:after {
	content: "\f1c1";
	display: block;
	position: absolute;
	top: 50%;
	left: 1em;
	width: 21px;
	height: 21px;
	border: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1.25;
	color: var(--keyColor);
	transform: translateY(-50%);
}

.btn.pdf:before,
.btn.excel:before,
.btn.word:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: auto;
	right: 15px;
	box-sizing: border-box;
	width: 8px;
	height: 8px;
	border: 0;
	border-top: 1px solid var(--keyColor);
	border-right: 1px solid var(--keyColor);
	transform: translateY(-50%) rotate(45deg);
	transition: all.1s ease-out;
}


.btn.excel:after {
	content: "\f1c3";
}

.btn.word:after {
	content: "\f1c2";
}


.btn.excel.color {
	color: #7fc52f;
	border-color: #7fc52f;
}

.btn.excel.color:before {
	border-color: #7fc52f;
}

.btn.excel.color:after {
	color: #7fc52f;
}

.btn.excel.color:hover {
	background: #7fc52f;
	color: #fff;
}

.btn.excel.color.fill {
	background: #7fc52f;
}

.btn.word.color {
	color: #0e77ae;
	border-color: #0e77ae;
}

.btn.word.color:before {
	border-color: #0e77ae;
}

.btn.word.color:after {
	color: #0e77ae;
}

.btn.word.color:hover {
	background: #0e77ae;
	color: #fff;
}

.btn.word.color.fill {
	background: #0e77ae;
}

.btn.excel.color;
hover:before,
.btn.word.color;

hover:before {
	border-color: #fff;
}

.btn.excel.color;
hover:after,
.btn.word.color;

hover:after {
	color: #fff;
}

.btn.pdf.fill,
.btn.excel.fill,
.btn.word.fill {
	color: #fff;
}

.btn.pdf:hover:before,
.btn.pdf.fill:before,

.btn.excel:hover:before,
.btn.excel.fill:before,

.btn.word:hover:before,
.btn.word.fill:before {
	border-color: #fff;
}

.btn.pdf:hover:after,
.btn.pdf.fill:after,

.btn.excel:hover:after,
.btn.excel.fill:after,

.btn.word:hover:after,
.btn.word.fill:after {
	color: #fff;
}

.btn.pdf.fill:hover,
.btn.excel.fill:hover,
.btn.word.fill:hover {
	color: var(--keyColor);
}

.btn.pdf.fill:hover:before,
.btn.excel.fill:hover:before,
.btn.word.fill:hover:before {
	border-color: var(--keyColor);
}

.btn.pdf.fill:hover:after,
.btn.excel.fill:hover:after,
.btn.word.fill:hover:after {
	color: var(--keyColor);
}

.btn_lined {
	position: relative;
	padding: 1.5em .5em;
	font-weight: bold;
	border: none;
	color: #fff;
	background: #17b1aa;
	transition: all .8s ease;
}

.btn_lined,
.btn_lined:link,
.btn_lined:hover,
.btn_lined:visited {
	color: #fff;
}

.btn_lined:hover {
	opacity: 1;
	color: #17b1aa;
	background: transparent;
}


.btn_lined:before,
.btn_lined:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 2px;
	background: #17b1aa;
	;
	border: none;
	transform: scaleX(0);
	transform-origin: 0 0;
	transition: transform .4s ease;
	z-index: 1;
}

.btn_lined:after {
	top: auto;
	left: auto;
	right: 0;
	bottom: 0;
	transform-origin: right 0;
}

.btn_lined:hover:before,
.btn_lined:hover:after {
	transform: scaleX(1);
	transition: transform .8s ease;
}

.btn_slide {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn_slide:after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 150%;
	height: 500%;
	background: var(--keyColor);
	transition: transform 0.3s ease-out;
	transform: translate(-110%, 0) rotate(45deg);
	z-index: -1;
}

.btn_slide:hover {
	color: #fff;
	background: transparent;
	border-color: var(--keyColor);
}

.btn_slide:hover:before {
	border-color: #fff;
}

.btn_slide:hover:after {
	transform: translate(-50%, -50%) rotate(45deg);
}


/* --------------------------------------------------
  INDEX STYLES
  -------------------------------------------------- */
.pg_top .content {
	padding-bottom: 0;
}

.pg_top .ttl_top {
	margin: 0 0 .75em;
	font-size: 3.75em;
	font-size: clamp(2.5rem, 4.1958vw, 3.75em);
	letter-spacing: .044776em;
	color: var(--keyColor);
	font-weight: 500;
	font-family: "Rubik";
	color: var(--keyColor);
	line-height: 1.3;
}

.pg_top .ttl_top .sub {
	position: relative;
	display: block;
	margin: .8em 0 0;
	font-size: .3em;
	letter-spacing: .055em;
	color: #000;
	font-family: "游ゴシック体", YuGothic, 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, arial, helvetica, sans-serif;
}

.pg_top .ttl_top .sub:before {
	content: "";
	display: block;
	margin-block: 1em;
	width: 1.556em;
	height: 1px;
	background: #000;
}

.pg_top .fadeInDown {}

/* VISUAL FRAME */
.pg_top .visualSection .visualFrame {
	position: relative;
	overflow: hidden;
}

.pg_top .visualFrame .img {
	position: relative;
}

.pg_top .visualFrame .img:before {
	content: "";
	display: block;
	position: absolute;
	left: -25%;
	top: 0;
	width: 150%;
	height: 100%;
	background: #fff;
	transform: translate(0, 0) skew(-30deg, 0);
	will-change: transform;
	transition: transform 2.4s cubic-bezier(.84, 0, .22, 1.01) .02s;
	z-index: 1;
}

.pg_top .visualFrame.active .img:before {
	transform: translate(100%, 0) skew(-30deg, 0);
}

.pg_top .visualFrame .txtFrame {
	display: grid;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	top: 0;
	color: #282828;
	z-index: 20;
}

.pg_top .visualFrame .txtFrame .anim {
	will-change: transform, opacity;
	transition-duration: 2s, 1.5s;
	transition-property: transform, opacity;
	transform: translate3d(0, 3rem, 0);
}

.pg_top .visualFrame .txtFrame .anim.active {
	transform: translate3d(0, 0, 0);
}

.pg_top .visualFrame .txtFrame .title {
	font-size: min(3.1875em, 3.566433vw);
	font-weight: 900;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.4;
}

.pg_top .visualFrame .txtFrame .txt {
	margin: 1.4em auto .7em;
	line-height: 1.75;
	letter-spacing: 0;
	font-size: clamp(1.4rem, 1.01625em, 1.35vw);
	font-weight: bold;
}

.pg_top .visualFrame .txtFrame .title .anim {
	transition-delay: 1.5s;
}

.pg_top .visualFrame .txtFrame .txt .anim {
	transition-delay: 1.75s;
}

.pg_top .visualFrame .txtFrame .btnWrap {
	margin-top: min(7%, 4em);
	transition-delay: 1.95s;
	margin-bottom: -14%;
}

.pg_top .visualFrame .txtFrame .btn {
	font-size: clamp(1em, 2.2vw, 1.4em);
	padding-inline: 1.5em;
	max-width: initial;
	width: fit-content;
}

.pg_top .visualFrame .txtFrame .btn:before {
	width: 1.5em;
	transform: translateX(50%);
	right: 0;
	height: 2px;
	border: 0;
	background: var(--green);
}

@media print,
screen and (min-width: 768px) {
	.pg_top .visualFrame .txtFrame .container {
		width: 100%;
	}
}

@media print,
screen and (max-width: 767px) {
	.pg_top .visualFrame .txtFrame .title {
		font-size: min(4.15vw, 2.1em)
	}

	.pg_top .visualFrame .txtFrame .txt {
		font-size: min(2.4vw, .9em);
	}

	.pg_top .visualFrame .txtFrame .btnWrap {
		margin: 5% 0 -5%;
	}

	.pg_top .visualFrame .txtFrame .btn {
		font-size: min(3vw, 1.2em);
		padding: .8em 1em;
	}
}

/* purposeSection */
.pg_top .purposeFrame {
	gap: 2.5em;
}

.pg_top .purposeFrame .box {
	display: block;
	position: relative;
	display: flex;
	/* gap: 2em; */
	/* padding-right: 4em; */
	gap: 6.5%;
	padding-right: 5.5%;
	color: inherit;
	text-decoration: none;
}

.pg_top .purposeFrame .box:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	/* width: 2em; */
	width: 5.842%;
	aspect-ratio: 1 / 1;
	background: url(../images/common/ico-arrow.svg) no-repeat center;
	background-size: contain;
	transition: all .4s ease-out;
	transform: translate(-50%, -50%);
}

.pg_top .purposeFrame .box:hover {
	opacity: .7;
}

.pg_top .purposeFrame .box .img {
	width: 41.917%;
}

.pg_top .purposeFrame .box .txt {
	flex: 1;
}

.pg_top .purposeFrame .box .txt .head {
	margin-bottom: .35em;
	line-height: 1.3;
	;
	font-size: clamp(1.8rem, 1.9608vw, 1.75em)
}

.pg_top .purposeFrame .box .txt .summary {
	font-size: .875em;
}

@media print,
screen and (min-width: 768px) {
	.pg_top .purposeFrame .box {
		width: calc(calc(100% - 2.5em) / 2);
	}
}

@media print,
screen and (max-width: 991px) {
	.pg_top .purposeFrame .box {
		padding-right: 4%;
	}

	.pg_top .purposeFrame .box:before {
		transform: translateY(-50%);
	}

	.pg_top .purposeFrame .box .img {
		width: 32%;
	}

	.pg_top .purposeFrame .box .txt .summary {
		font-size: .9em;
	}
}

@media print,
screen and (max-width: 767px) {
	.pg_top .purposeFrame .box {
		padding-right: 3em;
		gap: min(5.5%, 2em);
	}

	.pg_top .purposeFrame .box:before {
		width: 1.5em;
		transform: translate(-50%, -50%);
	}

	.pg_top .purposeFrame .box .txt .head {
		font-size: 1.2em;
	}
}

/* movieSection */
.pg_top .movieSection {
	background: #19a985 url(../images/index/bg_movie.svg) no-repeat 0 0;
	background-size: auto 100%;
	color: #fff;
}

.pg_top .movieSection .ttl_top {
	color: #fff;
	font-size: clamp(2.2rem, 2.797vw, 2.5em);
}

.pg_top .movieSection .txt {
	font-size: clamp(1em, 1.25874vw, 1.125em);
}

.pg_top .movieSection .movFrame .mov {
	position: relative;
	overflow: hidden;
	border-radius: 2em;
}

.pg_top .movieSection .movFrame video {
	display: block;
	width: 100%;
	aspect-ratio: 749 / 397;
	object-fit: cover;

	transition-delay: .5s;
}

.pg_top .movieSection .movFrame img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pg_top .movieSection .movFrame #video-play {
	display: grid;
	place-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
	left: 0;
	top: 0;
	cursor: pointer;
	z-index: 91;
	transition: opacity .3s ease-out;
}


.pg_top .movieSection .movFrame #video-play:hover {
	opacity: .5;
}

.pg_top .movieSection .movFrame #video-btn {
	width: 5.25em;
	height: 5.25em;
	line-height: 5.8em;
	text-align: center;
	border-radius: 50%;
	border: 4px solid #fff;
}


.pg_top .movieSection .movFrame #video-btn i {
	font-size: 2.8em;
	line-height: 1;
	letter-spacing: -.15em;
}

@media print,
screen and (min-width: 768px) {
	.pg_top .movieSection {
		display: grid;
		place-items: center;
		min-height: 36.75vw;
	}

	.pg_top .movieSection .inner {
		gap: min(12%, 4.35em);
	}

	.pg_top .movieSection .txtFrame {
		flex: 0 1 30%;
	}

	.pg_top .movieSection .movFrame {
		/* flex: 1 1 64.655%; */
		flex: 1 1 60%;
	}
}

@media print,
screen and (max-width: 767px) {
	.pg_top .movieSection .movFrame {
		margin-top: 2em;
	}

	.pg_top .movieSection .movFrame .mov {
		border-radius: 1.4em;
	}
}


/* infoSection */
.infoSection {
	padding-block: clamp(30px, 10%, 160px);
	background: var(--keyColor);
	color: #fff;
}

.infoSection .ttlWrap {
	align-items: center;
}

.infoSection .btn_more {
	position: relative;
	padding-right: 2.75em;
}

.infoSection .btn_more:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 2em;
	height: 2em;
	background: url(../images/common/ico-arrow-white.svg) no-repeat center;
	background-size: contain;
	transition: all .4s ease-out;
	transform: translate(0, -50%);
}

.infoSection .ttl_top,
.infoSection .ttl_top .sub {
	color: #fff;
}

.infoSection .ttl_top .sub:before {
	background: #fff;
}

.infoSection a {
	color: #fff;
	text-decoration: none;
}

.infoSection .newsList li {
	padding-block: 1em;
	border-bottom: 1px solid #4573b5;
}

.infoSection .newsList li:first-child {
	border-top: 1px solid #4573b5;
}

.infoSection .newsList li .date {
	margin: 0 0 .3em;
	display: block;
}

@media print,
screen and (min-width: 576px) {
	.infoSection .ttlWrap {
		display: flex;
		justify-content: space-between;
	}

	.infoSection .newsList li {
		padding-block: 1.4em;
	}

	.infoSection .newsList li a {
		display: flex;
		gap: 1em;
	}

	.infoSection .newsList li .date {
		margin: 0;
		flex: 0 0 6.5em;
	}
}

@media print,
screen and (max-width: 768px) {
	.infoSection .btn_more {
		padding-right: 2em;
		;
	}

	.infoSection .btn_more:before {
		width: 1.5em;
		height: 1.5em;
		;
	}
}

@media print,
screen and (max-width: 575px) {
	.infoSection .ttlWrap {
		overflow: hidden;
	}

	.infoSection .ttl_top {
		margin-bottom: 0;
	}

	.infoSection .btn_more {
		/* margin: -1.4em 0 1em; */
		margin-bottom: 1em;
		float: right;
	}
}


/* --------------------------------------------------
  LOWER PAGE STYLES
  -------------------------------------------------- */
.leadText {
	text-align: center;
}

@media print,
screen and (min-width: 768px) {
	.leadText {
		font-size: 1.1em;
		line-height: 2.2;
	}
}

.pg_lower .pgTitle+section {
	padding-top: 0;
}

.directoryFrame {
	/* padding: 1em 0; */
	padding: 1em clamp(15px, 4.65116vw, 60px);
	max-width: 1290px;
	margin: 0 auto;
}

.directoryFrame .container {
	padding: 0;
}

.directoryFrame li {
	display: inline;
	padding: 0 .5em 0 0;
	font-size: .85em;
	color: #777;
}

.directoryFrame li a {
	padding: 0 .5em 0 0;
}

.directoryFrame+.section {
	padding-top: 3.5%;
}

.directoryFrame+.section:last-child {
	padding-bottom: 0;
}

.addressBox {
	margin-top: 15px;
	margin-left: -1.5em;
	margin-right: -1.5em;
}

.addressBox dl {
	display: flex;
	padding: 0 1.5em;
	margin-bottom: 15px;
}

.imgBox01 .img {
	margin: 0 0 20px;
}

.imgBox01 .img img {
	display: block;
	margin: 0 auto;
}

.imgBox01 .img {
	margin-top: 30px;
}


@media print,
screen and (min-width: 768px) {
	.imgBox01 .img {
		margin: 0;
		width: 27%;
	}

	.imgBox01 .txt {
		flex: 1 1 auto;
		max-width: calc(73% - 30px);
	}

	.imgBox01.img_l .img {
		margin: 0;
		width: 40%;
	}

	.imgBox01.img_l .txt {
		flex: 1 1 auto;
		max-width: calc(60% - 30px);
	}
}

.pg_lower .btnFrame.colWrap .btn+.btn {
	margin-left: 2em;
}

.pg_lower .btnFrame.max-tab {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.pg_lower .menuSection .menuList {
	justify-content: flex-start;
	gap: 2em;
}

.pg_lower .menuSection .menuList .box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5em;
	border: 1px solid var(--blue--light)
}

.pg_lower .menuSection .menuList .head {
	margin-bottom: 1em;
	font-size: 1.35em;
	font-weight: bold;
	text-align: center;
}

.pg_lower .menuSection .menuList .head .sub {
	display: block;
	font-size: .6em;
	;
}

.pg_lower .menuSection .menuList .head:after {
	content: "";
	display: block;
	margin: .5em auto 0;
	width: 2em;
	height: 2px;
	background: #ccdcf6;
}

.pg_lower .menuSection .menuList .summary {
	flex: 1;
}

.pg_lower .menuSection .menuList .btn_more {
	margin: 1.5em auto 0;
	padding: 0.8em 1.5em;
	max-width: 15em;
	font-size: .9em;
}

@media print,
screen and (min-width: 992px) {
	.pg_lower .menuSection .menuList .box {
		width: calc(calc(100% - 4em) / 3);
	}
}

@media print,
screen and (min-width: 676px) and (max-width: 991px) {
	.pg_lower .menuSection .menuList .box {
		width: calc(calc(100% - 2em) / 2);
	}
}

@media print,
screen and (max-width: 675px) {
	.pg_lower .menuSection .menuList .box {
		width: 100%;
	}

}

/* -------------------
  purpose PAGE STYLES
  -------------------- */
.pg_purpose .lineupFrame {
	padding: 2em 0;
	border-bottom: 1px solid #ddd;
}

.pg_purpose .lineupFrame:first-of-type {
	padding-top: 0;
}

.pg_purpose .lineupHeader {
	gap: 2.5em;
	align-items: center;
	;
}

.pg_purpose .btn_purpose {
	margin: 0;
	padding-block: 1.1em;
	flex: 0 0 max(20%, 14em);
}

.pg_purpose .lineupCategory {
	flex: 1;
	gap: 1em;
	justify-content: flex-start;
	;
}

.pg_purpose .lineupCategory>li {
	padding: .2em .75em;
	color: var(--keyColor);
	border: 1px solid rgba(30, 67, 118, .5);
	background: rgb(0, 107, 255, .1);
	font-size: .9em;
	letter-spacing: normal;
	text-align: center;
}

@media print,
screen and (max-width: 767px) {
	.pg_purpose .lineupCategory {
		gap: .5em;
	}

	.pg_purpose .lineupCategory>li {
		font-size: .85em;
	}
}

.pg_purpose .lineupBody {
	margin-top: 2em;
}

.pg_purpose .lineupItemName {
	color: var(--keyColor);
	font-size: 1.3em;
	;
	margin-bottom: 1em;
}

.pg_purpose .lineupTxt .hd {
	display: block;
	margin-bottom: .5em;
	padding-left: 1em;
	;
	position: relative;
}

@media print,
screen and (min-width: 576px) {
	.pg_purpose .lineupTxt {
		display: flex;
		justify-content: flex-start;
		gap: .5em;
		padding-inline: 0;
	}

	.pg_purpose .lineupTxt .hd {
		margin: 0;
		flex: 0 0 5.5em;
	}
}

.pg_purpose .lineupTxt .hd:before {
	content: "";
	display: block;
	position: absolute;
	top: .65em;
	left: 0;
	width: .4em;
	height: .4em;
	border-top: 2px solid var(--keyColor);
	border-right: 2px solid var(--keyColor);
	transform: rotate(45deg);
}

/* ---------------------------
  purpose > ITEM PAGE STYLES
  ----------------------------*/
.pg_product .productSection .productFrame {
	gap: min(7%, 5em);
}

@media print,
screen and (min-width: 768px) {
	.pg_product .productSection .productInfo {
		gap: 3em;
	}

	.pg_product .productSection .productInfo>*:first-child {
		flex: 1 1 60%;
	}
}

.pg_product .productSection .productFeature li+li {
	margin-top: .7em;
}

.pg_product .productSection .purposeList {
	display: grid;
	gap: 1em;
}

@media print,
screen and (min-width: 576px) {
	.pg_product .productSection .purposeList {
		display: grid;
		gap: 1em;
		grid-template-columns: minmax(5em, auto) 1fr;
	}

	.pg_product .productSection .purposeList .tr {
		display: grid;
		grid-template-columns: subgrid;
		grid-column: span 2;
	}
}

.pg_product .productSection .purposeList .td {
	padding-inline: .2em;
}

.pg_product .productSection .purposeList .label {
	display: grid;
	/* height: 100%; */
	background: var(--purpose-th-bg, var(--bg--blue));
	border: 1px solid var(--purpose-th-border, var(--blue--ex-light));
	color: var(--purpose-th-color, var(--keyColor));
	padding: .2em .5em;
	font-size: .95em;
	letter-spacing: 0;
	line-height: 1.2;
	place-items: center;
	text-align: center;
}

@media print,
screen and (max-width: 575px) {
	.pg_product .productSection .purposeList {
		gap: 1.5em;
	}

	.pg_product .productSection .purposeList .label {
		margin-bottom: .35em;
		width: fit-content;
		min-width: 5em;
	}
}

.pg_product .productSection .--food {
	--purpose-th-bg: #fff0f0;
	--purpose-th-border: #eaa6a6;
	--purpose-th-color: #ef546b;
}

.pg_product .productSection .--medical {
	--purpose-th-bg: #e9fff9;
	--purpose-th-border: #7cc878;
	--purpose-th-color: #009263;
}

.pg_product .productSection .--car {
	--purpose-th-bg: #f1edff;
	--purpose-th-border: #8d7cc5;
	--purpose-th-color: #624fa0;
}

.pg_product .productSection .--pkg {
	--purpose-th-bg: #fff7d4;
	--purpose-th-border: #daa54a;
	--purpose-th-color: #c46500;
}

.pg_product .productSection .--agri {
	--purpose-th-bg: #eeffd4;
	--purpose-th-border: #6ed02d;
	--purpose-th-color: #00910a;
}

.pg_product .productSection .--electric {
	--purpose-th-bg: #dbf5ff;
	--purpose-th-border: #1983cb;
	--purpose-th-color: #1376a1;
}

@media print,
screen and (min-width: 576px) {
	.pg_product .productSection .productImg.colWrap {
		margin-top: 3em;
		gap: 2em;
	}
}

.pg_product .productSection .productImg img {
	margin: 0 auto;
}

@media print,
screen and (max-width: 575px) {
	.pg_product .productSection .productImg.colWrap {
		margin-top: 2em;
		flex-direction: column;
		gap: 2em;
	}

	.pg_product .productSection .productImg img {
		width: min(100%, 360px);
	}
}

.pg_product .productFrame+.dataFrame {
	margin-top: clamp(35px, 8%, 4.5em);
}

.pg_product .dataFrame .ttlWrap {
	overflow: hidden;
}

.pg_product .dataFrame .dataTbl {
	letter-spacing: 0;
	font-size: .95em;
}

@media print,
screen and (max-width: 767px) {
	.pg_product .productSection .productImg {
		margin-top: 3em;
	}

	.pg_product .dataFrame .link {
		margin-top: 1em;
		float: right;
	}
}

.pg_product .lineupFrame .lineupList li+li {
	margin-top: 1em;
}


/* ---------------------------
  FORM PAGE STYLES
  ----------------------------*/
.pg_contact .flowList {
	display: flex;
	margin: 0 auto 3em;
	border-radius: 3px;
	border: 1px solid var(--blue--light);
	overflow: hidden;
	font-size: clamp(1.2rem, 3.4vw, 1em);
}

.pg_contact .flowList li {
	flex-grow: 1;
	position: relative;
	display: grid;
	place-items: center;
	height: 3.2em;
	padding-left: 1.15em;
	color: #666;
	background: #f8f8f8;
}

.pg_contact .flowList li:first-child {
	padding-left: .5em;
}

.pg_contact .flowList li>span {
	position: relative;
	z-index: 1;
}

.pg_contact .flowList li:last-child:before {
	display: none;
}

.pg_contact .flowList li:before {
	content: "";
	display: block;
	width: 2.5em;
	height: 2.5em;
	border-top: 1px solid var(--blue--light);
	border-right: 1px solid var(--blue--light);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%) rotate(45deg) skew(10deg, 10deg);
	z-index: 1;
}

.pg_contact .flowList li .step {
	display: inline-block;
	font-size: .85em;
	letter-spacing: 0;
	margin: 0 0.5em;
}

.pg_contact .flowList li.current {
	color: #fff;
	font-weight: bold;
	background: var(--keyColor);
}

.pg_contact .flowList li.current:before {
	border-color: var(--keyColor);
	background: var(--keyColor);
}

.pg_contact .formTbl {
	padding-bottom: 3em;
	border-top: 0;
}

.pg_contact .formTbl .th {
	position: relative;
	padding-left: 0;
}

.pg_contact .formTbl .req,
.pg_contact .formTbl .no-req {
	display: inline-block;
	margin: 0 1.5em 0 0;
	padding: 2px 3px;
	width: 3em;
	line-height: 1.2;
	font-size: 12px;
	font-weight: normal;
	color: var(--red);
	border: 1px solid var(--red);
	text-align: center;
}

.pg_contact .formTbl .no-req {
	color: var(--aqua);
	border-color: var(--aqua);
}

.pg_contact .formTbl .td input[type=text].max,
.pg_contact .formTbl .td textarea {
	width: 100%;
}

.pg_contact .formTbl .inner label {
	width: calc(50% - 0.5em);
}

.pg_contact .formTbl .colWrap>label {
	min-width: 5.5em;
}

.pg_contact .formTbl .colWrap.wrap {
	gap: 1em 3em;
}

.pg_contact .formTbl .colWrap>.item+.item {
	margin-left: 2.5em;
}

.pg_contact .formTbl .inner .labelHead {
	display: flex;
	align-items: center;
	align-content: center;
	width: 2.5em;
	padding-top: 22px;
}

.pg_contact .formTbl .inner .labelBody {
	flex: 1 1 auto;
	max-width: calc(100% - 2.5em);
}

.pg_contact .formTbl .inner .labelBody input {
	width: 100%;
}

.pg_contact .guide {
	margin: 0.5em;
	font-size: 1.3rem;
	color: #505050;
}


.sel select {
	appearance: none;
	padding: .58em .625em;
	padding-right: 1.75em;
	font-weight: normal;
}

.sel {
	position: relative;
	width: fit-content;
}

.sel:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0.75em;
	width: 0.4em;
	height: 0.4em;
	border-bottom: 2px solid var(--keyColor);
	border-right: 2px solid var(--keyColor);
	transform: translateY(-50%) rotate(45deg);
	z-index: 1;
}

.pg_contact .formTbl .label {
	display: inline-block;
	margin-right: 2em;
}

.pg_contact .formTbl input:disabled {
	opacity: 0.5;
}

.pg_contact input.num {
	margin: 0 0.25em;
}

.pg_contact .formTbl+.noteText {
	margin: -2em auto 3em;
}

.pg_contact .agreementFrame {}


.pg_contact .agreementFrame .ttl_m {
	margin: 0 0 .7em;
	padding: 0;
	font-size: 1.35em;
	color: var(--keyColor);
	border: 0;
}

.pg_contact .agreementFrame .ttl_m:before {
	display: none;
}

.pg_contact .agreementFrame .privacyPolicyBox {
	height: 10em;
	overflow-y: auto;
	padding: 1.5em;
	border: 1px solid #ccc;
}

.pg_contact .agreementFrame .privacyPolicyBox .article+.article,
.pg_contact .agreementFrame .privacyPolicyBox .article_sub+.article_sub {
	margin-top: 2em;
}

.pg_contact .agreementFrame .privacyPolicyBox .ttl_s,
.pg_contact .agreementFrame .privacyPolicyBox .ttl_xs {
	color: inherit;
}

.pg_contact .agreementFrame .privacyPolicyBox .ttl_s {
	font-size: 1.15em;
}

.pg_contact .agreementFrame .privacyPolicyBox .ttl_xs {
	font-size: 1.05em;
}

.pg_contact .agreementFrame .agreement {
	margin: 2em 0 1em;
	display: block;
	font-size: 1.1em;
	cursor: pointer;
	text-align: center;
}

.pg_contact .agreementFrame .msg {
	text-align: center;
	margin: 0 auto 2em;
	width: fit-content;
	min-width: 25em;
	color: #ff2b55;
}

.pg_contact .btn_confirm.disabled {
	opacity: 0.5;
	pointer-events: none;
}


@media print,
screen and (min-width: 768px) {

	.pg_contact .formTbl .th,
	.pg_contact .formTbl .td {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.pg_contact .formTbl .th {
		display: flex;
		align-items: center;
		align-content: center;
		width: 20%;
		max-width: initial;
		min-width: 16em;
	}

	.pg_contact .formTbl .td {
		flex: 1 1 70%;
	}

	.pg_contact .formTbl .inner label {
		width: calc(50% - 1em);
	}

	.pg_contact .formTbl .td input[type=text].pc-max,
	.pg_contact .formTbl .td textarea.tab-max {
		width: 90%;
		max-width: 100%;
	}
}

@media print,
screen and (max-width: 767px) {
	.pg_contact .flowList {
		margin-bottom: 35px;
	}

	.pg_contact .formTbl {
		padding-bottom: 25px;
	}

	.pg_contact .formTbl .tr {
		padding-bottom: 15px;
	}

	.pg_contact .formTbl .hissu,
	.pg_contact .formTbl .ninni {
		position: absolute;
		right: 0;
		font-size: 11px;
	}

	.pg_contact .formTbl .td {
		padding-top: 10px;
	}

	.pg_contact .formTbl .colWrap>.item+.item {
		margin: 2.5em 0 0;
	}

	.pg_contact .formTbl .td input[type=text],
	.pg_contact .formTbl .td textarea {
		max-width: 100%;
	}

	.pg_contact .formTbl .item_survey .colWrap>label {
		display: block;
		margin: 1em 0 0;
	}

	.pg_contact input.num {
		max-width: 5em !important;
	}
}

@media print,
screen and (max-width: 499px) {
	.pg_contact .flowList li .step {
		margin: 0 0.85em 0 0;
	}

	.pg_contact input.num {
		max-width: 4.5em !important;
	}
}

/* ---------------------------
  DOWNLOAD PAGE STYLES
  ----------------------------*/
.pg_download .ttl .sub {
	color: #202020;
	font-weight: 500;
}

.pg_download .list_dl {
	gap: 2em;
}

.pg_download .list_dl+.list_dl {
	margin-top: 2em;
	padding-top: 2em;
	border-top: 1px solid #ddd;
}

.pg_download .list_dl>li {
	width: calc(calc(100% - 6em) / 4);
}

@media print,
screen and (max-width: 991px) {
	.pg_download .list_dl>li {
		width: calc(calc(100% - 4em) / 3);
	}
}

@media print,
screen and (max-width: 767px) {
	.pg_download .list_dl {
		gap: 1em;
	}

	.pg_download .list_dl>li {
		width: calc(calc(100% - 1em) / 2);
	}
}

@media print,
screen and (max-width: 575px) {
	.pg_download .list_dl {
		flex-direction: column;
		;
		gap: .5em;
	}

	.pg_download .list_dl>li {
		width: auto;
	}
}


.pg_download .list_dl>li a {
	position: relative;
	display: grid;
	align-items: center;
	padding: .25em 1em;
	width: 100%;
	height: 100%;
	min-height: 3.5em;
	border: 1px solid #c0c0c0;
	line-height: 1.3;
	text-decoration: none;
}

.pg_download .list_dl>li a:hover {
	background: var(--bg--green);
	opacity: 1;
}

/* ---------------------------
  TECHNOLOGY PAGE STYLES
  ----------------------------*/
.pg_technology .visualFrame {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto min(1.5em, 4%);
	position: relative;
	overflow: hidden;
	aspect-ratio: 4.5 / 1;
}

.pg_technology .visualFrame .mv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* object-position: center bottom; */
}

.pg_technology .visualFrame .pgTitle,
.pg_technology .visualFrame .txt {
	position: relative;
	text-align: center;
	text-shadow: 0 0 .025em rgb(255 255 255 / 50%), 0 0 .15em rgb(255 255 255 / 100%);
	z-index: 1;
}

.pg_technology .visualFrame .pgTitle {
	/* color: #2b4475; */
	margin: .6em 0 .7em;
	padding: 0;
}


.pg_technology .technologySection .ttlWrap {
	gap: 2em;
	/* align-items: flex-end; */
}

.pg_technology .technologySection .ttlWrap>* {
	padding-block: .5rem;
}

.pg_technology .technologySection .ttlWrap .ttl {
	display: flex;
	gap: .65em;
	flex: 0 0 10.5em;
	font-size: clamp(2rem, 3.4vw, 1.8em);
	align-items: center;
	;
	margin: 0;
	padding-right: .65em;
	border-right: 1px solid;
}

.pg_technology .technologySection .ttl .label {
	display: block;
	width: fit-content;
	font-size: max(1.2rem, .55em);
	color: #fff;
	padding: .25em .45em .325em .65em;
}


.pg_technology .technologySection .article {
	margin-top: min(2.8em, 5%);
}

.pg_technology .technologySection .box02 {
	overflow: hidden;
	background: rgb(243 248 255 / 80%);
	margin-bottom: 0;
	padding: 0;
}

.pg_technology .technologySection .usageList {
	padding: 0 max(1em, 3.5%) max(1em, 3.5%);
	gap: 1.5em;
}

.pg_technology .technologySection .usageList>* {
	width: calc(calc(100% - 3em) / 3);
	background: #fff;
	border: 1px solid rgba(36, 66, 143, 0.2);
	border-radius: .25em;
	padding: 1.35em;
}

.pg_technology .technologySection .ttl_m {
	border: 0;
	font-size: clamp(1.7rem, 2.5vw, 1.4em);
	font-weight: 500;
	margin-block: .85em 1em;
	padding-bottom: .75em;
	padding-inline: 1em .15em;
	letter-spacing: .2em;
	width: fit-content;
}

.pg_technology .technologySection .ttl_m:before {
	width: 100%;
	bottom: 0;
	background: var(--blue--ex-light);
	height: .225em;
	content: "";
	opacity: .5;
}

.pg_technology .technologySection .usageList .link-pdf {
	color: inherit;
	text-decoration: none;
}

.pg_technology .technologySection .usageList .link-pdf:after,
.pg_technology .technologySection .usageList [href*="pdf"]:after {
	display: inline-block;
	position: relative;
	margin-left: .5em;
	content: "\f1c1";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	line-height: 1.2;
	font-size: 1.2em;
	color: var(--keyColor);
}

.pg_technology .technologySection .usageList .link-pdf:hover,
.pg_technology .technologySection .usageList [href*="pdf"]:hover {
	color: var(--keyColor);
}


.pg_technology .technologySection .usageList .link-pdf:hover:before,
.pg_technology .technologySection .usageList [href*="pdf"]:hover:before {
	right: .8em;
	opacity: 1;
}


.pg_technology .technologySection .usageList .products {
	display: flex;
	gap: .75em;
	margin: 0 0 1em;
}

.pg_technology .technologySection .usageList .ico_product {
	position: relative;
	display: block;
	width: fit-content;
	padding: .4em 1.15em .45em .5em;
	font-size: .9em;
	border-radius: .2em;
	line-height: 1.2;
	background: var(--keyColor);
	color: #fff;
	text-decoration: none;
}

.pg_technology .technologySection .usageList .ico_product:before {
	content: "";
	display: block;
	position: absolute;
	right: .75em;
	top: 50%;
	width: .35em;
	height: .35em;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg) translateY(-50%);
	transition: all .3s ease-out .15s;
	opacity: .6;
}


.pg_technology .technologySection .usageList .ico_product:hover:before {
	right: calc(.75em - 2px);
	opacity: 1;
}

.pg_technology .technologySection .usageList .sumiceller {
	background: var(--green);
}

.pg_technology .technologySection .usageList .sumipanel {
	background: var(--aqua);
}

.pg_technology .technologySection .usageList .assist {
	background: var(--grape);
}

.pg_technology .technologySection .usageList .cutace {
	background: var(--blueberry);
}

.pg_technology .technologySection .usageList .backingsheet {
	background: var(--orange);
}

/* color */
.pg_technology .technologySection .ttl,
.pg_technology .technologySection .ttl_m {
	color: var(--txtColor, var(--keyColor));
}

.pg_technology .technologySection .ttl {
	border-right-color: var(--txtColor, var(--keyColor));
}

.pg_technology .technologySection .ttl .label {
	background-color: var(--txtColor, var(--keyColor));
}

.pg_technology .technologySection .box02 {
	background-color: var(--bgColor, var(--bg--blue));
}

.pg_technology .technologySection .ttl_m:before {
	background: linear-gradient(45deg, var(--gradColor1), var(--gradColor2));
}

.pg_technology .technologySection .usageList a:before {
	border-color: var(--arrwColor, var(--blue--light));
}

.pg_technology .technologySection.tech01 {
	--txtColor: var(--keyColor);
	--bgColor: var(--bg--blue);
	--gradColor1: #2248d1;
	--gradColor2: #86dbff;
	--arrwColor: var(--blue--light);
}

.pg_technology .technologySection.tech02 {
	--txtColor: var(--green);
	--bgColor: rgb(0 155 116 / 6%);
	--gradColor1: #009b74;
	--gradColor2: #98c52f;
	--arrwColor: #86de99;
}

.pg_technology .technologySection.tech03 {
	--txtColor: var(--aqua);
	--bgColor: hsl(202, 100%, 98%);
	--gradColor1: #00bcd4;
	--gradColor2: #b3c6ff;
	--arrwColor: #83cddf;
}

@media print,
screen and (max-width: 991px) {
	.pg_technology .visualFrame {
		aspect-ratio: 4 / 1;
	}

	.pg_technology .technologySection .usageList>* {
		width: calc(calc(100% - 1.5em) / 2);
	}
}

@media print,
screen and (max-width: 767px) {
	.pg_technology .visualFrame {
		aspect-ratio: initial;
		padding: 3.5%;
	}

	.pg_technology .visualFrame .txt {
		font-size: max(1.26rem, 2vw);
		line-height: 1.65;
	}

	.pg_technology .technologySection .ttlWrap .ttl {
		border-right: 0;
	}

	.pg_technology .technologySection .usageList {
		display: flex;
		flex-direction: column;
		gap: 1em;
	}

	.pg_technology .technologySection .usageList>* {
		width: auto;
	}

	.pg_technology .technologySection .usageList a {
		padding: 1em 2em 1em 1em;
	}
}

/* catalog page styles*/
.pg_catalog .ttl {
	color: inherit;
}

.pg_catalog .sunply {
	color: var(--keyColor);
}

.pg_catalog .sumiceller {
	color: var(--green);
}

.pg_catalog .sumipanel {
	color: var(--aqua);
}

.pg_catalog .assist {
	color: var(--grape);
}

.pg_catalog .cutace {
	color: var(--blueberry);
}

.pg_catalog .backingsheet {
	color: var(--orange);
}

/* .pg_catalog .sumithermal {
	color: var(--gold);
} */


/* info page styles */
.pg_info .info__list-item {
	padding: 1em 0;
	border-bottom: 1px solid #ddd;
}

.pg_info .info__list-link {
	display: block;
	position: relative;
	padding-right: 2.5em;
}

.pg_info .info__list-link:before {
	content: "";
	display: block;
	position: absolute;
	right: .5em;
	top: 50%;
	width: .5em;
	height: .5em;
	border-top: 2px solid var(--keyColor);
	border-right: 2px solid var(--keyColor);
	transform: rotate(45deg) translateY(-50%);
}

.pg_info .info__list-title {
	display: block;
}

.pg_info .info__list-title .date {
	display: block;
	color: #808080;
	font-size: .9em;
	;
}

.pg_info .info__list-title .title {
	font-weight: bold;
}

.pg_info .info__list-summary {
	display: block;
	margin-top: 1em;
	font-weight: normal;
	font-size: .9em;
}

@media print,
screen and (min-width: 768px) {
	.pg_info .info__list-item {
		padding: 2em min(2%, 1em);
	}

	.pg_info .info__list-title {
		display: flex;
		gap: 2em;
	}

	.pg_info .info__list-title .date {
		flex: 0 0 7em;
	}

	.pg_info .info__list-title .title {
		flex: 1;
	}
}

/* Cookie agrement */
.cookie-agreement {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: min(4.5%, 2em);
	background: #fff;
	box-shadow: 0 -1px 7px rgba(0, 0, 0, .07);
	border-top: 1px solid #eee;
	z-index: 999;
	transition: transform .7s ease-out 0s;
	transform: translateY(100%);
}

.cc-window {
	padding: min(4.5%, 2em);
	box-shadow: 0 -1px 7px rgba(0, 0, 0, .07);
	border-top: 1px solid #eee;
	font-family: "游ゴシック体", YuGothic, 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, arial, helvetica, sans-serif !important;
}

.cc-btn:hover {
	opacity: 1;
	color: #014099 !important;
	background: white !important;
	text-decoration: none;
}

.cookie-agreement.active {
	transform: translateY(0);
	transition-delay: 1s;
}

.cookie-agreement__txt {
	color: #424242;
	font-size: .96em;
}

.cookie-agreement__btnwrap {
	display: flex;
	gap: 1.5em;
	justify-content: center;
	align-items: center;
	margin: 1em auto 0;
}

.cc-compliance {
	display: flex;
	gap: 1.5em;
	justify-content: center;
	align-items: center;
	margin: 1em auto 0;
}

.cookie-agreement .btn,
.cc-btn {
	display: grid;
	place-items: center;
	padding: .8em .5em;
	flex: 1;
	margin: 0;
	max-width: 10em;
	height: 100%;
	line-height: 1.3;
}

.cookie-agreement .btn:before {
	display: none;
}

.cookie-agreement .btn_setting {
	border-color: transparent;
}

.cookie-agreement .btn_setting:hover {
	background: #f0f0f0;
	color: var(--keyColor);
}


@media print,
screen and (min-width: 768px) {
	.cookie-agreement__wrapper {
		align-items: center;
		gap: 3em;
	}

	.cookie-agreement__btnwrap {
		margin: 0;
		min-width: 20em;
	}

	.cookie-agreement .btn {
		font-size: 1.5rem;
	}
}

/* --------------------------------------------------
  ********** LESS THAN 991px WIDTH **********
  -------------------------------------------------- */
@media print,
screen and (max-width: 991px) {
	body {
		font-size: 15px;
	}

	.pc {
		display: none;
	}

	.tab,
	.tab.sp,
	.tab.sp2 {
		display: block !important;
	}

	.tab-block {
		display: block;
	}

	/* header */
	header {
		height: 75px;
	}

	header .logo {
		width: max(180px, 24%);
		font-size: 1em;
	}

	.gnav .menu {
		gap: 3%;
	}

	.gnav .menu>li>a {
		letter-spacing: 0;
		font-size: min(1.7vw, 1.5rem);
	}

	.gnav .menu>li>.btn_contact {
		width: auto;
		font-size: min(1.6vw, 1.4rem)
	}

	.gnav .subMenu {
		top: 75px;
	}

	footer {
		font-size: .9em;
	}

	.content {
		margin-top: 75px;
		padding-bottom: 60px;
	}

	.section {
		padding: 45px 0;
	}

	.section .article+.article {
		margin-top: 45px;
	}

	.directoryFrame {
		padding-block: 1em;
	}

	/* --------------------------------------------------
	  INDEX STYLES
	  -------------------------------------------------- */
	.pg_top .ttl_top {
		font-size: 32px;
	}

	.pg_top .ttl_top .sub {
		font-size: .4em;
	}




	/* --------------------------------------------------
	  LOWER PAGE STYLES
	  -------------------------------------------------- */
	.ttl {
		/*font-size: 22px; */
	}

	.ttl_s {
		font-size: 20px;
	}

	.pg_lower .content {
		font-size: 15px;
	}
}

/* *************************************************************
   LESS THAN width 767px
**************************************************************** */
@media print,
screen and (max-width: 767px) {
	body {
		/* font-size: 13px; */
		font-size: 14px;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	.pc,
	.tab,
	.pc.tab,
	.pc.sp2,
	.tab.sp2,
	sp2 {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

	.sp-mt0 {
		margin-top: 0 !important;
	}

	.sp-mb0 {
		margin-bottom: 0 !important;
	}

	.sp-ml0 {
		margin-left: 0 !important;
	}

	.sp-mr0 {
		margin-right: 0 !important;
	}


	.sp-pt0 {
		padding-top: 0 !important;
	}

	.sp-pb0 {
		padding-bottom: 0 !important;
	}

	.sp-pl0 {
		padding-left: 0 !important;
	}

	.sp-pr0 {
		padding-right: 0 !important;
	}

	.sp-pl5 {
		padding-left: 5px !important;
	}

	.sp-pl10 {
		padding-left: 10px !important;
	}

	.sp-pl1em {
		padding-left: 1em !important;
	}

	.sp-mt1em {
		margin-top: 1em !important;
	}

	.sp-mt2em {
		margin-top: 2em !important;
	}

	.sp-mt3em {
		margin-top: 3em !important;
	}

	.sp-m-auto {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.sp-font_s {
		/* font-size: 11px; */
		font-size: 13px;
	}


	/* ===== FLEX BOX ===== */
	.sp-colWrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.sp-colWrap.sp-rtl {
		flex-direction: row-reverse;
	}

	.sp-colWrap.sp-col {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.sp-colWrap.sp-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.sp-colWrap.sp-col-rev {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.sp-colWrap.sp-boxAlign-left {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.sp-colWrap.sp-boxAlign-right {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.sp-colWrap.sp-boxAlign-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.sp-colWrap.sp-alin-center {
		align-items: center;
	}

	.sp-colWrap.sp-col2>* {
		width: 50%;
	}

	.sp-colWrap.sp-col3>* {
		width: 33.33%;
	}

	/* ===== end - FLEX BOX ===== */

	table:not(.sp-table) th,
	table:not(.sp-table) td,
	table.tab-table:not(.sp-table) th,
	table.tab-table:not(.sp-table) td {
		display: block;
		width: 100% !important;
		border-bottom: 0;
	}

	table:not(.sp-table) th {
		padding: 8px 8px 4px;
		font-weight: bold;
		border-bottom: 0;
	}

	table:not(.sp-table) td {
		padding: 15px 1em;
		border-top: 0;
	}

	table.sp-table th,
	table.sp-table td {
		padding: 8px;
		font-weight: normal;
	}

	.sp-text-center {
		text-align: center !important;
	}

	.sp-text-left {
		text-align: left !important;
	}

	.sp-text-right {
		text-align: right !important;
	}

	.sp-block {
		display: block !important;
	}

	.sp-in-block {
		display: inline-block !important;
	}

	.sp-inline {
		display: inline !important;
	}

	.commonTbl {
		border-bottom: 1px solid #ccc;
		font-size: .9em;
	}

	.commonList.list_dot>li:before,
	.commonList.list_dot>.li:before {
		top: calc(.6em + 5px);
		left: 5px;
	}

	.ol>li {
		padding-left: 1.9em;
		line-height: 1.6;
		margin: 0 0 1.2em;
	}

	.ol>li:before {
		top: .25em;
		font-size: .85em;
	}

	input[type="text"].sp-max,
	input[type="tel"].sp-max,
	input[type="email"].sp-max,
	select.sp-max,
	textarea.sp-max {
		width: 100%;
	}


	header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		padding: 0;
		height: 55px;
		/* z-index: 30; */
	}

	header>.container {
		height: 55px;
	}

	header .container>.colWrap {
		height: auto;
	}

	header .container {
		padding: 0 15px;
	}

	header .logo {
		position: relative;
		height: 55px;
		display: flex;
		align-items: center;
		align-content: center;
	}

	.header:before {
		content: "";
		display: block;
		position: fixed;
		width: 100%;
		height: 100%;
		background: rgb(0 0 0 / 50%);
		visibility: hidden;
		pointer-events: none;
		transition: opacity .25s ease-out;
		opacity: 0;
		z-index: -1;
	}

	.header:has(.gnav.open):before {
		visibility: visible;
		opacity: 1;
		z-index: 1;
	}

	.menuBtn,
	.gnav .closeBtn {
		position: fixed;
		top: 8px;
	}

	.gnav {
		position: fixed;
		overflow: hidden;
		top: 0;
		left: auto;
		right: 0;
		margin: 0;
		padding: 0;
		width: min(90%, 315px);
		height: 100vh;
		overflow-y: auto;
		background: #fff;
		-webkit-overflow-scrolling: touch;
		-webkit-transition: transform .25s ease-out;
		transition: transform .25s ease-out;
		transform: translateX(100%);
		z-index: 100;
	}

	.gnav nav {
		display: block;
		margin: 0;
		padding: 55px 2em 0;
		width: 100%;
		height: 100%;
		max-width: 100%;
		overflow-y: auto;
		background: none;
		border: 0;
	}

	.gnav .menu {
		display: block;
		position: relative;
		margin: 0 auto;
		padding: 0;
		max-width: initial;
		height: auto;
	}

	.gnav .menu>li {
		display: block;
		position: relative;
		overflow: hidden;
		margin: 0;
		border-bottom: 1px solid rgba(0, 0, 0, .3);
	}

	.gnav .menu>li.hasChild {
		padding-right: 40px;
	}

	.gnav .menu>li:before {
		display: none;
	}

	.gnav .menu>li.hasChild:before,
	.gnav .menu>li.hasChild:after,
	.gnav .menu>li.hasChild:before,
	.gnav .menu>li.hasChild:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		top: 1.8em;
		right: 0.5em;
		left: auto;
		width: 12px;
		height: 2px;
		background: #ddd;
		transition: transform 0.3s ease-out;
		transform: none;
	}

	.gnav .menu>li.hasChild:after,
	.gnav .menu>li.hasChild:after {
		transform: rotate(90deg);
	}

	.gnav .menu>li.hasChild.open:after,
	.gnav .menu>li.hasChild.open:after {
		transform: rotate(0deg);
	}

	.gnav .menu>li.hasChild>a:before,
	.gnav .menu>li.hasChild>a:after,
	.gnav .menu>li.hasChild>a:before,
	.gnav .menu>li.hasChild>a :after {
		display: none;
	}

	.gnav .menu>li:first-child>a,
	.gnav .menu>li:first-child>span {
		border-top: 0;
	}

	.gnav .menu>li>a,
	.gnav .menu>li>span {
		display: block;
		position: relative;
		padding: 1em .05em;
		font-size: 1em;
		line-height: 1.3;
		text-decoration: none;
		text-align: left;
	}

	.gnav .menu>li>a:before,
	.gnav .menu>li>span:before {
		display: none;
	}

	.gnav .menu>li>a:after {
		content: "";
		box-sizing: border-box;
		display: block;
		position: absolute;
		right: .85em;
		top: 50%;
		width: 6px;
		height: 6px;
		border-right: 2px solid #ccc;
		border-top: 2px solid #ccc;
		transform: translateY(-50%) rotate(45deg);
	}

	.gnav .menu>li>span:before,
	.gnav .menu>li>span:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0.5em;
		left: auto;
		width: 12px;
		height: 2px;
		background: #fff;
		transition: transform .3s ease-out;
		transform: none;
	}

	.gnav .menu>li.hasChild>span:after {
		transform: rotate(90deg);
	}

	.gnav .menu>li.hasChild.open>span:after {
		transform: rotate(0deg);
	}

	.gnav .menu>li:first-child>a,
	.gnav .menu>li:first-child>span {
		border-top: 0;
	}

	.gnav .menu>li:last-child {
		border-bottom: 0;
	}

	.gnav .menu>li>.btn_contact {
		font-size: 1.3rem;
		margin: 1.5em auto 0;
		padding: 1em;
	}

	.gnav .menu>li>.btn_contact:after {
		right: 1.25em;
		border-color: rgb(128 160 204);
	}

	.gnav.open {
		transform: translateX(0);
		box-shadow: -1px 0 5px rgba(0, 0, 0, .3);
	}

	/* subMenu */
	.gnav .subMenu {
		position: relative;
		top: 0;
		left: 0;
		transition-duration: .5s;
		background: transparent;
		margin-right: -40px;

		display: grid;
		grid-template-rows: 0fr;
		transition: .5s grid-template-rows ease;
	}

	.gnav .hasChild.open>.subMenu {
		grid-template-rows: 1fr;
	}

	.gnav .subMenu_inner {
		padding: 0;
		overflow: hidden;
		width: 100%;
	}

	.gnav .subMenu .submenu {
		max-height: initial;
		display: block;
		width: initial;
		padding-bottom: 1em;
		transition: none;
	}

	.gnav .subMenu .submenu li {
		padding: 0;
	}

	.gnav .subMenu .submenu li>a,
	.gnav .subMenu .submenu li>span {
		display: block;
		position: relative;
		font-size: 1em;
	}

	.gnav .subMenu .submenu li>a {
		padding-right: 1em;
	}

	.gnav .subMenu .submenu li>a:after {
		right: .3em;
	}

	.gnav .hasChild>* {
		overflow: hidden;
	}

	.pageTop {
		width: 40px;
		right: 15px;
		transform: translateY(50%);
	}

	.pageTop a {
		width: 40px;
		padding: 38px 0 0;
	}

	/* footer */
	footer {
		font-size: 1em;
		;
	}

	footer .footer-logo {
		width: 220px;
		margin: 0 auto;
	}

	footer .footer-address {
		text-align: center;
		margin: 1em 0 0;
		font-size: .94em;
		letter-spacing: .02em;
	}

	footer .fnavFrame .fnav {
		margin: 2.5em auto 0;
	}

	footer .fnavFrame .fnav-item+.fnav-item {
		margin-top: 2em;
	}

	footer .fnavFrame .fnav-link {
		font-size: 1.1em;
		;
	}

	footer .fnavFrame .fnav_sub {
		font-size: 1em;
	}

	footer .fnavFrame .fnav_sub li a {
		padding-block: 0;
	}

	footer .copyright {
		font-size: 10px;
		padding-block: 1.25em;
	}

	.content {
		margin-top: 55px;
		padding-bottom: 45px;
	}

	.section {
		padding: 30px 0;
	}

	.section .article+.article {
		margin-top: 35px;
	}


	.btn {
		padding: 16px 10px;
		font-size: 14px;
		letter-spacing: 0;
	}

	.btn_input>input {
		padding: 12px 10px;
		font-size: 15px;
	}

	.btn.in-block {
		padding: 16px 15px;
	}

	.btn.right {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}

	.btn_lined {
		padding: 1.5em .5em;
	}

	/* --------------------------------------------------
	  INDEX STYLES
	  -------------------------------------------------- */
	.pg_top .ttl_top {
		font-size: 28px;
	}


	/* --------------------------------------------------
	  LOWER PAGE STYLES
	  -------------------------------------------------- */
	.pg_lower .ttlSection {
		padding: 1.3em 0;
	}

	.pgTitle .ttl_ja {
		font-size: 11px;
	}


	.pgTitle+.lead {
		width: fit-content;
		margin: 1em auto 0;
		text-align: left;
		font-size: min(3vw, 1.4rem);
		letter-spacing: .025em;
	}

	.ttl_block {
		margin: 10px auto 0;
		height: 12px;
	}

	.ttl_block span {
		width: 12px;
		height: 12px;
	}

	.ttl {
		margin: 0 0 .85em;
		font-size: 1.3em;
	}

	.ttl:before {
		width: 6px;
		border-radius: 3px;
	}

	.ttl_idx {
		margin-bottom: 1.75em;
		padding: .5em .5em .5em 3.5em;
		font-size: 17px;
		line-height: 1.2;
	}

	.ttl_idx:before {
		width: 4.25em;
	}

	.ttl_idx>.idx {
		font-size: 1.4em;
		width: 1.5em;
	}

	.ttl_m {
		font-size: 17px;
		margin-bottom: 1em;
	}

	.ttl_s {
		font-size: 16px;
	}

	.ttl_xs {
		font-size: 15px;
	}

	.pg_lower .btnFrame.colWrap:not(.sp-colWrap) .btn+.btn {
		margin: 0 auto;
		margin-top: 20px;
	}


	/* ----- NEWS STYLES ----- */
	.pg_lower .newsSection .newsFrame li {
		font-size: 1em;
		padding: 10px 0;
	}

	.pg_lower .newsSection .newsFrame li .date {
		margin: 0 0 7px;
		font-weight: bold;
	}

	.pg_lower .newsSection .newsFrame li .txt {
		width: auto;
	}

	.pg_lower .newsSection .btnFrame {
		margin: 30px auto 0;
	}

}

@media print,
screen and (max-width: 575px) {

	.colWrap.sp1-block,
	.tab-colWrap.sp1-block,
	.sp-colWrap.sp1-block {
		display: block;
	}

	.colWrap.sp1-block>*,
	.tab-colWrap.sp1-block>*,
	.sp-colWrap.sp1-block>* {
		width: 100%;
	}

	.sp1-text-left {
		text-align: left;
	}

	.sp1-text-right {
		text-align: right;
	}

	.sp1-text-center {
		text-align: center;
	}

	.pg_lower .btnFrame.colWrap.sp1-block .btn+.btn {
		margin: 0 auto;
		margin-top: 20px;
	}
}

@media print,
screen and (max-width: 424px) {

	.sp2,
	.pc.sp2,
	.tab.sp2,
	.sp.sp2 {
		display: block !important;
	}

	.colWrap.sp2-block,
	.tab-colWrap.sp2-block,
	.sp-colWrap.sp2-block {
		display: block;
	}

	.colWrap.sp2-block>*,
	.tab-colWrap.sp2-block>*,
	.sp-colWrap.sp2-block>* {
		width: 100%;
	}

	.commonList.sp2-block>.tr,
	.commonList.sp2-block>.tr .th,
	.commonList.sp2-block>.tr .td {
		display: block;
	}

	.commonList.sp2-block>.tr .th {
		display: block;
		padding-bottom: 0;
	}

	.commonList.sp2-block>.tr .td {
		padding-top: 0;
	}

	.sp2-text-left {
		text-align: left;
	}

	.sp2-text-right {
		text-align: right;
	}

	.sp2-text-center {
		text-align: center;
	}

	.sp2-pl0 {
		padding-left: 0 !important;
	}


	/* --------------------------------------------------
	  LOWER PAGE STYLES
	  -------------------------------------------------- */

}


@media print,
screen and (max-width: 365px) {
	header .container {
		padding: 0 10px;
	}

	header .logo {
		max-width: 190px;
	}

	header .logo a br.sp {
		display: none !important;
	}
}

@media print {
	header.fixed {
		position: absolute !important;
	}

	footer,
	.menuBtn,
	.gnav,
	.pageTop {
		display: none !important;
	}

	.fadeIn,
	.fadein,
	.fadeInUp,
	.fadeinup,
	.slideIn,
	.fadeInZoom {
		opacity: 1 !important;
		display: block;
		transition: none !important;
		transform: none !important;
	}

	.btn {
		display: none;
	}

	.pg_top .topicsSection,
	.pg_top .topicsSection .ttl,
	.pg_top .topicsSection a {
		background: none;
		color: #000;
	}

	.addressBox .in-flex {
		display: inline-block;
	}

	.page1 {
		zoom: .56;
		-webkit-print-color-adjust: exact;
	}
}


/* IE10以上 */
@media print and (-ms-high-contrast: none) {

	/* @pageの指定いらないかも */
	@page page1 {
		size: A4;
		margin: 12.7mm 9.7mm;
	}

	.page1 {
		zoom: 1.8;
		width: 1200px;
		transform: scale(0.5);
		transform-origin: 0 0;
		page: page1;
	}
}