@charset "UTF-8";
/* index.css */


/* =============== common =============== */
header *,
footer *,
main *,
header *:before,
footer *:before,
main *:before,
header *:after,
footer *:after,
main *:after    {
	font-feature-settings: "palt";
	letter-spacing: .12em;
	box-sizing: border-box;
	border-collapse: collapse;
}
body,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
}
body.overflowY {
	overflow-y: hidden;
}
img {
	width: 100%;
	height: auto;
	display: block;
}

/* ----- 幅 ----- */
.wrap {
	width: 100%;
	max-width: 1200px;
	margin-left:  auto;
	margin-right: auto;
	padding: 0 60px;
}

/* -- 表示・非表示 -- */
.pc_blk { display:block !important; }
.sp_blk { display:none !important;  }


/* --- family --- */
.ff_sinmaru { font-family: a-otf-ud-shin-maru-go-pr6n, 'Noto Sans JP', noto-sans-cjk-jp, sans-serif; }


/* ========== コンテンツ全体の線の装飾 ========== */
.main_bg {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	position: relative;
}
.main_bg:before,
.main_bg:after  {
	content: "";
	width:     clamp(30px,3vw,45px);
	min-width: clamp(30px,3vw,45px);
	height: 100vh;
	display: block;
	position: fixed;
	top: 0;
	background-image: url(../../img/common/side_bg.svg);
	background-repeat: repeat-y;
	background-position: center 0;
	background-size: contain;
	background-color: #ed0080;
	z-index: 100;

	/* 追加 */
	animation: bgScroll 15s linear infinite;
}
.main_bg:before {
	left: 0;
}
.main_bg:after {
	right: 0;
}
.main_wrap,
main {
	width: 100%;
}

@keyframes bgScroll {
	from {
		background-position: center 0;
	}
	to {
		background-position: center -100%;
	}
}


/* ========== Tab表示切り替え管理 ========== */
/* 非表示（初期状態） */
.tab_section {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	inset: 0;
}
/* 表示 */
.tab_section.is-active {
	display: block;
	opacity: 1;
	visibility: visible;
	position: relative;
}
/* footer表示切り替え */
.footer_wrap {
	display: none;
}
.footer_wrap.is-active {
	display: block;
}


/* ============ Tabボタン ============ */
.tabbtn_wrap {
	margin-bottom: 8px;
}
.tabbtn_wrap ul {
	width: 75%;
	max-width: 930px;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
	margin-left:  auto;
	margin-right: auto;
}
.tabbtn_wrap li {
	width: calc(100%/3 - 8px/1.5);
	font-family: a-otf-ud-shin-maru-go-pr6n, 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
	margin-right: 8px;
}
.tabbtn_wrap li:last-of-type {
	margin-right: 0 !important;
}
.tabbtn_wrap a {
	width:  100%;
	height: 100%;
	font-size: 26px;
	font-size: clamp(18px,2vw,26px);
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	padding: .65em;
	color: #fff;
	background-color: #b4b4b5;
	border-top-right-radius: 8px;
}
/* active */
.tabbtn_wrap .is-active a {
	color: #fff;
	background-color: #f9217a;
}


/* =============== MV =============== */
#mv {
	width: 85%;
	margin-left:  auto;
	margin-right: auto;
	padding: 80px 0 70px;
	padding: clamp(30px,5vw,50px) 0 clamp(35px,7vw,70px);
}
.mv_wrap {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.mv_wrap img {
	width:  100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
}

/* --- anim h1 --- */
h1 {
	/* opacity: 0;
	transform: translateY(60px) scale(0.96);
	will-change: transform; */
}

/* --- anim 背景 --- */
.mv_wrap:before {
	content: "";
	width:  100%;
	height: 100%;
	display: block;
	position: absolute;
	top:  0;
	left: 0;
	background-image: url(../../img/common/mv_pc_bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
	/* anim */
	/* opacity: 0;
	transform: translateY(60px); */
}
.mv_anim .mv_wrap:before {
	/* animation: bounceUp 0.7s cubic-bezier(0.25, 1.5, 0.5, 1) forwards; */
}








/* ========= EVENT section ========= */
.sec_event {
	width: 100%;
	padding: 60px 0 100px;
	padding-bottom: clamp(50px,10vw,100px);
	background-color: #ffe428;
}
h2 {
	width: 80%;
	display: block;
	margin: 0 auto 40px;
	margin-bottom: clamp(20px,4vw,40px);
}
h2 img {
	width:  100%;
	object-fit: contain;
	object-position: center;
}
.head_event img {
	max-height: 60px;
}
/* 画像幅調整 */
.event_flex {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.event_flex > div {
	width: 100%;
	margin-top: 2%;
}
.event_flex .pc_half {
	width: calc(100%/2 - 1%);
}
.event_flex > div:first-of-type {
	margin-top: 0;
}

/* ----- お米が当たるチャンス！ ----- */
.chance_img {
	width: 100%;
	margin-top: 40px;
	margin-top: clamp(15px,3vw,30px);
}


/* ====== INFORMATION section ====== */
.sec_info {
	padding: 100px 0 180px;
	padding-top:    clamp(50px,10vw,100px);
	padding-bottom: clamp(90px,18vw,180px);
	background-color: #fff;
}
.head_info {
	width: 70%;
}
.head_info img {
	max-height: 45px;
}

/* ----- Tab ----- */
.sec_info .uk-subnav {
	justify-content: space-between;
	margin-left: 0;
}
.sec_info .uk-subnav li {
	width: calc(100%/4 - 8px/2);
	padding-left: 0;
}
.sec_info .uk-subnav a {
	width: 100%;
	font-size: 21px;
	font-size: clamp(14px,1.6vw,21px);
	font-family: a-otf-ud-shin-maru-go-pr6n, 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
	font-weight: bold;
	text-align: center;
	display: block;
	padding: 1.35em .65em;
	color: #fff;
	background-color: #b4b4b5;
}
/* 色 全て */
.sec_info .uk-subnav .subnav_all.uk-active a {
	background-color: #e40011;
}
/* 色 ショッピング */
.sec_info .uk-subnav .subnav_shop.uk-active a {
	background-color: #f9217a;
}
/* 色 フード */
.sec_info .uk-subnav .subnav_food.uk-active a {
	background-color: #00a73c;
}
/* 色 サービス */
.sec_info .uk-subnav .subnav_service.uk-active a {
	background-color: #009fc9;
}

/* ----- Floor heading ----- */
/* 色 全て */
.info_cont h3 {
	font-size: 40px;
	font-size: clamp(20px,4vw,40px);
	font-family: "vdl-v7gothic", 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
	text-align: left;
	margin: 50px 0;
	margin: clamp(25px,5vw,50px) 0;
	color: #e40011;
}
/* 色 ショッピング */
.info_shop h3 {
	color: #f9217a;
}
/* 色 フード */
.info_food h3 {
	color: #00a73c;
}
/* 色 サービス */
.info_service h3 {
	color: #009fc9;
}

/* ----- Floor card ----- */
.info_flex {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.info_flex > div {
	width: calc(100%/3 - 2%/1.5);
	margin-left: 2%;
}
.info_flex > div:nth-of-type(3n+1) {
	margin-left: 0;
}
.info_flex > div:nth-of-type(n+4) {
	margin-top: 2%;
}


/* ========== Footer area ========== */
footer {
	font-size: 16px;
	font-size: clamp(12px,1.6vw,16px);
	font-family: fot-tsukuardgothic-std, 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
}

/* ----- 上部 ----- */
.footer_top {
	padding: 30px 0;
	color: #fff;
	background-color: #009dc7;
}
.footer_top .wrap {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
/* google map */
.footer_top .gmap {
	width: 45%;
}
.footer_top .gmap iframe {
	width:  100%;
	height: 100%;
	min-height: 240px;
}
/* 駐車場について */
.footer_top .ftop_cont {
	width: 53%;
	line-height: 1.6;
}
.footer_top .ftop_cont a {
	text-decoration: none;
	color: #fff !important;
}
.footer_top .ftop_cont dt {
	font-weight: normal;
	margin-top: .35em;
	margin-bottom: .25em;
}
.footer_top .ftop_cont li {
	line-height: 1.5;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.footer_top .ftop_cont li + li {
	margin-top: .25em;
}

/* ----- 下部 ----- */
.footer_bottom {
	padding: 20px 0;
	color: #fff;
	background-color: #595757;
}
.fbottom_flex {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}
/* ロゴ */
.flogo {
	width: 43%;
	max-width: fit-content;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	margin-right: 3%;
}
.flogo img {
	width:  clamp(30px,6vw,60px);
	height: clamp(30px,6vw,60px);
	min-width:  clamp(30px,6vw,60px);
	min-height: clamp(30px,6vw,60px);
	object-fit: contain;
	object-position: center;
}
.logo_cont {
	font-size: 28px;
	font-size: clamp(14px,2.8vw,28px);
	font-weight: bold;
	letter-spacing: .05em;
	margin-left: .75em;
}
/* 住所 */
footer a {
	text-decoration: none !important;
	color: #fff !important;
}

.fbottom_cont {
	width: 54%;
	max-width: fit-content;
	font-weight: bold;
}
.fbottom_cont p {
	margin-bottom: .25em;
}
.fbottom_tel {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.fbottom_tel:before {
	content: "";
	width:  1em;
	height: 1em;
	min-width:  1em;
	min-height: 1em;
	display: block;
	background-image:  url(../../img/common/icon_tel.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-top: .05em;
	margin-right: .35em;
}
.fbottom_tel small {
	font-size: 12px;
}

/* ----- コピーライト ----- */
.copyright {
	font-size: 12px;
	text-align: center;
	letter-spacing: .05em;
}


/* =============== 動き =============== */
/* ----- EVENT ----- */
.slide_anim,
.slide_anim_parent > div {
	opacity: 0;
	transform: translateY(70px);
}
.is-active.slide_anim,
.is-active.slide_anim_parent > div {
	animation: slidein .4s ease forwards;
}
.is-active.slide_anim_parent > div {
	animation-delay: 0.4s;
}

.slide_anim_parent > div:nth-of-type(2) { animation-delay: 0.8s; }
.slide_anim_parent > div:nth-of-type(3) { animation-delay: 1.2s; }
.slide_anim_parent > div:nth-of-type(4) { animation-delay: 1.6s; }
.slide_anim_parent > div:nth-of-type(5) { animation-delay: 2.0s; }
.slide_anim_parent > div:nth-of-type(6) { animation-delay: 2.4s; }
.slide_anim_parent > div:nth-of-type(7) { animation-delay: 2.8s; }
.slide_anim_parent > div:nth-of-type(8) { animation-delay: 3.2s; }
.slide_anim_parent > div:nth-of-type(9) { animation-delay: 3.6s; }


@keyframes slidein {
	0% {
		opacity: 0;
		transform: translateY(70px);
	}
	5% {
		opacity: 1;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}


/* =============== coming soon =============== */
#sec_comingsoon {
	position: relative;
	background-color: #ffe428;
	z-index: 1;
}
/* 装飾 */
#sec_comingsoon .bg_deco {
	width:  100%;
	height: 100%;
	position: absolute;
	top:  0;
	left: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: -1;
}
#sec_comingsoon .bg_deco:before,
#sec_comingsoon .bg_deco:after {
	content: "";
	width:  100%;
	max-width: 1300px;
	height: 100%;
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}
#sec_comingsoon .bg_deco:before {
	background-image: url(../../img/common/coming_pc_left.png);
	background-position: center left;
}
#sec_comingsoon .bg_deco:after  {
	background-image: url(../../img/common/coming_pc_right.png);
	background-position: center right;
}
/* コンテンツ */
#sec_comingsoon .wrap {
	padding-top:    60px;
	padding-bottom: 60px;
}
/* 見出し */
#sec_comingsoon h2 {
	width: 100%;
	font-size: 50px;
	font-size: min(4vw,50px);
	font-family: vdl-v7marugothic, 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
	font-weight: 800;
	text-align: center;
	margin-bottom: .25em;
	color: #ff0000;
}
.strong_box {
	width: fit-content;
	font-size: 34px;
	font-size: min(2.8vw,34px);
	font-family: vdl-v7marugothic, 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
	line-height: 1.3;
	font-weight: 800;
	display: block;
	margin: 0 auto 1.25em;
	padding: .35em .5em;
	color: #ff0000;
	background-color: #ffffff;
}
#sec_comingsoon img {
	width: 55%;
	max-width: 550px;
	margin-left:  auto;
	margin-right: auto;
}
#sec_comingsoon img + p {
	font-size: 24px;
	font-size: min(1.8vw,24px);
	font-weight: bold;
	text-align: center;
	line-height: 1.7;
	font-family: fot-tsukuardgothic-std, 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
	margin-top: 1.5em;
	color: #000;
}

/* ----- footer ----- */
footer {
	font-family: fot-tsukuardgothic-std, 'Noto Sans JP', noto-sans-cjk-jp, sans-serif;
	color: #fff;
	background-color: #595757;
}
.footer_flex {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	padding-top:    35px;
	padding-bottom: 20px;
}
/* ロゴ */
.footer_logo {
	width:  min(8vw,90px);
	height: min(8vw,90px);
	min-width:  min(8vw,90px);
	min-height: min(8vw,90px);
	display: block;
	margin-right: 3%;
}
.footer_logo img {
	width:  100%;
	height: 100%;
	object-fit: contain;
}

/* 縦線 */
.footer_border {
	width:     1px;
	min-width: 1px;
	min-height: 100%;
	display: block;
	align-self: stretch;
	background-color: #fff;
	margin: 0 15px;
	margin: 0 min(1.5vw,15px);
}
/* 店舗名（リンク） */
.footer_shop {
	font-size: 26px;
	font-size: min(2vw,26px);
	font-weight: bold;
	display: inline-block;
	margin-bottom: .35em;
}
/* 住所 */
.footer_address,
.footer_tel,
.footer_link {
	font-size: 14px;
	font-size: min(1.4vw,14px);
	font-weight: bold;
}
.footer_address {
	line-height: 1.5;
	letter-spacing: .05em;
	margin-bottom: .75em;
}
/* 電話番号 */
.footer_tel,
.footer_link {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.footer_tel:before,
.footer_link:before {
	content: "";
	width:  1em;
	height: 1em;
	display: block;
	margin-right: .35em;
	background-image: url(../../img/common/icon_tel.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.footer_link {
	font-size: min(1.2vw,12px);
	margin-top: .35em;
}
.footer_link:before {
	width:  1.1em;
	height: 1.1em;
	background-image: url(../../img/common/icon_blank.svg);
	transform: translateY(.05em);
	margin-right: .65em;
}

.footer_tel small {
	font-size: 12px;
	font-size: min(1.2vw,12px);
}
/* コピーライト */
.copyright {
	padding-bottom: 20px;
}





















@media screen and (max-width:768px) {
	/* =============== common =============== */
	/* ----- 幅 ----- */
	.wrap {
		max-width: 650px;
		padding-left:  25px;
		padding-right: 25px;
		padding-left:  clamp(25px,6.667vw,50px);
		padding-right: clamp(25px,6.667vw,50px);
	}
	/* -- 表示・非表示 -- */
	.pc_blk { display:none !important; }
	.sp_blk { display:block !important; }


	/* ========== コンテンツ全体の線の装飾 ========== */
	.main_bg {
		display: inline;
	}
	.main_bg:before,
	.main_bg:after {
		content: none;;
	}


	/* ============ Tabボタン ============ */
	.tabbtn_wrap {
		margin-bottom: 3px;
	}
	.tabbtn_wrap ul {
		width: 80%;
	}
	.tabbtn_wrap li {
		width: calc(100%/3 - 3px/1.5);
	}
	.tabbtn_wrap li {
		margin-right: 3px;
	}
	.tabbtn_wrap a  {
		font-size: 16px;
		padding-top:    .35em;
		padding-bottom: .35em;
	}


	/* =============== MV =============== */
	#mv {
		width: 90%;
		padding-top: 20px;
	}
	.mv_wrap:before {
		background-image: url(../../img/common/mv_sp_bg.png);
	}

	/* ========= EVENT section ========= */
	.sec_event {
		padding-top:    25px;
		padding-bottom: 25px;
	}
	.head_event {
		width: 85%;
		margin-bottom: 25px;
	}
	/* 画像幅調整 */
	.event_flex .pc_half {
		width: 100%;
	}
	.event_flex > div + div {
		margin-top: 25px;
	}


	/* ====== INFORMATION section ====== */
	.head_info {
		width: 92%;
		margin-bottom: 30px;
	}

	/* ----- Tab ----- */
	.sec_info .uk-subnav li {
		width: calc(100%/4 - 4px/2);
	}
	.sec_info .uk-subnav a {
		font-size: 12px;
		font-size: min(3vw,12px);
		letter-spacing: 0;
		padding: 1em .25em;
	}
	.sec_info .uk-subnav span {
		letter-spacing: 0;
		display: inline-block;
		transform: scale(1.1);
	}

	/* ----- Floor heading ----- */
	.info_cont h3 {
		font-size: 25px;
		margin-top:    25px;
		margin-bottom: 25px;
	}

	/* ----- Floor card ----- */
	.sec_info .info_flex > div {
		width: 100%;
		margin-top:  0;
		margin-left: 0;
	}
	.sec_info .info_flex > div + div {
		margin-top: 15px;
	}



	/* ========== Footer area ========== */
	footer {
		font-size: 14px;
		font-size: min(3.5vw,14px);
	}

	/* ----- 上部 ----- */
	.footer_top .wrap {
		flex-wrap: wrap;
		flex-direction: column;
	}
	/* google map */
	.footer_top .gmap {
		width: 100%;
		margin-bottom: 15px;
	}
	.footer_top .gmap iframe {
		min-height: 200px;
	}
	/* 駐車場について */
	.footer_top .ftop_cont {
		width: 100%;
	}
	.footer_top .ftop_cont,
	.footer_top .ftop_cont dt {
		font-weight: bold;
	}

	/* ----- 下部 ----- */
	.footer_bottom {
		padding-top:    30px;
		padding-bottom: 20px;
	}
	.fbottom_flex {
		align-items: flex-start;
	}
	/* ロゴ */
	.flogo {
		width:  60px;
		height: 60px;
		min-width:  60px;
		min-height: 60px;
		min-width: inherit;
		margin-right: 15px;
	}
	.flogo img {
		width:  100%;
		height: 100%;
		min-width:  inherit;
		min-height: inherit;
	}
	.logo_cont {
		font-size: 20px;
		margin-left: 0;
		margin-bottom: .65em;
	}
	/* 住所 */
	.fbottom_cont {
		width: 100%;
	}
	.fbottom_cont p {
		line-height: 1.5;
		margin-bottom: .75em;
	}

	/* ----- コピーライト ----- */
	.copyright {
		font-size: 10px;
	}


	/* =============== 動き =============== */
	/* ----- EVENT ----- */
	.js-target.slide_anim {
		opacity: 0 !important;
		transform: translateY(70px) !important;
	}
	.is-active.slide_anim_parent > div {
		animation: none !important;
	}
	.js-target.slide_anim_parent .is-active {
		animation: slidein .4s ease forwards !important;
		animation-delay: 0 !important;
	}
	@keyframes slidein {
		0% {
			opacity: 0;
			transform: translateY(70px);
		}
		5% {
			opacity: 1;
		}
		100% {
			transform: translateY(0);
			opacity: 1;
		}
	}


	/* =============== coming soon =============== */
	#sec_comingsoon .wrap {
		padding-top:    40px;
		padding-bottom: 40px;
	}
	/* 装飾 */
	#sec_comingsoon .bg_deco:before,
	#sec_comingsoon .bg_deco:after {
		max-width: 480px;
	}
	#sec_comingsoon .bg_deco:before {
		background-image: url(../../img/common/coming_sp_left.png);
	}
	#sec_comingsoon .bg_deco:after  {
		background-image: url(../../img/common/coming_sp_right.png);
	}


	/* 見出し */
	#sec_comingsoon h2 {
		font-size: 26px;
		font-size: min(6.933vw,26px);
		margin-bottom: .35em;
	}
	.strong_box {
		font-size: 20px;
		font-size: min(5.333vw,20px);
		text-align: center;
		padding: .5em .75em;
	}
	/* coming soon */
	#sec_comingsoon img {
		width: 80%;
		max-width: 240px;
	}
	#sec_comingsoon img + p {
		font-size: 16px;
		font-size: min(4.267vw,16px);
		margin-top: 1.25em;
	}

	/* ----- footer ----- */
	.footer_flex {
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding-top: 20px;
	}
	.footer_card {
		text-align: center;
	}
	/* ロゴ */
	.footer_logo {
		width:  90px;
		height: 90px;
		min-width:  90px;
		min-height: 90px;
		margin-right: 0;
		margin-bottom: 25px;
	}
	/* 線 */
	.footer_border {
		width: 100%;
		height: .5px;
		margin: 15px 0;
	}
	/* 店名 */
	.footer_shop {
		font-size: 16px;
		font-size: min(4.267vw,16px);
		margin-bottom: .45em;
	}
	/* 住所 */
	.footer_address {
		font-size: 12px;
		font-size: min(3.2vw,12px);
		text-align: center;
		margin-bottom: .75em;
	}
	/* 電話番号 */
	.footer_tel,
	.footer_link {
		font-size: 13px;
		font-size: min(3.467vw,13px);
		text-align: left;
	}
	.footer_tel small {
		font-size: 12px;
		font-size: min(3.2vw,12px);
	}
	

}