@charset "utf-8";

/* 基本 */
h1,
h2,
h3,
dt,
dd,
p {
  line-height: 1.7;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #333333;
}

ul {
  list-style: none;
}

body {
  font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
}

/* コンテナ設定 */

.container {
  max-width: 1100px;
  margin: 0px auto;
  padding: 0 4%;
}

/* ヘッダー */

header {
  display: flex;
  height: 70px;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .8);

}

.logo {
  margin-right: auto;
}

.logo img {
  width: 100px;
  vertical-align: middle;
}

.menu {
  margin-left: auto;
  white-space: nowrap;
}

.menu li {
  list-style: none;
  display: inline-block;
  padding: 15px;

}

.menu li a {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;

}

/* 予約ボタン */
.yoyaku {
  border: 6px double #ffffff;
  display: block;
  background: #333333;
  padding: 15px 50px;
}

.yoyaku span {
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
}

/* スライダー（メインビジュアル） */

.main_visual {
  position: relative;
  text-align: center;
}

.slider img {
  margin: 0 auto;
}

/* スライダー設定 */

.slider_text {
  display: inline-block;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 100px;
  font-weight: 300;
  z-index: 100;
  letter-spacing: 20px;
}

/* スクロール促す動き */
.scroll_wrapper {
  position: absolute;
  display: inline-block;
  text-align: center;
  bottom: 10px;
  z-index: 99;
}

.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 10px;
  left: 50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }

  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #eee;
}

.slider_text {
  width: 100%;
  animation: fadeout-anim 10s linear forwards;
}

@keyframes fadeout-anim {
  100% {
    opacity: .8;
  }
}

.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  animation: typinganime .8s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 40px;
  height: 2px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 18px;
}

.hamburger__line--3 {
  top: 36px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
  position: fixed;
  right: -100%;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 70%;
  /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #ffffff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}

.sp-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.insta_icon {
  width: 25px;
}

.h_menu li a {
  display: block;
  color: #333333;
  text-decoration: none;
  padding: 20px 60px;
  text-align: center;
}

.sp-nav li:not(:first-child) {
  margin-top: 10px;
}

.sp-nav ul {
  list-style: none;
  padding-inline-start: 0;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

/* 
  black-bg(ハンバーガーメニュー解除用bg)
  =================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

/* 章の設定
 =================================================*/
.chapter,
.concept_text {
  text-align: center;
}

.chapter {
  margin-top: 48px;
  margin-bottom: 18px;
}

.chapter h2 {
  position: relative;
  display: inline-block;
  padding: 0 80px;
  font-size: 32px;
  font-weight: 400;
}

.chapter h2:before,
.chapter h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.chapter h2:before {
  left: 0;
}

.chapter h2:after {
  right: 0;
}

/*章の設定の終わ
================================================= */

/* コンセプト
================================================ */
.consept_text {
  width: 60%;
  margin: 0 auto;
}

.concept_sub {
  text-align: center;
}

.concept_sub h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 32px;
}

.consept_text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.annotation p {
  margin-top: 20px;
}

/* コレクション
=============================================== */
.gallery {
  text-align: center;
}

.gallery ul {
  width: 100%;
  margin: 0 auto;
}

/* フェードイン設定
========================================================= */
.fadein {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* フェードイン設定の終わり
========================================================== */
.annotation {
  margin: 0 auto;
}

.annotation p {
  font-size: 14px;
  font-weight: 400;
}

/* スタイル
======================================================= */
.style_image_wrapper {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  height: auto;
  padding: 40px 30px 30px;
  background-color: #DEE4D8;
}

.style_image {
  display: flex;
  justify-content: space-around;
}

.style_image img {
  width: 25%;
  object-fit: cover;
}

.style_image img:not(:first-child) {
  margin-left: 10px;
}

.style_image_inner {
  align-items: center;
  
}

.read_btn_text {
  display: inline-block;
  padding: 15px 80px;
  background-color: #FFFFFF;
  text-align: center;
  margin-top: 30px;
  border: 1px solid #000;
}

.btn_wrapper {
  text-align: center;
}

.sp_style_image img {
  width: calc(50% - 20px);
}

.sp_style_image {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  
}

.sp_style_image img{
  object-fit: cover;
}


.style_title {
  font-weight: 300;
  text-align: center;
}

.staff_wrapper {
  display: flex;
  justify-content: center;
  /* flex-wrap: wrap; */
}

.staff_text_wrapper {
  background-color: #EFECE6;
  width: 60%;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

.staff_img img {
  box-shadow: -15px -15px 0 #EFECE6;
  margin-bottom: 15px;
  margin-right: 15px;
  width: 250px;
}

.staff_text_inner {
  margin: 20px;
  color: #333333;
}

.about_wrapper {
  margin-bottom: 24px;
}

.about_wrapper dl {
  display: flex;
  align-items: center;

}

dt {
  width: 30%;
  padding: 10px 0;
  text-align: center;
  background-color: rgb(212, 212, 212);
}

dd {
  width: 80%;
}

.owner {
  font-size: 12px;
}

.staff_text_inner h3 {
  font-size: 16px;
  font-weight: 500;
}

.info_text {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0 auto;
}

.about_title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.info_wrapper {
  background-color: #ffffff;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.info_title {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 24px;
}

.map_wrapper {
  display: flex;
  justify-content: center;

}

.info_wrapper img {
  width: 300px;
  margin-right: 35px;
}

.info_icon img {
  width: 60px;
}

.info_icon {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_text p:not(:first-child) {
  margin-top: 10px;
}

.yoyaku_btn {
  display: block;
  margin-left: 35px;
  padding: 15px 50px;
  background: #333333;
  color: #ffffff;
  text-align: center;
  border: 6px double #ffffff;
}


.footer {
  margin-top: 24px;
}

iframe {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.g_map {
  margin: 0 auto;
}

.footer_wrapper {
  background-color: #333333;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  height: 150px;
  align-items: flex-end;
}

.footer_wrapper p {
  color: #FFFFFF;
  text-align: center;
  line-height: 150px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
}

.slider {
  opacity: 0;
  transition: opacity .3s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

.flex {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%;
  margin-bottom: 25px;
}

hr.tab-r-line {
  position: relative;
  top: calc(50% - 1px);
  margin: 0 10px;
  border: none;
  border-top: dotted 2px #CCC;
}

.tab-reader-box2 {
  flex: auto;
}

.tab-reader-box1,
.tab-reader-box3 {
  font-size: 20px;
  font-weight: 300;
}

.tab-reader-box1 {
  font-weight: 400;
  font-size: 18px;
}

.tab-reader {
  max-width: 450px;
  margin: 0 auto;
}

ul {
  padding-inline-start: 0;
}

.sub_title {
  text-align: center;
  margin-bottom: 28px;
  margin-top: 42px;
  font-size: 26px;
}