/* ==============================
 Reset & Base
 ============================== */

/* ブラウザデフォルト余白を削除・ボックスサイズ統一 */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* HTML・body 基本設定 */
html, body {
	height: 100%;
	line-height: 2;
	color: #333;
	background: #fff;
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
html {
	font-size: 16px;
}
@media screen and (max-width: 768px) {
	html {
		font-size: 14px;
	}
}

/* タイトル系の余白・スタイルを無効化 */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
	font-size: inherit;
	line-height: 1.4;
}

/* 段落・リストの余白リセット */
p, ul, ol, dl {
	margin: 0;
	padding: 0;
}

/* リストマーカーを非表示 */
ul, ol {
	list-style: none;
}

/* strong, emの装飾を標準化 */
strong, em {
	font-weight: inherit;
	font-style: normal;
}

/* テーブルリセット */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 画像・動画の基本設定 */
img, video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* リンク */
a {
	color: inherit;
	text-decoration: none;
	transition: opacity .4s ease;
}
a:hover {
	opacity: .7;
}

/* フォーム要素リセット */
input, button, textarea, select {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
}

/* ボタンのクリック時カーソル */
button {
	cursor: pointer;
}


/*------------------------------------
改行
------------------------------------*/
.br-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: inline-block;
	}
}

/*------------------------------------
.container
------------------------------------*/
section .container {
	width: calc(100% - 7.29vw); /*140px*/
	margin: auto;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
スクロール・フェードアニメーション
------------------------------------*/
.fade-in {
	opacity: 0;
	transform: translateY(20px); /* 下からフェードイン */
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.left {
	transform: translateX(-20px); /* 左からフェードイン */
}
.fade-in.right {
	transform: translateX(20px); /* 右からフェードイン */
}
.fade-in.up {
	transform: translateY(20px); /* 下からフェードイン（初期値） */
}
.fade-in.down {
	transform: translateY(-20px); /* 上からフェードイン */
}
.fade-in.show {
	opacity: 1;
	transform: translate(0, 0);
}

/* 表示の遅延を制御するクラス（0.5秒刻み） */
.fade-delay-0 {
	transition-delay: 0s;
}
.fade-delay-05 {
	transition-delay: 0.5s;
}
.fade-delay-1 {
	transition-delay: 1s;
}
.fade-delay-15 {
	transition-delay: 1.5s;
}
.fade-delay-2 {
	transition-delay: 2s;
}
.fade-delay-25 {
	transition-delay: 2.5s;
}
.fade-delay-3 {
	transition-delay: 3s;
}
/* JSでスクロール時に表示させる */


/*--------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------*/
/*.header__inner*/
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 140px;
	margin: 0 164px 0 3.65vw; /*70px*/
}
.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.04vw; /*20px*/
	font-weight: 700;
	line-height: 1.4;
}
.logo::before {
	content: "";
	display: block;
	background-image: url("../images/logo.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 78px;
	height: 80px;
	flex-shrink: 0;
}
.header__menu {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
}
.header__menu .flex {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 0.83vw; /*16px*/
	font-weight: 700;
	line-height: 1;
}
.header__menu .list li:not(:last-child) {
	margin-right: 1.04vw; /*20px*/
}
.header__btn {
	gap: 15px;
}
.header__btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f2a096;
	border-radius: 25px;
	width: 180px;
	height: 50px;
	font-size: 0.83vw; /*16px*/
	color: #fff;
}
.header__btn li:first-child a {
	background-color: #62b0e3;
}
@media screen and (max-width: 1300px) {
	.header__menu {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.header__inner {
		height: 70px;
	}
	.logo {
		gap: 10px;
		font-size: 2.86vw; /*22px*/
	}
	.logo::before {
		width: 49px;
		height: 50px;
	}
}

/* ── ハンバーガーボタン ───────────────── */
.hamburger-btn {
	position: fixed;
	top: 35px;
	right: 3.65vw; /*70px*/
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: #fb9500;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1003;
	transition: background 0.25s ease, transform 0.15s ease;
}
.hamburger-btn__inner {
	position: relative;
	width: 32px;
	height: 18px;
}
.hamburger-btn__line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 99px;
	background: #fff;
	transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease, opacity 0.2s ease;
}
.hamburger-btn__line--top {
	top: 0;
}
.hamburger-btn__line--middle {
	top: 8px;
}
.hamburger-btn__line--bottom {
	bottom: 0;
}
@media screen and (max-width: 768px) {
	.hamburger-btn {
		top: 10px;
		width: 50px;
		height: 50px;
	}
	.hamburger-btn__inner {
		width: 24px;
		height: 16px;
	}
	.hamburger-btn__line--middle {
		top: 7px;
	}
}

/* 開いているときの「×」状態 */
.hamburger-btn.is-open .hamburger-btn__line--top {
	top: 8px;
	transform: rotate(45deg);
}
.hamburger-btn.is-open .hamburger-btn__line--middle {
	opacity: 0;
}
.hamburger-btn.is-open .hamburger-btn__line--bottom {
	bottom: 8px;
	transform: rotate(-45deg);
}

/* ── オーバーレイ ───────────────── */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45); /* 後ろを暗くする */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 1000;
}
.overlay.is-active {
	opacity: 1;
	visibility: visible;
}

/* ── メニュー本体（右からスライドイン） ───────────────── */
.side-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(80%, 320px);
	height: 100vh;
	background: #fff;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	z-index: 1002;
	display: flex;
	flex-direction: column;
	padding: 120px 56px 56px;
	overflow-y: hidden;
	font-weight: 700;
}
.side-menu.is-open {
	transform: translateX(0);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.side-menu__nav {
	margin-bottom: 30px;
}
.side-menu__sub {
	margin-bottom: 50px;
}
.side-menu__bnr li {
	margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
	.side-menu {
		padding: 80px 32px 32px;
	}
}


/*------------------------------------
.btn
------------------------------------*/
.btn {
	margin-top: 50px;
}
.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #f2a096;
	border-radius: 35px;
	max-width: 320px;
	width: 100%;
	height: 70px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	margin: auto;
}
.btn--rd a {
	background-color: #f2a096;
}
.btn--bl a {
	background-color: #62b0e3;
}
.btn--yl a {
	background-color: #fb9500;
}
.btn a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url("../images/btn-arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 16px;
	height: 15px;
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.btn a:hover::after {
	transform: translate(8px, -50%);
}
@media screen and (max-width: 768px) {
	.btn {
		margin-top: 20px;
	}
}


/*------------------------------------
.accordion
------------------------------------*/
.accordion li {
	background-color: #fff;
}
.accordion li:not(:last-child) {
	margin-bottom: 16px;
}
.accordion .que {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #8d3949;
	padding: 20px 30px;
	cursor: pointer;
}
.accordion .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border: 1px solid #f2a096;
	border-radius: 50%;
	width: 24px;
	height: 24px;
}
.accordion .arrow:after {
	content: "";
	background-image: url("../images/faq-arrow.svg");
	background-size: cover;
	width: 6px;
	height: 8px;
	transform: rotate(90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.accordion .que.active .arrow:after {
	transform: rotate(-90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
.accordion .ans {
	display: none;
	font-size: 14px;
	padding: 10px 40px 40px;
}
.accordion p:not(:last-child) {
	margin-bottom: 20px;
}
.accordion a {
	text-decoration: underline;
	color: #8d3949;
}
.accordion a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.accordion .que {
		padding: 16px 24px;
	}
	.accordion .ans {
		font-size: 13px;
		padding: 0 24px 24px;
	}
}


/*--------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------*/
/*------------------------------------
.ft-job
------------------------------------*/
.ft-job {
	position: relative;
	background-color: #fef6f5;
	padding-bottom: 200px;
}
.ft-job::after {
	content: "";
	position: absolute;
	bottom: 0;
	background-image: url("../images/wave_wh.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	padding-bottom: 5.2083%;
}
.ft-job .flex {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1260px;
}
.ft-job .flex li {
	width: calc((100% - 40px) / 2);
}
.ft-job .flex a {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #fff;
	width: 100%;
	height: 180px;
}
.ft-job .flex a::before {
	content: "";
	position: absolute;
	top: 0;
	background-image: url("../images/rounded-bg_rd.svg");
	background-position: right bottom;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.ft-job__txt {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 1.56vw; /*30px*/
	font-weight: 700;
	line-height: 1.4;
	padding-left: 60px;
}
.ft-job__txt .en {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .2em;
	line-height: 1
}
.ft-job__arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	position: absolute;
	right: 10px;
	bottom: 10px;
	background-color: #f2a096;
	border-radius: 50%;
	width: 63px;
	height: 63px;
	transition: .3s cubic-bezier(.4,.4,0,1);
	z-index: 2;
}
a:hover .ft-job__arrow {
	background-color: transparent;
	border: 1px solid #f2a096;
	transform: scale(1.1, 1.1);
}
.ft-job__arrow::before {
	content: "";
	background-image: url("../images/rounded-arrow.svg");
	background-position: 50%;
	background-size: cover;
	width: 14px;
	height: 14px;
}
a:hover .ft-job__arrow::before {
	background-image: url("../images/rounded-arrow_rd.svg");
}
@media screen and (max-width: 768px) {
	.ft-job {
		padding-bottom: 120px;
	}
	.ft-job__arrow {
		width: 32px;
		height: 32px;
	}
	.ft-job .flex {
		gap: 20px;
	}
	.ft-job .flex li {
		width: 100%;
	}
	.ft-job .flex a {
		height: 100px;
	}
	.ft-job .flex a::before {
		background-size: 70px;
	}
	.ft-job__txt {
		font-size: 3.91vw; /*30px*/
		padding-left: 40px;
	}
	.ft-job__arrow::before {
		width: 10px;
		height: 10px;
	}
}


/*------------------------------------
footer
------------------------------------*/
footer {
	padding: 40px 0 100px;
}
footer .container {
	position: relative;
	max-width: 1600px;
	width: calc(100% - 7.29vw);
	margin: auto;
	z-index: 0;
}
footer .container::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-image: url("../images/footer-bg_pc.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 1600px;
	width: 100%;
	aspect-ratio: 1600 / 300;
	z-index: -1;
}
.footer__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: relative;
	z-index: 1;
}
.footer__inner .logo {
	justify-content: center;
}
.footer__menu {
	display: flex;
	gap: 20px;
	max-width: 700px;
	width: 100%;
	margin: auto;
}
.footer__menu ul {
	flex: 1;
}
.footer__menu ul:last-child li {
	margin-bottom: 10px;
}
.footer__menu a {
	display: inline-block;
	width: fit-content;
	font-weight: 700;
}
.footer__copyright {
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
@media screen and (max-width: 1400px) {
	footer .container::before {
		top: auto;
		transform: none;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.footer__menu {
		flex-direction: column;
		gap: 0;
		max-width: 400px;
	}
}
@media screen and (max-width: 768px) {
	.footer__menu {
		max-width: 100%;
	}
	.footer__menu ul {
		text-align: center;
	}
	.footer__menu ul:last-child {
		margin-top: 30px;
	}
}


/*--------------------------------------------------------------------------
中共通
--------------------------------------------------------------------------*/
/*------------------------------------
.smile
------------------------------------*/
.smile {
	display: flex;
	align-items: baseline;
	gap: 5px;
}
.smile::after {
	content: "";
	background-image: url("../images/smile.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
}


/*------------------------------------
.hmv
------------------------------------*/
.hmv__inner {
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: calc(100% - 7.29vw);
	height: 500px;
	margin: auto;
}
.hmv__ttl {
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 0 5.2083vw 0 0; /*100px*/
	width: 29.6875vw; /*570px*/
	height: 7.8125vw; /*150px*/
	padding: 3.6458vw 0 0 3.6458vw; /*70px*/
}
.hmv__ttl::before,
.hmv__ttl::after {
	content: "";
	display: block;
	position: absolute;
	background-size: cover;
	width: 3.125vw; /*60px*/
	height: 3.125vw; /*60px*/
}
.hmv__ttl::before {
	top: -3.125vw; /*60px*/
	left: 0;
}
.hmv__ttl::after {
	right: -3.125vw; /*60px*/
	bottom: 0;
}
.hmv__ttl .en {
	font-size: 0.73vw; /*14px*/
	font-weight: 500;
	letter-spacing: .2em;
	line-height: 1;
	text-transform: uppercase;
}
.en--rd {
	color: #f2a096;
}
.en--bl {
	color: #62b0e3;
}
.en--gr {
	color: #61bdca;
}
.en--yl {
	color: #fb9500;
}
.hmv__ttl h1 {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 2.08vw; /*40px*/
}
@media screen and (max-width: 768px) {
	.hmv__inner {
		width: 100%;
		height: 320px;
	}
	.hmv__ttl {
		border-radius: 0 6.5104vw 0 0; /*50px*/
		width: 65.1042vw; /*500px*/
		height: 10.4167vw; /*80px*/
		padding: 3.6458vw 0 0 2.6042vw; /*28px 0 0 20px*/
	}
	.hmv__ttl h1 {
		font-size: 5.21vw; /*40px*/
	}
	.hmv__ttl::before,
	.hmv__ttl::after {
		width: 5.2083vw; /*40px*/
		height: 5.2083vw; /*40px*/
	}
	.hmv__ttl::before {
		top: -5.2083vw; /*40px*/
	}
	.hmv__ttl::after {
		right: -5.2083vw; /*40px*/
	}
	.hmv__ttl .en {
		font-size: 1.82vw; /*14px*/
	}
}


/*------------------------------------
.anchor
------------------------------------*/
.anchor {
	padding-top: 100px;
}
.anchor-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 1260px;
	width: calc(100% - 7.29vw);
	margin: 0 auto;
}
.anchor-list li {
	position: relative;
	width: calc((100% - 20px)/3);
}
.anchor-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 1px solid #ccc;
	height: 60px;
	text-align: center;
	white-space: nowrap;
	z-index: 0;
}
.anchor-list a:hover {
	opacity: 1;
}
.anchor-list li:before,
.anchor-list li:after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 10;
	transition: 0.5s ease;
	background: #9fa0a0;
}
.anchor-list a:before,
.anchor-list a:after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 10;
	transition: 0.5s ease;
	background: #9fa0a0;
}
.anchor-list li:before {
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
.anchor-list li:after {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
.anchor-list a:before {
	top: 0;
	left: -1px;
	width: 2px;
	height: 100%;
}
.anchor-list a:after {
	top: 0;
	right: -1px;
	width: 2px;
	height: 100%;
}
.anchor-list li:hover:before,
.anchor-list li:hover:after {
	opacity: 1;
}
.anchor-list li:hover a:before,
.anchor-list li:hover a:after {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.anchor {
		padding-top: 50px;
	}
	.anchor-list li {
		width: calc((100% - 10px)/2);
	}
	.anchor-list a {
		height: 50px;
	}
}


/*------------------------------------
投稿一覧
------------------------------------*/
#archive {
	background-color: #fef6f5;
}
@media screen and (max-width: 768px) {}

/*.hmv*/
.archive .hmv__inner {
	background-image: url("../images/about/hmv-img.jpg");
}
.archive .hmv__ttl {
	background-color: #fef6f5;
}
.archive .hmv__ttl::before,
.archive .hmv__ttl::after {
	background-image: url("../images/hmv-bg_rd.png");
}

/*.container*/
.archive > .container {
	max-width: 1260px;
	width: calc(100% - 7.29vw);
	margin: auto;
	padding: 120px 0;
}
.archive .list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}
.archive .entry {
	width: calc((100% - 90px)/4);
}
.archive .entry .img {
	margin-bottom: 25px;
}
.archive .entry .img img {
	width: 768px;
	aspect-ratio: 10 / 9;
	object-fit: cover;
	object-position: center top;
}
.archive .entry .txt .post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	margin-bottom: 10px;
}
.archive .entry .txt .post-tags > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f2a096;
	font-size: 13px;
	line-height: 1;
	color: #fff;
	padding: 5px 10px;
}
.archive .entry .txt h2 {
	font-size: 20px;
}
.archive .entry .txt .post-date {
	font-family: "Inter Tight", "Zen Kaku Gothic New", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 14px;
	letter-spacing: .08em;
	margin-top: 10px;
}
@media screen and (max-width: 768px) {
	.archive > .container {
		padding: 80px 0;
	}
	.archive .list {
		gap: 20px 15px;
	}
	.archive .entry {
		width: calc((100% - 15px)/2);
	}
	.archive .entry .img {
		margin-bottom: 20px;
	}
	.archive .entry .txt .post-tags {
		margin-bottom: 5px;
	}
	.archive .entry .txt .post-tags > li a {
		font-size: 11px;
		padding: 5px;
	}
	.archive .entry .txt h2 {
		font-size: 15px;
	}
	.archive .entry .txt .post-date {
		font-size: 11px;
		margin-top: 5px;
	}
}

/*.pager*/
.archive .pager,
.archive .pager ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.archive .pager {
	gap: 64px;
}
.archive .pager ul {
	gap: 32px;
}
.archive .pager ul li a,
.archive .pager ul li span {
	display: block;
	font-family: "Outfit", sans-serif;
	line-height: 1;
	padding: 0 16px;
}
.archive .pager ul li a {
	color: #ccc;
}
.archive .pager ul li a:hover {
	color: #333;
	opacity: 1;
}
.archive .pager .arrow.prev a,
.archive .pager .arrow.next a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #0062b1;
	border-radius: 50%;
	width: 46px;
	height: 46px;
}
.archive .pager .arrow.prev a img,
.archive .pager .arrow.next a img {
	width: 7px;
	height: 12px;
	filter: brightness(0) invert(1);
}
.archive .pager .arrow.prev a img {
	transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
	.archive .pager {
		gap: 16px;
	}
	.archive .pager ul {
		gap: 0;
	}
	.archive .pager ul li a,
	.archive .pager ul li span {
		font-size: 16px;
		padding: 0 16px 16px;
	}
}


/*------------------------------------
投稿詳細
------------------------------------*/
#single {
	background-color: #fef6f5;
	padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
	#single {
		padding-bottom: 80px;
	}
}

/*.hmv*/
.single .hmv__inner {
	background-image: url("../images/about/hmv-img.jpg");
}
.single .hmv__ttl {
	background-color: #fef6f5;
}
.single .hmv__ttl::before,
.single .hmv__ttl::after {
	background-image: url("../images/hmv-bg_rd.png");
}

/*.main-sec*/
.single .main-sec {
	margin-top: 80px;
}
.single .main-sec > .container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 40px;
}
.single .main-sec ul {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}
.single .main-sec ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f2a096;
	font-size: 13px;
	line-height: 1;
	color: #fff;
	padding: 5px 10px;
}
.single .main-sec h1 {
	font-size: 28px;
}
.single .main-sec time {
	font-family: "Inter Tight", "Zen Kaku Gothic New", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", sans-serif;
	letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
	.single .main-sec {
		margin-top: 50px;
	}
	.single .main-sec > .container {
		gap: 8px;
		padding-bottom: 16px;
	}
	.single .main-sec ul li a {
		font-size: 11px;
		padding: 5px;
	}
	.single .main-sec h1 {
		font-size: 20px;
	}
}

/*.container*/
.single .main-sec > .container,
.single > .container {
	max-width: 920px;
	width: calc(100% - 7.29vw);
	margin: 0 auto;
}
@media screen and (max-width: 768px) {}

/*.cms-block*/
.single .cms-block h2 {
	font-size: 28px;
	margin: 100px 0 24px;
}
.single .cms-block picture {
	display: block;
	margin: 40px 0;
}
.single .cms-block picture img {
	max-width: 100% !important;
}
.single .cms-block > p {
	line-height: 2;
	margin: 24px 0;
}
.single .cms-block strong {
	font-weight: 900;
}
.single .cms-block em {
	font-style: italic;
}
.single .cms-block ul,
.single .cms-block ol {
	margin: 24px 0;
	padding-left: 24px;
}
.single .cms-block ul li {
	list-style: disc;
}
.single .cms-block ol li {
	list-style: decimal;
}
.single .cms-block li:not(:last-child) {
	margin-bottom: 4px;
}
.single .cms-block blockquote {
	position: relative;
	border-left: 1px solid #ccc;
	padding: 8px 0 8px 56px;
}
.single .cms-block blockquote:before {
	top: -16px;
	left: 24px;
	font-size: 40px;
}
.single .cms-block blockquote > p {
	font-size: 18px;
}
.single .cms-block a {
	text-decoration: underline;
	color: #8d3949;
}
.single .cms-block a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.single .cms-block h2 {
		font-size: 20px;
		margin: 50px 0 16px;
	}
	.single .cms-block picture {
		margin: 24px 0;
	}
	.single .cms-block > p {
		margin: 16px 0;
	}
	.single .cms-block blockquote {
		padding-left: 40px;
	}
	.single .cms-block blockquote:before {
		left: 15px;
	}
	.single .cms-block blockquote > p {
		font-size: 14px;
	}
}


/*------------------------------------
お問い合わせ関連
------------------------------------*/
.contact section {
	padding: 32px 0 200px;
}
.contact section .container {
	max-width: 800px;
	width: calc(100% - 7.29vw);
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.contact section {
		padding: 16px 0 100px;
	}
}

/*.g-form*/
.g-form .form-col {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding: 24px 0;
}
.g-form .form-col dt {
	width: 200px;
}
.g-form .form-col dt .req {
	color: #dc1111;
	margin-left: 4px;
}
.g-form .form-col dd {
	width: calc(100% - 240px);
	padding-left: 40px;
}
.g-form .form-col dd.date p {
	display: flex;
	gap: 24px;
}
.g-form .form-col dd.date p [data-name="your-hour"] {
	position: relative;
}
.g-form .form-col dd.date p [data-name="your-hour"]:after {
	content: "";
	position: absolute;
	top: 29px;
	right: 16px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #333;
}
.g-form .form-col dd.date p [data-name="your-hour"] select {
	padding-right: 40px;
}
.g-form .form-col dd .conditional-input {
	margin-top: 16px;
}
.g-form .wpcf7-list-item {
	display: block;
	margin: 0;
}
.g-form .wpcf7-list-item:not(:last-child) {
	margin-bottom: 8px;
}
.g-form .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
}
.g-form input[type=checkbox],
.g-form input[type=radio] {
	border: 1px solid #ccc;
	width: 20px;
	height: 20px;
	background-color: #fff;
	transition: 0.5s ease;
}
.g-form input[type=checkbox]:after {
	top: 1px;
	border-width: 2px;
	transform: rotate(45deg);
}
.g-form input[type=checkbox]:checked {
	background-color: #333;
	border: 1px solid #333;
}
.g-form input[type=checkbox]:checked:after {
	border-color: #fff;
}
.g-form .wpcf7-list-item-label {
	cursor: pointer;
}
.g-form input[type=text],
.g-form input[type=email],
.g-form input[type=tel],
.g-form input[type=number],
.g-form input[type=password],
.g-form input[type=search],
.g-form input[type=url] {
	border: 1px solid #ccc;
	width: 100%;
	margin: 0;
	padding: 16px;
}
.g-form textarea,
.g-form select {
	display: block;
	border: 1px solid #ccc;
	width: 100%;
	padding: 16px;
	outline: none;
}
.g-form textarea {
	height: 160px;
}
.g-form .privacy-agree {
	margin-top: 24px;
}
.g-form .privacy-agree p {
	margin-bottom: 8px;
}
.g-form .privacy-agree p a {
	text-decoration: underline;
}
.g-form .privacy-agree p a:hover {
	text-decoration: none;
}
.g-form .submit {
	margin-top: 64px;
}
.g-form .submit input[type=submit] {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #0062b1 !important;
	border: none;
	border-radius: 30px;
	max-width: 260px;
	width: 100%;
	height: 60px;
	font-size: 16px;
	line-height: 1;
	color: #fff !important;
	margin: 0 auto;
	transition: .5s ease;
}
.g-form .submit input[type=submit]:hover {
	opacity: .6;
}
.g-form .submit .wpcf7-spinner {
	display: none;
}
.wpcf7 form.invalid .wpcf7-response-output {
	display: none;
}
@media screen and (max-width: 768px) {
	.g-form .form-col {
		padding: 16px 0;
	}
	.g-form .form-col dt,
	.g-form .form-col dd {
		width: 100%;
	}
	.g-form .form-col dt {
		margin-bottom: 8px;
	}
	.g-form .form-col dd {
		padding: 0;
	}
	.g-form .form-col dd.date p {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.g-form .form-col dd.date p [data-name="your-hour"]:after {
		top: 27px;
	}
	.g-form input[type=text],
	.g-form input[type=email],
	.g-form input[type=tel],
	.g-form input[type=number],
	.g-form input[type=password],
	.g-form input[type=search],
	.g-form input[type=url],
	.g-form textarea {
		font-size: 16px;
	}
	.g-form textarea {
		height: 110px;
	}
	.g-form .submit {
		margin-top: 40px;
	}
}

/*.thanks*/
.thanks section {
	padding: 80px 0 120px;
}
.thanks section .container {
	max-width: 800px;
	width: calc(100% - 7.29vw);
	margin: 0 auto;
}
.thanks h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 32px;
}
.thanks p {
	text-align: center;
}
.thanks p:not(:last-of-type) {
	margin-bottom: 24px;
}
.thanks p.notes {
	color: #dc1111;
}
.thanks .link {
	margin-top: 56px;
}
@media screen and (max-width: 768px) {
	.thanks section {
		padding: 40px 0 64px;
	}
	.thanks h2 {
		font-size: 16px;
		text-align: left;
	}
	.thanks p {
		text-align: left;
	}
	.thanks .link {
		margin-top: 32px;
	}
}
