:root {
	--bg-color: #FAFAFA;
	--bg-dark: #0A1C0A;
	
	--font-gray: #676767;
	
	--main-color: #000000;
	--main-color-50: #00000080;
	--main-color-20: #00000033;
	--pale-color: #e5e5e5;
	
	--sub-color: #45FF00;
	
	--white-color: #FFFFFF;
	--border-color: #DBDBDB;

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

	--fontsize-33: clamp(21px, 1.7vw, 33px);
	--fontsize-28: clamp(20px, 1.5vw, 28px);
	--fontsize-25: clamp(19px, 1.3vw, 25px);
	--fontsize-22: clamp(20px, 1.1vw, 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: .1s ease;
	--trans-base: .3s ease;
	--trans-slow: .8s 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;
	color: var(--main-color);
}
button{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
	color: var(--main-color);
	padding: 0;
}
ol,ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
legend, menu{
	padding: 0;
}
a {
	text-decoration: none;
	color: var(--main-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: 400;
	line-height: 1.6;
	font-style: normal;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
body {
	font-family: var(--font-text);
	line-height: 2;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	color: var(--main-color);
	font-weight: 400;
	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__inner {
	width:95%;
	position:fixed;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items: center;
	top:24px;
	left:50%;
	transform: translateX(-50%);
	z-index:1000;
	mix-blend-mode: exclusion;
	transition: transform var(--trans-base),opacity var(--trans-base);
}
.js-header.is-hidden .header__inner {
	transform: translateX(-50%) translateY(-150%);
	opacity: 0;
}
.header__logo img,
.spnav__logo img {
	height: 41px;
	width: auto;
}
.header__right{
	display:flex;
	justify-content: flex-end;
	gap: clamp(20px, 2vw, 40px);
	align-items: center;
}
.header__link{
	color: var(--white-color);
	font-size: var(--fontsize-14);
	font-family: var(--font-en);
	padding-right: clamp(20px, 2vw, 40px);
	border-right: 1px solid #707070;
	display: block;
	font-weight: 400;
	position: relative;
	z-index: 0;
	padding-bottom: 3px;
}
.header__link::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	background-color: var(--sub-color);
	transition: width var(--trans-fast);
	z-index: 1;
	box-shadow: var(--sub-color) 0 0 6px;
}
.header__link:hover::before{
	width: 19px;
}
.header__link::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	background-color: #BEBEBE;
	transition: width var(--trans-base);
}
.header__link:hover::after{
	width: calc(100% - clamp(20px, 2vw, 40px));
}
.header__link > span{
	padding-right: 19px;
	position: relative;
	z-index: 0;
}
.header__link > span::after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 8px;
	background: url("../img/common/header-arrow.svg") center center / contain no-repeat;
}
.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 {
	text-align:center;
	cursor:pointer;
	display: grid;
	place-content: center;
	place-items: center start;
	background-color: transparent;
	width: 48px;
	height: 48px;
	border: 1px solid #707070;
}
.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: 22px;
	height: 16px;
}
.spnav__toggle-lines span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--white-color);
}
.spnav__toggle-lines span:nth-of-type(1) {
	top: 0;
}
.spnav__toggle-lines span:nth-of-type(2) {
	top: 7px;
}
.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(-7px) rotate(45deg);
}
@-webkit-keyframes spnav-toggle-line {
	100% {
		height: 0;
	}
}
.spnav {
	position:relative;
	z-index:999;
}
.spnav__wrap {
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	background-color: rgba(38,38,38,0.8);
	width:min(100%,500px);
	max-width:75%;
	height:100%;
	transition: opacity var(--trans-base), transform var(--trans-base);
	position:fixed;
	top:0;
	right: 0;
	transform: translateX(100%);
	opacity: 0;
	/*overflow-y:auto;*/
	display: flex;
	flex-direction: column;
	padding: clamp(70px, 13.9vh, 150px) 6vh 2.8vh;
}
.spnav.is-open .spnav__wrap {
	opacity: 1;
	transform: translateX(0);
}
.spnav__logo {
	mix-blend-mode: exclusion;
	padding: 24px clamp(25px, 2.6vw, 50px) clamp(30px, 3.6vw, 70px) clamp(25px, 2.6vw, 50px);
}
.spnav__item:not(:last-child){
	margin-bottom: 4.2vh;
}
.spnav__link{
	color: var(--white-color);
	font-family: var(--font-en);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 1.9vh;
	row-gap: 5px;
	width: fit-content;
	padding-bottom: 8px;
	font-size: clamp(15px, 2vh, 28px);
	line-height: 1.4;
	position: relative;
	z-index: 0;
}
.spnav__link::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	background-color: var(--sub-color);
	transition: width var(--trans-fast);
	z-index: 1;
	box-shadow: var(--sub-color) 0 0 6px;
}
.spnav__link::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	background-color: #BEBEBE;
	transition: width var(--trans-base);
}
.spnav__link > span,
.spnav__entry > span{
	font-family: var(--font-text);
	font-size: clamp(11px, 1.2vh, 14px);
	color: #BEBEBE;
}
.spnav__ig{
	display: block;
	width: fit-content;
	margin-top: 4.6vh;
}
.spnav__ig svg{
	height: 3vh;
	width: auto;
	transition: filter var(--trans-base);
}
.spnav__ig svg path{
	transition: fill var(--trans-base);
}
.spnav__inner--btm{
	padding-bottom: 4.6vh;
	border-bottom: 2px solid rgba(0,0,0,0.3);
	position: relative;
	z-index: 0;
	margin-bottom: 4.2vh;
}
.spnav__inner--btm::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 1px;
	width: 100%;
	background-color: rgba(255,255,255,0.12);
}
.spnav__entry{
	border: 1px solid #707070;
	padding: 1.5vh 4.2vh;
	color: var(--white-color);
	font-family: var(--font-en);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 1.9vh;
	row-gap: 5px;
	font-size: clamp(15px, 2vh, 28px);
	line-height: 1.4;
	transition: border var(--trans-base), box-shadow var(--trans-base);
}
.spnav__entry + .spnav__entry{
	margin-top: 3.2vh;
}
@media (hover: hover) {
	.spnav__link:hover::before{
		width: 19px;
	}
	.spnav__link:hover::after{
		width: 100%;
	}
	.spnav__entry:hover{
		box-shadow: 0 0 6px var(--sub-color);
		border: 1px solid var(--sub-color);
	}
	.spnav__ig:hover svg path{
		fill: var(--sub-color);
	}
	.spnav__ig:hover svg{
		filter: drop-shadow(0 0 6px var(--sub-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 loop*/
.u-text-loop {
	display:flex;
	z-index: -1;
}
.u-text-loop > div {
	animation:text-loop 240s linear 0s infinite;
	white-space: nowrap;
	flex-shrink: 0;
}
.u-text-loop > div:nth-child(2) {
	animation:text-loop2 240s linear -120s infinite;
}
@keyframes text-loop {
	0% {
		transform:translateX(100%)
	}
	to {
		transform:translateX(-100%)
	}
}
@keyframes text-loop2 {
	0% {
		transform:translateX(0)
	}
	to {
		transform:translateX(-200%)
	}
}

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

/* bg */
.u-bg-pale{
	background-color: var(--pale-color);
}
.u-bg-dot{
	background-image: url("../img/common/bg-dot.png");
}

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

/* youtube埋め込み */
.u-youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
	padding-top: 56.25%;
}
.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%,1440px);
	margin-inline:auto;
}
.l-padding{
	padding-block: clamp(60px, 7.6vw, 145px);
}
.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%;
}
.l-post .l-inner{
	width: min(90%,1200px);
}
/* 
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(--font-gray);
}
.c-breadcrumb__item:last-child a {
	color: var(--main-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-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: var(--white-color);
	text-decoration: none;
}

/* 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;
}

/* arrow */
.c-link-arrow {
	overflow: hidden;
	width: 1em;
	height: 1em;
	line-height: 1;
	position: relative;
	z-index: 0;
	display: block;
}
.c-link-arrow::before,
.c-link-arrow::after {
	content: "→";
	position: absolute;
	top: 0;
	left: 0;
	animation-fill-mode: both;
	animation-duration: 0.3s;
	display: block;
	width: 100%;
	height: 100%;
}
.c-link-arrow:after {
	transform: translateX(-100%);
}
.c-link-arrow.is-hover::before {
	animation: link-arrow-right 0.3s both;
	animation-delay: 0.1s;
}
.c-link-arrow.is-hover::after {
	animation: link-arrow-left 0.3s both;
}
.c-link-arrow.is-leave::before {
	animation: link-arrow-right-reverse 0.3s both;
}
.c-link-arrow.is-leave::after {
	animation: link-arrow-left-reverse 0.3s both;
	animation-delay: 0.1s;
}
@keyframes link-arrow-right {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes link-arrow-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);
	}
}
@keyframes link-arrow-right-reverse {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes link-arrow-left-reverse {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(0);
	}
}

/* dl */
.c-definition-list__row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-block: 24px;
	border-bottom: 2px solid #fff;
	position: relative;
	z-index: 0;
}
.c-definition-list__row::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	height: 1px;
	width: 100%;
	background-color: #e0e0e0;
}
.c-definition-list__row:nth-child(1){
	border-top: 2px solid #fff;
}
.c-definition-list__row:nth-child(1)::before{
	content: "";
	position: absolute;
	left: 0;
	top: -3px;
	height: 1px;
	width: 100%;
	background-color: #e0e0e0
}
.c-definition-list__term{
	width: clamp(100px, 10.9vw, 215px);
	font-weight: 500;
	display: grid;
	place-items: center left;
}
.c-definition-list__description{
	flex: 1;
	color: var(--font-gray);
}
.c-definition-list__description a{
	color: var(--font-gray);
}
.c-definition-list__description--flex{
	display: flex;
	align-items: center;
	gap: 10px;
}
.c-definition-list__description--flex > img{
	margin-top: 3px;
}

/* ボタン */
.c-more-btn{
	display: block;
	width: min(100%,260px);
	background-color: var(--white-color);
	border: 1px solid var(--main-color);
	border-radius: 50px;
	padding: 12px 40px 12px 20px;
	position: relative;
	z-index: 0;
	font-weight: 500;
	color: var(--main-color);
	transition: color var(--trans-base), background-color var(--trans-base);
}
.c-more-btn:hover{
	background-color: var(--main-color);
	color: var(--white-color);
}
.c-more-btn .c-link-arrow{
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0%, -50%);
}

/* 見出し */
.c-nomal-title{
	color: var(--font-gray);
	font-size: var(--fontsize-14);
}
.c-nomal-title__en{
	font-family: var(--font-en);
	font-size: clamp(30px, 2vw, 40px);
	color: var(--main-color);
	display: block;
}
.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: 8px;
	padding: 5.5px;
	border-radius: 10px;
	background-color: var(--main-color);
}
.c-main-title{
	font-family: var(--font-en);
	font-size: clamp(22px, 2vw, 40px);
	position: relative;
	z-index: 1;
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.c-main-title > span{
	font-family: var(--font-text);
	font-size: var(--fontsize-14);
	color: var(--font-gray);
	display: block;
	width: fit-content;
	position: relative;
	z-index: 0;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
}
.c-main-title > span::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 12px;
	height: 1px;
	background-color: var(--sub-color);
	box-shadow: var(--sub-color) 0 0 6px;
}
.c-main-title--center{
	text-align: center;
}
.c-main-title--center > span{
	margin-inline: auto;
}
.c-main-title--white{
	color: #fff;
}
.c-main-title--white > span{
	color: #fff;
	border-bottom: 1px solid #BEBEBE;
}

/* 汎用accordion */
.c-accordion__trigger{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
	position: relative;
	padding: 0;
}
.c-accordion__heading{
	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 {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--trans-base);
}
.c-accordion__panel[hidden] {
	display: none;
	background: red;
}
.c-accordion__panel.is-open {
	grid-template-rows: 1fr;
}
.c-accordion__inner {
	overflow: hidden;
}

/* 汎用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{
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: -1px;
	max-width: 90%;
	margin-inline: auto;
}
.c-tab__btn{
	background-color: #fff;
	display: grid;
	place-content: center;
	place-items: center center;
	cursor: pointer;
	width: clamp(300px, 24vw, 460px);
	min-height: 124px;
	text-align: center;
	font-size: var(--fontsize-22);
	font-weight: 600;
	transition: color var(--trans-base), background-color var(--trans-base), border var(--trans-base), box-shadow var(--trans-base), font-size var(--trans-base);
	border: 1px solid #717171;
	border-radius: 4px 4px 0 0;
	height: 100%;
	line-height: 1.6;
}
.c-tab__btn.is-active{
	background-color: #1A1A1A;
	border: 1px solid #1A1A1A;
	box-shadow: 0 3px 6px rgba(0,0,0,0.5);
	color: #fff;
}
.c-tab__btn > span{
	display: block;
	font-size: var(--fontsize-13);
	font-family: var(--font-en);
	font-weight: 400;
	color: #8D8D8D;
	transition: color var(--trans-base), font-size var(--trans-base);
}
.c-tab__contents{
	background-color: #1A1A1A;
	border-radius: 4px;
	padding-block: clamp(50px, 6.8vw, 130px);
	position: relative;
	z-index: 1;
}
.c-tab__content {
	display: none;
}
.c-tab__content.is-active {
	display: block;
}
@media (hover: hover) {
	.c-tab__btn:hover{
		background-color: #EDEDED;
		font-size: calc(var(--fontsize-22) * 1.05);
		color: var(--main-color);
	}
	.c-tab__btn:hover > span{
		color: var(--main-color);
		font-size: 14px;
	}
}

/* ページナビ */
.c-page-nav__list{
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: -1px;
}
.c-page-nav__link{
	background-color: #fff;
	display: grid;
	place-content: center;
	place-items: center center;
	cursor: pointer;
	width: 100%;
	min-height: 124px;
	font-size: var(--fontsize-22);
	font-weight: 600;
	transition: color var(--trans-base), background-color var(--trans-base), border var(--trans-base), box-shadow var(--trans-base), font-size var(--trans-base);
	border: 1px solid #717171;
	border-radius: 4px 4px 0 0;
	height: 100%;
	line-height: 1.6;
}
.c-page-nav__link p{
	text-align: center;
}
.c-page-nav__item.is-active .c-page-nav__link{
	background-color: #1A1A1A;
	border: 1px solid #1A1A1A;
	box-shadow: 0 3px 6px rgba(0,0,0,0.5);
	color: #fff;
}
.c-page-nav__link p > span{
	display: block;
	font-size: var(--fontsize-13);
	font-family: var(--font-en);
	font-weight: 400;
	color: #8D8D8D;
	transition: color var(--trans-base), font-size var(--trans-base);
	line-height: 1.4;
}
@media (hover: hover) {
	a.c-page-nav__link:hover{
		background-color: #EDEDED;
		font-size: calc(var(--fontsize-22) * 1.05);
		color: var(--main-color);
	}
	a.c-page-nav__link:hover p > span{
		color: var(--main-color);
		font-size: 14px;
	}
}

/* 下層ページFV */
.c-sub-fv {
	height: clamp(250px, 31.2vw, 600px);
	background: url("../img/common/sub-fv-bg.jpg") center center / cover no-repeat;
	color: var(--white-color);
	padding-top: clamp(60px, 3.9vw, 75px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.c-sub-fv__title {
	font-size: var(--fontsize-18);
	text-align: center;
	padding-inline: 5%;
}
.c-sub-fv__en{
	display: block;
	font-family: var(--font-en);
	font-size: clamp(30px, 4.1vw, 80px);
}

/* 投稿用 sidebar */
.c-widget__title {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	padding-left: 20px;
	padding-bottom: 10px;
	color: var(--main-color);
	font-weight: 500;
}
.c-widget__title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 6px;
	background-color: var(--main-color);
}
.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: 10px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.c-sidebar__link:hover{
	color: var(--main-color);
}
.c-sidebar__select {
	width: 100%;
	font-size: var(--fontsize-15);
	padding: 10px 15px;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
}
.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: var(--white-color);
	transition: background-color var(--trans-base), color var(--trans-base);
}
.c-archive-cat-list__link:hover{
	background-color: var(--white-color);
	color: var(--main-color);	
}

/* 投稿用 日時 カテゴリー */
.c-post-meta{
	display: flex;
	flex-wrap: wrap;
	row-gap: 5px;
	align-items: center;
	line-height: 1.5;
}
.c-post-meta__date{
	font-size: var(--fontsize-14);
	font-family: var(--font-en);
	color: var(--font-gray);
	white-space: nowrap;
}
.c-post-meta__cats{
	display: flex;
	flex-wrap: wrap;
	row-gap: 3px;
	padding-left: 36px;
	position: relative;
	z-index: 0;
	white-space: nowrap;
}
.c-post-meta__cats::before{
	content: "ー";
	position: absolute;
	top: 50%;
	left: 13px;
	color: var(--font-gray);
	transform: translateY(-50%);
	font-size: 12px;
}
.c-post-meta__cat{
	font-size: 12px;
	font-family: var(--font-en);
	white-space: nowrap;
	display: block;
	transition: color var(--trans-base);
	color: var(--font-gray);
}
.c-post-meta__cat:not(:last-of-type)::after{
	content: ",";
	margin-inline: 5px;
}
a.c-post-meta__cat:hover{
	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(--font-gray);
	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(--font-gray);
	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: var(--white-color);
	border: 1px solid var(--border-color);
	border-left: 6px solid var(--main-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{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	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(--font-gray);
	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);
	font-weight: 500;
	color: var(--main-color);
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	text-align: justify;
}
.c-single__title::before{
	content: "";
	background-color: var(--main-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:var(--white-color);
	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:var(--white-color);
	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 var(--white-color);
}
.c-post-nav__link--next::after{
	right:25px;
	border-left:7px solid var(--white-color);
}
.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;
}

/* 
footer links
----------------------------------------------------------- */
.footer-links__recruit {
	display: block;
	height: 309px;
	position: relative;
	z-index: 0;
	overflow: hidden;
	display: grid;
	place-items: center center;
}
.footer-links__recruit::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(49,49,49,0.51);
	pointer-events: none;
	transition: background-color var(--trans-base);
}
.footer-links__recruit-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	animation: footer-recruit-fade 20s infinite;
}
.footer-links__recruit-bg--01 {
	background-image: url("../img/common/footer-links-recruit01.jpg");
	animation-delay: 0s;
}
.footer-links__recruit-bg--02 {
	background-image: url("../img/common/footer-links-recruit02.jpg");
	animation-delay: -4s;
}
.footer-links__recruit-bg--03 {
	background-image: url("../img/common/footer-links-recruit03.jpg");
	animation-delay: -8s;
}
.footer-links__recruit-bg--04 {
	background-image: url("../img/common/footer-links-recruit04.jpg");
	animation-delay: -12s;
}
.footer-links__recruit-bg--05 {
	background-image: url("../img/common/footer-links-recruit05.jpg");
	animation-delay: -16s;
}
@keyframes footer-recruit-fade {
	0%      { opacity: 0; }
	10%     { opacity: 1; }
	15%     { opacity: 1; }
	30%     { opacity: 0; }
	100%    { opacity: 0; }
}
.footer-links__recruit-title{
	color: #fff;
	font-family: var(--font-en);
	font-size: clamp(32px, 2.6vw, 50px);
	position: relative;
	z-index: 1;
	line-height: 1.6;
}
.footer-links__recruit-title > span{
	font-family: var(--font-text);
	font-size: var(--fontsize-16);
	display: block;
	width: fit-content;
	position: relative;
	z-index: 0;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
}
.footer-links__recruit-title > span::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 12px;
	height: 1px;
	background-color: var(--sub-color);
	box-shadow: var(--sub-color) 0 0 6px;
}
.footer-links__recruit-title > span::after{
	content: "↗";
}
.footer-links__flex{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.footer-links__item{
	padding: clamp(25px, 2.6vw, 50px) clamp(25px, 9.9vw, 190px) clamp(30px, 3.4vw, 65px);
	background-image: linear-gradient(to bottom, #F0F0F0, #C9C9C9);
}
.footer-links__item--job{
	background-image: linear-gradient(to bottom, #D3D3D3, #A8A7A7);
}
.footer-links__item--title{
	padding-top: clamp(35px, 2.3vw, 45px);
	background: url("../img/common/footer-entry-icon.svg") center top / clamp(25px, 1.6vw, 30px) auto no-repeat;
	text-align: center;
	font-family: var(--font-en);
	font-size: var(--fontsize-25);
	margin-bottom: 8px;
	line-height: 1.6;
}
.footer-links__item--job .footer-links__item--title{
	background-image: url("../img/common/footer-jpb-icon.svg");
}
.footer-links__item--text{
	text-align: center;
	font-size: var(--fontsize-14);
	color: var(--font-gray);
	padding-bottom: clamp(15px, 1.6vw, 30px);
	margin-bottom: clamp(15px, 1.6vw, 30px);
	border-bottom: 2px solid rgba(112,112,112,0.2);
	position: relative;
	z-index: 0;
}
.footer-links__item--text::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	height: 1px;
	width: 100%;
	background-color: rgba(255,255,255,0.6);
}
.footer-links__btn{
	display: grid;
	place-content: center;
	place-items: center center;
	width: 200px;
	background-color: #898989;
	transition: background-color var(--trans-base), font-size var(--trans-base);
	font-size: var(--fontsize-14);
	color: #fff;
	font-family: var(--font-en);
	text-align: center;
	margin-inline: auto;
	height: 44px;
}
.footer-links__item--job .footer-links__btn{
	background-color: #505050;
}
@media (hover: hover) {
	.footer-links__recruit:hover::before {
		background-color: rgba(49,49,49,0.3);
	}
	.footer-links__btn:hover{
		background-color: #767676;
		font-size: 15px;
	}
	.footer-links__item--job .footer-links__btn:hover{
		background-color: #343434;
	}
}

/* 
footer
----------------------------------------------------------- */
.footer {
	background-color: #262626;
	padding-block: clamp(40px, 5.7vw, 110px);
	color: var(--white-color);
	background-image: url("../img/common/footer-bg.svg");
	background-position: left bottom;
	background-size: clamp(350px, 39vw, 750px) auto;
	background-repeat: no-repeat;
}
.footer__flex{
	display: flex;
	gap: 30px;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: clamp(30px, 8.8vw, 170px);
}
.footer__campany{
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 30px;
	line-height: 1.6;
	color: #fff;
}
.footer__campany-en{
	display: block;
	font-size: 10px;
	font-family: var(--font-en);
	color: var(--font-gray);
	font-weight: 400;
}
.footer__address{
	font-style: normal;
}
.footer__address-link{
	display: block;
	width: fit-content;
	padding: 0 19px 8px 0;
	position: relative;
	z-index: 0;
	background: url("../img/common/icon-pin.svg") top 6px right / 11px auto no-repeat;
	color: #BEBEBE;
	line-height: 1.5;
}
.footer__address-link::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	background-color: var(--sub-color);
	transition: width var(--trans-fast);
	z-index: 1;
	box-shadow: var(--sub-color) 0 0 6px;
}
.footer__address-link:hover::before{
	width: 32px;
}
.footer__address-link::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	background-color: #BEBEBE;
	transition: width var(--trans-base);
}
.footer__address-link:hover::after{
	width: 100%;
}
.footer__sitemap{
	padding-top: clamp(25px, 2.6vw, 50px);
	border-top: 2px solid #1B1B1B;
	position: relative;
	z-index: 0;
}
.footer__sitemap::before{
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	height: 1px;
	width: 100%;
	background-color: #404040;
}
.footer__sitemap-list{
	display: grid;
	grid-column-gap: clamp(20px, 4.9vw, 95px);
	grid-row-gap: clamp(20px, 2vw, 40px);
	grid-template-columns: repeat(4, auto);
}
.footer__sitemap-link{
	color: var(--white-color);
	font-family: var(--font-en);
	display: block;
	width: fit-content;
	padding-bottom: 5px;
	font-size: var(--fontsize-25);
	line-height: 1.4;
	position: relative;
	z-index: 0;
}
.footer__sitemap-item:last-child{
	display: flex;
	align-items: center;
}
.footer__sitemap-link::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	background-color: var(--sub-color);
	transition: width var(--trans-fast);
	z-index: 1;
	box-shadow: var(--sub-color) 0 0 6px;
}
.footer__sitemap-link:hover::before{
	width: 19px;
}
.footer__sitemap-link::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	background-color: #BEBEBE;
	transition: width var(--trans-base);
}
.footer__sitemap-link:hover::after{
	width: 100%;
}
.footer__sitemap-item:last-child .footer__sitemap-link::before,
.footer__sitemap-item:last-child .footer__sitemap-link::after{
	display: none;
}
.footer__sitemap-item:last-child svg{
	height: 22px;
	width: auto;
	transition: filter var(--trans-base);
}
.footer__sitemap-item:last-child:hover svg{
	filter: drop-shadow(0 0 6px var(--sub-color));
}
.footer__sitemap-item:last-child svg path{
	transition: fill var(--trans-base);
}
.footer__sitemap-item:last-child:hover svg path{
	fill: var(--sub-color);
}
.footer__tel{
	display: flex;
	line-height: 1.5;
	margin-bottom: 12px;
}
.footer__tel-item:not(:last-child){
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px solid #BEBEBE;
	position: relative;
	z-index: 0;
}
.footer__tel-item:not(:last-child)::before{
	content: "";
	position: absolute;
	right: -1px;
	top: 0;
	width: 1px;
	height: 12px;
	background-color: var(--sub-color);
	box-shadow: var(--sub-color) 0 0 6px;
}
.footer__tel-title{
	font-family: var(--font-en);
	margin-bottom: 10px;
}
.footer__tel-num,
.footer__tel-num a{
	color: #BEBEBE;
}
.footer__tel-num--fax{
	pointer-events: none !important;
}
.footer__copyright{
	font-family: var(--font-en);
	text-align: right;
	font-size: var(--fontsize-14);
	color: #BEBEBE;
}
@media screen and (max-width: 1440px) {
	
}
@media screen and (max-width: 1280px) {
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer__sitemap-list{
		grid-column-gap: 25px;
		grid-row-gap: 20px;
	}
	
}
@media screen and (max-width: 1024px) {
	/* 
	header
	----------------------------------------------------------- */ 
	.header__inner{
		top: 15px;
		width: 90%;
	}
	/* 
	utility
	----------------------------------------------------------- */ 
	/* メディアクエリ出し分け */
	.u-pc,
	br.u-pc{
		display: none !important;
	}
	.u-pc-1024 {
		display: block !important;
	}
	br.u-pc-1024 {
		display: inline !important;
	}
	/* 
	component
	----------------------------------------------------------- */ 

	/* 投稿一覧用 grid */
	.c-post-grid{
		grid-template-columns: repeat(2, 1fr);
	}
	/* 
	footer
	----------------------------------------------------------- */ 
	.footer{
		padding-bottom: 20px;
	}
	.footer__sitemap{
		display: none;
	}
	.footer__campany{
		margin-bottom: 20px;
	}
	.footer__tel{
		margin-bottom: 30px;
	}
}
@media screen and (max-width:767px) {
	
	:root {
		--fontsize-20: 17px;
		--fontsize-19: 16px;
		--fontsize-18: 16px;
		--fontsize-17: 15px;
		--fontsize-16: 15px;
	}
	
	/* 
	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;
	}

	/* 投稿一覧用 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__row{
		padding-block: 16px;
	}

	/* 汎用tab */
	.c-tab{
		gap: 10px;
	}
	.c-tab__btn{
		width: 100%;
		padding: 15px;
		font-size: 15px;
		min-height: auto;
	}

	/* 
	header
	----------------------------------------------------------- */
	.header__link{
		display: none;
	}
	.spnav__item:not(:last-child){
		margin-bottom: 3vh;
	}
	/* 
	footer links
	----------------------------------------------------------- */
	.footer-links__recruit{
		display: block;
		padding-top: 15px;
		height: 233px;
	}
	.footer-links__recruit-bg--01 {
		background-image: url("../img/common/footer-links-recruit01-sp.jpg");
	}
	.footer-links__recruit-bg--02 {
		background-image: url("../img/common/footer-links-recruit02-sp.jpg");
	}
	.footer-links__recruit-bg--03 {
		background-image: url("../img/common/footer-links-recruit03-sp.jpg");
	}
	.footer-links__recruit-bg--04 {
		background-image: url("../img/common/footer-links-recruit04-sp.jpg");
	}
	.footer-links__recruit-bg--05 {
		background-image: url("../img/common/footer-links-recruit05-sp.jpg");
	}
	.footer-links__flex{
		grid-template-columns: repeat(1, 1fr);
	}
}
@media screen and (max-width:480px) {
	/* 
	header
	----------------------------------------------------------- */
	.header__inner{
		width: 93%;
	}
	.spnav__wrap{
		width: 250px;
		padding-inline: 20px;
	}
	.header__logo img,
	.spnav__logo img {
		height: 30px;
	}
	.spnav__link,
	.spnav__entry{
		gap: 8px;
	}
	.spnav__entry{
		padding: 1.5vh;
	}
	
	/* 
	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
	----------------------------------------------------------- */ 

	/* dl */
	.c-definition-list__term{
		width: 100%;
	}
	.c-definition-list__description{
		flex: auto;
		width: 100%;
	}

	/* 投稿一覧 list */
	.c-post-list-item__img {
		width: 100%;
		margin: 0 auto 15px;
	}
	.c-post-list-item__main {
		width: 100%;
	}

	/* 汎用tab */
	.c-tab{
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(2, 1fr);
	}
	.c-tab__btn{
		padding: 10px 8px;
		font-size: 14px;
	}
	
}