@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: initial;
	outline: initial;
	-webkit-tap-highlight-color: rgb(0, 0, 0, 0);
}

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

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, cite, em, small, i, img, picture, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, tr, th, td, hr, input, textarea, select, button,
main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	color: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

iframe, cite, main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, audio, video {
	display: block;
}

body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

iframe {
	max-width: 100%;
}

a {
	display: inline-block;
	text-decoration: initial;
}

img {
	max-width: 100%;
	height: initial;
	vertical-align: middle;
	flex: none;
	image-rendering: -webkit-optimize-contrast;
}

svg {
	overflow: hidden;
	max-width: 100%;
	vertical-align: middle;
	flex: none;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: initial;
}

input, textarea, select, button {
	border-radius: 0;
	background: initial;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	-webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
button {
	cursor: pointer;
}

input[type="file"] {
	font-size: initial;
}

input[type="file"]::-webkit-file-upload-button {
	font-family: inherit;
}

textarea {
	overflow: auto;
	overflow-wrap: anywhere;
	field-sizing: content;
	resize: vertical;
}

time {
	display: inline-block;
}

video {
	max-width: 100%;
	cursor: pointer;
	object-fit: cover;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@font-face {
	font-weight: 400;
	font-family: "Yu Gothic";
	src: local("YuGothic-Medium");
}

@font-face {
	font-weight: 500;
	font-family: "Yu Gothic";
	src: local("YuGothic-Medium");
}

@font-face {
	font-weight: 600;
	font-family: "Yu Gothic";
	src: local("YuGothic-Bold");
}

@font-face {
	font-weight: 700;
	font-family: "Yu Gothic";
	src: local("YuGothic-Bold");
}

@font-face {
	font-weight: 400;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W3");
}

@font-face {
	font-weight: 500;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W4");
}

@font-face {
	font-weight: 600;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W5");
}

@font-face {
	font-weight: 700;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W6");
}

:root {
	--color_text:              #2d4052;
	--color_main:              #31aa27;
	--color_main_rgb:          49, 170, 39;
	--color_sub:               #dbeaf5;
	--color_sub_light:         #f2f8fc;

	--font_main:               "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
	--font_en:                 "Helvetica Neue", Arial, Roboto, var(--font_main);

	--opacity:                 0.7;
	--content-width:           1200px;
	--content-width_small:     1000px;
	--content-width_large:     1200px;
	--padding-inline:          5.4vw;
	--padding-inline_negative: calc(var(--padding-inline) * -1);
	--padding-block:           60px;
	--padding-block_negative:  calc(var(--padding-block) * -1);
	--padding-block_half:      calc(var(--padding-block) / 2);
	--padding-block_medium:    calc(var(--padding-block) / 3 * 2);
	--border-radius:           20px;
	--transition:              0.3s ease-in-out;
	--transition_img:          0.4s ease-in-out;
	--brightness:              brightness(1.2);
}

@media (min-width: 768px) {
:root {
	--padding-inline:          30px;
	--padding-block:           120px;
}
}

body {
	overflow: hidden scroll;
	color: var(--color_text);
	font-size: 16px;
	font-family: var(--font_main);
	line-height: 1.8;
}

article {
	overflow: clip;
}

section,
.section {
	padding-block: var(--padding-block);
}

section {
	position: relative;
	border-radius: var(--border-radius);
	background: #fff;
}

section + section::before {
	position: absolute;
	inset: calc(var(--border-radius) * -1) 0 var(--border-radius) 0;
	z-index: -1;
	background: inherit;
	content: "";
}

.inner {
	width: 100%;
	max-width: calc(var(--content-width) + var(--padding-inline) * 2);
	margin-inline: auto;
	padding-inline: var(--padding-inline);
}

span:not([class]) {
	display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
}

p:not([class]) + p:not([class]) {
	margin-top: 1.5em;
}

a,
input[type="button"],
input[type="submit"],
button {
	transition: visibility var(--transition), opacity var(--transition), border var(--transition), background var(--transition), color var(--transition), text-decoration var(--transition), filter var(--transition);
}

a::before,
a::after,
button::before,
button::after {
	transition: transform var(--transition);
}

table {
	width: 100%;
}

th {
	font-weight: 500;
	text-align: left;
	vertical-align: top;
}

td {
	text-align: left;
	vertical-align: top;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="search"],
input[type="password"],
input[type="file"] {
	width: 100%;
}

select {
	width: 100%;
	max-width: fit-content;
}

input[type="file"]::-webkit-file-upload-button {
	margin-right: 0.6em;
}

input[type="checkbox"],
input[type="radio"] {
	width: 1em;
	height: 1em;
}

textarea {
	width: 100%;
}

@media (min-width: 768px) {
a[href^="tel:"] {
	pointer-events: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes fade-up {
0% {
	opacity: 0;
	transform: translateY(30px);
}

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

@keyframes fade-down {
0% {
	opacity: 0;
	transform: translateY(-30px);
}

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

@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-zoom-in {
0% {
	opacity: 0;
	transform: scale(0.9);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes fade-zoom-out {
0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes show-down {
0% {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

@keyframes show-left {
0% {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

.animation {
	animation-duration: 0.6s;
	animation-timing-function: ease-in-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-down,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
	opacity: 0;
}

.show-down {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

.show-left {
	animation-timing-function: cubic-bezier(0.5, 0.1, 0.5, 1);
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

body._load .animation.fade {
	animation-name: fade;
}

body._load .animation.fade-up {
	animation-name: fade-up;
}

body._load .animation.fade-down {
	animation-name: fade-down;
}

body._load .animation.fade-right {
	animation-name: fade-right;
}

body._load .animation.fade-left {
	animation-name: fade-left;
}

body._load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
}

body._load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
}

body._load .animation.show-down {
	animation-name: show-down;
}

body._load .animation.show-left {
	animation-name: show-left;
}

.delay04 {
	animation-delay: 0.4s;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay06 {
	animation-delay: 0.6s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay08 {
	animation-delay: 0.8s;
}

.delay09 {
	animation-delay: 0.9s;
}

.delay12 {
	animation-delay: 1.2s;
}

@media (min-width: 768px) {
@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-header {
	position: relative;
	z-index: 1;
	margin-bottom: calc(var(--padding-block_medium) - var(--padding-block));
	padding-block: calc(var(--padding-block_medium) * 0.7) var(--padding-block_medium);
}

.page-header::before {
	position: absolute;
	inset: 0 var(--padding-inline);
	max-width: var(--content-width);
	margin-inline: auto;
	border-bottom: 1px solid;
	content: "";
}

.page-header .inner {
	display: grid;
	gap: 1em 3em;
}

.page-heading {
	font-weight: 700;
	font-size: 32px;
	line-height: 1.5;
}

.page-heading-en {
	display: block;
	margin-bottom: 0.2em;
	color: var(--color_main);
	font-size: 14px;
	font-family: var(--font_en);
	text-transform: capitalize;
}

.page-heading-ja {
	display: block;
}

.heading_enja {
	margin-bottom: 0.5em;
	font-size: clamp(48px, calc(100vw * 64 / 768), 96px);
}

.heading_enja-en {
	display: block;
	margin-bottom: 0.2em;
	font-family: var(--font_en);
	line-height: 1;
}

.heading_enja-ja {
	display: block;
	color: var(--color_main);
	font-size: clamp(20px, calc(100vw * 26 / 768), 32px);
}

.heading_large {
	margin-bottom: 1.4em;
	font-size: 24px;
}

.heading_large._center {
	text-align: center;
}

.heading-en {
	display: block;
	font-family: var(--font_en);
}

.heading-ja {
	display: block;
}

@media (min-width: 768px) {
.page-header .inner {
	grid-template-columns: auto 1fr;
	align-items: end;
}

.page-heading {
	font-size: 40px;
}

.heading_large {
	font-size: 36px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.link_underline {
	text-decoration: underline;
}

.link_underline:hover {
	color: var(--color_main);
	text-decoration-color: transparent;
}

.button {
	display: flex;
	position: relative;
	width: fit-content;
	min-width: 15em;
	height: 3.3em;
	margin-top: 35px;
	padding-inline: 1em;
	border: 1px solid;
	border-radius: 100vw;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	transition: var(--transition);
	column-gap: 1em;
	justify-content: center;
	align-items: center;
}

.button._center {
	margin-inline: auto;
}

.button:first-child {
	margin-top: initial;
}

a:hover .button,
.button:hover {
	background: rgb(255, 255, 255, var(--opacity));
	color: var(--color_main);
}

.button::after {
	width: 1.1em;
	height: 1.1em;
	border-radius: 50%;
	background: var(--color_main);
	content: "";
	-webkit-mask: url("../img/common/arrow.svg") center center / contain no-repeat;
	mask: url("../img/common/arrow.svg") center center / contain no-repeat;
	transition: transform var(--transition);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.ol,
.ul {
	margin-block: 1em;
	line-height: 1.5;
}

.ol {
	counter-reset: number;
}

.ol:first-child,
.ul:first-child {
	margin-top: initial;
}

.ol:last-child,
.ul:last-child {
	margin-bottom: initial;
}

.ol > li,
.ul > li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1.2em;
}

.ol > li {
	counter-increment: number;
}

.ol > li:last-child,
.ul > li:last-child {
	margin-bottom: initial;
}

.ol > li::before,
.ul > li::before {
	position: absolute;
	inset: 0 auto auto 0;
}

.ol > li::before {
	content: counter(number) ".";
}

.ul > li::before {
	content: "・";
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
テーブル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.table tr {
	border-bottom: 1px solid var(--color_sub);
}

.table th {
	padding-block: 1.1em 0.5em;
}

.table tr:first-child th {
	padding-top: initial;
}

.table td {
	padding: 0 0 1.1em 1em;
}

.table a:hover {
	color: var(--color_main);
}

@media (min-width: 768px) {
.table th {
	width: 28%;
	padding: 1.1em 2em 1.1em 0;
	white-space: nowrap;
}

.table td {
	padding: 1.1em 0;
}

.table tr:first-child td {
	padding-top: initial;
}
}

@media (max-width: 767.9px) {
.table th {
	display: block;
}

.table td {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.color_main {
	color: var(--color_main);
}

.weight_700 {
	font-weight: 700;
}

.align_center {
	text-align: center;
}

.align_left {
	text-align: left;
}

.align_right {
	text-align: right;
}

.block_center {
	width: fit-content;
	margin-inline: auto;
}

.wrap {
	overflow-wrap: anywhere;
}

.section-description {
	margin-bottom: 50px;
	text-align: center;
}

@media (min-width: 768px) {
.section-description {
	margin-bottom: 80px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アコーディオン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.accordion-toggle {
	position: relative;
	padding-right: 1.2em;
	cursor: pointer;
	transition: color var(--transition);
	user-select: none;
}

.accordion-toggle:hover {
	color: var(--color_main);
}

.accordion-icon {
	position: absolute;
	inset: 0.55em 0 auto auto;
	width: 0.8em;
	height: 0.8em;
}

.accordion-icon::before,
.accordion-icon::after {
	position: absolute;
	inset: 0;
	height: 0;
	margin-block: auto;
	border-top: 1.5px solid;
	content: "";
	transition: transform var(--transition);
}

.accordion-toggle:not(._open) .accordion-icon::after {
	transform: rotate(-90deg);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 10;
	background: #fff;
	transition: 0.5s ease-in-out;
	justify-content: center;
	align-items: center;
}

.loader._hide {
	visibility: hidden;
	opacity: 0;
}

@keyframes loader {
0% {
	transform: scaleX(0);
}

100% {
	transform: scaleX(1);
}
}

.loader-bar {
	width: 100%;
	border-top: 1px solid var(--color_sub);
	transform: scaleX(0);
	transform-origin: left center;
	animation: loader 3s ease-in-out both;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	position: relative;
	z-index: 3;
	height: 80px;
}

.header-inner {
	display: grid;
	position: fixed;
	inset: 10px 10px auto;
	width: initial;
	height: 60px;
	border-radius: 8px;
	background: #fff;
	grid-template-columns: auto max-content;
	column-gap: 2em;
	justify-content: space-between;
	align-items: center;
}

.header-logo:hover {
	filter: var(--brightness);
}

.header-menu-ul {
	font-weight: 500;
}

.header-menu-li._current a,
.header-menu-li a:hover {
	color: var(--color_main);
}

.header-contact {
	min-width: initial;
	background: var(--color_main);
	color: #fff;
}

.header-contact:hover {
	background: var(--color_text);
	color: #fff;
}

.header-contact::after {
	background: #fff;
}

@media (min-width: 1200px) {
header {
	height: 140px;
}

.header-inner {
	inset: 35px var(--padding-inline) auto;
	height: 82px;
	border: 1px solid #f5f2ec;
	border-radius: 100vw;
	box-shadow: 0 0 4px rgb(29, 74, 24, 0.1);
}

.header-nav {
	display: flex;
	column-gap: 2em;
	align-items: center;
}

.header-menu-ul {
	display: flex;
	column-gap: 2em;
}

.header-contact {
	margin-top: initial;
}

.header-toggle {
	display: none;
}
}

@media (max-width: 1199.9px) {
.header-overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	inset: 0;
	background: var(--color_sub);
	transition: var(--transition);
}

header._open .header-overlay {
	visibility: initial;
	opacity: 0.5;
}

.header-inner {
	padding-inline: 20px 2px;
}

.header-logo {
	z-index: 1;
}

.header-nav {
	overflow-y: auto;
	position: fixed;
	inset: 10px;
	padding: 75px var(--padding-inline);
	border-radius: 8px;
	background: #fff;
	transition: clip-path var(--transition);
	overscroll-behavior: contain;
	-webkit-clip-path: inset(0 0 100% 0);
	clip-path: inset(0 0 100% 0);
}

header._open .header-nav {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}

.header-menu-li {
	margin-bottom: 1.2em;
	text-align: center;
}

.header-contact {
	margin-inline: auto;
}

.header-toggle {
	position: relative;
	height: 100%;
	color: var(--color_main);
	cursor: pointer;
	aspect-ratio: 1;
	transition: var(--transition);
}

.header-toggle:hover {
	filter: var(--brightness);
}

.header-toggle-bar {
	position: absolute;
	inset-inline: 30%;
	border-top: 2px solid;
	transition: var(--transition);
}

.header-toggle-bar:nth-child(1) {
	top: 40%;
}

.header-toggle-bar:nth-child(2) {
	top: 58%;
}

header._open .header-toggle-bar:nth-child(1) {
	top: 49%;
	transform: rotate(-45deg);
}

header._open .header-toggle-bar:nth-child(2) {
	top: 49%;
	transform: rotate(45deg);
}
}

@media (max-width: 767.9px) {
.header-logo img {
	width: 160px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- メイン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-main {
	padding-block: 60px 35px;
	background: var(--color_sub_light);
	text-align: center;
}

.footer-logo:hover {
	filter: var(--brightness);
}

.footer-address {
	margin-block: 0.8em 1.9em;
}

.footer-address a:hover {
	color: var(--color_main);
}

.footer-menu-ul {
	display: flex;
	font-weight: 700;
	gap: 1.4em 2em;
	flex-flow: column;
	justify-content: center;
}

.footer-menu-li._current a,
.footer-menu-li a:hover {
	color: var(--color_main);
}

@media (min-width: 768px) {
.footer-menu-ul {
	flex-flow: wrap;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- サブ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-sub {
	background: var(--color_sub_light);
}

.footer-sub .content {
	display: flex;
	padding-block: 1.7em;
	border-top: 1px solid;
	font-size: 13px;
	justify-content: space-between;
	align-items: center;
}

.page-top {
	display: grid;
	cursor: pointer;
	transition: var(--transition);
	grid-template-columns: auto auto;
	column-gap: 0.5em;
	align-items: center;
}

.page-top:hover {
	color: var(--color_main);
}

.page-top img {
	transform: rotate(-90deg);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
パンくずリスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.breadcrumb {
	position: relative;
	z-index: 1;
	font-size: 13px;
}

.breadcrumb .inner {
	overflow: auto;
	padding-bottom: 1.2em;
}

.breadcrumb-ul {
	display: flex;
	width: max-content;
}

.breadcrumb-li {
	display: flex;
	align-items: center;
}

.breadcrumb-li:not(:last-child)::after {
	width: 1.2em;
	margin-inline: 0.4em 0.6em;
	border-top: 1px solid;
	content: "";
	transform: rotate(-45deg);
}

.breadcrumb-li a {
	color: #999;
}

.breadcrumb-li a:hover {
	color: var(--color_main);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
投稿
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-image {
	overflow: hidden;
	background: #fff;
}

.post-image .wp-post-image {
	width: 100%;
	height: 100%;
	background: var(--color_sub_light);
	object-fit: cover;
	aspect-ratio: 4 / 3;
	transition: var(--transition_img);
}

.post-info {
	display: flex;
	gap: 0.6em 1em;
	flex-flow: wrap;
	align-items: center;
}

.post-category-ul {
	display: flex;
	gap: 0.6em;
	flex-flow: wrap;
}

.post-category {
	display: block;
	position: relative;
	z-index: 1;
	width: fit-content;
	padding-inline: 0.8em;
	border: 1px solid var(--color_text);
	border-radius: 100vw;
	font-size: 0.9em;
	line-height: 1.5;
}

.post-category:not(:hover) {
	background: var(--color_text);
	color: #fff;
}

.post-tag-ul {
	display: flex;
	margin-top: var(--padding-block_half);
	font-size: 0.9em;
	gap: 0.6em;
	flex-flow: wrap;
}

.post-tag {
	opacity: 0.5;
	position: relative;
	z-index: 1;
}

.post-tag:hover {
	opacity: 1;
	color: var(--color_main);
}

.post-tag::before {
	content: "#";
}

.post-li {
	display: grid;
	position: relative;
	margin-bottom: 1em;
	gap: 0.3em 2em;
}

.post-li:last-child {
	margin-bottom: initial;
}

.post-li:hover .wp-post-image {
	transform: scale(1.1);
	filter: brightness(0.9);
}

.post-li .post-text {
	margin-top: 1em;
}

.post-li .post-heading {
	font-weight: inherit;
}

.post-li:hover .post-heading {
	color: var(--color_main);
}

.post-li .post-link {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.post-li .post-link::before {
	position: absolute;
	inset: 0;
	content: "";
}

.post-li .post-content {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.single-main .post-info {
	margin-bottom: 1em;
}

@media (min-width: 768px) {
.post-li {
	grid-template-columns: auto 1fr;
	align-items: center;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アサイド
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.aside {
	display: grid;
	padding-bottom: var(--padding-block);
	row-gap: 40px;
}

.aside-heading {
	margin-bottom: 0.5em;
	font-size: 1.1em;
}

.aside-post-li {
	font-size: 0.9em;
	grid-template-columns: none;
}

.aside-category-li {
	margin-top: 0.2em;
}

.aside-category-li._current a,
.aside-category-li a:hover {
	color: var(--color_main);
}

.aside-subcategory-ul {
	margin-left: 1em;
	font-size: 0.9em;
}

.aside-date-year-ul {
	width: fit-content;
	text-align: right;
}

.aside-date-year-li {
	margin-top: 1em;
}

.aside-date-month-ul {
	padding-right: 1.2em;
}

.aside-date-month-li {
	margin-top: 0.2em;
}

.aside-date-month-li._current a,
.aside-date-month-li a:hover {
	color: var(--color_main);
}

@media (min-width: 1024px) {
.aside-container {
	display: grid;
	grid-template-columns: 1fr 240px;
	column-gap: 5%;
	align-items: start;
}

.aside {
	position: sticky;
	top: var(--padding-block_medium);
	padding-top: var(--padding-block);
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページネーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-page-ul {
	display: flex;
	margin-top: var(--padding-block);
	font-size: 1.1em;
	font-family: var(--font_en);
	column-gap: 0.5em;
	justify-content: center;
}

.post-page-prev {
	transform: scaleX(-1);
}

.post-page-li a {
	display: flex;
	min-width: 2em;
	height: 2em;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
}

.post-page-li._current a {
	background: var(--color_main);
	color: #fff;
	pointer-events: none;
}

.post-page-li a:hover {
	color: var(--color_main);
}

.post-page-prev a::before,
.post-page-next a::before {
	width: 0.6em;
	height: 0.6em;
	border-top: 1.5px solid;
	border-right: 1.5px solid;
	content: "";
	transform: rotate(45deg);
}

.post-page-prev a:hover::before,
.post-page-next a:hover::before {
	transform: translateX(4px) rotate(45deg);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ナビゲーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-nav-ul {
	display: flex;
	margin-top: var(--padding-block_half);
	column-gap: 9%;
	justify-content: center;
	align-items: center;
}

.post-nav-li._disabled {
	visibility: hidden;
}

.post-nav-li a {
	display: grid;
	grid-template-columns: auto auto;
	column-gap: 0.5em;
	align-items: center;
}

.post-nav-li a:hover {
	color: var(--color_main);
}

.post-nav-prev a::before,
.post-nav-next a::after {
	width: 0.6em;
	height: 0.6em;
	border-top: 1.5px solid;
	border-right: 1.5px solid;
	content: "";
}

.post-nav-prev a::before {
	transform: rotate(-135deg);
}

.post-nav-next a::after {
	transform: rotate(45deg);
}

.post-nav-prev a:hover::before {
	transform: translateX(-4px) rotate(-135deg);
}

.post-nav-next a:hover::after {
	transform: translateX(4px) rotate(45deg);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フォーム
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.form-section {
	--content-width: var(--content-width_small);
}

.form-table th {
	padding-bottom: 0.5em;
	white-space: nowrap;
}

.form-required::after {
	display: inline-block;
	margin-left: 0.7em;
	padding-inline: 0.4em;
	border-radius: 3px;
	background: var(--color_main);
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
	content: "必須";
}

.form-table td {
	padding-bottom: 1.5em;
}

.form-table tr:last-child td {
	padding-bottom: initial;
}

.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="tel"],
.form-table input[type="url"],
.form-table input[type="date"],
.form-table select {
	height: 3.7em;
	padding-inline: 1em;
	border: 1px solid;
	border-radius: 10px;
}

.form-table textarea {
	height: 250px;
	min-height: 3.7em;
	padding: 1em;
	border: 1px solid;
	border-radius: 10px;
}

.form-privacy {
	margin-top: 3em;
}

.form-privacy-detail {
	overflow-y: auto;
	height: 250px;
	padding: 1em;
	border: 1px solid;
	border-radius: 10px;
	font-size: 15px;
}

.form-privacy-detail dt {
	margin-block: 1em 0.5em;
}

.form-privacy-description {
	width: fit-content;
	margin: 1.2em auto 0;
}

.wpcf7 {
	position: relative;
}

.wpcf7-checkbox,
.wpcf7-radio {
	display: flex;
	gap: 0.5em 2em;
	flex-flow: wrap;
}

.wpcf7-list-item {
	margin: initial;
}

.wpcf7-list-item label {
	display: grid;
	grid-template-columns: auto auto;
	column-gap: 0.5em;
}

.wpcf7-list-item input {
	transform: translateY(0.5em);
}

.wpcf7-acceptance {
	display: block;
	width: fit-content;
	margin: 1em auto 0;
}

.form-button:has(.wpcf7-submit:disabled) {
	opacity: 0.5;
	filter: grayscale(1);
	pointer-events: none;
}

.wpcf7-submit {
	opacity: 0;
	position: absolute;
	inset: 0;
	z-index: 1;
}

.wpcf7-not-valid-tip {
	margin-top: 0.5em;
	font-weight: inherit;
	font-size: 0.9em;
}

.wpcf7-spinner {
	position: absolute;
	inset: auto 0 -40px;
	margin-inline: auto;
}

.wpcf7-response-output {
	width: fit-content;
	margin: 1.5em auto 0 !important;
	padding: initial !important;
	border: initial !important;
	color: #dc3232;
	font-size: 0.9em;
}

@media (min-width: 768px) {
.form-table th {
	width: 30%;
	padding-top: 0.8em;
	padding-right: 2em;
}

.form-table td {
	padding-bottom: 1em;
}

.wpcf7-checkbox,
.wpcf7-radio {
	padding-top: 0.8em;
}

.wpcf7-response-output {
	padding-left: 30% !important;
}
}

@media (max-width: 767.9px) {
.form-table th {
	display: block;
}

.form-table td {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
お問い合わせ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.contact-section {
	padding-top: initial;
}

.contact-section .content {
	display: grid;
	position: relative;
	z-index: 0;
	height: clamp(300px, calc(100vw * 373 / 768), 373px);
	grid-template-columns: minmax(auto, 900px);
	place-content: center;
}

.contact-section .img {
	position: absolute;
	inset: 0 auto auto 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
	object-position: 45% center;
}

.contact-section .text {
	padding-inline: var(--padding-inline);
}

.contact-section .heading-ja {
	margin-bottom: 0.2em;
	color: var(--color_main);
	font-size: 14px;
}

.contact-section .heading-en {
	font-size: 40px;
	line-height: 1;
}

@media (max-width: 767.9px) {
.contact-section .button {
	background: rgb(255, 255, 255, var(--opacity));
}
}
