@charset "utf-8";
/*
Theme Name: 三省物産株式会社
Author: BASARA
Version: 1.0
*/

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	backface-visibility: hidden;
}
*:before,
*:after {
	pointer-events: none;
}
:root {
	--base-font-color: #000;
	--sub-bg-color: #d6ecfd;
	--main-color: #284c98;
	--sub-color: #35a1f6;
	--dark-color: #20276f;
	--link-color: #000;
	--accent-color: #11986a;
	--attention-color: crimson;
	--gray-color: #dedede;
	--small-contents-width: 800px;
	--main-contents-width: 1200px;
	--large-contents-width: 1400px;
	--thin-font-weight: 300;
	--normal-font-weight: 400;
	--semibold-font-weight: 600;
	--bold-font-weight: 700;
	--black-font-weight: 900;
}
html {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	color: var(--base-font-color);
	font-size: 18px;
	font-weight: var(--normal-font-weight);
	line-height: 1.8;
	overflow-wrap: anywhere; /* 収まらない場合に折り返す */
	word-break: normal; /* 単語の分割はデフォルトに依存 */
	line-break: strict; /* 禁則処理を厳格に適用 */
	margin: 0;
	padding: 0;
	animation: loading 1.5s ease-out;
}
@keyframes loading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
div,
p,
ul,
ul li,
dl,
dt,
dd {
	font-size: 1em;
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img,
video,
object {
	max-width: 100%;
	height: auto;
	border: none;
}
img {
	display: block;
	image-rendering: -webkit-optimize-contrast;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 1em;
	line-height: 1;
	letter-spacing: 0.025em;
	padding: 0;
	margin: 0;
}
a {
	color: var(--link-color);
	text-decoration: none;
	transition: all ease 0.3s;
}
a:hover {
	opacity: 0.8;
	text-decoration: underline;
}
a[href^="tel:"] {
	text-decoration: none;
	pointer-events: none;
	text-emphasis: none !important;
}
a[href^="fax:"] {
	text-decoration: none;
	pointer-events: none;
}
.pc {
	display: inherit;
}
.tb {
	display: none;
}
.mb {
	display: none;
}
@media only screen and (max-width: 820px) {
	.pc {
		display: none;
	}
	.tb {
		display: block;
	}
	.mb {
		display: none;
	}
}
@media only screen and (max-width: 468px) {
	body {
		font-size: 16px;
		min-width: 375px;
	}
	a[href^="tel:"] {
		pointer-events: all;
	}
	.pc {
		display: none;
	}
	.tb {
		display: none;
	}
	.mb {
		display: block;
	}
}

/*font*/
.outfit {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

/* =========================================================================================
Header
=========================================================================================*/
#header {
	width: 100%;
	height: auto;
	background: transparent;
	padding: 0;
	margin: 0;
	position: fixed;
	top: 0;
	z-index: 100;
	transition: 0.5s;
}
#header .inner {
	width: 100%;
	max-width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: minmax(250px, 20%) 1fr;
	align-items: center;
	justify-content: right;
	gap: 0 1.5%;
	padding-block: 0;
	padding-inline: 0 1.5%;
	position: relative;
}
#header .logo {
	width: 100%;
	height: 100%;
	max-width: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 0 0 10px 0;
	padding: 10px;
}
#header .logo img {
	width: 100%;
	max-width: 220px;
}

/*globalnavi*/
#header #g-navi-area {
	width: 100%;
	height: 100%;
}
#header #g-navi-list {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: right;
	padding-block: 2em 10px;
}
#header #g-navi {
	width: 100%;
	max-width: 1000px;
	background: rgba(255, 255, 255, 0.65);
	border-radius: 100px;
	padding: 1em 20px 1em 50px;
}
#header #g-navi ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5em 1em;
}
#header #g-navi ul li {
	font-size: clamp(0.778rem, calc(0rem + 1.429vw), 1.111rem); /* min: 14px, max: 20px */
	font-weight: var(--semibold-font-weight);
}
#header #g-navi ul li a {
	color: var(--main-color);
	display: block;
}
#header #g-navi ul li a:hover {
	opacity: 0.5;
	text-decoration: none;
}
#header #g-navi ul li.contact a {
	color: #fff;
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
	padding: 0.25em 2.25em 0.25em 1em;
	border-radius: 100px;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.12));
	transition: 0.5s;
	position: relative;
}
#header #g-navi ul li.contact a:hover {
	color: var(--dark-color);
	background: #fff;
}
#header #g-navi ul li.contact a::after {
	content: "";
	background: #fff;
	width: 20px;
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 0.75em;
	top: 50%;
	translate: 0 -45%;
	z-index: 1;
	-webkit-mask-image: url(images/common/arrow_mask.svg);
	mask-image: url(images/common/arrow_mask.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.5s;
}
#header #g-navi ul li.contact a:hover {
	color: var(--dark-color);
	background: #fff;
	text-decoration: none;
	opacity: 1;
}
#header #g-navi ul li.contact a:hover::after {
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
}
#header .g-navi-logo,
#header .openbtn,
#header #g-navi-sp {
	display: none; /*PCでは非表示*/
}
@media only screen and (max-width: 980px) {
	#header {
		height: 60px;
		padding: 0;
	}
	#header .inner {
		justify-content: space-between;
		padding-right: 50px;
	}
	#header .logo {
		width: 200px;
		padding-inline: 10px 20px;
	}
	/* HAMBURGER MENU */
	#header .openbtn {
		color: var(--dark-color);
		font-size: 12px;
		line-height: 1;
		width: 50px;
		height: 50px;
		background: #fff;
		border-radius: 0 0 0 10px;
		cursor: pointer;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 7px;
		padding-top: 2px;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;
		transition: 0.3s;
	}
	#header .openbtn span {
		width: 50%;
		height: 2px;
		background: var(--dark-color);
		border-radius: 0;
		transform-origin: 50% 40%;
		transition: 0.5s;
	}
	#header .openbtn.active {
		color: #fff;
		background: var(--dark-color);
		gap: 0;
		padding-top: 5px;
	}
	#header .openbtn.active span {
		background: #fff;
	}
	#header .openbtn.active span:nth-of-type(1) {
		width: 55%;
		transform: rotate(32.5deg);
	}
	#header .openbtn.active span:nth-of-type(2) {
		width: 55%;
		transform: rotate(-32.5deg) translateY(-2px);
		margin-bottom: 10px;
	}
	#header #g-navi-area {
		display: initial;
		width: 350px !important;
		height: 100vh;
		background: var(--sub-color);
		border-radius: 0;
		padding: 0;
		position: fixed;
		z-index: 999;
		top: 0;
		right: -120%;
		transition: all 0.5s;
	}
	#header #g-navi-area.panelactive {
		/*アクティブクラスがついたら位置を0に*/
		right: 0;
	}
	#header #g-navi-list {
		/*ナビの数が増えた場合縦スクロール*/
		width: 100%;
		height: 100vh;
		display: flex;
		flex-wrap: nowrap;
		flex-direction: column;
		justify-content: start;
		gap: 0;
		padding: 100px 30px;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		position: relative;
		z-index: 99;
	}
	#header #g-navi-area #g-navi-list .g-navi-logo {
		display: none;
		/*display: inline-block;*/
		width: 175px;
		position: absolute;
		top: 20px;
		left: 20px;
	}
	#header #g-navi {
		background: transparent;
		padding: 0;
	}
	#header #g-navi ul {
		width: 100%;
		flex-direction: column;
		align-items: start;
		justify-content: left;
		gap: 0;
		padding: 0;
		margin: auto;
		position: relative;
		z-index: 999;
	}
	#header #g-navi ul li {
		text-align: left;
		font-size: 1em;
		width: 100%;
		border-top: 1px solid var(--main-color);
	}
	#header #g-navi ul li a {
		color: #fff;
		display: block;
		padding: 1em 0.5em;
	}
	#header #g-navi ul li a:hover {
		color: #fff;
		background: var(--main-color);
		opacity: 1;
	}
	#header #g-navi ul li.contact {
		padding-top: 5vh;
	}
	#header #g-navi ul li.contact a {
		color: var(--dark-color);
		font-size: 1.25em;
		background: #fff;
		padding-block: 0.75em;
		padding-left: 2.5em;
	}
	#header #g-navi ul li.contact a::after {
		width: 1.375em;
		right: 2em;
		background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
	}
	#header #g-navi ul li.contact a:hover {
		color: #fff;
		background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
	}
	#header #g-navi ul li.contact a:hover::after {
		background: #fff;
	}
	#header #g-navi-sp {
		display: block;
		width: 100%;
	}
	#header #g-navi-sp ul {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 5px 1.5em;
		margin: auto;
	}
	#header #g-navi-sp li {
		font-size: 1rem;
		position: relative;
	}
	#header #g-navi-sp li a {
		color: #fff;
	}
}
@media only screen and (max-width: 468px) {
	#header #g-navi-area {
		width: 100% !important;
		right: -150%;
	}
	#header #g-navi-area #g-navi-list {
		min-width: 375px;
		padding: 100px 45px;
	}
}

/* =========================================================================================
Footer
=========================================================================================*/
#footer {
	background: url(images/common/footer_bg.webp) no-repeat center;
	background-size: cover;
	padding-block: 75px 0;
	position: relative;
}
#footer .inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 5vh;
}
/* logo */
#footer .logo {
	width: 100%;
	max-width: 340px;
}

/* footer-navi */
#footer .f-navi {
	width: 100%;
	max-width: 1000px;
	display: flex;
	flex-direction: column;
	gap: 0;
}
#footer .f-navi .menu-footer-navi-container,
#footer .f-navi .menu-footer-navi-small-container {
	width: 100%;
}
#footer .f-navi .menu-footer-navi-container a,
#footer .f-navi .menu-footer-navi-small-container a {
	color: #fff;
}
#footer .f-navi .menu-footer-navi-container a:hover,
#footer .f-navi .menu-footer-navi-small-container a:hover {
	text-decoration: none;
}
#footer .f-navi .menu-footer-navi-container {
	margin-bottom: 12.5vh;
}
#footer .f-navi ul.menu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: left;
	gap: 0.5em 6.5%;
}
#footer .f-navi ul.menu li {
	display: inline-table;
	list-style-type: none;
}
#footer .f-navi ul.menu > li > a,
#footer .f-navi ul.menu > li > span {
	font-weight: var(--semibold-font-weight);
	display: block;
	padding: 0.25em 0;
}
#footer .f-navi ul.menu li.contact a {
	color: var(--dark-color);
	background: #fff;
	border-radius: 100px;
	padding: 0.25em 2.25em 0.25em 1em;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.12));
	transition: 0.5s;
	position: relative;
}
#footer .f-navi ul.menu li.contact a::after {
	content: "";
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
	width: 20px;
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 0.75em;
	top: 50%;
	translate: 0 -45%;
	z-index: 1;
	-webkit-mask-image: url(images/common/arrow_mask.svg);
	mask-image: url(images/common/arrow_mask.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.5s;
}
#footer .f-navi ul.menu li.contact a:hover {
	color: #fff;
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
	text-decoration: none;
	opacity: 1;
}
#footer .f-navi ul.menu li.contact a:hover::after {
	background: #fff;
}
#footer .f-navi li ul.sub-menu {
	width: 100%;
	display: inline-block;
	margin-top: 0.75em;
	margin-left: 2em;
}
#footer .f-navi li ul.sub-menu li {
	display: list-item;
	list-style-type: disc;
}
#footer .f-navi ul#menu-footer-navi-small.menu {
	gap: 0.5em 4.5%;
}
#footer .f-navi ul#menu-footer-navi-small.menu > li > a,
#footer .f-navi ul#menu-footer-navi-small.menu > li > span {
	font-size: 0.78em;
	font-weight: var(--normal-font-weight);
}
/*copyright*/
#footer .copyright {
	color: var(--main-color);
	font-size: 0.75rem;
	display: block;
	text-align: center;
	line-height: 1.2;
	background: #fff;
	margin: 40px auto 0;
	padding: 1.75em 1em;
}
@media only screen and (max-width: 820px) {
	#footer .inner {
		align-items: center;
	}
	#footer .f-navi .menu-footer-navi-container {
		margin-bottom: 75px;
	}
	#footer .f-navi ul.menu,
	#footer .f-navi li ul.sub-menu {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
@media only screen and (max-width: 468px) {
	#footer .f-navi .menu-footer-navi-container {
		margin-bottom: 50px;
	}
}

/* =========================================================================================
Page Top
=========================================================================================*/
#page-top {
	display: none; /*最初は非表示*/
	position: fixed;
	z-index: 99;
	bottom: 1.5%;
	right: 1.5%;
}
#page-top a {
	display: block;
	text-decoration: none;
	color: #fff;
	width: 80px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	line-height: 1;
	background: #fff;
	text-indent: -9999px;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.15));
	transition: 0.5s;
}
#page-top a::after {
	content: "";
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
	width: 55%;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	transform: rotate(-90deg);
	z-index: 1;
	-webkit-mask-image: url(images/common/arrow_mask.svg);
	mask-image: url(images/common/arrow_mask.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.5s;
}
#page-top a:hover {
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
	opacity: 1;
}
#page-top a:hover::after {
	background: #fff;
}
@media only screen and (max-width: 820px) {
	#page-top a {
		width: 70px;
		right: 5px;
		bottom: 3px;
	}
}
@media only screen and (max-width: 468px) {
	#page-top a {
		width: 60px;
	}
}

/* =========================================================================================
Layout
=========================================================================================*/
#wrapper {
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#contents {
	padding-block: 0;
	margin: 0 auto;
	position: relative;
}
#main {
	margin: 0;
	padding: 0;
}
section {
	position: relative;
	padding-block: 100px;
	margin: 0;
}
.inner {
	max-width: var(--main-contents-width);
	width: calc(100% - 40px - 40px); /*左右の余白40pxずつ*/
	margin: 0 auto;
	position: relative;
}
@media only screen and (max-width: 820px) {
	section {
		padding-block: 75px;
	}
	.inner {
		width: calc(100% - 30px - 30px);
	}
}
@media only screen and (max-width: 468px) {
	section {
		padding-block: 50px;
	}
	.inner {
		width: calc(100% - 20px - 20px);
	}
}

/* =========================================================================================
Btn / WP-block-button
=========================================================================================*/
.btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.wp-block-buttons {
	display: flex;
	align-items: stretch;
}
.btn a,
.wp-block-button a {
	color: #fff;
	font-size: 1.2em;
	font-weight: var(--bold-font-weight);
	text-align: center;
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
	border-radius: 100px;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.12));
	position: relative;
	transition: 0.5s;
}
.btn a {
	min-width: 270px;
	padding: 0.75em 3.5em 0.75em 2em;
}
.wp-block-button a {
	height: 100%;
	min-width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75em 3.5em 0.75em 2em;
}
.btn a::after,
.wp-block-button a::after {
	content: "";
	background: #fff;
	width: 34px;
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 1.5em;
	top: 50%;
	translate: 0 -50%;
	z-index: 1;
	-webkit-mask-image: url(images/common/arrow_mask.svg);
	mask-image: url(images/common/arrow_mask.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.5s;
}
.btn a:hover,
.wp-block-button a:hover {
	color: var(--dark-color);
	background: #fff;
	text-decoration: none;
	opacity: 1;
}
.btn a:hover::after,
.wp-block-button a:hover::after {
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
}

/*color-white*/
.btn a.white {
	color: var(--dark-color);
	background: #fff;
}
.btn a.white:hover {
	color: #fff;
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
}
.btn a.white::after {
	background: linear-gradient(to right, #004f99 0%, #009bc5 100%);
}
.btn a.white:hover:after {
	background: #fff;
}

/*color-contact*/
.btn a.contact span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
}
.btn a.contact span::before /*アイコン表示*/ {
	content: "";
	width: 1.5em;
	aspect-ratio: 35 / 24;
	background: url(images/common/icon_mail.svg) no-repeat center;
	background-size: contain;
	display: block;
}
.btn a.contact::after {
	display: none;
}

/*size*/
.btn a.large {
	font-size: 1.65em;
	font-weight: var(--bold-font-weight);
	min-width: 600px;
}
.btn a.mini {
	font-size: 1em;
	min-width: auto !important;
	padding-block: 0.5em;
}
.btn a.mini::after {
	width: 24px;
	right: 1.25em;
}

/*wp-block-button*/
.wp-block-buttons + .wp-block-buttons {
	margin-top: 0.5em;
}

@media only screen and (max-width: 820px) {
	.btn a.large {
		min-width: 100%;
	}
}
@media only screen and (max-width: 468px) {
	.btn {
		justify-content: center !important;
	}
	.btn a {
		min-width: 80% !important;
	}
	.btn a::after,
	.wp-block-button a::after {
		right: 1.25em;
		width: 30px;
	}
}

/* =========================================================================================
Breadcrumbs
=========================================================================================*/
.breadcrumbs {
	color: var(--base-font-color);
	text-align: left;
	line-height: 1.4;
	padding-block: 10px;
}
.breadcrumbs a {
	color: var(--base-font-color);
	padding-right: 1.5em;
	position: relative;
}
.breadcrumbs a.home {
	padding-left: 1.5em;
}
.breadcrumbs a.home::before {
	content: "";
	width: 1em;
	aspect-ratio: 1 / 1;
	background: url(images/common/icon_home.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -40%;
}
.breadcrumbs a::after {
	content: "";
	width: 0.75em;
	aspect-ratio: 1 /1;
	background: url(images/common/arrow.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.2em;
	translate: 0 -40%;
}
@media only screen and (max-width: 820px) {
	.breadcrumbs {
		font-size: 0.9rem;
	}
}
@media only screen and (max-width: 468px) {
	.breadcrumbs {
		font-size: 0.8rem;
	}
}

/* =========================================================================================
Post list
=========================================================================================*/
/*common*/
.post-list {
	width: 100%;
	margin: 0;
	padding: 0;
}
.post-list ul {
	width: 100%;
	margin: 0;
	padding: 0;
}
.post-list ul a {
	color: var(--base-font-color);
	display: block;
}
.post-list ul a:hover {
	text-decoration: none;
}
.post-list ul li {
	width: 100%;
}
.post-list .no-post {
	text-align: center;
	display: block;
	padding: 10vh 1em;
}

/*column*/
.post-list.column ul {
	margin-bottom: 20px;
}
.post-list.column ul li {
	border-bottom: 1px solid var(--gray-color);
	padding: 1.5em 0 1.25em;
}
.post-list.column ul li article {
	line-height: 1.5;
	display: grid;
	grid-template-columns: 7em 1fr;
	/*grid-template-columns: 6em 100px 1fr;*/
	align-items: start;
	justify-content: left;
	gap: 0 1em;
}
.post-list.column .date {
	color: var(--sub-color);
	font-weight: var(--bold-font-weight);
}
/* .post-list.column .cat {
	font-size: 0.8rem;
	line-height: 1.4;
	height: auto;
}
.post-list.column .cat a {
	text-align: center;
	display: block;
	background: var(--gray-color);
	padding: 0.375em 0.5em 0.25em;
} */
.post-list.column .title {
	font-size: 1em;
	font-weight: var(--nomal-font-weight);
}
.post-list.column .title a {
	text-decoration: underline;
}
@media only screen and (max-width: 820px) {
	.post-list.column ul li article {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5em 1em;
	}
	.post-list.column .date {
		width: auto !important;
	}
	.post-list.column .title {
		width: 100% !important;
	}
}
@media only screen and (max-width: 468px) {
}

/* row */
.post-list.row ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}
.post-list.row li {
	padding: 1em;
	border: 1px solid;
}
.post-list.row li:only-child {
	max-width: 380px;
}
.post-list.row li article {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 10px;
}
.post-list.row .thumbnail {
	border: 1px solid;
	position: relative;
}
.post-list.row .thumbnail img {
	width: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}
.post-list.row .thumbnail .new {
	color: #fff;
	font-size: small;
	background: var(--main-color);
	padding: 2px 10px 0;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 10;
}
.post-list.row .date {
	width: 100%;
}
/* .post-list.row .cat {
	font-size: 0.8rem;
	width: fit-content;
	height: auto;
}
.post-list.row .cat a {
	text-align: center;
	display: block;
	background: var(--gray-color);
	padding: 0.25em 0.65em 0.25em 0.5em;
} */
.post-list.row .title {
	font-size: 1rem;
	font-weight: var(--bold-font-weight);
	line-height: 1.5;
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Archive-Page
=========================================================================================*/
.archive-content section {
	padding-top: 50px;
}
.archive-content .post-list {
	border-top: none;
	border-bottom: none;
	padding: 0;
}

/*pagination*/
.pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-block: 25px;
}
.pagination .page-numbers li a,
.pagination .page-numbers li span,
.pagination .page-numbers li .current {
	color: #fff;
	line-height: 1;
	width: 50px;
	aspect-ratio: 1 / 1;
	background: var(--main-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	border: 1px solid var(--main-color);
	padding: 0.25em 1em;
}
.pagination .page-numbers li .current {
	color: var(--base-font-color);
	background: #fff;
	border-color: var(--smoky-color);
}
.pagination .page-numbers li .prev,
.pagination .page-numbers li .next {
	color: rgba(255, 255, 255, 0);
	text-indent: -9999px;
	background: var(--main-color);
	padding: 0;
	position: relative;
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .prev::after,
.pagination .page-numbers li .next::before,
.pagination .page-numbers li .next::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 35%;
	width: 1em;
	height: 2px;
	border-radius: 9999px;
	background-color: #fff;
	transform-origin: calc(100% - 1px) 50%;
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .next::before {
	transform: rotate(45deg);
}
.pagination .page-numbers li .prev::after,
.pagination .page-numbers li .next::after {
	transform: rotate(-45deg);
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .prev::after {
	right: 62.5%;
	scale: -1;
}
.pagination .page-numbers li a:hover {
	text-decoration: none;
}

@media only screen and (max-width: 820px) {
	.pagination .page-numbers {
		gap: 10px;
	}
	.pagination .page-numbers li a,
	.pagination .page-numbers li span,
	.pagination .page-numbers li .current {
		width: 40px;
	}
	.pagination .page-numbers li .prev::before,
	.pagination .page-numbers li .prev::after,
	.pagination .page-numbers li .next::before,
	.pagination .page-numbers li .next::after {
		width: 0.75em;
	}
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Single-Page
=========================================================================================*/
body.single .entry-header {
	margin-top: 50px;
	position: relative;
}
body.single .entry-header .inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
	align-items: center;
	padding-block: 1em;
	border-bottom: 1px solid;
}
body.single .entry-header .date {
	color: var(--sub-color);
	text-align: left;
	display: inline-block;
}
/* body.single .entry-header .icon {
	display: flex;
	align-items: start;
	justify-content: left;
	flex-wrap: wrap;
	gap: 5px;
	padding: 1em 0;
}
body.single .entry-header .icon a,
body.single .entry-header .icon span {
	font-size: 0.8rem;
	text-align: center;
	height: auto;
	background: var(--gray-color);
	display: inline-block;
	padding: 0.25em 1em 0.2em;
}
body.single .entry-header .icon a:hover {
	text-decoration: none;
} */
body.single .entry-header .title {
	color: var(--dark-color);
	font-size: clamp(1.556rem, calc(0.994rem + 2.697vw), 2.222rem); /* min: 28px, max: 40px */
	text-align: left;
	line-height: 1.4;
	width: 100%;
	margin: 0;
}
body.single .entry-content section:nth-last-of-type(1) {
	padding-bottom: 100px;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
	body.single .entry-header {
		margin-top: 30px;
	}
}

/*single-navi*/
body.single .single-navi {
	display: flex;
	justify-content: center;
}
body.single .single-navi div:nth-child(2) {
	border-left: 1px solid;
}
body.single .single-navi .prev-navi,
body.single .single-navi .next-navi {
	width: auto;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-size: 1.25em;
	position: relative;
	padding-inline: 1em;
}
body.single .single-navi .prev-navi::before,
body.single .single-navi .prev-navi::after,
body.single .single-navi .next-navi::before,
body.single .single-navi .next-navi::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: -0.5em;
	width: 1em;
	height: 2px;
	background-color: var(--base-font-color);
	transform-origin: calc(100% - 1px) 50%;
}
body.single .single-navi .prev-navi::before,
body.single .single-navi .next-navi::before {
	transform: rotate(45deg);
}
body.single .single-navi .prev-navi::after,
body.single .single-navi .next-navi::after {
	transform: rotate(-45deg);
}
body.single .single-navi .prev-navi::before,
body.single .single-navi .prev-navi::after {
	left: -1.5em;
	scale: -1;
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
  Editer
=========================================================================================*/
/*見出し全体*/
* + .mid-xl,
* + .mid-l,
* + .mid-m,
* + .mid-s {
	margin-top: 1.5em;
}
/*見出し大*/
.mid-xl {
	color: var(--main-color);
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	display: flex;
	flex-direction: column-reverse;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.1em;
	margin-bottom: 50px;
	position: relative;
}
.mid-xl .jp {
	color: var(--dark-color);
	font-size: 1.5rem;
	line-height: 1;
}
.mid-xl .en {
	font-size: clamp(2.778rem, calc(0.437rem + 11.236vw), 5.556rem); /* min: 50px, max: 100px */
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}
/*見出し中*/
.mid-m {
	font-size: 1.75rem;
	font-weight: var(--bold-font-weight);
	line-height: 1.6;
	padding-bottom: 0.5em;
	border-bottom: 1px solid;
	margin-bottom: 1em;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}
/*見出し小*/
.mid-s {
	font-size: 1.25rem;
	font-weight: var(--bold-font-weight);
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.25em;
	margin-bottom: 0.5em;
}
.mid-s::before {
	content: "";
	width: 0.75em;
	aspect-ratio: 1 / 1;
	display: block;
	background-color: var(--base-font-color);
	margin-top: 0.15em;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*heading*/
* + .wp-block-heading {
	margin-top: 1.5em;
}
.wp-block-heading {
	font-weight: var(--semibold-font-weight);
	line-height: 1.4;
	margin-bottom: 0.75em;
}
h1.wp-block-heading {
	font-size: 2.5em;
}
h2.wp-block-heading {
	color: var(--main-color);
	font-size: clamp(1.625rem, calc(1.098rem + 2.247vw), 2.25rem); /* min: 26px, max: 36px */
	line-height: 1.4;
	padding-bottom: 0.75em;
	border-bottom: 3px solid var(--sub-color);
	margin-bottom: 1.5em;
}
h3.wp-block-heading {
	color: #fff;
	font-size: 1.375em;
	padding: 0.5em 0.75em;
	background: var(--sub-color);
	margin-bottom: 1.5em;
}
h4.wp-block-heading {
	color: var(--main-color);
	font-size: 1.125em;
	margin-left: 1.5em;
	margin-bottom: 0.5em;
	position: relative;
}
h4.wp-block-heading::before {
	content: "";
	width: 1em;
	aspect-ratio: 1 / 1;
	background: var(--sub-color);
	position: absolute;
	top: 0.25em;
	left: -1.5em;
	z-index: 1;
}
h5.wp-block-heading {
	font-size: 1em;
}
h6.wp-block-heading {
	font-size: 0.85em;
}

/*p*/
.entry-content p + p {
	margin-top: 1em;
}
.entry-content .is-layout-flex > p + p {
	margin-top: 0;
}

/*Hr*/
hr,
.wp-block-separator {
	width: 100%;
	max-width: 500px;
	height: 1px;
	border: none;
	background-color: var(--base-font-color);
	margin: 10vh auto;
}
.wp-block-separator.is-style-dots:before {
	font-size: 3em;
	letter-spacing: 1em;
	padding-left: 1em;
}
@media only screen and (max-width: 820px) {
	hr,
	.wp-block-separator {
		width: 50%;
	}
}

/*Table*/
.wp-block-table table,
.entry-content table {
	width: 100%;
}
.wp-element-caption,
.entry-content .caption,
.wp-block-flexible-table-block-table figcaption {
	color: var(--base-font-color);
	opacity: 0.7;
	padding: 0.5em 0;
}
.wp-block-table thead th {
	border-bottom: none;
}
.wp-block-table th,
.wp-block-table td,
.entry-content th,
.entry-content td {
	text-align: left;
	vertical-align: top;
	border: none;
	padding-block: 1.25em !important;
	background: transparent !important;
	position: relative;
}
.wp-block-table th,
.entry-content th {
	color: var(--dark-color) !important;
	border-bottom: 1px solid var(--dark-color) !important;
}
.wp-block-table td,
.entry-content td {
	border-bottom: 1px solid rgba(31, 40, 109, 0.25) !important;
}
.wp-block-table th,
.wp-block-table td strong,
.entry-content th {
	color: var(--dark-color);
}
.wp-block-table.is-style-stripes .wp-element-caption {
	border-top: 2px solid;
}
@media only screen and (max-width: 820px) {
	.wp-block-table table {
		min-width: 650px;
		overflow-x: auto;
	}
}
/*Flexible-Table*/
.wp-block-flexible-table-block-table figcaption {
	color: var(--base-font-color);
	opacity: 0.7;
	padding: 0.5em 0;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
	border-top: none;
	border-left: none;
	border-right: none;
}

/*List*/
ul.wp-block-list,
ol.wp-block-list,
ul.list,
ol.list {
	margin: 0.5em 0 0.5em 1.5em;
}
ul.wp-block-list li,
ol.wp-block-list li,
ul.list li,
ol.list li {
	position: relative;
}
ul.wp-block-list li + li,
ol.wp-block-list li + li,
ul.list li + li,
ol.list li + li {
	margin-top: 0.25em;
}
ul.wp-block-list li::before,
ul.list li::before {
	position: absolute;
	content: "";
	background: var(--sub-color);
	width: 1rem;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	top: 0.525em;
	left: -1.25em;
}

/*List - note*/
ul.note {
	list-style: none;
}
ul.note.center {
	width: fit-content;
	margin: auto;
}
ul.note li {
	padding-left: 0.25em;
}
ul.note li:before {
	content: "※";
	margin-right: 0.5em;
	background: none;
	top: 0.2em;
	left: -1em;
}

/*wp-block-file*/
.wp-block-file {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 0.5em;
	padding-block: 1em;
	border-top: 1px solid var(--gray-color);
	border-bottom: 1px solid var(--gray-color);
}
.wp-block-file:has(object) {
	display: block;
}
.wp-block-file + .wp-block-file {
	border-top: none;
}
.wp-block-file:not(.wp-element-button) {
	font-size: 1em;
}
.wp-block-file * + .wp-block-file__button {
	font-size: 0.9em;
	background: var(--base-font-color);
	padding: 0.25em 1em;
}
.wp-block-file a:hover {
	text-decoration: none;
}

/*blockquote*/
blockquote {
	position: relative;
	padding: 3em 2em;
	background: #f5f5f5;
	margin-block: 1em;
}
blockquote cite {
	display: block;
	font-size: 0.8rem;
	text-align: right;
	color: #808080;
	padding-right: 20px;
}

/*wp-block-cover*/
.wp-block-cover {
	padding: 3.5%;
	border-radius: 20px;
}
@media only screen and (max-width: 600px) {
	.wp-block-cover {
		padding: 40px 30px;
	}
}

/*wp-block-media-text*/
@media only screen and (max-width: 600px) {
	.wp-block-media-text .wp-block-media-text__content {
		margin: 0;
		padding: 1em 0;
	}
}
/*wp-block-spacer*/
@media only screen and (max-width: 600px) {
	.wp-block-spacer {
		max-height: 75px;
	}
}
.wp-block-spacer

/*image*/
.wp-block-image {
	margin-bottom: 1em;
}

/* =========================================================================================
FORM
=========================================================================================*/
.grecaptcha-badge {
	visibility: hidden;
} /*reCAPTCHAバッジ（ロゴマーク）を消す ※設定がうまくいったことを確認してからこのCSSを有効化すること*/

.entry-content form {
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}
.entry-content form ::placeholder {
	color: #ccc;
}
.entry-content form input[type="text"],
.entry-content form input[type="tel"],
.entry-content form input[type="email"],
.entry-content form textarea,
.entry-content form select {
	width: 100%;
	background: #eeeeef;
	border: 1px solid var(--gray-color);
	padding: 0.75em 1em;
	transition: 0.3s;
}
.entry-content form input:focus,
.entry-content form textarea:focus {
	border: 1px solid var(--gray-color);
}
.entry-content form .wpcf7-radio {
	/*ラジオボタンの位置調整*/
	margin-top: 1em;
	display: block;
}
.entry-content form .wpcf7-radio .wpcf7-list-item.first {
	/*ラジオボタンの一番最初のmargin調整*/
	margin: 0;
}
.entry-content form select {
	width: fit-content;
	min-width: 300px;
	padding-right: 4em;
	background: #fff url(images/common/icon_dropdown.svg) no-repeat;
	background-position: right 1em center;
	background-size: 1em;
}
.entry-content form .post-add input {
	max-width: 150px;
}
.entry-content form .select-pref select {
	min-width: 100px;
}
.entry-content form input[type="submit"],
.entry-content form input[type="button"] {
	color: #fff;
	font-weight: var(--bold-font-weight);
	background-color: var(--base-font-color);
	padding: 0.75em 1.5em;
	line-height: 1.4;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
	border-radius: 100px;
	min-width: 320px;
	border: none;
	transition: 0.3s;
}
.entry-content form input[type="submit"] {
	background-color: var(--main-color);
}
.entry-content form input[type="button"] {
	background-color: var(--gray-color);
}
.entry-content form input[type="submit"]:hover,
.entry-content form input[type="button"]:hover {
	opacity: 0.8;
}
.entry-content form .btn-area {
	margin-top: 3em;
}
.entry-content form .btn-area p {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
	position: relative;
	width: 100%;
}
.entry-content form .btn-area p br {
	display: none;
}
.entry-content form .btn-area .wpcf7-spinner {
	position: absolute;
	right: -80px;
	top: 30%;
}
@media only screen and (max-width: 820px) {
	.entry-content form .btn-area {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 800px;
	}
	.entry-content form .btn-area p {
		position: relative;
	}
	.entry-content form .btn-area .wpcf7-spinner {
		position: absolute;
		right: -80px;
		top: 30%;
	}
}
@media only screen and (max-width: 468px) {
	.entry-content form input[type="submit"],
	.entry-content form input[type="button"] {
		width: 100%;
		min-width: 100%;
	}
}

/*問い合わせ画面*/
.entry-content .contact-bg {
	padding-block: 50px 0;
	margin: 0;
}
.entry-content .contact-bg .privacy {
	text-align: center;
	margin-bottom: 2em;
}
.entry-content .contact-bg .privacy .wpcf7-list-item {
	margin: 0;
}
.entry-content .contact-bg .privacy a {
	text-decoration: underline;
}
.entry-content .contact-bg .center {
	text-align: center;
	margin-top: 3em;
}
.entry-content form dl {
	width: 100%;
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px 20px;
	padding-bottom: 70px;
	margin: 0 auto;
}
.entry-content form dt {
	font-weight: var(--normal-font-weight);
	text-align: left;
	line-height: 1.6;
}
.entry-content form dt label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.875em;
}
.entry-content form dt span {
	font-size: small;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
	display: inline-block;
	background: var(--attention-color);
	border-radius: 2px;
	padding: 0.6em 0.25em 0.5em;
	margin-left: 0.5em;
}
.entry-content form dd p {
	display: block;
}
.entry-content form small {
	display: block;
	line-height: 1.7;
}

@media only screen and (max-width: 820px) {
	.entry-content .contact-bg {
		padding: 20px 0;
	}
	.entry-content form dl {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}
	.entry-content form dt {
		text-align: left;
		width: 100%;
	}
	.entry-content form dt label {
		justify-content: left;
	}
	.entry-content form dt span {
		font-size: 0.8rem;
		padding: 0.15em 0.2em 0.2em;
		margin-left: 0.75em;
	}
	.entry-content form dd {
		width: 100%;
		margin-bottom: 1em;
	}
}
@media only screen and (max-width: 468px) {
}

/*入力確認画面*/
.entry-content .confirm-bg {
	width: 100%;
	max-width: 680px;
	padding: 0;
	margin: 0 auto;
}
.entry-content .confirm-bg .center {
	text-align: center;
	margin-top: 3em;
}
.entry-content form .confirm-bg dl {
	width: 100%;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
	padding-bottom: 40px;
}
.entry-content form .confirm-bg dt,
.entry-content form .confirm-bg dd {
	font-weight: var(--normal-font-weight);
	text-align: left;
	line-height: 1.6;
	border-bottom: 1px solid var(--gray-color);
	padding: 1em;
	margin: 0;
}
.entry-content form .confirm-bg dt {
	font-weight: var(--bold-font-weight);
}

@media only screen and (max-width: 820px) {
	.entry-content form .confirm-bg dl {
		display: flex;
		flex-wrap: wrap;
	}
	.entry-content form .confirm-bg dt {
		border-bottom: none;
		padding-bottom: 0;
	}
}
@media only screen and (max-width: 468px) {
}

/*送信完了画面*/
body.contact-completion .entry-content .inner {
	max-width: var(--small-contents-width);
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Parts (BANNER)
=========================================================================================*/
.parts-banner {
	padding-block: 100px;
	margin: 0;
}
.parts-banner ul {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: left;
	gap: 40px;
}
.parts-banner li {
	width: calc((100% - 40px - 40px) / 3);
}
.parts-banner li img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 270 / 80;
}
@media only screen and (max-width: 820px) {
	.parts-banner {
		padding-block: 75px;
		margin: 0;
	}
	.parts-banner ul {
		gap: 30px;
	}
	.parts-banner li {
		width: calc((100% - 30px) / 2);
	}
}
@media only screen and (max-width: 468px) {
	.parts-banner {
		padding-block: 50px;
		margin: 0;
	}
	.parts-banner ul {
		gap: 20px;
	}
	.parts-banner li {
		width: calc((100% - 20px) / 2);
	}
}
