:root {
	/* 色追加 */
	--text: #000000;
	--kinkan: #ea972c;
	--hinata: #ffe800;
	--orange: #f29f2c;
	--yellow: #ffde00;
	--white: #ffffff;
	--red: #dd0a00;
	--black: #000000;
	--back-color: #fef4d7;
	/* 透明判定 */
	--transparent: rgba(255, 255, 255, 0);
	/* ※以下色がいらない箇所はvar(--transparent)か、rgba(255, 255, 255, 0)を入力してください。 */
	/* ----- まとめて指定したい方向け ----- */
	--color_base: ;
	--color_main: ;
	/* -----/////----- 色:（最大4色） ----/////----- */
	/* 最低基準 */
	--sentence: #333;
	--body_background: #fafafa;
	--text_link: ;
	/* ヘッダー */
	--header: #fff;
	--hamburger_background: #333;
	--hamburger_span: #fafafa;
	--nav-wrap_bg: #33333382;
	--nav-link_bg: #fff;
	--nav-link_color: #222;
	--nav-link_bg-hover: #222;
	--nav-link_color-hover: #fff;
	/* メインヘッダー */
	--home-main-header_bg: #f2f2f2;
	--main-header_bg: #fafafa;
	/* メインコンテンツ */
	--main_sentence: #333;
	--post-cat: #e1e1e1;
	--post-cat-color: #333;
	--ul: #ccc;
	/* collapse（空白あり） or separate（空白無し） */
	--table--collapse: separate;
	--table_head: #ccc;
	--table_head-th: #f4f4f4;
	--table_head-td: #f4f4f4;
	--table_th: #f4f4f4;
	--table_td: #f4f4f4;
	--table_td-odd: #f4f4f4;
	--table_td-even: #ccc;
	--table_foot-th: #f4f4f4;
	--table_foot-td: #f4f4f4;

	--blockquote: #f7f7f7;
	--blockquote_border: #ccc;

	--breadcrumb_color: #000;
	--breadcrumb_color-active: #f2f2f2;
	--breadcrumb_list: #000;

	--footer: #ccc;

	/* エラー */
	--alert: #eb004e;

	/* -----/////----- フォントファミリー -----/////----- */
	/* サンセリフ（通常） */
	--font_sanserif: "Hiragino Sans", Hiragino Sans, "メイリオ", Meiryo,
		"Yu Gothic", 游ゴシック, YuGothic, "Helvetica Neue", Arial, sans-serif;
	/* セリフ（通常） */
	--font_serif: "Hiragino Mincho ProN", "Yu Mincho", "游明朝", YuMincho,
		"MS PMincho", "Times New Roman", serif;
	/* サンセリフ（游フォント優先気味） */
	--font_sanserif02: "Hiragino Sans", Hiragino Sans, "Yu Gothic", "游ゴシック",
		YuGothic, "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
	/* -----/////----- フォントサイズ -----/////----- */
	/* 最低基準 */
	--standard-size: 16px;

	/* -----/////----- width・height最大値: -----/////----- */
	--min-laptop: 768px;
	--min-desktop: 768px;

	--sm-header: 60px;
	--tab-header: 70px;
	--dsk-header: 90px;
	/* ----- 空白 ------*/
	--table-gap-column: 2px;
	--table-gap-row: 2px;

	--sm_gutter-x: 0.875rem;
	--lpt_gutter-x: 1.25rem;
	--dsk_gutter-x: 1.875rem;
	/* Grid・カラム空白（ヨコ） */
	--sm_column: 1.875rem;
	--dsk_column: 1.875rem;
	/* Grid・カラム空白（タテ） */
	--sm_row: 1.875rem;
	--dsk_row: 1.875rem;
}

* {
	margin: 0;
	padding: 0;
}

*,
*::before,
*::after {
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
	color: var(--text);
	font-family: var(--font_sanserif02);
	font-size: 16px;
	font-style: normal;
	font-style: normal;
	font-weight: 400;
	height: 100%;
	line-break: strict;
	line-height: clamp(28px, 3vw, 30px);
	-webkit-overflow-scrolling: touch;
	overflow-wrap: break-word;
	width: 100%;
	word-break: break-word;
	word-wrap: break-word;
}

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

body.open {
	overflow-y: hidden;
}

.over {
	overflow: hidden;
	position: relative;
}

.over input {
	font-family: var(--font_sanserif);
}

.over a {
	color: var(--sentence);
}

.main_contents a {
	color: var(--text_link);
}

img {
	height: auto;
	width: 100%;
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	width: min(-1.375rem + 95.2vw, 58.125rem);
}

/* -----/////----- フェアヘッダー（header） -----/////----- */
.child_container {
	& header {
		height: auto;
		margin-bottom: 15px;
	}
}
.header_container {
	max-width: 1000px;
	width: 100%;
}

.header_title {
	position: relative;
}

.header {
	background: var(--back-color);
}

.header_container {
	background: var(--back-color);

	background-image: url(/images/header/header_bg.png?{$smarty.const.CSSJSCB});
	background-position: top 25% center;
	background-repeat: no-repeat;
	background-size: cover;
	clip-path: circle(clamp(22rem, 0.0625rem + 93.6vw, 58.5625rem) at 50% 0);
	clip-path: circle(700px at 50% -99%);
	clip-path: circle(
		clamp(43.75rem, 0.0625rem + 186.4vw, 116.5625rem) at 50% -99%
	);
	margin-left: auto;
	margin-right: auto;
	max-height: 937px;
}

.header_container_inner {
	position: relative;
}

.header_logo {
	left: clamp(1.25rem, 0.6875rem + 2.4vw, 2.1875rem);
	max-width: 115px;
	position: absolute;
	top: clamp(1.25rem, 0.6875rem + 2.4vw, 2.1875rem);
	z-index: 10;
}

.header_logo a {
	align-items: center;
	display: grid;
	text-decoration: none;
	/* width: clamp(3.4375rem, -0.2904rem + 15.2941vw, 8.3125rem); */
	width: clamp(2.5rem, -0.3125rem + 12vw, 7.1875rem);
}

.home_main_date {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 5;
}

.home_main_fruit {
	position: absolute;
	top: 0;
	z-index: 5;
}

.home_main_fruit_shadow {
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
}

.home_main_bg {
	mix-blend-mode: color-burn;
	position: absolute;
	top: 0;
	z-index: -1;
}

.header_title,
.home_main_date,
.home_main_fruit,
.home_main_fruit_shadow,
.home_main_bg {
	top: clamp(1.25rem, 0.6875rem + 2.4vw, 2.1875rem);
}

/* -----/////----- 背景関連 -----/////----- */
.bg_hyuga {
	max-width: 326px;
	position: absolute;
	top: -15vw;
	width: clamp(7.5rem, -0.225rem + 32.96vw, 20.375rem);
	z-index: -20;
}

.bg_hyuga > *:first-child {
	position: absolute;
}

.bg_hyuga > *:last-child {
	position: relative;
	z-index: -1;
}

.bg_tamatama {
	bottom: -68px;
	max-width: 148px;
	position: absolute;
	right: 0;
	width: clamp(6.5rem, 4.85rem + 7.04vw, 9.25rem);
	z-index: -20;
}

.bg_tamatama > *:first-child {
	position: absolute;
}

.bg_tamatama > *:last-child {
	position: relative;
	z-index: -1;
}

.bg_photo_tamatama {
	height: auto;
	left: 20px;
	position: absolute;
	/* z-index: -5; */
	/* background: var(--back-color); */

	width: clamp(20.875rem, 16.9rem + 16.96vw, 27.5rem);
}

.bg_photo_tamatama > *:first-child {
	position: absolute;
	z-index: 1;
}

.bg_photo_tamatama > *:last-child {
	mix-blend-mode: multiply;
	position: relative;
}

.bg_photo_hyuga {
	height: auto;
	left: -25px;
	position: absolute;
	/* background: var(--back-color); */
	width: clamp(23.8125rem, 13.2rem + 45.28vw, 41.5rem);
}

.bg_photo_hyuga > *:first-child {
	position: absolute;
	z-index: 2;
}

.bg_photo_hyuga > *:last-child {
	mix-blend-mode: multiply;
	position: relative;
	z-index: 1;
}

.bg_photo_fruit {
	height: clamp(10rem, 5.125rem + 20.8vw, 18.125rem);
	left: 0;
	/* position: relative; */
	position: absolute;
	top: calc(clamp(20px, -3.2079rem + 51.0204vw, 21.25rem) * -1 - 115px);
}

.bg_photo_fruit > * {
	height: 100%;
	position: absolute;
	width: auto;
}

.bg_photo_fruit > *:nth-child(1) {
	z-index: 1;
}

.bg_photo_fruit > *:nth-child(2) {
}

.bg_photo_fruit > *:nth-child(3) {
	z-index: 2;
}

.bg_photo_fruit > *:nth-child(4) {
	z-index: 1;
}

.bg_photo_image {
	grid-area: 3 / 1 / 4 / 2;
	height: clamp(10.9375rem, 3.175rem + 33.12vw, 23.875rem);
	margin-top: -32px;
	position: relative;
}

.bg_photo_image img {
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	position: absolute;
	width: auto;
}

.bg_photo_image > *:first-child {
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: 1;
	z-index: 1;
}

.bg_photo_image > *:nth-child(2) {
}

.bg_store_hyuga {
	display: none;
	left: calc(clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem) * -1 + 10px);
	position: absolute;
	top: calc(clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem) * -1 - 35px);
	width: 200px;
}

.bg_store_hyuga > * {
	position: absolute;
}

.bg_store_hyuga > *:first-child {
	z-index: 1;
}

.bg_store_tamatama {
	bottom: calc(clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem) + 15px);
	display: none;
	position: absolute;
	right: calc(clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem) * -1 + 10px);
	width: 185px;
}

.bg_store_tamatama > * {
	position: absolute;
}

.bg_store_tamatama > :first-child {
	z-index: 1;
}

@media screen and (min-width: 768px) {
	.bg_photo_hyuga {
		left: -210px;
	}

	.bg_photo_fruit {
		grid-area: 1 / 1 / 3 / 2;
		left: auto;
		margin-top: calc(clamp(9.875rem, 7.3922rem + 5.1724vw, 10.625rem) * -1);
		position: relative;
		right: calc(clamp(4.6875rem, -10.8297rem + 32.3276vw, 9.375rem) * -1);
		top: auto;
	}

	.bg_photo_image {
		grid-area: 1 / 1 / 3 / 2;
		margin-top: calc(clamp(4.0625rem, -3.1789rem + 15.0862vw, 6.25rem) * -1);
		z-index: 5;
	}

	.bg_photo_image > * {
		margin-left: -40px;
	}

	/* .bg_photo_image > *:nth-child(2) {
    margin-left: -0px;
  } */
	.bg_store_hyuga {
		display: block;
	}

	.bg_store_tamatama {
		display: block;
	}
}

/* -----/////----- ホームヘッダー -----/////----- */
.home_main_header {
	background: #ccc;
	display: grid;
	height: 100%;

	min-height: clamp(500px, 60vw, 768px - var(--dsk-header));
	position: relative;
}

.body_header_fixed_desk .home_main_header {
	min-height: clamp(500px, 60vw, 768px);
}

.body_header_fixed_sm .home_main_header {
	min-height: clamp(500px - var(--sm-header), 60vw, 768px);
}

.body_home_main_header_bright .home_main_header::before {
	background: #fff;
	content: "";
	height: 100%;
	opacity: 0.5;
	position: absolute;
	width: 100%;
	z-index: 5;
}

.body_home_main_header_dark .home_main_header::before {
	background: #000;
	content: "";
	height: 100%;
	opacity: 0.5;
	position: absolute;
	width: 100%;
	z-index: 5;
}

.home_main_header .container {
	position: relative;
	z-index: 100;
}

.home_main_header.main_header_max {
	height: 100%;
	min-height: calc(100vh - var(--sm-header));
}

.body_header_fixed_sm .home_main_header.main_header_max {
	min-height: 100vh;
}

@media (min-width: 580px) {
	.home_main_header.main_header_max {
		min-height: calc(100vh - var(--tab-header));
	}
}

@media (min-width: 1200px) {
	.home_main_header {
		background: #ccc;
		display: grid;
		margin-top: var(--dsk-header);
	}

	.home_main_header.main_header_max {
		min-height: calc(100vh - var(--dsk-header));
	}

	.body_header_fixed_desk .home_main_header.main_header_max {
		min-height: 100vh;
	}
}

.home_main_header_bg {
	height: 100%;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	width: 100%;
}

.home_main_header_bg img {
	height: 100%;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.home_gallery .List {
	height: 100%;
	position: absolute;
	width: 100%;
}

.home_gallery li {
	height: clamp(500px, 60vw, 768px - var(--dsk-header));
	list-style-type: none;
	overflow: hidden;
	position: relative;
}

.main_header_max.home_gallery li {
	height: calc(100vh - var(--sm-header));
	max-height: calc(100vh - var(--sm-header));
}

@media (min-width: 580px) {
	.main_header_max.home_gallery li {
		height: calc(100vh - var(--tab-header));
		max-height: calc(100vh - var(--tab-header));
	}
}

@media (min-width: 1200px) {
	.main_header_max.home_gallery li {
		height: calc(100vh - var(--dsk-header));
		max-height: calc(100vh - var(--dsk-header));
	}
}

.home_gallery .swiper-slide {
	position: relative;
}

.home_gallery .swiper-slide h2 {
	display: grid;
	margin: 0 auto;
	position: relative;
	top: 400px;
	z-index: 800;
}

.home_gallery .swiper-slide[class*="-active"] .slide-media img {
	transform: scale(1.05);
	transition-delay: 0s;
}

.home_gallery .swiper-slide[class*="-active"] .slide-title {
	animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}

@keyframes mv01-fadeIn {
	0% {
		filter: blur(300px);
		opacity: 0;
		transform: scale(0.5);
	}

	100% {
		filter: blur(0);
		opacity: 1;
		transform: scale(1);
	}
}

.home_gallery li a {
	display: grid;
}

.home_gallery li img {
	display: block;
	height: 100%;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.home_gallery .swiper-slide-active .slide-media img {
	transform: scale(1.05);
	transition-delay: 0s;
}

.home_gallery .swiper-slide-active .slide-title {
	animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}

@keyframes mv01-fadeIn {
	0% {
		filter: blur(300px);
		opacity: 0;
		transform: scale(0.5);
	}

	100% {
		filter: blur(0);
		opacity: 1;
		transform: scale(1);
	}
}

.body_header_fixed .home_main_header {
	height: 100vh;
}

.home_main_header_contents {
	font-size: clamp(14px, 3vw, 16px);
	font-weight: 900;
	line-height: clamp(1.8rem, 4vw, 1.8rem);
}

.home_main_header_contents h2 {
	font-size: clamp(20px, 4vw, 36px);
	font-weight: 900;
	line-height: clamp(2.2rem, 4vw, 3.2rem);
}

.home_main {
	background: var(--back-color);
	margin-top: -10vw;
	/* overflow: hidden; */
}

.main {
	background: var(--back-color);
	margin-top: -10vw;
}

/* -----/////----- ブランド共通 -----/////----- */
.item_brand {
	padding-top: clamp(3.75rem, 3rem + 3.2vw, 5rem);
	padding-top: 72px;
	position: relative;
}

.item_brand::before {
	background: var(--back-color);
	position: absolute;
}

.item_brand_column {
	display: grid;
}

.item_brand_txt {
	font-size: clamp(0.8125rem, 0.625rem + 0.8vw, 1.125rem);
	font-weight: 600;
	line-height: clamp(1.25rem, 0.9875rem + 1.12vw, 1.6875rem);
	margin-top: 8px;
	position: relative;
	z-index: 5;
}

.item_brand_heading_wrapper {
	column-gap: 5px;
	display: grid;
	row-gap: 15px;
}

@media screen and (min-width: 768px) {
	.item_brand {
	}

	.item_brand_column {
		column-gap: clamp(1.875rem, -0.375rem + 9.6vw, 5.625rem);
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.item_campaign_head {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.item_brand_heading_wrapper {
		display: grid;
		grid-template-columns: auto auto;
	}
}

/* -----/////----- きんかん -----/////----- */
.item_brand_kinkan {
	padding-bottom: clamp(14.6875rem, 11.95rem + 11.68vw, 19.25rem);
	position: relative;
}

.heading_kinkan {
	display: grid;
	margin: 0 auto;
	max-width: 270px;
}

.heading_kinkan_small {
	align-items: center;
	background: var(--orange);
	border-radius: 5px;
	column-gap: 10px;
	display: grid;

	grid-area: 1 / 1 / 2 / 2;
	grid-template-columns: auto auto;
	margin: 0 auto;
	max-width: 230px;
	padding: 10px;
	row-gap: 7px;
}

@media (min-width: 768px) {
	.heading_kinkan_small {
		grid-template-columns: none;
		padding: 5px 10px;
	}
}

.heading_brand {
	font-family: var(--font_serif);
	margin-bottom: 20px;
}

/* -----/////----- 日向夏 -----/////----- */
.item_brand_hyuganatsu {
	padding-bottom: clamp(16.25rem, 14.45rem + 7.68vw, 19.25rem);
	position: relative;
}

.heading_hyuga {
	display: grid;
	margin: 0 auto;
	max-width: 104px;
}

/* -----/////----- 日付（記事header） -----/////----- */
.home_main_wrapper {
	display: grid;
	justify-items: center;
}

.home_main_inner {
	display: grid;
	height: clamp(22rem, 0.0625rem + 93.6vw, 58.5625rem);
	max-height: 937px;
	min-height: 352px;
	position: relative;
	width: 100%;
}

.page .home_main_inner {
	width: min(11.55rem + 11.52vw, 18.75rem);
}

.over > header .container.page > p a {
	width: 3.4375rem;
}

.title_date time {
	display: block;
	position: absolute;
}

.item_store {
	margin-top: 40px;
}

.item_store .container {
	position: relative;
	width: min(1.125rem + 91.2vw, 58.125rem);
	z-index: 5;
}

.heading_store_large {
	margin: 0 auto;
	max-width: 270px;
}

/* -----/////----- へべす（平兵衛酢） -----/////----- */
.home_contents {
	overflow: hidden;
	padding-bottom: 80px;
	padding-top: 15vw;
}

.item_campaign {
	padding-top: calc(clamp(20px, -3.2079rem + 51.0204vw, 21.25rem) + 115px);
	position: relative;
	z-index: 0;
}

.item_campaign .container {
	width: min(1.125rem + 91.2vw, 58.125rem);
}

.item_campaign_head {
	display: grid;
}

.item_campaign_inner {
	background: #fff;

	border: 5px solid var(--yellow);
	border-radius: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
	padding-bottom: clamp(1.25rem, 0.6875rem + 2.4vw, 2.1875rem);
	padding-left: clamp(1.5625rem, 1.375rem + 0.8vw, 1.875rem);

	padding-left: 15px;
	padding-right: clamp(1.5625rem, 1.375rem + 0.8vw, 1.875rem);
	padding-right: 15px;

	padding-top: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);

	position: relative;
	z-index: 10;
}

.heading_campaign_top > *:first-child {
	display: block;
	margin: 0 auto;

	max-width: 280px;
	position: relative;
	z-index: 10;
}

.heading_campaign_top {
	/* margin-top: calc(clamp(8.75rem, -3.2079rem + 51.0204vw, 21.25rem) * -1); */
	margin-top: calc(clamp(20px, -3.2079rem + 51.0204vw, 21.25rem) * -1);
	padding-top: 15px;
	position: relative;
}

.heading_campaign_top_bg {
	left: 50%;
	margin: 0 auto;
	position: absolute;
	top: -60px;
	transform: translateX(-50%);
	width: calc(100% + 60px);
	z-index: -1;
}

.item_campaign_contents {
	background: var(--yellow);
	border-radius: 20px;
	display: grid;
	margin-top: 20px;
	padding: 10px;
}

.item_campaign_contents > div:first-child p {
	margin: 0 auto;
	max-width: 210px;
}

.item_campaign_contents > div:last-child p {
	margin: 0 auto;
	max-width: 282px;
}

.item_campaign_app {
	margin-bottom: 20px;
	margin-top: 30px;
}

.heading_campaign_app {
	align-content: center;
	background: var(--yellow);
	border-radius: 5px;

	display: grid;
	height: 100vw;
	justify-content: center;
	margin: 0 auto;
	max-height: 39px;
	max-width: 120px;

	padding: 0 20px;
	padding-top: 10px;
	/* width: max-content; */

	width: 100%;
}

.heading_campaign_app > * {
	height: auto;
	max-width: 80px;
	position: absolute;
	width: 100%;
}

.list_wrap_campaign {
	counter-reset: num;
	font-size: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem);
	font-weight: 600;
	line-height: 18px;
	list-style-type: none;
	margin-bottom: 20px;
	margin-bottom: 15px;
	margin-top: 15px;
	position: relative;
}

.list_wrap_campaign li {
	margin-bottom: 15px;
	padding-left: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
	position: relative;
}

.list_wrap_campaign li:last-child {
	margin-bottom: 0;
}

.list_wrap_campaign li::before {
	align-content: center;
	background: var(--yellow);
	border-radius: 50%;
	content: counter(num);
	counter-increment: num;
	display: inline-grid;
	font-family: var(--font_serif);
	font-size: clamp(1rem, 0.85rem + 0.64vw, 1.25rem);
	font-weight: 600;
	height: clamp(1.375rem, 1.075rem + 1.28vw, 1.875rem);
	justify-items: center;
	left: 0;
	line-height: clamp(1.375rem, 1.15rem + 0.96vw, 1.75rem);
	position: absolute;
	text-align: center;
	top: 0;
	width: clamp(1.375rem, 1.075rem + 1.28vw, 1.875rem);
}

.text_campaign_notes {
	font-size: 10px;
	font-weight: 600;
	line-height: 15px;
}

.page_child {
	& .item_campaign_button {
		background: rgba(255, 255, 255, 0);
		border: none;
		display: grid;
		justify-items: center;
	}

	& .item_campaign_button a {
		background: var(--red);
		border-radius: 999px;
		color: var(--white);
		display: grid;
		/* justify-content: center; */
		font-family: var(--font_sanserif02);
		font-weight: 600;
		max-width: 500px;
		padding: 21px;
		text-decoration: dashed;
		width: 100%;
	}
}

.item_campaign_button img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 236px;
}

@media screen and (min-width: 768px) {
	.item_campaign_head {
		align-items: start;
		display: grid;
	}

	.item_campaign {
		padding-top: 60px;
	}

	.item_campaign_inner {
		background: none;
		border: none;
	}

	.heading_campaign_top {
		margin-top: 0;
	}

	.item_campaign_contents {
		background: none;
		column-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}

	.item_campaign_app {
		background: var(--white);
		border: 5px solid var(--yellow);
		border-radius: 15px;
		column-gap: 10px;
		display: grid;
		grid-template-columns: auto auto;
		margin-bottom: 45px;

		padding: 25px 25px;
	}

	.heading_campaign_app {
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		height: 100vw;
		max-height: 130px;
		max-width: 130px;
		position: relative;
		/* width: 138px; */
		width: 100vw;
	}

	.heading_campaign_app > * {
		left: 50%;
		max-width: 65px;
		position: absolute;
		top: 50%;
		transform: translate3d(-50%, -50%, 0);
	}

	.text_campaign_notes {
		text-align: end;
	}

	.heading_campaign_top {
		grid-area: 1 / 2 / 2 / 3;
	}

	.heading_campaign_top > *:first-child {
		max-width: 405px;
	}

	.heading_campaign_top_bg {
		top: -140px;
	}

	.item_campaign_contents > div:first-child p {
		margin: 0 auto;
		max-width: 257px;
	}

	.item_campaign_contents > div:last-child p {
		margin: 0 auto;
		max-width: 344px;
	}

	.heading_kinkan {
		position: relative;
		z-index: 1;
	}

	.heading_kinkan::before {
		background: url(/images/info/tamatama_bg.svg);
		background-repeat: no-repeat;
		background-size: contain;
		content: "";
		height: 102px;
		position: absolute;
		right: 0;
		top: -50px;
		width: 102px;
		z-index: -1;
	}

	.heading_hyuga {
		position: relative;
		z-index: 1;
	}

	.heading_hyuga::before {
		background: url(/images/info/hyuganatsu_bg.svg);
		background-repeat: no-repeat;
		background-size: contain;
		content: "";
		height: 102px;
		position: absolute;
		right: -60px;
		top: -50px;
		width: 102px;
		z-index: -1;
	}
}

.hebesu_bg {
	width: clamp(11.25rem, 7.875rem + 14.4vw, 16.875rem);
	width: calc(7.875rem + 14.4vw);
	z-index: -5;
}

.hebesu_campaign_contents {
	display: grid;
	row-gap: 25px;
}

.hebesu_campaign_contents figure {
	display: grid;
	position: relative;
}

.hebesu_campaign_contents figure img {
	aspect-ratio: 10 / 6;
	object-fit: cover;
}

@media screen and (min-width: 992px) {
	.hebesu_campaign_contents figure img {
		aspect-ratio: auto;
	}
}

.hebesu_campaign_contents figure figcaption {
	bottom: 20px;
	display: inline-block;
	font-size: clamp(0.8125rem, 0.7125rem + 0.16vw, 0.8125rem);
	font-weight: 600;
	position: absolute;
	right: 25px;
	text-shadow:
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff,
		0 0 3px #fff;
}

@media screen and (min-width: 992px) {
	.hebesu_campaign_contents {
		column-gap: 20px;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.hebesu_campaign_contents figure figcaption {
		bottom: 0;
		left: 0;
		position: absolute;
		right: auto;
	}
}

.heading_hebesu_sub small {
	position: absolute;
	right: 0;
	top: clamp(-4.8125rem, -2.075rem + -11.68vw, -9.375rem);
	top: calc(-2.1625rem + -11.04dvw);
	width: clamp(9.375rem, 4.125rem + 22.4vw, 18.125rem);
}

.hebesu_bg {
	display: none;
	left: 0;
	position: absolute;
	top: 0;
}

@media screen and (min-width: 992px) {
	.heading_hebesu_sub small {
		top: -9.0625rem;
	}

	.hebesu_bg {
		display: block;
	}
}

.hebesu_bg img:first-child {
	position: absolute;
	z-index: 10;
}

.hebesu_bg img:last-child {
	mix-blend-mode: multiply;
}

.img_hebesu {
	margin: 0 auto;
	margin-bottom: clamp(3.125rem, 3.875rem + -3.2vw, 1.875rem);
	margin-top: max(-0.125rem + -12.8vw, -130px);
	position: relative;
	width: clamp(17.5625rem, 6.95rem + 45.28vw, 35.25rem);
}

.img_hebesu img:first-child {
	position: absolute;
	z-index: 10;
}

.img_hebesu img:last-child {
	mix-blend-mode: multiply;
}

.heading_img {
	background: #00913a;
	border-radius: 999px;
	color: var(--white);
	font-weight: 600;

	grid-area: 4 / 1 / 5 / 2;
	/* margin-top: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem); */
	padding: 15px 25px;
	text-align: center;
}

.heading_img img {
	margin: 0 auto;
	max-width: 285px;
}

@media screen and (min-width: 768px) {
	.heading_img {
		border-radius: 10px;
		grid-area: 2 / 2 / 3 / 3;
		padding: 10px 25px;
	}
}

.heading_img > * {
	display: grid;
	width: 100%;
}

.hebesu_campaign_contents ol {
	counter-reset: num;
	font-size: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem);
	font-weight: 600;
	list-style-type: none;
	margin-bottom: 20px;
	position: relative;
}

.hebesu_campaign_contents ol li {
	margin-bottom: 30px;
	padding-left: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
	position: relative;
}

.hebesu_campaign_contents ol li::before {
	align-content: center;
	background: #00913c;
	border-radius: 50%;
	color: #fff;
	content: counter(num);
	counter-increment: num;
	display: inline-grid;
	font-family: var(--font_serif);
	font-size: clamp(1rem, 0.85rem + 0.64vw, 1.25rem);
	font-weight: 600;
	height: clamp(1.375rem, 1.075rem + 1.28vw, 1.875rem);
	justify-items: center;
	left: 0;
	line-height: clamp(1.375rem, 1.15rem + 0.96vw, 1.75rem);
	position: absolute;
	text-align: center;
	top: 0;
	width: clamp(1.375rem, 1.075rem + 1.28vw, 1.875rem);
}

@media screen and (min-width: 992px) {
	.heading_img {
		border-radius: 20px;
		/* margin-bottom: 30px;
    margin-top: 0; */
		margin: 0 auto;
		margin-bottom: 30px;
		margin-top: 0;
		width: max-content;
	}
}

.hebesu_campaign_contents div p {
	font-size: clamp(0.8125rem, 0.7125rem + 0.16vw, 0.8125rem);
	font-weight: 600;
	line-height: 18px;
}

@media screen and (min-width: 992px) {
	.heading_hebesu_sub > img {
		padding-left: clamp(11.25rem, 7.875rem + 14.4vw, 16.875rem);
		padding-left: calc(7.875rem + 14.4vw);
	}
}

.heading_hebesu_small {
	background: #00913a;
	color: #faf082;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: clamp(1.25rem, 1.0625rem + 0.8vw, 1.5625rem);
	padding: 10px 10px 5px 10px;
	text-align: center;
}

@media screen and (min-width: 992px) {
	.heading_hebesu_small {
		border-radius: 10px;
	}
}

/* -----/////----- 対象店舗 -----/////----- */
.store_wrapper {
	background: var(--white);
	border-radius: 10px;
	padding-bottom: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);

	padding-bottom: 108px;
	padding-left: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
	padding-right: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
	padding-top: clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem);

	position: relative;
}

.store_tab {
	column-gap: clamp(1px, 1vw, 5px);
	display: flex;
	margin-bottom: clamp(1.875rem, 1.402rem + 2.0182vw, 3.125rem);
	margin-top: 15px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 10px;
	padding-top: 10px;
}

@media screen and (min-width: 620px) {
	.store_tab {
		justify-content: center;
	}
}

@media screen and (min-width: 768px) {
	.store_wrapper {
		border: 2.5px solid var(--yellow);
		padding-bottom: 20px;
	}
}

.ul_list_store_wrapper .item_store_block:first-child .heading_store {
	margin-top: 0;
}

.heading_store {
	align-content: center;
	align-items: center;
	background: var(--black);
	border-radius: 5px;

	color: var(--white);

	display: grid;
	font-weight: 600;
	height: 60px;
	margin-bottom: 20px;
	margin-top: 40px;
	position: relative;
	text-align: center;
	width: 100%;
}

.item_store_block .heading_store {
	cursor: pointer;
}

.heading_store > img {
	height: clamp(1.625rem, 1.55rem + 0.32vw, 1.75rem);
	position: relative;
	z-index: 1;
}

.heading_store small {
	display: none;
	height: 100%;
	left: 50%;
	padding: 8px 5px 4px 5px;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
}

.heading_store small img {
	height: clamp(2.5rem, 2.35rem + 0.64vw, 2.75rem);
}

.heading_store_sub {
	align-items: center;
	background: var(--yellow);
	border-radius: 5px;

	display: grid;
	font-family: var(--font_serif);
	font-size: clamp(1.125rem, 0.975rem + 0.64vw, 1.375rem);
	font-weight: 600;

	height: 38px;
	justify-content: center;
}

@media screen and (min-width: 768px) {
	.store_wrapper {
		border: 2.5px solid var(--yellow);
		padding-bottom: 20px;
	}

	.heading_store_large {
		margin-bottom: -36px;
		max-width: 430px;
		position: relative;
		z-index: 1;
	}

	.heading_store {
		margin-top: 20px;
	}

	.store_open {
		padding-bottom: 30px;
	}

	.heading_store small {
		display: block;
	}
}

/* @media screen and (min-width: 992px) {
  .heading_store small {
    display: grid;
    align-items: center;
    align-content: center;
  }
} */

.store_open {
	display: none;
	/* display: grid; */
	row-gap: clamp(2.5rem, 1.75rem + 3.2vw, 3.75rem);
}

@media screen and (min-width: 992px) {
	.store_cat,
	.store_info {
		display: block;
	}
}

.store_list {
	margin-bottom: 25px;
}

.store_list li {
	border-bottom: 1px dotted #000;
	list-style-type: none;
	position: relative;
}

.store_list li p {
	text-align: end;
}

.store_list li::before {
	background: #00913c;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 10px;
	width: 8px;
}

.store_title {
	color: var(--black);
	font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);

	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	line-height: 20px;
}

.store_list {
	animation: tabfadeOut 0.5s forwards;
	column-gap: clamp(0.9375rem, 0.0744rem + 2.381vw, 1.5625rem);

	column-gap: 40px;
	display: grid;
	display: none;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 20px;
	opacity: 0;
	row-gap: clamp(0.625rem, -0.6696rem + 3.5714vw, 1.5625rem);
}
/* .heading_store_sub + .store_list {
  margin-top: 20px;
} */

@media screen and (min-width: 768px) {
	.store_list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.store_list li {
	border-bottom: none;
}

.store_list.active {
	animation: tabfadeIn 0.8s forwards;
	display: grid;
	opacity: 1;
}

@keyframes tabfadeIn {
	0% {
		opacity: 0;
	}

	100% {
		display: grid;
		opacity: 1;
	}
}

@keyframes tabfadeOut {
	0% {
		opacity: 1;
	}

	100% {
		display: none;
		opacity: 0;
	}
}

.store_list > li::after {
	display: none;
}

.store_list li::before {
	display: none;
}

.store_list li a {
	display: grid;
	row-gap: 5px;
	/* background: #fff;
    border-radius: 20px;
    padding: 0 10px 15px 10px; */
	text-decoration: none;
	transition: 0.3s ease-out;
}

.store_list li a:hover {
	opacity: 0.8;
	transition: 0.3s ease-out;
}

.store_cat {
	background: #00913c;
	border-radius: 20px 0 20px 0;
	color: #f9f17f;
	display: inline-block;
	font-size: clamp(1.25rem, 1.2027rem + 0.2018vw, 1.375rem);
	font-weight: 600;
	line-height: 40px;
	margin-left: -5px;
	margin-top: 5px;
	padding: 10px 10px 5px 10px;
	position: relative;
	text-align: center;
	width: 190px;
}

.store_cat::after {
	background: url(/images/span_after.svg);
	background-size: cover;
	content: "";
	height: 100%;
	position: absolute;
	right: -24px;
	top: 0;
	width: 48px;
}

.store_info {
	column-gap: 20px;
	display: grid;
	grid-template-columns: calc(50% - 10px) calc(50% - 10px);
}

.store_info {
	font-size: 1rem;
}

.store_img {
	aspect-ratio: 4 / 3;
	background: #c4c4c4;
	min-width: 100%;
	object-fit: cover;
	overflow: hidden;
	position: relative;
}

.store_img img {
	height: 100%;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

/* -----/////----- フッター共通・お問い合わせ（footer） -----/////----- */
.footer {
	background: var(--hinata);
	padding-bottom: 50px;
	padding-top: 30px;
}

.contact_head {
	background: var(--white);
	border-radius: 5px;
	font-size: 1rem;
	font-size: 18px;

	font-weight: 600;
	line-height: 1.75rem;

	margin: 0 auto;
	margin-bottom: 25px;

	padding: 6px 12px;
	width: max-content;
}

.footer_address {
	display: grid;
	font-style: normal;
	font-weight: 600;
	justify-items: center;
	text-align: center;
}

.footer_address small {
	font-size: 1.25rem;

	font-size: 22px;
	line-height: clamp(1.5625rem, 1.1875rem + 1.6vw, 2.1875rem);
	line-height: 20px;
	margin-bottom: 5px;
}

.footer_address p {
	font-size: 18px;
}

.footer_address span {
	display: inline-block;
	font-size: 0.875rem;
	line-height: 0.90625rem;
}

@media screen and (min-width: 768px) {
	.footer {
		padding-bottom: 25px;
		padding-top: 20px;
	}

	.footer .container {
		column-gap: 20px;
		display: grid;
		grid-template-columns: max-content auto;
		justify-content: start;
	}

	.footer_address {
		align-items: center;
		display: grid;
		grid-template-columns: auto auto;
	}

	.contact_head {
		margin-bottom: 0;
	}

	.footer_address small {
		margin-bottom: 0;
	}
}

/* -----/////----- その他 -----/////----- */
.text_shadow {
	font-size: clamp(0.875rem, 0.35rem + 2.24vw, 1.75rem);
	line-height: clamp(1.5rem, 0.6rem + 3.84vw, 3rem);
	text-align: center;
	text-shadow:
		-0.5vw -0.5vw 1vw #000,
		0.5vw 0.5vw 1vw #000,
		-0.5vw 0.5vw 1vw #000,
		0.5vw -0.5vw 1vw #000;
	text-shadow:
		-0.5dvw -0.5dvw 1dvw #000,
		0.5dvw 0.5dvw 1dvw #000,
		-0.5dvw 0.5dvw 1dvw #000,
		0.5dvw -0.5dvw 1dvw #000;
}

.font_serif {
	font-family: var(--font_serif);
}

.text_white {
	color: #fff;
}

.hebesu_point {
	position: absolute;
}

.home_news {
	position: relative;
}

.home_text {
	font-size: 15px;
	/* padding-bottom: 45px; */

	font-weight: 600;
	line-height: 24px;
	position: relative;
	text-align: center;
	z-index: 51;
}

.home_text span {
	display: inline-block;
}

.home_news .hebesu_point {
	right: -25%;
	top: 12%;
}

/* .home_pickup {
  position: relative;
}
.home_pickup .container {
  position: relative;
  z-index: 5;
} */
.home_pickup .hebesu_point {
	left: -25%;
	top: -25%;
}

.home_banner {
	padding-bottom: clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem);
	position: relative;
}

.home_banner .container {
	position: relative;
	z-index: 5;
}

.home_banner .hebesu_point {
	right: -25%;
	top: -25%;
}

.hebesu_point img {
	mix-blend-mode: color-dodge;
	width: 50dvw;
}

@media screen and (min-width: 768px) {
	.home_text {
		font-size: 22px;
		line-height: 40px;
	}

	.home_text p {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* -----/////----- 各子ページ（店舗） -----/////----- */
.page_child .header_container {
	/* clip-path: circle(clamp(12.5rem, 5rem + 32vw, 25rem); at 50% 0); */
}

.page_child .home_main_inner {
	height: clamp(12.5rem, 5rem + 32vw, 25rem);
	min-height: 200px;
}

.page_child .header_title,
.page_child .home_main_date,
.page_child .home_main_date .title_date,
.page_child .home_main_fruit,
.page_child .home_main_fruit_shadow,
.page_child .home_main_bg {
	height: clamp(12.5rem, 5rem + 32vw, 25rem);
	margin: 0 auto;
}

.page_child .home_main_date .title_date {
	display: block;
	position: absolute;
}

.page_child .header_title img,
.page_child .home_main_date .title_date img,
.page_child .home_main_fruit img,
.page_child .home_main_fruit_shadow img,
.page_child .home_main_bg img {
	height: 100%;
	width: auto;
}

.page_child .home_main_date .title_date,
.page_child .home_main_fruit,
.page_child .home_main_fruit_shadow,
.page_child .home_main_bg {
	/* top: 0; */
	left: 50%;
	transform: translateX(-50%);
}

.item_page_store {
	background: var(--hinata);

	border: 2.5px solid var(--white);
	border-radius: 20px;
	display: grid;

	display: grid;
	grid-auto-columns: 100%;
	overflow: hidden;
	padding-bottom: clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem);
	padding-left: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
	padding-right: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);

	padding-top: clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem);

	position: relative;
	z-index: 1;
}

.item_page_store::before {
	background-image: url(/images/child/article_bg.png);
	background-position: top -10% center;
	background-repeat: repeat-y;
	background-size: 135%;
	content: "";
	height: 100%;
	mix-blend-mode: hard-light;
	opacity: 0.8;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.item_page_store {
	& header {
		margin-top: 10px;

		& h1 {
			font-size: clamp(2rem, 1.325rem + 2.88vw, 3.125rem);
			line-height: clamp(2.125rem, 1.375rem + 3.2vw, 3.375rem);
		}
	}
}

.store_child_img {
	grid-area: 1 / 1 / 2 / 2;
}

.store_child_img figure {
	aspect-ratio: 3 / 2;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.store_child_img img {
	height: 100%;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

address {
	font-style: normal;
}

.store_child_address {
	font-size: 14px;
	font-weight: 600;
	line-height: 22px;
}

.store_child_address address > p:first-child {
	padding-left: calc(clamp(1rem, 0.4rem + 2.56vw, 2rem) + 5px);
	position: relative;
}

.store_child_address address > p:first-child::before {
	background: url(/images/child/icon_address.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: clamp(1rem, 0.4rem + 2.56vw, 2rem);
	left: 0;
	position: absolute;
	top: 5px;
	width: clamp(1rem, 0.4rem + 2.56vw, 2rem);
}

.store_child_address address > p:nth-child(2) {
	padding-left: calc(clamp(1rem, 0.4rem + 2.56vw, 2rem) + 5px);
	position: relative;
}

.store_child_address address > p:nth-child(2)::before {
	background: url(/images/child/icon_tel.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: clamp(1rem, 0.4rem + 2.56vw, 2rem);
	left: 0;
	position: absolute;
	top: 5px;
	width: clamp(1rem, 0.4rem + 2.56vw, 2rem);
}

.store_child_menu {
	margin-top: 10px;
}

.store_child_menu h2 {
	align-content: center;
	/* background: var(--black); */
	background: #008f3a;
	border-radius: clamp(0.25rem, 0.025rem + 0.96vw, 0.625rem);
	color: var(--white);
	display: grid;
	font-size: 12px;
	height: 20px;
	margin-bottom: 5px;
	padding: 0 8px;
	width: max-content;
}

.store_child_menu ul {
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
}

.store_child_menu ul li {
	list-style-type: none;
	margin-bottom: 5px;
	padding-left: calc(clamp(0.875rem, 0.6875rem + 0.8vw, 1.1875rem) + 8px);
	position: relative;
}

.store_child_menu ul li::before {
	background: url(/images/child/list_point.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: clamp(0.875rem, 0.6875rem + 0.8vw, 1.1875rem);
	left: 0;
	position: absolute;
	top: 5px;
	width: clamp(0.875rem, 0.6875rem + 0.8vw, 1.1875rem);
}

.store_child_menu ul li p {
	text-align: end;
}

.store_child_map {
	border-radius: 10px;
	min-height: 400px;
	overflow: hidden;
	padding-bottom: 62.5%;
	position: relative;
}

.store_child_map iframe {
	height: 100%;
	left: 0;
	object-fit: contain;
	position: absolute;
	top: 0;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.item_page_store {
		grid-auto-columns: clamp(18.75rem, 15rem + 16vw, 25rem) auto;
	}

	.item_page_store header {
		/* font-size: 25px; */
		grid-area: 1 / 1 / 2 / 3;
		line-height: 45px;
	}

	.store_child_address {
		font-size: 28px;
		grid-area: 2 / 1 / 3 / 3;
		line-height: 40px;
		margin-bottom: 20px;
	}

	.store_child_img {
		grid-area: 3 / 1 / 4 / 2;
	}

	.store_child_menu {
		grid-area: 3 / 2 / 4 / 3;
		margin-left: 40px;
		margin-top: 0;
	}

	.store_child_map {
		grid-area: 4 / 1 / 5 / 3;
		margin-top: 45px;
	}

	.store_child_img figure {
		aspect-ratio: 4 / 3;
	}

	.store_child_menu ul {
		font-size: 20px;
		line-height: 26px;
	}

	.store_child_menu ul li {
		margin-bottom: 15px;
	}

	.store_child_menu h2 {
		display: grid;
		font-size: 18px;
		justify-content: center;
		margin: 0;
		margin-bottom: 20px;
		padding: 20px;
		width: 100%;
	}
}

/* -----/////----- お問い合わせフォーム -----/////----- */
input[type="submit"] {
	-webkit-appearance: none;
	border: 0;
	border-radius: 0;
}

main form {
	font-size: clamp(0.9375rem, 2vw, 1rem);
	margin: 0 auto;
	width: 100%;
}

.formLine:not(.privacy-policy) > dd {
	display: grid;
	height: max-content;
}

.over main input {
	font-family: source-han-sans-japanese, sans-serif;
}

.formLine input,
.formLine textarea {
	border: #cccccc solid 1px;
	border-radius: 3px;
	font-size: 1rem;
	padding: 1rem 0.75rem;
}

.formLine textarea {
	display: block;
	width: 100%;
}

.formLine input:focus,
.formLine textarea:focus {
	border: #0768b3 solid 1px;
}

button,
input {
	overflow: visible;
}

input[type="text"] {
	width: 100%;
}

.formLine {
	display: grid;
	padding: 1.25rem 0;
	row-gap: 10px;
}

.formLine.privacy-policy {
	align-content: center;
	border-bottom: none;
	column-gap: 10px;
	display: grid;
	grid-template-columns: auto auto;
	justify-content: center;
	padding: 1.875rem 0;
}

.formLine.privacy-policy dd .mwform-checkbox-field-text {
	display: grid;
}

/* .formLine > dt {
  height: 100%;
  font-size: clamp(0.875rem, 3vw, 1rem);
} */
.formLine input,
.formLine textarea {
	border: 1px solid var(--unnamed-color-f06868);

	border-radius: 10px;
	font-family: source-han-sans-japanese, "Noto Sans JP", "Hiragino san",
		"Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	padding: 1rem 0.75rem;
}

.formLine textarea {
	display: block;
	max-width: 100%;
	width: 100%;
}

.formLine input,
.formLine textarea {
	background: #fff;
	border: #cccccc solid 1px;
	height: 100%;
	width: 100%;
}

.formLine dt.required {
	position: relative;
}

.formLine dt label {
	align-items: center;
	display: grid;
	grid-template-columns: auto max-content;
	height: 100%;
	justify-content: start;
}

.formLine dt span {
	/* border: 1px solid #00913c; */
	background: var(--hinata);
	border-radius: 5px;
	color: #333;
	display: inline-block;
	font-size: 0.8125rem;
	line-height: 0.8rem;
	margin-left: 1.25rem;
	padding: 0.125rem 0.3125rem 0px;
	right: 20px;
	text-align: center;
	white-space: nowrap;
}

.privacy-policy-check dd span.error,
.formLine dd span.error {
	background: var(--red);
	border-radius: 3px;
	color: var(--white);
	display: inline-block;
	font-size: 0.8rem;
	line-height: 1;
	margin-top: 0.25rem;
	order: 5;
	padding: 0.5rem;
	width: max-content;
}

.formLine.error input,
.formLine.error textarea {
	border: 1px solid #ccc;
}

.formLine input:focus,
.formLine textarea:focus,
.formLine input[type="text"].error:focus,
.formLine textarea:focus.error {
	border: 1px solid #00913c;
}

.formLine.check-radio dd {
	column-gap: 20px;
	display: grid;
	row-gap: 10px;
}

.over main dl.formLine.check-radio dd > span {
	margin-left: 0;
}

::placeholder {
	color: #999;
}

::-ms-input-placeholder {
	color: #999;
}

input[type="checkbox"],
input[type="radio"] {
	appearance: none;
	display: none;
}

#loginForm p.login-remember label {
	align-items: center;
	border: none;
	column-gap: 5px;
	display: grid;
	font-size: 1rem;
	font-weight: 400;
	grid-template-columns: max-content auto;
	padding: 0;
}

.login-remember input[type="checkbox"] {
	appearance: auto;
	display: inline-block;
	height: 18px;
	width: 18px;
}

input[type="checkbox"] + span,
input[type="radio"] + span {
	cursor: pointer;
	display: inline-block;
	padding-left: 1.8125rem;
	position: relative;
	vertical-align: middle;
}

input[type="checkbox"] + span:after,
input[type="checkbox"] + span:before,
input[type="radio"] + span:after,
input[type="radio"] + span:before {
	border: 1px solid var(--orange);
	content: "";
	display: inline-block;
	height: 16px;
	left: 0;
	position: absolute;
	top: 4px;
	width: 16px;
}

input[type="checkbox"] + span:before,
input[type="radio"] + span:before {
	background-color: #fff;
}

input[type="radio"] + span:after,
input[type="radio"] + span:before {
	border-radius: 50%;
}

input[type="checkbox"] + span:after,
input[type="radio"] + span:after {
	background: var(--orange);
	border: none;
	height: 12px;
	left: 2px;
	opacity: 0;
	top: 6px;
	width: 12px;
}

input[type="checkbox"]:checked + span::after,
input[type="radio"]:checked + span::after {
	opacity: 1;
}

/* 繝励Λ繧､繝舌す繝ｼ繝昴Μ繧ｷ繝ｼ */
.privacy-policy-check {
	padding-bottom: 1.875rem;
}

.privacy-policy-check dt {
	visibility: collapse;
}

.privacy-policy-check dd {
	display: grid;
	grid-template-columns: max-content auto;
	position: relative;
}

.privacy-policy-check.error {
	padding-bottom: 3.4375rem;
}

.privacy-policy-check span.error {
	bottom: -25px;
	display: inline-block;
	left: 0;
	position: absolute;
}

.privacy-policy-check input[type="checkbox"],
.privacy-policy-check input[type="radio"] {
	appearance: auto;
	display: inline;
	height: 18px;
	width: 18px;
}

.privacy-policy-check .mwform-checkbox-field {
	align-items: center;
	display: grid;
}

.privacy-policy-check .mwform-checkbox-field label {
	display: grid;
}

.privacy-policy-check input[type="checkbox"] + span,
.privacy-policy-check input[type="radio"] + span {
	cursor: pointer;
	display: inline;
	padding-left: 0;
	position: relative;
	vertical-align: middle;
}

.privacy-policy-check input[type="checkbox"] + span:after,
.privacy-policy-check input[type="checkbox"] + span:before,
.privacy-policy-check input[type="radio"] + span:after,
.privacy-policy-check input[type="radio"] + span:before {
	display: none;
}

.confButton {
	align-items: center;
	display: grid;
	justify-items: center;
	margin-top: 1.5625rem;
	row-gap: 16px;
}

form .button_mod {
	background: #fff;
	border: 1px solid #cccccc;
	border-radius: 5px;
	border-radius: 999px;
	color: #ccc;
	cursor: pointer;
	height: auto;
	letter-spacing: 1rem;
	line-height: 0.8rem;
	line-height: 1.5rem;
	order: 2;
	padding: 0.875rem 1.53125rem;
	text-align: center;
	vertical-align: middle;
	width: auto;
}

form .button_mod span {
	display: inline-block;
	margin-right: -1rem;
}

form .send {
	display: none;
}

.confirmation form .send {
	display: block;
}

.confirmation .backLink,
.formError .backLink,
.confirmation .localMenu,
.formError .localMenu,
.thanks .localMenu {
	display: none;
}

.formLine dd .error-wrap {
	display: block;
	width: 100%;
}

main .mw_wp_form .error {
	color: #333333;
	display: grid;
	font-size: 1rem;
}

form .button_conf,
form .button_send {
	background: #00913c;
	background: #faf082;
	border: 1px solid transparent;
	border: 1px solid #000;
	border-radius: 999px;
	border-radius: 999px;
	color: #000;
	cursor: pointer;
	font-family: var(--font_sanserif02);
	font-size: 1.125rem;
	font-size: clamp(1.125rem, 0.45rem + 2.88vw, 2.25rem);
	font-weight: 600;
	font-weight: 600;
	line-height: 1.9375rem;
	min-height: 66px;
	padding: 1.5rem;
	padding: 1.03125rem 1.9375rem;
	padding-bottom: 10px;
	padding-top: 15px;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-decoration: none;
	transition: 0.3s ease-out;
	transition: 0.3s ease-out;
	user-select: none;
	vertical-align: middle;
	width: auto;
}

form .button_conf:hover,
form .button_send:hover {
	opacity: 0.6;
	transition: 0.3s ease-out;
}

.page_contact {
	padding-bottom: clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem);
}

.page_contact .form_wrapper {
	background: #fff;
	border-radius: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
	padding-bottom: clamp(1.25rem, 0.6875rem + 2.4vw, 2.1875rem);
	padding-left: clamp(1.5625rem, 1.375rem + 0.8vw, 1.875rem);
	padding-right: clamp(1.5625rem, 1.375rem + 0.8vw, 1.875rem);
	padding-top: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
	position: relative;
	z-index: 10;
}

.page_contact form {
	width: min(100%, 1110px);
}

.formLine {
	display: grid;
	padding: clamp(1.25rem, 1.0625rem + 0.8vw, 1.5625rem) 0;
	position: relative;
	row-gap: 10px;
}

.formLine > dt {
	align-content: center;
	align-items: center;
	background: var(--black);
	border-radius: 5px;
	color: var(--white);
	display: grid;
	font-weight: 600;
	height: 60px;
	justify-content: start;
	margin-bottom: 10px;
	padding: 18px 15px 14px 15px;
	position: relative;
	text-align: center;
	width: 100%;
}
.form_check .formLine > dt {
	align-items: center;
	display: grid;
	grid-template-columns: auto max-content;
	height: 100%;
	justify-content: start;
}

/* -----/////----- アコーディオン -----/////----- */
.accordion dt button {
	background: none;
	border: none;
	color: #222;
	cursor: pointer;
	display: block;
	font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	list-style-type: none;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 5px;
	padding-top: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
	position: relative;
	text-align: start;
	width: 100%;
}

.accordion dt button::before {
	border-right: 3px solid var(--orange);
	border-top: 3px solid var(--orange);
	bottom: 0;
	content: "";
	height: 10px;
	margin: auto;
	position: absolute;
	right: 10px;
	top: -5px;
	transform: rotate(-225deg);
	transition: 0.6s;
	width: 10px;
}

.accordion.active dt button::before {
	transform: rotate(-45deg);
	transition: 0.6s;
}

.accordion dt {
	border-bottom: 1px dotted #000;
	position: relative;
}

.formLine .accordion dd label {
	display: block;
}

.formLine .accordion dd {
	display: none;
	padding: 15px 0;
	padding-left: 18px;
}

.form_recaptcha {
	display: grid;
	justify-items: center;
	margin-bottom: calc(2 * 1.5625rem);
	margin-top: 1.5625rem;
}

.over .grid_lap_2 {
	display: grid;
	/* row-gap: clamp(2.5rem, 2.125rem + 1.6vw, 3.125rem); */
}

@media (min-width: 768px) {
	.over .grid_lap_2 {
		column-gap: 30px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.over .confButton.grid_lap_2 .button_mod {
		grid-area: 1 / 1 / 2 / 2;
	}
}

.formLine .formLine {
	border: 0;
	padding: 0;
}

.formLine .formLine::after {
	display: none;
}

.page_contact {
	z-index: 50;
}

.page_contact .hebesu_point {
	right: -25%;
	top: 24%;
}

.page_contact .hebesu_point2 {
	bottom: 12%;
	left: -25%;
	right: auto;
	top: auto;
}

.formLine dd ol {
	counter-reset: num;
	font-size: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem);
	list-style-type: none;
	margin-bottom: 20px;
	margin-top: clamp(1.25rem, 1.0625rem + 0.8vw, 1.5625rem);
	position: relative;
}

.formLine dd ol li {
	margin-bottom: 30px;
	padding-left: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
	position: relative;
}

/* .formLine dd ol li::before {
	position: absolute;
    content: counter(num);
    counter-increment: num;
    display: inline-grid;
    background: #00913c;
    color: #fff;
    font-size: clamp(1rem, 0.85rem + 0.64vw, 1.25rem);
    line-height: clamp(1.375rem, 1.15rem + 0.96vw, 1.75rem);
    font-weight: 600;
    font-family: var(--font_serif);
    border-radius: 50%;
    top: 0;
    left: 0;
    width: clamp(1.375rem, 1.075rem + 1.28vw, 1.875rem);
    height: clamp(1.375rem, 1.075rem + 1.28vw, 1.875rem);
    text-align: center;
    justify-items: center;
    align-content: center;
} */
.formLine dd ol li em {
	font-style: normal;
	font-weight: 600;
}

.formLine dd ol li p {
	display: grid;
	margin-top: 10px;
}

.banner_logo {
	display: block;
	margin: 0 auto;
	max-width: 31.25rem;
	width: min(100%, 17.3156rem + 22.2951vw);
}

.qr_link {
	padding-bottom: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
	padding-left: clamp(1.875rem, 1.3125rem + 2.4vw, 2.8125rem);
	padding-right: clamp(1.875rem, 1.3125rem + 2.4vw, 2.8125rem);
	padding-top: clamp(1.875rem, -0.1875rem + 8.8vw, 5.3125rem);
	position: relative;
	z-index: 5;
}

.back_link {
	padding-bottom: clamp(3.75rem, 0.75rem + 12.8vw, 8.75rem);
	padding-left: clamp(1.875rem, 1.3125rem + 2.4vw, 2.8125rem);
	padding-right: clamp(1.875rem, 1.3125rem + 2.4vw, 2.8125rem);
	padding-top: clamp(1.875rem, -0.1875rem + 8.8vw, 5.3125rem);
	position: relative;
	z-index: 5;
}

.color_gray {
	color: #c0c0c0;
}

.store_head {
	padding-top: clamp(1.875rem, -0.1875rem + 8.8vw, 5.3125rem);
}

html #cboxOverlay {
	background: rgba(0, 0, 0, 0.6);
}

html #cboxLoadedContent {
	border: 0;
}

.child_container {
	margin-left: auto;
	margin-right: auto;
	padding-top: 15vw;
	width: min(4rem + 73.6vw, 50rem);
	width: min(100%, 50rem);
}

/* colorbox */
#colorbox,
#cboxOverlay,
#cboxWrapper {
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 9999;
}

#cboxOverlay {
	height: 100%;
	position: fixed;
	width: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
	clear: left;
}

#cboxContent {
	position: relative;
}

#cboxLoadedContent {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#cboxTitle {
	margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	cursor: pointer;
}

.cboxPhoto {
	border: 0;
	display: block;
	float: left;
	-ms-interpolation-mode: bicubic;
	margin: auto;
	max-width: none;
}

.cboxIframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

#cboxOverlay {
	background: #000;
}

#colorbox {
	outline: 0;
}

#cboxContent {
	background: #000;
	margin-top: 20px;
}

.cboxIframe {
	background: #fff;
}

#cboxError {
	border: 1px solid #ccc;
	padding: 50px;
}

#cboxLoadedContent {
	background: #fff;
	border: 5px solid #000;
}

#cboxTitle {
	color: #ccc;
	left: 0;
	position: absolute;
	top: -20px;
}

#cboxCurrent {
	color: #ccc;
	position: absolute;
	right: 0px;
	top: -20px;
}

#cboxLoadingGraphic {
	background: url(images/loading.gif) no-repeat center center;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
	background: none;
	border: 0;
	margin: 0;
	overflow: visible;
	padding: 0;
	width: auto;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
	outline: 0;
}

#cboxSlideshow {
	color: #fff;
	position: absolute;
	right: 90px;
	top: -20px;
}

#cboxPrevious {
	background: url(images/controls.png) no-repeat top left;
	height: 65px;
	left: 5px;
	margin-top: -32px;
	position: absolute;
	text-indent: -9999px;
	top: 50%;
	width: 28px;
}

#cboxPrevious:hover {
	background-position: bottom left;
}

#cboxNext {
	background: url(images/controls.png) no-repeat top right;
	height: 65px;
	margin-top: -32px;
	position: absolute;
	right: 5px;
	text-indent: -9999px;
	top: 50%;
	width: 28px;
}

#cboxNext:hover {
	background-position: bottom right;
}

#cboxClose {
	background: url(images/controls.png) no-repeat top center;
	display: block;
	height: 19px;
	position: absolute;
	right: 5px;
	text-indent: -9999px;
	top: 5px;
	width: 38px;
}

#cboxClose:hover {
	background-position: bottom center;
}

body #cboxWrapper {
	/* padding-top: 30px; */
}

body #cboxClose {
	background: url(/images/child/modal_close.svg);
	background-repeat: no-repeat;
	display: block;
	height: 60px;
	position: absolute;
	right: 5px;
	text-indent: -9999px;
	top: -20px;
	width: 60px;
}

body #cboxCurrent {
	right: 80px;
	top: -28px;
}

body #cboxPrevious {
	background: url(/images/child/modal_prev.svg);
	background-repeat: no-repeat;
	height: 60px;
	left: 5px;
	margin-top: -32px;
	position: absolute;
	text-indent: -9999px;
	top: 50%;
	width: 60px;
}

body #cboxNext {
	background: url(/images/child/modal_next.svg);
	background-repeat: no-repeat;
	height: 60px;
	margin-top: -32px;
	position: absolute;
	right: 5px;
	text-indent: -9999px;
	top: 50%;
	width: 60px;
}

body #cboxContent {
	background: none;
}

body #cboxLoadedContent {
	border-radius: 20px;
	overflow: hidden;
}

.store_child .header,
.store_child .footer,
.store_child .header_img_cover {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	/* display: none; */
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.store_child .main {
	margin-top: 0vw;
}

.store_child .child_container {
	padding-top: 0;
}

@media screen and (min-width: 599px) {
	.store_child .back_link {
		display: none;
	}
}

.a_block {
	background: var(--hinata);
	display: grid;
	/* border-radius: 20px; */
	display: grid;
	margin: 0 auto;
	margin-top: 20px;
	max-width: 600px;
	position: relative;
	row-gap: 5px;
	/* padding: 30px 10px; */
	text-decoration: none;
	transition: 0.3s;
	z-index: 1;
	/* overflow: hidden; */
}
/* .a_block::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(/images/child/article_bg.png);
  background-repeat: repeat-y;
  background-size: 135%;
  background-position: top -10% center;
  z-index: -1;
  opacity: .8;
  mix-blend-mode: hard-light;
} */
.a_block:hover {
	opacity: 0.6;
	transition: 0.3s;
}
.a_block_text {
	color: var(--black);
	font-weight: 600;
	text-align: center;
}
.a_block_strong {
	color: var(--black);
	display: block;
	font-family: var(--font_serif);
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 34px;
	text-align: center;
}
.a_block_small {
	font-size: 14px;
	grid-area: auto;
	line-height: 22px;
	margin: 0 auto;
}

.tab_miyazaki_child.active {
	display: grid;
}

.tab_miyazaki_child {
	display: none;
}

.tab_tokyo_child.active,
.tab_osaka_child.active,
.tab_fukuoka_child.active {
	display: grid;
}
.tab_tokyo_child,
.tab_osaka_child,
.tab_fukuoka_child {
	display: none;
}

/* mss kiyoto */
.dispnone {
	display: none;
}

.formLine dd span.dispnone {
	display: none;
}

form .button_mod {
	background: #00913c;
	background: #adac9e;
	border: 1px solid transparent;
	border: 1px solid #000;
	border-radius: 999px;
	border-radius: 999px;
	color: #000;
	cursor: pointer;
	font-size: 1rem;
	font-size: clamp(1.125rem, 0.45rem + 2.88vw, 2.25rem);
	font-weight: 600;
	font-weight: 600;
	line-height: 1.5rem;
	min-height: 50px;
	padding: 1.5rem;
	padding: 1.03125rem 1.9375rem;
	padding-bottom: 10px;
	padding-top: 15px;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-decoration: none;
	transition: 0.3s ease-out;
	transition: 0.3s ease-out;
	user-select: none;
	vertical-align: middle;
	width: auto;
}
