@charset "utf-8";

/* ---------------------------------------------------------
■ ヘッダー
--------------------------------------------------------- */
header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
	position: fixed;
    z-index: 30;
    transition:0.2s;
}

#head_btnbox {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    padding: 5px;
}

/*追従ヘッダー*/
header #head_btnbox{
	position: fixed;
	height: 65px;
    top: 0;
	width: 100%;
	z-index: 500;
}
@media screen and (max-width: 767px){
	header #head_btnbox{
		height: 43px;
	}
}

/* ---------------------------------------------------------
■ TOPボタン
--------------------------------------------------------- */

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
}
#page-top a {
	text-decoration: none;
	text-align: center;
	color: #bbb;
	font-size: 70%;
	font-weight: bold;
	background: rgba(0,0,0,.8);
	width: 60px;
	aspect-ratio:1/1;
	border-radius: 50%;
	display: flex;
}
#page-top a span{
	display: block;
	margin: auto;
}
@media screen and (min-width: 767px) {
	#page-top a:hover{
		opacity: .7;
	}
}


/* ---------------------------------------------------------
■ フッター
--------------------------------------------------------- */
footer {
	position: relative;
	width: 100%;
	text-align: center;
	background-image: url("../images/footer.webp");
	background-position: 50% 46%;
	background-repeat: no-repeat;
	background-size: cover;
}

.footer_bg{
	position: absolute;
	width: 100%;
	height:100%;
	top:0;
	left:0;
	background: rgba(0,0,0,.5);
	z-index: 5;
}

footer img{
	filter: drop-shadow(0 0px 5px rgba(0, 0, 0, .8));
}
footer .logo{
	position: relative;
	display: block;
	margin: auto;
	width:50%;
	max-width: 230px;
	padding:60px 0 50px;
	z-index: 10;
}
footer .footer_logo{
	position: relative;
	display: block;
	margin: auto;
	width:250%;
	max-width: 180px;
	padding:0 0 60px;
	z-index: 10;
}

/* ---------------------------------------------------------
■ コピーライト
--------------------------------------------------------- */
small{
	letter-spacing: 0.02em;
	font-size: 80%;
	padding:5px 0 7px;
}

/* ---------------------------------------------------------
■ ライトボックス
--------------------------------------------------------- */
.featherlight{ padding: 2%}

.lightbox{ 
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	text-align: left;
    padding: 25px;
	background-color:#fff;
}
@media screen and (max-width: 767px){
	.lightbox {
	    padding: 25px 20px;
	}
}


/* ---------------------------------------------------------
■ フェードイン
--------------------------------------------------------- */
.fadein {
  visibility: hidden; }

.fadein_delay {
	-webkit-animation-delay: 0.8s;
	-ms-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.fadeInDown {
  visibility: visible !important;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }


/* ---------------------------------------------------------
■ フェードインｊｓ
--------------------------------------------------------- */
.Fade_In{
	opacity: 0;
  	transition: all .5s ease;
	transform: translate(0, 100px);
}

.Fade_In.show{
  opacity: 1;
  transform: none;
}

/*----------------------------------------------------------
ハンバーガーメニュー
----------------------------------------------------------*/

.head-02.open {
  transform: translateX(15%);
  visibility: visible;
}
.lp-header__trigger.open span:nth-child(1) {
	transform: rotate(45deg);
	background:#fff;
}

.lp-header__trigger.open span:nth-child(2) {
  opacity: 0;
}

.lp-header__trigger.open span:nth-child(3) {
	transform: rotate(-45deg);
	background:#fff;
}
.head-wrap {
  position: relative;
	background-color: rgba(255,255,255,.85);
}
.head-nav {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
	padding:4px 0;
}
.head-nav img {
  margin: 0 auto;
  display: block;
}
.head-items {
  display: flex;
  list-style: none;
  color: #111;
  padding: 0;
  margin: 0 0 0 auto;
}
.head-items li {
  padding-right:2em;
}
.head-items li::after{
	content: "｜";
	padding-left:2em;	
}
@media screen and (max-width: 1000px) {
	.head-items li {
		padding-right:1.5em;
	}
	.head-items li::after{
		padding-left:1.5em;	
	}
}

.head-items a {
	text-decoration: none;
	color:#111;
	font-weight:500;
	text-shadow: 0 0 4px #fff;
	transition: .2s;
}
.head-items a:hover {
  color: #c6c6c6;
}
.lp-header__trigger {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 10px;
  background: none;
  border: none;
  padding: 0;
  height: 24px;
  cursor: pointer;
  margin: 0 0 0 auto;
  display: none;
}
.lp-header__trigger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  margin-bottom: 7px;
  transform-origin: center left;
  border-radius: 1px;
  transition: all 600ms ease;
}
.lp-header__trigger.open span{
  width: 25px;
}

.head-02 {
  width: 100%;
  transform: translateX(100%);
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  padding-top: 50px;
  padding-bottom: 21px;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
  transition: all 600ms ease;
  visibility: hidden;
}
.head-02__wrap {
  padding: 0 10px;
}
.head-02 hr {
  margin: 0;
}
hr {
  border: none;
  border-top: 1px solid #888888;
  background: transparent;
}
.head-02__item {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 33%;
  color: #c6c6c6!important;
  padding: 17px;
}

.head-nav .head-logo{
  margin-left: 10px;
  height:50px;
	width:auto;
}

@media screen and (max-width: 799px) {
  .head-items {
    display: none;
    color: #dadada;
  }
  .lp-header__trigger{
    top: 20px;
    right: 20px;
    display: block;
  }
}

.header_after{
	height:63px;
}


/*----------youtube動画---------*/
.youtube{
	
}
.youtube iframe{
	aspect-ratio: 16 / 9;
	width:100%;
	height:auto;
}



/*=======================================
 ■ ユニーク追加分
=========================================*/

/*----------ボタン共通---------*/

a.link{
	position: relative;
	display: inline-block;
	padding:3px 50px 4px 30px;
	color:#1A0700;
	border: #888 1px solid;
	border-radius: 20px;
	transition: all 0.2s;
}
a.link::before {
    content: "";
    width: 26px;
    height: 20%;
    position: absolute;
    border-bottom: 1px solid #888;
    border-right: 1px solid #888;
    transform: skew(45deg);
    right: 16px;
    bottom: 43%;
    transition: all 0.2s;
}

@media screen and (min-width: 521px) {
	a.link:hover{
		
	}
	a.link:hover::before {
		right: -18px;
	}
}


/*----------メインビジュアル---------*/
.mv_area{
	width:100%;
}
.mv_area_box{
	width: 100%;
	height:auto;
	aspect-ratio:2/1;
	margin: auto;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}
.mv_area_box span{
	display: inline-block;
	margin: auto;
	padding-bottom:6%;
	z-index: 20;
	color:#fff;
	font-weight:500;
	text-shadow: 0 0 10px rgba(0,0,0,.9);
	font-size:2.5vw;
	letter-spacing: 0.05em;
}
.mv_area_back{
	position: absolute;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,.3);
	z-index: 19;
}
.mv_area_box img{
	position: absolute;
	top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	left: 0;
	width:100%;
	height:auto;
	z-index: 10;
	opacity: 0;
	animation-name: fade;
	animation-duration: 20s;/* スライダー全体の秒数 以下のアニメの秒数を変えたらこちらも変える（4の倍数だとわかりやすい） */
	animation-iteration-count: infinite;
}

/*===========以下、indexスライダーのタイミング設定==================*/
/* %の数字をいじることでタイミングが変更できる */
@keyframes fade {
	0%{opacity: 0;}
	18%{opacity: 1;}　/* ← 静止はじまり 25%以下であること */
	32%{opacity: 1;}　/* ← 消え始めるタイミング 0%〜次の%までの数字分 */
	50%{opacity: 0;z-index: 0;}/* ← 完全に消えるタイミング 50%〜75%だと挙動が安定する*/
	100%{opacity: 0;z-index: 0;}
}

/*====スライダー全体の秒数を変えたら、ここも変更が必要====*/
.mv_area_box img[src*="2"]{animation-delay: 5s;}/* ← 2枚目(全体の秒数÷4)*1 秒 */
.mv_area_box img[src*="3"]{animation-delay: 10s;}/* ← 3枚目(全体の秒数÷4)*2 秒 */
.mv_area_box img[src*="4"]{animation-delay: 15s;/* ← 4枚目(全体の秒数÷4)*3 秒 */
}
/*===========indexスライダーのタイミング設定　ここまで==================*/


/*----------メインintro---------*/

.intro h1{
	font-size: 45px;
	color:#1A0700;
	font-weight:600;
}
.intro h2{
	font-size: 36px;
	color:#1A0700;
	font-weight:600;
}

.intro{
	margin:auto;
	padding:100px 0;
}

.intro_box{
	margin: auto;
	max-width: 800px;
}
.intro_inner{
	padding: 40px 0;
}
.intro_inner p{
	text-align: center;
	padding:0 20px 35px;
}


/*----------強羅鮨---------*/
.menu{
}

.menu_box{
	display: flex;
	flex-wrap: wrap;
	max-width: 1320px;
	margin: auto;
}

.manu_img{
	width:66%;
}

.manu_text{
	width: 34%;
	display: flex;
	flex-wrap: wrap;
	background-color: #f0f0ed;
}

.manu_text_box{
	margin: auto;
}
.manu_text_box p{
	font-size: 20px;
	font-weight:600;
	padding-bottom:15px;
}
.manu_text_box h2{
	text-align: left;
	font-size: 30px;
	font-weight:600;
	color:#1A0700;
	margin-left: -0.4em;
	padding-bottom:20px;
}

/*---------- 温泉・客室 ---------*/
.room{
	padding:200px 0 100px;
}

.room_box{
	aspect-ratio:4 / 1;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.room_box img[src*="bath"]{
	position: absolute;
	top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	left:0;
	width:50%;
}

.room_box img[src*="room"]{
	position: absolute;
	top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	right:0;
	width:50%;
}

.room_text{
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	z-index: 20;
}

.room_text_box{
	margin: auto;
	background-color: rgba(0,0,0,.63);
	padding:40px 80px;
	text-shadow: 0 0 10px rgba(0,0,0,.9);
}

.room_text_box h2{
	font-size: 30px;
	font-weight:600;
	color:#fff;
	padding-bottom:10px;
}

.room_text_box a{
	color:#fff;
}
@media screen and (min-width: 521px) {
	.room_text_box a:hover{
		color:#1A0700;
		border: #fff 1px solid;
		text-shadow: 0 0 10px rgba(0,0,0,0);
	}
}


/*---------- アクセス ---------*/

.access{
	padding-top:100px;
}

.access h2{
    font-size: 30px;
    font-weight: 600;
    color: #1A0700;
    padding-bottom: 40px;
}

.access_box{
	display: flex;
	flex-wrap: wrap;
	max-width: 1320px;
	margin: auto;
}

.access_img{
	width:50%;
}
.g_map iframe{
	width:100%;
	height:auto;
	aspect-ratio:3/2;
}

.access_text{
	text-align: left;
	width:calc(50% - 100px);
	padding-left:100px;
}
.access_text p a{
	color:#1A0700;
	text-decoration: underline;
}
.access_text p{
	padding-bottom:20px;
}

.room_text_box a{
	color:#fff;
}
@media screen and (min-width: 521px) {
	.room_text_box a:hover{
		color:#1A0700;
		background-color: #fff;
		text-shadow: 0 0 10px rgba(0,0,0,0);
	}
}


/*---------- ボタンエリア ---------*/
.btn_area,
.btn_area_min{
	padding:80px 0;
}
.btn_area a{
	font-size:24px;
	border-radius: 40px;
	padding: 2px 80px 3px 66px;
  line-height: 1.0;
  display: inline-block;
}
.btn_area a span{
  font-size: 18px;
}
.btn_area a.link::before {
	width: 46px;
}
@media screen and (min-width: 521px) {
	.btn_area a:hover{
	}
	.btn_area a.link:hover::before {
		right: -26px;
	}
}



/*----------------------------------------------------------
下層デザイン
----------------------------------------------------------*/

#food .mv_area_box img,
#room .mv_area_box img,
#plan .mv_area_box img{
	opacity: 1;
	animation-name: none;
}

#plan > h1{
	padding:100px 0 0;
	font-size: 26px;
}

.mv_area_box h1{
	display: inline-block;
	margin: auto;
	padding-bottom:6%;
	z-index: 20;
	color:#fff;
	font-weight:500;
	text-shadow: 0 0 10px rgba(0,0,0,.9);
	font-size:2.5vw;
	letter-spacing: 0.05em;
	font-family: 'Noto Serif JP', serif;
}

/*---------- 写真エリア ---------*/
.img_area{
	padding:20px 0 60px;
}
/*- お鮨の写真3枚 -*/
.img_three{
	display: flex;
	flex-wrap: wrap;
}
.img_three img{
	width:calc(100%/3);
}
/*- 単独 -*/
.single_img{
	position: relative;
	aspect-ratio:3/1;
	overflow: hidden;
}
.single_img img{
	position: absolute;
	top:50%;
    left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.btn_area_min a{
	font-size:36px;
	border-radius: 40px;
	padding: 2px 80px 3px 66px;
  line-height: 1.0;
  display: inline-block;
}

/*---------- 1column ---------*/

.column1{
	max-width:1000px;
	margin: auto;
  margin-bottom: 30px;
	padding:0 20px;
	/*display: flex;*/
	flex-wrap: wrap;
}
.column1 h2{
	font-size: 40px;
	display: block;
	width: 100%;
	padding-bottom:90px;
}
.column1 h3{
	font-size: 30px;
	color:#1A0700;
	font-weight:600;
	text-align: center;
  margin: auto;
}
.column1 p{
	padding-bottom:20px;
  margin: auto;
  text-align: center;
}



/*---------- 2column ---------*/

.column2{
	max-width:1000px;
	padding:0 20px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

.column2 h2{
	font-size: 40px;
	display: block;
	width: 100%;
	padding-bottom:90px;
}
.column2 h3{
	font-size: 30px;
	color:#1A0700;
	font-weight:600;
	text-align: left;
}

.column2_img{
	position: relative;
	width:36%;
	height:auto;
	aspect-ratio:1/1;
	overflow: hidden;
}
.column2_img img{
	position: absolute;
	height:100%;
	width:auto;
	top:50%;
    left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.column2_text{
	width:64%;
	padding-left:50px;
}
.column2_text div{
	padding-top:30px;
}
.column2_text div p{
	padding-bottom:20px;
	text-align: left;
}

.column_table{
	max-width: 840px;
	padding:0 20px;
	margin:100px auto 0;
	display: flex;
	flex-wrap: wrap;
}
.column_table.cancel{
	margin:0 auto;
}
.cancel_h3{
	margin:100px auto 10px;
}

.column_table div{
	margin-bottom: 4px;
}
.column_table div:nth-child(odd){
	display: flex;
	flex-wrap: wrap;
	width:30%;
	background-color: rgba(0,0,0,.1);
}
.column_table div:nth-child(odd) span{
	display: inline-block;
	margin: auto;
}
.column_table div:nth-child(even){
	width:70%;
	padding:20px;
	background-color: rgba(0,0,0,.05);
	text-align: left;
	line-height: 1.7em;
}

.table_note{
	text-align: center;
	padding:10px 20px 50px;
}
.cancel_note{
	text-align: center;
	padding:10px 30px 10px;
	font-size:15px;
}

.btn_area_room{
	padding:0 0 80px;
}
