@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;
}

/***********sec1 ファーストビュー*/
/*video*/
.top-video {
  width: 100%;
  object-fit: cover;
  height: 100vh;
  filter: contrast(0.5);
}
.video-wrap {
  position: relative;
}
/*top title*/
.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 500px;
}

/*sectionのタイトル*/
.title-area {
  position: relative;
}
.sec-title-en {
  font-size: 10rem;
  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: -90%;
  display: inline-block;
  width: 146px;
  height: 1px;
  background-color: black;
}

/*sec1*/
.sec1 {
  margin-top: 0px;
}

/* .img-stollen {
  width: 20%;
  -moz-box-shadow: 10px 10px 20px -17px rgba(0, 0, 0, 0.8);
-webkit-box-shadow: 10px 10px 20px -17px rgba(0, 0, 0, 0.8);
-ms-box-shadow: 10px 10px 20px -17px rgba(0, 0, 0, 0.8);
box-shadow: 10px 10px 20px -17px rgba(0, 0, 0, 0.8);
}
.stollen {
    position: absolute;
    top: 70%;
    left: 5%;
} */


/*sec2*/
#sec2 {
  margin: 3rem auto 2.5rem;
}
.nav-menu {
  display: flex;
  justify-content: space-evenly;
}
#sec2 a {
  font-family: serif;
}
/* .menu-area {
  margin: 0 auto;
} */
/*sec3*/
.sec3 {
  margin-bottom: 10rem;
}
#sec3 .message-area {
  position: relative;
}
#sec3 .t-message {
  font-size: 3rem;
  color: #393838;
  font-family: monospace, 'Qwitcher Grypen', cursive;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 40%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#sec3 .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-white {
  background: white;
}

/*about*/
.about {
  background: #fafafa;
  padding: 5rem 0;
}
#about .sec-title-en {
  color: white;
}
.about-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 5rem;
}
#about .slide {
  width: 40%;
}
#about .slide-area {
  width: 40%;
  background: white;
}
/*slider*/
.inner-slide {
  position: relative;
  width: 50%;
}

@keyframes slideshow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  38% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  animation: slideshow 24s linear infinite;
}
.slide img:nth-child(2) {
  animation-delay: 8s;
}
.slide img:last-child {
  animation-delay: 16s;
}
#about .message-area {
  background-color: white;
}
#about .sub-title {
  background: white;
  padding: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2.25rem;
  font-family: serif;
}
.btn-box {
  text-align: center;
  margin: 1rem auto 3rem;
}

/*sec4*/
.sec4 {
  margin-top: 5rem;
}
#sec4 h3 {
  margin: 2rem 0;
  font-size: 1.25rem;
  font-family: serif;
}
#sec4 p {
  font-family: serif;
}
.passion-layout {
  display: flex;
  flex-wrap: wrap;
}
.img-passion {
  width: 45%;
}
.flex-passion {
  width: 30%;
  margin: 160px 2rem 5rem 5rem;
}
#sec4 img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
}
#sec4 .img-small {
  margin-top: 8rem;
  width: 300px;
  object-fit: contain;
}
#sec4 .img-small-box {
  position: relative;
  text-align: right;
}
#sec4 .img-small-box::after {
  background-color: rgb(157 237 248 / 20%);
  content: "";
  display: block;
  height: 180%;
  position: absolute;
  right: 280px;
  top: -400px;
  width: 500px;
  z-index: -1;
}
/*パララックス１*/
/* .s-bg {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5rem 0;
}
#s1 .s-text-area {
  width: 100%;
  margin-left: 20%;
}
.s1 {
  position: relative;
  width: 60%;
  left: 10%;
  background: url("../images/3.jpg") no-repeat center center fixed #fcf0f0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#s1 h3 {
  background: white;
  width: max-content;
  font-size: 1.5rem;
  padding: 0.5rem;
  margin: 3rem 0;
  font-family: serif;
}
#s1 p {
  background: white;
  font-size: 1rem;
  padding: 1rem;
  margin: 3rem 0;
  font-family: serif;
}

.s-bg {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5rem 0;
}
#s2 .s-text-area {
  width: 100%;
  margin-left: -30%;
}
.s2 {
  position: relative;
  left: 40%;
  width: 60%;
  background: url("../images/7.jpg") no-repeat center center fixed #fcf0f0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#s2 h3 {
  background: white;
  width: max-content;
  font-size: 1.5rem;
  padding: 0.5rem;
  margin: 3rem 0;
  font-family: serif;
}
#s2 p {
  background: white;
  font-size: 1rem;
  padding: 1rem;
  margin: 3rem 0;
  font-family: serif;
}

.s-bg {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5rem 0;
}
#s3 .s-text-area {
  width: 100%;
  margin-left: 20%;
}
.s3 {
  position: relative;
  width: 60%;
  left: 10%;
  background: url("../images/8.jpg") no-repeat center center fixed #fcf0f0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#s3 h3 {
  background: white;
  width: max-content;
  font-size: 1.5rem;
  padding: 0.5rem;
  margin: 3rem 0;
  font-family: serif;
}
#s3 p {
  background: white;
  font-size: 1rem;
  padding: 1rem;
  margin: 3rem 0;
  font-family: serif;
} */

/*sec5*/
#sec5 .layout {
  width: 80%;
  margin: 0 auto;
}
.flex-inner {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}
#sec5 img {
  width: 100%;
}
.img-box {
  width: 40%;
  position: relative;
}
.img-box::after {
  background-color: #fafafa;
  content: "";
  display: block;
  height: 300px;
  position: absolute;
  right: -300px;
  top: 100px;
  width: 450px;
  z-index: -1;
}
#sec5 .text-area {
  width: 50%;
  margin: 2rem;
  display: flex;
  flex-direction: column;
}
#sec5 h2 {
  writing-mode: vertical-rl;
  font-size: 1.25rem;
  font-family: serif;
  margin: 0 auto 3rem;
  position: relative;
}
#sec5 h2:before {
  background-color: rgb(157 237 248 / 33%);
  content: "";
  display: block;
  height: 300px;
  position: absolute;
  right: -108px;
  top: 54px;
  width: 3px;
  z-index: -1;
}
#sec5 p {
  font-family: serif;
}
/*2nd*/
.flex-inner-middle {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8rem;
  flex-direction: row-reverse;
}
#sec5 img {
  width: 100%;
}
.img-box {
  width: 40%;
  position: relative;
}
.img-box-tate {
  width: 40%;
}
#second .img-box::before {
  background-color: #fafafa;
  content: "";
  display: block;
  height: 300px;
  position: absolute;
  right: 150px;
  top: 100px;
  width: 450px;
  z-index: -1;
}
#second .img-box::after {
  display: none;
}
#second h2::after {
  display: none;
}

#sec5 .text-area {
  width: 50%;
  margin: 2rem;
  display: flex;
  flex-direction: column;
}
#sec5 h2 {
  writing-mode: vertical-rl;
  font-size: 1.25rem;
  font-family: serif;
  margin: 0 auto 3rem;
}

/*sec6*/
#sec6 .layout {
  width: 90%;
  margin: 0 auto;
}
#sec6 .sec-title-jp::before {
  left: -60%;
}
.flex-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}
#sec6 .product-subtitle {
  text-align: center;
  margin: 1rem 0 3rem;
}
#sec6 h2 {
  font-size: 1.5rem;
  font-family: serif;
  font-weight: 100;
}
#sec6 .subtitle-ja::after {
  content: "";
}
#sec6 item {
  width: 300px;
  margin: 2rem 2rem 4rem;
}
#sec6 h3 {
  margin: 1rem 0;
  font-size: 1.25rem;
  font-family: serif;
}
#sec6 p {
  font-size: 0.85rem;
  font-family: serif;
}





/*media*/
#media section {
  padding: 5rem 0 0;
}
.media {
  background: #fafafa;
  padding: 5rem 0 0;
}
#media .sec-title-en {
  color: white;
}
#media img {
  width: 70%;
  min-width: 280px;
}
.media-container {
  width: 70%;
  margin: 0 auto;
}
#media .banner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.banner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 5rem;
}
.banner-box {
  width: 50%;
}
.media-text-area {
  width: 50%;
}
#media h3 {
  font-size: 1.25rem;
  font-family: serif;
  margin: 1rem 0 0 2rem;
}
#media p {
  width: 90%;
  font-family: serif;
  margin: 0 2rem;
}
/*Access*/
/* .map {
  height: 60vh;
  margin-top: 10rem;
}
.google-maps {
  position: relative;
  width: 100%;
  height: 0;
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  opacity: 0.7;
} */
/*shop*/
.layout-shop {
  width: 70%;
  margin: 0 auto;
}
.shop-info-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.info-left {
  width: 50%;
}
iframe {
  width: 90%;
  height: 300px;
}
.info-right {
  width: 50%;
}
#shop-info h3 {
  font-size: 1.25rem;
  font-family: serif;
  margin: 2rem 0;
}
#shop-info li {
  font-size: 1rem;
  font-family: serif;
}
.shop-info {
  padding-bottom: 5rem 
}

/*Instagram*/
.instagram {
  width: 50%;
  margin: 0 auto;
}


/*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-right {
  margin-top: 3rem;
}
#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;
}
.br_pc {
  display: block;
}

/*告知エリア*/
.announcement-area {
      position: absolute;
    bottom: 5%;
    left: 5%;
}
.announcement-text {
  text-align: center;
    background: white;
    padding: 0.5rem 1rem;
}
.announcement-text:hover {
  background-color: rgb(157 237 248 / 33%);
  color: #fafafa;
  transition-duration: .5s;
}

/***********************************************************************
スマホ対応
**********************************************************************/

@media all and (max-width: 768px) {
  .br_sp {
    display: block;
  }
  .br_pc {
    display: none;
  }
  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;
  }
  .side-post {
    width: 20%;
    position: relative;
    left: 70%;
    top: 75%;  }
  /*ここまではみ出しをなくす*/

  p {
    font-size: 15px;
    line-height: 1.7 !important;
  }
  /*sec1*/
  .top-video {
    height: 60vh;
  }
  .logo-center {
    position: absolute;
    top: 30%;
    margin-right: 0;
    width: 80%;
  }
  .sec2 {
    display: none;
  }
  /*sec3*/
  #sec3 section {
    margin-top: 2rem;
  }
  #sec3 .t-message {
    font-size: 1.5rem;
    font-family: serif;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    position: inherit;
    top: 0%;
    left: 0%;
    transform: none;
    padding: 1rem 0;
  }
  #sec3 .img-message {
    width: 100%;
    margin: 1rem auto;
  }
  #sec3 .p-message {
    width: 90%;
    padding: 1rem;
    transform: translate(-50%, -10%);
  }
  /*about*/
  #about .inner-slide {
    width: 80%;
    margin: 0.5rem;
  }
  .about {
    padding: 10rem 0 5rem;
  }
  .slide {
    position: initial;
    height: 35vh;
  }
  #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;
  }
  /*sec4*/
  #sec4 .layout {
    margin-top: 5rem;
  }
  .passion-layout {
    justify-content: center;
  }
  .img-passion {
    width: 90%;
  }
  .flex-passion {
    width: 90%;
    margin: 0 auto;
  }
  #sec4 .img-small {
    margin-top: 4rem;
  }

  .sec-title-jp::before{
    left: -80%;
  }
  /*sec5*/
  #sec5 .flex-inner {
    margin-top: 5rem;
    margin-bottom: 3rem;
  }
  #sec5 .flex-inner-middle {
    margin-bottom: 3rem;
  }
  #sec5 h2 {
    writing-mode: horizontal-tb;
    margin: 0 0 1rem;
    font-size: 1.125rem;
  }
  #sec5 .img-box {
    width: 100%;
  }
  #sec5 .text-area {
    width: 100%;
    margin: 3rem 0;
  }
  #sec5 h2:before {
    right: 180px;
    top: -70px;
  }
  .img-box-tate {
      width: 100%;
  }
  /*sec6*/
  #sec6 item {
    width: 100%;
    margin: 2rem 1rem 4rem;
  }
  #sec6 h2 {
    margin-top: 3rem;
  }
  /*media*/
  .media-container {
    width: 90%;
    margin: 5rem auto;
  }
  .banner {
    flex-direction: column;
  }
  .media-text-area {
    width: 100%;
  }
  .banner-box {
    width: 100%;
  }
  #media h3 {
    margin: 1rem auto;
  }
  #media p {
    width: 100%;
    font-family: serif;
    margin: 0 auto;
  }

  #media img {
    width: 100%;
    min-width: 280px;
}

  /*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;
    width: 90%;
  }
  #sec6 .sec-title-jp::before {
    left: -55%;
  }
.instagram {
  color: turquoise;
}

/*告知エリア*/
.announcement-area {
  position: inherit;
}
.announcement-text {
    text-align: center;
    background: rgb(46 161 177);
    bottom: 5%;
    color: white;
    left: 5%;
    padding: 0.5rem 1rem;
    width: 90%;
    margin: 0 auto;
    font-size: 0.85rem;
}


  /*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%;
  }

}
