:root {
	--font-color: #222222;
	--font-gray: #8B8B8B;
	
	--main-color: #1D2089;
	--main-color-50: #1D208980;
	--main-color-20: #1D208933;
	--bright-color: #3237E4;
	--pale-color: #8E8FC4;
	
	--sub-color: #B4BFC7;
	--sub-red: #FF0000;
	--sub-red-dark: #B70000;
	
	--gray-color: #AFAFAF;
	--border-color: #DBDBDB;
	
	--bg-color: #F4F4F4;
	--bg-gray: #E3E3E3;
	--bg-pale: #DFDFE6;

	--font-text: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--font-en: "Montserrat", sans-serif;
	--font-num: "Zen Dots", sans-serif;

	--fontsize-33: clamp(28px, 1.7vw, 33px);
	--fontsize-28: clamp(23px, 1.5vw, 28px);
	--fontsize-25: clamp(21px, 1.3vw, 25px);
	--fontsize-22: 22px;
	--fontsize-20: 20px;
	--fontsize-19: 19px;
	--fontsize-18: 18px;
	--fontsize-17: 17px;
	--fontsize-16: 16px;
	--fontsize-15: 15px;
	--fontsize-14: 14px;
	--fontsize-13: 13px;

	--trans-fast: .25s ease;
	--trans-base: .5s ease;
}

*, *::before, *::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}
input, button, textarea, select {
	font: inherit;
}
button{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
	color: var(--font-color);
	padding: 0;
}
ol,ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
legend, menu{
	padding: 0;
}
a {
	text-decoration: none;
	color: var(--font-color);
}
p, li, dd {
	overflow-wrap: break-word;
	text-align: justify;
}
html[lang="en"] p,
html[lang="en"] li,
html[lang="en"] dd {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
	font-weight: 500;
	line-height: 1.6;
	font-style: normal;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
body {
	font-family: var(--font-text);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	color: var(--font-color);
	font-weight: 500;
	font-style: normal;
	font-size: var(--fontsize-16);
	background-color: var(--bg-color);
}

/* vegas が付ける will-change を無効化 */
.vegas-slide,
.vegas-slide-inner {
	will-change: auto !important;
}

/* scroll-hint */
.scroll-hint-icon-wrap{
	z-index: 5 !important;
}
.scroll-hint {
	overflow-x: auto !important;
	overflow-y: hidden !important;
}
.scroll-hint-icon {
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%,-50%) !important;
}

/* 
global header
----------------------------------------------------------- */
.header {
	width:95%;
	position:fixed;
	top: 20px;
	left:50%;
	z-index:998;
	transform: translateX(-50%);
	transition: top var(--trans-base);
}
.header.is-white {
	top: 12px;
}
.header__nav {
	width:100%;
	background-color: rgba(255,255,255,0.97);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.06);
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items: center;
	border-radius: 40px;
	padding-inline: clamp(20px, 2vw, 40px);
	transition: background-color var(--trans-base), padding var(--trans-base);
}
.header.is-white .header__nav {
	background-color: transparent;
	padding-inline: 0;
}
.header__logo img{
	height: 28px;
	width: auto;
}
.header__right{
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;
}
.header__links {
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;
	gap: clamp(15px, 1.8vw, 35px);
}
.header__item{
	text-align: center;
	position: relative;
}
.header__link{
	display: inline-block;
	padding: 20px 0;
	font-weight: 800;
	position: relative;
	z-index: 0;
	transition: color var(--trans-base);
}
.header.is-white .header__link {
	color: #fff;
}
.header__link::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 4px;
	width: 100%;
	border-radius: 4px 4px 0 0;
	background-color: var(--main-color);
	transition: opacity var(--trans-base);
	opacity: 0;
}
.header.is-white .header__link::before {
	opacity: 0 !important;
}
.header__link:hover::before,
.header__link.is-current::before{
	opacity: 1;
}
.header__contacts{
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;
	gap: 8px;
	margin-left: clamp(15px, 1.8vw, 35px);
}
.header__contacts-link{
	padding: 8px 24px;
	line-height: 1.6;
	font-weight: 800;
	color: #fff;
	border: 1px solid #000000;
	border-radius: 50px;
	transition: color var(--trans-base), background-color var(--trans-base);
	position: relative;
	z-index: 0;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	
}
.header__contacts-item--tel .header__contacts-link{
	border: 1px solid var(--sub-red-dark);
	font-size: var(--fontsize-20);
	padding-block: 5px;
}
.header__contacts-link:hover{
	color: #000;
	background-color: #fff;
}
.header__contacts-item--tel .header__contacts-link:hover{
	color: var(--sub-red-dark);
}
.header__contacts-link::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(to right, #000000, #4B4B4B);
	z-index: -1;
	transition: opacity var(--trans-base);
}
.header__contacts-item--tel .header__contacts-link::before{
	background-image: linear-gradient(to right, var(--sub-red-dark), var(--sub-red));
}
.header__contacts-link:hover::before{
	opacity: 0;
}
.header__contacts-link svg{
	height: 20px;
	width: auto;
}
.header__contacts-link svg path{
	transition: fill var(--trans-base);
}
.header__contacts-link:hover svg path{
	fill: #000;
}
.header__contacts-item--tel .header__contacts-link:hover svg path{
	fill: var(--sub-red-dark);
}
.header__submenu {
	position: absolute;
	top: 68px;
	left: 50%;
	transform: translateX(-50%) scaleY(0);
	transform-origin: center top;
	z-index: 8999;
	display:block;
	background-color: #fff;
	width: 190px;
	border: 1px solid var(--main-color);
	box-sizing: border-box;
	transition: transform var(--trans-base);
}
.header__item--has-children:hover .header__submenu {
	transform: translateX(-50%) scaleY(1);
}
.header__submenu-item {
	font-size: var(--fontsize-14);
}
.header__submenu-item:not(:last-child){
	border-bottom: 1px dashed var(--main-color);
	transition: background-color var(--trans-base);
}
.header__submenu-item:hover {
	background-color: var(--pale-color);
}
.header__submenu-link{
	padding: 10px;
	width: 100%;
	display: block;
}

/* 
sp nav
----------------------------------------------------------- */
.spnav__overlay{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 998;
	display: none;
}
.spnav__overlay.is-open{
	display: inherit;
}
.spnav__toggle {
	position:fixed;
	top: 20px;
	right: 30px;
	z-index:999;
	text-align:center;
	cursor:pointer;
	display:none;
	border: none;
	background-color: transparent;
	width: 50px;
	height: 50px;
	transition: top var(--trans-base), right var(--trans-base);
}
.spnav__toggle.is-white {
	top: 15px;
	right: 10px;
}
.spnav__toggle-lines,
.spnav__toggle-lines span {
	display: inline-block;
	transition: transform var(--trans-base);
	box-sizing: border-box;
}
.spnav__toggle-lines {
	position: relative;
	width: 30px;
	height: 18px;
}
.spnav__toggle-lines span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--main-color);
	border-radius: 20px;
}
.spnav__toggle-lines span:nth-of-type(1) {
	top: 0;
}
.spnav__toggle-lines span:nth-of-type(2) {
	top: 8px;
}
.spnav__toggle-lines span:nth-of-type(3) {
	bottom: 0;
}
.spnav__toggle.is-white .spnav__toggle-lines span {
	background-color: #fff;
}
.spnav__toggle.is-open .spnav__toggle-lines span:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
}
.spnav__toggle.is-open .spnav__toggle-lines span:nth-of-type(2) {
	left: 60%;
	opacity: 0;
	animation: spnav-toggle-line .8s forwards;
}
.spnav__toggle.is-open .spnav__toggle-lines :nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}
@-webkit-keyframes spnav-toggle-line {
	100% {
		height: 0;
	}
}
.spnav {
	position:relative;
	z-index:999;
}
.spnav__wrap {
	-webkit-backdrop-filter: blur(20px) brightness(1.2);
	backdrop-filter: blur(20px) brightness(1.2);
	background-color: rgba(255,255,255,0.8);
	width:300px;
	max-width:80%;
	height:100%;
	transition: opacity var(--trans-fast), transform var(--trans-fast);
	position:fixed;
	top:0;
	left: 0;
	transform: translateX(-100%);
	overflow-y:scroll;
	opacity: 0;
}
.spnav.is-open .spnav__wrap {
	opacity: 1;
	transform: translateX(0);
}
.spnav__logo {
	width:100%;
	padding:15px;
	text-align:center;
}
.spnav__logo img {
	height: 40px;
	width: auto;
	margin:0 auto;
}
.spnav__item:first-child {
	border-top:1px solid var(--main-color-50);
}
.spnav__item {
	border-bottom:1px solid var(--main-color-50);
	font-size:0.9rem;
	line-height: 1.2;
}
.spnav__item:last-child {
	border-bottom:1px solid var(--main-color-50);
}
.spnav__link-icon{
	display: inline-block;
}
.spnav__link-icon svg{
	width: 13px;
	height: auto;
	margin-right: 8px;
}
.spnav__link-icon svg path{
	fill: var(--font-color);
}
.spnav__link,
.spnav__submenu-link{
	padding: 15px;
	display: block;
	position: relative;
	z-index: 1;
}
.spnav__arrow {
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-left: solid 1px var(--main-color-50);
	z-index: 2;
	cursor: pointer;
}
.spnav__arrow::before {
	content: '';
	display: block;
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent var(--main-color);
	border-width: 4.5px 0px 4.5px 7.79px;
}
.spnav__accordion-btn{
	padding: 15px 0 15px 15px;
	position: relative;
	width: 100%;
	border: none;
	background-color: transparent;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
}
.spnav__accordion-btn::after{
	content: "";
	position: absolute;
	right: 39px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 40px;
	background-color: var(--main-color-50);
}
.spnav__accordion-btn span{
	display: block;
	width: 40px;
	height: 20px;
	position: relative;
	right: 0;
}
.spnav__accordion-btn span::before,
.spnav__accordion-btn span::after {
	content: '';
	display: block;
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--main-color);
	border-radius: 50vh;
	transition: transform var(--trans-fast), background-color var(--trans-fast);
}
.spnav__accordion-btn span::before {
	width: 16px;
	height: 1px;
}
.spnav__accordion-btn span::after {
	height: 16px;
	width: 1px;
}
.spnav__item--has-children.is-open .spnav__accordion-btn span::before,
.spnav__item--has-children.is-open .spnav__accordion-btn span::after {
	transform: translate(-50%, -50%) rotate(45deg);
	background-color: var(--main-color);
}
.spnav__item--has-link{
	display: flex;
	flex-wrap: wrap;
}
.spnav__item--has-link .spnav__accordion-btn{
	width: 40px;
	padding-left: 0;
}
.spnav__link--has-link{
	width: calc(100% - 40px);
}
.spnav__submenu{
	width: 100%;
	background: rgba(255,255,255,0.5);
	display: none;
}
.spnav__submenu-item {
	border-top:1px solid var(--main-color-20);
}
.spnav__submenu-item:last-child {
	border-bottom:none;
}
.spnav__submenu-link{
	padding: 15px;
	display: block;
	position: relative;
	z-index: 1;
	padding-left: 35px;
}
.spnav__submenu-link::before {
	content: '';
	display: block;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent var(--main-color);
	border-width: 4.5px 0px 4.5px 7.79px;
	margin-right: 10px;
}

/* 
検索
----------------------------------------------------------- */ 
#feas-searchform-0{
	width: min(100%,1000px);
	display: flex;
	gap: 12px;
	line-height: 1.5;
}
#feas_0_0 {
	flex: 1;
	width: calc(100% - 92px);
	border: none;
	padding: 12px 24px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 4px;
}
#feas-submit-button-0.feas-submit-button {
	width: 80px;
	border-radius: 4px;
	border: 1px solid var(--pale-color);
	background-color: var(--main-color);
	color: #fff;
	transition: background-color var(--trans-base);
	cursor: pointer;
}
#feas-submit-button-0.feas-submit-button:hover {
	background-color: var(--pale-color);
}

/* 
utility
----------------------------------------------------------- */ 

/* メディアクエリ出し分け */
.u-pc {
	display: block !important;
}
br.u-pc {
	display: inline !important;
}
.u-pc-1024,
.u-pc-767,
.u-pc-480 {
	display: none;
}
br.u-pc-1024,
br.u-pc-767,
br.u-pc-480 {
	display: none;
}

/* animation */
.u-fade,
.u-fade-up,
.u-fade-left,
.u-fade-right{
	opacity: .01;
	transition: opacity var(--trans-base), transform var(--trans-base);
	transform: none;
}
.u-fade-up{
	transform: translate3d(0, 100px, 0);
}
.u-fade-left{
	transform: translate3d(-50px, 0, 0);
}
.u-fade-right{
	transform: translate3d(50px, 0, 0);
}
.is-active.u-fade,
.is-active .u-fade,
.is-active.u-fade-up,
.is-active .u-fade-up,
.is-active.u-fade-left,
.is-active .u-fade-left,
.is-active.u-fade-right,
.is-active .u-fade-right {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* animation delay */
.u-delay-1 {
	transition-delay: 0.25s;
}
.u-delay-2 {
	transition-delay: 0.5s;
}
.u-delay-3 {
	transition-delay: 0.75s;
}
@media (prefers-reduced-motion: reduce) {
	.u-fade,
	.u-fade-up,
	.u-fade-left,
	.u-fade-right,
	.js-fadeup {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* 汎用アンカーリンク */
.u-anchor{
	padding-top: clamp(80px, 7.8vw, 150px);
	margin-top: calc(clamp(80px, 7.8vw, 150px) * -1);
}

/* text-align */
.u-text-center{
	text-align: center;
}
.u-text-left{
	text-align: left;
}
.u-text-right{
	text-align: right;
}

/* text link*/
.u-text-link{
	text-decoration: underline;
	transition: opacity var(--trans-base);
}
.u-text-link:hover{
	opacity: 0.7;
}

/* text color */
.u-color-main{
	color: var(--main-color);
	font-weight: 500;
}
.u-color-gray{
	color: var(--font-gray);
}

/* bg */
.u-bg-pale{
	background-color: var(--pale-color);
}

/* img */
.u-img-maru{
	border-radius: 10px;
}

/* youtube埋め込み */
.u-youtube {
	position: relative;
	width: 100%;
	max-width: 340px;
	aspect-ratio: 16 / 9;
}
.u-youtube iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* 
layout
----------------------------------------------------------- */ 
.l-main{
	overflow: hidden;
	position: relative;
}
.l-inner{
	width: min(90%,1345px);
	margin-inline:auto;
}
.l-inner--wide{
	width: min(90%,1540px);
	margin-inline:auto;
}
.l-padding{
	padding-block: clamp(50px, 6.8vw, 130px);
}
.l-padding--compact{
	padding-block: clamp(40px, 4.9vw, 95px);
}

/* 投稿一覧 sidebarありレイアウト */
.l-post-wrap{
	display:flex;
	gap: 5%;
	flex-wrap:wrap;
}
.l-post-wrap-main{
	width:70%;
}
.l-post-wrap-side {
	width: 25%;
}
/* 
component
----------------------------------------------------------- */ 

/* ぱんくず */
.c-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	font-size: var(--fontsize-14);
}
.c-breadcrumb__item:not(:last-child)::after {
	content: '/';
	margin: 0 0.3rem;
}
.c-breadcrumb__item a {
	color: var(--gray-color);
}
.c-breadcrumb__item:last-child a {
	color: var(--font-color);
}

/* topに戻るボタン */
.c-top-back{
	height: 45px;
	width: 45px;
	border-radius: 50%;
	background-color: var(--main-color);
	position: fixed;
	right: 15px;
	bottom: 15px;
	display: grid;
	place-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--trans-base), visibility var(--trans-base);
}
.c-top-back.is-visible{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.c-top-back img{
	height: 13px;
	width: auto;
}

/* 追従ボタン */
.c-fixd-button{
	position: fixed;
	right: clamp(20px, 2vw, 40px);
	bottom: calc(clamp(15px, 1.6vw, 30px) + 50px);
	padding: 18px clamp(20px, 2.6vw, 50px);
	background-color: var(--sub-red-dark);
	border-radius: 10px;
	color: #fff;
	background-image: url("../img/common/fixd-button-bg.png");
	background-position: center right 25px;
	background-repeat: no-repeat;
	background-size: auto 100%;
	z-index: 10000;
}
.c-fixd-button__close{
	height: 23px;
	width: 23px;
	position: absolute;
	right: 9px;
	top: 10px;
	transition: opacity var(--trans-base);
}
.c-fixd-button__close:hover{
	opacity: 0.7;
}
.c-fixd-button__close svg{
	height: 100%;
	width: auto;
}
.c-fixd-button__title{
	text-align: center;
	font-weight: 700;
}
.c-fixd-button__link{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: var(--fontsize-33);
	font-weight: 800;
	transition: opacity var(--trans-base);
	color: #fff;
}
.c-fixd-button__link:hover{
	opacity: 0.7;
}
.c-fixd-button__link svg{
	height: 25px;
	width: auto;
}
.c-fixd-button__sub{
	font-weight: 600;
	font-size: 12px;
	text-align: center;
}

/* 追従ボタン sp */
.c-fixd-button-sp{
	display: none !important;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 998;
	width: 100%;
}
.c-fixd-button-sp__list{
	display: flex;
}
.c-fixd-button-sp__item{
	background-color: var(--sub-red-dark);
	color: #fff;
	background-image: url("../img/common/fixd-button-bg-sp.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	line-height: 1.6;
}
.c-fixd-button-sp__item--contact{
	background-image: linear-gradient(to right, #000000, #4B4B4B); 
}
.c-fixd-button-sp__item:not(.c-fixd-button-sp__item--contact){
	flex: 1;
}
.c-fixd-button-sp__link{
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	height: 100%;
	padding: 13px 20px;
	font-size: var(--fontsize-18);
	font-weight: 800;
}
.c-fixd-button-sp__item--contact .c-fixd-button-sp__link{
	font-size: var(--fontsize-14);
}
.c-fixd-button-sp__icon{
	margin-right: 8px;
}
.c-fixd-button-sp__icon svg{
	height: 13px;
	width: auto;
}
.c-fixd-button-sp__title{
	font-size: 10px;
	font-weight: 700;
	text-align: center;
	width: 100%;
}

/* 本文エリア */
.c-page-contents a {
	text-decoration: underline;
	color: inherit;
	font-weight: inherit;
}
.c-page-contents h1,
.c-page-contents h2,
.c-page-contents h3,
.c-page-contents h4,
.c-page-contents h5,
.c-page-contents h6{
	line-height: inherit;
	font-weight: bold;
}
.c-page-contents ol{
	list-style: decimal;
}
.c-page-contents ul{
	list-style: disc;
}
.c-page-contents ol li,
.c-page-contents ul li {
	margin-left: 1em;
}
.c-page-contents .wp-block-file__button{
	color: #fff;
	text-decoration: none;
}

/* text list */
.c-normal-decimal{
	list-style: decimal;
}
.c-normal-disc{
	list-style: none;
}
.c-normal-decimal > li{
	margin-left: 1em;
}
.c-normal-decimal > li:not(:last-child){
	margin-bottom: 8px;
}
.c-normal-disc > li{
	padding-left: 1em;
	position: relative;
}
.c-normal-disc > li:not(:last-child){
	margin-bottom: 8px;
}
.c-normal-disc > li::before{
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

/* ボタン */
.c-more-btn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: min(100%,300px);
	color: #fff;
	padding: 8px 11px 8px 37px;
	position: relative;
	background-image: linear-gradient(to right, var(--main-color), var(--bright-color));
	border-radius: 50px;
	font-size: var(--fontsize-19);
	font-weight: 600;
	line-height: 1.6;
}
.c-more-btn__circle{
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #fff;
	background-color: #fff;
	position: relative;
	transition: background-color var(--trans-base);
}
.c-more-btn:hover .c-more-btn__circle{
	background-color: transparent;
}
.c-more-btn__circle::before {
	content: "→";
	width: 30px;
	height: 30px;
	border-radius: 15px;
	padding-bottom: 3px;
	position: absolute;
	background-color: var(--bright-color);
	top: 50%;
	left: 50%;
	transition: transform var(--trans-base), color var(--trans-base);
	font-size: 12px;
	transform: translate(-50%,-50%) scale(0.28);
	text-align: center;
	color: transparent;
	display: grid;
	place-content: center;
	place-items: center center;
	line-height: 1;
}
.c-more-btn:hover .c-more-btn__circle::before {
	transform: translate(-50%,-50%) scale(1);
	color: #fff;
}
.c-dl-btn{
	border: 1px solid var(--main-color);
	border-radius: 4px;
	padding: 8px 40px 8px 30px;
	position: relative;
	z-index: 0;
	background-color: var(--main-color);
	font-weight: 700;
	font-size: var(--fontsize-14);
	color: #fff;
	display: block;
	transition: background-color var(--trans-base), color var(--trans-base);
}
a.c-dl-btn:hover,
a:hover .c-dl-btn{
	background-color: #fff;
	color: var(--main-color);
}
.c-dl-btn::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	width: 20px;
	background-color: var(--sub-red);
}
.c-dl-btn__icon{
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
}
.c-dl-btn__icon svg{
	height: 15px;
	width: auto;
}
.c-dl-btn__icon svg path{
	transition: fill var(--trans-base);
}
a:hover .c-dl-btn__icon svg path{
	fill: var(--main-color);
}

/* 見出し */
.c-maru-title{
	font-size: var(--fontsize-16);
	font-weight: 600;
	margin-bottom: 12px;
	position: relative;
	padding-left: 15px;
}
.c-maru-title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	padding: 5.5px;
	border-radius: 10px;
	background-image: linear-gradient(to bottom, #1D2089, #3237E4);
}
.c-title-center{
	text-align: center;
	font-size: var(--fontsize-33);
	font-weight: 800;
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.c-title-center__en{
	display: block;
	color: var(--main-color);
	font-size: var(--fontsize-16);
	font-family: var(--font-en);
	font-weight: 700;
}
.c-title-center--flex{
	display: flex;
	align-items: center;
	column-gap: 30px;
	flex-wrap: wrap;
}
.c-title-center--flex .c-title-center__en{
	color: #AFAFAF;
}
.c-left-title{
	font-weight: 800;
	padding-left: 24px;
	color: var(--main-color);
	margin-bottom: 28px;
	border-left: 2px solid var(--main-color);
	position: relative;
}
.c-left-title::before{
	content: "";
	position: absolute;
	left: -2px;
	top: 0;
	width: 2px;
	height: 16px;
	background-color: var(--sub-red);
}
.c-left-title__en{
	display: block;
	font-weight: 700;
	font-family: var(--font-en);
	color: var(--pale-color);
	font-size: var(--fontsize-14);
}
.c-dot-title{
	text-align: center;
	font-weight: 700;
	font-size: clamp(23px, 1.7vw, 33px);
	padding-bottom: clamp(25px, 2.6vw, 50px);
	margin-bottom: clamp(25px, 2.6vw, 50px);
	background-image: repeating-linear-gradient(90deg, #9a9a9a, #9a9a9a 2px, transparent 2px, transparent 10px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 6px;
}
.c-dot-title__en{
	display: block;
	font-family: var(--font-en);
	color: var(--main-color);
	font-size: var(--fontsize-14);
	margin-top: 5px;
}
.c-sub-title{
	font-weight: 700;
	font-size: clamp(28px, 2vw, 40px);
	padding-bottom: clamp(15px, 1.6vw, 30px);
	margin-bottom: clamp(30px, 3.4vw, 65px);
	background-image: repeating-linear-gradient(90deg, #D5D5D5, #D5D5D5 2px, transparent 2px, transparent 10px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 6px;
}
.c-sub-title--dark{
	background-image: repeating-linear-gradient(90deg, #9a9a9a, #9a9a9a 2px, transparent 2px, transparent 10px);
}
.c-sub-title--mini{
	font-size: var(--fontsize-25);
	background-image: none;
	padding-bottom: 0;
	margin-bottom: clamp(15px, 1.6vw, 30px);
}
.c-sub-title--white{
	color: #fff;
}
.c-sub-title--noline{
	background-image: none;
}
.c-sub-title__ja{
	display: block;
	width: fit-content;
	position: relative;
	z-index: 0;
	padding-right: 30px;
}
.c-sub-title__ja::before{
	content: "01";
	position: absolute;
	right: 0;
	top: 5px;
	font-family: var(--font-num);
	color: var(--sub-red);
	font-size: 10px;
	font-weight: 400;
}
.c-sub-title__en{
	display: block;
	font-family: var(--font-en);
	color: var(--gray-color);
	font-size: var(--fontsize-14);
}
.c-sub-title--white .c-sub-title__en{
	color: var(--pale-color);
}
.c-sub-h3{
	margin-bottom: 30px;
	font-weight: 700;
	font-size: clamp(22px, 1.7vw, 33px);
}
.c-sub-h3 > span{
	color: var(--main-color);
}
.c-sub-title--tac .c-sub-title__ja,
.c-sub-title--tac .c-sub-title__en{
	text-align: center;
}
.c-sub-title--tac .c-sub-title__en{
	margin-inline: auto;
}
.c-sub-title--tac{
	text-align: center;
}
.c-sub-title--enonly{
	padding-bottom: 0;
	background-image: none;
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.c-sub-title--enonly .c-sub-title__en{
	width: fit-content;
	position: relative;
	z-index: 0;
	padding-right: 30px;
}
.c-sub-title--enonly .c-sub-title__en::before{
	content: "01";
	position: absolute;
	right: 0;
	top: 5px;
	font-family: var(--font-num);
	color: var(--sub-red);
	font-size: 10px;
	font-weight: 400;
}
.c-sub-title--enonly .c-sub-h3{
	display: block;
	margin-bottom: 0;
	margin-top: clamp(20px, 2vw, 40px);
}
.c-center-title{
	text-align: center;
	font-weight: 700;
	font-size: clamp(23px, 1.7vw, 33px);
	color: var(--main-color);
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.c-center-title__en{
	display: block;
	font-size: var(--fontsize-14);
	color: var(--gray-color);
}
.c-bg-title{
	margin-bottom: 30px;
	background-color: var(--main-color);
	padding: 14px clamp(30px, 2.6vw, 50px);
	position: relative;
	z-index: 0;
	color: #fff;
	font-weight: 700;
	font-size: var(--fontsize-18);
	border-radius: 4px;
	display: flex;
	align-items: center;
	column-gap: clamp(10px, 1vw, 20px);
	flex-wrap: wrap;
}
.c-bg-title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	width: clamp(20px, 1.6vw, 30px);
	background-color: var(--sub-red);
}
.c-bg-title__sub{
	display: block;
	color: rgba(255,255,255,0.5);
	font-size: var(--fontsize-14);
	font-family: var(--font-en);
}

/* リンク */
.c-map-link{
	display: inline-block;
	color: var(--main-color);
	transition: opacity var(--trans-base);
	font-size: var(--fontsize-14);
}
.c-map-link:hover{
	opacity: 0.7;
}
.c-map-link__icon{
	display: inline-block;
	margin: 4px 5px 0;
}
.c-map-link__icon svg path{
	fill: var(--main-color);
}

/*背景の線*/
.c-bg-line{
	position: relative;
	z-index: 0;
}
.c-bg-line::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: block;
	width: min(90%,1345px);
	height: 100%;
	border-left: 1px solid #D3D3D3;
	border-right: 1px solid #D3D3D3;
	z-index: -1;
}
.c-bg-line::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 1px;
	height: 100%;
	background-color: #D3D3D3;
	z-index: -1;
}

/* box */
.c-gray-box{
	background-color: #EAEAEA;
	border-radius: 4px;
	padding: 24px 30px;
	border: 1px solid var(--border-color);
}

/* text */
.c-note-text{
	padding-left: 26px;
	position: relative;
	z-index: 0;
	color: var(--sub-red-dark);
	margin-bottom: 12px;
	line-height: 1.5;
}
.c-note-text::before{
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 16px;
	height: 16px;
	background: url("../img/common/icon-note.svg") center center / contain no-repeat;
}

/* ページナビ */
.c-page-nav__list{
	display: grid;
	grid-column-gap: 28px;
	grid-row-gap: 16px;
	grid-template-columns: repeat(3, 1fr);
}
.c-page-nav__list--2col{
	grid-template-columns: repeat(2, 1fr);
}
.c-page-nav__list--1col{
	grid-template-columns: repeat(1, 1fr) !important;
}
.c-page-nav__link{
	display: block;
	padding: 12px 20px 12px 24px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	transition: background-color var(--trans-base), color var(--trans-base);
	height: 100%;
}
.c-page-nav__link:hover{
	background-color: var(--main-color);
	color: #fff;
}
.c-page-nav__text{
	font-weight: 700;
	font-size: var(--fontsize-15);
	flex: 1;
}
.c-page-nav__icon {
	width: 16px;
}
.c-page-nav__icon svg{
	width: 100%;
	height: auto;
}
.c-page-nav__icon svg path{
	transition: fill var(--trans-base);
}
.c-page-nav__link:hover .c-page-nav__icon svg path{
	fill: #fff;
}
.c-page-nav__arrow{
	width: 8px;
}
.c-page-nav__arrow svg{
	width: 100%;
	height: auto;
}
.c-page-nav__arrow svg path{
	transition: fill var(--trans-base);
}
.c-page-nav__link:hover .c-page-nav__arrow svg path{
	fill: #fff;
}

/* 基本のdl */
.c-definition-list{
	line-height: 1.6;
	border: 1px solid var(--border-color);
}
.c-definition-list__row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.c-definition-list__term{
	width: clamp(180px, 15.6vw, 300px);
	background-color: #EAEAEA;
	padding: 16px 24px;
	font-weight: 700;
	border-right: 1px solid var(--border-color);
	font-size: var(--fontsize-15);
	display: flex;
	align-items: center;
}
.c-definition-list__description{
	flex: 1;
	background-color: var(--bg-color);
	padding: 16px 24px;
	font-size: var(--fontsize-15);
}
.c-definition-list__row:not(:last-of-type) .c-definition-list__term,
.c-definition-list__row:not(:last-of-type) .c-definition-list__description{
	border-bottom: 1px solid var(--border-color);
}
.c-definition-list__mid{
	font-weight: 700;
	color: var(--font-gray);
	display: block;
	margin-bottom: 5px;
}
.c-definition-list--1col .c-definition-list__term{
	width: 100%;
	border-bottom: 1px solid var(--border-color);
	justify-content: center;
	border-right: none;
}
.c-definition-list--1col .c-definition-list__description{
	flex: auto;
	width: 100%;
}
.c-border-list{
	line-height: 1.6;
}
.c-border-list__row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.c-border-list__row:not(:last-of-type){
	margin-bottom: 30px;
}
.c-border-list__term{
	width: clamp(140px, 9.9vw, 190px);
	font-weight: 700;
	border-bottom: 1px solid var(--gray-color);
	padding-bottom: 30px;
}
.c-border-list__description{
	flex: 1;
	padding-inline: clamp(10px, 2vw, 40px);
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border-color);
}

/* table */
.c-table {
	width: 100%;
}
.c-table table {
	width: 100%;
	table-layout: fixed;
	line-height: 1.6;
	border: 1px solid var(--border-color);
	font-size: var(--fontsize-15);
}
.c-table__term {
	padding: 16px 24px;
	font-weight: 700;
	vertical-align: middle;
	background-color: #EAEAEA;
	border-bottom: 1px solid var(--border-color);
	width: clamp(180px, 15.6vw, 300px);
	text-align: left;
}
.c-table__cell {
	vertical-align: middle;
	border-left: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	background-color: var(--bg-color);
	padding: 16px 24px;
	word-break: break-all;
}
tr:last-of-type .c-table__term,
tr:last-of-type .c-table__cell {
	border-bottom: none;
}

/* 汎用accordion */
.c-accordion__trigger{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
	position: relative;
	padding: 0;
}
.c-accordion__item{
	background-color: #DEDEE6;
	border-radius: 4px;
}
.c-accordion__trigger{
	padding: 23px 30px;
}
.c-accordion__title{
	padding-right: 35px;
	font-size: var(--fontsize-18);
	font-weight: 700;
}
.c-accordion__icon{
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
}
.c-accordion__icon::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%,-50%);
	transition: transform var(--trans-base);
	background: url("../img/common/accordion-arrow.svg") center center / contain no-repeat;
}
.c-accordion__trigger.is-open .c-accordion__icon::before {
	transform: translate(-50%,-50%) scale(1,-1);
}
.c-accordion__panel[hidden] { 
	display: none;
}
.c-accordion__panel {
	overflow: hidden;
	padding: 23px 30px;
	border-top: 1px dashed var(--pale-color);
}
.c-accordion__inner {
	transform-origin: top;
	transform: scaleY(0);
	transition: transform var(--trans-base);
}
.c-accordion__panel.is-open .c-accordion__inner {
	transform: scaleY(1);
}

/* 汎用Modal */
.c-modal-trigger{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
}
.c-modal {
	position: fixed;
	inset: 0;
	z-index: 10005;
	backface-visibility: hidden;
}
.c-modal[hidden] {
	display: none;
}
.c-modal__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	transition: opacity var(--trans-base);
}
.c-modal__dialog {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
.c-modal__content {
	pointer-events: auto;
	position: relative;
	opacity: 0;
	transform: scale(.5);
	transition: opacity var(--trans-base), transform var(--trans-base);
	width: min(90%,1200px);
	max-height: 90vh;
}
.c-modal__scroll {
	background-color: var(--bg-color);
	padding: clamp(25px, 4.1vw, 80px) clamp(25px, 3.6vw, 70px);
	overflow-y: scroll;
	width: 100%;
	max-height: 90vh;
}
.c-modal__close{
	position: absolute;
	right: 3px;
	top: 3px;
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	text-align: center;
	line-height: 1;
	width: fit-content;
	z-index: 999;
}
.c-modal.is-open .c-modal__overlay {
	opacity: 1;
}
.c-modal.is-open .c-modal__content {
	opacity: 1;
	transform: scale(1);
}
.c-modal.is-closing .c-modal__content {
	opacity: 0;
	transform: scale(.5);
}
body.is-modal-open {
	overflow: hidden;
}

/* 汎用tab */
.c-tab__btn{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
}
.c-tab__content {
	display: none;
}
.c-tab__content.is-active {
	display: block;
}

/* 下層ページFV */
.c-sub-fv {
	padding-block: clamp(120px, 10.4vw, 200px) clamp(100px, 10.9vw, 210px);
	background: url("../img/common/sub-fv.png") center bottom / cover no-repeat;
}
.c-sub-fv__title {
	color: #fff;
	width: min(90%,1540px);
	margin-inline: auto;
}
.c-sub-fv__en{
	display: block;
	font-family: var(--font-en);
	font-size: clamp(40px, 4.1vw, 80px);
	line-height: 1.2;
	margin-bottom: 15px;
	font-weight: 700;
}
.c-sub-fv__ja{
	display: block;
	font-size: var(--fontsize-20);
	font-weight: 800;
	padding-left: 30px;
	position: relative;
	z-index: 0;
}
.c-sub-fv__ja::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: var(--sub-red);
}

/* 投稿用 sidebar */
.c-widget__title {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	padding-left: 15px;
	padding-bottom: 12px;
	font-weight: 600;
}
.c-widget__title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 10px;
	height: 10px;
	border-radius: 6px;
	background-image: linear-gradient(to bottom, #1D2089, #3237E4);
}
.c-sidebar__list {
	margin-bottom: 30px;
}
.c-sidebar__list.children {
	margin-bottom: 0;
}
.c-sidebar__item:not(:last-child) .c-sidebar__link {
	margin-bottom: 10px;
}
.c-sidebar__list > li:not(:last-child) > a {
	margin-bottom: 10px;
}
.c-sidebar__link {
	width: 100%;
	font-size: 0.9rem;
	display: block;
	padding-left: 25px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
	transition: color var(--trans-base);
}
.c-sidebar__link::before{
	content: "▶";
	font-size: 8px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: var(--main-color);
}
.c-sidebar__link:hover{
	color: var(--main-color);
}
.c-sidebar__select {
	width: 100%;
	font-size: var(--fontsize-15);
	padding: 10px 15px;
	border: 0;
	background-color: #fff;
	border-radius: 3px;
	border: 1px solid var(--border-color);
}

/* 投稿一覧 カテゴリータイトル */
.c-archive-title {
	font-size: clamp(20px, 1.6vw, 30px);
	margin:0 auto 15px;
	width:100%;
	font-weight: 500;
}
.c-archive-title__label {
	font-size: var(--fontsize-20);
}

/* 投稿一覧 カテゴリーリスト */
.c-archive-cat {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 10px;
	background: var(--pale-color);
	position:relative;
	margin-bottom: 30px;
}
.c-archive-cat__label{
	font-weight: 500;
	margin-right: 5px;
}
.c-archive-cat-list{
	display: flex;
	gap: 10px;
	white-space: nowrap;
}
.c-archive-cat-list__link{
	background-color: var(--main-color);
	padding: 3px 10px;
	font-size: var(--fontsize-14);
	color: #fff;
	transition: background-color var(--trans-base), color var(--trans-base);
}
.c-archive-cat-list__link:hover{
	background-color: #fff;
	color: var(--main-color);	
}

/* 投稿用 日時 カテゴリー */
.c-post-meta{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-items: center;
}
.c-post-meta__date{
	font-size: var(--fontsize-14);
	font-family: var(--font-num);
	width: 120px;
	display: block;
	font-weight: 400;
	color: var(--main-color);
}
.c-post-meta__cats{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.c-post-meta__cat{
	padding: 3px 10px 3px 28px;
	font-size: var(--fontsize-15);
	display: inline-block;
	background-color: var(--main-color);
	border-radius: 4px;
	transition: color var(--trans-base), background-color var(--trans-base);
	line-height: 1.4;
	position: relative;
	color: #fff;
}
.c-post-meta__cats--mini .c-post-meta__cat{
	font-size: 12px;
	padding: 3px 10px 3px 23px;
}
.c-post-meta__cat::before{
	content: "＃";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	line-height: 1;
	transition: color var(--trans-base);
}
a.c-post-meta__cat:hover{
	background-color: #fff;
	color: var(--main-color);
}
a.c-post-meta__cat:hover:hover::before{
	color: var(--main-color);
}
.c-cats-gray{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.c-cats-gray__cat{
	padding: 2px 10px 2px 25px;
	font-size: var(--fontsize-14);
	display: block;
	background-color: #EAEAEA;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	transition: color var(--trans-base), background-color var(--trans-base);
	line-height: 1.4;
	position: relative;
	color: var(--font-gray);
}
.c-cats-gray__cat::before{
	content: "＃";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}
a.c-cats-gray__cat:hover{
	background-color: var(--font-gray);
	color: #fff;
}

/* 投稿一覧用 grid */
.c-post-grid{
	display: grid;
	gap: clamp(25px, 2.6vw, 50px);
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: clamp(30px, 2.3vw, 45px);
}
.c-post-card{
	position: relative;
	background-color: var(--pale-color);
}
.c-post-card__article{
	height: 100%;
}
.c-post-card__link{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.c-post-card__img{
	overflow: hidden;
}
.c-post-card__img img{
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	height: auto;
	transition: transform var(--trans-base);
}
.c-post-card:hover .c-post-card__img img{
	transform: scale(1.1);
}
.c-post-card__main{
	padding: 20px;
}
.c-post-card__title{
	font-size: var(--fontsize-16);
	margin-bottom: 5px;
	font-weight: 600;
	transition: color var(--trans-base);
}
.c-post-card:hover .c-post-card__title{
	color: var(--main-color);
}
.c-post-card__text{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--gray-color);
	font-size: var(--fontsize-14);
	line-height: 1.5;
	margin-bottom: 10px;
}
.c-post-card__more{
	text-align: center;
	padding-top: 15px;
	line-height: 1.3;
	border-top: 1px solid var(--border-color);
	font-size: var(--fontsize-14);
	color: var(--gray-color);
	transition: color var(--trans-base);
	display: block;
	padding-bottom: 20px;
	margin: auto 20px 0;
}
.c-post-card:hover .c-post-card__more{
	color: var(--main-color);
}

/* 投稿一覧 list */
.c-post-list{
	margin-bottom: clamp(30px, 2.3vw, 45px);
}
.c-post-list-item{
	background-color: #fff;
	border: 1px solid var(--border-color);
	margin-bottom: 20px;
	position: relative;
	transition: background-color var(--trans-base);
}
.c-post-list-item:hover{
	background-color: var(--pale-color);
}
.c-post-list-item__link{
	padding: 20px;
	display: block;
}
.c-post-list-item__title{
	font-size:var(--fontsize-20);
	background: none;
	padding-left: 0;
	text-align: justify;
	margin-bottom: 5px;
}
.c-post-list-item__text{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--gray-color);
	line-height: 1.5;
}
.c-archive .c-post-meta{
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid var(--border-color);
}

/* single page */
.c-single__title {
	font-size:var(--fontsize-22);
	font-weight: 600;
	line-height: 1.5;
	padding-bottom: 12px;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--border-color);
	position: relative;
	text-align: justify;
}
.c-single__title::before{
	content: "";
	background-color: var(--main-color);
	bottom: -2px;
	position: absolute;
	left:0;
	width: clamp(50px, 6.5vw, 125px);
	height: 2px;
}
.c-single .c-post-meta{
	margin-bottom: 40px;
}

/* pagination archive */
.nav-links{
	display:flex;
	justify-content:center;
	align-items:flex-end;
	gap:10px;
}
.nav-links .page-numbers{
	display:grid;
	place-items:center;
	width:45px;
	height:45px;
	background-color:#fff;
	border:1px solid var(--border-color);
	border-radius:3px;
	margin:0;
	transition: background-color var(--trans-fast);
}
.nav-links .page-numbers.current,
.nav-links a.page-numbers:hover{
	background-color: #D5D5D5;
}

/* pagination single */
.c-post-nav{
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
	gap:4%;
	margin-top:clamp(30px,2.3vw,45px);
}
.c-post-nav__link{
	display:block;
	background-color:#fff;
	border:1px solid var(--border-color);
	padding: 10px;
	font-size: var(--fontsize-15);
	line-height:1.5;
	transition:background-color var(--trans-fast);
	width:calc(50% - 2%);
	position: relative;
}
.c-post-nav__link:hover{
	background-color:var(--pale-color);
}
.c-post-nav__link--prev{ 
	padding-left:65px;
}
.c-post-nav__link--next{
	padding-right:65px;
	margin-left: auto;
}
.c-post-nav__link--prev::before,
.c-post-nav__link--next::before{
	content:"";
	width:40px;
	height:40px;
	background:var(--main-color);
	border-radius:50%;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
}
.c-post-nav__link--prev::before{ 
	left:10px;
}
.c-post-nav__link--next::before{ 
	right:10px;
}
.c-post-nav__link--prev::after,
.c-post-nav__link--next::after{
	content:"";
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:0;
	height:0;
	border-top:5px solid transparent;
	border-bottom:5px solid transparent;
}
.c-post-nav__link--prev::after{
	left:25px;
	border-right:7px solid #fff;
}
.c-post-nav__link--next::after{
	right:25px;
	border-left:7px solid #fff;
}
.c-post-nav__label{
	font-size:11px;
	display: block;
}
.c-post-nav__link--next .c-post-nav__label{ 
	text-align:right;
}
.c-post-nav__title{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: var(--fontsize-14);
}
.c-post-nav__link--next .c-post-nav__title{ 
	text-align:right;
}

/* 商品カテゴリ */
.c-products-cat{
	display: grid;
	grid-column-gap: 30px;
	grid-row-gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}
.c-products-cat__link{
	display: block;
	padding: 15px 20px;
	border-radius: 4px;
	background-color: #fff;
	transition: background-color var(--trans-base), color var(--trans-base);
	font-weight: 700;
	position: relative;
}
.c-products-cat__link:hover{
	background-color: var(--main-color);
	color: #fff;
}
.c-products-cat__icon{
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.c-products-cat__icon svg{
	height: 35px;
	width: auto;
}
.c-products-cat__icon svg path,
.c-products-cat__icon svg rect{
	transition: fill var(--trans-base);
	fill: var(--main-color);
}
.c-products-cat__link:hover .c-products-cat__icon svg path,
.c-products-cat__link:hover .c-products-cat__icon svg rect{
	fill: #fff;
}
.c-products-cat__text{
	display: block;
	padding-inline: 50px 20px;
}
.c-products-cat__arrow{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.c-products-cat__arrow svg{
	height: 8px;
	width: auto;
}
.c-products-cat__arrow svg path{
	transition: fill var(--trans-base);
}
.c-products-cat__link:hover .c-products-cat__arrow svg path{
	fill: var(--sub-red);
}
/*.c-products-cat__item:last-child{
	grid-column: 1/4;
}
.c-products-cat__item:last-child .c-products-cat__link{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block: 10px;
}
.c-products-cat__item:last-child .c-products-cat__icon{
	display: block;
	margin-right: 14px;
	position: relative;
	left: auto;
	top: auto;
	transform: translate(0);
}
.c-products-cat__item:last-child .c-products-cat__text{
	padding: 0;
}
.c-products-cat__item:last-child .c-products-cat__arrow{
	display: none;
}*/

/* 
sections
----------------------------------------------------------- */
.s-contact{
	padding-block: clamp(110px, 10.9vw, 215px) clamp(50px, 6.8vw, 130px);
	position: relative;
	z-index: 0;
}
.s-contact__box{
	background-color: #fff;
	padding: clamp(30px, 3.4vw, 65px) 5%;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(0,0,0,0.04);
	width: min(90%,1800px);
	margin-inline: auto;
}
.s-contact__inner{
	width: min(100%,1345px);
	margin-inline: auto;
}
.s-contact__en {
	display:flex;
	position:absolute;
	left: 0;
	top: 20px;
	z-index: -1;
}
.s-contact__en li {
	animation:text-loop 180s linear 0s infinite;
	line-height: 1;
	font-size: clamp(80px, 12.5vw, 240px);
	color: var(--bg-gray);
	white-space: nowrap;
	font-family: var(--font-en);
	padding-right: 0.5em;
	font-weight: 700;
}
.s-contact__en li:nth-child(2) {
	animation:text-loop2 180s linear -90s infinite;
}
@keyframes text-loop {
	0% {
		transform:translateX(100%)
	}
	to {
		transform:translateX(-100%)
	}
}
@keyframes text-loop2 {
	0% {
		transform:translateX(0)
	}
	to {
		transform:translateX(-200%)
	}
}
.s-contact__list{
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(2, 1fr);
}
.s-contact__item{
	border: 4px solid var(--main-color);
	border-radius: 10px;
	padding: clamp(20px, 2vw, 40px);
	background-color: var(--main-color);
	color: #fff;
	display: grid;
	place-content: center;
	place-items: center center;
}
.s-contact__item--web{
	background-color: #fff;
	color: var(--main-color);
}
.s-contact__title{
	text-align: center;
	font-size: var(--fontsize-20);
	font-weight: 700;
}
.s-contact__item--web .s-contact__title{
	padding-left: 35px;
	margin-bottom: 10px;
	background: url("../img/common/icon-paper-airplane.svg") center left / 20px auto no-repeat;
}
.s-contact__tel{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	font-size: clamp(28px, 2.6vw, 50px);
	font-weight: 800;
	color: #fff;
	transition: opacity var(--trans-base);
}
.s-contact__tel:hover{
	opacity: 0.7;
}
.s-contact__tel-icon svg{
	height: clamp(25px, 1.8vw, 35px);
	width: auto;
}
.s-contact__sub{
	color: var(--pale-color);
	text-align: center;
	font-size: var(--fontsize-15);
}
.s-contact__item .c-more-btn{
	margin: clamp(10px, 1.6vw, 30px) auto 0;
}

/* 
footer
----------------------------------------------------------- */
.footer {
	background: url("../img/common/footer-bg.jpg") center center / cover no-repeat;
	padding-block: clamp(40px, 4.9vw, 95px) clamp(30px, 2.9vw, 55px);
	color: #fff;
	line-height: 1.6;
}
.footer__inner{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: min(90%,1730px);
	margin-inline: auto;
	gap: 20px;
}
.footer__logo{
	height: clamp(40px, 3.4vw, 65px);
	margin-bottom: 15px;
}
.footer__title{
	font-weight: 800;
	margin-bottom: 8px;
}
.footer__address{
	font-size: var(--fontsize-14);
	color: var(--pale-color);
	margin-bottom: 25px;
}
.footer__map{
	display: inline-block;
	color: #fff;
	transition: opacity var(--trans-base);
	font-size: var(--fontsize-14);
}
.footer__map:hover{
	opacity: 0.7;
}
.footer__map-icon{
	display: inline-block;
	margin: 4px 5px 0;
}
.footer__contacts-item:not(:last-child){
	margin-bottom: 16px;
}
.footer__contacts-link{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: min(100%,205px);
	font-weight: 800;
	padding: 6px 15px;
	border: 1px solid var(--pale-color);
	border-radius: 4px;
	background-color: #2F3292;
	transition: background-color var(--trans-base);
}
.footer__contacts-icon svg{
	width: 16px;
	height: auto;
	margin-right: 10px;
}
.footer__contacts-link:hover{
	background-color: var(--pale-color);
}
.footer__links{
	display: flex;
	justify-content: flex-end;
	gap: clamp(25px, 2.6vw, 50px);
	align-items: flex-start;
	margin-left: auto;
	flex-wrap: wrap;
}
.footer__sitemap{
	display: grid;
	grid-column-gap: clamp(15px, 2.6vw, 50px);
	grid-row-gap: clamp(15px, 1.6vw, 30px);
	grid-template-columns: repeat(3, 1fr);
}
.footer__sitemap-link{
	display: inline-block;
	padding-left: 30px;
	position: relative;
	transition: opacity var(--trans-base);
	color: #fff;
	font-weight: 800;
}
.footer__sitemap-link:hover{
	opacity: 0.7;
}
.footer__sitemap-link::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 10px;
	height: 8px;
	background: url("../img/common/red-arrow.svg") center center / contain no-repeat;
}
.footer__sns-item:not(:last-child){
	margin-bottom: 12px;
}
.footer__sns-item{
	transition: opacity var(--trans-base);
}
.footer__sns-item:hover{
	opacity: 0.7;
}
.footer__sns-item img{
	height: 44px;
	width: auto;
}
.footer__calendar{
	background-color: #fff;
	border-radius: 10px;
	padding: 18px 11px 11px 11px;
	width: clamp(330px, 20.8vw, 400px);
}
.footer__copyright {
	width: 100%;
	font-size: var(--fontsize-14);
	margin-top: clamp(30px, 4.9vw, 95px);
}
@media screen and (max-width: 1440px) {
	/* 
	header
	----------------------------------------------------------- */ 
	.header__contacts{
		position: fixed;
		top: 80px;
		right: 0;
		transition: top var(--trans-base);
	}
	.header.is-white .header__contacts{
		top: 70px;
	}
}
@media screen and (max-width: 1280px) {
	/* 
	component
	----------------------------------------------------------- */ 
	.c-sub-h3{
		margin-bottom: 20px;
	}
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer__links{
		gap: 30px;
	}
	.footer__sitemap{
		grid-column-gap: 20px;
	}
	
}
@media screen and (max-width: 1024px) {
	/* 
	header
	----------------------------------------------------------- */ 
	.header {
		top: 15px;
	}
	.header__nav {
		height: 60px;
	}
	.header__links {
		display: none;
	}
	.header__contacts{
		top: 70px;
	}
	/* 
	sp nuv
	----------------------------------------------------------- */
	.spnav__toggle {
		display: grid;
		place-content: center;
		place-items: center start;
	}
	/* 
	utility
	----------------------------------------------------------- */ 
	/* メディアクエリ出し分け */
	.u-pc,
	br.u-pc{
		display: none !important;
	}
	.u-pc-1024 {
		display: block !important;
	}
	br.u-pc-1024 {
		display: inline !important;
	}
	/* 
	component
	----------------------------------------------------------- */ 

	/* fixed button */
	.c-fixd-button__close{
		right: 3px;
		top: 3px;
	}

	/* 投稿一覧用 grid */
	.c-post-grid{
		grid-template-columns: repeat(2, 1fr);
	}

	/* ページナビ */
	.c-page-nav__list{
		gap: 12px;
		grid-template-columns: repeat(2, 1fr);
	}
	.c-page-nav__link{
		padding: 10px;
	}

	/* 見出し */
	.c-bg-title{
		margin-bottom: 20px;
	}

	/* dl */
	.c-border-list__row:not(:last-of-type){
		margin-bottom: 15px;
	}
	.c-border-list__term{
		padding-bottom: 15px;
	}
	.c-border-list__description{
		padding-bottom: 15px;
	}

	/* table */
	.c-table__term,
	.c-table__cell {
		width: 180px;
	}

	/* accordion */
	.c-accordion__trigger{
		padding: 15px 20px;
	}
	.c-accordion__panel {
		padding: 15px 20px;
	}
	.c-accordion__icon{
		right: 20px;
	}

	/* 商品カテゴリ */
	.c-products-cat{
		grid-column-gap: 20px;
		grid-row-gap: 15px;
		grid-template-columns: repeat(2, 1fr);
	}
	/*.c-products-cat__item:last-child{
		grid-column: 1/3;
	}*/

	/* 
	sections
	----------------------------------------------------------- */ 
	.s-contact__list{
		gap: 20px;
		grid-template-columns: repeat(1, 1fr);
	}
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer__sitemap{
		display: none;
	}
}
@media screen and (max-width:767px) {
	:root {
		--fontsize-33: 25px;
		--fontsize-28: 22px;
		--fontsize-25: 20px;
		--fontsize-22: 19px;
		--fontsize-20: 18px;
		--fontsize-19: 17px;
		--fontsize-18: 16px;
		--fontsize-17: 15.5px;
		--fontsize-16: 15px;
		--fontsize-15: 14px;
		--fontsize-14: 13px;
	}
	/* 
	header
	----------------------------------------------------------- */ 
	.header__logo img{
		padding-left: 10px;
	}
	.header__contacts{
		display: none !important;
	}
	/* 
	検索
	----------------------------------------------------------- */ 
	#feas_0_0 {
		padding: 12px;
	}
	/* 
	utility
	----------------------------------------------------------- */ 
	/* メディアクエリ出し分け */
	.u-pc-1024,
	br.u-pc-1024{
		display: none !important;
	}
	.u-pc-767 {
		display: block !important;
	}
	br.u-pc-767 {
		display: inline !important;
	}
	/* 
	layout
	----------------------------------------------------------- */ 
	/* 投稿一覧 sidebarありレイアウト */
	.l-post-wrap-main{
		width: 100%;
		margin: 0;
	}
	.l-post-wrap-side {
		width: 100%;
		margin-top: 40px;
	}
	/* 
	component
	----------------------------------------------------------- */ 

	/* topに戻るボタン */
	.c-top-back{
		display: none;
	}

	/* fixed button */
	.c-fixd-button{
		display: none !important;
	}
	.c-fixd-button-sp{
		display: block !important;
	}
	.c-fixd-button-sp__item--contact{
		width: 40%;
	}

	/* 投稿一覧用 grid */
	.c-post-grid{
		grid-template-columns: repeat(1, 1fr);
	}

	/* pagination */
	.c-post-nav{
		gap: 5px;
	}
	.c-post-nav__link--prev,
	.c-post-nav__link--next{
		width: 100%;
	}

	/* 基本のdl */
	.c-definition-list__term{
		padding: 12px;
		width: 100%;
		border-right: none;
	}
	.c-definition-list__description{
		padding: 12px;
		width: 100%;
	}
	.c-definition-list--1col .c-definition-list__term{
		justify-content: flex-start;
	}
	.c-border-list__term{
		width: 100%;
		border-bottom: none;
		padding: 0 10px 10px;
	}
	.c-border-list__description{
		width: 100%;
		flex: auto;
	}

	/* table */
	.c-table__term,
	.c-table__cell {
		padding: 12px;
	}

	/* 商品カテゴリ */
	.c-products-cat{
		grid-template-columns: repeat(1, 1fr);
	}
	/*.c-products-cat__item:last-child{
		grid-column: 1/2;
	}*/

	/* box */
	.c-gray-box{
		padding: 20px;
	}

	/* text */
	.c-note-text{
		margin-bottom: 5px;
	}
	.c-note-text::before{
		top: 4px;
	}
	
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer{
		padding-bottom: 90px;
	}
}
@media screen and (max-width:480px) {
	:root {
		--fontsize-33: 25px;
		--fontsize-28: 22px;
		--fontsize-25: 19px;
		--fontsize-22: 18px;
		--fontsize-20: 17px;
	}
	/* 
	header
	----------------------------------------------------------- */ 
	.header__logo img{
		height: 23px;
	}
	.header__nav {
		padding-inline: 10px;
	}
	.spnav__toggle {
		right: 15px;
	}
	/* 
	検索
	----------------------------------------------------------- */  
	#feas-searchform-0{
		gap: 8px;
	}
	#feas_0_0 {
		width: calc(100% - 68px);
	}
	#feas-submit-button-0.feas-submit-button {
		width: 60px;
	}
	/* 
	utility
	----------------------------------------------------------- */ 
	/* メディアクエリ出し分け */
	.u-pc-767,
	br.u-pc-767{
		display: none !important;
	}
	.u-pc-480 {
		display: block !important;
	}
	br.u-pc-480 {
		display: inline !important;
	}
	/* 
	component
	----------------------------------------------------------- */ 
	/* fixd button */
	.c-fixd-button-sp__item--contact{
		width: auto;
	}

	/* 下層ページFV */
	.c-sub-fv {
		background-image: url("../img/common/sub-fv-sp.png");
	}
	.c-sub-fv__en{
		margin-bottom: 5px;
	}
	.c-sub-fv__ja{
		padding-left: 20px;
	}

	/* ページナビ */
	.c-page-nav__list{
		grid-template-columns: repeat(1, 1fr) !important;
	}
	
	/* 投稿一覧 list */
	.c-post-list-item__img {
		width: 100%;
		margin: 0 auto 15px;
	}
	.c-post-list-item__main {
		width: 100%;
	}

	/* accordion */
	.c-accordion__trigger{
		padding: 15px;
	}
	.c-accordion__panel {
		padding: 15px;
	}
	.c-accordion__icon{
		right: 15px;
	}

	/* 
	sections
	----------------------------------------------------------- */
	.s-contact__item{
		padding: 15px;
	}
	.s-contact__title{
		font-size: 16px;
	}
	
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer__sns{
		display: flex;
		gap: 12px;
	}
	.footer__sns-item{
		margin: 0;
	}
	.footer__calendar{
		width: 100%;
	}
}