:root {
	--font-color: #142D50;
	--main-color: #10069F;
	--main-color-50: #EAAA0080;
	--main-color-20: #EAAA0033;
	--orange-color: #EAAA00;
	--sky-color: #37D0F5;
	--pale-color: #e6f7fd;
	--sub-color: #B4BFC7;
	--gray-color: #9D9D9D;
	--border-color: #E0E0E0;
	--bg-color: #E1E6EA;
	--bg-bright: #F7F8F9;

	--font-text: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--font-en: "Poppins", sans-serif;

	--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;

	--trans-base: .25s ease;
	--trans-slow: .6s ease;
	--trans-super: 1.2s 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);
}
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.5;
	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-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:100%;
}
.header__logo{
	position:fixed;
	z-index:998;
	top: 30px;
	left: clamp(15px, 3vw, 57px);
}
.header__logo img{
	height: clamp(45px, 3.4vw, 65px);
	width: auto;
}
.header__links{
	mix-blend-mode: exclusion;
	position:fixed;
	top: 10px;
	right: clamp(340px, 20.8vw, 400px);
	z-index:998;
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;
}
.header__item{
	margin: 0 clamp(10px, 1vw, 20px);
	position: relative;
}
.header__item.header__item--tel{
	margin: 0 0 0 10px;
	padding-left: clamp(15px, 1.6vw, 30px);
}
.header__item.header__item--tel::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 25px;
	border-left: 1px dashed #FCE6B5;
}
.header__link{
	display: inline-block;
	padding: 20px 0;
	transition: color var(--trans-base);
	color: #FCE6B5;
	font-weight: 800;
	font-size: var(--fontsize-17);
}
.header__link:hover{
	color: #B4B0E3;
}
.header__tel{
	line-height: 1.3;
}
.header__tel-label{
	display: block;
	font-size: var(--fontsize-14);
}
.header__tel-number{
	display: flex;
	align-items: center;
	font-size: var(--fontsize-19);
	font-family: var(--font-en);
}
.header__tel-icon{
	margin-right: 8px;
}
.header__tel-icon svg path{
	transition: fill var(--trans-base);
}
.header__tel:hover .header__tel-icon svg path{
	fill: #B4B0E3;
}
.header__right{
	position:fixed;
	top: 30px;
	right: clamp(15px, 2vw, 40px);
	z-index:998;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header__button{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6.5px;
	width: clamp(140px, 8.3vw, 160px);
	border-radius: 8px;
	color: #fff;
	font-size: var(--fontsize-16);
	font-weight: 700;
	transition: background-color var(--trans-base), color var(--trans-base);
}
.header__button:not(:last-child){
	margin-right: 12px;
}
.header__button:hover{
	background-color: #fff !important;
}
.header__button.header__button--recruit{
	background-color: var(--orange-color);
	border: 1px solid var(--orange-color);
	box-shadow: 0px 2px 0px 0px #F4E0AC;
}
.header__button.header__button--recruit:hover{
	color: var(--orange-color);
}
.header__button.header__button--contact{
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	box-shadow: 0px 2px 0px 0px #B4B0E3;
}
.header__button.header__button--contact:hover{
	color: var(--main-color);
}
.header__button-icon{
	margin-right: 8px;
}
.header__button.header__button--recruit .header__button-icon svg{
	height: 20px;
	width: auto;
}
.header__button.header__button--contact .header__button-icon svg{
	height: 15px;
	width: auto;
}
.header__button-icon svg path{
	margin-right: 8px;
	transition: fill var(--trans-base);
}
.header__button.header__button--recruit:hover .header__button-icon svg path{
	fill: var(--orange-color);
}
.header__button.header__button--contact:hover .header__button-icon svg path{
	fill: var(--main-color);
}
.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: 5px;
	right: 5px;
	z-index:999;
	text-align:center;
	cursor:pointer;
	display:none;
	border: none;
	background-color: transparent;
	width: 50px;
	height: 50px;
}
.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-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,
.spnav__submenu-link{
	padding: 15px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
}
.spnav__link-icon{
	display: block;
	height: 14px;
	width: auto;
	margin-right: 5px;
}
.spnav__link-icon svg{
	height: 100%;
	width: auto;
}
.spnav__link span {
	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__link span::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(--orange-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: 40px;
	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;
}

/* 
utility
----------------------------------------------------------- */ 

/* メディアクエリ出し分け */
.u-pc {
	display: block !important;
}
br.u-pc {
	display: inline !important;
}
.u-pc-1280,
.u-pc-1024,
.u-pc-767,
.u-pc-480 {
	display: none;
}
br.u-pc-1280,
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-super), transform var(--trans-super);
	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{
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}

/* text animation */
.u-animeleft {
	transform: translateX(-100%);
	transition: transform .6s, opacity .6s;
	transition-delay: .3s;
	display: inline-block;
	overflow: hidden;
	line-height: 1.1;
	vertical-align: top;
}
.is-active .u-animeleft {
	transform: translateX(0%);
}
.u-animeright {
	transform: translateX(100%);
	transition: transform .6s, opacity .6s;
	transition-delay: .3s;
	display: inline-block;
	overflow: hidden;
	line-height: 1.1;
	vertical-align: top;
}
.is-active .u-animeright {
	transform: translateX(0%);
}
@media (prefers-reduced-motion: reduce) {
	.u-animeleft,
	.u-animeright {
		transform: translateX(0) !important;
		opacity: 1 !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;
}
.u-arrow-link{
	position: relative;
	padding-left: 34px;
	font-weight: 700;
	font-size: var(--fontsize-18);
}
.u-arrow-link::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 18px;
	height: 16px;
	background: url("../img/common/arrow-link.svg") center center / contain no-repeat;
}
.u-arrow-link a{
	color: var(--orange-color);
	padding-left: 10px;
	text-decoration: underline;
	font-weight: 500;
	font-size: var(--fontsize-14);
	transition: opacity var(--trans-base);
}
.u-arrow-link a:hover{
	opacity: 0.7;
}

/* text color */
.u-color-main{
	color: var(--main-color);
	font-weight: 500;
}
.u-color-orange{
	color: var(--orange-color);
	font-weight: 500;
}

/* text */
.u-text-thin{
	font-weight: 500 !important;
}
.u-text-thin > p{
	font-weight: 500 !important;
}

/* bg */
.u-bg-pale{
	background-color: var(--pale-color);
}
.u-bg-bright{
	background-color: var(--bg-bright);
}

/* img */
.u-img-maru{
	border-radius: 4px;
}

/* margin */
.u-mb95{
	margin-bottom: clamp(40px, 4.9vw, 95px);
}
.u-mb110{
	margin-bottom: clamp(45px, 5.7vw, 110px)
}
.u-text-18{
	margin-bottom: 1.8em;
}
.u-mt16{
	margin-top: 1.6em;
}
.u-mt8{
	margin-top: 8px;
}

/* 
layout
----------------------------------------------------------- */ 
.l-main{
	overflow-x: hidden;
	position: relative;
}
.l-inner{
	width: min(90%,1200px);
	margin-inline:auto;
}
.l-padding{
	padding-block: clamp(50px, 6.8vw, 130px);
}
.l-padding--compact{
	padding-block: clamp(40px, 4.9vw, 95px);
}
.l-padding--medium{
	padding-block: clamp(40px, 4.9vw, 95px) clamp(50px, 6.8vw, 130px);
}
.l-padding--sub{
	padding-block: clamp(45px, 5.7vw, 110px);
}

/* 投稿一覧 sidebarありレイアウト */
.l-post-wrap{
	display:flex;
	gap: 5%;
	flex-wrap:wrap;
}
.l-post-wrap-main{
	width:70%;
}
.l-post-wrap-side {
	width: 25%;
}

/* flex */
.l-nomal-flex{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
}
.l-nomal-flex__img{
	width: 50%;
}
.l-nomal-flex__img img{
	width: 100%;
	height: auto;
}
.l-nomal-flex__text{
	width: 45%;
}

/* 
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;
	left: 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-fixed-button{
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 10000;
	padding: 9px 24px 9px 12px;
	background-color: rgba(255,255,255,0.4);
	-webkit-backdrop-filter: blur(15px) brightness(1.1);
	backdrop-filter: blur(15px) brightness(1.1);
	border: 1px solid rgba(255,255,225,0.7);
	transition: background-color var(--trans-base), border var(--trans-base), backdrop-filter var(--trans-base), opacity var(--trans-base);
	border-radius: 10px;
	display: flex;
	align-items: center;
}
.c-fixed-button.c-fixed-button--entry{
	background-color: #fff;
	-webkit-backdrop-filter: blur(0) brightness(0);
	backdrop-filter: blur(0) brightness(0);
}
.c-fixed-button:hover{
	background-color: rgba(234,170,0,0.4);
	border: 1px solid var(--orange-color);
	-webkit-backdrop-filter: blur(5px) brightness(1.1);
	backdrop-filter: blur(5px) brightness(1.1);
}
.c-fixed-button.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.c-fixed-button__img{
	height: clamp(45px, 3.4vw, 65px);
	width: auto;
	border-radius: 6px;
	margin-right: 25px;
}
.c-fixed-button__text{
	display: flex;
	align-items: center;
	line-height: 1.4;
}
.c-fixed-button__ja{
	font-weight: 800;
	font-size: var(--fontsize-18);
}
.c-fixed-button__en{
	display: block;
	font-size: var(--fontsize-14);
	font-family: var(--font-en);
	color: rgba(20,45,80,0.5);
	font-weight: 700;
}
.c-fixed-button.c-fixed-button--entry .c-fixed-button__en{
	color: var(--orange-color);
}
.c-fixed-button.c-fixed-button--entry:hover .c-fixed-button__en{
	color: rgba(20,45,80,0.5);
}
.c-fixed-button__arrow{
	display: block;
	margin-left: clamp(20px, 2vw, 40px);
}
.c-fixed-button__arrow svg{
	height: 23px;
	width: auto;
}
.c-fixed-button__arrow svg circle{
	transition: fill var(--trans-base);
}
.c-fixed-button.c-fixed-button--entry .c-fixed-button__arrow svg circle{
	fill: var(--orange-color);
}
.c-fixed-button:hover .c-fixed-button__arrow svg circle{
	fill: var(--orange-color);
}
.c-fixed-button.c-fixed-button--entry:hover .c-fixed-button__arrow svg circle{
	fill: rgba(20,45,80,0.5);
}

/* 本文エリア */
.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;
}

/* text list */
.c-normal-decimal{
	list-style: decimal;
}
.c-normal-disc{
	list-style: disc;
}
.c-normal-decimal > li,
.c-normal-disc > li{
	margin-left: 1em;
}
.c-orange-list__item{
	text-indent: -1.3em;
	padding-left: 1.3em;
}
.c-orange-list__item:not(:last-child){
	margin-bottom: 5px;
}
.c-orange-list__item::before{
	content: '・ ';
	color: var(--orange-color)
}
.c-number-list__item{
	text-indent: -1.3em;
	padding-left: 1.3em;
}
.c-orange-list__item:not(:last-child){
	margin-bottom: 5px;
}
.c-orange-list__item::before{
	content: '・ ';
	color: var(--orange-color)
}
.c-orange-list__item small{
	font-size: var(--fontsize-14);
	padding-left: 1em;
}

/* more btn */
.c-more-btn{
	font-size: var(--fontsize-20);
	font-weight: 700;
	display: flex;
	align-items: center;
	width: fit-content;
	color: #fff;
	text-shadow: 0 0 4px rgba(0,0,0,0.1);
}
.c-more-btn.c-more-btn--blue{
	color: var(--main-color);
	text-shadow: none;
}
.c-more-btn.c-more-btn--en{
	font-family: var(--font-en);
}
.c-more-btn:hover{
	text-decoration: underline;
}
.c-more-btn__arrow{
	width: clamp(50px, 4.7vw, 90px);
	height: clamp(50px, 4.7vw, 90px);
	border-radius: 45px;
	margin-left: 20px;
	position: relative;
	display: grid;
	place-content: center;
	place-items: center center;
	z-index: 0;
}
.c-more-btn__arrow::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 45px;
	background-image: radial-gradient(#fff,rgba(255,255,255,0.3));
	box-shadow: 0 0 15px #fff;
	transition: opacity var(--trans-base);
}
.c-more-btn.c-more-btn--blue .c-more-btn__arrow::before{
	background-image: none;
	border: 1px solid rgba(20,45,80,0.15);
	box-shadow: none;
}
.c-more-btn__arrow::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 45px;
	background-image: radial-gradient(#37D0F5,rgba(1,132,208,0.3));
	box-shadow: 0 0 15px #37D0F5;
	transition: opacity var(--trans-base);
	opacity: 0;
}
.c-more-btn:hover .c-more-btn__arrow::before{
	opacity: 0;
}
.c-more-btn:hover .c-more-btn__arrow::after{
	opacity: 1;
}
.c-more-btn__arrow svg{
	position: relative;
	z-index: 1;
	margin-left: 4px;
	height: clamp(15px, 1.3vw, 25px);
	width: auto;
}
.c-more-btn__arrow svg path{
	fill: url("#a");
}
.c-more-btn.c-more-btn--blue .c-more-btn__arrow svg path{
	fill: var(--main-color);
}
.c-more-btn__arrow svg path{
	transition: fill var(--trans-base);
}
.c-more-btn:hover .c-more-btn__arrow svg path{
	fill: #fff;
}
.c-blue-btn{
	border: 1px solid var(--main-color);
	border-radius: 4px;
	padding: 9px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: var(--fontsize-14);
	font-weight: 800;
	color: var(--main-color);
	background-color: #fff;
	transition: background-color var(--trans-base), color var(--trans-base);
}
.c-blue-btn:hover{
	background-color: var(--main-color);
	color: #fff;
}
.c-blue-btn__icon{
	width: 1em;
	height: auto;
	margin-right: 6px;
}
.c-blue-btn__icon svg path{
	transition: fill var(--trans-base);
}
.c-blue-btn:hover .c-blue-btn__icon svg path{
	fill: #fff;
}
.c-map-btn{
	padding: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--main-color);
	background-color: var(--main-color);
	transition: background-color var(--trans-base);
	border-radius: 4px;
}
.c-map-btn:hover{
	background-color: #fff;
}
.c-map-btn__icon{
	width: 1em;
	height: auto;
}
.c-map-btn__icon svg path{
	transition: fill var(--trans-base);
}
.c-map-btn:hover .c-map-btn__icon svg path{
	fill: var(--main-color);
}
.c-gradation-btn{
	background: url("../img/common/bg-title.jpg") center center / cover no-repeat;
	border-radius: 4px;
	padding: 20px 50px 20px 0;
	color: #fff;
	width: min(100%,600px);
	transition: opacity var(--trans-base);
	position: relative;
	z-index: 0;
	display: block;
}
.c-gradation-btn:hover{
	opacity: 0.7;
}
.c-gradation-btn::before{
	content: '';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 16px;
	height: 15px;
	background: url("../img/common/gradation-btn-arrow.svg") center center / contain no-repeat;
}
.c-gradation-btn__text{
	font-size: var(--fontsize-20);
	font-weight: 700;
	padding-left: 44px;
	position: relative;
}
.c-gradation-btn__text::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	width: 24px;
	background-color: var(--orange-color);
}

/* 見出しデザイン */
.c-maru-title{
	font-size: var(--fontsize-16);
	font-weight: 500;
	margin-bottom: 15px;
	color: var(--main-color);
	position: relative;
	padding-left: 20px;
}
.c-maru-title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	padding: 5.5px;
	border-radius: 10px;
	background-color: var(--main-color);
}
.c-info-title{
	font-size: var(--fontsize-20);
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	padding-left: 30px;
}
.c-info-title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	background: url("../img/common/info-title.svg") center center / contain no-repeat;
	display: block;
	width: 20px;
	height: 20px;
}
.c-bgleft-title{
	font-weight: 700;
	font-size: var(--fontsize-20);
	padding: 20px 40px;
	background: url("../img/common/bgleft-title.jpg") center center / cover no-repeat;
	position: relative;
	z-index: 0;
	color: #fff;
	margin-bottom: 30px;
	border-radius: 4px;
}
.c-bgleft-title::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	width: 24px;
	background-color: var(--orange-color);
}

/* box */
.c-border-box{
	border: 1px solid var(--font-color);
	border-radius: 4px;
	background-color: #D9E1E7;
	padding: 16px;
}
.c-note-box{
	border: 1px solid #951A1A;
	border-radius: 4px;
	background-color: #EBDDDE;
	color: #951A1A;
	padding: 8px 15px;
}
.c-note-box.c-note-box--blue{
	background-color: #D9E1E7;
	border: 1px solid #142D50;
	width: fit-content;
	color: #142D50;
}
.c-note-box__text{
	position: relative;
	z-index: 0;
	padding-left: 30px;
	font-size: var(--fontsize-15);
	line-height: 1.6;
}
.c-note-box.c-note-box--blue .c-note-box__text{
	font-weight: 700;
}
.c-note-box__text::before{
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	display: block;
	width: 20px;
	height: 19px;
	background: url("../img/common/icon-note.svg") center center / contain no-repeat;
}
.c-note-box.c-note-box--blue .c-note-box__text::before{
	background: url("../img/common/icon-note-blue.svg") center center / contain no-repeat;
}
.c-white-box{
	background-color: #fff;
	padding: 20px 40px 30px;
	border-radius: 4px;
}
.c-white-box__title{
	font-weight: 800;
	font-size: var(--fontsize-16);
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px dashed var(--border-color);
	position: relative;
	z-index: 0;
}
.c-white-box__title::before {
	content: '';
	position: absolute;
	left: -40px;
	top: 0;
	height: 24px;
	width: 2px;
	background-color: var(--orange-color);
}

/* bg */
.u-bg-dotted{
	background-image: url("../img/common/bg-dotted.png");
}
.u-bg-bright{
	background-color: var(--bg-bright);
}

/* tag list */
.c-tag-list{
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.c-tag-list__item{
	display: block;
	white-space: nowrap;
	line-height: 1.3;
	padding: 3px 10px;
	color: #A1B5C4;
	border: 1px solid #A1B5C4;
	border-radius: 30px;
	font-size: 12px;
}

/* 商品リスト */
.c-product-list{
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, 1fr);
}
.c-product-list__item{
	background-color: #fff;
	padding: 30px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	line-height: 1.6;
}
.c-product-list__img{
	margin-bottom: 20px;
}
.c-product-list__img img{
	width: 100%;
	height: auto;
	border-radius: 4px;
}
.c-product-list__title{
	font-weight: 800;
	color: var(--main-color);
	font-size: var(--fontsize-17);
	margin-bottom: 10px;
}
.c-product-list__text{
	font-size: var(--fontsize-15);
	margin-bottom: 15px;
}
.c-product-list__info{
	padding-top: 15px;
	border-top: 1px dashed var(--border-color);
	margin-bottom: 24px;
}
.c-product-list__info-item{
	display: flex;
}
.c-product-list__info-item:not(:last-of-type){
	margin-bottom: 10px;
}
.c-product-list__info-label{
	display: block;
	font-weight: 800;
	width: 85px;
	font-size: var(--fontsize-14);
	padding-top: 2px;
}
.c-product-list__info-content{
	width: calc(100% - 85px);
	font-size: var(--fontsize-15);
}
.c-product-list__cta{
	margin-top: auto;
}
.c-item-list{
	display: grid;
	gap: clamp(30px, 3.1vw, 60px);
	grid-template-columns: repeat(3, 1fr);
}
.c-item-list__item{
	padding-bottom: clamp(30px, 3.1vw, 60px);;
	display: flex;
	flex-direction: column;
	line-height: 1.6;
	position: relative;
	z-index: 0;
}
.c-item-list__item::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: calc(100% + clamp(30px, 3.1vw, 60px));
	border-bottom: 1px dashed #A1B5C4;
}
.c-item-list__item:nth-child(3n)::before{
	width: 100%;
}
.c-item-list__img{
	margin-bottom: 24px;
}
.c-item-list__img img{
	width: 100%;
	height: auto;
}
.c-item-list__title{
	font-weight: 800;
	color: var(--main-color);
	font-size: var(--fontsize-17);
	margin-bottom: 15px;
}
.c-item-list__text{
	font-size: var(--fontsize-15);
	margin-bottom: 24px;
}
.c-item-list__cta{
	margin-top: auto;
}

/* 汎用accordion */
.c-accordion__trigger{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
	position: relative;
	padding: 0;
}
.c-accordion__title{
	padding-right: 25px;
}
.c-accordion__icon{
	position: absolute;
	right: 0;
	top: 7px;
	display: block;
	width: 16px;
	height: 16px;
}
.c-accordion__icon::before,
.c-accordion__icon::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 1px;
	transform: translate(-50%,-50%);
	transition: transform var(--trans-base);
	background-color: var(--main-color);
}
.c-accordion__item .c-accordion__icon::after {
	transform: translate(-50%,-50%) rotate(-90deg);
}
.c-accordion__trigger.is-open .c-accordion__icon::after {
	transform: translate(-50%,-50%) rotate(0);
}
.c-accordion__panel[hidden] { 
	display: none;
}
.c-accordion__panel {
	overflow: hidden;
}
.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);
}

/* faq list */
.c-faq-list__item:not(:last-child){
	margin-bottom: 20px;
}
.c-faq-list__item{
	background-color: #fff;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 24px clamp(20px, 2vw, 40px);
}
.c-faq-list__title{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.c-faq-list__q{
	font-family: var(--font-en);
	color: var(--orange-color);
	font-weight: 700;
	font-size: clamp(23px, 1.7vw, 33px);
	width: clamp(40px, 2.6vw, 50px);
}
.c-faq-list__title-text{
	width: calc(100% - clamp(40px, 2.6vw, 50px));
	font-weight: 700;
	font-size: var(--fontsize-20);
}
.c-faq-list__text{
	display: flex;
	justify-content: space-between;
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px dashed var(--border-color);
}
.c-faq-list__a{
	font-family: var(--font-en);
	font-size: var(--fontsize-25);
	font-weight: 700;
	width: clamp(40px, 2.6vw, 50px);
}
.c-faq-list__text-body{
	width: calc(100% - clamp(40px, 2.6vw, 50px));
}

/* 汎用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;
	max-width: 95%;
	max-height: 90%;
	position: relative;
	opacity: 0;
	transform: scale(.5);
	transition: opacity var(--trans-base), transform var(--trans-base);
	background-color: var(--bg-color);
	padding: 20px;
}
.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;
}
.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: 123px 24px 24px;
	background-color: #fff;
}
.c-sub-fv__inner{
	padding: 24px;
	border-radius: 20px;
	background-color: var(--bg-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.c-sub-fv__text{
	width: 35%;
	background-color: var(--bg-bright);
	border-radius: 10px;
	padding: 30px 40px;
}
.c-sub-fv.c-sub-fv--navnone .c-sub-fv__text{
	display: grid;
	place-items: center start;
}
.c-sub-fv__img{
	width: calc(65% - 24px);
	min-height: clamp(250px, 24.5vw, 470px);
	border-radius: 10px;
	overflow: hidden;
	background-image: url("../img/common/sub-fv.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.c-sub-fv__title{
	font-size: var(--fontsize-16);
	font-weight: 700;
}
.c-sub-fv__en{
	color: var(--main-color);
	display: block;
	font-family: var(--font-en);
	font-size: clamp(40px, 3.3vw, 63px);
	line-height: 1.1;
	margin-bottom: 8px;
}

/* 下層ページナビゲーション */
.c-sub-nav{
	margin-top: clamp(30px, 2.6vw, 50px);
	padding-top: 28px;
	border-top: 1px dashed var(--border-color);
}
.c-sub-nav__item:not(:last-child){
	margin-bottom: 4px;
}
.c-sub-nav__link{
	border-radius: 4px;
	padding: 14px 35px 14px 20px;
	display: flex;
	align-items: center;
	font-weight: 700;
	position: relative;
	z-index: 0;
	transition: background-color var(--trans-base), border var(--trans-base);
	border: 1px solid transparent;
}
.c-sub-nav__link:hover{
	background-color: #fff;
	border: 1px solid var(--border-color);
}
.c-sub-nav__link::before{
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 10px;
	height: 8px;
	background: url("../img/common/sub-nav-arrow.svg") center center / contain no-repeat;
	transition: opacity var(--trans-base);
	opacity: 0;
}
.c-sub-nav__link:hover::before{
	opacity: 1;
}
.c-sub-nav__label{
	display: block;
	position: relative;
	z-index: 0;
	padding-left: 40px;
}
.c-sub-nav__label::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 20px;
	height: 24px;
	background: url("../img/common/sub-nav-icon.svg") center center / contain no-repeat;
}

/* 見出し */
.c-sub-h2{
	border-top: 1px solid #CECECE;
}
.c-sub-h2.c-sub-h2--white{
	color: #fff;
}
.c-sub-h2__ja{
	display: block;
	padding-top: 20px;
	font-size: var(--fontsize-16);
	margin-left: clamp(20px, 2vw, 40px);
	border-top: 2px solid var(--main-color);
	position: relative;
	z-index: 0;
	width: fit-content;
	margin-bottom: clamp(20px, 2vw, 40px);
}
.c-sub-h2.c-sub-h2--white .c-sub-h2__ja{
	border-top: 2px solid #fff;
}
.c-sub-h2__ja::before{
	content: '';
	position: absolute;
	left: 0;
	top: -2px;
	height: 2px;
	width: 12px;
	background-color: var(--orange-color);
	z-index: 1;
}
.c-sub-h2__en{
	display: block;
	font-family: var(--font-en);
	color: var(--main-color);
	font-weight: 700;
	font-size: clamp(40px, 3.4vw, 65px);
}
.c-sub-h2.c-sub-h2--white .c-sub-h2__en{
	color: #fff;
}
.c-h2-bg{
	position: relative;
	z-index: 0;
	padding-block: clamp(30px, 3.4vw, 65px) clamp(50px, 6.8vw, 130px);
	overflow: hidden;
}
.c-h2-bg::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(20,45,80,0.6);
	z-index: -1;
	pointer-events: none;
}
.c-h2-bg::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -1px;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: url("../img/common/h2-btm-bg.png") center bottom / 92% auto no-repeat;
	pointer-events: none;
}
.c-h2-bg.c-h2-bg--bright::after{
	background: url("../img/common/h2-btm-bg-bright.png") center bottom / 92% auto no-repeat;
}
.c-h2-bg__img{
	position: absolute;
	left: 0;
	top: -80px;
	width: 100%;
	height: calc(100% + 160px);
	will-change: transform;
	min-height: 100%;
	z-index: -2;
}
.c-h2-bg__img > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 100%;
}
.c-bg-title{
	background: url("../img/common/bg-title.jpg") center center / cover no-repeat;
	border-radius: 4px;
	padding: 20px 20px 20px 0;
	margin-bottom: clamp(25px, 3.4vw, 65px);
	color: #fff;
}
.c-bg-title.c-bg-title--tag{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 14px 14px 14px 0;
}
.c-bg-title.c-bg-title--mini{
	margin-bottom: 30px;
}
.c-bg-title__text{
	font-size: var(--fontsize-20);
	font-weight: 700;
	padding-left: 44px;
	position: relative;
}
.c-bg-title.c-bg-title--tag .c-bg-title__text{
	width: clamp(470px, 27vw, 520px);
}
.c-bg-title__text::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	width: 24px;
	background-color: var(--orange-color);
}
.c-bg-title.c-bg-title--tag .c-bg-title__list{
	width: calc(97% - clamp(470px, 27vw, 520px));
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.c-bg-title__tag{
	border: 1px solid #A1B5C480;
	border-radius: 4px;
	padding: 8px 20px 8px 44px;
	line-height: 1.4;
	position: relative;
}
.c-bg-title__tag::before{
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 14px;
	height: 12px;
	background: url("../img/common/bg-title-tag.svg") center center / contain no-repeat;
}
.c-bg-title__tag-label{
	display: block;
	font-weight: 700;
	font-size: var(--fontsize-14);
	color: #D9E1E7;
}
.c-bg-title__tag-text{
	display: block;
	font-weight: 700;
}
.c-triangular-title{
	position: relative;
	padding-left: 34px;
	font-weight: 700;
	font-size: var(--fontsize-20);
	margin-bottom: 30px;
}
.c-triangular-title::before{
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	display: block;
	width: 18px;
	height: 16px;
	background: url("../img/common/bg-title-tag.svg") center center / contain no-repeat;
}
.c-nomal-title{
	font-size: clamp(23px, 1.5vw, 28px);
	font-weight: 800;
	margin-bottom: 30px;
	line-height: 1.8;
}

/* 表 */
.c-definition-list {
	overflow-x: auto;
}
.c-definition-list__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	border-radius: 4px;
	background-color: #fff;
	overflow: hidden;
}
.c-definition-list__row:not(:last-child) {
	margin-bottom: 10px;
}
.c-definition-list__term {
	width: clamp(150px, 10.9vw, 215px);
	padding: 14px clamp(20px, 2vw, 40px);
	font-weight: 700;
	position: relative;
	z-index: 0;
}
.c-definition-list__term::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 24px;
	width: 2px;
	background-color: var(--orange-color);
}
.c-definition-list__description {
	width: calc(100% - clamp(150px, 10.9vw, 215px));
	padding: 14px clamp(20px, 2vw, 40px) 14px 0;
}
.c-gray-table {
	overflow-x: auto;
	width: 100%;
}
.c-gray-table table{
	width: 100%;
	table-layout: fixed;
	border-spacing: 4px;
}
.c-gray-table__term {
	width: clamp(90px, 14vw, 270px);
	padding: 14px;
	font-weight: 700;
	text-align: center;
	background-color: #C9D0D8;
	font-weight: 800;
}
.c-gray-table__description {
	background-color: #fff;
	padding: 14px 30px;
	vertical-align: baseline;
	line-height: 1.6;
}

/* img */
.c-break-img{
	margin-bottom: -1px;
}
.c-break-img img{
	width: 100%;
	height: auto;
	filter: drop-shadow(0 -10px 15px rgba(0,0,0,0.02));
}

/* 投稿用 sidebar */
.c-widget__title {
	margin-bottom: 20px;
	border-bottom: 1px solid #CECECE;
	position: relative;
	padding-bottom: 10px;
	font-weight: 700;
	font-size: var(--fontsize-16);
}
.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(--orange-color);
}
.c-sidebar__link:hover{
	color: var(--orange-color);
}
.c-sidebar__select {
	width: 100%;
	font-size: var(--fontsize-15);
	padding: 10px 15px;
	border: 0;
	background-color: #fff;
}
.c-sidebar__select:focus {
	outline: 1px solid var(--pale-color);
	outline-offset: 2px;
}

/* 投稿一覧 カテゴリータイトル */
.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__date{
	margin-right: 8px;
	font-size: 12px;
	color: var(--gray-color);
	padding-left: 20px;
	position: relative;
	font-weight: 400;
	width: fit-content;
}
.c-post-meta__date::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 12px;
	height: 13px;
	background: url("../img/common/post-meta-date.svg") center center / contain no-repeat;
}
.c-post-meta__cat{
	padding: 3px 10px 3px 24px;
	font-size: 12px;
	white-space: nowrap;
	margin: 3px 5px 3px 0;
	font-weight: normal;
	display: inline-block;
	background-color: var(--bg-bright);
	border-radius: 2px;
	border: 1px solid var(--border-color);
	transition: color var(--trans-base), background-color var(--trans-base), border-color var(--trans-base);
	line-height: 1.4;
	position: relative;
}
.c-post-meta__cat::before{
	content: "＃";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--orange-color);
	line-height: 1;
}
a.c-post-meta__cat:hover{
	background-color: #fff;
	color: var(--main-color);
}

/* 投稿一覧用 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 #CECECE;
	margin-bottom: 20px;
	position: relative;
	z-index: 0;
	transition: background-color var(--trans-base);
	border-radius: 4px;
}
.c-post-list-item:hover{
	background-color: var(--pale-color);
}
.c-post-list-item::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 80px;
	background-color: var(--orange-color);
	transition: background-color var(--trans-base);
}
.c-post-list-item:hover::before{
	background-color: var(--main-color);
}
.c-post-list-item__link{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
}
.c-post-list-item__img{
	width:30%;
}
.c-post-list-item__img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}
.c-post-list-item__main{
	width:67%;
}
.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);
	font-size: var(--fontsize-16);
	line-height: 1.5;
}
.c-archive .c-post-meta{
	padding-top: 10px;
	margin-top: 10px;
	border-top: 1px solid var(--border-color);
}

/* single page */
.c-single__title {
	font-size:var(--fontsize-22);
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #CECECE;
	position: relative;
	text-align: justify;
	font-weight: 700;
}
.c-single__title::before{
	content: "";
	background-color: var(--orange-color);
	bottom:-1px;
	position: absolute;
	left:0;
	width: 50px;
	height: 1px;
}
.c-single .c-post-meta{
	margin-bottom: 30px;
}

/* 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:#F2F2F2;
}

/* 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(--orange-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;
}

/* 
section
----------------------------------------------------------- */
.s-btm-contact{
	padding-block: clamp(40px, 4.9vw, 95px);
	background-color: #D6DBE0;
	background-image: url("../img/common/btm-contact-bg.png");
	background-position: center right;
	background-size: auto 100%;
	background-repeat: no-repeat;
}
.s-btm-contact__box{
	border-radius: 20px;
	background: url("../img/common/gradation-bg.jpg") left top / cover no-repeat;
	color: #fff;
	overflow: hidden;
}
.s-btm-contact__heading{
	padding: clamp(30px, 2.9vw, 55px) clamp(20px, 2.6vw, 50px) 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}
.s-btm-contact__title{
	display: flex;
	align-items: center;
}
.s-btm-contact__en{
	font-family: var(--font-en);
	font-weight: 700;
	font-size: clamp(32px, 3.4vw, 65px);
	padding-right: 30px;
	line-height: 1;
}
.s-btm-contact__ja{
	font-size: var(--fontsize-16);
}
.s-btm-contact__heading-text{
	font-size: var(--fontsize-15);
	color: rgba(255,255,255,0.8);
}
.s-btm-contact__links{
	padding-block: 24px;
	background-color: rgba(255,255,255,0.1);
	-webkit-backdrop-filter: blur(4px) brightness(1.1);
	backdrop-filter: blur(4px) brightness(1.1);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.s-btm-contact__item{
	display: grid;
	place-content: center;
	place-items: center center;
}
.s-btm-contact__item:not(:last-child){
	border-right: 2px dashed rgba(255,255,255,0.4);
}
.s-btm-contact__link{
	color: #fff;
	display: block;
	transition: opacity var(--trans-base);
	line-height: 1.6;
}
.s-btm-contact__link:hover{
	opacity: 0.7;
}
.s-btm-contact__link-label{
	padding-left: 35px;
	position: relative;
	font-weight: 700;
	font-size: var(--fontsize-25);
	display: block;
	width: fit-content;
}
.s-btm-contact__item.s-btm-contact__item--tel .s-btm-contact__link-label{
	font-family: var(--font-en);
	font-size: clamp(23px, 1.7vw, 33px);
}
.s-btm-contact__link-label::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
	background: url("../img/common/btm-contact-mail.svg") center center / contain no-repeat;
}
.s-btm-contact__item.s-btm-contact__item--tel .s-btm-contact__link-label::before{
	background: url("../img/common/btm-contact-tel.svg") center center / contain no-repeat;
}
.s-btm-contact__link-sub{
	display: block;
	font-size: var(--fontsize-15);
	color: rgba(255,255,255,0.8);
}

/* 
footer
----------------------------------------------------------- */
.footer {
	background-color: var(--bg-bright);
	padding-block: clamp(50px, 4.7vw, 90px) clamp(15px, 1.6vw, 30px);
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.footer__inner{
	padding-inline: 5%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer__company-logo{
	height: 34px;
	width: auto;
	margin-bottom: 25px;
}
.footer__company-body{
	margin-bottom: 25px;
}
.footer__company-name{
	font-weight: 700;
	font-size: var(--fontsize-18);
}
.footer__company-address{
	font-size: var(--fontsize-14);
}
.footer__company-map{
	color: rgba(20,45,80,0.5);
}
.footer__company-map a{
	color: rgba(20,45,80,0.5);
	text-decoration: underline;
	transition: opacity var(--trans-base);
}
.footer__company-map a:hover{
	opacity: 0.7;
}
.footer__cta-link{
	width: 220px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--font-color);
	border-radius: 2px;
	font-weight: 700;
	transition: color var(--trans-base), background-color var(--trans-base);
}
.footer__cta-link:hover{
	background-color: var(--font-color);
	color: #fff;
}
.footer__cta-link:not(:last-of-type){
	margin-bottom: 16px;
}
.footer__cta-icon{
	margin-right: 10px;
}
.footer__cta-icon svg{
	width: 16px;
	height: auto;
}
.footer__cta-icon svg path{
	transition: fill var(--trans-base);
}
.footer__cta-link:hover .footer__cta-icon svg path{
	fill: #fff;
}
.footer__cta-link.footer__cta-link--tel .footer__cta-label{
	font-size: var(--fontsize-18);
	font-family: var(--font-en);
}
.footer__licenses{
	padding-top: 28px;
	margin-top: clamp(30px, 2.6vw, 50px);
	border-top: 1px solid var(--border-color);
}
.footer__licenses-item{
	font-size: var(--fontsize-14);
	color: rgba(20,45,80,0.5);
	line-height: 1.6;
	text-align: left;
}
.footer__licenses-item:not(:last-child){
	margin-bottom: 8px;
}
.footer__sitemap-list{
	display: grid;
	grid-column-gap: clamp(15px, 2.3vw, 45px);
	grid-row-gap: clamp(30px, 3.4vw, 65px);
	grid-template-columns: repeat(3, 1fr);
}
.footer__sitemap-link{
	transition: color var(--trans-base);
}
.footer__sitemap-link:hover{
	color: var(--orange-color);
}
.footer__sitemap-en{
	font-family: var(--font-en);
	font-weight: 700;
	font-size: clamp(19px, 1.3vw, 25px);
	display: block;
	line-height: 1.2;
}
.footer__sitemap-ja{
	display: block;
	font-size: 12px;
	font-weight: 700;
	padding-left: 20px;
	position: relative;
}
.footer__sitemap-ja::before{
	content: '';
	position: absolute;
	left: 0;
	top: calc(50% + 2px);
	transform: translateY(-50%);
	height: 2px;
	width: 12px;
	border-radius: 2px;
	background-color: var(--orange-color);
}
.footer__calendar-box{
	background-color: #fff;
	border-radius: 10px;
	padding: 18px 11px 11px 11px;
	width: clamp(330px, 20.8vw, 400px);
}
.footer__calendar-box iframe{
	border-radius: 12px;
}
.footer__bottom{
	border-top: 1px solid var(--border-color);
	padding-top: 25px;
	margin-top: clamp(40px, 3.6vw, 70px);
}
.footer__bottom .footer__inner{
	align-items: center;
}
.footer__bottom-left{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.footer__bottom-logo{
	height: 39px;
	width: auto;
}
.footer__nishitetsu{
	padding-left: 30px;
	margin-left: 30px;
	border-left: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.footer__nishitetsu-logo{
	height: 47px;
	width: auto;
	margin-right: 30px;
}
.footer__nishitetsu-link{
	font-size: var(--fontsize-14);
	text-decoration: underline;
	transition: color var(--trans-base);
	color: rgba(20,45,80,0.5);
}
.footer__nishitetsu-link:hover{
	opacity: 0.7;
}
.footer__copyright{
	text-align: right;
	font-size: var(--fontsize-14);
}
.footer__en {
	position:absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.footer__en li {
	animation:text-loop 150s linear 0s infinite;
	line-height: 1;
	font-size: clamp(150px, 16.1vw, 310px);
	color: var(--bg-color);
	white-space: nowrap;
	font-family: var(--font-en);
	font-weight: 700;
	writing-mode: vertical-rl;
}
.footer__en li:nth-child(2) {
	animation:text-loop2 150s linear -75s infinite;
}
@keyframes text-loop {
	0% {
		transform:translateY(100%)
	}
	to {
		transform:translateY(-100%)
	}
}
@keyframes text-loop2 {
	0% {
		transform:translateY(0)
	}
	to {
		transform:translateY(-200%)
	}
}
@media screen and (max-width: 1440px) {
	/* 
	header
	----------------------------------------------------------- */ 
	.header__logo{
		top: 20px;
	}
	.header__links{
		right: clamp(15px, 2vw, 40px);
	}
	.header__link{
		padding: 10px 0;
	}
	.header__right{
		top: 70px;
	}
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer__sitemap-list{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 1280px) {
	/* 
	utility
	----------------------------------------------------------- */ 
	/* メディアクエリ出し分け */
	.u-pc,
	br.u-pc{
		display: none !important;
	}
	.u-pc-1280 {
		display: block !important;
	}
	br.u-pc-1280 {
		display: inline !important;
	}
	/* 
	component
	----------------------------------------------------------- */ 
	.c-sub-fv__text{
		width: 400px;
		padding: 30px;
	}
	.c-sub-fv__img{
		width: calc(100% - 424px);
	}
	.c-sub-nav__label{
		padding-left: 33px;
	}
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer__sitemap-list{
		grid-template-columns: repeat(1, 1fr);
	}
	.footer__nishitetsu-logo{
		margin-right: 10px;
	}
	.footer__nishitetsu{
		padding-left: 10px;
		margin-left: 20px;
	}
	.footer__nishitetsu-link{
		max-width: 250px;
	}
}
@media screen and (max-width: 1024px) {
	/* 
	header
	----------------------------------------------------------- */ 
	.header__links,
	.header__right{
		display: none;
	}
	.header__logo{
		top: 10px;
	}
	/* 
	sp nuv
	----------------------------------------------------------- */
	.spnav__toggle {
		display: grid;
		place-content: center;
		place-items: center start;
	}
	/* 
	utility
	----------------------------------------------------------- */ 
	/* メディアクエリ出し分け */
	.u-pc-1280,
	br.u-pc-1280{
		display: none !important;
	}
	.u-pc-1024 {
		display: block !important;
	}
	br.u-pc-1024 {
		display: inline !important;
	}
	/* 
	leyout
	----------------------------------------------------------- */ 
	.l-nomal-flex{
		display: flow-root;
	}
	.l-nomal-flex__img{
		float: left;
		margin: 0 20px 20px 0;
	}
	.l-nomal-flex__text{
		width: 100%;
	}
	/* 
	component
	----------------------------------------------------------- */ 
	/* 追従ボタン */
	.c-fixed-button{
		padding-right: 12px;
	}
	.c-fixed-button__img{
		margin-right: 8px;
	}
	.c-fixed-button__arrow{
		margin-left: 8px;
	}
	.c-fixed-button__arrow svg{
		height: 18px;
	}
	/* 投稿一覧用 grid */
	.c-post-grid{
		grid-template-columns: repeat(2, 1fr);
	}
	.c-sub-fv {
		padding-top: 90px;
	}
	.c-sub-fv__text{
		width: 380px;
		padding: 25px;
	}
	.c-sub-fv__img{
		width: calc(100% - 400px);
	}
	.c-sub-nav__link{
		background-color: #fff;
		border: 1px solid var(--border-color);
	}
	.c-sub-nav__link::before{
		opacity: 1;
	}
	.c-bg-title{
		padding: 14px 14px 14px 0;
	}
	.c-bg-title.c-bg-title--tag{
		display: block;
		padding-right: 20px;
	}
	.c-bg-title__text{
		  padding-left: 34px;
	}
	.c-bg-title.c-bg-title--tag .c-bg-title__text{
		width: 100%;
		margin-bottom: 10px;
	}
	.c-bg-title.c-bg-title--tag .c-bg-title__list{
		width: 100%;
		padding-left: 20px;
		gap: 10px;
	}
	.c-bg-title__tag{
		display: flex;
		align-items: center;
		padding-left: 30px;
		padding-right: 14px;
	}
	.c-bg-title__tag-label{
		padding-right: 10px;
	}
	.c-bg-title__tag::before{
		left: 10px;
	}
	.c-gray-table__description {
		padding: 14px 20px;
	}
	.c-white-box{
		padding: 20px 30px;
	}
	.c-white-box__title::before{
		left: -30px;
	}
	.c-gradation-btn{
		padding: 14px 30px 14px 0;
	}
	.c-gradation-btn__text{
		  padding-left: 34px;
	}
	.c-gradation-btn::before{
		right: 10px;
	}
	/* 
	section
	----------------------------------------------------------- */ 
	.s-btm-contact__links{
		padding-block: 15px;
	}
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer__sitemap{
		display: none;
	}
	.footer__company,
	.footer__calendar{
		width: 47.5%;
	}
	.footer__calendar-box{
		width: 100%;
	}
	.footer__bottom-left{
		width: 100%;
		margin-bottom: 20px;
	}
	.footer__nishitetsu-link{
		max-width: none;
	}
	.footer__copyright{
		width: 100%;
	}
}
@media screen and (max-width:767px) {
	:root {
		--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;
	}
	/* 
	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;
	}
	.l-nomal-flex__img{
		float: none;
		margin: 0 0 20px 0;
		width: 100%;
	}
	/* 
	component
	----------------------------------------------------------- */ 

	/* topに戻るボタン */
	.c-top-back{
		display: none;
	}

	/* 投稿一覧用 grid */
	.c-post-grid{
		grid-template-columns: repeat(1, 1fr);
	}

	/* pagination single */
	.c-post-nav{
		gap: 5px;
	}
	.c-post-nav__link--prev,
	.c-post-nav__link--next{
		width: 100%;
	}
	
	.c-sub-fv{
		padding: 90px 5% 24px;
	}
	.c-sub-fv__inner{
		padding: 20px 16px;
	}
	.c-sub-fv__text{
		width: 100%;
		padding: 20px 24px;
		margin-bottom: 16px;
	}
	.c-sub-fv__img{
		width: 100%;
		background-image: url("../img/common/sub-fv-sp.jpg");
		height: clamp(350px, 24.5vw, 470px);
	}
	.c-bgleft-title{
		padding: 15px 20px 15px 40px;
		margin-bottom: 20px;
	}
	.c-definition-list__term {
		width: 100%;
	}
	.c-definition-list__description {
		width: 100%;
		padding: 0 20px 14px;
	}
	.c-sub-nav{
		margin-top: 20px;
		padding-top: 20px;
	}
	.c-product-list{
		grid-template-columns: repeat(1, 1fr);
	}
	.c-product-list__item{
		padding: 20px;
	}
	.c-item-list{
		grid-template-columns: repeat(2, 1fr);
	}
	.c-item-list__item:nth-child(3n)::before{
		width: calc(100% + clamp(30px, 3.1vw, 60px));
	}
	.c-item-list__item:nth-child(2n)::before{
		width: 100%;
	}
	.c-nomal-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.u-arrow-link a{
		display: block;
		padding-left: 0;
	}
	/* 
	section
	----------------------------------------------------------- */ 
	.s-btm-contact__links{
		grid-template-columns: repeat(1, 1fr);
		padding: 20px;
	}
	.s-btm-contact__item:not(:last-child){
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-right: none;
		border-bottom: 2px dashed rgba(255,255,255,0.4);
	}
	.s-btm-contact__link-label{
		padding-left: 28px;
	}
	.s-btm-contact__link-label::before{
		width: 18px;
		height: 18px;
	}
	.s-btm-contact__heading{
		padding: 25px;
	}
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer__company,
	.footer__calendar{
		width: 100%;
	}
	.footer__company{
		margin-bottom: 20px;
	}
	.footer__nishitetsu{
		width: 100%;
		padding-left: 0;
		margin-left: 0;
		padding-top: 15px;
		margin-top: 20px;
		border-left: none;
		border-top: 1px solid var(--border-color);
	}
	.footer__nishitetsu-link{
		max-width: 180px;
	}
}
@media screen and (max-width:480px) {
	:root {
		--fontsize-25: 19px;
		--fontsize-22: 18px;
		--fontsize-20: 17px;
	}
	/* 
	utility
	----------------------------------------------------------- */ 
	/* メディアクエリ出し分け */
	.u-pc-767,
	br.u-pc-767{
		display: none !important;
	}
	.u-pc-480 {
		display: block !important;
	}
	br.u-pc-480 {
		display: inline !important;
	}
	.u-arrow-link{
		padding-left: 20px;
	}
	.u-arrow-link a{
		font-size: 10px;
	}
	/* 
	component
	----------------------------------------------------------- */ 

	/* 投稿一覧 list */
	.c-post-list-item__img {
		width: 100%;
		margin: 0 auto 15px;
	}
	.c-post-list-item__main {
		width: 100%;
	}
	.c-sub-nav__link{
		padding-left: 14px;
	}
	.c-sub-nav__label{
		padding-left: 30px;
	}
	.c-item-list{
		grid-template-columns: repeat(1, 1fr);
	}
	.c-item-list__item::before{
		width: 100% !important;
	}
	.c-bg-title__tag{
		width: 100%;
	}
	.c-nomal-title{
		font-size: 21px;
	}
	.c-faq-list__q,
	.c-faq-list__a{
		width: 30px;
	}
	.c-faq-list__title-text,
	.c-faq-list__text-body{
		width: calc(100% - 30px);
		font-weight: 700;
		font-size: var(--fontsize-20);
	}
}