/*
Theme Name: luck
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 1.0
License: 
License URI: 
Tags: 
Text Domain: 
*/
@charset "UTF-8";
/*------------------------------------------------------------------
********************************************************************
 * ▼構成
 * ・ベースとなるCSS
 * ・スマホ用（@media screen and (max-width: 767px) {} ）
 * 
 * リセットCSS      css / destyle.min.css
 * モジュール系CSS  css / default.css
 * ページ共通CSS    style.css
 * 各ページCSS      css / (top.css, business.css, message.css,,,)
********************************************************************
--------------------------------------------------------------------*/

/*--- 基本 ---*/
body{
	margin: 0px;
	padding: 0px;
	background: none repeat scroll 0% 0%;
	background-attachment: scroll;
	font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	letter-spacing: 0.8px;
	font-size: 14px;
	font-weight: 400;
	color: #333;
}
@media screen and (max-width: 767px) {
	body{
		font-size: 16px;
	}
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	shape-margin: 0.75rem;
}


/*--- 汎用 ---*/
.container{
	position: relative;
	overflow: hidden;
}

.inner{
	display: block;
	max-width: 1200px;
	width: calc(90% - 135px);
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 767px) {
	.inner{
		width: 90%;
	}
}

.ly__relative{
	position: relative;
}


/*--- テキスト ---*/
.red{
	color: #ff0000;
}
.blue{
	color: #0000ff;
}
.green{
	color: #008000;
}
.black{
	color: #000;
}
.white{
	color: #fff;
}


/*--- リンク系（アンカー） ---*/
a {
	color: #333;
	text-decoration: none;
	transition: all 1s ease;
}

	a:hover {
		color: #56430d;
	}

a img{
	/* display: block; */
	transition: 0.5s;
}

	a img:hover {
		opacity: 0.7;
		transition: 0.5s;
	}

a[href^="tel:"] {
	pointer-events: none;
	color: #333;
}
@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		pointer-events: auto;
	}
}

.longurl{
	word-break: break-all;
}


/*--- ヘッダー ---*/
header{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	background-color: #fff;
}
@media screen and (min-width: 768px) {
	header{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		width: 130px;
		height: 100%;
		padding: 40px 0 40px;
	}
}
@media screen and (max-width: 767px) {
	header{
		position: fixed;
		top: 0;
		right: 0;
		width: 55px;
		height: 55px;
		background-color: #fff;
	}
}

/* ハンバーガーメニュー */
header .hamburger{
	position: fixed;
	width: 40px;
	height: 30px;
}
@media screen and (max-width: 767px) {
	header .hamburger{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

header .hamburger:hover{
	cursor: pointer;
}

header .hamburger > span{
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 40px;
	height: 5px;
	background-color: #111;
	border-radius: 100px;
	transition: all 0.2s ease;
}

header .hamburger > span:nth-child(2){
	top: 11px;
}

header .hamburger > span:nth-child(3){
	top: 22px;
}

header .hamburger.active > span:nth-child(1){
	top: 11px;
	transform: rotate(45deg);
}

header .hamburger.active > span:nth-child(2){
	display: none;
}

header .hamburger.active > span:nth-child(3){
	top: 11px;
	transform: rotate(-45deg);
}

header #copyright{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 400;
}
@media screen and (min-width: 1299px) {
	header #copyright{
		writing-mode: vertical-rl;
		position: absolute;
		bottom: 30px;
	}
}


/*--- グローバルナビゲーション ---*/
.gnavi_container{
	position: fixed;
	top: 0;
	right: 0;
	transform: translateX(100%);
	z-index: 80;
	width: 100%;
	min-height: 100vh;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.gnavi_container.active{
	transform: translateX(0);
}

.gnavi_container .gnavi_wrapper{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 90;
	transform: translateX(100%);
	display: flex;
	align-items: center;
	width: 40vw;
	min-height: 100%;
	padding-left: 5%;
	background-color: #fff;
	transition: all 1s ease;
}
@media screen and (max-width: 767px) {
	.gnavi_container .gnavi_wrapper{
		width: 90vw;
	}
}

.gnavi_container.active .gnavi_wrapper{
	transform: translateX(0);
	transition: all 1s ease;
}

.gnavi_container .gnavi_wrapper > div{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gnavi_container .sitename{
	font-family: serif;
	font-size: 50px;
	line-height: 1;
	color: #000;
}
@media screen and (max-width: 767px) {
	.gnavi_container .sitename{
		font-size: 35px;
	}
}

.gnavi_container .sitename:hover{
	opacity: 0.5;
}

.gnavi_container nav ul{
	width: 25vw;
}
@media screen and (max-width: 767px) {
	.gnavi_container nav ul{
		width: 75vw;
	}
}

.gnavi_container nav ul li:not(:first-child){
	margin-top: 30px;
}
@media screen and (max-width: 767px) {
	.gnavi_container nav ul li:not(:first-child){
		margin-top: 15px;
	}
}

.gnavi_container nav ul li a{
	position: relative;
	display: inline-block;
	padding-left: 70px;
}
@media screen and (max-width: 767px) {
	.gnavi_container nav ul li a{
		padding-left: 55px;
	}
}

.gnavi_container nav ul li a::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: inline-block;
	width: 50px;
	height: 2px;
	background-color: #56430d;
}
@media screen and (max-width: 767px) {
	.gnavi_container nav ul li a::before{
		width: 35px;
	}
}

.gnavi_container nav ul li a > span{
	display: block;
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	line-height: 1.2;
}

.gnavi_container nav ul li a .en{
	font-size: 12px;
}

.gnavi_container nav ul li a .ja{
	font-size: 14px;
}

/*
.gnavi_container nav ul li a:hover{
	padding-left: 1rem;
}
*/

@media screen and (max-width: 767px) {
	.gnavi_container .thank_you{
		width: 50%;
	}
}


/*--- 下層ページ（サイトネーム） ---*/
.subpage_header{
	padding: 30px 0;
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	.subpage_header{
		display: flex;
		align-items: center;
		height: 65px;
		padding: 0;
	}
}

.subpage_header .sitename{
	font-family: serif;
	font-size: 50px;
	line-height: 1;
	color: #000;
}
@media screen and (max-width: 767px) {
	.subpage_header .sitename{
		font-size: 40px;
	}
}

.subpage_header .sitename:hover{
	opacity: 0.5;
}


/*--- 下層ページ（ページタイトル） ---*/
.subpage_title{
	position: relative;
	display: flex;
	align-items: center;
	height: 220px;
}
@media screen and (max-width: 767px) {
	.subpage_title{
		height: 150px;
	}
}

.subpage_title::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	display: block;
	width: 70vw;
	height: 220px;
	background: linear-gradient(to right, #f7f6f0 0%, #d5cbac 100%);
}
@media screen and (max-width: 767px) {
	.subpage_title::before{
		width: 80vw;
		height: 150px;
	}
}

.subpage_title::after{
	content: "LUCK";
	position: absolute;
	top: 50%;
	right: 130px;
	z-index: -1;
	transform: translateY(-50%);
	font-family: serif;
	font-size: 169px;
	color: #000;
	opacity: 0.05;
}
@media screen and (max-width: 767px) {
	.subpage_title::after{
		right: 0;
		font-size: 60px;
	}
}

.subpage_title .inner{
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.subpage_title .en{
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 4.8px;
	color: #56430d;
}
@media screen and (max-width: 767px) {
	.subpage_title .en{
		font-size: 30px;
		line-height: 1.2;
	}
}

.subpage_title .ja{
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 1.8px;
	color: #726235;
}
@media screen and (max-width: 767px) {
	.subpage_title .ja{
		font-size: 16px;
	}
}


/*--- パンくず ---*/
.breadcrumb{
	margin-top: 40px;
	font-size: 14px;
}
@media screen and (max-width: 767px) {
	.breadcrumb{
		margin-top: 15px;
		font-size: 12px;
	}
}


/*--- 部品（見出し） ---*/
.heading_type_01{
	position: relative;
	padding-bottom: 13px;
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: #222;
	letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
	.heading_type_01{
		padding-bottom: 10px;
		font-size: 22px;
		line-height: 1.4;
	}
}

.heading_type_01::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-block;
	width: 50px;
	height: 2px;
	background-color: #56430d;
}

.heading_type_02{
	position: relative;
	padding-bottom: 20px;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 1;
	color: #222;
	letter-spacing: 3.6px;
}
@media screen and (max-width: 767px) {
	.heading_type_02{
		padding-bottom: 13px;
		font-size: 26px;
		letter-spacing: 3px;
	}
}

.heading_type_02::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	display: inline-block;
	width: 50px;
	height: 2px;
	background-color: #56430d;
}


/*--- 部品（リンクボタン） ---*/
.link_btn_01{
	position: relative;
	display: block;
	width: 343px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	background: linear-gradient(180deg, #947f44 0%, #56430d 100%);
	border-radius: 35px;
	text-align: center;
	font-size: 16px;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.link_btn_01{
		width: 100%;
		padding: 10px;
	}
}

.link_btn_01::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%) rotate(45deg);
	display: block;
	width: 10px;
	height: 10px;
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
}
@media screen and (max-width: 767px) {
	.link_btn_01::after{
		right: 20px;
	}
}

@media screen and (min-width: 768px) {
	.link_btn_01:hover{
		transform: scale(1.1);
		color: #fff;
	}
}


/*--- カレンダー ---*/
.calendar{
	margin-top: 100px;
}

.calendar .list{
	display: flex;
	margin-top: 65px;
}
@media screen and (max-width: 767px) {
	.calendar .list{
		flex-direction: column;
		margin-top: 10px;
	}
}

.calendar .list > .item{
	width: 400px;
}
@media screen and (max-width: 767px) {
	.calendar .list > .item{
		width: 100%;
		margin-top: 20px;
	}
}

.calendar .list > .item:nth-child(2){
	border-left: #707070 1px solid;
	border-right: #707070 1px solid;
}
@media screen and (max-width: 767px) {
	.calendar .list > .item:nth-child(2){
		border-left: none;
		border-right: none;
	}
}

.calendar .item .year_month{
	text-align: center;
	font-size: 16px;
	font-weight: 700;
}

.calendar .item table{
	width: 370px;
	margin: 10px auto 20px;
}
@media screen and (max-width: 767px) {
	.calendar .item table{
		width: 100%;
		margin: 0 auto;
	}
}

.calendar .item table th,
.calendar .item table td{
	padding: 8px 0;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: #333;
}
@media screen and (max-width: 767px) {
	.calendar .item table th,
	.calendar .item table td{
		font-size: 13px;
	}
}

.calendar .item table .holiday{
	position: relative;
}

.calendar .item table .holiday::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	display: block;
	width: 35px;
	height: 35px;
	background-color: #ffb300;
	border-radius: 50%;
}
@media screen and (max-width: 767px) {
	.calendar .item table .holiday::before{
		width: 30px;
		height: 30px;
	}
}

.calendar .text_holiday{
	position: relative;
	padding-left: 60px;
	font-size: 13px;
	font-weight: 500;
}
@media screen and (max-width: 767px) {
	.calendar .text_holiday{
		padding-left: 50px;
	}
}

.calendar .text_holiday::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	display: block;
	width: 25px;
	height: 25px;
	background-color: #ffb300;
	border-radius: 50%;
}
@media screen and (max-width: 767px) {
	.calendar .text_holiday::before{
		left: 13px;
	}
}


/*--- フッター ---*/
footer .reservation{
	display: flex;
	column-gap: 50px;
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	footer .reservation{
		flex-direction: column;
		row-gap: 20px;
		margin-top: 40px;
	}
}

footer .reservation > .item{
	width: 50%;
}
@media screen and (max-width: 767px) {
	footer .reservation > .item{
		width: 100%;
	}
}

footer .reservation .heading{
	font-size: 16px;
	font-weight: 700;
}

footer .reservation .description{
	margin-top: 10px;
	font-size: 14px;
	line-height: calc(30 / 14);
}
@media screen and (max-width: 767px) {
	footer .reservation .description{
		margin-top: 5px;
		line-height: 1.8;
	}
}

@media screen and (max-width: 767px) {
	footer .reservation .description a[href^="tel:"]{
		text-decoration: underline;
	}
}

footer .thank_you{
	width: 362px;
	margin: auto;
}
@media screen and (max-width: 767px) {
	footer .thank_you{
		width: 70%;
	}
}

footer .footer_info{
	width: 100%;
	padding: 80px 0 70px;
	background: url(imgs/common/bg_footer_info.png) no-repeat center top / cover;
}
@media screen and (max-width: 767px) {
	footer .footer_info{
		padding: 40px 0 10px;
	}
}

footer .footer_info .site_name a{
	font-family: serif;
	font-size: 59px;
	line-height: 1;
	color: #fff;
}
@media screen and (max-width: 767px) {
	footer .footer_info .site_name a{
		font-size: 35px;
	}
}

footer .footer_info .footer_menu{
	display: flex;
	justify-content: center;
	column-gap: 30px;
}
@media screen and (max-width: 767px) {
	footer .footer_info .footer_menu{
		flex-wrap: wrap;
		gap: 10px 35px;
	}
}

footer .footer_info .footer_menu a{
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 14px;
	color: #fff;
}

footer .footer_info .footer_menu a:hover{
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	footer .footer_info #copyright{
		margin-top: 40px;
		text-align: center;
		font-size: 12px;
		color: #fff;
	}
}


/*--- その他（アニメーション） ---*/
@keyframes circle_rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
