@charset "UTF-8";

/************************
common
 ************************/
body {
	font-family: "Shippori Mincho B1", serif;
	background-color: #F0E8E0;
}

main {
	background-color: #F0E8E0;
	overflow: hidden;
}

/* PC背景 */
.pc-bg {
	display: none;
}

.pc-left {
	width: calc(50vw - 214px);
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pc-left .pc-logo {
	width: 30%;
}

.pc-left .pc-logo img {
	width: 100%;
}

.pc-right {
	width: calc(50% - 214px);
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pc-right nav {
	width: 60%;
}

.pc-right nav .nav__list {
	margin: 0;
  padding: 0;
  list-style: none;
  width: 80%;
  text-align: left;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ececec;
}

.pc-right nav .nav__list li {
	position: relative;
}

.pc-right nav .nav__list li::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 30px;
	height: 16px;
	background-image: url(../images/arrow--white.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.pc-right nav .nav__list .nav__link {
	display: inline-block;
  padding: 10px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.pc-right nav .nav__list--sns {
	color: #ececec;
  font-size: 2rem;
  padding-left: 10px;
  border: none;
}

.pc-right nav .nav__list--sns li {
	margin-right: 20px;
  margin-bottom: 8px;
  font-size: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}

.pc-right nav .nav__list--sns li::before {
	display: none;
}

.pc-right nav .nav__list--sns li h2 {
	font-size: 1.5rem;
}

.pc-right nav .nav__list--sns li a {
	color: #ececec;
}

.pc-right nav .nav__list--sns li a i {
	margin-left: 20px;
  font-size: 1.8rem;
}

.pc-left,
.pc-right {
	display: none;
}

@media screen and (min-width: 429px) {
	.pc-bg {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
	}

	.pc-left,
	.pc-right {
		display: flex;
	}

	.pc-bg img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.pc-bg::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		backdrop-filter: blur(5px);
		background-color: rgba(0, 0, 0, 0.5);
	}
}

p {
	font-size: 14px;
}

header {
	width: 100%;
	margin: auto;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

header,main,footer {
  max-width: 428px;
  margin: auto;
}

section {
	padding-bottom: 70px;
}

/* .inactive {
	transform: translateY(150px);
	opacity: 0;
	visibility: hidden;
	transition: all 1s ease;
}

.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
} */

/* ========================================
   背景スライド出現アニメーション（参考: heijoen.co.jp）
   使い方:
   <div class="reveal">        ← 左からスライドイン
     <div class="reveal__inner">
       <div class="reveal__child">コンテンツ1</div>
       <div class="reveal__child">コンテンツ2</div>
     </div>
   </div>
   <div class="reveal reveal--right"> ← 右からスライドイン
   ======================================== */

/* 親: overflow:hidden で画面外を隠す */
.reveal {
	overflow: hidden;
}

/* 内側ブロック: 画面外に配置 */
.reveal > .reveal__inner {
	transform: translateX(-100%);
	transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
}

/* 右から版 */
.reveal.reveal--right > .reveal__inner {
	transform: translateX(100%);
}

/* 画像ブロック: カラー幕 */
.reveal > .reveal__inner .reveal__img {
	position: relative;
	overflow: hidden;
}

.reveal > .reveal__inner .reveal__img::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #BFA22E;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: left 0.8s cubic-bezier(0.87, 0, 0.13, 1) 0.8s;
}

.reveal:not(.reveal--right) > .reveal__inner .reveal__img::after {
	transform: translateX(-100%);
}

.reveal.reveal--right > .reveal__inner .reveal__img::after {
	transform: translateX(100%);
}

/* 子要素: 遅れて出現 */
.reveal > .reveal__inner .reveal__child {
	opacity: 0;
	transform: translateX(-50px);
	transition: transform 0.8s cubic-bezier(0.14, 1, 0.34, 1),
	            opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.reveal--right > .reveal__inner .reveal__child {
	transform: translateX(50px);
}

/* 子要素の順番遅延 */
.reveal > .reveal__inner .reveal__child:nth-child(1) { transition-delay: 0.6s; }
.reveal > .reveal__inner .reveal__child:nth-child(2) { transition-delay: 0.8s; }
.reveal > .reveal__inner .reveal__child:nth-child(3) { transition-delay: 1.0s; }
.reveal > .reveal__inner .reveal__child:nth-child(4) { transition-delay: 1.2s; }
.reveal > .reveal__inner .reveal__child:nth-child(5) { transition-delay: 1.4s; }

/* ========== .move 発火後 ========== */

/* 内側ブロックがスライドイン */
.reveal.move > .reveal__inner {
	transform: translateX(0);
}

/* カラー幕が通過して消える */
.reveal.move > .reveal__inner .reveal__img::after {
	transform: translateX(0);
}

.reveal.move:not(.reveal--right) > .reveal__inner .reveal__img::after {
	left: 100%;
}

.reveal.move.reveal--right > .reveal__inner .reveal__img::after {
	left: -100%;
}

/* 子要素が出現 */
.reveal.move > .reveal__inner .reveal__child {
	opacity: 1;
	transform: translateX(0);
}

footer {
	background-color: #F0E8E0;
}

.breadcrumbs {
	background-color: #202020;
	margin-top: 6.2rem;
	padding: 10px;
}

.breadcrumbs ul {
	display: flex;
}

.breadcrumbs ul li {
	list-style: none;
	margin-right: 30px;
	position: relative;
	color: #ececec;
	font-size: 0.7rem;
}

.breadcrumbs ul li::after {
	position: absolute;
	top: 50%;
	right: -18px;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
	content: '\f105';
	font-weight: 900;
	color: #ececec;
}

.breadcrumbs ul li:last-child:after {
	display: none;
}

.breadcrumbs ul li a {
	color: #ececec;
	text-decoration: none;
	font-size: 0.7rem;
}

.breadcrumbs ul li:first-child a {
	color: #BFA22E;
}

/************************
ハンバーガーメニュー
 ************************/
.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 38px;
  height: 1px;
  background-color: #202020;
  transition: all .6s;
	box-shadow: 0 0px 3px 0 rgba(32, 32, 32, 0.5);
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #202020;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
	background-color: #ececec;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
	background-color: #ececec;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(12, 12, 12, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 90;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
	width: 80%;
	text-align: left;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ececec;
}

.nav-overlay__list--icon {
	color: #ececec;
	font-size: 2rem;
	padding-left: 10px;
	border: none;
}

.nav-overlay__list--icon h2 {
	font-size: 1.5rem;
}

.nav-overlay__list--icon li {
	margin-right: 20px;
	padding-left: 30px;
	margin-bottom: 8px;
	font-size: 1.5rem;
	position: relative;
	display: flex;
	align-items: center;
}

.nav-overlay__list--icon li::before {
	/* font-family: "Font Awesome 5 Free"; */
	content: 'ー';
	font-weight: 400;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.nav-overlay__list--icon li:first-child {
	padding: 0;
	margin-bottom: 10px;
}

.nav-overlay__list--icon li:first-child::before {
	display: none;
}

.nav-overlay__list--icon li a {
	color: #ececec;
}

.nav-overlay__list--icon li i {
	margin-left: 20px;
	font-size: 1.8rem;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }

.nav-overlay__link {
  display: inline-block;
  padding: 10px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #BFA22E;
}

/************************
TOP
 ************************/
header {
	position: fixed;
	top: 0;
	z-index: 1;
	height: 100vh;
	overflow: hidden;
	pointer-events: none;
}
header .header-top,
header .side-nav,
header .nav-overlay {
	pointer-events: auto;
}

header .logo {
	width: 18%;
	position: absolute;
	top: 1em;
	left: 1em;
	z-index: 91;
}

header .logo.active {
	filter: invert();
}

header .side-nav {
	position: absolute;
	top: 8rem;
	right: 0;
	transition: all .5s;
	z-index: 91;
}

header .side-nav.hide {
	right: -50px;
}

header .side-nav a {
	writing-mode: vertical-rl;
	padding: 1.5em 0.5em;
	background-color: #202020;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

header .side-nav li {
	list-style: none;
	display: flex;
}

header .side-nav a {
	color: #ececec;
	text-decoration: none;
}

main #first-view {
	height: 90vh;
	position: relative;
	margin-bottom: 70px;
	overflow: hidden;
	z-index: 0;
}

/* first-view スライドショー */
.fv-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.fv-slider .slick-slide img {
	width: 100%;
	height: 90vh;
	object-fit: cover;
	transform: scale(1);
}

.fv-slider .slick-slide.moving img {
	animation: kbe 7.5s linear infinite normal;
}

@keyframes kbe {
	0%   { transform: scale(1.2); }
	75%  { transform: scale(1); }
	100% { transform: scale(1); }
}

main #first-view h1 {
	writing-mode: vertical-rl;
	position: absolute;
	top: 2.5em;
	left: 0.5em;
	font-size: 2.5rem;
	color: #ececec;
	z-index: 1;
}

main #first-view h1 span {
	font-size: 1.8rem;
	margin: 10px 0;
}

main #first-view .latest-news {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	color: #ececec;
	z-index: 1;
}

main #first-view .latest-news h2 {
	font-size: 1.2rem;
	margin-bottom: 5px;
	padding-left: 10px;
}

main #first-view .latest-news .news__content {
	display: flex;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ececec;
	padding-left: 10px;
}

main #first-view .latest-news .news__content a {
	color: #ececec;
	text-decoration: none;
}

main #first-view .latest-news .news__content span {
	margin-right: 15px;
	font-size: 16px;
}

#first-view .banner {
	width: 90%;
	margin: auto;
	display: block;
}

main #concept {
	position: relative;
	margin-bottom: 200px;
}

main #concept > img {
	width: 100%;
}

main #concept .section-title {
	margin-bottom: 10px;
}

main #concept .concept__text {
	width: 90%;
	position: absolute;
	bottom: -7rem;
	left: 0;
}

main #concept .concept__text .reveal__inner {
	background-color: #202020;
	color: #ececec;
	padding: 10px 20px;
}

main #concept .concept__text h2 {
	margin-bottom: 10px;
}

main #concept .concept__text h2 span {
	color: #BFA22E;
}

main #course .section-title {
	margin-bottom: 15px;
}

main #course .section-title h1 {
	margin-right: -20px;
}

main #course .discription {
	width: 90%;
	margin: 0 auto 20px;
}

main #course .course-menu {
	text-align: right;
	position: relative;
	margin-bottom: 80px;
}

main #course .course-menu--left {
	text-align: left;
}

main #course .course-menu > .reveal img {
	width: 100%;
	padding-left: 20px;
}

main #course .course-menu--left > .reveal img {
	padding-left: 0;
	padding-right: 20px;
}

main #course .course-menu .course-text {
	text-align: left;
	width: 90%;
	position: absolute;
	right: 0;
	bottom: -2em;
}

main #course .course-menu .course-text .reveal__inner {
	background-color: #202020;
	color: #ececec;
	padding: 15px 15px;
}

main #course .course-menu--left .course-text {
	left: 0;
	right: auto;
}

main #course .course-menu .course-text h3 {
	font-size: 1rem;
	font-weight: normal;
}

main #course .course-menu .course-text .course-text-bottom {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

main #course .course-menu .course-text .course-text-bottom .head,
main #course .course-menu .course-text .course-text-bottom .price {
	font-size: 1rem;
}

main #course .course-menu .course-text .course-text-bottom .head span {
	font-size: 1.5rem;
	color: #BFA22E;
}

main #course .course-menu .course-text .course-text-bottom .price span {
	font-size: 2rem;
}

main #menu .menu-content {
	width: 90%;
	margin-top: -60px;
	position: relative;
}

main #menu .menu-content .reveal__inner {
	background-color: #202020;
	color: #ececec;
	padding: 15px 15px 20px 15px;
}

main #menu .menu-content h2 {
	margin-bottom: 15px;
}

main #menu .menu-content .small {
	font-size: 1rem;
}

main #menu .menu-content .yellow {
	color: #BFA22E;
}

main #menu .menu-content p {
	margin-bottom: 20px;
}

main #floor .floor-head {
	background-image: url(../images/floor-head.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px 0px;
	margin-bottom: 50px;
}

main #floor .floor-head h1 {
	color: #ececec;
}

main #floor .floor__item {
	margin-bottom: 50px;
}

main #floor .floor__item--right {
	text-align: right;
}

main #floor .floor__item h2 {
	font-size: 2rem;
}

main #floor .floor__item h2 .small {
	font-size: 1.5rem;
}

main #floor .floor__item h2 .yellow {
	color: #BFA22E;
}

#floor .floor__item img {
	width: 100%;
}

#floor .floor__item .floor__text {
	width: 80%;
	margin-top: -50px;
	position: relative;
}

#floor .floor__item .floor__text .reveal__inner {
	background-color: #202020;
	color: #ececec;
	padding: 20px;
}

main #floor .floor__item--right .floor__text {
	margin-right: 0;
	margin-left: auto;
}

main #news {
	margin-bottom: 0;
	padding-bottom: 70px;
}

main #news .section-title,
main .archive--news .section-title {
	margin-bottom: 30px;
}

main #news a,
main .archive--news a {
	color: #202020;
	text-decoration: none;
}

main #news  ul li,
main .archive--news ul li {
	width: 80%;
	margin: auto;
	list-style: none;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #202020;
}

main #news  ul li a,
main .archive--news ul li a {
	display: flex;
	flex-direction: column;
}

main #news  ul li a span,
main .archive--news ul li a span {
	color: #646464;
	font-size: 0.8rem;
}

/************************
footer
 ************************/
footer .footer-head {
	width:100%
}

footer .access {
	width: 100%;
	margin-right: 0;
	margin-left: auto;
	margin-bottom: 0;
	padding: 20px;
	background-color: #ececec;
}

footer .access .section-title {
	padding: 0;
	margin-bottom: 30px;
}

footer .access .access__item {
	margin-bottom: 50px;
}

footer .access .access__item:last-child {
	margin-bottom: 0;
}

/* footer .access__image {
	width: 100%;
	height: 140px;
	overflow: hidden;
} */

footer .access img {
	width: 100%;
	object-fit: cover;
	object-position: bottom;
}

footer .access h2 {
	margin-bottom: 15px;
}

footer .access .info-list {
	margin-bottom: 15px;
}

footer .access .info-list li {
	list-style: none;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #202020;
}

footer .access .footer-btn {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

footer .access .footer-btn li {
	list-style: none;
	background-color: #202020;
	border-radius: 1000px;
	padding: 8px 16px;
	font-size: 0.8rem;
}

footer .access .footer-btn li a {
	color: #ececec;
	text-decoration: none;
	font-size: 0.8rem;
	line-height: 0.8rem;
}

footer .footer-nav {
	text-align: center;
	padding-bottom: 0;
	margin-bottom: 0;
	background-color: #202020;
}

footer .footer-nav .footer-image {
	background-image: url(../images/floor-head.png);
	background-size: cover;
	background-position: 60% 0;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

footer .footer-nav .footer-image img {
	width: 33%;
}

footer .footer-nav__inner {
	padding: 30px 20px;
}

footer .footer-nav ul {
	margin-bottom: 25px;
}

footer .footer-nav ul li {
	list-style: none;
	margin-bottom: 0;
}

footer .footer-nav ul li a {
	color: #ececec;
	text-decoration: none;
	display: block;
	padding: 8px 0;
	border-bottom: 1px solid rgba(236, 236, 236, 0.15);
	font-size: 0.95rem;
	letter-spacing: 0.1em;
	transition: color 0.3s;
}

footer .footer-nav ul li:first-child a {
	border-top: 1px solid rgba(236, 236, 236, 0.15);
}

footer .footer-nav ul li a:hover {
	color: #BFA22E;
}

footer .footer-sns {
	margin-bottom: 25px;
	padding-top: 5px;
}

footer .footer-sns__label {
	color: #BFA22E;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	margin-bottom: 12px;
}

footer .footer-sns__list {
	display: flex;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

footer .footer-sns__list li a {
	color: #ececec;
	font-size: 1.6rem;
	transition: color 0.3s;
	border: none;
	padding: 0;
}

footer .footer-sns__list li a:hover {
	color: #BFA22E;
}

footer .footer-info {
	margin-bottom: 25px;
}

footer .footer-info p {
	color: rgba(236, 236, 236, 0.7);
	font-size: 0.8rem;
	margin-bottom: 8px;
}

footer .footer-info p a {
	color: rgba(236, 236, 236, 0.7);
	text-decoration: none;
	transition: color 0.3s;
}

footer .footer-info p a:hover {
	color: #BFA22E;
}

footer .footer-info p i {
	color: #BFA22E;
	margin-right: 5px;
	width: 16px;
}

footer .footer-info__hours {
	margin-top: 4px;
}

footer .footer-copyright {
	color: rgba(236, 236, 236, 0.4);
	font-size: 0.6rem;
	padding: 15px 0;
	border-top: 1px solid rgba(236, 236, 236, 0.1);
	margin: 0 20px;
}

/************************
single
************************/
main .single-thumbnail {
	width: 100%;
	height: 200px;
	overflow: hidden;
	margin-bottom: 0;
}

main .single-thumbnail img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

main .single-content {
	width: 100%;
	padding: 70px 20px 100px;
	color: #202020;
}

main .single-content h1 {
	position: relative;
	color: #202020;
	margin-bottom: 30px;
	border-bottom: 1px solid #202020;
	padding-bottom: 20px;
}

main .single-content h1 span {
	position: absolute;
	top: -40%;
	left: 0;
	color: #BFA22E;
	font-size: 0.9rem;
}

main .single-content p {
	font-family: "Noto Sans", sans-serif;
}

/************************
archive--news
************************/
/* main .archive--news {
	margin-top: ;
} */