@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:              #4f8a8c;
	--color_main_rgb:          79, 138, 140;
	--color_gray:              #666;

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

	--opacity:                 0.5;
	--content-width:           1520px;
	--padding-inline:          clamp(20px, calc(100vw * 30 / 768), 40px);
	--padding-inline_negative: calc(var(--padding-inline) * -1);
	--padding-block:           4.4em;
	--padding-block_half:      calc(var(--padding-block) / 2);
	--letter-spacing:          0.025em;
	--transition:              0.3s ease-in-out;
	--transition_img:          0.4s ease-in-out;
	--brightness:              brightness(1.2);
}

body {
	overflow: hidden scroll;
	font-size: clamp(16px, calc(100vw * 16 / 1024), 24px);
	font-family: var(--font_main);
	font-feature-settings: "palt";
	line-height: 1.8;
	letter-spacing: var(--letter-spacing);
}

article {
	overflow: clip;
	padding-top: 60px;
}


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

@media (min-width: 768px) {
	.section.large_padding {
		padding-block: calc(var(--padding-block) * 2);
	}
}

@media (max-width: 767.9px) {
	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;
	line-height: 1.5;
	letter-spacing: 0.075em;
}

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

textarea {
	width: 100%;
}

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

.fz_large {
	font-size: 125% !important;
}
.fz_small {
	font-size: 80% !important;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@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 {
	padding-block: var(--padding-block);
}

.page-heading {
	margin-bottom: 0.6em;
	font-weight: 700;
	font-size: clamp(46px, calc(100vw * 56 / 768), 80px);
	font-family: var(--font_en);
	line-height: 1;
	letter-spacing: var(--letter-spacing);
	text-align: center;
	text-transform: uppercase;
}

.heading_en {
	margin-bottom: 0.6em;
	font-weight: 700;
	font-size: clamp(46px, calc(100vw * 56 / 768), 80px);
	font-family: var(--font_en);
	line-height: 1;
	letter-spacing: var(--letter-spacing);
	text-align: center;
}

.heading_ja {
	margin-bottom: 0.6em;
	font-size: clamp(22px, calc(100vw * 24 / 768), 36px);
	letter-spacing: 0.075em;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.button {
	display: flex;
	position: relative;
	min-width: fit-content;
	max-width: 11.8em;
	height: 2.7em;
	margin: 2em auto 0;
	padding-inline: 1em 2em;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	font-family: var(--font_en);
	line-height: 1.5;
	transition: var(--transition);
	align-items: center;
}

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

a:hover .button,
.button:hover {
	background: #fff;
	color: #000;
}

.button::after {
	position: absolute;
	inset: 0 0.6em 0 auto;
	width: 0.5em;
	height: 1em;
	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);
}

.button.disabled {
	pointer-events: none;
	background: #fff;
	color: #000;
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
テーブル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@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;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.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;
}

.loader-logo {
	max-width: 55%;
}

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

.header-overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	inset: 0;
	background: #000;
	transition: var(--transition);
}

header._open .header-overlay,
header._lang .header-overlay {
	visibility: visible;
	opacity: 0.6;
}

.header-logo {
	position: fixed;
	inset: var(--padding-inline) auto auto var(--padding-inline);
	z-index: 1;
}

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

.header-logo img {
	width: 6.3em;
}

.header-lang {
	overflow-y: auto;
	position: fixed;
	inset: calc(var(--padding-inline) + 3.5em) var(--padding-inline) auto auto;
	width: calc(100% - var(--padding-inline) * 2);
	max-width: 320px;
	max-height: calc(100% - (var(--padding-inline) + 5em));
	padding: 50px 30px;
	background: #fff;
	-webkit-mask: url("../img/common/header-lang-mask.svg") center center / 100% 100% no-repeat;
	mask: url("../img/common/header-lang-mask.svg") center center / 100% 100% no-repeat;
	transition: var(--transition);
	overscroll-behavior: contain;
}

header:not(._lang) .header-lang {
	visibility: hidden;
	opacity: 0;
	transform: scale3d(0.9, 0.9, 0.9);
}

.header-lang-li {
	margin-bottom: 10px;
	border: 1px solid;
}

.header-lang-li a {
	display: block;
	padding: 0.4em;
	font-weight: 500;
	font-size: 22px;
	text-align: center;
}

.header-lang-li a:not(.gt-current-lang):not(:hover) {
	background: #000;
	color: #fff;
}

.header-lang-li img {
	display: none;
}

.header-lang-description {
	margin-top: 1em;
	font-size: 16px;
}

.header-menu {
	overflow-y: auto;
	position: fixed;
	inset: calc(var(--padding-inline) + 3.5em) var(--padding-inline) auto auto;
	width: calc(100% - var(--padding-inline) * 2);
	max-width: 320px;
	max-height: calc(100% - (var(--padding-inline) + 5em));
	padding: 50px 30px;
	background: #fff;
	-webkit-mask: url("../img/common/header-lang-mask.svg") center center / 100% 100% no-repeat;
	mask: url("../img/common/header-lang-mask.svg") center center / 100% 100% no-repeat;
	transition: var(--transition);
	overscroll-behavior: contain;
}

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

.header-menu-li {
	font-weight: 700;
	font-family: var(--font_en);
	font-size: 26px;
	line-height: 1;
}

.header-menu-li.fz-small {
	font-size: 20px;
}

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

/* カレントメニュー */
.header-menu-li._current a,
.header-menu-li a:hover {
	color: var(--color_main);
}

.header-menu-li._current .header-submenu-li a {
	color: initial;
}

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

.header-submenu-li {
	position: relative;
	font-weight: 500;
	font-family: var(--font_main);
	font-size: 16px;
	letter-spacing: 0.025em;
}

/* グローバルメニュー PC */
@media (min-width: 768px) {
	.header-menu {
		display: grid;
    align-items: center;
		overflow-y: auto;
		position: fixed;
		inset: calc(var(--padding-inline) + 3.5em) var(--padding-inline) auto auto;
		width: calc(100% - var(--padding-inline) * 2);
		max-width: 688px;
		aspect-ratio: 688 / 657;
		max-height: calc(100% - (var(--padding-inline) + 5em));
		padding: 50px 50px;
		background: #fff;
		-webkit-mask: url("../img/common/header-lang-mask.svg") center center / 100% 100% no-repeat;
		mask: url("../img/common/header-lang-mask.svg") center center / 100% 100% no-repeat;
		transition: var(--transition);
		overscroll-behavior: contain;
	}

	.header-menu-ul {
		position: relative;
	}

	.header-menu-li {
		font-size: 32px;
	}

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

	.header-menu-li.fz-small {
    font-size: 26px;
	}

	.header-menu-li.programs {
		position: absolute;
		top: 0;
		right: 0;
		width: 325px;
	}

	.header-menu-li:not(.programs) {
		width: calc(100% - 325px);
	}
}

/* -- サブメニュー -- */

@media (min-width: 768px) {
	.header-submenu-li {
		font-size: 18px;
	}
	.header-submenu-li span {
		font-size: 16px;
	}
	.header-submenu-li a {
		display: flex;
		gap: 15px;
		border-top: solid 1px;
		padding-block: 1em;
	}
	.header-submenu-li:first-child a {
		border-top: initial;
		padding-top: 0;
	}
	.header-submenu-li:last-child a {
		padding-bottom: 0;
	}
	.header-submenu-thumbnail {
		width: 100px;
		aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000;
    -webkit-mask: url(../img/common/image-mask.svg) center center / 100% 100% no-repeat;
    mask: url(../img/common/image-mask.svg) center center / 100% 100% no-repeat;
	}
	.header-submenu-thumbnail img {
		width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	}
	.header-menu-li a .header-submenu-thumbnail img {
		transition: transform .4s ease;
	}
	.header-menu-li a:hover .header-submenu-thumbnail img {
		transform: scale(1.08);
		filter: brightness(0.9);
	}
}

@media (max-width: 767.9px) {
	.header-submenu-li {
		padding-left: 1.5em;
	}
	.header-submenu-li::before {
		position: absolute;
		left: 0;
		top: 5px;
		content: '';
		display: block;
		width: 14px;
		height: 14px;
		border-left: solid 1px;
		border-bottom: solid 1px;
	}
	.header-submenu-thumbnail {
		display: none;
	}
}

.header-submenu-li span {
	display: block;
	color: var(--color_main);
	font-family: var(--font_en);
	font-weight: 700;
	margin-top: 0.5em;
}

.header-toggle {
	display: grid;
	position: fixed;
	inset: var(--padding-inline) var(--padding-inline) auto auto;
	grid-template-columns: auto auto;
	column-gap: 0.8em;
}

.header-lang-toggle {
	display: flex;
	position: relative;
	width: 2.5em;
	border: 1px solid;
	background: #fff;
	cursor: pointer;
	aspect-ratio: 1;
	transition: var(--transition);
	justify-content: center;
	align-items: center;
}

.header-lang-toggle:hover {
	background: #000;
}

.header-lang-toggle-bar {
	position: absolute;
	inset: 49% 17% auto;
	border-top: 1px solid;
	transition: var(--transition);
}

header:not(._lang) .header-lang-toggle-bar {
	opacity: 0;
}

.header-lang-toggle:hover .header-lang-toggle-bar {
	border-color: #fff;
}

header._lang .header-lang-toggle-bar:nth-child(1) {
	transform: rotate(-45deg);
}

header._lang .header-lang-toggle-bar:nth-child(2) {
	transform: rotate(45deg);
}

.header-lang-toggle-img {
	width: 50%;
	transition: var(--transition);
}

header._lang .header-lang-toggle-img {
	opacity: 0;
}

.header-lang-toggle:hover .header-lang-toggle-img {
	filter: invert(1);
}

.header-menu-toggle {
	position: relative;
	width: 2.5em;
	background: #000;
	cursor: pointer;
	aspect-ratio: 1;
	transition: var(--transition);
}

.header-menu-toggle:hover {
	filter: invert(1);
}

.header-menu-toggle-bar {
	position: absolute;
	inset-inline: 17%;
	border-top: 1px solid #fff;
	transition: var(--transition);
}

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

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

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

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

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

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	padding-block: var(--padding-block);
	background: #f4f4f4;
}

footer .inner {
	display: grid;
	row-gap: 2em;
}

.footer-address {
	line-height: 1.5;
}

.footer-logo {
	margin-bottom: 1.6em;
}

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

.footer-logo img {
	width: 12.5em;
}

.footer-tel {
	margin-block: 0.6em 0.4em;
	font-weight: 700;
	font-family: var(--font_en);
}

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

.footer-contact {
	margin: 1em 0 0;
	background: #fff;
	color: inherit;
	font-size: min(1.1em, 22px);
	line-height: 1;
	column-gap: 0.4em;
}

.footer-contact:hover {
	background: #000;
	color: #fff;
}

.footer-contact::before {
	width: 1.1em;
	height: 0.9em;
	background: currentColor;
	content: "";
	-webkit-mask: url("../img/common/contact.svg") center center / contain no-repeat;
	mask: url("../img/common/contact.svg") center center / contain no-repeat;
	transition: var(--transition);
}

.footer-contact .small {
	display: inline-block;
	font-size: 0.73em;
}

.footer-instagram {
	margin-top: 1em;
}

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

.footer-instagram img {
	width: 1.7em;
}

.footer-link-ul {
	display: flex;
	margin-bottom: 0.5em;
	padding-bottom: 2em;
	border-bottom: 1px solid;
	column-gap: 2em;
	justify-content: center;
}

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

.footer-link-li img {
	width: initial;
	height: 3.8em;
}

.footer-copyright {
	display: block;
	font-size: 0.7em;
	font-family: var(--font_en);
	text-align: center;
}

.page-top {
	width: fit-content;
	margin: var(--padding-block) auto 0;
	cursor: pointer;
	transform: rotate(-90deg);
}

.page-top img {
	width: 2.5em;
	transition: var(--transition);
}

.page-top:hover img {
	transform: translateX(20%);
}

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

.footer-copyright {
	text-align: right;
}
}

@media (max-width: 767.9px) {
.footer-wrapper {
	display: grid;
	justify-items: center;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
パンくずリスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.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;
	-webkit-mask: url("../img/common/image-mask.svg") center center / 100% 100% no-repeat;
	mask: url("../img/common/image-mask.svg") center center / 100% 100% no-repeat;
}

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

.post-info {
	display: grid;
	row-gap: 0.2em;
}

.post-time {
	color: var(--color_gray);
	font-weight: 700;
	font-family: var(--font_en);
}

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

.post-category {
	display: block;
	position: relative;
	z-index: 1;
	padding-inline: 0.7em;
	border: 1px solid #000;
	background: #fff;
	font-size: 0.8em;
}

.post-category:hover {
	background: #000;
	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-dl {
	font-size: min(1em, 20px);
}

.post-dl dt {
	float: left;
	font-weight: 600;
}

.post-dl dt::after {
	content: "｜";
}

.post-ul {
	display: grid;
	gap: 3em 3%;
}

.post-li {
	position: relative;
}

.post-li:hover .post-text {
	transition: var(--opacity) .3s;
}
.post-li:hover .post-text {
	opacity: var(--opacity);
}

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

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

.post-li .post-heading {
	margin-block: 0.9em;
	padding-block: 0.6em;
	border-block: 1px solid;
	font-size: min(1.2em, 24px);
}

.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-ul {
	grid-template-columns: 1fr 1fr 1fr;
}
}

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

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

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

.post-page-li._current a {
	border: solid 1px;
	background: #fff;
	color: #000;
	pointer-events: none;
}

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

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

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ナビゲーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-nav-ul {
	display: flex;
	margin-top: var(--padding-block);
	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);
}

@media (min-width: 1280px) {
	.hide-on-desktop {
		display: none;
	}
}



.text-red {
  color:#b8302e;
  display: inline-block;
}

.text-large {
  font-size: 16px;
  display: inline-block;
}

.text-small {
  font-size: 16px;
  display: inline-block;
}

@media (min-width: 768px) {
	.text-large {
		/* font-size: 26px; */
		font-size: clamp(16px, calc(100vw * 21 / 768), 26px);
		display: inline-block;
	}
}

::selection {
	background-color: #cccccc;
	color: #000;
}
