@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #ebeef0;
  color: #191b28;
  /* RGB */
  font-family: fot-tsukumin-pr6n, YuMincho, 游明朝, "EB Garamond", "Times New Roman", Hiragino Mincho ProN, HGS明朝B, "ＭＳ Ｐ明朝", sans-serif;
  font-weight: 600;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  letter-spacing: 0.1em;
}

section h2 {
  font-size: 2.4rem;
}

a:hover {
  opacity: 0.5;
}

.none {
  display: none;
}

/* --------------- header --------------- */

.header {
  position: absolute;
  top: 0;
  padding: 40px 20px;
  z-index: 70;
}

.header a {
  text-decoration: none;
  color: #191b28;
  /* RGB */
}

.header h1 {
  font-family: "EB Garamond", serif;
}

@media(min-width:768px) {
  .header {
    padding: 40px 50px;
  }
}

@media(min-width:1040px) {
  .header {
    padding: 80px 100px;
  }

  .header h1 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}

/* --------------- hambuger menu & navigation --------------- */

#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eceff0;
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  top: calc(50% - 50px);
  /*50%から円の半径を引いた値*/
  left: calc(50% - 50px);
  /*50%から円の半径を引いた値*/
  transition: all .6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

#g-nav ul {
  visibility: hidden;
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 100%;
  margin: 0 20px;
  align-items: center;
  justify-content: center;
}

#g-nav .header__logoarea {
  width: 50%;
}

#g-nav .header__logo {
  text-align: right;
}

#g-nav .header__logoarea img {
  width: 130px;
  padding-right: 30px;
}

#g-nav .header__linkarea {
  width: 50%;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  visibility: visible;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media(min-width:768px) {
  #g-nav .header__logoarea img {
    width: 150px;
    padding-right: 30px;
  }

  #g-nav .header__linkarea {
    padding-left: 30px;
  }
}

/* --------------- navigation list layout --------------- */

#g-nav li {
  text-align: left;
  list-style: none;
  font-family: "EB Garamond", serif;
}

#g-nav li a {
  color: #191b28;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/* --------------- hamburger menu button --------------- */

.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  /* border-radius: 5px; */
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  background: #c2a475;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
  width: 35%;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
  width: 20%;
}

@media(min-width:768px) {
  .openbtn {
    right: 50px;
  }
}

@media(min-width:1040px) {
  .openbtn {
    top: 75px;
    /* right:100px; */
    width: 100px;
    height: 100px;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 28px;
  }

  .openbtn span:nth-of-type(3) {
    top: 41px;
  }
}

/* --------------- close button --------------- */

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/* --------------- footer --------------- */

.footer {
  background-color: #070302;
  padding-bottom: 30px;
  /* overflow:visible; */
}

.footer__top {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ebeef0;
  position: relative;
}

.top_arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #ebeef0;
  border-right: 3px solid #ebeef0;
  transform: translateY(20%) rotate(-45deg);
  position: absolute;
  top: 40%;
  left: 38%;
}

.footer__container img {
  width: 150px;
  padding: 30px 0 20px 0;
}

.footer__container {
  color: #ebeef0;
}

.footer__open-time {
  margin-top: 20px;
  font-size: 1.2rem;
}

.footer p {
  font-size: 1.2rem;
}

.footer__tel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .SNS_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 20px 0; */
}

.X_logo img {
  width: 20px;
}

.Insta_logo {
  margin-left: 20px;
}

.Insta_logo img {
  width: 20px;
}

.footer small {
  color: #ebeef0;
  font-size: 0.9rem;
}

.footer__nav {
  display: none;
}

@media(min-width:960px) {

  /* .footer {
    margin-bottom: 40px;
  } */
  .footer_wrapper {
    display: flex;
    width: 100%;
    flex-flow: row-reverse;
  }

  .footer__link {
    width: 20%;
    display: block;
  }

  .footer__toplink {
    text-align: right;
  }

  .footer__top {
    width: 70px;
    height: 70px;
    margin-right: 50px;
  }

  .top_arrow {
    height: 15px;
    width: 15px;
    transform: translateY(20%) rotate(-45deg);
    position: absolute;
    top: 40%;
    left: 35%;
  }

  .footer__container {
    width: 80%;
    display: flex;
  }

  .footer__logo {
    width: 30%;
    margin-left: 50px;
  }

  /* .footer__logo img{
    width: 150px;
  } */
  .footer__info {
    width: 70%;
    margin-top: 65px;
  }

  .footer__info-01,
  .footer__info-03 {
    display: flex;
  }

  .footer__info-01 h1 {
    font-size: 2.0rem;
  }

  .footer__info-01 .footer__open-time {
    margin-top: 0;
    margin-left: 25px;
  }

  .footer__info-02 {
    margin: 5px 0 0 0;
    text-align: left;
  }

  .footer__info-02 .footer__tel {
    justify-content: left;
  }

  .footer__info-03 {
    align-items: center;
  }

  .footer .SNS_logo {
    margin: 0;
    justify-content: left;
    width: 10%;
  }

  .footer__info-03 .copy-write {
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
    padding-left: 30px;
  }
}

@media(min-width:1340px) {
  .footer__link {
    width: 40%;
  }

  .footer__nav {
    display: inline-block;
    margin-top: 40px;
    width: 100%;
    text-align: right;
  }

  .footer__nav nav {
    font-size: 1.4rem;
    margin-right: 50px;
  }

  .footer__nav nav a {
    text-decoration: none;
    color: #191b28;
    padding: 0 6px;
  }

  .footer__nav nav a:first-child {
    padding-left: 0;
  }

  .footer__nav nav a:last-child {
    padding-right: 0;
  }

  .footer__container {
    width: 60%;
  }

  .footer__info {
    margin-top: 80px;
  }

  .footer__info-02 {
    display: flex;
  }

  .footer__info-01 h1 {
    font-size: 2.4rem;
  }

  .footer__info-02 {
    margin: 15px 0 0 0;
  }

  .footer__info-02 .footer__tel {
    padding-left: 20px;
  }

  .footer__info-03 .copy-write {
    padding-left: 180px;
  }
}