@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  font-weight: 400;
  vertical-align: baseline;
  background: transparent;
  color: #221815;
}

body {
  line-height: 1;
  font-size: 10px;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #221815;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #221815;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  appearance: none;
}

@font-face {
  font-family: "EB Garamond";
  src: url("EBGaramond-Bold.ttf") format("truetype");
  src: url("EBGaramond-BoldItalic.ttf") format("truetype"), url("EBGaramond-ExtraBold.ttf") format("truetype"), url("EBGaramond-ExtraBoldItalic.ttf") format("truetype"), url("EBGaramond-Italic.ttf") format("truetype"), url("EBGaramond-Medium.ttf") format("truetype"), url("EBGaramond-MediumItalic.ttf") format("truetype"), url("EBGaramond-Regular.ttf") format("truetype"), url("EBGaramond-SemiBold.ttf") format("truetype"), url("EBGaramond-SemiBoldItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.3333333333vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.1666666667vw;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  max-width: 3000px;
  min-width: auto;
  margin: 0 auto;
}

.Inner {
  max-width: 184.8rem;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 3000px) {
  .Inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .Inner {
    padding: 0 4rem;
  }
}
.Inner--min {
  max-width: 980px;
}
@media screen and (max-width: 768px) {
  .Inner--min {
    max-width: 100%;
    padding: 0;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #EBEFA3; /* 背景色 */
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  display: block;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%; /* menuの範囲 */
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1rem;
  right: 10px;
  cursor: pointer;
  width: 10rem;
  height: 10rem;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px; /*  線の位置*/
  height: 3px; /*  線の太さ*/
  border-radius: 2px;
  background-color: #231815; /* ボタンの色*/
  width: 45%; /*  ボタンに対する線の長さ*/
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*-----スライダーのためのcss------*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  padding: 0;
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 50%; /*矢印の位置*/
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid red; /*矢印の色*/
  border-right: 2px solid red; /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
}
.Header__head__container {
  max-width: 200rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .Header__head__container {
    padding: 1rem 2rem;
  }
}
.Header__head__container__logo {
  display: block;
  width: 36.3rem;
}
@media (max-width: 768px) {
  .Header__head__container__logo {
    width: 30rem;
  }
}
.Header__head__container__logo img {
  width: 100%;
}
.Header__head__container__btn {
  display: flex;
}
@media (max-width: 768px) {
  .Header__head__container__btn {
    display: none;
  }
}
.Header__food {
  background-color: rgba(35, 24, 21, 0.8);
}
@media (max-width: 768px) {
  .Header__food {
    display: none;
  }
}
.Header__food__container {
  max-width: 200rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .Header__food__container__item {
    text-align: center;
    padding: 3rem 0;
  }
}
.Header__food__container__item a {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-decoration: none;
}
@media (max-width: 768px) {
  .Header__food__container__item a {
    color: #231815;
    text-align: center;
  }
}
.Header__food__container__item a:hover {
  opacity: 0.6;
}

.Header__head__container__btn a, .Fixed a {
  width: 46rem;
  height: 10rem;
  border-radius: 2rem;
  display: block;
  margin-left: 2rem;
  padding-left: 9rem;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .Header__head__container__btn a:first-of-type, .Fixed a:first-of-type {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .Header__head__container__btn a, .Fixed a {
    padding-left: 6rem;
    height: 8rem;
  }
}
.Header__head__container__btn a:hover, .Fixed a:hover {
  opacity: 0.6;
}
.Header__head__container__btn a::before, .Fixed a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  width: 7rem;
  height: 7rem;
}
@media (max-width: 768px) {
  .Header__head__container__btn a::before, .Fixed a::before {
    width: 4rem;
    height: 4rem;
  }
}
.Header__head__container__btn a .num, .Fixed a .num {
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 4rem;
}
@media (max-width: 768px) {
  .Header__head__container__btn a .num, .Fixed a .num {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
.Header__head__container__btn a .min, .Fixed a .min {
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
  line-height: 4rem;
}
@media (max-width: 768px) {
  .Header__head__container__btn a .min, .Fixed a .min {
    font-size: 1.3rem;
    line-height: 2.4rem;
  }
}
.Header__head__container__btn a .ja, .Fixed a .ja {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 4rem;
}
@media (max-width: 768px) {
  .Header__head__container__btn a .ja, .Fixed a .ja {
    font-size: 2.3rem;
    line-height: 3.4rem;
  }
}
.Header__head__container__btn__tel, .Fixed__tel {
  background-color: #eaeea2;
}
.Header__head__container__btn__tel::before, .Fixed__tel::before {
  background: url(../images/tel_icon.png) no-repeat center/contain;
}
.Header__head__container__btn__mail, .Fixed__mail {
  background-color: #edafa1;
}
.Header__head__container__btn__mail::before, .Fixed__mail::before {
  background: url(../images/mail_icon.png) no-repeat center/contain;
}
.Header__head__container__btn__document, .Fixed__document {
  background-color: #aacc03;
}
.Header__head__container__btn__document::before, .Fixed__document::before {
  background: url(../images/document_icon.png) no-repeat center/contain;
}

.Fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  padding: 1rem 1rem;
  box-sizing: border-box;
}

.Fv {
  background: url(../images/fv.png) no-repeat bottom center/cover;
  height: 100vh;
}
@media (max-width: 768px) {
  .Fv {
    background: url(../images/fv_sp.png) no-repeat center/cover;
    height: 90vh;
  }
}
.Fv__container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: 180rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .Fv__container {
    height: 90vh;
  }
}
.Fv__container__ttl {
  width: 120rem;
  position: absolute;
  left: 5rem;
  top: 45rem;
}
@media (max-width: 768px) {
  .Fv__container__ttl {
    left: 2rem;
    top: 23rem;
    width: 75rem;
  }
}
.Fv__container__ttl img {
  width: 100%;
}
.Fv__container__food {
  position: absolute;
  bottom: 9rem;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .Fv__container__food {
    flex-direction: column;
    width: calc(100% - 4rem);
  }
}
.Fv__container__food__text {
  width: 100%;
  max-width: 130rem;
}
@media (max-width: 768px) {
  .Fv__container__food__text {
    height: 20.2rem;
    width: 80.3rem;
  }
}
.Fv__container__food__text img {
  width: 100%;
}
.Fv__container__food__year {
  background-color: #AACC03;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25rem;
  height: 25rem;
  border-radius: 50% 50% 0 50%;
  box-shadow: 0px 0px 14px 4px rgba(255, 255, 255, 0.45);
}
.Fv__container__food__year .year {
  font-size: 5.5rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
.Fv__container__food__year .month {
  font-size: 9rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
.Fv__container__food__start {
  width: 25rem;
  height: 25rem;
  border-radius: 0 50% 50% 50%;
  background-color: #E3005A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 14px 4px rgba(255, 255, 255, 0.45);
}
@media (max-width: 768px) {
  .Fv__container__food__start {
    margin-left: auto;
  }
}
.Fv__container__food__start .text {
  color: #fff;
  font-size: 9rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 10rem;
}
.Fv__container__food__start .text .bikkuri {
  color: #fff;
  font-size: 9rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: -1rem;
  line-height: 10rem;
}

.Fv__food__container {
  padding: 10rem 0;
}
.Fv__food__container__text {
  font-size: 3.5rem;
  line-height: 6rem;
  letter-spacing: 0.1rem;
  margin-bottom: 3rem;
}
.Fv__food__container__text span {
  color: #E3005A;
  font-size: 3.5rem;
  line-height: 6rem;
  letter-spacing: 0.1rem;
  position: relative;
  padding-right: 1rem;
}
.Fv__food__container__text span .komezirusi {
  position: absolute;
  top: 0;
  right: -1rem;
  font-size: 2rem;
  line-height: 4rem;
}
.Fv__food__container__komettl, .Fv__food__container__kometext {
  font-size: 2.5rem;
  line-height: 4.2rem;
  letter-spacing: 0.05rem;
}
.Fv__food__container__kometext {
  padding-left: 2rem;
  margin-bottom: 4rem;
}
.Fv__food__container__box {
  font-size: 2.5rem;
  line-height: 4.2rem;
  letter-spacing: 0.05rem;
  background-color: #FBFCF4;
  border: 1px dotted #9E9F9F;
  border-radius: 3rem;
  padding: 3rem;
  margin-bottom: 14rem;
}
.Fv__food__container__flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.Fv__food__container__flex__item {
  width: 80rem;
}
.Fv__food__container__flex__item__ttl {
  background-color: #231815;
  border-radius: 3rem;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 3.5rem;
  line-height: 6rem;
  letter-spacing: 0.05rem;
  margin-bottom: 3rem;
}
.Fv__food__container__flex__item__dis {
  line-height: 4.2rem;
  letter-spacing: 0.05rem;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Fv__food__container__flex__item__dis {
    font-size: 2.3rem;
  }
}
.Fv__food__container__flex__item__img {
  margin-bottom: 3rem;
}
.Fv__food__container__flex__item__img img {
  width: 100%;
}
.Fv__food__container__flex__item__komejirusi {
  position: relative;
  font-size: 2.5rem;
  line-height: 4.3rem;
  padding-left: 3rem;
}
.Fv__food__container__flex__item__komejirusi::before {
  content: "※";
  display: block;
  position: absolute;
  color: #221815;
  top: 0;
  left: 0;
}
.Fv__food__container__flex__allow {
  width: 15rem;
  margin-top: 48rem;
}
@media (max-width: 768px) {
  .Fv__food__container__flex__allow {
    margin-top: 40rem;
    padding: 0 2rem;
  }
}
.Fv__food__container__flex__allow img {
  width: 100%;
}
.Fv__food__container__food, .Fv__food__container__link {
  font-size: 2rem;
  line-height: 4.2rem;
  letter-spacing: 0.05rem;
}
.Fv__food__container__link {
  color: #0044cc;
}
.Worries {
  position: relative;
}
.Worries::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/worries_bg.png) no-repeat top center/cover;
}
.Worries::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20rem;
  z-index: -1;
  width: 103%;
  height: 100%;
  background: url(../images/worries_bg_food.png) no-repeat bottom center/cover;
}
.Worries__container {
  padding: 10rem 0;
  margin: 20rem 0;
}
@media (max-width: 768px) {
  .Worries__container {
    padding: 7rem 0;
    margin: 15rem 0;
  }
}
.Worries__container__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 9rem;
}
.Worries__container__ttl h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 10rem;
  line-height: 13rem;
  letter-spacing: 0.08rem;
  text-align: center;
  background: linear-gradient(transparent 70%, #aacc03 70%);
  display: inline-block;
}
@media (max-width: 768px) {
  .Worries__container__ttl h2 {
    font-size: 6.5rem;
    line-height: 10rem;
  }
}
.Worries__container__list {
  margin-bottom: 8rem;
}
.Worries__container__list__item {
  font-size: 4rem;
  line-height: 8rem;
  letter-spacing: 0.05rem;
  padding-left: 8rem;
  position: relative;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .Worries__container__list__item {
    font-size: 3rem;
    line-height: 5rem;
    margin-bottom: 2rem;
  }
}
.Worries__container__list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 7rem;
  height: 7rem;
  background: url(../images/check.png) no-repeat center/contain;
}
.Worries__container__food {
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
}
.Worries__container__food__text {
  font-size: 13rem;
  line-height: 13rem;
  letter-spacing: 0.05rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .Worries__container__food__text {
    font-size: 9rem;
    line-height: 10rem;
  }
}
.Worries__container__food img {
  width: 100%;
  margin: 2rem 0;
}
.Features__container {
  padding: 10rem 0;
}
.Features__container__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Features__container__wrap__ttl, .Features__container__wrap__item {
  width: 59.5rem;
}
@media (max-width: 768px) {
  .Features__container__wrap__item {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 768px) {
  .Features__container__wrap__ttl {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.Features__container__wrap__ttl img {
  width: 90%;
}
@media (max-width: 768px) {
  .Features__container__wrap__ttl img {
    width: 50%;
    margin: 0 auto;
    display: block;
  }
}
.Features__container__wrap__item {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 1%, rgb(245, 245, 208) 100%);
  border-radius: 2rem;
  padding: 0 3rem 3rem 3rem;
  margin-bottom: 8rem;
  box-sizing: border-box;
}
.Features__container__wrap__item__title {
  font-size: 5rem;
  line-height: 6rem;
  letter-spacing: 0.07rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Features__container__wrap__item__title {
    font-size: 3.2rem;
    line-height: 4.3rem;
  }
}
.Features__container__wrap__item__img {
  margin: 0 auto;
  margin-bottom: 3rem;
}
.Features__container__wrap__item__img img {
  width: 100%;
}
.Features__container__wrap__item:nth-of-type(2) .Features__container__wrap__item__img {
  width: 32.3rem;
}
.Features__container__wrap__item:nth-of-type(3) .Features__container__wrap__item__img {
  width: 28.6rem;
}
.Features__container__wrap__item:nth-of-type(4) .Features__container__wrap__item__img {
  width: 23.2rem;
}
.Features__container__wrap__item:nth-of-type(5) .Features__container__wrap__item__img {
  width: 30.8rem;
}
.Features__container__wrap__item:nth-of-type(6) .Features__container__wrap__item__img {
  width: 31.7rem;
}
.Features__container__wrap__item:nth-of-type(7) .Features__container__wrap__item__img {
  width: 25.4rem;
}
.Features__container__wrap__item:nth-of-type(8) .Features__container__wrap__item__img {
  width: 20.8rem;
}
.Features__container__wrap__item:nth-of-type(9) .Features__container__wrap__item__img {
  width: 23.6rem;
}
.Features__container__wrap__item__dis {
  font-size: 2.5rem;
  line-height: 4.2rem;
}
.Features__container__wrap__item__btn {
  width: 26.4rem;
  margin: 0 auto;
  display: block;
  margin-top: 2rem;
}
.Features__container__wrap__item__btn img {
  width: 100%;
}

.Footer__container {
  padding: 5rem 0;
}
.Footer__container__head {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .Footer__container__head {
    flex-direction: column;
  }
}
.Footer__container__head__logo {
  width: 36.3rem;
  display: block;
}
@media (max-width: 768px) {
  .Footer__container__head__logo {
    margin: 0 auto;
    margin-bottom: 3rem;
  }
}
.Footer__container__head__logo img {
  width: 100%;
}
.Footer__container__head__text p, .Footer__container__head__text a {
  font-size: 2.4rem;
  line-height: 5rem;
  letter-spacing: 0.06rem;
}
.Footer__container__head__text__green {
  color: #aacc03;
}
.Footer__container__head__text__name {
  color: #0044cc;
}
.Footer__container__food {
  padding-top: 5rem;
}
.Footer__container__food p {
  text-align: center;
  font-size: 2.4rem;
  line-height: 4.2rem;
  letter-spacing: 0.06rem;
}

a:hover {
  opacity: 0.6;
}

.Experience {
  position: relative;
}
@media (max-width: 768px) {
  .Experience {
    background-color: #FBF0EC;
  }
}
.Experience::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/experience_bg.png) no-repeat top center/cover;
}
@media (max-width: 768px) {
  .Experience::after {
    background-size: contain;
    top: -10rem;
  }
}
.Experience::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/experience_bg_food.png) no-repeat bottom center/cover;
}
@media (max-width: 768px) {
  .Experience::before {
    background-size: contain;
    bottom: -10rem;
  }
}
.Experience__container {
  padding: 20rem 0;
  margin: 15rem 0;
}
@media (max-width: 768px) {
  .Experience__container {
    padding: 5rem 0;
    margin: 15rem 0;
  }
}
.Experience__container__ttl {
  font-size: 8.8rem;
  line-height: 13rem;
  letter-spacing: 0.02rem;
  font-weight: bold;
  margin-bottom: 3rem;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  .Experience__container__ttl {
    font-size: 6rem;
    text-align: center;
    line-height: 8rem;
  }
}
.Experience__container__sub {
  font-size: 3.5rem;
  line-height: 6rem;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .Experience__container__sub {
    font-size: 2.8rem;
    line-height: 5rem;
  }
}
.Experience__container__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .Experience__container__flex {
    flex-direction: column;
  }
}
.Experience__container__flex__item {
  width: 59rem;
}
@media (max-width: 768px) {
  .Experience__container__flex__item {
    margin: 0 auto;
    margin-bottom: 5rem;
  }
}
.Experience__container__flex__item__ttl {
  text-align: center;
  margin-bottom: 3rem;
}
.Experience__container__flex__item__ttl .en {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 6rem;
  margin-right: 2rem;
}
.Experience__container__flex__item__ttl .num {
  color: #e3005a;
  font-size: 12rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: -0.8rem;
}
.Experience__container__flex__item__box {
  background-color: #fff;
  border-radius: 2rem;
  padding: 4rem 0 4rem 0;
}
.Experience__container__flex__item__box__main {
  height: 9rem;
  background: url(../images/line_bg.png) no-repeat center/cover;
}
.Experience__container__flex__item__box__main__text {
  color: #fff;
  font-size: 5rem;
  font-weight: 500;
  line-height: 9rem;
  letter-spacing: 0.05rem;
  text-align: center;
}
.Experience__container__flex__item__box__dis {
  font-size: 2.4rem;
  line-height: 4.1rem;
  letter-spacing: 0.1rem;
  padding: 3rem 6rem 4rem 6rem;
  height: 24rem;
  box-sizing: border-box;
}
.Experience__container__flex__item__box a {
  width: 26rem;
  display: block;
  margin: 0 auto;
}
.Experience__container__flex__item__box a img {
  width: 100%;
}

.Use__container {
  padding: 20rem 0;
}
@media (max-width: 768px) {
  .Use__container {
    padding: 10rem 0;
  }
}
.Use__container .Title {
  margin-bottom: 17rem;
}
@media (max-width: 768px) {
  .Use__container .Title {
    margin-bottom: 10rem;
  }
}
.Use__container__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .Use__container__flex {
    flex-direction: column;
  }
}
.Use__container__flex__item {
  width: 59.5rem;
}
@media (max-width: 768px) {
  .Use__container__flex__item {
    margin: 0 auto;
    margin-bottom: 5rem;
  }
}
.Use__container__flex__item__img {
  margin-bottom: -0.3rem;
}
.Use__container__flex__item__img img {
  width: 100%;
}
.Use__container__flex__item__ttl {
  background-color: #aacc03;
  padding: 2rem 0;
  height: 16.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Use__container__flex__item__ttl h3 {
  font-size: 5rem;
  line-height: 6.5rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.Use__container__flex__item__dis {
  background-color: #eaeea2;
  padding: 3rem;
}
.Use__container__flex__item__dis p {
  font-size: 2.5rem;
  line-height: 4.1rem;
  letter-spacing: 0.1rem;
  height: 25rem;
}
.Use__container__flex__item__dis .Btn {
  width: 30rem;
  display: block;
  margin: 0 auto;
}
.Use__container__flex__item__dis .Btn img {
  width: 100%;
}

.Title {
  font-weight: bold;
  font-size: 12rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  .Title {
    font-size: 10rem;
  }
}

.Plan {
  background: url(../images/plan_bg.png) no-repeat center/cover;
}
.Plan__container {
  padding: 15rem 0;
}
.Plan__container .Title {
  margin-bottom: 17rem;
}
@media (max-width: 768px) {
  .Plan__container .Title {
    margin-bottom: 10rem;
  }
}
.Plan__container__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .Plan__container__flex {
    flex-direction: column;
  }
}
.Plan__container__flex__item {
  width: 87rem;
  background-color: #fff;
  padding: 5rem 0 5rem 0;
}
@media (max-width: 768px) {
  .Plan__container__flex__item {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.Plan__container__flex__item__ttl {
  background-color: #e3005a;
  height: 8rem;
}
.Plan__container__flex__item__ttl h2 {
  font-size: 5rem;
  line-height: 8rem;
  text-align: center;
  color: #fff;
}
.Plan__container__flex__item__text {
  padding: 5rem;
}
.Plan__container__flex__item__text__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.Plan__container__flex__item__text__item__box p {
  font-size: 5rem;
  font-weight: 500;
}
.Plan__container__flex__item .Btn {
  display: block;
  width: 30rem;
  margin: 0 auto;
}
.Plan__container__flex__item .Btn img {
  width: 100%;
}

.Btn:hover {
  opacity: 0.6;
}

.Results__container {
  padding: 15rem 0;
}
.Results__container .Title {
  margin-bottom: 7rem;
}
.Results__container__dis {
  font-size: 3.5rem;
  line-height: 6rem;
  letter-spacing: 0.5rem;
  text-align: center;
  margin-bottom: 8rem;
}
.Results__container__img {
  max-width: 140rem;
  margin: 0 auto;
}
.Results__container__img img {
  width: 100%;
}

.Contact {
  background-color: #eaeea2;
}
.Contact__container {
  padding: 10rem 0;
  max-width: 135rem;
  width: 100%;
  margin: 0 auto;
}
.Contact__container .Title {
  margin-bottom: 6rem;
}
.Contact__container__sub {
  font-size: 3.5rem;
  line-height: 6rem;
  letter-spacing: 0.05rem;
  margin-bottom: 6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .Contact__container__sub {
    font-size: 2.5rem;
    line-height: 4rem;
  }
}
.Contact__container__sub span {
  font-size: 3.5rem;
  line-height: 6rem;
  letter-spacing: 0.05rem;
  color: #e3005a;
}
@media (max-width: 768px) {
  .Contact__container__sub span {
    font-size: 2.5rem;
    line-height: 4rem;
  }
}
.Contact__container__box {
  background-color: #fff;
  border-radius: 2rem;
  padding: 3rem;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 8rem;
}
.Contact__container__box p {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 4.2rem;
  letter-spacing: 0.06rem;
  padding-left: 3rem;
  position: relative;
}
.Contact__container__box p::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  color: #221815;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 4.2rem;
}
.Contact__container__form__nyuuryoku {
  border: 1px solid #9fa0a0;
}
.Contact__container__form .Item {
  display: flex;
  border-bottom: 1px solid #9fa0a0;
}
@media (max-width: 768px) {
  .Contact__container__form .Item {
    flex-direction: column;
  }
}
.Contact__container__form .Item:last-of-type {
  border-bottom: none;
}
.Contact__container__form .Item__label {
  width: 30%;
  background-color: #f5f6dd;
  height: 8rem;
  text-align: center;
  border-right: 1px solid #9fa0a0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .Contact__container__form .Item__label {
    width: 100%;
    justify-content: start;
    padding-left: 2rem;
    box-sizing: border-box;
    border-right: none;
    border-bottom: 1px solid #9fa0a0;
  }
}
.Contact__container__form .Item__label label {
  font-size: 3.5rem;
  letter-spacing: 0.1rem;
  line-height: 5rem;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .Contact__container__form .Item__label label {
    text-align: left;
  }
}
.Contact__container__form .Item__label label span {
  position: absolute;
  top: 0;
  right: -2rem;
  line-height: 3rem;
  font-size: 2rem;
  color: #e3005a;
}
.Contact__container__form .Item__input {
  width: 70%;
  background-color: #fff;
}
@media (max-width: 768px) {
  .Contact__container__form .Item__input {
    width: 100%;
  }
}
.Contact__container__form .Item__input input {
  width: 100%;
  height: 8rem;
  border: none;
  box-sizing: border-box;
  font-size: 3.5rem;
  letter-spacing: 0.1rem;
  line-height: 8rem;
  padding: 0 2rem;
}
.Contact__container__form .Item__input input::placeholder {
  color: #e8e8e8;
}
.Contact__container__form .Item__textarea .Item__label {
  height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .Contact__container__form .Item__textarea .Item__label {
    justify-content: start;
    height: 8rem;
  }
}
.Contact__container__form .Item__textarea .Item__input textarea {
  width: 100%;
  height: 40rem;
  border: none;
  box-sizing: border-box;
  font-size: 3.5rem;
  letter-spacing: 0.1rem;
  padding: 2rem;
  resize: none;
}
@media (max-width: 768px) {
  .Contact__container__form .Item__textarea .Item__input textarea {
    font-size: 2.3rem;
  }
}
.Contact__container__form .Item__textarea .Item__input textarea::placeholder {
  color: #e8e8e8;
}
.Contact__container__form__box {
  border: 1px solid #9fa0a0;
  border-radius: 2rem;
  background-color: #fff;
  padding: 5rem;
  margin-top: 8rem;
  margin-bottom: 10rem;
}
.Contact__container__form__box__item__mt {
  margin-top: 4rem;
}
.Contact__container__form__box__item p {
  font-size: 2.4rem;
  line-height: 4.2rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
}
.Contact__container__form__box__item__dis {
  padding-left: 6rem;
}
.Contact__container__form__box__item a {
  color: #0044cc;
}
.Contact__container__form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6rem;
}
.Contact__container__form__privacy label {
  font-size: 3.5rem;
  letter-spacing: 0.05rem;
}
.Contact__container__form__privacy input {
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid #9fa0a0;
  margin-right: 2rem;
  background-color: #fff;
  appearance: auto;
}
@media (max-width: 768px) {
  .Contact__container__form__privacy input {
    width: 5rem;
    height: 5rem;
  }
}
@media (max-width: 768px) {
  .Contact__container__form__privacy input {
    margin-right: 1rem;
  }
}
.Contact__container__form__submit {
  display: flex;
  justify-content: center;
}
.Contact__container__form__submit input {
  border-radius: 6rem;
  width: 65rem;
  height: 12rem;
  line-height: 12rem;
  color: #fff;
  font-weight: 500;
  font-size: 5rem;
  text-align: center;
  background: rgb(229, 45, 112);
  background: linear-gradient(180deg, rgb(229, 45, 112) 1%, rgb(229, 45, 112) 25%, rgb(230, 44, 112) 50%, rgb(223, 0, 80) 75%, rgb(223, 0, 80) 100%);
  margin: 0 auto;
  border: none;
  margin: 0 auto;
  cursor: pointer;
}
.Contact__container__form__submit input:hover {
  opacity: 0.6;
}
.Contact__container__form__submit input:disabled {
  background: #9fa0a0;
  cursor: not-allowed;
}
.Contact__container__form__submit input:disabled:hover {
  opacity: 1;
}

.Page__thanks {
  background-color: #EBEFA3;
}
.Page__thanks__container {
  padding: 40rem 0 30rem 0;
}
.Page__thanks__container h2 {
  font-size: 8rem;
  margin-bottom: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .Page__thanks__container h2 {
    font-size: 4.5rem;
  }
}
.Page__thanks__container p {
  font-size: 3.5rem;
  line-height: 5rem;
  text-align: center;
  margin-bottom: 8rem;
}
.Page__thanks__container .Btn {
  border-radius: 6rem;
  text-decoration: none;
  width: 65rem;
  display: block;
  height: 12rem;
  line-height: 12rem;
  color: #fff;
  font-weight: 500;
  font-size: 5rem;
  text-align: center;
  background: rgb(229, 45, 112);
  background: linear-gradient(180deg, rgb(229, 45, 112) 1%, rgb(229, 45, 112) 25%, rgb(230, 44, 112) 50%, rgb(223, 0, 80) 75%, rgb(223, 0, 80) 100%);
  margin: 0 auto;
  border: none;
  margin: 0 auto;
  cursor: pointer;
}

.Privacy {
  padding: 20rem 0 10rem 0;
}

.Contact__container__form__privacy {
  margin-top: 10rem;
}
.Contact__container__form__privacy a {
  color: blue;
}