@charset "UTF-8";
/* Web Font */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* Custom Properties */
:root {
	/* color */
	--color-default: #232323;
	--color-orange: #ef8200;
	--color-sub-orange: #f7c080;
	--color-beige: #fdf2e5;
	/* font */
	--font-default: "Zen Kaku Gothic New", sans-serif;
	/* shadow */
	--shadow-orange: drop-shadow(0 0 5px rgb(239 130 0 / .2));
}

/*-------------------------
reset
---------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
	overflow-x: clip;
}

html {
	-webkit-text-size-adjust: 100%;
}

body, input, textarea {
	font-size: 16px;
}

body {
	color: var(--color-default);
	font-family: var(--font-default);
	font-size: 16px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	text-align: justify;
	line-height: 1.75;
	background-color: var(--color-beige);
	margin: 0;
	position: relative;
}

img, a, ul, li, iframe, fieldset {
	border: none;
	outline: none;
}

a, img {
	display: block;
	width: 100%;
}

a.inline, img.inline {
	display: inline;
	width: auto;
}

img {
	line-height: 0;
}

a {
	color: var(--color-text);
	text-decoration: none;
	transition: 0.2s ease-out;
}

h1, h2, h3, h4, ol, ul, li, dl, dt, dd, p, figure, from, iframe, fieldset, legend {
	margin-block-start: 0;
	margin-block-end: 0;
	margin: 0;
	padding: 0;
}

ol, ul {
	list-style: none;
}

h1, h2, h3, h4 {
	font-size: 100%;
	font-weight: normal;
}

em {
	font-style: normal;
}

article, aside, footer, header, main, nav, section {
	display: block;
}

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

textarea {
	resize: vertical;
}

input, textarea, select {
	font-size: 16px;
	padding: 3px;
	border: 1px solid #b2b2b2;
	border-radius: 5px;
}

select {
	padding: 2.5px 3px;
}

label {
	display: -webkit-box;
	display: flex;
}

label input {
	display: block;
}

/* iOSでのデフォルトスタイルをリセット */
input:focus {
	outline: none;
}

input[type=submit],
input[type=button] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
	display: inline-block;
	height: 2em;
	font-size: 16px;
	margin: 0 5px 0 0;
	cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
	display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
	outline-offset: -2px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	margin-left: 5px;
	opacity: 0.5;
}

@media (width <= 640px) {
	.pc {
		display: none !important;
	}
}
@media (width > 640px) {
	.sp {
		display: none !important;
	}
}
/* サイド */
.box-side {
	padding-inline: 35px;
}

/* 横幅 */
.w1090 {
	width: 100%;
	max-width: 1090px;
}
.w1090.box-side {
	max-width: 1160px;
}

/* 背景色 */
.c-bg-white {
	background-color: #fff;
}

.c-bg-beige {
	background-color: var(--color-beige);
}

/* セクション */
.c-sec01 {
	padding-block: 120px;
}
@media (width <= 640px) {
	.c-sec01 {
		padding-block: 60px;
	}
}

.c-separator {
	margin-top: 5.14vw;
	position: relative;
}
.c-separator::before {
	content: "";
	display: block;
	width: 100%;
	height: 5.14vw;
	background: center/100% auto no-repeat;
	position: absolute;
	inset: auto auto 100% 0;
}
.c-separator--white {
	background-color: #fff;
}
.c-separator--white::before {
	background-color: var(--color-beige);
	background-image: url(../img/common/parts_separator01.webp);
}
.c-separator--beige {
	background-color: var(--color-beige);
}
.c-separator--beige::before {
	background-color: #fff;
	background-image: url(../img/common/parts_separator02.webp);
}
.c-separator--beige--bg-orange::before {
	background-color: var(--color-orange);
}
.c-separator--orange {
	background-color: var(--color-orange);
}
.c-separator--orange::before {
	background-color: var(--color-beige);
	background-image: url(../img/common/parts_separator03.webp);
}
.c-separator--transparent {
	margin-top: 0;
}
.c-separator--transparent::before {
	background-color: transparent;
}
.c-separator--reverse::before {
	scale: -1 1;
}

/* マージン */
.c-mt-s {
	margin-top: 30px !important;
}
@media (width <= 640px) {
	.c-mt-s {
		margin-top: 20px !important;
	}
}

.c-mt-m {
	margin-top: 60px !important;
}
@media (width <= 640px) {
	.c-mt-m {
		margin-top: 40px !important;
	}
}

.c-mt-l {
	margin-top: 100px !important;
}
@media (width <= 640px) {
	.c-mt-l {
		margin-top: 80px !important;
	}
}

.m-auto {
	margin-inline: auto !important;
}

/* リスト */
.c-list01 > li {
	padding-left: 1em;
	position: relative;
}
.c-list01 > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.c-list01--notes > li::before {
	content: "※";
}
.c-list01--circle > li::before {
	content: "●";
	font-size: 0.75em;
	top: 0.25em;
	color: var(--color-orange);
}

.c-list02 {
	counter-reset: number;
	font-size: 18px;
}
.c-list02 > li {
	padding-left: 1.2em;
	position: relative;
}
.c-list02 > li + li {
	margin-top: 0.5em;
}
.c-list02 > li::before {
	counter-increment: number;
	content: counter(number, decimal-leading-zero);
	font-size: 16px;
	color: var(--color-orange);
	font-weight: bold;
	position: absolute;
	inset: 0.1em auto auto 0;
}

/* 汎用タイトル */
.c-title01 {
	font-size: clamp(24px, 2.29vw, 32px);
	font-weight: bold;
	color: var(--color-orange);
}

.c-title02 {
	font-size: clamp(22px, 1.71vw, 24px);
	font-weight: bold;
}

.c-title03 {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-orange);
}

/* 汎用テキスト */
.c-brackets {
	display: inline-block;
	margin-inline: -0.5em;
}

.c-text-j {
	text-align: justify !important;
}

.c-text-r {
	text-align: right !important;
}

.c-text-c {
	text-align: center !important;
}

.c-fw-b {
	font-weight: bold !important;
}

.c-text-st {
	font-weight: bold;
	color: var(--color-orange);
}

.c-text-2col {
	column-count: 2;
	column-rule: 1px dotted var(--color-orange);
	gap: 80px;
}
@media (width <= 767px) {
	.c-text-2col {
		column-count: 1;
	}
}

.c-ib {
	display: inline-block;
}

/* 汎用ボタン */
.c-btn01 {
	--btn-color: var(--color-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 500;
	width: 100%;
	min-height: 86px;
	border: 1px solid var(--btn-color);
	background-color: var(--btn-color);
	border-radius: 6px;
	padding: 5px 30px;
	position: relative;
	transition: 0.2s ease-out;
}
.c-btn01::after {
	content: "";
	display: block;
	width: 7px;
	aspect-ratio: 1/2;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 20px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
}
@media (any-hover: hover) {
	.c-btn01:hover::after {
		right: 10px;
	}
}
.c-btn01--w350 {
	max-width: 350px;
}

.c-btn02 {
	display: flex;
	justify-content: center;
	font-weight: 500;
	color: var(--color-orange);
	max-width: 240px;
	border: 1px solid var(--color-orange);
	border-radius: calc(infinity * 1px);
	padding: 15px;
}
@media (any-hover: hover) {
	.c-btn02:hover {
		color: #fff;
		background-color: var(--color-orange);
	}
}

/* 汎用リンク */
.c-link01 {
	display: inline;
	color: var(--color-orange);
}

/* フェードイン */
.c-feed {
	translate: 0 100px;
	opacity: 0;
	transition: opacity 1s, translate 1s;
}
.c-feed.animated {
	translate: 0 0;
	opacity: 1;
}

/* flex */
.c-flex {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px 60px;
}
@media (width <= 767px) {
	.c-flex {
		gap: 30px;
	}
}
@media (width <= 640px) {
	.c-flex {
		flex-direction: column-reverse;
	}
}
.c-flex p {
	flex: 1;
}
@media (width <= 640px) {
	.c-flex p {
		flex: 0 1 auto;
		width: 100%;
	}
}
.c-flex figure {
	width: 360px;
	border-radius: 6px;
	overflow: hidden;
}
@media (width <= 767px) {
	.c-flex figure {
		width: 250px;
	}
}
@media (width <= 640px) {
	.c-flex figure {
		width: calc(100% + 35px);
		border-radius: 6px 0 0 6px;
	}
}
.c-flex--reverse {
	flex-direction: row-reverse;
}
@media (width <= 640px) {
	.c-flex--reverse {
		flex-direction: column-reverse;
	}
	.c-flex--reverse figure {
		margin-left: -35px;
		border-radius: 0 6px 6px 0;
	}
}

.c-flex-2col {
	--column-gap: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 50px var(--column-gap);
}
@media (width <= 960px) {
	.c-flex-2col {
		--column-gap: 30px;
	}
}
.c-flex-2col > * {
	width: calc((100% - var(--column-gap)) / 2);
}
@media (width <= 640px) {
	.c-flex-2col > * {
		width: 100%;
	}
}

.c-flex-3col {
	--column-gap: 35px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px var(--column-gap);
}
@media (width <= 960px) {
	.c-flex-3col {
		--column-gap: 20px;
	}
}
.c-flex-3col > * {
	width: calc((100% - (var(--column-gap)) * 2) / 3);
}
@media (width <= 640px) {
	.c-flex-3col > * {
		width: 100%;
	}
}

.c-flex-4col {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}
.c-flex-4col > * {
	width: calc((100% - 120px) / 4);
}
@media (width <= 767px) {
	.c-flex-4col > * {
		width: calc((100% - 40px) / 2);
	}
}
@media (width <= 640px) {
	.c-flex-4col > * {
		width: 100%;
	}
}

/* カードデザイン */
.c-card01 figure {
	border-radius: 6px;
	overflow: hidden;
}
@media (width <= 960px) {
	.c-card01 figure {
		border-radius: 6px 6px 0 0;
	}
}
@media (width <= 640px) {
	.c-card01 figure {
		width: 100vw;
		border: 0;
		margin-left: -35px;
	}
}
.c-card01 dl {
	max-width: 460px;
	background-color: var(--color-beige);
	border-radius: 6px;
	padding: 50px 40px;
	margin: -60px auto 0;
	position: relative;
}
@media (width <= 960px) {
	.c-card01 dl {
		margin-top: -30px;
	}
}
.c-card01 dt {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-orange);
}
.c-card01 dd {
	margin-top: 40px;
}

.c-card02 figure {
	border-radius: 6px 6px 0 0;
	overflow: hidden;
}
.c-card02 dl {
	background-color: var(--color-beige);
	border-radius: 0 0 6px 6px;
	padding: 50px 40px;
	position: relative;
}
@media (width <= 960px) {
	.c-card02 dl {
		padding: 40px 25px;
	}
}
.c-card02 dt {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-orange);
}
.c-card02 dd {
	margin-top: 40px;
}

.c-card03 figure {
	border-radius: 6px;
	overflow: hidden;
}
.c-card03 dl {
	padding-top: 30px;
	position: relative;
}
.c-card03 dt {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-orange);
}
.c-card03 dd {
	margin-top: 30px;
}

/* 区切り線 */
.c-border {
	width: 100%;
	height: 2px;
	border-top: 2px dotted var(--color-orange);
	margin-block: 60px;
}

/* テーブル */
.scroll-hint {
	overflow: hidden !important;
	overflow-x: auto !important;
}

.c-table {
	width: 100%;
	border-radius: 6px;
	border-bottom-left-radius: 0;
	overflow: hidden;
}
@media (width <= 640px) {
	.c-table {
		width: max-content;
	}
}
.c-table thead {
	background-color: var(--color-orange);
}
.c-table tbody tr > td {
	border-bottom: 1px solid var(--color-orange);
}
.c-table tbody th {
	color: #232323;
	background-color: var(--color-beige);
}
.c-table tbody th::after {
	content: "";
	display: block;
	width: 80%;
	height: 1px;
	background-color: var(--color-orange);
	position: absolute;
	inset: auto auto 0 50%;
	translate: -50% 0;
}
.c-table th, .c-table td {
	text-align: center;
	box-sizing: border-box;
	padding: 10px;
	position: relative;
}
.c-table th {
	color: #fff;
}
.c-table thead tr > * + *::before,
.c-table tbody tr > td + td::before {
	content: "";
	display: block;
	width: 1px;
	height: 60%;
	position: absolute;
	inset: 50% auto auto 0;
	translate: 0 -50%;
}
.c-table thead tr > * + *::before {
	background-color: #fff;
}
.c-table tbody tr > td + td::before {
	background-color: var(--color-orange);
}
.c-table tbody tr:last-child th::after {
	content: none;
}

/* 説明リスト */
.c-dl01 {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
}
@media (width <= 640px) {
	.c-dl01 {
		flex-direction: column;
		gap: 0;
	}
}
.c-dl01 > * {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc((100% - 10px) / 2);
	min-height: 50px;
}
@media (width <= 640px) {
	.c-dl01 > * {
		width: 100%;
	}
}
.c-dl01 > dt {
	font-weight: 500;
	background-color: var(--color-beige);
	padding: 0 10px;
}
@media (width <= 640px) {
	.c-dl01 > dt {
		border-radius: 6px 6px 0 0;
	}
}
.c-dl01 > dt span {
	display: flex;
	align-items: flex-start;
	height: 100%;
	width: 100%;
	padding: 10px 20px;
}
.c-dl01 > dt:first-of-type {
	border-top-left-radius: 6px;
}
.c-dl01 > dt:last-of-type {
	border-bottom-left-radius: 6px;
}
@media (width <= 640px) {
	.c-dl01 > dt:last-of-type {
		border-bottom-left-radius: 0;
	}
}
.c-dl01 > dt:not(:first-of-type) span {
	border-top: 1px solid var(--color-orange);
}
@media (width <= 640px) {
	.c-dl01 > dt:not(:first-of-type) span {
		border-top: 0;
	}
}
.c-dl01 > dd {
	border-right: 1px solid var(--color-orange);
	padding-right: 10px;
}
@media (width <= 640px) {
	.c-dl01 > dd {
		border: 1px solid var(--color-orange);
		border-top: 0;
		border-radius: 0 0 6px 6px;
		padding-left: 10px;
		margin-top: 10px;
	}
}
.c-dl01 > dd span {
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
	padding: 10px 20px;
}
@media (width <= 640px) {
	.c-dl01 > dd + dt {
		margin-top: 20px;
	}
}
.c-dl01 > dd:first-of-type {
	border-top: 1px solid var(--color-orange);
	border-top-right-radius: 6px;
}
@media (width <= 640px) {
	.c-dl01 > dd:first-of-type {
		border-top: 0;
		border-top-right-radius: 0;
	}
}
.c-dl01 > dd:last-of-type {
	border-bottom: 1px solid var(--color-orange);
	border-bottom-right-radius: 6px;
}
.c-dl01 > dd:not(:first-of-type) span {
	border-top: 1px solid var(--color-orange);
}
@media (width <= 640px) {
	.c-dl01 > dd:not(:first-of-type) span {
		border-top: 0;
	}
}

.c-dl02 > dt {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-orange);
	border-bottom: 1px dotted var(--color-orange);
	padding-bottom: 10px;
	margin-bottom: 30px;
}
.c-dl02 > dd + dt {
	margin-top: 50px;
}

.c-dl03 > dt {
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	color: #232323;
	min-height: 40px;
	background-color: #fddfc3;
	border-radius: 6px;
	padding: 10px 40px 10px 40px;
	position: relative;
	cursor: pointer;
}
.c-dl03 > dt span {
	width: 32px;
	aspect-ratio: 1;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	inset: 50% 10px auto auto;
	translate: 0 -50%;
	transition: 0.2s ease-out;
}
.c-dl03 > dt span::before, .c-dl03 > dt span::after {
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	background-color: var(--color-orange);
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	transition: 0.2s ease-out;
}
.c-dl03 > dt span::after {
	rotate: 90deg;
}
@media (any-hover: hover) {
	.c-dl03 > dt:hover span {
		top: calc(50% + 5px);
	}
}
.c-dl03 > dt.open {
	border-radius: 6px 6px 0 0;
}
.c-dl03 > dt.open span {
	background-color: transparent;
}
.c-dl03 > dt.open span::before, .c-dl03 > dt.open span::after {
	background-color: #fff;
}
.c-dl03 > dt.open span::after {
	rotate: 0deg;
}
.c-dl03 > dd {
	display: none;
	background-color: #fef4eb;
	border-radius: 0 0 6px 6px;
	padding: 40px;
}
@media (width <= 767px) {
	.c-dl03 > dd {
		padding: 20px;
	}
}
.c-dl03 > dd + dt {
	margin-top: 40px;
}
@media (width <= 767px) {
	.c-dl03 > dd + dt {
		margin-top: 20px;
	}
}

/* スライダー */
.c-swiper {
	padding: 50px 0 !important;
}
.c-swiper .swiper-slide {
	border-radius: 6px;
	overflow: hidden;
	transition: scale 0.2s ease-out;
}
.c-swiper .swiper-slide.swiper-slide-active {
	scale: 1.2;
}
@media (width <= 640px) {
	.c-swiper .swiper-slide.swiper-slide-active {
		scale: 1;
	}
}
.c-swiper__pn {
	text-align: center;
	margin-top: 40px;
}
.c-swiper__pn .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #dcdcdc;
	margin-inline: 6px !important;
	opacity: 1;
}
.c-swiper__pn .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--color-orange);
}

/* マップ */
.c-map {
	width: 100%;
	height: 500px;
}
.c-map iframe {
	width: 100%;
	height: 100%;
}

/* カテゴリーリスト */
.c-cat {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.c-cat__link {
	font-weight: 500;
	color: var(--color-orange);
	border: 1px solid var(--color-orange);
	border-radius: calc(infinity * 1px);
	padding: 0 10px 1px;
}
@media (any-hover: hover) {
	.c-cat__link:hover {
		color: #fff;
		background-color: var(--color-orange);
	}
}
.c-cat__link--current {
	color: #fff;
	background-color: var(--color-orange);
}
.c-cat__link--chukai {
	color: #e2c100;
	border: 1px solid #e2c100;
}
@media (any-hover: hover) {
	.c-cat__link--chukai:hover {
		color: #fff;
		background-color: #e2c100;
	}
}
.c-cat__link--chukai.c-cat__link--current {
	color: #fff;
	background-color: #e2c100;
}

/* トピックス */
.c-topics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 60px;
	max-width: 1020px;
	margin-inline: auto;
}
@media (width <= 960px) {
	.c-topics {
		gap: 60px 30px;
	}
}
@media (width <= 767px) {
	.c-topics {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.c-topics__item--close .c-topics__img img {
	filter: blur(0.25rem);
}
.c-topics__item--close .c-topics__img::after {
	content: "完売いたしました";
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3607843137);
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	opacity: 1;
}
@media (any-hover: hover) {
	.c-topics__link:hover .c-topics__img img {
		scale: 1.05;
	}
}
.c-topics__link > * + * {
	margin-top: 20px;
}
.c-topics__cat {
	display: inline-block;
	font-weight: 500;
	color: #fff;
	background-color: var(--color-orange);
	border-radius: 6px 6px 0 0;
	padding: 0 10px;
}
.c-topics__cat--chukai {
	background-color: #e2c100;
}
.c-topics__img {
	aspect-ratio: 3/2;
	border-radius: 0 6px 6px 6px;
	margin-top: 0;
	position: relative;
	overflow: hidden;
}
.c-topics__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale 0.5s ease-out;
}
.c-topics__detail > * + * {
	margin-top: 20px;
}
.c-topics__detail-title {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-orange);
}

/* フォーム項目 */
.c-form {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px 12px;
}
@media (width <= 640px) {
	.c-form {
		flex-direction: column;
		row-gap: 0;
	}
}
.c-form__title {
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-orange);
	width: 210px;
	min-height: 50px;
	padding-right: 40px;
	position: relative;
}
@media (width <= 640px) {
	.c-form__title {
		gap: 12px;
		width: 100%;
	}
}
.c-form__title::after {
	content: "任意";
	font-size: 14px;
	color: #fff;
	background-color: #b4b4b4;
	border-radius: 4px;
	padding: 0 5px;
	position: absolute;
	inset: 0 0 auto auto;
}
@media (width <= 640px) {
	.c-form__title::after {
		position: relative;
		inset: auto;
	}
}
.c-form__title--required::after {
	content: "必須";
	background-color: var(--color-orange);
}
.c-form__content {
	width: calc(100% - 12px - 210px);
}
@media (width <= 640px) {
	.c-form__content {
		width: 100%;
	}
}
.c-form__content input[type=text],
.c-form__content input[type=email],
.c-form__content input[type=tel] {
	width: 100%;
	min-height: 50px;
	border-color: var(--color-sub-orange);
	border-radius: 6px;
	padding: 10px;
}
.c-form__content textarea {
	width: 100%;
	border-color: var(--color-sub-orange);
	border-radius: 6px;
	padding: 10px;
}
@media (width <= 640px) {
	.c-form__content + .c-form__title {
		margin-top: 30px;
	}
}
.c-form__privacy {
	height: 230px;
	border: 1px solid var(--color-sub-orange);
	border-radius: 6px;
	padding: 30px;
	overflow-y: scroll;
}
.c-form__privacy > dd + dt {
	margin-top: 1em;
}
.c-form__consent {
	max-width: max-content;
	margin-inline: auto;
}
.c-form__checkbox label {
	padding-left: 40px;
	position: relative;
}
.c-form__checkbox label::before {
	content: "";
	display: block;
	width: 26px;
	aspect-ratio: 1;
	background: url(../img/common/icon_checkbox01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% auto auto 0;
	translate: 0 -50%;
	transition: background-image 0.2s ease-out;
}
.c-form__checkbox label:has(input:checked)::before {
	background-image: url(../img/common/icon_checkbox02.svg);
}
.c-form__checkbox input[type=checkbox],
.c-form__checkbox input[type=radio] {
	all: unset;
}
.c-form__submit {
	max-width: 350px;
	margin-inline: auto;
	position: relative;
}
.c-form__submit::after {
	content: "";
	display: block;
	width: 7px;
	aspect-ratio: 1/2;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 20px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
}
@media (any-hover: hover) {
	.c-form__submit:hover::after {
		right: 10px;
	}
}
.c-form__submit input {
	--btn-color: var(--color-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 500;
	width: 100%;
	min-height: 86px;
	border: 1px solid var(--btn-color);
	background-color: var(--btn-color);
	border-radius: 6px;
	padding: 5px 30px;
	position: relative;
	transition: 0.2s ease-out;
}
.c-form__submit .wpcf7-spinner {
	display: none;
}

/* ページトップ */
.c-pagetop__link {
	width: 105px;
	padding-block: 80px;
	margin-inline: auto;
}
@media (width <= 640px) {
	.c-pagetop__link {
		padding-block: 30px;
	}
}

#parts > div > * + * {
	margin-top: 50px;
}

.header {
	width: 100%;
	padding: 40px 40px 0;
	position: sticky;
	inset: 0 auto auto 0;
	z-index: 100;
	filter: var(--shadow-orange);
}
@media (width <= 960px) {
	.header {
		padding: 10px 10px 0;
	}
}
.header__inner {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	background-color: #fff;
	border-radius: 12px;
	padding: 10px 20px 10px 40px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
@media (width <= 960px) {
	.header__inner {
		align-items: center;
		border-radius: 6px;
		padding: 0 0 0 10px;
	}
}
.header__title {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header__title > *:first-child {
	width: 30px;
}
.header__title > *:nth-child(2) {
	width: 100px;
}
@media (width <= 960px) {
	.header__nav {
		display: none;
	}
}
.header__nav-list {
	display: flex;
	gap: 0 2em;
	height: 100%;
}
.header__nav-link {
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
}
.header__nav-link::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-sub-orange);
	position: absolute;
	inset: auto auto -10px 50%;
	translate: -50% 0;
	scale: 0 1;
	transform-origin: center;
	transition: 0.2s ease-out;
}
@media (any-hover: hover) {
	.header__nav-link:hover {
		color: var(--color-orange);
	}
	.header__nav-link:hover::after {
		scale: 1;
	}
}
.header__nav-link--current {
	color: var(--color-orange);
}
.header__nav-link--current::after {
	scale: 1;
}
.header__menu {
	display: flex;
	align-items: center;
	gap: 0 15px;
}
.header__menu-item--sns {
	width: 40px;
}
@media (width <= 640px) {
	.header__menu-item--sns {
		display: none;
	}
}
.header__menu-item--hum {
	display: none;
}
@media (width <= 960px) {
	.header__menu-item--hum {
		display: block;
	}
}
.header--top {
	max-width: 1400px;
	margin-inline: auto;
}
.header--top .header__inner {
	max-width: 720px;
}
@media (width <= 640px) {
	.header--top .header__inner {
		max-width: max-content;
		margin-left: auto;
	}
}

/* 下層FV */
.l-fv__inner {
	display: flex;
	justify-content: flex-end;
	min-height: 650px;
	padding-block: 120px;
	position: relative;
}
@media (width <= 640px) {
	.l-fv__inner {
		min-height: 370px;
		padding-block: 60px;
	}
}
.l-fv__box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
	writing-mode: vertical-rl;
	text-orientation: upright;
}
@media (width <= 640px) {
	.l-fv__box {
		gap: 10px;
	}
}
.l-fv__title {
	font-size: clamp(28px, 2.57vw, 36px);
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.15em;
}
.l-fv__bread {
	display: flex;
	border-right: 2px dotted #232323;
	padding-right: 30px;
}
@media (width <= 640px) {
	.l-fv__bread {
		font-size: 12px;
		padding-right: 10px;
	}
}
.l-fv__bread > li {
	display: flex;
}
.l-fv__bread > li:not(:last-child)::after {
	content: "〉";
	display: block;
	margin-top: 0.8em;
}
.l-fv__bread br {
	display: none;
}
.l-fv__img {
	width: 73.88%;
	position: absolute;
	inset: -405px auto auto 0;
}
@media (width <= 960px) {
	.l-fv__img {
		width: 65%;
		top: -15vw;
	}
}
@media (width <= 640px) {
	.l-fv__img {
		width: 245px;
		inset: 45px auto auto -55px;
	}
}
.l-fv__img--thumbnail {
	aspect-ratio: 857/925;
}
.l-fv__img--thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mask-image: url("../img/common/fv_mask.webp");
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: auto 100%;
	-webkit-mask-image: url("../img/common/fv_mask.webp");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: auto 100%;
}

.hum-menu-btn {
	display: block;
	font-size: 0;
	width: 50px;
	aspect-ratio: 1;
	background-color: var(--color-sub-orange);
	position: relative;
	z-index: 100;
	cursor: pointer;
	/*ボタン内側*/
}
.hum-menu-btn::before, .hum-menu-btn::after,
.hum-menu-btn span {
	display: block;
	background: #fff;
	height: 1px;
	width: 24px;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	position: absolute;
	transform: translate(-50%, 0);
}
.hum-menu-btn::before {
	content: "";
	inset: calc(50% - 10px) auto auto 50%;
}
.hum-menu-btn::after {
	content: "";
	inset: calc(50% + 10px) auto auto 50%;
}
.hum-menu-btn span {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
}
.hum-menu-btn--active::before, .hum-menu-btn--active::after {
	width: 50%;
}
.hum-menu-btn--active::before {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.hum-menu-btn--active::after {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.hum-menu-btn--active span {
	opacity: 0;
}
.hum-menu-btn--in {
	position: absolute;
	inset: 0 0 auto auto;
}

.hum-menu-content {
	background-color: #fff;
	border-bottom-left-radius: 6px;
	padding: 60px 40px 40px;
	position: fixed;
	inset: 0 0 auto auto;
	z-index: 200;
	translate: 100% 0;
	transition: translate 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hum-menu-content--active {
	translate: 0 0;
}

.footer {
	padding-block: 80px 20px;
}
.footer__panel {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 50px 80px;
}
@media (width <= 767px) {
	.footer__panel {
		flex-direction: column;
		align-items: center;
	}
}
.footer__logo {
	width: 137px;
	padding-top: 30px;
}
@media (width <= 640px) {
	.footer__logo {
		width: 100px;
		padding-top: 0;
	}
}
.footer__box {
	display: flex;
	gap: 60px 160px;
}
@media (width <= 767px) {
	.footer__box {
		flex-direction: column;
	}
}
.footer__box > * {
	padding-block: 25px;
	position: relative;
}
.footer__box > * + *::before {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	border-left: 2px dotted var(--color-orange);
	position: absolute;
	inset: 0 auto auto -80px;
}
@media (width <= 767px) {
	.footer__box > * + *::before {
		width: 100%;
		height: 2px;
		border-top: 2px dotted var(--color-orange);
		inset: -30px auto auto 50%;
		translate: -50% 0;
	}
}
.footer__info-title {
	font-size: 18px;
	font-weight: 500;
}
.footer__info-address {
	margin-top: 1em;
}
.footer__info-address a {
	display: inline;
}
.footer__info-sns .header__menu {
	justify-content: right;
}
.footer__menu-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2em;
}
.footer__menu-list + .footer__menu-list {
	margin-top: 1em;
}
.footer__menu-list--column {
	flex-direction: column;
}
.footer__association {
	font-size: 14px;
	margin-top: 40px;
}
.footer__association-logo {
	width: 150px;
	margin-top: 10px;
	margin-left: 0.7em;
}
.footer__copy {
	font-size: 14px;
	text-align: center;
	margin-top: 100px;
}
@media (width <= 640px) {
	.footer__copy {
		margin-top: 50px;
	}
}

/* FV */
.t-fv__wrapper {
	max-width: 1400px;
	margin-inline: auto;
}
.t-fv__inner {
	max-width: 1315px;
	padding: 100px 35px 330px;
	position: relative;
	margin-left: auto;
}
@media (width <= 640px) {
	.t-fv__inner {
		display: flex;
		flex-direction: column;
		padding-block: 50px;
	}
}
.t-fv__catch {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 70px;
	position: relative;
	z-index: 1;
}
@media (width <= 960px) {
	.t-fv__catch {
		max-width: 430px;
	}
}
@media (width <= 640px) {
	.t-fv__catch {
		display: contents;
	}
}
@media (width <= 640px) {
	.t-fv__catch-title {
		order: 1;
		width: 29.73vw;
		margin-left: auto;
	}
}
@media (width <= 640px) {
	.t-fv__catch-text {
		order: 3;
		margin-top: 50px;
	}
}
.t-fv__tv {
	position: absolute;
	inset: auto 80px 60px auto;
	transition-delay: 0.4s;
}
@media (width <= 640px) {
	.t-fv__tv {
		order: 2;
		margin-top: 16.22vw;
		position: relative;
		inset: auto;
	}
}
.t-fv__tv-text {
	position: relative;
	z-index: 1;
}
.t-fv__tv-text img {
	width: 100px;
	margin-left: auto;
}
.t-fv__tv-img {
	width: 260px;
	aspect-ratio: 16/9;
	filter: var(--shadow-orange);
	margin-top: 15px;
}
@media (width <= 640px) {
	.t-fv__tv-img {
		width: 100%;
	}
}
.t-fv__tv-img iframe {
	width: 100%;
	height: 100%;
}
.t-fv__img01 {
	width: 49.05%;
	aspect-ratio: 645/695;
	position: absolute;
	inset: -170px -30px auto auto;
}
@media (width <= 1200px) {
	.t-fv__img01 {
		width: 45%;
	}
}
@media (width <= 960px) {
	.t-fv__img01 {
		top: -100px;
	}
}
@media (width <= 767px) {
	.t-fv__img01 {
		right: -110px;
	}
}
@media (width <= 640px) {
	.t-fv__img01 {
		width: 70.54vw;
		inset: -9.46vw auto auto -16.76vw;
	}
}
.t-fv__img01::before {
	content: "";
	display: block;
	width: 113.18%;
	aspect-ratio: 730/660;
	background: url(../img/home/fv_mask_bg.webp) center/contain no-repeat;
	position: absolute;
	inset: auto auto 0 -4.34%;
}
@media (width <= 640px) {
	.t-fv__img01::before {
		inset: auto -3.08% 0 auto;
	}
}
.t-fv__img01-wrapper {
	width: 100%;
	height: 100%;
}
.t-fv__img01-mask {
	width: 100%;
	height: 100%;
}
.t-fv__img01-mask img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	mask-image: url("../img/home/fv_mask.webp");
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: auto 100%;
	-webkit-mask-image: url("../img/home/fv_mask.webp");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: auto 100%;
}
.t-fv__img02 {
	width: 240px;
	position: absolute;
	inset: auto 445px 60px auto;
	transition-delay: 0.2s;
}
@media (width <= 640px) {
	.t-fv__img02 {
		width: 32.97vw;
		inset: 66.22vw auto auto 20.27vw;
	}
}

/* about */
.t-about {
	padding-top: 90px;
}
@media (width <= 960px) {
	.t-about {
		padding-bottom: 90px;
	}
}
@media (width <= 640px) {
	.t-about {
		padding-top: 83.78vw;
	}
}
.t-about__panel01 {
	position: relative;
}
.t-about__panel01-box {
	padding-left: 50%;
}
@media (width <= 960px) {
	.t-about__panel01-box {
		padding-left: 39%;
	}
}
@media (width <= 640px) {
	.t-about__panel01-box {
		padding-left: 0;
		margin-top: 40px;
	}
}
.t-about__panel01-title {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	line-height: 1.65;
	text-align: left;
}
@media (width <= 640px) {
	.t-about__panel01-title {
		font-size: 7.5vw;
	}
}
.t-about__panel01-text {
	color: #fff;
}
.t-about__panel01-img01 {
	width: 52%;
	position: absolute;
	inset: auto auto 258px -65px;
}
@media (width <= 960px) {
	.t-about__panel01-img01 {
		width: 42%;
	}
}
@media (width <= 640px) {
	.t-about__panel01-img01 {
		width: 70.27vw;
		inset: -104.86vw -18.92vw auto auto;
	}
}
.t-about__panel01-img02 {
	width: 28.72%;
	position: absolute;
	inset: auto auto -90px 12.2%;
}
@media (width <= 960px) {
	.t-about__panel01-img02 {
		width: 18%;
	}
}
@media (width <= 640px) {
	.t-about__panel01-img02 {
		width: 35.68vw;
		inset: -43.78vw auto auto -1.62vw;
	}
}
.t-about__panel02 {
	max-width: 1400px;
	margin-top: 90px;
	position: relative;
}
@media (width <= 640px) {
	.t-about__panel02 {
		margin-top: 80px;
	}
}
.t-about__panel02-wrapper {
	max-width: 866px;
	aspect-ratio: 866/699;
	background: url(../img/common/bg_white01.svg) center/contain no-repeat;
	padding: 75px 35px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
@media (width <= 960px) {
	.t-about__panel02-wrapper {
		max-width: 100%;
		aspect-ratio: auto;
		background-size: auto 100%;
	}
}
.t-about__panel02-inner {
	max-width: 540px;
}
.t-about__panel02-box {
	display: flex;
	align-items: flex-end;
}
.t-about__panel02-titlebox {
	color: var(--color-orange);
	line-height: 1.65;
	flex: 1;
}
.t-about__panel02-title {
	font-size: clamp(24px, 2.43vw, 34px);
	font-weight: bold;
	letter-spacing: -0.05em;
}
@media (width <= 640px) {
	.t-about__panel02-title .c-brackets {
		display: inline;
		margin-inline: 0;
	}
}
.t-about__panel02-subtitle {
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
}
.t-about__panel02-dog {
	width: 138px;
	margin-right: -20px;
}
@media (width <= 640px) {
	.t-about__panel02-dog {
		width: 100px;
	}
}
.t-about__panel02-text {
	margin-top: 20px;
}
.t-about__panel02-img01 {
	width: 19.86%;
	position: absolute;
	inset: 47px auto auto -28px;
	rotate: -45deg;
}
@media (width <= 960px) {
	.t-about__panel02-img01 {
		width: 187px;
		inset: auto auto -92px -15px;
		rotate: 0deg;
	}
}
.t-about__panel02-img02 {
	width: 24.04%;
	position: absolute;
	inset: -15px -19.19% auto auto;
}
@media (width <= 640px) {
	.t-about__panel02-img02 {
		width: 115px;
		inset: -35px auto auto 16.22vw;
	}
}

/* info */
.t-info {
	padding-block: 20px 110px;
}
@media (width > 960px) {
	.t-info {
		margin-top: -120px;
	}
}
@media (width <= 640px) {
	.t-info {
		padding-bottom: 30px;
	}
}
.t-info__wrapper {
	max-width: 1400px;
	margin-inline: auto;
	position: relative;
}
.t-info__dm {
	display: flex;
	align-items: flex-end;
	gap: 30px;
	position: relative;
	z-index: 2;
}
@media (width <= 640px) {
	.t-info__dm {
		flex-direction: column-reverse;
	}
}
.t-info__dm > .box01 {
	flex: 1;
	max-width: 575px;
}
@media (width <= 640px) {
	.t-info__dm > .box01 {
		max-width: none;
		margin-left: -21.62vw;
	}
}
.t-info__dm > .box02 {
	width: 440px;
	padding-bottom: 40px;
	margin-left: auto;
}
@media (width <= 767px) {
	.t-info__dm > .box02 {
		width: 320px;
	}
}
@media (width <= 640px) {
	.t-info__dm > .box02 {
		width: 100%;
		padding-bottom: 0;
	}
}
.t-info__box > * + * {
	margin-top: 30px;
}
.t-info__title {
	font-size: 22px;
	font-weight: bold;
	color: var(--color-orange);
	border-bottom: 2px dotted var(--color-orange);
	padding-bottom: 10px;
}
.t-info__topics {
	display: flex;
	gap: 40px 80px;
	margin-top: 95px;
}
@media (width <= 640px) {
	.t-info__topics {
		flex-direction: column;
		margin-top: 50px;
	}
}
.t-info__topics > .box01 {
	width: 240px;
}
@media (width <= 640px) {
	.t-info__topics > .box01 {
		width: 100%;
	}
}
.t-info__topics > .box02 {
	width: 100%;
	flex: 1;
	margin-right: calc(-50vw + 545px);
}
@media (width <= 1140px) {
	.t-info__topics > .box02 {
		margin-right: -35px;
	}
}
@media (width <= 640px) {
	.t-info__topics > .box02 {
		width: calc(100% + 35px);
	}
}
.t-info__topics-item {
	height: auto;
}
.t-info__topics-link {
	height: 100%;
	background-color: #fff;
	border-radius: 12px;
	padding: 50px 30px;
}
@media (any-hover: hover) {
	.t-info__topics-link:hover * {
		color: var(--color-orange);
	}
}
.t-info__topics-link > * {
	transition: 0.2s ease-out;
}
.t-info__topics-link > * + * {
	margin-top: 30px;
}
.t-info__topics-title {
	font-size: 18px;
	font-weight: 500;
}
.t-info__topics-date {
	color: var(--color-orange);
}
.t-info__topics-text {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.t-info__img {
	width: 37.43%;
	position: absolute;
	inset: -8.93vw -55px auto auto;
	z-index: 2;
}
@media (width <= 960px) {
	.t-info__img {
		top: -100px;
	}
}
@media (width <= 640px) {
	.t-info__img {
		width: 237px;
		right: -30px;
	}
}

/* cv */
.t-cv {
	position: relative;
}
.t-cv__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 500px;
	aspect-ratio: 500/440;
	background: url(../img/common/bg_beige02.svg) center/contain no-repeat;
	padding-inline: 35px;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	z-index: 1;
}
@media (width <= 640px) {
	.t-cv__panel {
		aspect-ratio: auto;
		max-width: 100%;
		min-height: 425px;
		background-size: auto 100%;
		position: relative;
		inset: auto;
		translate: 0 0;
	}
}
.t-cv__text {
	font-size: clamp(22px, 1.86vw, 26px);
	font-weight: bold;
	color: var(--color-orange);
	text-align: center;
	line-height: 1.65;
}
.t-cv__tel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: clamp(35px, 3.43vw, 48px);
	font-weight: bold;
	line-height: 1.2;
	margin-top: 10px;
}
.t-cv__tel::before {
	content: "";
	display: block;
	width: 30px;
	aspect-ratio: 1;
	background: url(../img/common/icon_tel.svg) center/contain no-repeat;
}
.t-cv__btn {
	max-width: 300px;
	margin-top: 20px;
}
.t-cv__bg {
	width: 100%;
	height: 690px;
	position: relative;
}
@media (width <= 640px) {
	.t-cv__bg {
		height: 275px;
		margin-top: -30px;
	}
}
.t-cv__bg::before {
	content: "";
	display: block;
	width: 100%;
	height: 7.14vw;
	background: url(../img/common/parts_separator04.webp) center/100% auto no-repeat;
	position: absolute;
	inset: -1px auto auto 0;
}
.t-cv__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.t-cv__bg--white::before {
	background-image: url(../img/common/parts_separator05.webp);
}
@media (width <= 640px) {
	.t-cv--white {
		background-color: #fff;
	}
}
.t-cv--white .t-cv__bg::before {
	background-image: url(../img/common/parts_separator05.webp);
}

.topics__list {
	max-width: 790px;
	margin-inline: auto;
}
.topics__list-item {
	border-bottom: 1px solid var(--color-orange);
}
.topics__list-link {
	max-width: 600px;
	padding-block: 20px;
	margin-inline: auto;
}
@media (any-hover: hover) {
	.topics__list-link:hover {
		color: var(--color-orange);
	}
}
.topics__list-link > * + * {
	margin-top: 15px;
}

.topics-detail__content > * + * {
	margin-top: 60px;
}
@media (width <= 640px) {
	.topics-detail__content > * + * {
		margin-top: 40px;
	}
}
.topics-detail__content p a {
	display: inline;
	color: var(--color-orange);
}
.topics-detail__content p strong {
	font-weight: bold;
	color: var(--color-orange);
}

.wp-block-buttons.is-layout-flex {
	display: block;
}
.wp-block-buttons.is-layout-flex .wp-block-button {
	display: block;
}
.wp-block-buttons .topics-detail__btn a {
	--btn-color: var(--color-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 500;
	width: 100%;
	min-height: 86px;
	border: 1px solid var(--btn-color);
	background-color: var(--btn-color);
	border-radius: 6px;
	padding: 5px 30px;
	position: relative;
	transition: 0.2s ease-out;
}
.wp-block-buttons .topics-detail__btn a::after {
	content: "";
	display: block;
	width: 7px;
	aspect-ratio: 1/2;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 20px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
}
@media (any-hover: hover) {
	.wp-block-buttons .topics-detail__btn a:hover::after {
		right: 10px;
	}
}/*# sourceMappingURL=style.css.map */