@charset "UTF-8";

/* 全体 */
html {
  font-size: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #393939;
  letter-spacing: 0.1em;
}
body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-image: url(../img/back_01.jpg);
    box-sizing: border-box;
    overflow-x: hidden;
}
a:hover {
  opacity: 0.5;
}
.note {
  font-size: 1.4rem;
  font-weight: 400;
  color: #393939;
}
.margin-top20 {
  margin-top: 20px;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width:480px) {
  html {
    font-size: 9px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* ヘッダー */
header {
    width: 100%;
    height: 80px;
    background-color: #006837;
    position: fixed;
    z-index: 9999;
    opacity: 0.95;
}
.header-wrap {
  width: 100%;
  height: 80px;
  position: relative;
  margin: 0 auto;
  padding: 0 2.5%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
h1 {
    width: auto;
    height: 45px;
    display: inline-block;
}
header p {
  font-size: 1.8rem;
  color: #fff;
  position: absolute;
  right: 15%;
}
@media screen and (max-width:480px) {
  h1 {
    width: 35%;
    height: auto;
  }
  header p {
    right: 25%;
  }
}

/* ハンバーガーライン */
#drawer-nav {
    display: block;
    width: 50px;
    height: 35px;
    position: absolute;
    right: 5%;
  }
  .drawer-line {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 10%;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.5s;
  }
  #line1 {
    top: 0;
  }
  #line2 {
    top: 45%;
  }
  #line3 {
    bottom: 0;
  }
  .in {
    transform: translateX(-100%);
  }
  .line_1 {
    transform: translateY(445%) rotate(-45deg);
  }
  .line_2 {
    opacity: 0;
  }
  .line_3 {
    transform: translateY(-445%) rotate(45deg);
  }

  /* スライドメニュー */
#slider-nav {
    width: 40%;
    height: 100vh;
    position: absolute;
    top: 80px;
    right: -40%;
    background-color: #006837;
    opacity: 0.9;
    color: #fff;
    transition: 0.5s;
    z-index: 9999;
  }
  #slider-nav ul {
    width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
  }
  #slider-nav ul li {
    font-size: 1.8rem;
    line-height: 1.25em;
    margin-bottom: 40px;
  }
  .slider-nav-bnr img {
    width: 70%;
    max-width: 400px;
  }
  @media screen and (max-width:768px) {
    #slider-nav{
      width: 100%;
      height: 100vh;
      right: -100%;
    }
  }

  /* フローティングバナー */
  .flo-bnr {
    position: fixed;
    bottom: 10%;
    right: 0;
    z-index: 9998;
  }
  @media screen and (max-width:768px) {
    .flo-bnr {
      bottom: 5%;
    }
  }
  @media screen and (max-width:480px) {
    .flo-bnr {
      bottom: 0;
    }
  }

  /* ヒーロー */
  #hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  #hero img {
    width: 100%;
    margin-bottom: 80px;
    padding-top: 80px;
  }
  @media screen and (max-width:480px) {
    #hero img {
      margin-bottom: 40px;
    }
  }

  /* リード */
  #lead {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .lead-note {
    width: 100%;
  }
  .lead-ttl {
    width: 55%;
    float: right;
    text-align: right;
    margin-bottom: 40px;
  }
  .lead-ttl img {
    width: 100%;
  }
  .lead-img {
    width: 40%;
    float: left;
  }
.lead-img img {
  width: 100%;
}
  .lead-p {
    width: 55%;
    float: right;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.75em;
    margin-bottom: 40px;
  }
  @media screen and (max-width:768px) {
    #lead {
      padding: 0 5%;
    }
  }
  @media screen and (max-width:480px) {
    .lead-note {
      width: 100%;
      display: flow-root;
      margin: 0 auto;
    }
    .lead-ttl {
      width: 100%;
    }
    .lead-img {
      width: 80%;
      margin: 0 10%;
    }
    .lead-p {
      width: 100%;
    }
  }

/* HOW TO */
.howto {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px auto;
  background-color: #fff;
  border: 5px solid #006837;
  border-radius: 20px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-around;
}
.howto ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
.howto ul li span {
  display: inline-block;
  font-size: 2rem;
  color: #006837;
  font-weight: 700;
  margin-bottom: 1em;
}
.howto ul li {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5em;
}
@media screen and (max-width:480px) {
  .howto {
    display: block;
  }
  .howto ul {
    display: block;
    text-align: center;
  }
  .howto ul li {
    margin-bottom: 20px;
  }
  .howto-equal {
    transform: rotate(90deg);
  }
}

/* お悩み */
.worry {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.worry h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006837;
  margin-bottom: 20px;
}
.worry figure {
  margin-bottom: 40px;
}
.worry ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 80px;
}
.worry ul li {
  width: 170px;
  height: 170px;
  border-radius: 100px;
  background-color: #fff;
  border: 5px solid #006837;
  font-size: 2.5rem;
  font-weight: 500;
  color: #006837;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .worry ul {
    gap: 10px;
  }
}
@media screen and (max-width:480px) {
  .worry ul li {
    width: 150px;
    height: 150px;
  }
}

/* オーダー */
#order {
  width: 100%;
  background: linear-gradient(90deg,rgb(35,128,9),rgb(88,147,18));
  text-align: center;
  padding: 80px;
}
.order-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.order-ttl {
  width: 45%;
  float: left;
  margin-left: -40px;
  margin-bottom: 20px;
}
.order-ttl img {
  width: 100%;
}
.order-img {
  float: right;
  width: 50%;
  margin-bottom: 40px;
}
.order-img img {
  width: 100%;
}
.order-note {
  float: left;
  width: 45%;
  font-size: 1.8rem;
  line-height: 1.75em;
  color: #fff;
  text-align: left;
  margin-bottom: 40px;
}
.order-note span {
  display: inline-block;
  padding-bottom: 20px;
  font-size: 2.5rem;
}
.order-deliver {
  clear: left;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fffeee;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  justify-content: space-around;
  margin-bottom: 40px;
}
.order-deliver li {
  font-size: 2rem;
  font-weight: 700;
  color: #006837;
}
.order-deliver img {
  margin-bottom: 20px;
}
.order-button {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.order-button img {
  width: 70%;
}
@media screen and (max-width:768px) {
  #order {
    padding: 10% 5%;
  }
  .order-ttl {
    width: 50%;
  }
  .order-img {
    width: 45%;
    padding-top: 15%;
  }
  .order-note{
    width: 50%;
  }
  .order-button img {
    width: 100%;
  }
}
@media screen and (max-width:480px) {
  .order-wrap {
    display: flow-root;
  }
  .order-ttl {
    width: 90%;
    margin-left: 0;
  }
  .order-img {
    width: 100%;
    padding-top: 0;
  }
  .order-note{
    width: 100%;
  }
  .order-deliver li {
    margin-bottom: 20px;
  }
  .order-button {
    width: 100%;
  }
}

/* Menu */
#menu {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}
#menu figure {
  margin: 80px 0 40px;
}
#menu h2 {
  width: 400px;
  height: 50px;
  background-color: #006837;
  text-align: center;
  line-height: 50px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  margin: 0 auto 40px auto;
}
#menu h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #006837;
}
.menu-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 80px;
}
.menu-wrap::after {
  content: "";
  display: block;
  width: 300px;
  height: 0;
}
.menu-wrap2::after {
  content: "";
  display: block;
  width: 600px;
  height: 0;
}
.menu-wrap ul {
  width: 300px;
  margin: 0 auto;
}
.menu-name {
  padding: 15px 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #006837;
}
.menu-element {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
  min-height: 4.8rem;
}
.menu-feature span {
  display: inline-block;
  padding: 5px 10px;
  background-color: #fff;
  border: 2px solid #006837;
  font-size: 1.6rem;
  font-weight: 500;
  color: #006837;
  margin: 15px 10px 15px 0;
}
.menu-feature span:last-child {
  margin-right: 0;
}
.menu-price {
  width: 100%;
  font-size: 2.5rem;
  font-weight: 700;
  color: #006837;
  align-items: center;
  text-align: left;
}
.menu-price-1 {
  text-align: center;
}
.menu-price span:nth-child(odd) {
  margin-right: 10px;
}
.menu-price span::after {
  content: "yen";
  font-size: 1.6rem;
  padding-left: 2.5px;
}
.menu-price-s::before {
  content: url(../img/icon_s.svg);
  position: relative;
  top: 8px;
  margin-right: 5px;
}
.menu-price-r::before {
  content: url(../img/icon_regular.svg);
  position: relative;
  top: 8px;
  margin-right: 5px;
}
.menu-price-l::before {
  content: url(../img/icon_large.svg);
  position: relative;
  top: 8px;
  margin-right: 5px;
}
.menu-price-set::before {
  content: url(../img/icon_set.svg);
  position: relative;
  top: 8px;
  margin-right: 5px;
}
.menu-price-single::before {
  content: url(../img/icon_single.svg);
  position: relative;
  top: 8px;
  margin-right: 5px;
}
.menu-price-big::before {
  content: url(../img/icon_big.svg);
  position: relative;
  top: 8px;
  margin-right: 5px;
}
.menu-price-small::before {
  content: url(../img/icon_small.svg);
  position: relative;
  top: 8px;
  margin-right: 5px;
}
.menu-price-one::before {
  content: url(../img/icon_one.svg);
  position: relative;
  top: 8px;
  margin-right: 5px;
}
.menu-img {
  position: relative;
}
.menu-hot::after {
  content: url(../img/icon_hot.svg);
  position: absolute;
  top: 0;
  right: 0;
}
.menu-summer::after {
  content: url(../img/icon_summer.svg);
  position: absolute;
  top: 0;
  right: 0;
}
.menu-winter::after {
  content: url(../img/icon_winter.svg);
  position: absolute;
  top: 0;
  right: 0;
}
.menu-other .menu-name {
  text-align: left;
  padding: 5px 0;
}
.menu-other .menu-price {
  text-align: right;
}
.menu-note {
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
  border: 5px solid #006837;
  font-size: 2.5rem;
  font-weight: 500;
  color: #006837;
  margin: 0 auto 120px auto;
}
@media screen and (max-width:768px) {
  .menu-note {
    width: 90%;
    font-size: 2rem;
  }
  .menu-wrap2::after {
    width: 300px;
  }
}
@media screen and (max-width:480px) {
  #menu h2 {
    width: 90%;
  }
}

/* メリット */
#merit {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px auto;
}
#merit ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  /* flex-wrap: wrap; */
  margin-bottom: 40px;
}
#merit ul:nth-child(odd) {
  flex-direction: row-reverse;
}
.merit-ttl {
  width: 45%;
  margin-bottom: 40px;
}
.merit-ttl img {
  width: 100%;
}
.mert-img {
  width: 50%;
}
.mert-img img {
  width: 100%;
}
.merit-note {
  font-size: 1.8rem;
  line-height: 1.75em;
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  #merit {
    padding: 5%;
  }
  .merit-ttl {
    width: 48%;
  }
  .merit-ttl img {
    width: 100%;
  }
  .merit-img {
    width: 50%;
  }
  .merit-img img {
    width: 100%;
  }
}
@media screen and (max-width:480px) {
  #merit ul {
    display: block;
  }
  .merit-ttl {
    width: 100%;
    margin-bottom: 20px;
  }
  .merit-img {
    width: 100%;
  }
  .merit-note {
    margin-top: 20px;
  }
}

/* お客様の声 */
#voice {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px auto;
}
#voice h2 {
  margin-bottom: 40px;
}
.voice-wrap {
  width: 89%;
  display: inline-block;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.voice-wrap:nth-child(odd) {
  margin: 0 0 40px auto;
  flex-direction: row-reverse;
}
.voice-box {
  width: 700px;
  height: auto;
  border-radius: 20px;
  background-color: #fff;
  border: 5px solid #006837;
  padding: 40px;
  font-size: 1.6rem;
  line-height: 1.5em;
}
.voice-box span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  color: #006837;
  margin-bottom: 20px;
}
@media screen and (max-width:480px) {
  #voice h2 {
    margin-bottom: 20px;
  }
  .voice-wrap {
    display: block;
    width: 100%;
    padding: 0 5%;
  }
  .voice-wrap:nth-child(even) {
    text-align: right;
  }
  .voice-box {
    width: 100%;
    padding: 5%;
    text-align: left;
  }
}

/* インスタグラム */
#insta {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px auto;
  text-align: center;
}
#insta h2 {
  margin-bottom: 40px;
}

/* フッター */
footer {
  width: 100%;
  background-color: #006837;
  padding: 80px 40px;
  color: #fff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-left {
  width: 40%;
  padding-right: 40px;
}
.footer-left figure {
  margin-bottom: 40px;
}
.footer-left ul {
  margin-bottom: 40px;
}
.footer-left ul li {
  font-size: 1.8rem;
  line-height: 1.75em;
}
.footer-sns a img {
  width: 25px;
  margin-right: 10px;
}
.footer-right {
  width: 60%;
  margin-bottom: 40px;
}
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-note {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width:768px) {
  .footer-right {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer-left {
    width: 100%;
  }
  .footer-sns a img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width:480px) {
    footer {
      padding: 80px 5%;
    }
    .map {
      padding-top: 100%;
    }
}
