@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  background-color: #ece1da;
  color: #333;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3.2rem;
  text-align: center;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
/*ヘッダー*/
/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態では画面の外に隠れている */
  width: 100%;
  height: 100%;
  background-color: #746a51;
  color: #fff;
  transition: right 0.3s ease; /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
}
.menu_contents {
  position: relative;
  top: 30%;
}
.menu_insta_link {
  display: block;
  margin: 40px auto;
}
.menu_insta_link img {
  width: 4.8rem;
  height: auto;
  margin: auto;
}
.menu_inquiry {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: solid 1px #fff;
  width: 240px;
  line-height: 3rem;
  padding: 10px 30px;
  margin: 40px auto;
}

/* メニューが開いているとき */
.menu.open {
  right: 0;
}

/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #efefef;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
}

.menu li {
  padding: 20px 0;
  border-bottom: 1px solid #fff;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  display: block;
}

/*フッター*/
.footer_bg {
  background-image: url("../images/ennaifukei_shinryoku.jpg");
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: overlay;
  width: 100%;
  height: 600px;
  background-size: cover;
}
.footer_contents {
  position: relative;
  top: 30%;
}
.footer_contents h1 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
}
.fotter_inquiry {
  display: block;
  color: #333;
  text-align: center;
  text-decoration: none;
  border: solid 1px #333;
  width: 240px;
  line-height: 3rem;
  padding: 10px 30px;
  margin: 40px auto;
}
.insta_link {
  display: block;
  margin-bottom: 20px;
}
.insta_link img {
  width: 4.8rem;
  height: auto;
  margin: auto;
}
.footer__copyright {
  font-size: 1.2rem;
}
