@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');

html {
	scroll-behavior: smooth;
	overflow-y: scroll!important;
	width: 100%;
	box-sizing: border-box;
}
html {
  --top-spacing: 100px;
  scroll-padding-top: var(--top-spacing);
}
body{
	font-family: "Kiwi Maru","Noto Sans JP","游ゴシック","メイリオ",sans-serif;
	position: relative;
	margin: 0;
  display: flex;
  flex-direction: column;
  /* どんなに倍率を下げても、最低でも画面100%分の高さを確保する */
  min-height: 100dvh;
  overscroll-behavior-x: none;
}

a{
	text-decoration: none;
	transition: 0.7s;
	line-height: 1.7;
}
a:hover{
	opacity: 0.7;
}

h2{
	font-family: 'Kosugi Maru';
}

body{
	background-color: #ffffff;
	/*overflow: auto;
  scrollbar-gutter: stable;*/
}
*{
	padding: 0;
	margin: 0;
}
p{
	color: #333;
	font-size: 16px;
	line-height: 1.7;
}

img{
	width: 100%;
	vertical-align:top;
}
.tb_sp{
	display: none;
}
.sp_only{
	display: none;
}

.top{
	background-image: url(../img/top_hai.webp?1);
	/* max-height: 1080px; */
	min-height: 1200px;
	height: 110vh;
	background-position-x: center;
	background-position-y: bottom;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}
.top_inner{
	height: 100dvh;
	min-height: 750px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.top p{
	color: #fff;
	font-size: 31px;
	font-weight: 500;
	margin-bottom: 50px;
	margin-top: -2%;
	filter: drop-shadow(1px 1px 4px #321b00);
}
.top img{
	max-width: 380px;
	filter: drop-shadow(1px 1px 10px #321b00);
}

.para_bg{
	background-color: #321b00;
}
.para{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
/*	margin-top: -5.6%;*/
	padding: 2% 0 0;
}
.para:before{
	content: '';
	background-color: #321b00;
	height: 100%;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.pala_imgwrap {
	width: 32%;
	opacity: 0;
	/* 👇 以下2行を追加 */
	will-change: transform; /* ブラウザのアニメーション負荷を軽減 */
	transform: translate3d(0, 0, 0); /* 位置ズレ・チラつき防止のお守り */
	position: relative;
}
.pala_imgwrap img {
  width: 100%;
  aspect-ratio: 298 / 331; /* 画像の実際の縦横比を指定（例：横3、縦4） */
  object-fit: cover;
	margin-bottom: 6%;
}
.pala_imgwrap img:last-child{
	margin-bottom: 0;
}
.pala1,.pala2,.pala3,.pala4,.pala5{
	z-index: 10;
}
.open_hai{
	background-image: url(../img/open_hai.webp);
	background-position: center;
	background-size: cover;
	width: 100%;
	max-height: 900px;
	padding-top: 33%;
	display: flex;
	margin-top: -7%;
	position: relative;
}
.open_hainner{
	height: fit-content;
	margin: auto auto 4%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.open_hainner p{
	color: #fff;
	font-size: 30px;
	font-weight: 500;
	width: fit-content;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.open_hainner p:nth-of-type(2){
	font-size: 64px;
	font-weight: 600;
	font-family: "SN Pro","Zen Maru Gothic";
	line-height: 1.2;
	letter-spacing: 0.02em;
}
.open_hainner p:nth-of-type(2) span{
	font-size: 40px;
	margin-left: -17px;
}

.shownews{
	background-image: url(../img/bg.jpg);
	background-size: 40px;
	background-position-x: center;
	background-position-y: top;
	padding: 30px 20px 100px;
	position: relative;
	overflow: hidden;
}
.shownews:after{
	content: '';
  background-image: url(../img/showmenu.gif);
  width: 1335px;
  height: 600px;
  display: inline-block;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%; /* 一度、左端を画面の中央（50%）に持ってくる */
  transform: translateX(-50%);
  pointer-events: none;
}
.show{
	text-align: center;
}
.show img{
	max-width: 280px;
	margin: 45px auto 40px;
}
.show p{
	font-size: 18px;
	line-height: 2;
}
.show p span{
	font-size: 14px;
	margin: 0 -0.2em;
}
.news{
	max-width: 800px;
	width: 90%;
	margin: 45px auto 0;
	background-color: #fff;
	border-radius: 20px;
	border: solid 2px #2c4938;
	padding: 30px 30px 30px 0;
  box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
.news p{
	color: #2c4938;
}
.news_date{
	line-height: 1.2;
	margin-bottom: 5px;
}
.news_mintitle{
	line-height: 1.5;
	padding-right: 5px;
}
.news_title{
	width: 33%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.news_contents{
	width: 67%;
	display: flex;
  flex-direction: column;
  justify-content: center;
}
p.newsmain{
	font-size: 43px;
	font-family: "SN Pro", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.02em;
}
ul{
	list-style: none;
	padding: 0;
}
.news_contents ul{
	border-top: solid 0.5px #2c4938;
	border-bottom: solid 0.5px #2c4938;
	display: grid;
  grid-template-rows: repeat(3, auto) 0fr;
/*  overflow-y: auto;*/
  max-height: 100%;
}
.news_contents li{
  border-top: solid 0.5px #2c4938;
  min-height: 0;
  margin-bottom: -1px;
  margin-right: 15px;
  position: relative;
}
.news_contents li:first-of-type{
	border-top: none;
}
.news_contents li:after{
	content: '';
  position: absolute;
  right: -5px;
  top: -5px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #2c4938;
  border-right: 1px solid #2c4938;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.news_contents li a{
	padding: 15px 0 15px 5px;
	display: block;
}
.popnews_title{
	padding-bottom: 13px;
	margin-bottom: 15px;
	border-bottom: solid 1px;
}
/* --- ① スクロールバー全体の横幅（太さ） --- */
.news_contents ul::-webkit-scrollbar {
  width: 6px; /* スクロールバーの太さを8pxに */
}

/* --- ② スクロールバーの背景（レール部分） --- */
.news_contents ul::-webkit-scrollbar-track {
  background: #c0c8c3; /* 背景色 */
  border-radius: 4px;  /* 背景の角丸（太さの半分にすると綺麗な丸になります） */
}

/* --- ③ 動くつまみ（ハンドル部分） --- */
.news_contents ul::-webkit-scrollbar-thumb {
  background: #2c4938;    /* つまみの色 */
  border-radius: 4px;  /* つまみの角丸 */
}

/* 💡マウスを乗せた（ホバー）ときにつまみを少し濃くする（任意） */
.news_contents ul::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* --- ④ 上下の不要な矢印ボタン（▼）を完全に消す --- */
.news_contents ul::-webkit-scrollbar-button {
  display: none;
}

.concept{
	background-color: #2a4a39;
	position: relative;
	padding-top: 90px;
	padding-bottom: 240px;
}
.concept:before{
	content: '';
	background-image: url(../img/concept_hai.jpg);
	width: 100%;
  height: 249px;
  display: inline-block;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.concept_title{
	text-align: center;
	margin: 0 auto 60px;
	position: relative;
}
.concept_title p{
	color: #fff;
}
.concept_wrap{
	width: 70%;
/*	max-width: 1000px;*/
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.concon{
	width: 32%;
	display: flex;
	flex-direction: column;
	background-color: #072c18;
	border-radius: 20px;
}
.concon p{
	color: #fff;
}
.concon p.sp15tex{
	text-align: justify;
}
.concon img{
	border-radius: 20px 20px 0 0;
}
.concon div{
	padding: 20px 30px 35px;
}

.concon p.concon_ti{
	font-size: 22px;
	margin-bottom: 15px;
	color: #8fa097;
	line-height: 1.5;
	letter-spacing: -0.03em;
}
.concon p.concon_ti span{
	font-size: 14px;
	margin: 0 -0.2em;
}
.menu{
	background-color: #072c18;
	position: relative;
	padding-top: 160px;
	padding-bottom: 100px;
}
.menu:before{
	content: '';
	background-image: url(../img/kanpee.gif?269);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	max-width: 400px;
	width: 75%;
	height: 230px;
	position: absolute;
	top: -130px;
	right: 0;
	left: 0;
	margin: auto;
}
.menu_cont p{
	color: #fff;
	text-align: center;
}
.menu .concept_title{
	margin-bottom: 20px;
}
.menuslimg{
	position: relative;
}
.menuslimg:before{
	content: '';
	background-color: rgba(255, 255, 255, 0.0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.5s;
}
.menu .splide__slide a:hover .menuslimg:before{
	background-color: rgba(255, 255, 255, 0.3);
}
.menu .splide__slide a{
/*	transition: filter 0.3s ease;*/
}
.menu .splide__slide a:hover{
/*	filter: brightness(1.2);*/
	opacity: 1;
}
/*.pickup .splide__slide .popbtn:after,.pickup .splide__slide .popbtn p{
	transition: filter 0.5s ease;
}
.pickup .splide__slide .popbtn:hover:after,.pickup .splide__slide .popbtn:hover p{
	filter: brightness(1.2);
}*/
.pickup{
/*	max-width: 1000px;*/
	width: 70%;
	box-sizing: border-box;
	padding: 35px 0 50px;
	background-color: #2a4a39;
	margin: 30px auto;
	border-radius: 50px;
}
.pickt p{
	font-family: "SN Pro", sans-serif;
	font-weight: 700;
	font-size: 29px;
	line-height: 1;
	letter-spacing: 0.02em;
	padding-bottom: 10px;
	border-bottom: solid 1px #fff;
	width: 90%;
	margin: 0 auto 25px;
	text-align: center;
}
.pickt p span{
	font-weight: 100;
}
.pickup .splide__slide .popbtn p{
	font-size: 16px;
	line-height: 1.2;
	display: flex;
	text-align: left;
	align-items: flex-end;
	margin-bottom: 10px;
	min-height: 40px;
}
.pickup .splide__slide .popbtn p span{
	font-family: "Chiron GoRound TC", sans-serif;
	font-size: 34px;
	font-weight: 100;
	line-height: 1;
	margin-right: 12px;
	color: #d78f98;
}
.pickup .popbtn{
	position: relative;
	display: block;
}
.pickup .popbtn:after{
	content: '';
	background-image: url(../img/more_icon.png);
	background-size: 75%;
	background-repeat: no-repeat;
	background-position: center;
	width: 72px;
	height: 72px;
	position: absolute;
	bottom: -15px;
	right: -5px;
	background-color: #d78f98;
	border-radius: 50%;
}
.pickup .menu2 .popbtn p span,.menu_cont #menu2 p.menupop_name span{
	color: #a6b2c4;
}
.pickup .menu2 .popbtn:after,#menu2 .js-dialog-close.tojiru{
	background-color: #a6b2c4;
}
.pickup .menu3 .popbtn p span,.menu_cont #menu3 p.menupop_name span{
	color: #9fca9c;
}
.pickup .menu3 .popbtn:after,#menu3 .js-dialog-close.tojiru{
	background-color: #9fca9c;
}
.pickup .menu4 .popbtn p span,.menu_cont #menu4 p.menupop_name span{
	color: #ddab78;
}
.pickup .menu4 .popbtn:after,#menu4 .js-dialog-close.tojiru{
	background-color: #ddab78;
}
.pickup .menu5 .popbtn p span,.menu_cont #menu5 p.menupop_name span{
	color: #99c3c1;
}
.pickup .menu5 .popbtn:after,#menu5 .js-dialog-close.tojiru{
	background-color: #99c3c1;
}
.pickup .splide__track {
	padding-bottom: 15px;
}

.menu_shosai_wrap{
	width: 70%;
	margin: 0 auto 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu_shosai{
	width: 32%;
}
.menu_shosai a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #2a4a39;
	width: 100%;
	padding: 10px;
	border-radius: 100px;
	box-sizing: border-box;
}
.menu_shosai a p{
	font-family: "SN Pro", sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.02em;
}
.menu_shosai a p span{
	padding: 4px 8px;
	background-color: #9f0028;
	color: #fff;
	font-weight: normal;
	margin-right: 10px;
	font-size: 18px;
	border-radius: 5px;
	letter-spacing: 0;
}
.mshoname{
	width: calc(100% - 60px);
}
.more{
	background-color: rgba(255, 255, 255, 0.5);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.more img{
	width: 80%;
}
dialog.park_popy.menu_popy{
	padding: 0;
	background: transparent;
	overflow: visible;
	max-width: 1000px;
	width: 90%;
}
.menu_shosai dialog.park_popy.menu_popy{
/*	max-width: 1100px;*/
	width: 95%;
	max-width: fit-content;
	top: 48%!important;
}
.menu_shosai dialog.park_popy.menu_popy .mrap{
	/*max-width: 1100px;
	max-height: 85dvh;*/
	max-width: unset;
	max-height: unset;
}
.menu_shosai dialog.park_popy.menu_popy .mrap img{
/*	max-height: 85dvh;*/
	max-height: 90dvh;
	width: auto;
  max-width: 90vw;
}
.menu_shosai dialog.park_popy.menu_popy .js-dialog-close.batsu{
	top: -55px;
}
.menu_popcont{
	position: relative;
}
.mrap{
	background-color: #fff;
	max-width: 1000px;
	width: 100%;
	max-height: 83dvh;
	overflow-y: auto;
	border-radius: 20px;
}
.menu_cont .mrap p{
	text-align: left;
}
.menu_cont .menu_popy p{
	color: #392c28;
}
.menupop_img{
	background-image: url(../img/menupop1.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 400px;
}
#menu2 .menupop_img{
	background-image: url(../img/menupop2.png?2607);
}
#menu3 .menupop_img{
	background-image: url(../img/menupop3.png?26);
}
#menu4 .menupop_img{
	background-image: url(../img/menupop4.png?26);
}
#menu5 .menupop_img{
	background-image: url(../img/drink_img1.png);
	height: unset;
	padding-top: 66%;
}
#menu5 .menupop_img.ni{
	background-image: url(../img/drink_img2.png);
}
#menu5 .ichiolr{
	margin-top: 40px;align-items: flex-start;
}
#menu5 .ichio_l{
	width: 45%;
}
.ichioline{
	width: 2px;
	height: stretch;
  height: -webkit-fill-available;
  max-height: 485px;
	background-color: #99c3c1;
}
.menu_cont p.menupop_name{
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	margin: 25px auto 20px;
	width: fit-content;
	position: relative;
}
.menu_cont #menu4 p.menupop_name span.gente{
	background-color: #9f0028;
	font-size: 16px;
	color: #fff;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	display: block;
	padding: 15px 0;
	position: absolute;
  top: -60%;
  left: -26%;
  box-sizing: border-box;
  font-family: "Kiwi Maru";
}
.menu_cont #menu4 p.menupop_name span.gente b{
	font-size: 27px;
}
.menu_cont p.menupop_name span{
	font-size: 21px;
	color: #d78f98;
	font-family: "SN Pro", sans-serif;
	font-weight: 100;
}
.menu_cont p.menupop_text{
	width: 86.5%;
	margin: 0 auto 25px;
}
.ichioshi{
	background-color: #fbf4f5;
	width: 100%;
	padding: 5px 0 40px;
}
#menu2 .ichioshi{
	background-color: #edf0f3;
}
#menu3 .ichioshi{
	background-color: #ecf4eb;
}
#menu4 .ichioshi{
	background-color: #f8eee4;
}
#menu5 .ichioshi{
	background-color: #ebf3f3;
}
.ichiolr{
	width: 86.5%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ichio_l{
	display: flex;
	flex-direction: column;
	width: 48%;
}
.ichio_l p{
	text-align: left;
	margin-left: 6.5%;
	margin-top: 10px;
}
.ichio_r{
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	width: 48%;
}
#menu4 .ichiolr{
	align-items: center;
}
#menu4 .ichio_r{
	padding-top: 30px;
}
#menu1 .ichio_r p{
	writing-mode: vertical-rl; 
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-align: left;
}
.ichio_r .nacco{
	display: flex;
  max-height: 240px;
  align-items: flex-start;
}
.ichio_r .nacco{
	flex-direction: row-reverse;
	margin-right: 20px;
}
.ichio_r .nacco:first-child{
	margin-right: 0;
}
.ichio_r .nacco:nth-of-type(2){
	position: relative;
}
.ichio_r .nacco:nth-of-type(2):after{
	content: '';
	position: absolute;
	top: -25px;
  right: -10px;
	width: 162px;
	height: 233px;
	background-image: url(../img/popmaru.png);
	pointer-events: none;
}
.ichio_r p.naccop{
	background-color: #392c28;
	padding: 10px 5px 15px;
	border-radius: 50px;
	color: #fff;
	margin-left: 10px;
	line-height: 1;
}
.js-dialog-close.tojiru{
	max-width: 300px;
	width: 90%;
	margin: 30px auto 40px;
	border-radius: 100px;
	background-color: #d78f98;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	font-family: "LINE Seed JP", sans-serif;
	position: relative;
	display: block;
	opacity: 1;
}
.js-dialog-close.batsu{
	color: #fff;
	top: -60px;
	opacity: 1;
	font-size: 60px;
}

/* --- ① スクロールバー全体の横幅（太さ） --- */
dialog .mrap::-webkit-scrollbar {
  width: 3px; /* スクロールバーの太さを8pxに */
}

/* --- ② スクロールバーの背景（レール部分） --- */
dialog .mrap::-webkit-scrollbar-track {
  background-color: transparent;  /* 背景の角丸（太さの半分にすると綺麗な丸になります） */
}

/* --- ③ 動くつまみ（ハンドル部分） --- */
dialog .mrap::-webkit-scrollbar-thumb {
  background: #2c4938;    /* つまみの色 */
  border-radius: 4px;  /* つまみの角丸 */
}

/* 💡マウスを乗せた（ホバー）ときにつまみを少し濃くする（任意） */
dialog .mrap::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* --- ④ 上下の不要な矢印ボタン（▼）を完全に消す --- */
dialog .mrap::-webkit-scrollbar-button {
  display: none;
}

.shop{
	background-color: #321b00;
	padding: 80px 0; 
}
.shop .concept_title{
	margin-bottom: 40px;
}
.shop .concept_title p{
	color: #beb091;
}
.shop_info{
	background-color: #ebe7de;
	width: 70%;
	border-radius: 70px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.shop_data{
	width: 53%;
	padding: 50px 40px 0 60px;
	box-sizing: border-box;
}
.shop_data table{
	width: 100%;
}
.shop_data p,.shop_data th{
	color: #392c28;
	line-height: 1.4;
}
.shop_data tr{
	padding: 15px 10px;
	border-bottom: solid 1px #392c28;
	display: flex;
}
.shop_data tr.egyo{
	border-bottom: none;
	padding-bottom: 0;
}
.shop_data tr.egyo td p{
	display: flex;
	margin-bottom: 5px;
}
.shop_data tr.egyo td p:last-child{
	margin-bottom: 0
}
.egyoday{
	width: 75px;
}
.shop_data th{
	width: 100px;
	text-align: left;
	font-weight: normal;
}
.shop_data td{
	width: calc(100% - 100px);
}
.shop_data td.shop_minchuki{
	width: 100%;
}
.shop_data td.shop_minchuki p,.shop_mintex{
	font-size: 14px;
	text-indent: -1em;
	padding-left: 1em;
}
.shop_data td a.phonenumber{
	color: #392c28;
}
p.shop_mintex:nth-of-type(2){
	margin-top: 8px;
}
.shop_name{
	font-size: 20px;
	padding-bottom: 15px;
	border-bottom: solid 1px #392c28;
}
.map{
	width: 47%;
}
.map iframe{
	width: 100%;
	height: 100%;
	border-radius: 0 70px 0 0;
}
.shop_info a.yoyalink{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #321b00;
	width: 300px;
	font-size: 16px;
	color: #fff;
	border-radius: 100px;
	margin: 40px auto;
	padding: 20px 0;
  box-sizing: border-box;
  position: relative;
}
.shop_info a.yoyalink:after{
	content: '';
	background-image: url(../img/gaibe.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	margin: auto;
}

.snsbtn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
.snsbtn a{
	width: 60px;
	height: 60px;
	display: flex;
	margin-right: 30px;
}
.snsbtn a:last-child{
	margin-right: 0;
}
footer{
	text-align: center;
	padding: 40px 0px 15px;
}
footer p{
	font-size: 18px;
	font-weight: bold;
	font-family: "LINE Seed JP", sans-serif;
	line-height: 1;
}
footer small{
	font-size: 12px;
	font-family: "LINE Seed JP", sans-serif;
}
.yoyakubnr,.topbnr{
	opacity: 0;
	transition: 0.7s;
	pointer-events: none;
}
.yoyakubnr.active,.topbnr.active{
	opacity: 1;
	pointer-events: auto;
	position: relative;
	z-index: 100;
}
.yoyakubnr a{
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 10px 15px 10px 25px;
	font-size: 18px;
	font-weight: bold;
	color: #2c4938;
	border: solid 2px #2c4938;
	border-radius: 100px;
	max-width: fit-content;
	position: fixed;
	top: 5%;
	right: 3%;
	letter-spacing: -0.05em;
}
.yoyakubnr a img{
	margin-left: 10px;
	width: 17px;
	height: 17px;
}
.topbnr a{
	display: flex;
	position: fixed;
	max-width: 150px;
	bottom: 5%;
	right: 3%;
}

/*ポップアップ*/
html {
  scrollbar-gutter: stable; /*HTMLがhiddenでもスクロースバーを表示*/
}
/* ポップアップが開いているとき、htmlとbodyのスクロールを完全に禁止する */
html.is-popup-open,
html.is-popup-open body {
  overflow: hidden !important;
}
/* --- ① モーダル本体（白いボックス） --- */
dialog.park_popy {
  position: fixed;
  top: 51% !important;
  left: 50% !important;
  margin: 0 !important;
  border: none;
  border-radius: 20px;
  padding: 35px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  max-width: 90%;
  width: 700px;
  max-height: 83dvh;

  /* 位置を画面中央に固定 */
  transform: translate(-50%, -50%);
}

/* 💡 開いたときに「pop-in」アニメーションを0.3秒実行 */
dialog.park_popy[open] {
  animation: pop-in 0.3s ease forwards;
}

/* 💡 黒背景クリックで「閉じ中（is-closing）」になったときに「pop-out」を0.3秒実行 */
dialog.park_popy.is-closing {
  animation: pop-out 0.3s ease forwards !important;
}

/* --- アニメーションの具体的な動き（エディタのエラーは出ません） --- */
@keyframes pop-in {
  0% { opacity: 0; transform: translate(-50%, -45%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes pop-out {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -45%) scale(0.95); }
}


/* --- ② 背景の黒いマスク（オーバーレイ） --- */
dialog.park_popy::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

/* 💡 背景が開いたときのアニメーション */
dialog.park_popy[open]::backdrop {
  animation: fade-in 0.3s ease forwards;
}

/* 💡 背景が閉じるときのアニメーション */
dialog.park_popy.is-closing::backdrop {
  animation: fade-out 0.3s ease forwards !important;
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fade-out {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
.js-dialog-close{
	width: 60px;
  height: 60px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0;
  color: #3c5747;
  font-style: normal;
  font-size: 50px;
  font-family: Arial, Baskerville, monospace;
  background-color: unset;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}
.js-dialog-close:hover{
	opacity: 0.5;
}


@media screen and (min-width: 1921px){
	.top{
		max-height: unset;
	}
}
@media screen and (max-width: 1600px){
	.concept_wrap,.pickup,.menu_shosai_wrap,.shop_info{
		width: 80%;
	}
}
@media screen and (max-width: 1400px){
	.concept_wrap,.pickup,.menu_shosai_wrap,.shop_info{
		width: 90%;
	}
}
@media screen and (max-width: 1200px){
	.menu_shosai dialog.park_popy.menu_popy{
		top: 50%!important;
	}
	.menu_shosai dialog.park_popy.menu_popy .mrap img{
		max-height: 85dvh;
	}
	.menu_shosai dialog.park_popy.menu_popy .js-dialog-close.batsu{
		top: -55px;
	}
}
@media screen and (min-width: 1023px) and (max-width: 1300px){
	.pickup .splide__slide .popbtn p span{
		font-size: 3vw;
	}
}
@media screen and (min-width: 1023px) and (max-width: 1050px){
	.pickup .splide__slide .popbtn p{
		font-size: 15px;
	}
}
@media screen and (max-width: 1023px){
	.tb_sp{
		display: block;
	}
	.pc_only{
		display: none;
	}

	.para{
 	  	padding-top: 0;
      padding-bottom: 0;
		}
		.open_hai{
			margin-top: -12%;
		}
	.para.tb_sp{
		display: flex;
	}
	.pala_imgwrap{
		width: 48%;
	}

	.shownews:after{
  	background-image: url(../img/showmenu_sp.gif);
  	background-size: contain;
  	height: 930px;
  	width: 1100px;
  	top: 2%;
	}
	.news{
		flex-direction: column;
		align-items: center;
		padding: 30px;
		max-width: 480px;
		margin-top: 60px;
	}
	.news_title{
		margin-bottom: 15px;
	}
	.news_title,.news_contents{
		width: 100%;
	}
	.show img{
		max-width: 305px;
	}
	.show p{
		font-size: 19px;
	}

	p.newsmain{
/*		font-size: 56px;*/
		font-size: 48px;
	}
	.pickt p{
		font-size: 32px;
		padding-bottom: 20px;
	}
	.pickup{
		max-width: 600px;
	}
	.pickup .splide{
		width: 90%;
		margin: 0 auto;
	}
	.pickup .splide__slide .popbtn{
		display: flex;
		margin-bottom: 25px;
		margin-right: 10px;
	}
	.pickup .splide__slide .popbtn p{
		flex-direction: column-reverse;
		align-items: flex-start;
		width: 40%;
		font-size: 18px;
	}
	.pickup .splide__slide .popbtn p span{
		font-size: 45px;
		margin-top: 10px;
	}
	.pickup .splide__slide .popbtn .menuslimg{
		width: 60%;
	}
	.pickup .splide__slide .popbtn:after{
		width: 90px;
		height: 90px;
	}
	.menu{
		padding-bottom: 50px;
	}
	.menu_shosai_wrap{
		max-width: 600px;
		width: 90%;
		flex-direction: column;
		margin-bottom: 10px;
	}
	.menu_shosai{
		width: 100%;
		margin-bottom: 20px;
	}
	.menu_cont p.menupop_name{
		font-size: 28px;
	}


	.menu_shosai dialog.park_popy.menu_popy{
		max-width: 1100px;
		width: 95%;
	}
	.menu_shosai dialog.park_popy.menu_popy .mrap{
		max-width: 1100px;
		max-height: 85dvh;
	}
	.menu_shosai dialog.park_popy.menu_popy .mrap img{
		max-height: unset;
		width: 100%;
	  max-width: unset;
	}

	.menu_shosai:nth-of-type(2) dialog.park_popy.menu_popy{
		width: 95%;
		max-width: fit-content;
	}
	.menu_shosai:nth-of-type(2) dialog.park_popy.menu_popy .mrap{
		max-width: unset;
		max-height: unset;
	}
	.menu_shosai:nth-of-type(2) dialog.park_popy.menu_popy .mrap img{
		max-height: 85dvh;
		width: auto;
	  max-width: 90vw;
	}

	#menu4 .ichiolr{
/*		align-items: flex-start;*/
	}
	.shop{
		padding: 50px 0;
	}
	.shop_data{
		width: 100%;
		padding: 50px 50px 0px 50px;
	}
	.map{
		width: 100%;
		order: 2;
	}
	.map iframe{
		width: 100%;
		height: 360px;
    border-radius: 0 0 40px 40px;
	}
	.shop_info{
		border-radius: 40px;
		width: 80%;
	}
	.menu_cont #menu4 p.menupop_name span.gente{
		left: -35%;
	}
	.ichioline{
  	max-height: 415px;
	}
	#menu4 .ichio_r {
    padding-top: 25px;
	}
}

  @media screen and (max-width: 750px) {
 	  .sp_only{
 	  	display: block;
 	  }
 	  .pc_tb{
 	  	display: none;
 	  }
 	  p{
 	  	font-size: 14px;
 	  }

 	  .top{
 	  	background-image: url(../img/top_hai_sp.webp?1);
 	  	min-height: auto;
 	  	height: 115vh;
 	  }
 	  .top p{
 	  	font-size: 24px;
 	  	line-height: 1.5;
 	  	margin-bottom: 25px;
 	  	margin-top: 0;
 	  	padding-left: 2%;
 	  }
 	  .top img{
 	  	width: 65%;
 	  }
 	  .top_inner{
 	  	min-height: unset;
 	  }
		.open_hai{
			background-image: url(../img/open_hai_sp.webp);
			padding-top: 30%;
		}
		.open_hainner{
			margin-bottom: 5%;
		}
		.open_hainner p{
			font-size: 19px;
		}
		.open_hainner p:nth-of-type(2){
			font-size: 42px;
		}
		.open_hainner p:nth-of-type(2) span {
    	font-size: 26px;
    	margin-left: -0.25em;
		}

 	  p.newsmain {
      font-size: 36px;
    }
    .pickt p{
    	font-size: 28px;
    }

    .sp15tex{
    	font-size: 15px;
    }

    .shownews{
    	padding: 30px 15px 50px;
    }
    .show img{
    	width: 63%;
    	max-width: unset;
    	margin: 5vw auto 6vw;
    }
    .show p{
    	font-size: 3.8vw;
    }
    .show p span{
    	font-size: 3vw;
    }
    .shownews:after{
    	padding-top: 171%;
    	height: unset;
    }
    .news{
    	margin-top: 10vw;
    	padding: 30px 20px;
    }
    .concept:before{
    	background-image: url(../img/concept_hai_sp.jpg);
    }
    .concon div{
    	padding: 20px 25px 30px;
    }

 	  #menu1 .ichioshi{
 	  	padding-top: 30px;
 	  }
 	  .ichioshi{
 	  	padding-top: 15px;
 	  	padding-bottom: 30px;
 	  }
 	  #menu1 .ichiolr{
 	  	flex-direction: column-reverse;
 	  }
 	  .ichiolr{
 	  	flex-direction: column;
 	  }
 	  .ichio_l,.ichio_r{
 	  	width: 100%;
 	  }
 	  #menu4 .ichio_r {
    	padding-top: 0px;
		}
		#menu4 .ichiolr{
			align-items: center;
		}
 	  .ichio_l{
 	  	width: calc(100% - 6%);
      margin: 0 auto 10px 0;
 	  }
 	  .ichio_r{
 	  	width: calc(100% - 11%);
 	  }
 	  .ichio_r .nacco:nth-of-type(2):after{
 	  	background-image: url(../img/popmaru_sp.png);
 	  	background-size: contain;
      background-repeat: no-repeat;
      top: -20px;
      right: -72px;
      height: 200px;
 	  }
 	  .menupop_img{
			background-image: url(../img/menupop1sp.png);
			height: unset;
			padding-top: 57%;
		}
		#menu2 .menupop_img{
			background-image: url(../img/menupop2sp.png?26);
		}
		#menu3 .menupop_img{
			background-image: url(../img/menupop3sp.png?26);
		}
		#menu4 .menupop_img{
			background-image: url(../img/menupop4sp.png?26);
		}
		#menu5 .ichio_l {
    	width: 100%;
		}
		#menu5 .ichiolr{
			width: 85%;
			margin-top: 20px;
		}
		.ichioline{
			width: 100%;
			height: 2px;
			margin-bottom: 35px;
		}
		.ichio_r .nacco{
			max-height: 165px;
		}
		.js-dialog-close.tojiru{
			height: 50px;
			width: 70%;
			font-size: 16px;
		}
		.menu_cont p.menupop_name{
			font-size: 28px;
			line-height: 1.2;
			    margin: 20px auto 15px;
		}
		.menu_cont p.menupop_name span{
			font-size: 18px;
		}
		.menu_cont #menu4 p.menupop_name span.gente{
			font-size: 13px;
			line-height: 1;
			width: 60px;
			height: 60px;
			top: 5%;
    	left: -60%;
    	padding: 10px 0;
		}
		.menu_cont #menu4 p.menupop_name span.gente b{
			font-size: 22px;
		}
		.pickup .splide__slide .popbtn p span {
        font-size: 9vw;
        margin-top: 1.5vw;
    }
    .pickup .splide__slide .popbtn p{
    	font-size: 3.8vw;
    }
    .pickup .splide__slide .popbtn:after{
    	width: 17vw;
    	height: 17vw;
    }
    .pickup{
    	padding-bottom: 20px;
    }
    .menu_cont p.chuki{
    	text-indent: -1em;
    	padding-left: 1em;
    	text-align: left;
    	width: 90%;
    	margin: 0 auto;
    	box-sizing: border-box;
    }

    .menu_shosai:nth-of-type(2) dialog.park_popy.menu_popy{
			max-width: 1100px;
			width: 95%;
		}
		.menu_shosai:nth-of-type(2) dialog.park_popy.menu_popy .mrap{
			max-width: 1100px;
			max-height: 85dvh;
		}
		.menu_shosai:nth-of-type(2) dialog.park_popy.menu_popy .mrap img{
			max-height: unset;
			width: 100%;
		  max-width: unset;
		}

    .shop_data{
    	padding: 35px 20px 0px 20px;
    }
    .shop_data th{
    	width: 75px;
      font-size: 14px;
    }
    .shop_data td{
    	width: calc(100% - 90px);
    }
    .egyoday {
  	  width: 60px;
		}
		.shop_data tr{
			flex-wrap: wrap;
		}
		p.shop_mintex:nth-of-type(1){
			margin-top: 8px;
		}
		p.shop_mintex:nth-of-type(2){
			margin-top: 0;
		}
		.shop_info{
			width: 90%;
		}
		.yoyakubnr a{
			top: 3%;
			font-size: 16px;
		}
		.topbnr a{
			width: 26%;
			max-width: 90px;
			bottom: 3%;
		}

  }
  @media screen and (max-width:500px){
  	.concept{
 	  	padding-bottom: 42vw;
 	  }
 	  .menu{
 	  	padding-top: 28vw;
 	  }
 	  .concon p.concon_ti{
 	  	font-size: 5vw;
 	  	margin-bottom: 7px;
 	  }
  }
  @media screen and (max-width:390px){}