@charset "utf-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: #444141;
}
img {
  max-width: 100%;
}
p {
  font-size: 16px;
  line-height: 2 !important;
}

section {
  margin: 5rem 0;
}
/*
----------------------
Start ハンバーガーメニュー
----------------------
*/
/* Start ヘッダー */
.header {
  width: 80px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background-color: #fff0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  z-index: 10;
}
.headerNavOuter {
  margin-bottom: 0;
  position: relative;
}
.siteIcon {
  margin: 0;
}
.siteIcon img {
  width: 250px;
  margin-top: 2rem;
}
.siteIcon-side img {
  width: 250px;
  margin-top: 250%;
  /* transform: rotate(90deg); */
}

.side-post img {
  width: 250px;
  position: absolute;
  bottom: 2%;
  padding: 3px
  /* transform: rotate(90deg); */
}

.shop-name {
  width: 30px;
  position: absolute;
  top: 45%;
  right: 30%;
  writing-mode: vertical-rl;
}
.post-header {
  width: 100%;
}
/* End ヘッダー */

/* Start ナビゲーション */
.headerNav {
  position: fixed;
  right: -250px; /*右側に隠しておきます*/
  top: 0;
  width: 250px;
  height: 100vh;
  padding-top: 20px;
  background-color: rgba(157, 237, 248, 0.8);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 20;
  overflow-y: auto;
}
.navList {
  margin: 0;
  padding: 0;
  text-align: center;
  display: block;
}
.navItem {
  padding: 1rem 1rem 0;
}
.navItem a {
  display: block;
  border-bottom: 1px solid #eee;
  color: #707070;
  padding: 1rem 0 1rem;
  width: 100%;
  margin: 0 auto;
}
/* End ナビゲーション */

/* Start ハンバーガーボタン(三本線の実装) */
.hamburger_btn {
  position: absolute; /*.headerNavOuterを基準にして、絶対配置*/
  right: -20px;
  top: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 30;
}
.hamburger_line {
  position: absolute; /*.headerNavOuterを基準にして、絶対配置*/
  left: 8px;
  width: 25px;
  height: 1px;
  background-color: #111;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.hamburger_line_1 {
  top: 20px;
}
.hamburger_line_2 {
  top: 26px;
}
.hamburger_line_3 {
  top: 32px;
}
/* End ハンバーガーボタン(三本線の実装) */

/*ハンバーガーメニュをクリックした後に現れる半透明の背景*/
.black-bg {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #000;
  opacity: 0;
  visibility: hidden; /* 非表示にしておきます */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}

/* Start ハンバーガーボタンをクリックした際の動き */
/* ナビゲーションが現れる */
.nav-open .headerNav {
  right: 0;
}

/* 半透明の背景を表示させます。 */
.nav-open .black-bg {
  opacity: 0.8;
  visibility: visible;
}

/* 三本線のハンバーガーを、バッテンにします */
.nav-open .hamburger_line_1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 25px;
}
.nav-open .hamburger_line_2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger_line_3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
}
/* End ハンバーガーボタンをクリックした際の動き */

/*menuのホバーアニメーション*/
.menu-item {
  padding-bottom: 5px;
  position: relative;
}
.menu-item::before {
  background: #383838;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.menu-item:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*button*/
.wrap {
  margin: 2rem auto 5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.btn {
  width: 140px;
  height: 45px;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: white;
  background-color: #727272;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.btn:hover {
  background-color: white;
  box-shadow: 0px 15px 20px #727272;
  color: #727272;
  transform: translateY(-7px);
}

/* アニメーション前 */
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  transition: 0.6s;
  transform: translateY(0);
  opacity: 1;
}

/* アニメーション前  左から右へ画像がスライド*/
.u-fade-type-slide {
  transform: translateX(-100px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-slide.is-active {
  transition: 1s;
  transform: translateX(0);
  opacity: 1;
}

/* アニメーション前  右から左へスライド*/
.u-fade-type-slide-l {
  transform: translateX(100px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-slide-l.is-active {
  transition: 0.6s;
  transform: translateX(0);
  opacity: 1;
}
/*page-top*/
#page-top h2 {
  font-size: 3rem;
  text-align: center;
  font-family: serif;
}

/*sectionのタイトル*/
.title-area {
  position: relative;
}
.sec-title-en {
  font-size: 6rem;
  font-family: "Cormorant", serif;
  color: #fafafa;
}
.sec-title-jp {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 10%;
  font-family: serif;
}
.sec-title-jp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100%;
  display: inline-block;
  width: 200px;
  height: 1px;
  background-color: black;
}

/*about*/
.about {
  background: #fafafa;
  padding: 5rem 0;
  margin: 0;
}
#about .sec-title-en {
  color: white;
}
#about .about-description-text {
  width: 50%;
  margin: 0 auto;
}
.about-pic {
  width: 20%;
  margin: 3rem auto;
}
.p-introduce {
  font-family: serif;
}

/*passion*/
/* .passion {
  width: 90%;
  margin: 5rem auto;
}
.passion-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 5rem auto;
}
.img-left {
  width: 40%;
}
.passion-right {
  width: 40%;
}
.passion-flex-swap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
}
.sub-title {
  margin: 2rem auto;
} */

/*sec2*/
.reason-area {
  margin: 5rem 0;
}
#sec2 .t-message {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 5rem;
  color: #393838;
  font-family: serif;
  width: 100%;
  z-index: 1;
  position: relative;
}
h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 2px;
  content: '';
  /* border-radius: 3px; */
  background: #000;
}
#sec2 .vision-h3 {
  font-size: 1.5rem;
  color: #393838;
  font-family: serif;
  width: 50%;
  z-index: 1;
  margin: 0 auto 2rem;
}
#sec2 .t-message2 {
  font-size: 3rem;
  color: #393838;
  font-family: serif;
  width: 50%;
  z-index: 1;
}
#sec2 .vision-p2 {
  font-size: 1rem;
  color: #393838;
  font-family: serif;
  width: 50%;
  z-index: 1;
  margin: 0 auto 10rem;
}
#sec2 .t-message3 {
  font-size: 1rem;
  text-align: center;
  margin: 5rem auto 1rem;
  color: #393838;
  font-family: serif;
  width: 70%;
  z-index: 1;
}

#sec2 .img-message {
  width: 70%;
  margin: 0 30%;
}
.description-area {
  position: relative;
}
.p-message {
  font-family: serif;
  width: 50%;
  background: white;
  padding: 3rem;
  position: absolute;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -30%);
  z-index: 1;
  letter-spacing: 0.05em;
  line-height: 2.25rem;
  box-shadow: 5px 5px 15px -5px #777777;
}
.bg-about {
  position: relative;
  width: 100%;
  background: url(../images/5.jpg) no-repeat center center fixed #fcf0f0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.bg-adjust {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 1rem;
}
.sec2 {
  margin: 0;
}

/*footer*/
.bg-footer {
  position: relative;
  width: 100%;
  background: url(../images/30.jpg) no-repeat center center fixed #fcf0f0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.footer-bg {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 1rem;
}
.middle {
  width: 80%;
  margin: 0 auto;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
.footer-logo {
  width: 270px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}
#footer a {
  margin: 0 25px;
}
.note-icon {
  width: 50px;
}
#footer small {
  font-size: 0.75rem;
}
.footer-copyright {
  text-align: center;
  margin: 5rem auto 0;
}
.br_sp {
  display: none;
}
/***********************************************************************
スマホ対応
**********************************************************************/

@media all and (max-width: 768px) {
  .br_sp {
    display: block;
  }
  iframe {
    width: 100%;
    height: 300px;
  }
  .img-box::after {
    width: 0%;
  }
  .sec-title-en {
    font-size: 3rem;
  }
  .header {
    background-color: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    width: max-content;
  }
  .siteIcon-side {
    display: none;
  }
  /*ここまではみ出しをなくす*/

  p {
    font-size: 15px;
    line-height: 1.7 !important;
  }
  /*about*/
  #about .inner-slide {
    width: 300px;
    margin: 0.5rem;
  }
  .about {
    padding: 10rem 0 5rem;
  }
  .slide {
    position: initial;
    height: 70vh;
  }
  #about .slide-area {
    position: initial;
    width: 100%;
  }
  #about .btn {
    margin-bottom: 2rem;
  }
  #about .about-flex {
    margin: 1rem;
  }
  #about .sub-title {
    text-align: center;
  }
  #about .btn-box {
    margin: 1rem auto 1rem;
  }
  #about .about-description-text {
    width: 90%;
  }
  .about-pic {
    width: 50%;
  }

  /*passion*/
  /* .about-pic,
  .about-description-text {
    width: 60%;
  }
  .passion-flex,
  .passion-flex-swap {
    display: block;
  }
  .img-left,
  .passion-right {
    width: 100%;
  } */
  /*shop-info*/
  /* .layout-shop {
    width: 90%;
    margin: 0 auto;
  }
  .shop-info-flex {
    flex-direction: column;
  }
  .info-left {
    width: 100%;
    margin: 5rem auto 1rem;
  }
  .info-right {
    padding-left: 2rem;
  }
  #sec6 .sec-title-jp::before {
    left: -55%;
  } */

  /*#sec2*/
#sec2 .t-message {
  font-size: 1.5rem;
}
#sec2 .vision-h3 {
  font-size: 1.25rem;
}
#sec2 .vision-p2 {
  width: 90%;
}
#sec2 .vision-h3 {
  width: 90%;
}


  /*footer*/
  .footer-flex {
    flex-direction: column;
  }
  .footer-logo {
    width: 70%;
    margin: 0 auto;
  }
  #footer a {
    margin: 1.5rem auto;
  }
  .footer-middle {
    margin: 0 auto;
  }
  .footer-menu {
    margin: 2rem auto;
  }
  .footer-right {
    margin: 0 auto;
  }
  .icon,
  .note-icon {
    margin: 0 1.5rem;
  }
  .middle {
    width: 100%;
  }
  .footer-copyright {
    text-align: center;
    margin: 2rem auto 0;
  }
  
}
