@charset "utf-8";

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: none;
	outline: none;
	-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 {
	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: none;
}

img {
	max-width: 100%;
	height: auto;
	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;
	list-style-type: none;
}

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

input, textarea, select, button {
	border-radius: 0;
	background: none;
	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: revert;
}

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

textarea {
	overflow: auto;
	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:              #46554c;
	--color_main:              #6eb7b5;
	--color_main_rgb:          110, 183, 181;
	--color_main_light:        #d2e5e5;
	--color_sub:               #a3c1d1;
	--color_sub_light:         #c6d8e0;
	--color_ivory:             #fdfcf8;
	--color_gray:              #ccccc0;

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

	--opacity:                 0.7;
	--content-width:           1180px;
	--content-width_small:     1000px;
	--content-width_medium:    1180px;
	--content-width_large:     1440px;
	--padding-inline:          5.4vw;
	--padding-inline_negative: calc(var(--padding-inline) * -1);
	--padding-block:           60px;
	--padding-block_half:      calc(var(--padding-block) / 2);
	--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:           110px;
}
}

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

.body-inner {
	overflow: hidden;
}

article {
	overflow: hidden;
}

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

.inner {
	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: var(--transition);
}

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

table {
	width: 100%;
	line-height: 1.5;
}

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

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

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

input[type="file"],
select {
	max-width: 100%;
}

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

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

textarea {
	width: 100%;
}

@media (min-width: 768px) {
a[href^="tel:"] {
	color: inherit !important;
	text-decoration: none !important;
	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-bottom {
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-bottom {
	-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-bottom {
	animation-name: show-bottom;
}

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

.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::after {
	display: block;
	position: relative;
	z-index: -1;
	height: min(13.6vw, 196px);
	background: linear-gradient(90deg, #d8e3e8, var(--color_sub));
	content: "";
	transform: translateY(-1px);
	-webkit-mask: url("../img/common/curve_bottom.svg") center bottom / 100% 100% no-repeat;
	mask: url("../img/common/curve_bottom.svg") center bottom / 100% 100% no-repeat;
}

.page-header-content {
	padding-top: clamp(70px, 13.6vw, 196px);
	background: linear-gradient(90deg, #d8e3e8, var(--color_sub));
}

.page-header-shapes .shape01 {
	inset: 39% auto auto -16%;
	max-width: 32%;
}

.page-header-shapes .rabbit01 {
	inset: 39% auto auto 8%;
	max-width: 7%;
}

.page-header-shapes .shape02 {
	inset: 100% 3% auto auto;
	max-width: 19%;
}

.page-header-shapes .rabbit02 {
	inset: 79% 10% auto auto;
	max-width: 9%;
}

.page-heading {
	color: #fff;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.5;
	text-align: center;
}

.heading_enja {
	margin-bottom: 1.5em;
	font-size: 34px;
	text-align: center;
}

.heading_enja-en {
	display: block;
	margin-bottom: 0.4em;
	background: linear-gradient(#8ec6a1, #f1a4a3);
	font-size: 20px;
	font-family: var(--font_english);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.heading_enja-ja {
	display: block;
}

.heading-en {
	display: block;
	margin-bottom: 1.4em;
	background: linear-gradient(#8ec6a1, #f1a4a3);
	font-size: 20px;
	font-family: var(--font_english);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
.page-heading {
	font-size: 46px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.link_underline {
	color: var(--color_main);
	text-decoration: underline;
}

.link_underline:hover {
	text-decoration-color: transparent;
}

.button {
	display: flex;
	position: relative;
	width: fit-content;
	min-width: 13.3em;
	height: 3.5em;
	margin: var(--padding-block) auto 0;
	padding-inline: 3em;
	border: 2px solid var(--color_main);
	border-radius: 100vw;
	background: var(--color_main);
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
	transition: var(--transition);
	justify-content: center;
	align-items: center;
}

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

a:hover .button,
.button:hover {
	background: #fff;
	color: var(--color_main);
}

.button::before {
	position: absolute;
	inset: auto 1em auto auto;
	width: 1.1em;
	height: 1.1em;
	margin: auto;
	border-radius: 50%;
	background: currentColor;
	content: "";
	transition: background var(--transition);
}

.button::after {
	position: absolute;
	inset: auto 1.4em auto auto;
	width: 0.4em;
	height: 0.4em;
	margin: auto;
	border-top: 2px solid var(--color_main);
	border-right: 2px solid var(--color_main);
	content: "";
	transform: rotate(45deg);
	transition: border var(--transition);
}

a:hover .button::after,
.button:hover::after {
	border-color: #fff;
}

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

.ol {
	counter-reset: number;
}

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

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

.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: 0;
}

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

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

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

li._spacer {
	visibility: hidden;
	height: initial;
	min-height: initial; 
	margin-block: initial;
}

li._spacer::before,
li._spacer::after {
	display: none;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
テーブル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.table th {
	padding: 0.5em 1em;
	background: var(--color_main_light);
	white-space: nowrap;
}

.table td {
	padding: 1em;
	background: #fff;
}

.table a {
	color: var(--color_main);
	text-decoration: underline;
}

.table a:hover {
	text-decoration-color: transparent;
}

@media (min-width: 768px) {
.table tr {
	border-bottom: 1px solid var(--color_gray);
}

.table tr:first-child {
	border-top: 1px solid var(--color_gray);
}

.table th {
	padding: 1em 1.5em;
}

.table td {
	padding-inline: 1.5em;
}
}

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

.table td {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.bold {
	font-weight: 700;
	filter: contrast(2);
}

.color {
	color: var(--color_main);
}

.align_center {
	text-align: center;
}

.align_right {
	text-align: right;
}

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

.word_break {
	word-break: break-all;
}

.section_curve {
	padding-block: 0;
}

.section_curve::before {
	display: block;
	height: min(13.3vw, 192px);
	background: var(--color_sub_light);
	content: "";
	transform: translateY(1px);
	-webkit-mask: url("../img/common/curve_top.svg") center top / 100% 100% no-repeat;
	mask: url("../img/common/curve_top.svg") center top / 100% 100% no-repeat;
}

.section_curve:not(:last-child)::after {
	display: block;
	height: min(13.6vw, 196px);
	background: var(--color_sub_light);
	content: "";
	transform: translateY(-1px);
	-webkit-mask: url("../img/common/curve_bottom.svg") center bottom / 100% 100% no-repeat;
	mask: url("../img/common/curve_bottom.svg") center bottom / 100% 100% no-repeat;
}

.section_curve-content {
	background: var(--color_sub_light);
}

.section_curve:last-child .section_curve-content {
	padding-bottom: var(--padding-block);
}

.section-description {
	font-size: 18px;
	text-align: center;
}

*:has(> .shapes) {
	position: relative;
	z-index: 0;
}

.shapes {
	position: absolute;
	inset: 0;
	z-index: -1;
	max-width: var(--content-width_large);
	margin-inline: auto;
}

.shapes img {
	position: absolute;
}

.insert-shapes {
	position: relative;
}

.insert-shapes .shape {
	inset: 0 auto 0 -15%;
	max-width: 41%;
	margin: auto;
}

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

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

.loader-bar {
	position: relative;
	width: 100%;
/*
	border-top: 1px solid var(--color_main_light);
*/
}

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

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

.loader-bar::after {
	position: absolute;
	inset: 0 0 auto;
	border-top: 1px solid var(--color_main_light);
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	animation: loader 3s ease-in-out both;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	--content-width: var(--content-width_large);
	position: relative;
	z-index: 3;
}

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

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

@media (min-width: 1200px) {
header {
	position: fixed;
	inset: 30px 0 auto;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-nav {
	display: flex;
	column-gap: 26px;
}

.header-menu-ul {
	display: flex;
	padding-inline: 3em;
	border: 1px solid var(--color_gray);
	border-radius: 100vw;
	background: #fff;
	column-gap: 28px;
	align-items: center;
}

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

.header-toggle {
	display: none;
}
}

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

header._open .header-overlay {
	visibility: visible;
	opacity: 0.3;
}

.header-logo {
	position: fixed;
	inset: 10px auto auto 20px;
	z-index: 1;
}

.header-nav {
	overflow-y: auto;
	position: fixed;
	inset: 0 0 0 auto;
	width: 100%;
	max-width: 480px;
	padding: 60px var(--padding-inline);
	background: var(--color_ivory);
	transition: transform var(--transition);
	overscroll-behavior: contain;
}

header:not(._open) .header-nav {
	transform: translateX(100%);
}

.header-menu-li {
	border-bottom: 1px solid;
}

.header-menu-li a {
	display: block;
	padding: 1em 0;
}

.header-toggle {
	position: fixed;
	inset: 0 0 auto auto;
	width: 56px;
	height: 56px;
	cursor: pointer;
	transition: var(--transition);
}

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

.header-toggle-bar {
	position: absolute;
	inset-inline: 0;
	width: 24px;
	margin: auto;
	border-top: 2px solid;
	transition: var(--transition);
}

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

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

.header-toggle-bar:nth-child(3) {
	top: 62%;
}

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

header._open .header-toggle-bar:nth-child(2) {
	transform: scaleX(0);
}

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

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	padding-top: calc(150px - min(13.3vw, 192px));
}

footer::before {
	display: block;
	height: min(13.3vw, 192px);
	background: #cedadf;
	content: "";
	transform: translateY(1px);
	-webkit-mask: url("../img/common/curve_top.svg") center top / 100% 100% no-repeat;
	mask: url("../img/common/curve_top.svg") center top / 100% 100% no-repeat;
}

.footer-content {
	padding-bottom: 40px;
	background: #cedadf;
}

.footer-shapes .shape {
	inset: -350px -150px auto auto;
}

.footer-shapes .rabbit01 {
	inset: -200px 160px auto auto;
}

.footer-shapes .rabbit02 {
	inset: -130px 70px auto auto;
}

.footer-logo {
	margin-bottom: 40px;
}

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

.footer-menu-li {
	margin-bottom: 0.9em;
}

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

.footer-copyright {
	display: block;
	margin-top: var(--padding-block);
	font-size: 15px;
	text-align: center;
}

@media (min-width: 768px) {
footer {
	padding-top: calc(240px - min(13.3vw, 192px));
}

.footer-main {
	display: flex;
	column-gap: 10%;
}

.footer-logo {
	max-width: 40%;
}

.footer-nav {
	display: flex;
	gap: 30px 75px;
	flex: 1;
	flex-flow: wrap;
	justify-content: end;
}

.footer-contact {
	margin: 0;
}
}

@media (max-width: 767.9px) {
footer {
	text-align: center;
}

.footer-shapes {
	transform: scale(0.6);
	transform-origin: right top;
}

.footer-logo img {
	width: 240px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
パンくずリスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.breadcrumb {
	position: relative;
	z-index: 1;
	margin-bottom: calc(var(--padding-block_half) * -1);
	font-size: 14px;
}

.breadcrumb .inner {
	overflow: auto;
	padding: 2.5em 0 1.2em;
}

.breadcrumb-ul {
	display: flex;
	width: max-content;
	padding-inline: var(--padding-inline);
}

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

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

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

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

.post-image .wp-post-image {
	width: 100%;
	height: 100%;
	background: rgb(var(--color_main_rgb), 0.1);
	transition: var(--transition_img);
	object-fit: cover;
	aspect-ratio: 350 / 248;
}

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

.post-time {
	font-family: var(--font_english);
}

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

.post-category {
	display: block;
	position: relative;
	z-index: 1;
	padding-inline: 0.8em;
	border: 1px solid var(--color_main);
	border-radius: 3px;
	background: #fff;
	color: var(--color_main);
	font-weight: 700;
	font-size: 0.9em;
	line-height: 1.6;
}

.post-category:hover {
	background: var(--color_main);
	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;
	padding: 1.2em var(--padding-inline);
	border: 2px solid var(--color_main_light);
	border-radius: 36px;
	background: #fff;
	transition: var(--transition);
	gap: 0.3em 2em;
}

.post-li:not(:last-child) {
	margin-bottom: 1em;
}

.post-li:hover {
	background: var(--color_main_light);
}

.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 .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: var(--padding-block_half);
}

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

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アサイド
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.aside {
	padding-bottom: var(--padding-block);
}

.aside .inner {
	display: grid;
	padding-block: 30px;
	border-radius: 35px;
	background: var(--color_main_light);
	row-gap: 40px;
}

.aside-heading {
	margin-bottom: 1em;
	padding-bottom: 0.2em;
	border-bottom: 1px solid var(--color_main);
	font-size: 22px;
}

.aside-post-li {
	display: grid;
	padding: 1em;
	border: none;
	border-radius: 10px;
	font-size: 0.9em;
	grid-template-columns: none;
}

.aside-post-li:hover {
	background: var(--color_ivory);
}

.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-rabbit {
	display: block;
	margin: -20px 10px 0 auto;
	transform: scaleX(-1);
}

@media (min-width: 1024px) {
.aside {
	padding-top: var(--padding-block);
}
}

@media (max-width: 767.9px) {
.aside-rabbit {
	width: 170px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページネーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-page-ul {
	display: flex;
	margin-top: 50px;
	font-size: 1.1em;
	text-align: center;
	column-gap: 0.3em;
	justify-content: center;
}

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

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

.post-page-li._current a {
	border-radius: 50%;
	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: "";
}

.post-page-prev a::before,
.post-page-next a::before {
	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);
	column-gap: 9%;
	justify-content: center;
	align-items: center;
}

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

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

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

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

.post-nav-next a::after {
	margin-left: 0.5em;
	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.7em;
	white-space: nowrap;
}

.form-table th::before {
	display: inline-block;
	margin-right: 1em;
	padding-inline: 0.8em;
	border: 1px solid var(--color_main);
	border-radius: 3px;
	background: #fff;
	color: var(--color_main);
	font-size: 0.8em;
	line-height: 1.6;
	content: "任意";
}

.form-table .form-required::before {
	background: var(--color_main);
	color: #fff;
	content: "必須";
}

.form-table tr:not(:last-child) td {
	padding-bottom: 2em;
}

.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="tel"],
.form-table input[type="date"],
.form-table select {
	height: 3em;
	padding: 0 0.8em;
	border: 1px solid var(--color_gray);
	background: #fff;
}

.form-table textarea {
	height: 20em;
	min-height: 3em;
	padding: 0.8em;
	border: 1px solid var(--color_gray);
	background: #fff;
}

.wpcf7 {
	position: relative;
}

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

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

.wpcf7-submit {
	position: absolute;
	inset: 0;
}

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

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

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

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

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

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

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