@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_main:              #0094ec;
	--color_main_rgb:          0, 148, 236;
	--color_main_light:        #7fc9f5;
	--color_main_lighter:      #d9effc;
	--color_sub:               #0e0071;
	--color_green:             #00c800;
	--color_green_light:       #6ee06e;
	--color_green_dark:        #008e29;
	--color_gray:              #ccc;
	--color_gray_light:        #e6e6e6;
	--color_gray_dark:         #808080;

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

	--opacity:                 0.7;
	--content-width:           1200px;
	--content-width_small:     1000px;
	--content-width_medium:    1200px;
	--content-width_large:     1400px;
	--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);
	--border-radius:           30px;
	--transition:              0.3s ease-in-out;
	--transition_img:          0.4s ease-in-out;
	--brightness:              brightness(1.1);
}

@media (min-width: 768px) {
:root {
	--padding-inline:          30px;
	--padding-block:           100px;
	--border-radius:           50px;
}
}

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

article {
	overflow: hidden;
}

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

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-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 {
	display: flex;
	height: 320px;
	background: url("../img/common/page-header-background.svg") center center / auto 100% repeat-x var(--color_main_lighter);
	align-items: center;
}

.page-heading {
	color: var(--color_sub);
	font-size: 48px;
}

.page-heading-en {
	display: block;
	font-weight: 500;
	line-height: 1.2;
	text-transform: capitalize;
}

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

.heading_enja {
	display: grid;
	margin-bottom: 0.5em;
	font-size: 40px;
	text-align: center;
	row-gap: 0.1em;
}

.heading_enja-en {
	display: block;
	color: var(--color_main);
	font-weight: 500;
	font-family: var(--font_en);
	line-height: 1.1;
}

.heading_enja-ja {
	display: block;
	font-weight: 700;
	font-size: 18px;
}

@media (min-width: 768px) {
.page-header {
	height: 480px;
}

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

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

.heading_enja {
	font-size: 70px;
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.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: 16em;
	height: 4em;
	margin: var(--padding-block_half) auto 0;
	padding-inline: 3em;
	border: 1px solid var(--color_main);
	border-radius: 100vw;
	background: var(--color_main);
	color: #fff;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	transition: var(--transition);
	justify-content: center;
	align-items: center;
}

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

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

.button::after {
	position: absolute;
	inset: 0 1.2em 0 auto;
	width: 1.3em;
	height: 1.3em;
	margin-block: auto;
	background: currentColor;
	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);
}

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

@media (min-width: 768px) {
.button {
	font-size: 18px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.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: "・";
}

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

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
テーブル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.table th {
	padding: 0.3em 1em;
	background: var(--color_gray_light);
	font-weight: 500;
}

.table tr:not(:last-child) th {
	border-bottom: 2px solid #fff;
}

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

.table tr:not(:last-child) td {
	border-bottom: 2px solid var(--color_gray_light);
}

.table a[href^="tel:"]:hover,
.table a[href^="mailto:"]:hover {
	color: var(--color_main);
}

@media (min-width: 768px) {
.table th {
	width: 20%;
	padding: 1.3em;
	text-align: center;
	white-space: nowrap;
}

.table td {
	padding: 1.3em;
}
}

@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_left {
	text-align: initial;
}

.align_right {
	text-align: right;
}

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

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

.box {
	position: relative;
	max-width: var(--content-width_medium);
	margin-inline: auto;
	padding: var(--padding-block) var(--padding-inline);
}

.box::before {
	position: absolute;
	inset: 0 0 auto;
	width: 32px;
	margin-inline: auto;
	background: var(--color_main);
	content: "";
	aspect-ratio: 1;
}

.box > * {
	max-width: var(--content-width_small);
	margin-inline: auto;
}

.box .heading_enja-en {
	color: var(--color_main_light);
}

@media (min-width: 768px) {
.box::before {
	width: 42px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページメニュー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-menu {
	--content-width: var(--content-width_large);
	padding-top: 1.2em;
}

.page-menu-ul {
	display: flex;
	column-gap: 1.6em;
	flex-flow: wrap;
	justify-content: end;
}

.page-menu-li {
	min-width: fit-content;
	border-bottom: 1px solid var(--color_gray_dark);
	flex-grow: 1;
}

.page-menu-li a {
	display: block;
	position: relative;
	padding: 0.3em 1.5em 0.3em 0;
}

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

.page-menu-li a::after {
	position: absolute;
	inset: 0 0 0 auto;
	width: 1em;
	height: 1em;
	margin-block: auto;
	border-radius: 50%;
	background: url("../img/common/arrow.svg") right 4px center / 100% auto no-repeat var(--color_gray_dark);
	content: "";
	transform: rotate(90deg);
}

@media (min-width: 768px) {
.page-menu-li {
	max-width: 14em;
}
}

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

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

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

.modal-overlay {
	opacity: var(--opacity);
	position: fixed;
	inset: 0;
	background: #333;
}

.modal-content {
	overflow-y: auto;
	position: relative;
	width: 560px;
	max-width: 100%;
	max-height: 100%;
	padding: var(--padding-inline) var(--padding-inline) 60px;
	border-radius: var(--border-radius);
	background: #fff;
	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;
	position: sticky;
	top: 0;
	width: 40px;
	height: 40px;
	margin-left: auto;
	border-radius: 50%;
	background: var(--color_green);
	cursor: pointer;
	transition: var(--transition);
}

.modal-close:hover {
	background: var(--color_green_dark);
}

.modal-close::before {
	position: absolute;
	inset: 0 33%;
	height: 0;
	margin: auto;
	border-top: 2px solid #fff;
	content: "";
	transition: var(--transition);
}

.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 {
	width: 100%;
	border-top: 1px solid var(--color_main_light);
	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 {
	filter: var(--brightness);
}

.header-nav {
	display: flex;
	gap: 2em min(3vw, 3em);
}

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

.header-nav-contact {
	width: 10em;
	padding-block: 0.3em;
	border-radius: 100vw 0 100vw 100vw;
	background: var(--color_sub);
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	font-family: var(--font_en);
	text-align: center;
}

.header-nav-contact:hover {
	background: var(--color_main);
}

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

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

.header-inner {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	align-items: center;
}

.header-nav {
	height: 80px;
	padding-inline: min(3vw, 3em);
	border-radius: 100vw 0 100vw 100vw;
	background: rgb(255, 255, 255, 0.7);
	align-items: center;
}

.header-menu-ul {
	display: flex;
	column-gap: min(2vw, 2em);
}

.header-menu-li._none {
	display: none;
}

.header-nav-contact {
	width: min(10vw, 10em);
	order: 3;
}

.header-toggle {
	display: none;
}
}

@media (max-width: 1279.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.1;
}

.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: 70px var(--padding-inline);
	background: #fff;
	transition: transform var(--transition);
	overscroll-behavior: contain;
	flex-flow: column;
}

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

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

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

.header-nav-instagram {
	align-self: start;
}

.header-toggle {
	position: fixed;
	inset: 0 0 auto auto;
	width: 56px;
	border-bottom-left-radius: 20px;
	background: var(--color_main);
	color: #fff;
	cursor: pointer;
	aspect-ratio: 1;
	transition: var(--transition);
}

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

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

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

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

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

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: 120px;
}
}

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

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

.footer-contact .inner {
	display: grid;
	gap: 1em 3em;
}

.footer-contact .heading_enja-en {
	color: inherit;
}

.footer-contact .section-description {
	font-weight: 600;
}

.footer-contact-li:not(:last-child) {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid;
}

.footer-contact-li a {
	display: grid;
	grid-template-columns: 32px auto;
	column-gap: 1em;
	align-items: center;
}

.footer-contact-li a:hover {
	opacity: var(--opacity);
}

.footer-contact-li .img {
	width: 100%;
	aspect-ratio: 50 / 53;
}

.footer-contact-tel .number {
	font-weight: 500;
	font-size: 32px;
	font-family: var(--font_en);
	line-height: 1;
}

.footer-contact-tel .hour {
	font-size: 12px;
	text-align: center;
}

.footer-contact-email .description {
	font-weight: 600;
}

@media (min-width: 768px) {
.footer-contact .inner {
	grid-template-columns: 1fr auto;
	justify-content: space-between;
}

.footer-contact .wrapper {
	display: flex;
	align-self: start;
	gap: 1em 2em;
	flex-flow: wrap;
	align-items: end;
}

.footer-contact .heading_enja {
	margin-bottom: initial;
	text-align: initial;
}

.footer-contact-ul {
	align-self: end;
}

.footer-contact-li a {
	grid-template-columns: 50px auto;
}

.footer-contact-tel .number {
	font-size: 46px;
}

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

.footer-contact-email .description {
	font-size: 22px;
}
}

@media (max-width: 767.9px) {
.footer-contact .inner {
	justify-items: center;
}

.footer-contact .section-description {
	text-align: center;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- メイン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-main {
	--content-width: var(--content-width_large);
	padding-block: var(--padding-block);
	background: var(--color_gray_light);
}

.footer-nav {
	display: grid;
	margin-bottom: var(--padding-block_half);
	grid-template-rows: auto 1fr;
	grid-template-columns: auto min(32vw, 180px);
	row-gap: 1em;
	justify-content: space-between;
	align-items: start;
}

.footer-menu-ul {
	font-weight: 600;
	grid-row: 1 / 3;
}

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

.footer-nav-contact {
	padding-block: 0.6em;
	border-radius: 100vw 0 100vw 100vw;
	background: var(--color_main);
	color: #fff;
	font-weight: 500;
	font-family: var(--font_en);
	text-align: center;
}

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

.footer-nav-instagram {
	justify-self: end;
}

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

.footer-address {
	display: grid;
	gap: 0.5em 3em;
}

.footer-logo {
	justify-self: start;
}

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

.footer-address-dl {
	display: grid;
	font-size: 14px;
	row-gap: 1.5em;
}

.footer-address-dl dt {
	font-weight: 600;
	font-size: 20px;
}

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

@media (min-width: 560px) {
.footer-address {
	grid-template-columns: auto 1fr;
	align-items: start;
}

.footer-address-dl {
	justify-content: end;
}
}

@media (min-width: 768px) {
.footer-nav {
	column-gap: 2em;
}

.footer-menu-ul {
	display: flex;
	border-left: 1px solid var(--color_gray_dark);
	row-gap: 0.5em;
	flex-flow: wrap;
	align-items: center;
}

.footer-menu-li {
	border-right: 1px solid var(--color_gray_dark);
}

.footer-menu-li a {
	padding-inline: min(1.9vw, 1.9em);
}

.footer-nav-contact {
	font-size: 18px;
}

.footer-address-dl {
	grid-template-columns: auto auto auto;
	gap: 0.5em 3.7%;
}

.footer-address-dl dt {
	grid-column: 1 / 4;
}
}

@media (max-width: 767.9px) {
.footer-menu-li {
	margin-bottom: 0.3em;
}

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

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

.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);
	object-fit: cover;
	aspect-ratio: 350 / 248;
	transition: var(--transition_img);
}

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

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

.post-category {
	display: block;
	position: relative;
	z-index: 1;
	width: fit-content;
	min-width: 7em;
	padding-inline: 0.8em;
	border: 1px solid var(--color_main);
	border-radius: 100vw;
	background: #fff;
	color: var(--color_main);
	font-size: 0.9em;
	text-align: center;
}

.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 {
	position: relative;
}

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

.post-li .post-text {
	display: grid;
	margin-top: 1em;
	row-gap: 0.3em;
}

.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 .box {
	border: 1px solid var(--color_main);
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページネーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-page-ul {
	display: flex;
	margin-top: var(--padding-block);
	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: 2.5em;
	height: 2.5em;
	border-radius: 50%;
	background: var(--color_gray_light);
	justify-content: center;
	align-items: center;
}

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

.post-page-li a:hover {
	background: var(--color_main_light);
	color: #fff;
}

.post-page-prev a::before,
.post-page-next a::before {
	width: 1em;
	height: 1em;
	background: currentColor;
	content: "";
	-webkit-mask: url("../img/common/arrow.svg") center center / contain no-repeat;
	mask: url("../img/common/arrow.svg") center center / contain no-repeat;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ナビゲーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.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: 1em;
	height: 1em;
	background: currentColor;
	content: "";
	-webkit-mask: url("../img/common/arrow.svg") center center / contain no-repeat;
	mask: url("../img/common/arrow.svg") center center / contain no-repeat;
}

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

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

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
お知らせ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.info-post-li {
	display: grid;
	padding-block: 1.3em;
	border-bottom: 1px solid var(--color_gray);
	gap: 0.3em 2em;
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フォーム
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.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;
	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-inline: 0.8em;
	border: 1px solid var(--color_gray);
}

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

.form-privacy {
	width: fit-content;
	margin: 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-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-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 {
	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;
}
}
