@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic Medium", "Hiragino Kaku Gothic ProN W3", sans-serif;
  font-weight: bold;
  color: #4d340e;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

#news, #order, #store, #access {
  padding: 70px 0 50px 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.title-top {
  position: relative;
  padding: 20px 0;
}

.title {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.3em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  width: 250px;
  height: 60px;
  padding: 13px 0;
  margin: auto;
  border-radius: 5px;
  background-color: #5c935f;
  color: #fefefe;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-align: center;
  border: 2px solid #5c935f;
}

.btn:hover {
  opacity: 0.8;
  background-color: #fefefe;
  color: #5c935f;
  border: 2px solid #5c935f;
  border-radius: 5px;
}

.gnav-sp-wrap {
  display: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
  #news, #order, #store, #access {
    padding: 20px 20px;
    max-width: 560px;
    margin: auto;
  }

  .title {
    font-size: 20px;
  }

  .btn {
    width: 200px;
    height: 40px;
    font-size: 14px;
    padding: 7px 0;
    margin: auto;
  }
}

/** -----------------------------------
    ヘッダー
-------------------------------------**/
#header {
  background-color: #fefefe;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  position: fixed;
  top: 0;
  z-index: 1;
}

.header-logo {
  display: flex;
  align-items: center;
  width: 27%;
}

.header-logo a {
  display: flex;
}

.header-right {
  display: block;
  margin-left: auto;
  margin-right: -65px;
  margin-bottom: 7px;
}

.header-top {
  display: flex;
  height: 60%;
  padding: 10px 10px;
}

.phonenumber {
  font-size: 26px;
  letter-spacing: 0.12em;
  margin-top: 10px;
}

.faxbtn {
  display: block;
  width: 250px;
  height: 55px;
  padding: 6px 0;
  margin: auto;
  background-color: #5c935f;
  color: #fefefe;
  font-size: 15px;
  letter-spacing: 0.09em;
  text-indent: 0.09em;
  text-decoration: none;
  text-align: center;
  line-height: 20px;
  border: 2px solid #5c935f;
  border-radius: 5px;
}

.faxorder {
  font-size: 20px;
  letter-spacing: 0.38em;
  text-indent: 0.38em;
}

.faxbtn:hover {
  opacity: 0.8;
  background-color: #fefefe;
  color: #5c935f;
  border: 2px solid #5c935f;
}

.gnav-pc-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

ul.gnav-pc li {
  display: inline;
  margin-right: 55px;
  position: relative;
}

ul.gnav-pc li a {
  font-size: 21px;
  letter-spacing: 0.2em;
  color: #4d340e;
}

ul.gnav-pc li a::before {
  content: url("../images/sprout.png");
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.4);
  position: absolute;
  top: -20px;
  left: -55px;
}

ul.gnav-pc li a:hover {
  color: #5c935f;
}

#menu-button {
  display: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  #header {
    height: 60px;
    width: 100vw;
    padding: 0;
  }

  .header-logo {
    padding-left: 15px;
    width: 45%;
  }

  .header-logo a {
    display: flex;
  }

  .header-right {
    display: none;
  }

  #menu-button {
    display: block;
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    padding: 10px 35px;
    margin-right: 10px;
    margin-top: 5px;
    z-index: 2;
  }

/*ボタン内側*/
  .menu-button-inner span {
    display: block;
    transition: all 0.5s ease;
    position: absolute;
    left: 14px;
    height: 3px;
    background-color: #4d340e;
    border-radius: 2px;
    width: 45%;
  }

  .bar1 {
    top:15px;
  }

  .bar2 {
    top:23px;
  }

  .bar3 {
    top:31px;
  }

  .bar1.open{
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
  }

  .bar2.open {
    opacity: 0;
  }

  .bar3.open {
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
  }

  .gnav-sp-wrap {
    width: 100%;
    height: 100vh;
    background-color: #fefefe;
    position: fixed;
    padding: 70px 0;
    position: fixed;
    top: 0;
    right: -100%;
    -webkit-transition: .7s;
    transition: .5;
    display:-webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    z-index: 1;
  }

  .gnav-sp-wrap.open {
    right: 0;
  }

  .gnav-sp {
    padding: 80px 0;
    margin: 0;
  }

  ul.gnav-sp li {
    text-align: center;
    margin-bottom: 30px;
    list-style: none;
  }

  ul.gnav-sp li a {
    font-size: 22px;
    color: #4d340e;
    letter-spacing: 0.2em;
  }

  .snsbtniti-sp {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    max-width: 220px;/* ボタンを設置する場所の最大横幅 */
    position: fixed;
    bottom: 25%;
    margin-right: -30px;
  }

  ul.snsbtniti-sp {
  padding: 0!important;
  list-style-type: none!important;
  }

}
/** -----------------------------------
      メインビジュアル
-------------------------------------**/
#mainvisual {
  width: 100%;
  height: calc(100vh - 100px);
  background-image: url("../images/pc-mainvisual.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 120px;
}

.copy-wrap {
  color: #fefefe;
  position: absolute;
  left: 3%;
  bottom: 55%;
  text-align: left;
  text-shadow: 3px 3px 3px rgb(67 106 69);
}

.sp-copy-wrap {
  display: none;
}

.maincopy {
  font-size: 45px;
  line-height: 1.5;
  letter-spacing: 0.3em;
  margin-bottom: 35px;
  clip-path: inset(0 100% 0 0);
  animation: textanimation 3s 0.5s forwards;
}

.subcopy {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  clip-path: inset(0 100% 0 0);
  animation: textanimation 4s 4s forwards;
}

@keyframes textanimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0);
    }
}

.snslink {
  background-color: rgba(254,254,254, 0.8);
  width: 250px;
  height: 150px;
  position: absolute;
  left: 3%;
  bottom: 5%;
}

.snscopy {
  color: #4d340e;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  position: absolute;
  left: 5%;
  bottom: 50%;
}
.snsbtniti {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
position: absolute;
max-width: 400px;/* ボタンを設置する場所の最大横幅 */
margin: 10px 0 10px 0;/* ボタンを中央へ */
left: 20%;
bottom: -10%;
}

/* ulタグの内側余白なしと箇条書きの黒丸削除 */
ul.snsbtniti {
padding: 0!important;
list-style-type: none!important;
}

/* ボタン同士の余白調整 */
.snsbtniti li {
flex: 10%;/* ボタンを3つ並びへ */
text-align: center!important;
}

/* ボタン全体 */
.flowbtn3 {
position: relative;
display: inline-block;
width: 60px;/* 背景横幅 */
height: 60px; /* 背景高さ */
font-size: 35px;
border-radius: 13px;/* ボタンの角を丸く */
transition: .5s;
text-decoration: none;
color: #fff;/* アイコンカラー */
margin-bottom:10px;/* ボタン下の余白 */
margin-right: 30px;
}

/* アイコンの位置を真ん中へ */
.flowbtn3 i {
position:absolute;
top:50%;
left:50%;
-ms-transform:translate(-50%,-50%);
-webkit-transform:translate(-50%,-50%);
transform:translate(-50%,-50%);
}

/*インスタアイコンを少し大きく */
.flowbtn3 i.fa-brands.fa-instagram{
font-size: 45px;
}

/* ボタンのマウスホバー時少し浮き上がる */
.flowbtn3:hover {
-webkit-transform:translateY(-5px);
-ms-transform:translateY(-5px);
transform:translateY(-5px);
text-decoration: none;
cursor: pointer;
}

/* Instagram背景 */
.my_instagram1 {
background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
}

/* LINE背景 */
.my_line1 {
background: #00b900;
}


/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  #mainvisual {
    width: 100%;
    height: 115vw;
    margin-top: 60px;
    background-image: url("../images/sp-mainvisual.png");
    background-size: cover;
    background-position: left;
    display: block;
  }

  .copy-wrap {
    display: none;
  }

  .sp-maincopy {
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-bottom: 35px;
    clip-path: inset(0 100% 0 0);
    animation: textanimation 3s 0.5s forwards;
  }

  .sp-subcopy1 {
    font-size: 17px;
    letter-spacing: 0.08em;
    margin-bottom: -10px;
    clip-path: inset(0 100% 0 0);
    animation: textanimation 4s 3.5s forwards;
  }

  .sp-subcopy2 {
    font-size: 17px;
    letter-spacing: 0.08em;
    clip-path: inset(0 100% 0 0);
    animation: textanimation 4s 5s forwards;
  }

  .sp-copy-wrap {
    color: #fefefe;
    position: absolute;
    text-align: left;
    text-shadow: 3px 3px 3px rgb(67 106 69);
    display: block;
    left: 5%;
    top: 10%;
  }

  .snslink {
    display: none;
  }

}

/** -----------------------------------
      お知らせ
-------------------------------------**/
.news-info {
  padding: 50px 15px;
}

.news-info dl {
  font-size: 21px;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(77, 52, 14, 0.5);
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.news-info dt{
  float: left;
  clear: left;
}

.news-info dd {
  float: left;
  margin-left: 3em;
  letter-spacing: 0.1em
}

.news-btn {
  text-align: center;
  padding: 10px 0;
}

.newsbtn {
  font-size: 21px;
  letter-spacing: 0.2em;
}
/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  .news-info {
    margin-top: -10px;
    padding: 5px 10px;
  }

  .news-info dl {
    font-size: 18px;
  }

  .news-info dt {
    float: none;
  }

  .news-info dd {
    margin-left: 0;
    padding-top: 10px;
  }

  .newsbtn {
    font-size: 16px;
    letter-spacing: 0.25em;
    padding: 6px 0;
  }
}

/** -----------------------------------
      ご注文
-------------------------------------**/
.title-order {
  letter-spacing: 0.5em;
}

.order-fax {
  color: #4d340e;
  border-bottom: 3px solid #4d340e;
}
.comment {
  text-align: center;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: 0.12em;
  padding: 70px 0 20px 0;
}

#pc-order {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
}

.form-item {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
}

.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.form-item-label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  padding-left: 20px;
}

.form-item-label.ismsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.form-item-label-required {
  border-radius: 4px;
  margin-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 45px;
  display: inline-block;
  text-align: center;
  background: #5c935f;
  color: #fff;
  font-size: 14px;
}

 .form-item-input {
   border: 1px solid #ddd;
   border-radius: 6px;
   margin-left: 50px;
   padding-left: 1em;
   padding-right: 1em;
   height: 48px;
   flex: 1;
   width: 100%;
   max-width: 500px;
   background: #eaedf2;
   font-size: 18px;
 }

.form-item-textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 50px;
  padding-left: 1em;
  padding-right: 1em;
  height: 220px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #eaedf2;
  font-size: 18px;
  margin-bottom: 40px;
}

.form-btn {
  border-radius: 5px;
  margin: auto;
  width: 250px;
  height: 60px;
  display: block;
  letter-spacing: 0.2em;
  background: #5c935f;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0);
}

 .form-btn:hover {
   cursor: pointer;
   opacity: 0.8;
   background-color: #fefefe;
   color: #5c935f;
   border: 2px solid #5c935f;
 }

#sp-order {
  display: none;
}


/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  .comment {
    font-size: 18px;
    line-height: 1.5;
    padding: 10px 0;
    text-align: center;
    margin-bottom: -15px;
  }

  #pc-order {
    display: none;
  }

  #sp-order {
    display: block;
    text-align: center;
  }

  .form-item-sp {
    padding: 5px 0;
    flex-wrap: wrap;
    max-width: 370px;
    align-items: center;
  }

  .form-item-label-sp {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .form-item-label-sp.ismsg {
    margin-top: 15px;
  }

  .form-item-label-required-sp {
    display: inline-block;
    text-align: center;
    background: #5c935f;
    color: #fefefe;
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 36px;
    font-size: 12px;
    margin-right: 10px;
  }

  .form-item-input-sp {
    margin-top: 0;
    padding-left: 10px;
    height: 40px;
    flex: inherit;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
  }

  .form-item-textarea-sp {
    margin-top: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
  }

  .form-btn {
    margin-top: 20px;
    padding: 4px 0;
    width: 200px;
    height: 40px;
    font-size: 17px;
    font-weight: bold;
    color: #fefefe;
    background-color: #5c935f;
    border-radius: 6px;
    letter-spacing: 0.25em;
    text-align: center;
    cursor: pointer;
  }

}
/** -----------------------------------
     　店舗案内
-------------------------------------**/
.table_design01 {
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  font-size: 21px;
  margin: 0 auto;
}
.table_design01 th, .table_design01 td {
  border: 2px solid #fefefe;
  background-color: rgba(92,147,95,0.1);
  padding: 1em;
  letter-spacing: 0.1em;
}

.table_design01 td {
  padding-left: 40px;
}

.table_design01 th {
  background-color: #5c935f;
  color: #fefefe;
  font-weight: bold;
  text-align: center;
  width: 30%;
  min-width: 4em;
}

.store-photo {
  max-width: 550px;
  height: auto;
  margin: 0 auto;
  padding: 70px 0 20px 0;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  .store-photo {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    padding: 20px 0 0 0;
  }

  .table_design01 {
    border-collapse: collapse;
    max-width: 360px;
    margin: 0 auto;
  }

  .table_design01 th {
    font-size: 14px;
  }

  .table_design01 td {
    padding-left: 20px;
    font-size: 16px;
  }
}

/** -----------------------------------
      アクセス
-------------------------------------**/
.access-content {
  display: flex;
  justify-content: space-between;
  padding: 70px 10px;
}

.googlemap {
  padding: 10px 40px;
}

iframe {
  width: 400px;
  height: 300px;
}

.address-info {
  margin: auto;
  text-align: left;
}

.address {
  font-size: 25px;
  line-height: 2.2em;
  margin-top: -20px;
}

.access-info {
  font-size: 17px;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  iframe {
    width: 300px;
    height: 180px;
  }

  .googlemap {
    text-align: center;
    padding: 10px 0;
  }

  .access-content {
    display: block;
    padding: 20px 20px;
  }

  .address-info {
    padding-top: 25px;
    text-align: center;
  }

  .address {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1.7em;
  }

  .access-info {
    font-size: 13px;
  }

}

/** -----------------------------------
      フッター
-------------------------------------**/
#footer {
  height: 80px;
  background-color: #5c935f;
  padding-top: 10px;
  margin-top: 30px;
  text-align: center;
  margin-bottom: -24px;
}

.copyright {
  color: #fefefe;

}

.footer-area {
  display: none;
}

  /** -------- スマホ -------- **/
  @media screen and (max-width: 768px) {
    #footer {
      height: 45px;
      padding: 10px 0;
      margin-top: 0;
      margin-bottom: 0;
    }

    .copyright {
      margin-top: 5px;
      font-size: 10px;
    }


    .footer-area {
      display: block;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background-color: #fefefe;
  	  z-index: 100;
    }

    .footer-area-inner {
      position: relative;
      width: 70%;
      margin: auto;
      padding: 10px 0;
      text-align: center;
    }


     .footer-btn {
        background-color: #4d340e;
        color: #fefefe;
        border: 2px solid #4d340e;
        display: inline-block;
        text-align: center;
        text-decoration: none;
      	width: 80%;
        height: 50px;
        padding: 9px 0;
        font-size: 18px;
        letter-spacing: 0.25em;
      }
  }

  /** -----------------------------------
        お知らせ一覧
  -------------------------------------**/
  .infowrapper {
    padding: 100px 0;
  }

  .information-top {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 80px;
  }

  .information-title {
      font-size: 40px;
      font-weight: bold;
      letter-spacing: 0.3em;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      margin: 0 auto;
      padding-top: 80px;
    }

  @media screen and (max-width: 768px) {
    .information-title {
      font-size: 20px;
    }

    .infowrapper{
      margin-top: -100px;
    }

  }
