@charset "utf-8";
/* CSS Document */
/*===============
	header
==========================================*/
#header{
	width: 100%;
	height: 90px;
	background: url("../img/bg01.jpg");
}

#header .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.h-logo{
	height: 80px;
	width: auto;
	margin: auto 0;
}
.h-logo img{
	height: 100%;
	object-fit: contain;
	vertical-align: bottom;
}
.gnav ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.gnav ul li a{
	display: block;
	padding: 0 15px;
	color: #fff;
	position: relative;
}
.gnav li:not(.h-sns) a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#fff;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnav li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}
.gnav .h-sns a{
	height: 50px;
	width: 50px;
	border-radius: 50%;
	background: #fff;
	margin-left: 20px;
	position: relative;
}
.gnav .h-sns a img{
	position: absolute;
	width: 35px;
	height: 50px;
	object-fit: contain;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: .4s;
}
.gnav .h-sns a:hover img{
	transform: translateX(-50%) scale(1.08);
	transition: .4s;
}

@media(max-width:730px){
	.gnav{
		display: none;
	}
}
/*===============
mobail-nav
==========================================*/

.openbtn{
	position:fixed;
    z-index: 99;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 60px;
    height:60px;
	background: url("../img/sp_menu.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Yusei Magic", sans-serif;
}
@media(min-width:729px){
	.openbtn{
		display: none;
	}
}

#g-nav{
    position:fixed;
    z-index: 88;
	top:0;
    right: -200%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:url("../img/bg01.jpg");
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
	width: 90%;
	margin: 0 auto;
	margin-top: 100px;
	
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    position: relative;
	padding-left: 50px;
	margin-bottom: 10px;
}
#g-nav li::before{
	position: absolute;
	content: '';
	background: url("../img/sp_menu_icon.png");
	background-size: contain;
	background-position:left;
	background-repeat: no-repeat;
	width: 50px;
	height: 100%;
	bottom: 0;
	left: 0;
}
#g-nav li::after{
	position: absolute;
	content: '';
	width: 90%;
	height: 1px;
	background: #fff;
	bottom:0;
	left: 30px;
}
#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:5px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.mobilinfo{
	width: 90%;
	margin: 15px auto;
	color: #fff;
}
.mobilinfo h2{
	width: 80%;
	max-width: 250px;
	margin: 0 auto ;
}
.mobilinfo h2 img{
	width: 100%;
	object-fit: contain
}
.spmap{
	width: 100%;
	height: 25vh;
}


/*===============
footer
==========================================*/
.shopimg{
	width: 40%;
}
.shopinfo{
	width: 50%;
	font-size: 16px;
}
.shopname{
	font-family: "Yusei Magic", sans-serif;
	font-size: 1.5rem;	
}
#footer th{
	text-align: left;
	font-weight: 400;
	width: 100px;
}
.inst_btn{
   display: inline-block;
    padding: 0.8em 2em;
    border-radius: 10em;
    background: linear-gradient(135deg,
        rgba(247, 207, 0, 0.7),
        rgba(246, 37, 2, 0.7) 25%,
        rgba(182, 47, 82, 0.7) 55%,
        rgba(113, 58, 166, 0.7));
    color: #fff;
    text-decoration: none;
    line-height: 1;
	margin: 10px;
	font-family: "Yusei Magic", sans-serif;
	font-size: 1.3rem;		
	background-size: 150% auto; 
	transition: background-position 0.5s ease; 
		text-align: center;
}
.inst_btn:hover {
    background-position: right center; /* 背景を右にスライド */
}
.copy{
	background: url("../img/bg01.jpg");
	text-align: center;
	color: #fff;
	font-size: 14px;
	padding: 5px 0;
}

@media (max-width: 768px){
.shopimg,
.shopinfo{
	width: 100%;
}	
	.inst_btn{
		width: 90%;
		max-width: 400px;
	}
}

/*===============
page-top
==========================================*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	opacity: 0;
	transform: translateX(100px);
}

#page-top a{
	display: block;
	width: 50px;
	height: 50px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	background: url("../img/arrow.png") no-repeat center;
	background-size: contain;
	transform: rotate(90deg);
	transition: .4s;
}

#page-top a:hover{
	transform: rotate(90deg) translateX(-10px);
	opacity: .8;
	transition: .4s;
}

/*リンクを右下に固定*/


/*　左の動き　*/

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}



/*===============
top-slide
==========================================*/
.top-fv {
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
}
.topslider {
    width:100%;
    margin:0 auto;
}
.topslider li{
	width: 80vw;
	max-width: 1000px;
	aspect-ratio: 2 / 1;
	margin: 0 10px;
	border-radius: 30px;
	border: 5px solid #603813;
    overflow: hidden;
}

.topslider img {
    width:100%;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.topslider .slick-prev, 
.topslider .slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    content: '';
	background: url("../img/arrow.png");
    height: 50px;
    width: 50px;
	background-size: contain;
	background-repeat: no-repeat;
	left:23%;
	z-index: 3;
}
.topslider .slick-next{
	left: auto;
	right:23%;	
	transform: rotate(180deg);
}


/*===============
 index
==========================================*/
.txt-box{
	padding: 2rem 1rem;
}
.top-img{
	object-fit: contain;
	width: 80%;
	max-width: 500px;
	margin: 15px auto;
}

.t_menu .comn3 figure{
	text-align: center;
	margin-bottom: 15px;
}
.t_menu .comn3 figure img{
	width: 90%;
	object-fit: contain;
}
.t_menu .comn3 h3{
	font-family: "Yusei Magic", sans-serif;
	text-align: center;
	font-size: 1.5rem;
}
.t_menu .comn3 h3 span{
	font-size: 15px;
	line-height: 1.3;
	display: block;
}
.concept h3{
	font-family: "Yusei Magic", sans-serif;
	font-size: 1.5rem;	
}

/*===============
　下層共通
==========================================*/
.kfvbg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: -5px;
	z-index: -1;
}
.kfvbg img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pagetitle{
	font-family: "Yusei Magic", sans-serif;
	font-weight: 400;
	font-size: 2.5rem;
	text-align: center;
	color: #fff;
	text-shadow: 0 2px 5px #603813;
}

@media(min-width:1064px){
	.kfvbg{
		height: auto;
	}
}


/*===============

==========================================*/
.lineup{
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}

.lineup li{
	width: calc(100% / 4 - 20px );
	text-align: center;
}
.lineup li figure{
	padding: 3%;
	
}
.lineup li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media(max-width:675px){
	.lineup li{
		width: calc(100% / 3 - 20px );
	}	
	
}

@media(max-width:484px){
	.lineup li{
		width: calc(100% / 2 - 20px );
	}	
	
}



/*===============

==========================================*/
.aboutimg{
	width: 80%;
	margin: auto;
	max-width: 350px;
}
.aboutimg img{
	border-radius: 50%;
	border: 3px solid #603813;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-txt{
	width: 55%
}
.map{
	width: 40%
}
.about tr{
	border-bottom: 1px solid #999;
}
.about th{
	width: 120px;
	font-weight: 400;
	padding: .5rem ;
}
.about td{
	padding: .5rem ;	
}
.maparea{
	width: 100%;
	height: 100%;
	max-height: 45vh;
}

.border {
  border-bottom: 5px dotted #603813;
  margin: 30px 0;	
}
@media (max-width: 768px) {
	.about-txt,
	.map{
		width: 100%
	}	
}
@media (max-width: 449px) {
.about th,
.about td{
	text-align: left;
	display: block;
	width: 100%;
}	.about th{
		padding-bottom: .2rem;
	}
	.about td{
		padding-top: 0;
	}
}
/*===============
　mail
==========================================*/
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #595757;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 0.95rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #603813;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #595757;
	color: #595757 !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #595757;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
	color: #595757;
}
.mailform button {
    display: block;
	padding: .8rem 1.5rem;
	min-width: 280px;
	position: relative;
	background:#603813;
	border: 3px solid #603813;
	color: #fff;
	border-radius: 50px;
	margin: 0 auto;
}
.mailform button:hover{
	background:#fff;
	color: #603813;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
	display: none;
}
.mailform input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #b5b5b5;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
	border-right: 3px solid #595757;
	border-bottom: 3px solid #595757;
	content: '';
	display: block;
	height: 13px;
	width: 7px;
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 4px;
	transform: rotate(45deg);
	transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
	opacity: 1;
}
/*ラジオボタン*/
.mailform input[type=radio] + label{
	margin-right: 10px;
}

.selectWrap div.selec{
	display: flex;
	align-items: baseline;
	margin-bottom: 5px;
	width: 100%!important;
}
.selectWrap p{
	width: 200px;
}

@media (max-width: 450px) {
	.mailform button {
		width: 65%;
		padding: 6px;
	}
	.formsel label {
		font-size: 0.95rem;
	}
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}


/*個人情報の取り扱いについて*/
.privacy_wrap {
	font-size: clamp(1.05rem, 0.9rem + 0.5333vw, 1.3rem);
	color: #595757;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 1.5px solid #595757;
}
@media(max-width:450px) {
	.privacy_wrap {
		font-size: 1rem;
	}
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
}
.privacy_header i {
	color: #603813 !important;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
	background: #fff;
}
.privacy_text span {
	position: relative;
}
.privacy_text span::before {
	content: "■";
	display: inline-block;
	font-size: 0.7rem;
	margin-right: 0.35em;
	transform: translateY(-3px);
	color: #603813;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #603813;
}









