@charset "UTF-8";
/*===========================================================================

  style.css
  サイト固有の装飾スタイルをまとめます。
  汎用コンポーネントは components.css (.c-*) を使用してください。

  【命名ルール】
  接頭辞なし → このファイル（サイト固有）
  .c-        → components.css
  .l-        → layout.css
  .u-        → utility.css

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

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

　トップページ
	
===========================================================================*/

/* メインビジュアル
===========================================================================*/
.mv {
	width: 100%;
	height: 31.25rem; /* 500px */
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.mv__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	animation: kenburns 20s infinite alternate ease-out;
}
.mv__bg:has(.mv__video) {
  animation: none; 
}
/* 画像の設定 */
.mv__bg-img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* 動画の設定 */
.mv__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* 画像の background-size: cover と同じ効果 */
	z-index: 1; /* 画像より上に配置 */
}
.mv::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.mv__content {
	position: relative;
	z-index: 2;
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
}
.mv__sub {
	font-family: var(--font-eng);
	font-size: var(--text-18);
	font-weight:700;
	letter-spacing:normal;
	margin-bottom: var(--s-2);
}
.mv__title {
	font-size: var(--text-48);
	font-weight: 900;
}
@keyframes kenburns {
	0% {
			transform: scale(1.2);
	}
	100% {
			transform: scale(1);
	}
}
@media (min-width: 768px) {
.mv {
	height: 43.75rem; /* 800px */
}
.mv__sub {
	font-size: var(--text-20);
	margin-bottom: var(--s-5);
}
.mv__title {
	font-size: var(--text-80);
}
}
@media (min-width: 1024px) {
}

/* 予約
===========================================================================*/
.reserve{
	background-color:#000000;
	}

/* コンセプト
===========================================================================*/
#concept {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#concept::before {
  content: "";
  position: absolute;
  top: auto;
	bottom:0;
  right: 5%;
  width: 40%;
  aspect-ratio: 1 / 1;
  background-image: url(../images/concept_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media (min-width: 768px) {
  #concept::before {
    width: 450px;
    right: 5%;
		top: 0;
  }
}

/* FAQ アコーディオン
===========================================================================*/

#faq .c-accordion { border-bottom: 1px solid #eee; border-left:none; border-right:none; border-top:none;}
#faq .c-accordion:first-child { border-top: 3px solid #000000;}
#faq .c-accordion:not(:last-child) { margin-bottom: 0; }
#faq .c-accordion:hover { box-shadow: none; color: #c1112e; }
#faq .c-accordion__head { padding: var(--s-5) var(--s-5) var(--s-5) 0; }
#faq .c-accordion__title { font-weight: 900; }
#faq .c-accordion__body{ border-left:3px solid #c1112e; padding:0 0 0 var(--s-5); margin-bottom: var(--s-5); }
#faq .c-accordion__head::before,#faq .c-accordion__head::after { right: 0; background-color: #000; }
#faq .c-accordion.is-open .c-accordion__head { background-color:transparent; }
#faq .c-accordion.is-open .c-accordion__title { color: #c1112e; }
#faq .c-accordion.is-open .c-accordion__head::before,#faq .c-accordion.is-open .c-accordion__head::after  { background-color: #c1112e; }

@media (min-width: 768px) {
#faq .c-accordion__head {
  padding: var(--s-10) var(--s-10) var(--s-10) 0;
}
#faq .c-accordion__body {
	margin-bottom: var(--s-10);
}
}
@media (min-width: 1024px) {}



.faq-item {
  border-bottom: 1px solid #eeeeee;
  position: relative; /* labelのabsolute基準 */
}

.faq-item:first-child {
  border-top: 3px solid #000000;
}

/* チェックボックス非表示 */
.faq-toggle {
  display: none;
}

/* タイトルtableの余白でクリック高さを確保 */
.faq-item > table {
  width: 100%;
  cursor: pointer;
}
.faq-item > table td {
	font-weight:900;
  padding: var(--s-5) var(--s-5) var(--s-5) 0; /* 右48pxはアイコン分 */
	position:relative;
}

/* labelをtableに重ねてクリック領域をカバー */
.faq-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; /* .faq-bodyが開くと伸びるが最低限の高さはtableで確保 */
  cursor: pointer;
  display: block;
}

/* ＋アイコン */
.faq-icon {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
  /*width: 48px;
  height: 60px;  タイトル行の高さに合わせる */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.faq-icon img{
	width:1em;
	height:1em;
	}

/* コンテンツ：初期は非表示 */
.faq-body {
  padding: 0 0 0 0;
  border-left:3px solid #c1112e;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-body table {
  width: 100%;
}
.faq-body td {
	padding:0 0 0 var(--s-5);
}

/* ===== チェック時の制御 ===== */

/* 本文を開く（labelはtableの後ろなので ~ で届く） */
.faq-toggle:checked ~ .faq-body {
  max-height: 600px;
	margin-bottom: var(--s-5);
}

/* アイコンを × に回転 */
.faq-toggle:checked ~ .faq-label .faq-icon {
  transform: rotate(45deg);
}

/* タイトル文字を赤に（inputの直後の兄弟tableを対象） */
.faq-toggle:checked ~ table .faq-q-text {
  color: #c1112e;
}

@media (min-width: 768px) {
.faq-item > table td {
  padding: var(--s-10) var(--s-10) var(--s-10) 0;
}
.faq-toggle:checked ~ .faq-body {
	margin-bottom: var(--s-10);
}
}
@media (min-width: 1024px) {}


/* contact
===========================================================================*/
#contact{
	background-image:url(../images/contact_bg.jpg);
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	}

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

　下層ページ

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

/* ページタイトル
===========================================================================*/
@media (min-width: 768px) {}
@media (min-width: 1024px) {}
