@charset "UTF-8";
/* CSS Document */
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  background-color: #f4f4ec; /* RGB */
  color: #5e584e;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  text-align: center;
  width: 100%;
}
section {
  margin-bottom: 150px;
}
img {
	vertical-align:top;
  max-width: 100%;
  height: auto;
}
a {
  text-align: left;
  text-decoration: none;
  color: #5e584e;
  font-size: 1.6rem;
}
p {
  font-size: 1.6rem;
  text-align: left;
}
h1 {
  font-size: clamp(3.8rem, 3.73rem + 0.188vw, 4rem);
  text-align: center;
  font-weight: 700;
  color: #3a6f3b;
}
h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  color: #fb9e24;
}
h3 {
  font-size: 2rem;
  text-align: center;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}
.none {
  display: none;
}
ul {
  list-style: none;
}

/* header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: #f4f4ec;
}
.coupon {
  padding: 10px 0;
  background-color: #5e584e;
  margin-bottom: 30px;
}
.coupon a {
  color: #f4f4ec;
}
.h-ln {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 6.66666%;
  margin-bottom: 30px;
}
.h-logo {
  z-index: 2;
}
.hn-list {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.hn-list a {
  font-size: 1.4rem;
}
.hum-wrapper {
  display: none;
}
.h-icon {
  display: flex;
  gap: 50px;
  width: 113px;
}

/* main */
main {
  padding-top: 140px;
}

/* footer */
footer {
  background-color: #5e584e;
  position: relative;
}
footer a,footer p {
  font-size: 1.4rem;
}
.st-btn {
  color: #f4f4ec;
  position: absolute;
  right: 7%;
  bottom: 30px;
  transition: .3s;
}
.st-btn::after{
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 0 7px 10px 7px;
  border-color: transparent transparent #f4f4ec;
  display: inline-block;
  width: 0;
  height: 0;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 55%;
  right: -22px;
  transform: translateY(-50%); /* translateYのみ */
}
.st-btn:hover {
  transform: translateY(-3px);
  opacity: 1;
}
.f-con {
  display: flex;
  padding: 30px 0 10px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.f-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.f-nav a {
  color: #f4f4ec;
}
.f-c {
  display: flex;
  justify-content: center;
  color: #f4f4ec;
  margin-top: 40px;
}

/* hover */
.h-logo a:hover, .f-icon:hover,.h-icon a:hover {
  opacity: 1;
}
.hnl-item a:hover, .f-nav li a:hover, .hwnl-item a:hover, .coupon a:hover {
  color: #efbe7d;
  opacity: 1;
}

@media(max-width:1000px) {
      section {
        margin-bottom: 75px;
      }
      /* header */
      .h-nav, .h-icon {
        display: none;
      }
      /* ハンバーガーボタン */
      .openbtn1 {
        position: absolute;
        top: 60px;
        right: 6.66666%;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        background-color: #3a6f3b;
        z-index: 2;
      }
      /*ボタン内側*/
      .openbtn1 span {
        display: inline-block;
        transition: all 0.6s; /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #f4f4ec;
        width: 45%;
      }
      .openbtn1 span:nth-of-type(1) {
        top: 15px;
      }
      .openbtn1 span:nth-of-type(2) {
        top: 23px;
      }
      .openbtn1 span:nth-of-type(3) {
        top: 31px;
      }
      /*activeクラスが付与されると線が回転して×に*/
      .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
      }
      .openbtn1.active span:nth-of-type(2) {
        opacity: 0; /*真ん中の線は透過*/
      }
      .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
      }
      .hum-wrapper {
        display: block;
        visibility: hidden;
        opacity: 0;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        transition: all .5s;
      }
      .hw-nav {
        position: absolute;
        right: 0;
        width: 100%;
        background-color: #f4f4ec;
        z-index: 1;
        padding-top: 150px;
      }
      .hwn-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      .hwnl-item {
        border-bottom: 1px solid #3a6f3b;
        padding: 30px 0;
        width: 100%;
      }
      .hwnl-item01 {
        background-color: #3a6f3b;
        padding: 25px;
        width: 100%;
        text-align: left;
        color: #f4f4ec;
      }
      .hwnl-item a {
        font-size: 2rem;
      }
      .hwnl-item01 li {
        display: flex;
        align-items: baseline;
      }
      .hwnl-item01 li::after {
        transform: rotate(-45deg);
        width: 15px;
        height: 15px;
        margin-left: 10px;
        border-bottom: 4px solid #f4f4ec;
        border-right: 4px solid #f4f4ec;
        border-radius: 0.1em;
        content: '';
        transition: transform .3s;
        }
        .headerOverlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: #000;
          opacity: 0.3;
          display: none;
        }
        /* メニューオープン時 */
        .hum-wrapper.fade {
          visibility: visible;
          opacity: 1;
        }
        .hwn-icon {
          width: 100%;
          display: flex;
          justify-content: center;
          background-color: #3a6f3b;
        }
        .hwn-icon li {
          display: flex;
          align-items: center;
          gap: 10px;
        }
        .hwn-icon a {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          color: #f4f4ec;
          width: 50%;
          padding: 30px 0;
        }
        .hwn-icon a:first-child {
          border-right: 1px solid #f4f4ec;
        }

        /* footer */
        .f-nav li {
          margin-right: 10px;
        }
}