/*
Theme Name: original
*/

:root {
  --header-max: 100px;
  --header-mid: 80px;
  --header-min: 60px;

  --color01: #ffffff;
  --color02: #EFEAEA;
  --color03: #6B5554;
  --color04: #B5ABAB;
  --color05: #958383;
}

html {
  /* ルートのフォントサイズを10pxに設定しておく */
  font-size: 62.5%;
  scroll-padding-top: 50px;
  background-color: var(--color02);
}

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
  max-width: 100%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;

  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1;
  color: #515151;
}

.en {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
}

/* buttonの初期デザインをリセット */
button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.back-wrapper {
  display: none;
}

.middle {
  width: 100%;
}

/* reserve button */
.reserve-btn-area {
  position: fixed;
  right: 0;
  bottom: 30px;
  z-index: 200;

  display: block;
  margin: 0 auto;
  width: 300px;
  max-width: 70%;
  height: 60px;
  border-radius: 40px 0 0 40px;
  background-color: var(--color03);

  padding: 0 10px 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;

}

.reserve-btn {
  padding: 0 20px;
  font-size: 1.6rem;
  color: var(--color01);
  transition: transform .8s ease;
}

.button {
  /* スタイル用 */
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px var(--color01);

  position: relative;
}

.button:before {
  position: absolute;
  content: '';
  top: 20px;
  left: 10px;
  width: 20px;
  height: 1px;
  background: var(--color01)
}

.button:after {
  position: absolute;
  content: '';
  top: 15px;
  right: 8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid var(--color01)
}

.reserve-btn-area:hover {
  
  .button {
    background-color: var(--color01);
  }

  .button:before {
    background-color: var(--color03);
  }

  .button:after {
    border-left: 6px solid var(--color03);
  }

  .reserve-btn {
    /*
    transform: scale(1.05);
    */
  }
}


/* header */
#header {
  width: 100%;
  height: 50px;

  position: fixed; /* 固定 */
  top: 0; /* 上からの位置 */
  transition: top .5s; /* アニメーション効果を追加 */
  z-index: 1000;

  background-color: var(--color02);
}

.header-inner {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 40%;
}

.header__logo-img {
  width: 100%;
}

/* ハンバーガーボタンのデザイン */
.hamburger__button {
  height: 50px;
  width: 50px;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  z-index: 1500;
  
  cursor: pointer;
}

/* ハンバーガーボタン内の線 */
.hamburger__button > span {
  content: "";
  background-color: var(--color03);

  display: block;
  height: 2px;
  width: 30px;
  border-radius: 10px;

  position: absolute;
}

.hamburger__button > span:first-child {
  top: 16px;
}

.hamburger__button > span:last-child {
  bottom: 16px;
}

/* 展開時のデザイン */
.hamburger__button.active > span:first-child {
  visibility: visible;
  top: 24px;
  transform: rotate(45deg);
  background-color: var(--color01);
}

.hamburger__button.active > span:nth-child(2) {
  visibility: hidden;
}

.hamburger__button.active > span:last-child {
  visibility: visible;
  bottom: 24px;
  transform: rotate(-45deg);
  background-color: var(--color01);
}

/* メニュー内容 */
#header-site {
  width: 100%;
  height: 100%;
  padding-top: 50px;


  background-color: var(--color03);
  color: var(--color01);

  position: fixed;
  top: 0;
  left: 100%;
  z-index: 1000;

  transition: all 0.5s;

  /* スクロール可能にする height: 100%;が必須 */
  overflow: scroll;
}

/* メニューを縦並びに */
.header-site-inner {
  margin: 0 auto;
  width: 95%;

  padding-top: 40px;
  border-top: solid 1px var(--color01);

  flex-direction: column;
}

.header-site-list {
  padding-bottom: 40px;
}

/* メニューをどれだけ左側に表示させるか */
#header-site.active {
  left: 0;
}

/* ハンバーガーメニュー表示時に背景を暗くする */
#header-site.active ~ .header-site-back {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 200;
  background: rgba(3,3,3,.5);
  display: block;

}

.header-site__link:hover {
  opacity: 0.7;
}

.header-site__title--main {
  font-weight: 600;
  text-align: center;
  padding-bottom: 8px;
  color: var(--color01);
}

.header-site__title--sub {
  font-size: 1.2rem;
  text-align: center;
}

/* main vis */
.main-vis {
  margin-top: 50px;
  margin-bottom: 100px;
  height: 500px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-image: url(images/main-vis.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-vis__title--block {
  width: 100%;
  height: 160px;

  background-color: var(--color01);
  opacity: 0.95;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-vis__title--main {
  font-size: 2.4rem;
  padding-bottom: 8px;
  color: var(--color03);
  opacity: 1;
}

.main-vis__title--sub {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  opacity: 1;
  text-align: center;
}


/* about */
.about {
  padding-top: 40px;
  padding-bottom: 100px;

}

.about-wrapper {
  position: relative;
}

.about-back {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: -100;

  width: 70%;
  height: 400px;
  background-color: #F8F8F8;
}

.about-container {
  margin: 0 auto;
  width: 90%;
}

.about-outer {
  width: 90%;
  background-color: var(--color01);
  border: 1px solid #dcdbdb;

  padding: 60px 0;
}

.about-inner {
  margin: 0 auto;
  width: 80%;
}

.about__title--main {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color03);
  padding-bottom: 20px;
}

.about__title--sub::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color04);
  margin-right: 20px;
}

.about__title--sub {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color04);

  padding-bottom: 16px;
}

.about__text {
  line-height: 2;
}


/* catalog */
.catalog__title--inner {
  margin: 0 auto;
  width: 80%;

  padding-bottom: 30px;
}

.catalog__title--main {
  text-align: right;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color03);
  padding-bottom: 20px;
}

.catalog__title--sub {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color04);
}

.catalog__title--sub::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color04);
  margin-left: 20px;
}

.catalog-container {
  position: relative;
  padding-bottom: 140px;
}

.catalog-back {
  position: absolute;
  top: 80px;
  z-index: -100;

  width: 70%;
  height: 640px;
  background-color: #F8F8F8;
}

.catalog-outer {
  padding-bottom: 40px;
}

.catalog-outer2 {
  padding-bottom: 20px;
}

.catalog-inner {
  margin: 0 auto;
  width: 90%;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.catalog-list {
  width: 48%;
  padding: 40px 10px 30px 10px;

  background-color: var(--color01);
  border: solid 1px #dcdbdb;
}

.catalog-list:hover img {
  transform: scale(1.05);
}

.catalog__img {
  display: block;
  margin: 0 auto;
  width: 90%;
  padding-bottom: 24px;

  transition: transform .8s ease;
}

.catalog-list__title {
  position: relative;
}

.catalog-list__title--main {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color04);
  opacity: 0.5;
  top: -14px;
  left: 3%;
}

.catalog-list__title--sub {
  text-align: center;
  padding-bottom: 8px;
  font-weight: 600;
  color: var(--color05);
}

.catalog-list__title--price {
  text-align: center;
}

/* flow */
.flow-wrapper {
  padding-bottom: 960px;
  margin: 0 auto;
  width: 80%;

  display: flex;
  justify-content: space-between;

  position: relative;
}

.flow-inner {
  width: 200px;
  max-width: 90%;
  height: 200px;
  padding: 0 16px;
  border-radius: 50%;
  background-color: var(--color01);

  position: absolute;
}

.flow-inner01 {
  left: 0;
}

.flow-inner02 {
  top: 210px;
  right: 0;
  left: auto;
}

.flow-inner03 {
  top: 420px;
  left: 0;
}

.flow-inner04 {
  top: 640px;
  right: 0;
  left: auto;
}

.flow__number {
  padding-left: 16px;
  padding-bottom: 16px;
  font-size: 2.4rem;
  display: block;
  color: #AB9B9A;
}

.flow__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 12px;
  color: var(--color05);
}

.flow__text {
  text-align: center;
  line-height: 2;
}

/* FAQ */
.faq__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color03);
  padding-bottom: 10px;
}

.faq-wrapper {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 100px;
}

.faq-item {
  margin: 20px 0;
  background-color: var(--color01);
  border-radius: 10px;
}

/* question */
.faq-header {
  padding: 20px 0;
  cursor: pointer;
  position: relative;

  margin: 0 20px;

  display: flex;
  align-items: center;
  justify-content: left;
}

.faq__icon--question {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  border-radius: 50%;

  color: var(--color01);
  background-color: var(--color05);
  text-align: center;
  line-height: 40px;
}

.faq__text--question {
  margin: 0 20px 0 16px;
  line-height: 2;
  width: calc(100% - 40px - 36px);
}

.faq__icon--arrow {
  position: absolute;
  top: 50%;
  right: 10px;

  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color04);
  border-right: 2px solid var(--color04);
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s ease;
}

/* answer */
.faq-content {
  display: none;
  margin: 0 20px;
}

.faq-inner {
  display: flex;
  align-items: center;
  justify-content: left;
}

.faq__icon--answer {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  border-radius: 50%;

  color: var(--color05);
  border: solid 3px var(--color05);
  text-align: center;
  line-height: 30px;
}

.faq__text--answer {
  padding: 20px 0;
  margin: 0 20px 0 16px;
  line-height: 2;
  border-top: 1px solid var(--color04);

  width: calc(100% - 40px - 36px);
}

/* news */
.news-wrapper {
  margin-bottom: 120px;
}

.news-inner1 {
  margin: 0 auto;
  padding-bottom: 40px;
  width: 80%;
}

.news-inner2 {
  margin: 0 auto;
  padding-bottom: 20px;
  width: 90%;
}

.news-list {
  display: flex;
  align-items: start;
  justify-content: left;

  margin-bottom: 20px;
}

.news-list:hover {
  opacity: 0.7;
}

.news-list:last-of-type {
  padding-bottom: 0;
}

.news-list__date {
  padding-right: 30px;
  line-height: 2;
}

.news-list__title {
  line-height: 2;
}

/* access */
.access-wrapper {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: var(--color01);
}

.access-inner {
  margin: 0 auto;
  width: 80%;
}

.access__img {
  padding-bottom: 24px;
}

.access__info01,
.access__info02 {
  padding-bottom: 12px;
  line-height: 2;
}

.access__info03 {
  padding-bottom: 24px;
  line-height: 2;
}

.access__map {
  height: 200px;
}

.access__map iframe {
  width: 100%;
  height: 100%;
}

/* link button */
.link-btn-area {
  display: block;
  margin: 0 auto;
  width: 300px;
  max-width: 70%;
  height: 60px;
  border-radius: 40px;
  background-color: var(--color03);

  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;

}

.link-btn {
  padding: 0 20px;
  font-size: 1.6rem;
  color: var(--color01);
  transition: transform .8s ease;
}

.button {
  /* スタイル用 */
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px var(--color01);

  position: relative;
}

.button:before {
  position: absolute;
  content: '';
  top: 20px;
  left: 10px;
  width: 20px;
  height: 1px;
  background: var(--color01)
}

.button:after {
  position: absolute;
  content: '';
  top: 15px;
  right: 8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid var(--color01)
}

.link-btn-area:hover {
  
  .button {
    background-color: var(--color01);
  }

  .button:before {
    background-color: var(--color03);
  }

  .button:after {
    border-left: 6px solid var(--color03);
  }

  .link-btn {
    /*
    transform: scale(1.05);
    */
  }
}

/* footer */
#footer {
  margin: 0 auto;
  width: 80%;
  padding: 60px 0 10px 0;
}

.footer-wrapper {
  padding-bottom: 100px;

  display: flex;
  align-items: start;
  justify-content: space-between;
}

.footer__logo {
  width: 140px;
}

.footer-list {
  font-size: 1.2rem;
  text-align: right;
}

.footer-list__link {
  display: block;
  margin-bottom: 16px;
}

.footer-list__link:hover {
  opacity: 0.7;
}

.footer-list__link:last-of-type {
  margin-bottom: 0;
}

.copyright {
  font-size: 0.8rem;
  text-align: center;
}

/* fade in */
.fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: opacity 1s,visibility 1s, transform 1s;
}

.fade-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 1s,visibility 1s, transform 1s;
}

.fade-bottom {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 2s,visibility 2s, transform 2s;
}

.fade-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px);
  transition: opacity 2s,visibility 2s, transform 2s;
}

.fade-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 2s,visibility 2s, transform 2s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}


/* 個別ページ */
.page-top__title {
  margin-top: 50px;
  padding-top: 20px;
}

.page-top__title--main {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color03);
  padding-bottom: 8px;
}

.page-top__title--sub {
  text-align: center;
  color: var(--color04);
}

.page-top__title--sub::after {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background-color: var(--color04);
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 20px;
}

/* パンくずリスト */
.wrapper-breadcrumb {
  margin: 0 auto;
  width: 90%;
  padding-bottom: 40px;

  font-size: 1rem;
  color: var(--color03);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 8px;
}

.breadcrumb li a:hover {
  opacity: 0.7;
}


/* catalog */
.page-catalog-wrapper {
  margin: 0 auto;
  width: 90%;
  padding-bottom: 20px;
}

.page-catalog__img {
  padding-bottom: 30px;
  display: block;
  width: 80%;
  margin: 0 auto;
}

.page-catalog__text {
  line-height: 2;
  padding-bottom: 24px;
}

.page-catalog__hour {
  padding-bottom: 16px;
}

.page-catalog__price {
}

/* news */
.page-news-wrapper {
  margin: 0 auto;
  width: 90%;
  padding-bottom: 20px;
}

.page-news__date {
  font-size: 1.2rem;
  padding-bottom: 8px;
}

.page-news__title {
  font-size: 1.6rem;
  padding-bottom: 24px;
}

.page-news__text {
  line-height: 2;
}

/* スクリーンサイズが640px以下の場合 */
@media screen and (min-width: 480px) {

  html {
    font-size: 72%;
  }

  .middle {
    width: 480px;
    z-index: 100;
    margin: 0 auto;
  }
  
  #header {
    width: 480px;
  }

  /* flow */
  .flow-inner {
    width: 220px;
    height: 220px;
  }
}

@media screen and (min-width: 960px) {
  .reserve-btn-area {
    display: none;
  }

  /* back */
  .back-wrapper {
    width: 1000px;
    display: block;
  }

  .back-left,
  .back-right {
    position: fixed;
    /* スクロール可能にする height: 100%;が必須 */
    height: 100%;
    overflow: auto;
  }
  
  .back-left,
  .back-right {
    width: calc((100% - 480px) / 2 );
  }

  .back-right {
    top: 80px;
    right: 0;

    padding-bottom: 100px;
  }

  #back-header-site {
    margin-left: auto;
    padding-right: 100px;
    width: 300px;
  }

  .reserve-btn-area-pc {
    margin-left: auto;
    display: block;
    width: 300px;
    height: 60px;
    border-radius: 40px 0 0 40px;
    background-color: var(--color03);
  
    padding: 0 10px 0 20px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
  }
  
  .reserve-btn-pc {
    padding: 0 20px;
    font-size: 1.6rem;
    color: var(--color01);
    transition: transform .8s ease;
  }
  
  .button {
    /* スタイル用 */
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px var(--color01);
  
    position: relative;
  }
  
  .button:before {
    position: absolute;
    content: '';
    top: 20px;
    left: 10px;
    width: 20px;
    height: 1px;
    background: var(--color01)
  }
  
  .button:after {
    position: absolute;
    content: '';
    top: 15px;
    right: 8px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 6px solid var(--color01)
  }
  
  .reserve-btn-area-pc:hover {
    
    .button {
      background-color: var(--color01);
    }
  
    .button:before {
      background-color: var(--color03);
    }
  
    .button:after {
      border-left: 6px solid var(--color03);
    }
  
    .reserve-btn-pc {
      /*
      transform: scale(1.05);
      */
    }
  }

  .header__logo--pc {
    display: block;
    width: 240px;
  }

  .header__logo-img {
    width: 100%;
  }

  .back-header-site-list {
    padding-bottom: 60px;
  }

  .back-header-site-list a:hover {
    opacity: 0.7;
  }

  .back-header-site-list:last-of-type {
    padding-bottom: 80px;
  }

  .back-header-site__title--main {
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 8px;
    text-align: right;
    color: var(--color03);
  }
  
  .back-header-site__title--sub {
    text-align: right;
    color: var(--color03);
  }

  #header {
    display: none;
  }

  /* main vis */
  .main-vis {
    margin-top: 0;
  }

  .page-top__title {
    margin-top: 0;
  }
  
  /* 個別ページ */
  .page-top__title {
    padding-top: 60px;
  }

  /* footer */
  .footer-wrapper {
    padding-bottom: 80px;
  }
  
}