@charset "utf-8";
/* CSS Document */


:root {
	/* font-size */
	--fs-xs: .8rem;
	--fs-s: .9rem;
	--fs-m: 1rem;
	--fs-l: 1.2rem;
	--fs-xl: 1.4rem;
	--fs-2xl: 2.5rem;
	
	/* colors */
	--color-white: #fff;
	--color-black: #000;
	--color-gray: #ddd;
}

/* reset
----------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
	text-decoration: none;
}
img {
	display: block;
}


/* 共通
----------------------------------------*/
body {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS Mincho", serif;
	color: var(--color-black);
	font-size: var(--fs-m);
	letter-spacing: .05rem;
	line-height: 2;
}
#back {
	position: fixed;
	width: 100%;
	height: 100%;
	background: url("../images/img_back_whole.jpg") center center / cover no-repeat;
	opacity: .3;
	z-index: -1;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
h2 {
	position: relative;
	margin-bottom: 1.5rem;
	font-size: var(--fs-2xl);
	text-align: center;
	letter-spacing: .1rem;
	z-index: 1;
}
h2 small {
	display: block;
	font-size: var(--fs-m);
	line-height: 0;
}
a {
	color: var(--color-white);
	font-size: var(--fs-m);
	font-weight: bold;
	transition: .3s;
}
a:hover {
	opacity: .7;
}
.link {
	display: inline-block;
	width: 100px;
	padding: 0 .2rem;
	border: 1px solid var(--color-white);
	font-size: var(--fs-xs);
	text-align: center;
}


/* CTA
----------------------------------------*/
#fixed_cta {
	position: fixed;
	bottom: 0;
	width: 100%;
	margin: auto;
	border-top: 1px solid var(--color-gray);
	background: rgb(255, 255, 255, .9);
	z-index: 9999;
}
#fixed_cta ul {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	max-width: 900px;
	margin: auto;
	gap: 0 1px;
	height: 100%;
	text-align: center;
}
#fixed_cta ul li {
	flex: 1;
}
#fixed_cta ul li a {
	display: inline-flex;
	align-items: center;
	padding: .5rem 0;
	color: var(--color-black);
}
#fixed_cta li a::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: .5rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
#fixed_cta li:first-child a::before {
	background-image: url("../images/img_reservation.png");
}
#fixed_cta li:last-child a::before {
	background-image: url("../images/img_tel.png");
}


/* #a01 FV
----------------------------------------*/
#a01 {
	position: relative;
	width: 100%;
	height: 100vh;
	color: var(--color-white);
}
#a01 > div:last-of-type {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: max-content;
	height: 100%;
	margin-left: 10%;
	text-align: center;
	z-index: 2;
}
#a01 img {
	width: 80px;
	margin: 0 auto 1rem auto;
}
#a01 > p {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: var(--fs-s);
	z-index: 2;
}
.fv-slide .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s;
}
.fv-slide .active {
	opacity: 1;
}
#a01 h1 {
	opacity: 0;
	filter: blur(20px);
	transform: scale(1.05);
	transition: opacity 1.5s ease,
				filter 1.5s ease,
				transform 1.5s ease;
}
#a01 h1.show {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
}


/* #a02 コンセプト
----------------------------------------*/
#a02 {
	position: relative;
	width: 100%;
	height: 100vh;
	background: url("../images/img_back01.webp") center center / cover no-repeat;
	padding: 8rem 0;
	color: var(--color-white);
}
#a02 .overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
}
#a02 > div:nth-of-type(2) {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2rem;
	width: 100%;
	height: 100%;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	z-index: 1;
}
#a02 img {
	width: 40px;
	margin-left: 1.5rem;
}
#a02 p {
	text-shadow: 0 0 5px var(--color-white);
	font-size: var(--fs-l);
	text-indent: .5rem;
}
.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.2s cubic-bezier(.22,.61,.36,1),
				transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.fade-up.show {
	opacity: 1;
	transform: translateY(0);
}


/* #a03 動画
----------------------------------------*/
/*.video-wrap {
    position: relative;
}
#a03 {
	position: sticky;
	top: 0;
	height: 100vh;
	color: var(--color-white);
}
#a03 .overlay {
	background: rgb(0, 0, 0, .7);
}
#a03:before {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	z-index: 1;
}*/
#a03 {
	padding: 2rem;
}
video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom;
}


/* #a04 こだわり
----------------------------------------*/
#a04 {
	position: relative;
	margin: 5rem auto 0 auto;
	padding-bottom: 5rem;
	color: var(--color-white);
}
#a04 > div {
	inline-size: fit-content;
	margin-inline: auto;
	padding: 0 3rem;
}
#a04 h2 {
	margin-bottom: 5rem;
}
#a04 p:nth-of-type(1) {
	margin-bottom: 5rem;
	font-size: var(--fs-xl);
	font-weight: bold;
	text-align: center;
}
#a04 p:nth-of-type(2) {
	font-size: var(--fs-s);
}
#a04 div img {
	max-width: 350px;
	width: 100%;
	margin: 5rem auto 0 auto;
}


/* #info 店舗情報
----------------------------------------*/
#info {
	max-width: 900px;
	width: calc(100% - 4rem);
	margin: 3rem auto;
	padding: 3rem 1rem;
	outline: solid 1px var(--color-black);
	background: var(--color-white);
}
#info table {
	width: 100%;
	margin: 1rem auto 0 auto;
	border-collapse: collapse;
}
#info table td {
	padding: 1rem 0;
	border-bottom: 1px solid var(--color-gray);
	vertical-align: top;
}
#info table tr:last-child td {
	border-bottom: none;
}
#info table tr td:first-child {
	width: 250px;
	padding-right: 2rem;
}
#info ul {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;
	max-width: 420px;
	margin: 2rem auto 0 auto;
	padding: 0 2rem;
}
#info ul li {
	position: relative;
}
#info ul li::before {
	content: "▶";
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	font-size: var(--fs-xs);
}
#info ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	padding: 1rem 0;
	border: solid 1px var(--color-black);
	color: var(--color-black);
}
#info ul li img {
	width: 35px;
}


/* アクセス
----------------------------------------*/
iframe {
	display: block;
	width: 100%;
	height: 420px;
	filter: grayscale(100%) brightness(90%) contrast(120%);
}


/* フッター
----------------------------------------*/
footer {
	position: relative;
	width: 100%;
	padding: 6rem 0;
	color: var(--color-white);
	background: url("../images/img_back_footer.webp") no-repeat center right / cover;
}
footer .overlay {
	background: rgb(0, 0, 0, .75);
}
footer > div:last-child {
	position: relative;
	max-width: 1400px;
	width: calc(100% - 4rem);
	margin: auto;
	z-index: 1;
}
.footer-logo {
	display: block;
	width: max-content;
	margin: 0 auto 2rem auto;
}
.footer-logo img {
	width: 40px;
}
.insta {
	display: inline-block;
	width: 35px;
}
.insta img {
	width: 100%;
}
footer ul {
	display: flex;
	gap: .5rem;
	margin: 1rem 0;
}
footer p:last-child {
	margin-top: 2rem;
	font-size: var(--fs-xs);
}


/* ===============================
   NEWS COMMON
================================= */

.news,
.news-single {
  background: #f5f5f5; /* 薄グレー */
  padding: 140px 0;
}

.news__container,
.news-single__container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff; /* 白ブロック */
  padding: 80px 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.news__title {
  font-size: 26px;
  letter-spacing: 0.15em;
  margin-bottom: 60px;
  font-weight: 400;
  color: #111;
}

.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news__item {
  border-bottom: 1px solid #e5e5e5;
}

.news__link {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  text-decoration: none;
  color: #111;
  transition: opacity .3s ease;
}

.news__link:hover {
  opacity: .6;
}

.news__date {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.1em;
}

.news__text {
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* ===============================
   SINGLE
================================= */

.news-single__date {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.news-single__title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 0.08em;
}

.news-single__content {
  line-height: 2;
  font-size: 15px;
  color: #222;
}

.news-single__content p {
  margin-bottom: 24px;
}

.news-single__back {
  margin-top: 60px;
}

.news-single__back a {
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  transition: opacity .3s ease;
}

.news-single__back a:hover {
  opacity: .6;
}