@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: initial;
	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;
	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:              #383838;
	--color_main:              #a58164;
	--color_main_rgb:          165, 129, 100;
	--color_gray:              #d0d0d0;
	--color_gray_light:        #ebebeb;
	--color_white:             rgb(255, 255, 255, 0.8);

	--font_main:               "Noto Serif JP", "Hiragino Mincho ProN", "BIZ UDPMincho", "MS PMincho", serif;
	--font_en:                 Marcellus, "Times New Roman", var(--font_main);

	--opacity:                 0.7;
	--content-width:           1050px;
	--content-width_medium:    1050px;
	--content-width_large:     1200px;
	--padding-inline:          6.7vw;
	--padding-inline_negative: calc(var(--padding-inline) * -1);
	--padding-block:           70px;
	--padding-block_half:      calc(var(--padding-block) / 2);
	--border-radius:           50px;
	--background:              url("../img/common/background.webp") center top / cover no-repeat;
	--letter-spacing:          0.05em;
	--mask_arrow:              url("../img/common/arrow.svg") center center / contain no-repeat;
	--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;
	--border-radius:           80px;
}
}

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

.body-inner {
	overflow: clip;
}

article {
	position: relative;
}

article::before {
	position: absolute;
	inset: calc(var(--padding-block) * -1) 0;
	z-index: -1;
	background: var(--background);
	content: "";
}

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

.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 {
	font-weight: inherit;
}

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 {
	font-weight: inherit;
	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) {
body {
	font-size: 16px;
}

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

.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 {
	--content-width: var(--content-width_large);
}

.page-header .inner {
	height: 260px;
	padding-top: 70px;
}

.page-header-img {
	position: absolute;
	inset: auto auto 0 0;
	z-index: -1;
	width: 100%;
	height: 330px;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	object-fit: cover;
}

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

.page-heading-en {
	display: block;
	margin-bottom: 0.1em;
	font-family: var(--font_en);
	line-height: 1;
	letter-spacing: var(--letter-spacing);
	text-transform: capitalize;
}

.page-heading-ja {
	display: block;
	font-size: 20px;
}

.heading_enja {
	display: flex;
	position: relative;
	margin-bottom: 0.8em;
	font-size: 36px;
	gap: 0.2em;
	flex-flow: column;
}

.heading_enja._center {
	align-items: center;
}

.heading_enja::after {
	width: 40px;
	margin-top: 0.3em;
	border-top: 2px solid var(--color_main);
	content: "";
}

.heading_enja._center::after {
	right: 0;
	margin-inline: auto;
}

.heading_enja-en {
	font-family: var(--font_en);
	line-height: 1;
	letter-spacing: var(--letter-spacing);
}

.heading_enja-ja {
	font-size: 16px;
}

.heading_large {
	margin-bottom: 1em;
	font-size: 22px;
}

.heading-en {
	display: block;
	font-family: var(--font_en);
	line-height: 1;
	letter-spacing: var(--letter-spacing);
}

.heading-ja {
	display: block;
}

@media (min-width: 768px) {
.page-header .inner {
	position: relative;
	z-index: 0;
	height: 380px;
	padding-top: 135px;
}

.page-header-img {
	inset: auto var(--padding-inline) 0 auto;
	width: 55%;
	height: 340px;
	border-radius: 50px;
}

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

.page-heading-ja {
	font-size: 24px;
}

.heading_enja {
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	font-size: 48px;
	flex-flow: wrap;
	align-items: end;
}

.heading_enja::after {
	position: absolute;
	inset: auto auto 0 0;
}

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

@media (max-width: 767.9px) {
.page-header {
	position: relative;
	z-index: 0;
	color: #fff;
}

.page-header-img {
	filter: brightness(0.6);
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.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: 14em;
	height: 3.3em;
	margin-top: 30px;
	padding-inline: 3em;
	border: 1px solid var(--color_gray);
	border-radius: 100vw;
	background: var(--color_white);
	color: var(--color_text);
	font-size: 15px;
	line-height: 1.3;
	text-align: center;
	transition: var(--transition);
	justify-content: center;
	align-items: center;
}

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

.button::after {
	position: absolute;
	inset: 0 1.2em 0 auto;
	width: 1.2em;
	height: 0.3em;
	margin-block: auto;
	background: currentColor;
	content: "";
	-webkit-mask: var(--mask_arrow);
	mask: var(--mask_arrow);
	transition: var(--transition);
}

.button:hover::after {
	transform: translateX(4px);
}

.buttons {
	display: flex;
	margin-top: 30px;
	gap: 1.3em;
	flex-flow: wrap;
}

.buttons .button {
	margin: initial;
}

@media (min-width: 768px) {
.button {
	margin-top: 50px;
}

.buttons {
	margin-top: 50px;
}
}

@media (max-width: 767.9px) {
.button {
	margin-inline: auto;
}

.buttons {
	justify-content: center;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.dl {
	margin-block: 2em;
	line-height: 1.5;
}

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

.dl:last-child {
	margin-bottom: initial;
}

.dl > dt {
	margin-block: 2em 0.8em;
	font-size: 1.2em;
}

.dl > dt:first-child {
	margin-top: initial;
}

.dl > dd {
	position: relative;
	margin-top: 0.6em;
	padding-left: 0.8em;
}

.dl > dd::before {
	position: absolute;
	inset: 0.7em auto auto 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color_main);
	content: "";
}

.ol,
.ul {
	margin-block: 1em;
	font-size: 14px;
	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.6em;
}

.ol > li {
	padding-left: 1.2em;
	counter-increment: number;
}

.ul > li {
	padding-left: 0.8em;
}

.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 {
	top: 0.7em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color_main);
	content: "";
}

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

li._spacer::before,
li._spacer::after {
	content: initial;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
テーブル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@media (max-width: 767.9px) {
.table th {
	display: block;
}

.table td {
	display: block;
}
}

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

.bold {
	font-weight: 700;
}

.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-intro {
	margin-bottom: 60px;
}

.section-description {
	margin-bottom: 1.5em;
}

.background {
	position: relative;
}

.background::before {
	position: absolute;
	inset: calc(var(--padding-block) * -1) 0;
	z-index: -1;
	background: var(--background);
	content: "";
}

.background._flip::before {
	transform: scaleX(-1);
}

@media (min-width: 768px) {
.section-intro {
	display: grid;
	margin-bottom: 80px;
	grid-template-columns: auto 66%;
	column-gap: 7%;
	align-items: start;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アコーディオン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.accordion-icon {
	position: absolute;
	width: 1em;
	color: var(--color_main);
	aspect-ratio: 1;
}

.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);
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
タブ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.tab-header-ul {
	display: flex;
}

.tab-header-li {
	cursor: pointer;
	transition: var(--transition);
}

.tab-header-li._active {
	pointer-events: none;
}

.tab-content-li:not(._active) {
	display: none;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
モーダル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.modal-link {
	cursor: pointer;
	user-select: none;
}

.modal-container {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 10;
	padding: 40px var(--padding-inline);
	transition: var(--transition);
	justify-content: center;
	align-items: start;
}

.modal-container:not(._open) {
	visibility: hidden;
	opacity: 0;
}

.modal-overlay {
	opacity: 0.25;
	position: fixed;
	inset: 0;
	background: #000;
}

.modal-content {
	overflow-y: auto;
	position: relative;
	width: 480px;
	max-width: 100%;
	max-height: 100%;
	padding: 30px 20px 20px;
	background: #eff2f0;
	transition: transform var(--transition);
	overscroll-behavior: contain;
}

.modal-container:not(._open) .modal-content {
	transform: scale3d(0.8, 0.8, 0.8);
}

.modal-close {
	display: block;
	width: fit-content;
	margin: 2em auto 0;
	border: 1px solid;
	border-radius: 100vw;
	padding: 0.1em 0.7em;
	font-size: 12px;
	cursor: pointer;
	transition: var(--transition);
}

.modal-close:hover {
	color: var(--color_main);
}

.modal-img {
	max-height: calc(100vh - var(--padding-block) * 2);
}

.modal-video {
	width: calc((100vh - var(--padding-block) * 2) / 9 * 16);
	max-width: 100%;
	aspect-ratio: 16 / 9;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.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 {
	position: relative;
	width: 100%;
	border-top: 1px solid var(--color_main);
	transform: scaleX(0);
	transform-origin: left center;
	animation: loader 3s ease-in-out both;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	--content-width: var(--content-width_large);
	height: 70px;
}

.header-inner {
	display: flex;
	position: fixed;
	inset: 15px 0 auto;
	z-index: 3;
	width: calc(100% - 20px);
	padding-inline: 15px 0;
	border: 1px solid var(--color_gray_light);
	border-radius: 100vw;
	box-shadow: 0 0 4px rgb(0, 0, 0, 0.08);
	background: var(--color_white);
	justify-content: space-between;
	align-items: center;
}

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

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

@media (min-width: 768px) {
header {
	height: 94px;
}

.header-inner {
	height: 74px;
}
}

@media (min-width: 1024px) {
header .contact-menu-tel {
	grid-row: 2 / 4;
}
}

@media (min-width: 1120px) {
.header-inner {
	top: 20px;
	width: calc(100% - var(--padding-inline) * 2);
	padding-inline: 50px;
}

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

header .contact-menu-dl {
	display: none;
}

.header-menu-ul {
	display: flex;
	column-gap: 20px;
	align-items: center;
}

.header-nav-ul {
	display: none;
}

.header-toggle {
	display: none;
}
}

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

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

.header-nav {
	overflow-y: auto;
	position: fixed;
	inset: 0;
	z-index: -1;
	padding: 120px var(--padding-inline) 60px;
	background: var(--background);
	transition: var(--transition);
	overscroll-behavior: contain;
}

header:not(._open) .header-nav {
	visibility: hidden;
	opacity: 0;
	transform: scale3d(1.1, 1.1, 1.1);
}

header .contact-menu-dl {
	margin-bottom: 30px;
}

header .contact-menu-dt {
	display: block;
}

header .contact-menu-dd a {
	padding: 0.8em;
	background: var(--color_white);
}

header .contact-menu-dd a:hover {
	background: #fff;
}

header .contact-menu-dd a:not(:hover) {
	border-color: var(--color_gray);
}

header .contact-menu-dd ._none {
	display: none;
}

header .contact-menu-tel .heading {
	display: none;
}

.header-menu-li {
	border-bottom: 1px solid var(--color_gray);
	font-size: 15px;
}

.header-menu-li:first-child {
	border-top: 1px solid var(--color_gray);
}

.header-menu-li a {
	display: block;
	position: relative;
	padding: 0.9em 3.5em 0.9em 1.3em;
}

.header-menu-li a::after {
	position: absolute;
	inset: 0 1.3em 0 auto;
	width: 1.2em;
	height: 0.3em;
	margin-block: auto;
	background: currentColor;
	content: "";
	-webkit-mask: var(--mask_arrow);
	mask: var(--mask_arrow);
	transition: var(--transition);
}

.header-menu-li a:hover::after {
	transform: translateX(4px);
}

.header-nav-ul {
	margin: 2.8em 2em 0;
	font-size: 13px;
}

.header-nav-li {
	margin-top: 1.6em;
}

.header-toggle {
	position: relative;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
}

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

.header-toggle-bar {
	position: absolute;
	inset-inline: 0;
	width: 24px;
	margin: auto;
	border-top: 1.5px 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: 156px;
}

.header-nav {
	padding-top: 100px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	overflow: hidden;
	position: relative;
	z-index: 2;
	border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.footer-img {
	position: absolute;
	inset: auto 0 0 auto;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

@media (min-width: 768px) {
footer {
	position: relative;
	z-index: 0;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- お問い合わせ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-contact {
	padding-block: var(--padding-block);
	color: #fff;
}

.footer-contact .heading_enja::after {
	border-color: inherit;
}

.footer-age {
	display: flex;
	margin-bottom: 2em;
	font-size: 16px;
	gap: 0.2em 1.8em;
	align-items: center;
}

.footer-age .annotation {
	font-size: 12px;
}

.footer-age .link_underline:hover {
	opacity: var(--opacity);
	color: inherit;
}

footer .contact-menu-dl {
	width: min(calc(100% - var(--padding-inline) * 2), var(--content-width_large));
	margin-inline: auto;
}

footer .contact-menu-dd a:not(:hover) {
	border-color: #fff;
}

footer .contact-menu-web a:not(:hover) .icon {
	filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
.footer-contact {
	padding-top: 80px;
}
}

@media (max-width: 767.9px) {
.footer-contact {
	position: relative;
	z-index: 0;
	text-align: center;
}

.footer-contact .heading_enja {
	align-items: center;
}

.footer-age {
	flex-flow: column;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- メイン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-main {
	padding-bottom: 30px;
}

.footer-main .inner {
	display: flex;
	row-gap: 35px;
	flex-flow: column;
}

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

.footer-nav {
	display: none;
}

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

.footer-copyright {
	font-size: 12px;
}

@media (min-width: 768px) {
.footer-main .inner {
	column-gap: 7%;
	flex-flow: wrap;
	filter: brightness(0) invert(1);
}

.footer-nav {
	display: flex;
	width: 430px;
	margin-left: auto;
	justify-content: space-between;
}

.footer-menu-li:not(:last-child) {
	margin-bottom: 0.3em;
}

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

.footer-copyright {
	width: 100%;
}
}

@media (max-width: 767.9px) {
.footer-main {
	padding-top: 40px;
	background: var(--background);
}

.footer-main .inner {
	align-items: center;
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
お問い合わせ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.contact-link-ul {
	position: fixed;
	inset: auto 0 0;
	z-index: 1;
	border: 1px solid var(--color_gray);
	border-radius: 10px 10px 0 0;
	background: var(--color_white);
	font-size: 10px;
	text-align: center;
}

.contact-link-li a {
	display: grid;
	height: 100%;
	padding: 0.9em 2.5em;
	row-gap: 0.2em;
	justify-items: center;
	align-content: space-between;
}

.contact-link-line a {
	color: #06c755;
}

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

@media (min-width: 768px) {
.contact-link-ul {
	inset: 300px 0 auto auto;
	border-radius: 10px 0 0 10px;
	font-size: 13px;
}

.contact-link-sp {
	display: none;
}

.contact-link-li a {
	padding: 1em 0.8em;
}
}

@media (max-width: 767.9px) {
.contact-link-ul {
	display: flex;
	width: fit-content;
	margin-inline: auto;
}

.contact-link-pc {
	display: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
パンくずリスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.breadcrumb {
	--content-width: var(--content-width_large);
	position: absolute;
	inset: 85px 0 auto;
	z-index: 1;
	color: #999;
	font-size: 0.9em;
}

.breadcrumb .inner {
	overflow: auto;
	padding: 0 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: 1.4em;
	margin-inline: 0.7em;
	border-top: 1px solid;
	content: "";
}

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

.breadcrumb-li a span {
	text-decoration: underline;
	transition: var(--transition);
}

.breadcrumb-li a:hover span {
	text-decoration-color: transparent;
}

@media (min-width: 768px) {
.breadcrumb {
	top: 130px;
}
}

@media (max-width: 767.9px) {
main:has(.page-header) .breadcrumb {
	color: #fff;
}

main:has(.page-header) .breadcrumb-li a:hover {
	opacity: var(--opacity);
	color: inherit;
}
}

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

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

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

.post-time {
	font-size: 13px;
}

.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-radius: 100vw;
	background: #fff;
	font-size: 10px;
}

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

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

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

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

.post-li .post-info {
	margin-bottom: 0.3em;
}

.post-li .post-heading {
	transition: var(--transition);
}

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

.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);
}

.single-main .wp-post-image {
	border-radius: var(--border-radius);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アサイド
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.aside-container {
	--content-width: var(--content-width_large);
}

.aside {
	padding-bottom: var(--padding-block);
}

.aside .inner {
	padding: var(--padding-block_half) var(--padding-inline);
	border-radius: 20px;
	background: var(--color_white);
}

.aside-heading {
	margin-bottom: 1.4em;
	font-size: 20px;
	font-family: var(--font_en);
	line-height: 1;
	letter-spacing: var(--letter-spacing);
}

.aside-category-li {
	margin-top: 1.5em;
	line-height: 1.5;
}

.aside-category-li a {
	position: relative;
	padding-left: 0.8em;
}

.aside-category-link {
	display: block;
	padding-right: 2em;
}

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

.aside-category-li a::before {
	position: absolute;
	inset: 0.7em auto auto 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color_main);
	content: "";
}

.aside-category-link::after {
	position: absolute;
	inset: 0.7em 0 0 auto;
	width: 1.2em;
	height: 0.3em;
	background: currentColor;
	content: "";
	-webkit-mask: var(--mask_arrow);
	mask: var(--mask_arrow);
	transition: var(--transition);
}

.aside-category-link:hover::after {
	transform: translateX(4px);
}

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

.aside-subcategory-li {
	margin-top: 0.5em;
}

@media (min-width: 768px) {
.aside .inner {
	padding-inline: min(17%, 60px);
}

.aside-heading {
	font-size: 24px;
}
}

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

.aside {
	position: sticky;
	top: 0;
	padding-top: var(--padding-block);
	grid-row: 1;
	grid-column: 1;
}
}

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

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

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

.post-page-li a {
	border: 1px solid var(--color_gray);
	border-radius: 50%;
}

.post-page-li._current a {
	background: #fff;
	pointer-events: none;
}

.post-page-li a:hover {
	background: #fff;
}

.post-page-ul img {
	transition: var(--transition);
}

.post-page-prev a:hover img,
.post-page-next a:hover img {
	transform: translateX(4px);
}

@media (min-width: 768px) {
.post-page-ul {
	justify-content: end;
}
}

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

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

.post-nav-li a {
	display: flex;
	column-gap: 0.5em;
	align-items: center;
}

.post-nav-archive .button {
	margin-top: initial;
}

.post-nav-archive .button::after {
	content: initial;
}

.post-nav-li img {
	transition: var(--transition);
}

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

.post-nav-prev a:hover img {
	transform: translateX(-4px) scaleX(-1);
}

.post-nav-next a:hover img {
	transform: translateX(4px);
}

@media (min-width: 768px) {
.post-nav-prev a::after {
	content: "前の記事を見る";
}

.post-nav-next a::before {
	content: "次の記事を見る";
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ブログ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.blog-post-li {
	display: grid;
	margin-bottom: 10px;
	padding: 20px;
	border-radius: 20px;
	background: var(--color_white);
	grid-template-columns: 100px 1fr;
	column-gap: 20px;
}

.blog-post-li .post-time {
	margin-bottom: 0.5em;
}

.blog-post-li .post-category {
	margin-top: 0.8em;
	border: 1px solid;
}

@media (min-width: 768px) {
.blog-post-li {
	grid-template-columns: 140px 1fr;
}
}

@media (max-width: 767.9px) {
.blog-post-li .post-heading {
	font-size: 13px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
Swiper
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.swiper {
	--swiper-theme-color: currentColor;
}

.swiper-slide {
	height: initial;
	user-select: none;
}

.swiper-button-prev,
.swiper-button-next {
	inset-block: 0;
	width: 21px;
	height: auto;
	margin-block: auto;
	aspect-ratio: 1;
}

.swiper-button-prev {
	transform: scaleX(-1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
	position: absolute;
	inset: 0;
	background: currentColor;
	content: "";
	-webkit-mask: var(--mask_arrow);
	mask: var(--mask_arrow);
	transition: var(--transition);
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
	background: var(--color_main);
	transform: translateX(4px);
}

@media (min-width: 768px) {
.swiper-button-prev,
.swiper-button-next {
	width: 33px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
お問い合わせ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.contact-menu-dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 10px;
}

.contact-menu-dt {
	font-size: 17px;
	text-align: center;
	grid-column: 1 / 3;
}

.contact-menu-dd a {
	display: flex;
	height: 100%;
	padding: 0.8em;
	border: 1px solid;
	border-radius: 30px;
	font-size: 17px;
	text-align: center;
	column-gap: 0.5em;
	justify-content: center;
	align-items: center;
}

.contact-menu-dd a:hover {
	background: var(--color_white);
	color: var(--color_main);
}

.contact-menu-dd .icon {
	width: 1em;
	transition: var(--transition);
}

.contact-menu-tel a {
	flex-flow: column;
}

.contact-menu-tel .number {
	margin-bottom: 0.2em;
	font-size: 28px;
	line-height: 1.2;
}

.contact-menu-tel .number-label {
	font-size: 24px;
}

.contact-menu-tel .hour {
	font-size: 14px;
}

.contact-menu-tel .annotation {
	font-size: 12px;
}

@media (min-width: 768px) {
.contact-menu-dl {
	gap: 20px;
}

.contact-menu-dt {
	display: none;
}

.contact-menu-dd a {
	padding: 1.2em;
	border-radius: 80px;
	font-size: 24px;
}

.contact-menu-tel .heading {
	margin-bottom: 0.6em;
	font-size: 24px;
}

.contact-menu-tel .number {
	font-size: 40px;
}

.contact-menu-tel .number-label {
	font-size: 31px;
}

.contact-menu-tel .hour {
	font-size: 16px;
}

.contact-menu-tel .annotation {
	font-size: 14px;
}
}

@media (min-width: 1024px) {
.contact-menu-dl {
	grid-template-columns: 1fr 50%;
}

.contact-menu-tel {
	grid-row: 1 / 3;
}
}

@media (max-width: 1023.9px) {
.contact-menu-tel {
	grid-column: 1 / 3;
}
}

@media (max-width: 767.9px) {
.contact-menu-dd ._none {
	display: none;
}

.contact-menu-tel .heading {
	display: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ギャラリー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.gallery-section {
	display: grid;
	overflow: hidden;
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	grid-template-columns: repeat(2, 1fr);
}

.gallery-section .img {
	width: 100%;
	max-height: 225px;
	object-fit: cover;
}

.gallery-section .img:nth-child(1) {
	object-position: center 30%;
}

.gallery-section .img:nth-child(4) {
	object-position: center 30%;
}

@media (min-width: 768px) {
.gallery-section {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-section .img {
	max-height: 460px;
}

.gallery-section .img:nth-child(3) {
	order: 4;
}
}

@media (max-width: 767.9px) {
.gallery-section .img {
	aspect-ratio: 188 / 225;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アクセス
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.access-section {
	display: grid;
	padding-bottom: initial;
	row-gap: 27px;
}

.access-address {
	margin-bottom: 20px;
}

.access-address .heading {
	margin-bottom: 0.8em;
	font-size: 20px;
}

.access-address .tel:hover {
	color: var(--color_main);
}

.access-hour {
	padding: 20px 7%;
	border-radius: 20px;
	background: var(--color_white);
	font-size: 14px;
}

.access-hour caption {
	margin-bottom: 0.3em;
	padding-bottom: 0.2em;
	border-bottom: 1px solid;
	font-size: 18px;
}

.access-hour tr {
	border-top: 2px solid var(--color_white);
}

.access-hour th {
	padding: 0.4em;
	background: var(--color_gray_light);
	vertical-align: middle;
}

.access-hour thead th:not(:first-child) {
	border-left: 2px solid var(--color_white);
	text-align: center;
}

.access-hour td {
	padding: 0.4em;
	border-left: 2px solid var(--color_white);
	background: var(--color_gray_light);
	text-align: center;
	vertical-align: middle;
}

.access-hour .annotation {
	margin-top: 1em;
}

.access-section iframe {
	width: 100%;
	height: 230px;
	filter: grayscale(1);
}

@media (min-width: 768px) {
.access-section {
	grid-template-columns: minmax(auto, 635px) calc(50% - 80px);
	justify-content: end;
}

.access-section .inner {
	padding-right: 12%;
}

.access-section iframe {
	height: 100%;
}
}

@media (max-width: 767.9px) {
.access-hour tbody th {
	font-size: 11px;
}

.access-hour .annotation {
	font-size: 13px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
よくあるご質問
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.faq-section {
	--content-width: 1150px;
}

.faq-section .content {
	padding: var(--padding-block) var(--padding-inline);
	border-radius: 100vw;
	background: url("../img/common/faq-background.webp") center center / cover no-repeat;
}

.faq-section .text {
	max-width: 770px;
	margin-inline: auto;
}

@media (min-width: 768px) {
.faq-section .content {
	padding-inline: 14%;
}

.faq-section .text {
	display: grid;
	grid-template-columns: minmax(auto, 490px) auto;
	column-gap: 40px;
	justify-content: space-between;
	align-items: end;
}

.faq-section .heading_enja {
	grid-column: 1 / 3;
}

.faq-section .button {
	margin-top: initial;
}
}

@media (max-width: 767.9px) {
.faq-section .heading_enja {
	align-items: center;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
施術案内 - 料金
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.service-price-table {
	font-size: 14px;
}

.service-price-table tbody {
	margin-bottom: -1.5em;
}

.service-price-table th {
	position: relative;
	width: 100%;
	padding: 0 1em 1.5em 0.8em;
}

.service-price-table tr:last-child th {
	padding-bottom: initial;
}

.service-price-table th::before {
	position: absolute;
	inset: 0.6em auto auto 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color_main);
	content: "";
}

.service-price-table td {
	padding-bottom: 1.5em;
	text-align: right;
	white-space: nowrap;
}

@media (min-width: 768px) {
.service-price-table tbody {
	display: grid;
	max-width: 970px;
	font-size: 14px;
	grid-template-columns: minmax(auto, 420px) minmax(auto, 420px);
	column-gap: 5%;
	justify-content: space-between;
	align-items: start;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
私たちが大切にしていること
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.value-section {
	padding-bottom: initial;
}

.value-ul {
	display: grid;
	max-width: 1400px;
	margin-inline: auto;
}

.value-li .img {
	position: absolute;
	inset: 0 auto auto 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.value-li:nth-child(1) .img {
	object-position: center 70%;
}

.value-li:nth-child(2) .img {
	object-position: center bottom;
}

.value-li:nth-child(3) .img {
	object-position: center 30%;
}

.value-li:nth-child(4) .img {
	object-position: center 40%;
}

.value-li .text {
	height: 260px;
	padding: 50px 1em 0;
	text-align: center;
	transition: var(--transition);
}

.value-li .heading {
	margin-bottom: 0.7em;
	font-size: 22px;
}

.value-li .heading::before {
	display: block;
	width: 22px;
	height: 38px;
	margin: 0 auto 0.9em;
	background: url("../img/common/star.svg") center center / contain no-repeat;
	content: "";
}

@media (min-width: 768px) {
.value-ul {
	display: grid;
	position: relative;
	grid-template-columns: repeat(4, 1fr);
}

.value-li .img {
	opacity: 0;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.value-li:hover .img {
	opacity: 1;
}

.value-li .text {
	position: relative;
	height: 450px;
	padding-top: 90px;
}

.value-ul:hover .text {
	filter: brightness(0) invert(1);
}

.value-li .text::before {
	position: absolute;
	inset: -1px 20px;
	border-block: 1px solid;
	content: "";
}

.value-li:first-child .text::before {
	left: 0;
	border-bottom-left-radius: var(--border-radius);
}

.value-li:last-child .text::before {
	right: 0;
	border-bottom-right-radius: var(--border-radius);
}

.value-li:not(:last-child) .text::after {
	position: absolute;
	inset: 20px 0;
	border-right: 1px solid;
	content: "";
}

.value-li .heading {
	font-size: 20px;
}

.value-li .description {
	max-width: 230px;
	margin-inline: auto;
}
}

@media (max-width: 767.9px) {
.value-ul {
	overflow: hidden;
	border-radius: var(--border-radius);
	row-gap: 1px;
}

.value-li {
	position: relative;
}

.value-li .text {
	filter: brightness(0) invert(1);
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ブログ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.blog-section {
	--content-width: var(--content-width_large);
}

@media (min-width: 768px) {
.blog-section .inner {
	display: grid;
	grid-template-rows: 1fr auto 1fr;
	grid-template-columns: minmax(auto, 340px) 57.9%;
	column-gap: 7.6%;
	justify-content: end;
}

.blog-section .section-description {
	margin-bottom: initial;
}

.blog-section .blog-post-ul {
	grid-row: 1 / 4;
	grid-column: 2;
}
}
