/* =========================================
   Top page background control
========================================= */
* {}
:root {
	--top-wrapper-bg-height: 48rem;
	--hero-max-height: 900px;
}
/* ヒーロー */
#indexImage {
	position: relative;
	z-index: 2;
}
.p-top-hero {
	position: relative;
	z-index: 2;
}
/* 新TOP本体 */
.p-top-main {
	position: relative;
	z-index: 2;
}
/* 旧TOP残存エリア */
#mainIndex.sample_index, .p-top-legacy {
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	line-height: 1.75;
	color: #111;
}
#mainIndex.sample_index::before, .p-top-legacy::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 100vw;
	height: var(--top-wrapper-bg-height);
	z-index: -1;
	pointer-events: none;
	/*background:
		linear-gradient(to bottom, #f4d446 0%, #f8f3e2 32%, #fcf9f2 60%, #fff 100%),
		url("../img/common/bg/bg_index_wrapper.jpg") center top / auto repeat-x;*/
}
#mainIndex.sample_index {
	width: min(100% - 4rem, 78rem);
	margin: 2rem auto 0;
	padding: 0 0 5rem;
}
#mainIndex.sample_index > article {
	width: 100%;
}
@media (max-width: 999px) {
	#mainIndex.sample_index {
		width: min(100% - 2.4rem, 96rem);
		margin: 0 auto;
		padding: 2rem 0;
	}
}
/* =========================================
   Hero
========================================= */
.p-top-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: #000;
	--hero-font-en: "Zen Antique", "Times New Roman", serif;
	--hero-font-ja: "Zen Antique", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}
.p-top-hero__media {
	position: relative;
	height: min(calc(100svh - var(--hero-header-offset)), 900px);
	min-height: 460px;
	overflow: hidden;
}
.p-top-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)), linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.12));
	pointer-events: none;
}
.p-top-hero__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
/* 1600px以下は16:9 */
@media only screen and (max-width: 1600px) {
	.p-top-hero__media {
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 9;
	}
	.p-top-hero__video {
		width: 100%;
		height: 100%;
	}
}
/* 480px以下は4:3 */
@media only screen and (max-width: 480px) {
	.p-top-hero__media {
		aspect-ratio: 4 / 3;
	}
}
.p-top-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}
.p-top-hero__inner {
	position: relative;
	width: 92%;
	max-width: 1080px;
	height: 100%;
	margin-inline: auto;
}
.p-top-hero__scene {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: center;
	gap: 1.2rem;
	width: 92%;
	max-width: 1080px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .45s ease, visibility .45s ease;
	text-align: center;
	justify-items: center;
}
/* 1つ目だけ中央 */
.p-top-hero__scene[data-scene="0"] {
	text-align: center;
	justify-items: center;
	margin-inline: auto;
}
/* 2つ目以降は左寄せ */
.p-top-hero__scene:not([data-scene="0"]) {
	text-align: left;
	justify-items: start;
	margin-inline: 0;
}
.p-top-hero__scene.is-active {
	opacity: 1;
	visibility: visible;
}
.p-top-hero__eyebrow, .p-top-hero__title, .p-top-hero__text, .p-top-hero__actions .c-button {
	font-family: var(--hero-font-ja);
	font-weight: 700;
	font-style: normal;
}
.p-top-hero__eyebrow, .p-top-hero__title, .p-top-hero__text, .p-top-hero__actions {
	margin-left: 0;
	margin-right: 0;
}
.p-top-hero__scene[data-scene="0"] .p-top-hero__eyebrow, .p-top-hero__scene[data-scene="0"] .p-top-hero__title, .p-top-hero__scene[data-scene="0"] .p-top-hero__text, .p-top-hero__scene[data-scene="0"] .p-top-hero__actions {
	margin-left: auto;
	margin-right: auto;
}
.p-top-hero__eyebrow {
	margin: 0;
	font-size: clamp(1.6rem, 1.6rem + 0.5vw, 2.8rem);
	line-height: 1.7;
	letter-spacing: 0;
	/*max-width: 34ch;*/
	text-wrap: balance;
}
.p-top-hero__title {
	margin: 0;
	font-size: clamp(3.2rem, 2.5rem + 2.2vw, 6rem);
	line-height: 1.18;
	letter-spacing: 0;
	/*max-width: 14ch;*/
	text-wrap: balance;
}
.p-top-hero__text {
	margin: 0;
	font-size: clamp(2rem, 2rem + 0.7vw, 3.2rem);
	line-height: 1.7;
	letter-spacing: 0;
	/*max-width: 28ch;*/
	text-wrap: balance;
}
.p-top-hero__scene--medium .p-top-hero__text {
	font-size: clamp(2rem, 1.5rem + 0.9vw, 4rem);
	line-height: 1.65;
	/*max-width: 24ch;*/
}
@media (max-width: 999px) {
	.p-top-hero__scene {
		width: 92vw;
		max-width: none;
		gap: 1rem;
	}
	.p-top-hero__eyebrow {
		font-size: clamp(1.4rem, 1.4rem + 0.5vw, 2rem);
		/*max-width: 30ch;*/
	}
	.p-top-hero__title {
		font-size: clamp(2.8rem, 2.8rem + 2vw, 4.8rem);
		/*max-width: 12ch;*/
	}
	.p-top-hero__text {
		font-size: clamp(1.8rem, 1.8rem + 0.5vw, 2.8rem);
		/*max-width: 24ch;*/
	}
}
@media (max-width: 767px) {
	.p-top-hero__scene {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.p-top-hero__eyebrow {
		font-size: clamp(1.2rem, 3.2vw, 1.5rem);
		line-height: 1.6;
		/*max-width: 26ch;*/
	}
	.p-top-hero__title {
		font-size: clamp(2.4rem, 5.4vw, 3.8rem);
		line-height: 1.22;
		/*max-width: 11ch;*/
	}
	.p-top-hero__text, .p-top-hero__scene--medium .p-top-hero__text {
		font-size: clamp(1.5rem, 3.8vw, 2rem);
		line-height: 1.6;
		/*max-width: 21ch;*/
	}
}
.p-top-hero__actions {
	margin-top: 8px;
	pointer-events: auto;
}
/* =========================================
   Button
========================================= */
.c-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 24px;
	border: 1px solid rgba(255, 255, 255, .45);
	color: #fff;
	text-decoration: none;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(8px);
	transition: transform .25s ease, opacity .25s ease, background-color .25s ease;
}
.c-button:hover {
	transform: translateY(-2px);
	opacity: .92;
}
/* =========================================
   Text animation
========================================= */
.js-hero-line {
	opacity: 0;
	will-change: transform, opacity;
}
.is-animated[data-animate="fade"] {
	animation: heroFadeIn .8s ease forwards;
}
.is-animated[data-animate="slide"] {
	animation: heroSlideIn .9s cubic-bezier(.22, .61, .36, 1) forwards;
}
@keyframes heroFadeIn {
	0% {
		opacity: 0;
		filter: blur(6px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}
@keyframes heroSlideIn {
	0% {
		opacity: 0;
		transform: translate3d(0, 28px, 0);
		filter: blur(8px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		filter: blur(0);
	}
}
/* =========================================
   Scene out
========================================= */
.p-top-hero__scene.is-leaving .js-hero-line {
	animation: heroFadeOut .45s ease forwards;
}
@keyframes heroFadeOut {
	0% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		filter: blur(0);
	}
	100% {
		opacity: 0;
		transform: translate3d(0, -10px, 0);
		filter: blur(4px);
	}
}
/* =========================================
   Responsive
========================================= */
@media (max-width: 999px) {
	.p-top-hero__inner {
		width: 92vw;
	}
	.p-top-hero__scene {
		width: 92vw;
		max-width: none;
	}
}
@media (max-width: 767px) {
	.p-top-hero__scene {
		gap: 12px;
		padding-top: 2em;
		padding-bottom: 2em;
	}
	.p-top-hero__title {
		line-height: 1.25;
	}
	.p-top-hero__text {
		line-height: 1.65;
	}
}
/* =========================================
   Reduced motion
========================================= */
@media (prefers-reduced-motion: reduce) {
	.p-top-hero__scene, .js-hero-line {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}
}
/* =========================================
   Top main / Facility
   - image no-crop / no-radius
========================================= */
.p-top-main {
	width: 100%;
	padding: 4em 0 2em;
	background-color: #fff;
	background-image: url("../img/common/bg/bg_index_wrapper.jpg");
	background-repeat: repeat-x;
	background-position: left top;
	background-size: 100px 480px;
}
.p-top-main .l-container {
	width: min(100% - 32px, 1080px);
	margin-inline: auto;
}
.p-top-intro {
	margin: 0 0 4em;
}
.p-top-intro figure {
	margin: 20px 0 0;
}
.p-top-intro figure button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: default;
}
.p-top-intro figure img {
	display: block;
	width: 100%;
	height: auto;
}
.p-top-section-title {
	margin: 0 0 1em;
	color: #111;
	font-weight: 700;
	text-align: center;
	line-height: 1.45;
	letter-spacing: 0.04em;
}
.p-top-section-title__lead {
	display: block;
	font-size: clamp(1.6rem, 1.2rem + 0.8vw, 2.4rem);
	line-height: 1.45;
	letter-spacing: 0.04em;
}
.p-top-section-title__main {
	display: inline-block;
	max-width: 100%;
	font-size: clamp(2rem, 1.5rem + 1vw, 3.2rem);
	line-height: 1.35;
	letter-spacing: 0;
	word-break: keep-all;
	overflow-wrap: normal;
	line-break: strict;
}
@media (max-width: 767px) {
	.p-top-section-title__lead {
		font-size: clamp(1.6rem, 1.35rem + 0.8vw, 2rem);
	}
	.p-top-section-title__main {
		font-size: clamp(2.2rem, 1.8rem + 0.9vw, 2.6rem);
		line-height: 1.4;
	}
}
.p-top-facility {
	padding: 0;
}
.p-top-facility__list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}
.p-top-facility__item {
	margin: 0;
}
.p-top-facility__item a {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
	background: #fff;
	/*border: 1px solid #e5ddd6;*/
	overflow: hidden;
	box-shadow: 0 0.25em 1.25em rgba(0, 0, 0, 0.15);
	transition:
		transform .25s ease, box-shadow .25s ease, opacity .25s ease;
	border-radius: 0.5em;
	padding: 0.75em;
}
.p-top-facility__item a:hover, .p-top-facility__item a:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
	opacity: .98;
	outline: none;
}
.p-top-facility__item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	background: #fff;
}
.p-top-facility__item span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 72px;
	padding: 0.5em 0.75em 0.6em;
	background: #462009;
	/*color: #462009;*/
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
@media (max-width: 999px) {
	.p-top-facility__item span {
		font-size: 2.25vw;
	}
}
@media (max-width: 768px) {
	.p-top-main {
		padding: 32px 0 12px;
	}
	.p-top-main .l-container {
		width: min(100% - 24px, 1200px);
	}
	.p-top-intro {
		margin-bottom: 36px;
	}
	.p-top-intro figure {
		margin-top: 16px;
	}
	.p-top-facility__list {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 18px;
	}
	.p-top-facility__item span {
		min-height: auto;
		padding: 0.65em 1em 0.75em;
		font-size: 1.8rem;
	}
	.p-top-facility__item span br {
		display: none;
	}
}
@media (max-width: 480px) {
	.p-top-facility__item span {
		min-height: auto;
		font-size: clamp(1.5rem, 4vw, 1.8rem);
	}
	.p-top-facility__item span br {
		display: block;
	}
}
/* =========================================
   Top legacy content migration
   - index_info_guide
   - index_info_group / tabs
   - indexBanner02
   - bizInfo2
   - bizInfo
========================================= */
/* -----------------------------------------
   sample_index / mainIndex
----------------------------------------- */
.sample_index, #mainIndex.sample_index {
	width: 100%;
}
#mainIndex.sample_index {
	margin-top: 0;
	padding: 0 0 5rem;
}
#mainIndex.sample_index article {
	width: min(100% - 32px, 1080px);
	margin-inline: auto;
}
@media (max-width: 999px) {
	#mainIndex.sample_index article {
		width: min(100% - 24px, 1080px);
	}
}
/* -----------------------------------------
   index_info_guide
----------------------------------------- */
/*.index_info_guide {
	display: none;
}*/
@media (max-width: 768px) {}
.index_info_guide {
	display: block;
	margin: 2.4rem auto 2.4rem;
	max-width: 768px;
}
.index_info_guide > ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.index_info_guide > ul > li {
	margin: 0;
	min-width: 0;
	letter-spacing: -0.04em;
}
.index_info_guide figure {
	margin: 0;
}
.index_info_guide button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 8.8rem;
	border: none;
	background: #fff;
	color: #462009;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.index_info_guide a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 8.8rem;
	background: #fff;
	color: #000;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.index_info_guide button:hover, .index_info_guide button:focus-visible {
	color: #d70c19;
	outline: none;
}
.index_info_guide img {
	display: block;
	width: 3.2rem;
	height: 3.2rem;
	margin: 0 auto 0.8rem;
}
.index_info_guide figcaption {
	font-size: 1.4rem;
	line-height: 1.4;
	text-align: center;
	font-weight: 700;
}
@media (max-width: 480px) {
	.index_info_guide figcaption {
		font-size: 1.2rem;
	}
}
/* -----------------------------------------
   index info tabs
----------------------------------------- */
.index_info_group {
	margin-top: 4rem;
}
.index_info_group * {
	font-family: "Noto Sans JP", sans-serif;
}
.index_info_list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #462009;
	border-left: 1px solid #462009;
	border-right: 1px solid #462009;
	box-sizing: border-box;
	position: relative;
}
.index_info_list::before, .index_info_list::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #462009;
	pointer-events: none;
	z-index: 2;
}
.index_info_list::before {
	left: calc(100% / 3);
}
.index_info_list::after {
	left: calc((100% / 3) * 2);
}
.index_info_list > li {
	width: auto;
	margin: 0;
	box-sizing: border-box;
	border-right: 0;
	position: relative;
	z-index: 1;
}
.index_info_list > li button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 5rem;
	background: #f0ece7;
	color: #462009;
	gap: 0.5em;
	font-size: 1.8rem;
	font-weight: 700;
	padding: 1em 0.5em;
	border: 0;
	border-top: 2px solid #462009;
	line-height: 1.25;
	cursor: pointer;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease;
	box-sizing: border-box;
}
.index_info_list > li button br {
	display: none;
}
.index_info_list > li button.active, .index_info_list > li button:hover, .index_info_list > li button:focus-visible, .index_info_list > li.active > button {
	border-top-color: #d70c19;
	background: #d70c19;
	color: #fff;
	outline: none;
}
.index_info_list > li button::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.25em;
	width: 1em;
	height: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-top: 0.1em;
}
@media (max-width: 768px) {
	.index_info_list > li button {}
	.index_info_list > li button::before {
		font-size: 1.5em;
		width: 1em;
		height: 1em;
	}
}
.index_info_list > li.info_event button::before {
	content: "\f073";
}
.index_info_list > li.info_facility button::before {
	content: "\f54f";
}
.index_info_list > li.info_shop button::before {
	content: "\f05a";
}
.index_info_box {
	display: none;
	flex-wrap: wrap;
	border-top: 1px solid #462009;
	border-left: 1px solid #462009;
}
.index_info_box.is-active {
	display: flex;
}
.index_info_box > div {
	width: 50%;
	background: #fff;
	border-right: 1px solid #462009;
	border-bottom: 1px solid #462009;
}
.index_info_box > div a {
	width: 100%;
	height: 100%;
	color: inherit;
	display: flex;
	gap: 1em;
	padding: 1.6rem;
	text-decoration: none;
}
.index_info_box > div a:hover, .index_info_box > div a:focus-visible {
	background: #FFF8E7;
	text-decoration: none;
	outline: none;
	transition: 0.3s;
}
.index_info_box > div a figure {
	width: 48%;
	flex-shrink: 0;
}
.index_info_box > div img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.index_info_box > div h2 {
	margin: 0 0 0.5em;
	color: #d70c19;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.4;
}
.index_info_box > div p {
	font-size: 1.5rem;
	line-height: 1.7;
}
.index_info_box > div p span {
	font-weight: 700;
	color: #d70c19;
}
.index_info_box.info_event > div {
	width: calc(100% / 3);
}
.index_info_box.info_event > div a {
	flex-direction: column;
	gap: 1.2rem;
}
.index_info_box.info_event > div a figure {
	width: 100%;
}
@media (min-width: 769px) {
	.index_info_box.info_event {
		flex-wrap: nowrap;
		border-top: 1px solid #462009;
		border-left: 1px solid #462009;
		border-right: 1px solid #462009;
		border-bottom: 1px solid #462009;
		box-sizing: border-box;
		position: relative;
	}
	.index_info_box.info_event > div {
		width: calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		box-sizing: border-box;
		border: 0;
		background: #fff;
		position: relative;
		z-index: 1;
	}
	.index_info_box.info_event::before, .index_info_box.info_event::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 1px;
		background: #462009;
		pointer-events: none;
		z-index: 2;
	}
	.index_info_box.info_event::before {
		left: calc(100% / 3);
	}
	.index_info_box.info_event::after {
		left: calc((100% / 3) * 2);
	}
}
.index_info_box.info_shop > div {
	width: calc(100% / 4);
}
.index_info_box.info_shop > div a {
	display: block;
	padding: 0;
}
/* 施設の紹介内だけ、テキスト側が枠に合わせて自然に縮むようにする */
.index_info_box.info_facility > div a > div {
	flex: 1 1 auto;
	min-width: 0;
}

.index_info_box.info_facility > div h2 {
	margin: 0 0 0.5em;
	color: #d70c19;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.4;
	word-break: keep-all;
	overflow-wrap: anywhere;
	line-break: strict;
}
.index_info_box.info_shop > div a figure {
	width: 100%;
}
.index_info_box.info_facility > div a figure {
	max-width: 240px;
	flex-shrink: 0;
}
/* -----------------------------------------
   indexBanner02
----------------------------------------- */
.indexBanner02 {
	width: 100%;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto 2rem;
	padding: 1em 0 0;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
.indexBanner02 .box {
	width: 100%;
	padding: 0 1.6rem 1.6rem;
}
.indexBanner02 .banner_title {
	width: 92%;
	text-align: center;
	margin: 0 auto;
}
.indexBanner02 .banner_title > img {
	width: 100%;
	max-width: 64rem;
	vertical-align: middle;
}
.indexBanner02 .banner_title:nth-of-type(2) > img {
	max-width: 52rem;
}
.indexBanner02 ul.list_flex {
	display: flex;
	justify-content: space-around;
	width: 100%;
	margin: 0;
	padding: 0;
	line-height: 1.1;
	list-style: none;
}
.indexBanner02 ul.list_flex li {
	width: 40%;
	height: 4.4rem;
	margin: 0 auto 1%;
	padding: 0;
	text-align: center;
}
.indexBanner02 ul.list_flex > li a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d70c19;
	padding: 0 0.25em;
	color: #fff;
	border: 2px solid #d70c19;
	border-radius: 2px;
	text-decoration: none;
	font-weight: 700;
	transition: .3s;
}
.indexBanner02 ul.list_flex > li a:hover, .indexBanner02 ul.list_flex > li a:focus-visible {
	background-color: #fff;
	color: #d70c19;
	outline: none;
}
.indexBanner02 ul.list_flex > li a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f138";
	margin-top: 0.1em;
	margin-left: 0.2em;
	font-size: 1em;
}
/* -----------------------------------------
   responsive
----------------------------------------- */
@media (max-width: 999px) {
	.index_info_list > li button {
		font-size: 1.6rem;
	}
	.index_info_box.info_shop > div {
		width: calc(100% / 3);
	}
}
@media (max-width: 768px) {
	.index_info_list > li button {
		flex-direction: column;
		min-height: 8rem;
		font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.5rem);
	}
	.index_info_box > div, .index_info_box.info_event > div {
		width: 100%;
	}
	.index_info_box.info_shop > div {
		width: calc(100% / 3);
	}
	.index_info_box > div a {
		padding: 1.4rem;
	}
	.indexBanner02 .list_flex {
		font-size: 2.5vw;
	}
	.bizInfo, .bizInfo2, .indexBanner02, .index_info_group {
		margin-top: 0;
	}
}
@media (max-width: 480px) {
	.index_info_list > li button br {
		display: block;
	}
	.index_info_box > div a {
		flex-direction: column;
	}
	.index_info_box > div a figure {
		width: 100%;
	}
	.index_info_box.info_shop > div {
		width: calc(100% / 2);
	}
	.indexBanner02 .box {
		padding: 1em;
	}
	.indexBanner02 .banner_title {
		width: 100%;
		margin-top: 1em;
		margin-bottom: 1em;
	}
	.indexBanner02 .list_flex {
		flex-direction: column;
		row-gap: 0.5em;
		font-size: 1.6rem;
	}
	.indexBanner02 ul.list_flex li {
		width: 92% !important;
		height: 4.8rem;
	}
	.bixinfo_image_col2 > div {
		width: 100%;
	}
}
.p-top-intro__image-link {
	display: block;
}
/* add agent button */
.p-top-intro__cta-wrap {
	width: 100%;
	max-width: 720px;
	margin: 20px auto 0;
}
.p-top-intro__cta {
	display: block;
	color: #fff;
	text-decoration: none;
}
.p-top-intro__cta:hover, .p-top-intro__cta:focus, .p-top-intro__cta:active, .p-top-intro__cta:focus-visible, .p-top-intro__cta:visited {
	text-decoration: none;
}
.p-top-intro__cta-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 72px;
	padding: 1.2em 1.5em;
	background: #333;
	border: 2px solid #333;
	border-radius: 0.5em;
	text-align: center;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.p-top-intro__cta:hover .p-top-intro__cta-inner, .p-top-intro__cta:focus-visible .p-top-intro__cta-inner {
	background: #fff;
	color: #000;
	border-color: #333;
	outline: none;
}
.p-top-intro__cta-text, .p-top-intro__cta-text::after {
	color: inherit;
	text-decoration: none;
}
.p-top-intro__cta-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.3em;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	color: inherit;
}
.p-top-intro__cta-text::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f138";
	margin-top: 0.1em;
	margin-left: 0.2em;
	font-size: 1em;
	line-height: 1;
	color: inherit;
}
@media (max-width: 768px) {
	.p-top-intro__cta-wrap {
		max-width: 100%;
	}
	.p-top-intro__cta-inner {
		min-height: auto;
		padding: 1em 1.2em;
	}
	.p-top-intro__cta-text {
		font-size: 1.7rem;
	}
}