@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  width: 100%;
  vertical-align: bottom;
}
html {
  scroll-behavior: smooth;
}

/* header */

::before,
::after {
  box-sizing: inherit;
}
button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 0px;
  right: 16px;
  /* 最前面に */
  z-index: 9999;
  /* ボタンの大きさ  */
  width: 48px;
  height: 48px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  /* バーガー線の位置基準として設定 */
  position: relative;
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #b4b1a0;
  transition: 0.2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #b4b1a0;
  transition: 0.5s;
}
.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px);
}
.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}
.btn-line.open::before,
.btn-line.open::after {
  content: "";
  background-color: #333;
  transition: 0.2s;
}
.btn-line.open::before {
  /* 上の線を傾ける */
  transform: rotate(45deg);
}
.btn-line.open::after {
  /* 上の線を傾ける */
  transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu a {
  text-decoration: none;
  color: white;
  height: 25%;
}
.menu {
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  position: fixed;
  /* メニューの位置マイナス指定で画面外に */
  right: -70%;
  width: 70%;
  height: 100vh;
  background-color: #595546d6;
  color: #efefef;
  transition: 0.3s;
  z-index: 999;
}
.menu-list {
  /* メニューテキスト位置をリスト内中心に */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.menu-list:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
  /* position: absolute; */
  right: 0;
  top: 0;
}
/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 700px) {
  .btn {
    display: none;
  }
  .menu {
    /* メニューを横に */
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
  }
  .menu a {
    width: 25%;
    padding: 50px 0;
  }
}
/**************** ここまで、メニューのスタイリング ****************/
/* ヒーロー画像 */
.slick__bg {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}
.slick__bg01 {
  background-image: url(../img/hero02.jpg);
}
.slick__bg02 {
  background-image: url(../img/27710566_s.jpg);
}
.slick__bg03 {
  background-image: url(../img/hero01.jpg);
}
.slick__bg04 {
  background-image: url(../img/flower-with-a-blue-background.jpg);
}
header {
  position: relative;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 900;
  width: 40vw;
}
.logo img {
  filter: saturate(400%);
}
h1 {
  font-size: 2.5em;
  text-shadow: 10px 10px 5px darkgray;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-family: "Cinzel", serif;
}
@media screen and (min-width: 700px) {
  .logo {
    width: 25%;
  }
  h1 {
    font-size: 4em;
  }
}

/**************** ここから、メインのスタイリング ****************/
h2 {
  text-align: center;
  color: rgb(62, 118, 158);
}
section {
  margin: 150px 0 50px;
}
/* shop */
.shop {
  background-image: url(../img/drawn-flower01.jpg);
  background-repeat: no-repeat;
  object-fit: cover;
  height: 100vh;
  position: relative;
}
.shop p {
  width: 70%;
  padding: 50px 20px;
  font-size: 0.8em;
  line-height: 2em;

  background-color: #b4b1a0e5;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 700px) {
  .shop p {
    width: 70%;
    padding: 100px 20px;
    font-size: 1em;
    background-color: #b4b1a0e5;
    color: #fff;
    position: absolute;
    top: 60%;
    right: 20%;
  }
}

/* ギャラリー */
/* remodal */
.gbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 2px solid #b4b1a0;
  color: #b4b1a0;
  width: 300px;
  height: 80px;
  box-sizing: border-box;
  text-decoration: none;
  transition-duration: 0.3s;
  margin: 30px auto;
  background-image: url(../img/golden-flowers.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.gbtn:hover {
  background: #b4b1a0;
  color: #ffffff;
}
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.remodal {
  position: relative;
  padding: 25px;
}
.remodal img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.remodal-cancel {
  color: #fff;
  background: #000000;
  width: 100%;
  margin-top: 25px;
}
.remodal-cancel:hover {
  background: #333;
}
@media screen and (min-width: 700px) {
  .gallery {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    margin: 0 auto;
  }
}
/**************** ここまで、remodalのスタイリング ****************/
/* ギャラリー内のslick */
.test-slick {
  width: 100%;
  max-width: 500px;
  margin: 15px auto;
  position: relative;
  /* @include breakpoint(500px) {
    margin: 5% auto;
  } */
}

.test-slick__item {
  margin-right: 5px;
  margin-left: 5px;
}

.test-slick__item img {
  height: 350px;
}

.test-slick button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/* オーダー */
.order {
  height: 100vh;
  background-image: url(../img/背景白.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.order_box {
  position: relative;
  border: solid 2px #b4b1a0;
  margin: 30px auto;
  padding: 30px;
  width: 80%;
  background-color: #ffffffd3;
}
.order dt {
  font-size: 1.5em;
  position: absolute;
  top: -20px;
  background-color: #b4b1a0;
  color: #fff;
  padding: 5px;
}
.order_box dd {
  color: #595546;
}

@media screen and (min-width: 700px) {
  .order {
    background-size: 80%;
  }
}

/* フォーム */
form {
  color: #595546;
}
form dt {
  font-weight: bold;
  margin-left: 50px;
}
form dd {
  margin-bottom: 20px;
  margin-left: 50px;
}
label {
  margin-right: 1em;
}
input[type="text"] {
  width: 80%;
  height: 30px;
}
input[type="date"] {
  width: 80%;
  height: 30px;
}
input[type="time"] {
  width: 80%;
  height: 30px;
}
input[type="number"] {
  width: 80%;
  height: 30px;
}
input[type="email"] {
  width: 80%;
  height: 30px;
}
input[type="tel"] {
  width: 80%;
  height: 30px;
}
input[type="submit"] {
  padding: 10px 100px;
  background: #b4b1a0;
  color: #fff;
  border: 2px solid #b4b1a0;
  font-size: 1em;
  cursor: pointer;
  transition: 0.3s;
}
input[type="submit"]:hover {
  opacity: 0.8;
}
p.submit {
  text-align: center;
}
input {
  padding: 5px;
}
select {
  width: 50%;
  height: 30px;
}
textarea {
  width: 80%;
  font-size: 1em;
  padding: 5px;
}
form dl:first-child {
  border-bottom: solid 2px #b4b1a0;
  margin-bottom: 40px;
}

@media screen and (min-width: 700px) {
  .form_container {
    width: 70%;
    margin: 0 auto;
  }
  form dt {
    width: 30%;
  }
  .form_box dd {
    width: 70%;
  }
  .form_box {
    display: flex;
    gap: 20px;
  }
}
/* map */
.map {
  background-color: #b4b1a0;
  margin-top: 100px;
}
iframe {
  width: 100%;
  height: 40vh;
  filter: grayscale(60%);
}
table {
  padding: 40px;
  color: #fff;
  font-size: 0.8em;
}
th {
  padding-right: 30px;
}
tr {
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .map {
    display: flex;
    flex-direction: row-reverse;
  }
  iframe {
    width: 60%;
    margin: 30px;
  }
  table {
    font-size: 1em;
  }
}

/* footer */
footer {
  background-color: #b4b1a0;
  padding: 30px;
}
footer p {
  color: #fff;
  text-align: center;
}
