@charset "UTF-8";
@import url("reset.css");
/* ---------------------------
数値
--------------------------- */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  スムーズスクロール
--------------------------- */
html {
  scroll-behavior: smooth;
}

/* ---------------------------
  フォント
--------------------------- */
body {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}
body .tm {
  font-family: "ten-mincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

/* ---------------------------
  フッター下付け
--------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* ---------------------------
  その他
--------------------------- */
/* --- ヘッダー固定による余白調整--- */
body {
  padding-top: 90px;
}
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

main {
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

/* --- 画像表示 --- */
img {
  width: 100%;
  height: auto;
}

/* --- リンクホバー --- */
a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

/* --- PCのみ表示 --- */
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

/* --- SPのみ表示 --- */
.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

/* --- PC表示にてTELリンク無効化 --- */
@media (min-width: 1024px) {
  /* PCサイズ */
  a[href^=tel] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}
/* --- スクロールアニメーション（フェードアップ） --- */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- to-topボタン --- */
.to-top {
  position: fixed;
  right: 0;
  bottom: 36px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.to-top.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.to-top img {
  width: 80px;
}

/* ----------------------------------------
  セクションタイトル
---------------------------------------- */
.section__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
@media (max-width: 768px) {
  .section__title {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-orientation: initial;
    text-align: center;
  }
}
.section__title h2 {
  font-size: 44px;
}
@media (max-width: 768px) {
  .section__title h2 {
    font-size: 10.7vw;
    line-height: 1;
  }
}
.section__title h2 .red {
  color: #a21e1c;
}
.section__title h2 .fz32 {
  font-size: 32px;
}
@media (max-width: 768px) {
  .section__title h2 .fz32 {
    font-size: 6.9vw;
  }
}
.section__title p {
  position: relative;
  padding-top: 32px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .section__title p {
    font-size: 3.7vw;
    padding-top: 0;
  }
}
.section__title p::before, .section__title p::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section__title p:before {
  background: url(../img/title-mark.png) center center/cover no-repeat;
  width: 20px;
  height: 20px;
  top: 7px;
}
@media (max-width: 768px) {
  .section__title p:before {
    width: 5.3vw;
    height: 5.3vw;
    top: -4vw;
  }
}
.section__title p::after {
  background: #333;
  display: block;
  width: 1px;
  height: 54px;
  bottom: -10px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media (max-width: 768px) {
  .section__title p::after {
    display: none;
  }
}

/* ----------------------------------------
  フローティングボタン
---------------------------------------- */
.floating {
  position: fixed;
  bottom: 20px;
  right: 0;
  width: 430px;
  background: #fff;
  border-radius: 15px 0 0 15px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 500;
  text-decoration: none;
  color: inherit;
  display: block;
  padding-bottom: 26px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.6s ease-out, visibility 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.floating:hover .floating__btn {
  background: #1e6512;
}
@media (max-width: 768px) {
  .floating {
    width: 89%;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
    margin-top: 5.3vw;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: none;
    transition: none;
  }
}
.floating.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.floating__inner {
  position: relative;
}
.floating__head {
  background: #333;
  color: #fff;
  font-size: 18px;
  padding: 10px 0 10px 46px;
  margin-bottom: 15px;
  position: relative;
  border-radius: 15px 0 0 0;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .floating__head {
    font-size: 4.3vw;
    border-radius: 15px 15px 0 0;
    padding: 2.7vw 0 2.7vw 3.5vw;
  }
}
.floating__text {
  font-size: 17px;
  margin-top: 15px;
  line-height: 1.4;
  color: #333;
  margin-left: 36px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .floating__text {
    font-size: 3.7vw;
    margin-top: 4vw;
  }
}
.floating__text span {
  font-size: 40px;
  letter-spacing: -0.08em;
  display: inline-block;
  margin-left: -6px;
}
@media (max-width: 768px) {
  .floating__text span {
    font-size: 8.5vw;
  }
}
.floating__btn {
  background: #418535;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 10px 0;
  border-radius: 50px;
  margin: 15px 30px 0 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .floating__btn {
    font-size: 4.8vw;
    padding: 2.4vw 0;
  }
}
.floating__btn:hover {
  background: #1e6512;
}
.floating::before {
  content: "";
  position: absolute;
  top: -32px;
  right: 15px;
  width: 174.5px;
  height: 188px;
  background: url("../img/banner-img-pc.png") no-repeat center center/cover;
  z-index: 1;
}
@media (max-width: 768px) {
  .floating::before {
    background: url("../img/banner-img-sp.png") no-repeat center center/cover;
    width: 34.1vw;
    height: 38.1vw;
    right: 2.7vw;
    top: -3.5vw;
  }
}

.sp-floating {
  position: fixed;
  width: 89.6vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  margin-bottom: 2.7vw;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  -webkit-transition: opacity 0.6s ease-out, visibility 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.sp-floating.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
@media (min-width: 769px) {
  .sp-floating {
    display: none;
  }
}

/* ----------------------------------------
  ヘッダー
---------------------------------------- */
.header {
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1214px;
  max-width: 95%;
  margin: 0 auto;
  height: inherit;
  position: relative;
}
@media (max-width: 768px) {
  .header__inner {
    max-width: 90%;
  }
}
.header__logo {
  width: 350px;
  min-width: 250px;
  position: relative;
  z-index: 1000;
}
@media (max-width: 1100px) {
  .header__logo {
    width: 27.3vw;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 248px;
    min-width: 248px;
  }
}
.header__logo a {
  display: block;
  width: 100%;
  height: auto;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0;
}
@media (max-width: 1100px) {
  .header__menu {
    font-size: clamp(10px, 1.1vw, 14px);
    gap: 2.3vw;
  }
}
@media (max-width: 768px) {
  .header__menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 88%;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0;
    list-style: none;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 998;
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .header__menu.is-open {
    -webkit-transform: translateX(6%);
            transform: translateX(6%);
    opacity: 1;
    visibility: visible;
  }
}
.header__menu--item {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .header__menu--item {
    border-bottom: 1px solid #d4d1cf;
  }
  .header__menu--item:nth-last-child(2) {
    border-bottom: none;
  }
  .header__menu--item:last-child {
    border-bottom: none;
  }
  .header__menu--item:last-child a {
    background: #4a9f3c;
    height: 45px;
    line-height: 45px;
    padding: 0;
    border-radius: 100px;
    font-weight: normal !important;
  }
  .header__menu--item.sp-view {
    background: #4a9f3c;
    border-radius: 25px;
    border: none;
  }
  .header__menu--item.sp-view a {
    color: #fff !important;
    font-weight: bold;
  }
}
@media (max-width: 768px) {
  .header__menu--item a {
    display: block;
    padding: 18px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    border: none;
  }
}
.header__menu--item img {
  width: 21px;
  height: 21px;
}
@media (max-width: 768px) {
  .header__menu--item img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .header__menu--item.sp-view {
    display: none;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
  position: relative;
  background: #333;
  padding: 14px 12px;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hamburger__line {
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.hamburger__line:last-child {
  width: 70%;
}
.hamburger.is-active .hamburger__line {
  width: 120%;
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 997;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
  width: 100%;
}

/* ----------------------------------------
  FV
---------------------------------------- */
.fv__inner {
  overflow: hidden;
  margin: 0 auto;
}
.fv__bottom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  width: 1460px;
  height: 570px;
  padding-left: 584px;
}
@media (max-width: 1460px) {
  .fv__bottom {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .fv__bottom {
    width: 90%;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding-left: 0;
    padding-bottom: 165.3vw;
  }
}
.fv__bottom--text {
  white-space: nowrap;
  line-height: 1.8;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .fv__bottom--text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    width: 100%;
    white-space: wrap;
  }
}
.fv__bottom--text p {
  font-size: 30px;
}
@media (max-width: 768px) {
  .fv__bottom--text p {
    font-size: 5.9vw;
    letter-spacing: -0.05em;
  }
}
.fv__bottom--text p:nth-child(2) {
  font-size: 16px;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .fv__bottom--text p:nth-child(2) {
    font-size: 3.7vw;
    margin-top: 2.7vw;
    letter-spacing: 0;
  }
}
.fv__bottom::before, .fv__bottom::after {
  content: "";
  position: absolute;
}
.fv__bottom::before {
  top: 0;
  left: 0;
  background: url(../img/fv-bottom-left.png) center center/cover no-repeat;
  width: 514px;
  height: 570px;
}
@media (max-width: 768px) {
  .fv__bottom::before {
    background: url(../img/fv-bottom-left-sp.png) center center/cover no-repeat;
    width: 83.2vw;
    height: 65.9vw;
    top: auto;
    bottom: 0;
    left: -16vw;
    z-index: 100;
  }
}
.fv__bottom::after {
  bottom: 0;
  right: 0;
  background: url(../img/fv-bottom-right.png) center center/cover no-repeat;
  width: 355px;
  height: 309px;
}
@media (max-width: 768px) {
  .fv__bottom::after {
    width: 42.4vw;
    height: 36.8vw;
    right: -10.1vw;
    bottom: 26.7vw;
  }
}

/* ----------------------------------------
  POINT
---------------------------------------- */
.point {
  background: #fef6f0;
  padding: 80px 0 40px;
  margin-top: 110px;
  position: relative;
  z-index: -1;
}
.point:before, .point::after {
  position: absolute;
  content: "";
}
.point::before {
  background: url(../img/point-top.png) center center/cover no-repeat;
  width: 100%;
  height: 5.1vw;
  top: -5.1vw;
  left: 0;
}
.point::after {
  background: url(../img/point-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 5.1vw;
  bottom: -5.1vw;
  left: 0;
}
.point__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 95%;
}
@media (max-width: 768px) {
  .point__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
    gap: 0;
  }
}
.point__content {
  width: 790px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .point__content {
    max-width: 100%;
    margin: 0 auto;
  }
}
.point__content--parts:nth-child(n+2) {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .point__content--parts:nth-child(n+2) {
    margin-top: 13.3vw;
  }
}
@media (max-width: 768px) {
  .point__content--parts {
    margin-top: 13.3vw;
  }
}
.point__content--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #a21e1c;
  gap: 28px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .point__content--title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.point__content--title p {
  font-size: 15px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .point__content--title p {
    font-size: 3.2vw;
  }
}
.point__content--title p span {
  font-size: 36px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .point__content--title p span {
    font-size: 8vw;
  }
}
.point__content--title h3 {
  color: #333;
  font-size: 34px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .point__content--title h3 {
    font-size: 6.4vw;
    margin-top: 1.3vw;
  }
}
.point__content--title h3 span.fz24 {
  font-size: 24px;
}
@media (max-width: 768px) {
  .point__content--title h3 span.fz24 {
    font-size: 4.8vw;
  }
}
.point__content--title h3 .dots {
  position: relative;
}
.point__content--title h3 .dots::before {
  content: "・";
  position: absolute;
  top: -0.6em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.8em;
  color: inherit;
}
@media (max-width: 768px) {
  .point__content--title.point04 {
    gap: 0;
  }
}
.point__content--title.point04 h3 {
  text-align: center;
  line-height: 1.5;
}
.point__content--text {
  margin-top: 15px;
  line-height: 1.8;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .point__content--text {
    font-size: 3.7vw;
    margin-top: 5.3vw;
  }
}
.point__content--text.point04 {
  margin-top: 26px;
}
@media (max-width: 768px) {
  .point__content--text.point04 {
    margin-top: 5.3vw;
  }
}
.point__content--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.point__content--flex.point01-1 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 44px;
}
@media (max-width: 768px) {
  .point__content--flex.point01-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}
.point__content--flex.point01-1 div:first-child {
  width: 40.5%;
}
@media (max-width: 768px) {
  .point__content--flex.point01-1 div:first-child {
    width: 100%;
    margin-top: 5.3vw;
  }
}
.point__content--flex.point01-1 div:nth-child(2) {
  margin-top: 5px;
  width: 53%;
}
@media (max-width: 768px) {
  .point__content--flex.point01-1 div:nth-child(2) {
    width: 100%;
    margin-top: 8.5vw;
  }
}
.point__content--flex.point01-2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 34px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
  margin-top: 22px;
  position: relative;
}
@media (max-width: 768px) {
  .point__content--flex.point01-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6.4vw 6.9vw;
    margin-top: 13.3vw;
  }
}
.point__content--flex.point01-2 p {
  font-size: 14px;
}
.point__content--flex.point01-2 p:first-child {
  font-weight: bold;
}
@media (max-width: 768px) {
  .point__content--flex.point01-2 p:first-child {
    font-size: 3.7vw;
  }
}
.point__content--flex.point01-2 p:nth-child(2) {
  width: 74.5%;
}
@media (max-width: 768px) {
  .point__content--flex.point01-2 p:nth-child(2) {
    width: 100%;
    font-size: 3.7vw;
    margin-top: 4.3vw;
  }
}
.point__content--flex.point01-2::before, .point__content--flex.point01-2::after {
  position: absolute;
  content: "";
}
.point__content--flex.point01-2::before {
  background: url(../img/light.png) center center/cover no-repeat;
  top: -17px;
  left: -18px;
  width: 55px;
  height: 55px;
}
@media (max-width: 768px) {
  .point__content--flex.point01-2::before {
    top: -8vw;
    left: -2.7vw;
    width: 16vw;
    height: 16vw;
  }
}
.point__content--flex.point01-2::after {
  background: url(../img/fun-design.png) center center/cover no-repeat;
  bottom: -38px;
  right: -82px;
  width: 127px;
  height: 62px;
}
@media (max-width: 768px) {
  .point__content--flex.point01-2::after {
    bottom: -7.5vw;
    right: -9.3vw;
    width: 25.6vw;
    height: 12.8vw;
  }
}
.point__content--flex.point03-1 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .point__content--flex.point03-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.3vw;
    margin-top: 5.3vw;
  }
}
.point__content--flex.point03-1 img:first-child {
  width: 48%;
}
@media (max-width: 768px) {
  .point__content--flex.point03-1 img:first-child {
    width: 100%;
  }
}
.point__content--flex.point03-1 img:nth-child(2) {
  width: 46%;
}
@media (max-width: 768px) {
  .point__content--flex.point03-1 img:nth-child(2) {
    width: 100%;
  }
}
.point__content--img {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .point__content--img {
    margin-top: 5.3vw;
  }
}
.point__content--img.point04-1 img {
  border-radius: 15px;
}
.point__content--img.point04-2 {
  margin: 26px auto;
  width: 92%;
}
@media (max-width: 768px) {
  .point__content--img.point04-2 {
    width: 87%;
    margin-top: 5.3vw;
  }
}
/* ----------------------------------------
  REASON
---------------------------------------- */
.reason {
  padding: 140px 0 40px;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .reason {
    padding: 25.3vw 0 0;
  }
}
.reason:before, .reason::after {
  position: absolute;
  content: "";
}
.reason__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 57px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 95%;
}
@media (max-width: 768px) {
  .reason__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.reason__content {
  width: 790px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .reason__content {
    max-width: 100%;
    margin: 0 auto;
  }
}
.reason__content--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .reason__content--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .reason__content--flex p {
    margin-left: 24vw;
  }
  .reason__content--flex p:first-child {
    margin-top: -10.7vw !important;
  }
}
.reason__content--flex:first-child p {
  margin-top: 30px;
}
.reason__content--flex:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: -44px;
}
@media (max-width: 768px) {
  .reason__content--flex:nth-child(2n) {
    margin-top: 5.3vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
}
.reason__content--flex:nth-child(2n) p {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .reason__content--flex:nth-child(2n) p {
    margin-left: -46.7vw;
  }
  .reason__content--flex:nth-child(2n) p:first-child {
    margin-top: -17.3vw !important;
  }
}
.reason__content--flex:nth-child(n+2) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reason__content--flex:nth-child(3) {
  margin-top: 5.3vw;
}
@media (max-width: 768px) {
  .reason__content--flex:nth-child(3) p {
    margin-left: 30.7vw;
  }
  .reason__content--flex:nth-child(3) p:first-child {
    margin-top: -14.7vw !important;
  }
}
.reason__content--flex img {
  width: 47%;
  border-radius: 14px;
}
@media (max-width: 768px) {
  .reason__content--flex img {
    width: 61.3vw;
  }
}
.reason__content--flex div {
  width: 47%;
}
.reason__content--flex div p {
  background: #b8946d;
  color: #fff;
  font-size: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 13px;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1.2;
}
.reason__content--flex div p.fz24 {
  font-size: 24px;
}
@media (max-width: 1060px) {
  .reason__content--flex div p.fz24 {
    font-size: 2.3vw;
  }
}
@media (max-width: 768px) {
  .reason__content--flex div p.fz24 {
    font-size: 4.5vw;
    padding: 1.3vw 2.1vw;
  }
}
@media (max-width: 1060px) {
  .reason__content--flex div p {
    font-size: 3vw;
  }
}
@media (max-width: 768px) {
  .reason__content--flex div p {
    font-size: 6.4vw;
  }
}
.reason__content--flex div p span.fz24 {
  font-size: 24px;
}
@media (max-width: 1060px) {
  .reason__content--flex div p span.fz24 {
    font-size: 2.3vw;
  }
}
@media (max-width: 768px) {
  .reason__content--flex div p span.fz24 {
    font-size: 4.5vw;
  }
}
.reason__content--flex div p:nth-child(2) {
  margin-top: 8px;
}
.reason__recommend {
  width: 850px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #b8946d;
  margin: 67px auto 0;
  border-radius: 21px;
  padding: 24px 30px 34px;
  background: #fafafa;
  max-width: 90%;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .reason__recommend {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 9.3vw 4.8vw 2.7vw;
    gap: 9.6vw;
  }
}
.reason__recommend--sp-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.7vw;
  width: 132px;
}
.reason__recommend--sp-flex img {
  width: 132px;
  height: 132px;
}
@media (max-width: 768px) {
  .reason__recommend--sp-flex img {
    width: 35.7vw;
    height: 35.7vw;
  }
}
.reason__recommend--sp-flex p {
  font-size: 3.5vw;
  color: #b8946d;
  width: 43vw;
  letter-spacing: 0;
}
.reason__recommend--sp-flex p span {
  color: #333;
}
@media (max-width: 768px) {
  .reason__recommend--sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
.reason__recommend--text p {
  letter-spacing: 0;
}
.reason__recommend--text p:first-child {
  font-size: 16px;
  line-height: 2.6;
  color: #333;
  margin-bottom: 18px;
  background: repeating-linear-gradient(transparent 0, transparent calc(2.6em - 1px), #b8946d calc(2.6em - 1px), #b8946d 2.6em);
  padding-bottom: 1.3em;
}
@media (max-width: 768px) {
  .reason__recommend--text p:first-child {
    font-size: 4.3vw;
    line-height: 2.6;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    background: repeating-linear-gradient(transparent 0, transparent calc(2.6em - 2px), #b8946d calc(2.6em - 2px), #b8946d calc(2.6em - 1px));
    padding-bottom: 2em;
  }
}
.reason__recommend--text p:nth-child(2) {
  font-size: 13px;
  color: #b8946d;
  line-height: 1.6;
  letter-spacing: 0;
}
.reason__recommend--text p:nth-child(2) span {
  color: #333;
}
.reason__color-bg {
  background: #fef6f0;
  padding: 80px 0 40px;
  margin-top: 150px;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .reason__color-bg {
    margin-top: 24vw;
    padding: 18.7vw 0 10.7vw;
  }
}
.reason__color-bg:before, .reason__color-bg::after {
  position: absolute;
  content: "";
}
.reason__color-bg::before {
  background: url(../img/reason-top.png) center center/contain no-repeat;
  width: 100%;
  height: 4.1vw;
  top: -4.1vw;
  left: 0;
}
.reason__color-bg::after {
  background: url(../img/reason-bottom.png) center center/contain no-repeat;
  width: 100%;
  height: 4.4vw;
  bottom: -4.1vw;
  left: 0;
}
.reason__for {
  width: 850px;
  max-width: 92%;
  margin: 0 auto;
  position: relative;
}
.reason__for::before {
  content: "";
  background: url(../img/fun-design.png) center center/cover no-repeat;
  width: 136px;
  height: 67px;
  position: absolute;
  top: -150px;
  left: 0;
}
@media (max-width: 768px) {
  .reason__for::before {
    top: -29.3vw;
    left: 8vw;
    width: 27.2vw;
    height: 13.3vw;
  }
}
.reason__for--head {
  text-align: center;
  font-size: 26px;
}
@media (max-width: 768px) {
  .reason__for--head {
    font-size: 6.4vw;
  }
}
.reason__for--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  gap: 38px 0;
}
@media (max-width: 768px) {
  .reason__for--flex {
    gap: 7.5vw 0;
    margin-top: 5.3vw;
  }
}
.reason__for--flex div {
  width: 31.5%;
}
@media (max-width: 768px) {
  .reason__for--flex div {
    width: 47.5%;
  }
}
.reason__for--flex div img {
  border-radius: 15px;
}
.reason__for--flex div p {
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .reason__for--flex div p {
    font-size: 3.7vw;
    margin-top: 1.9vw;
  }
}
.reason__but {
  margin-top: 73px;
}
@media (max-width: 768px) {
  .reason__but {
    margin-top: 10.7vw;
  }
}
.reason__but--head {
  text-align: center;
  font-size: 24px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .reason__but--head {
    font-size: 4.3vw;
  }
}
.reason__but--head::after {
  content: "?";
  font-family: "ten-mincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 100px;
  color: #b8946d;
  position: absolute;
  -webkit-transform: rotate(20deg) translateY(-50%);
          transform: rotate(20deg) translateY(-50%);
  right: -40px;
  top: 50%;
}
@media (max-width: 768px) {
  .reason__but--head::after {
    top: 0;
    font-size: 16vw;
    right: 10.7vw;
  }
}
.reason__but--head span {
  font-size: 36px;
}
@media (max-width: 768px) {
  .reason__but--head span {
    font-size: 6.4vw;
  }
}
.reason__but--img1 {
  width: 850px;
  max-width: 95%;
  margin: 50px auto 0;
}
@media (max-width: 768px) {
  .reason__but--img1 {
    width: 85%;
    margin-top: 6.7vw;
  }
}
.reason__but--img2 {
  width: 804px;
  max-width: 95%;
  margin: 42px auto 0;
}
@media (max-width: 768px) {
  .reason__but--img2 {
    margin-top: 10.9vw;
  }
}
.reason__but--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 850px;
  max-width: 90%;
  margin: 0 auto;
  gap: 40px;
}
@media (max-width: 768px) {
  .reason__but--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10.7vw;
    gap: 5.3vw;
  }
}
.reason__but--img3 {
  width: 377px;
  margin: 43px auto;
}
@media (max-width: 768px) {
  .reason__but--img3 {
    width: 69.3vw;
    margin: 10.7vw auto 5.3vw;
  }
}
.reason__but--dashikatsu {
  width: 850px;
  max-width: 90%;
  margin: 26px auto 0;
}
@media (max-width: 768px) {
  .reason__but--dashikatsu {
    margin-top: 5.3vw;
  }
}
.reason__but--contain {
  position: relative;
  width: 850px;
  max-width: 90%;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  .reason__but--contain {
    margin-top: 10.7vw;
  }
}
.reason__but--contain div {
  position: absolute;
  top: 53%;
  color: #fff;
  width: 51%;
  left: 38%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .reason__but--contain div {
    left: 4.8vw;
    width: 90%;
    top: 50%;
  }
}
.reason__but--contain div p {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .reason__but--contain div p:first-child {
    font-size: 4.3vw;
  }
}
.reason__but--contain div p:nth-child(2) {
  font-size: 24px;
}
@media (max-width: 768px) {
  .reason__but--contain div p:nth-child(2) {
    font-size: 6.4vw;
  }
}
.reason__but--contain div p:nth-child(3) {
  font-size: 14px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .reason__but--contain div p:nth-child(3) {
    font-size: 3.7vw;
    margin-top: 6.4vw;
  }
}
.reason__but--comparison {
  width: 850px;
  margin: 72px auto 0;
  max-width: 95%;
  position: relative;
}
@media (max-width: 960px) {
  .reason__but--comparison {
    margin-left: 5%;
  }
}
@media (max-width: 768px) {
  .reason__but--comparison {
    margin-top: 14.1vw;
  }
}
.reason__but--comparison::after {
  content: "";
  background: url(../img/fun-design.png) center center/cover no-repeat;
  width: 136px;
  height: 67px;
  position: absolute;
  top: -20px;
  right: -136px;
}
@media (max-width: 768px) {
  .reason__but--comparison::after {
    top: 2.1vw;
    right: -8vw;
    width: 23.7vw;
    height: 11.7vw;
  }
}
.reason__but--comparison p {
  text-align: center;
  font-size: 26px;
}
@media (max-width: 768px) {
  .reason__but--comparison p {
    font-size: 5.3vw;
  }
}
.reason__but--comparison div {
  margin-top: 21px;
  position: relative;
  overflow-x: scroll;
}
@media (max-width: 768px) {
  .reason__but--comparison div {
    margin-top: 5.3vw;
  }
}
.reason__but--comparison div img:first-child {
  width: 850px;
}
.reason__but--comparison div img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 10;
  width: 150px;
  height: auto;
  -webkit-animation: gentle-sway 3s ease-in-out infinite;
          animation: gentle-sway 3s ease-in-out infinite;
}
.reason__but--comparison div img:nth-child(2).show-scroll-hint {
  opacity: 0.5;
}
.reason__but--comparison div img:nth-child(2).fade-out-scroll-hint {
  opacity: 0;
}
@-webkit-keyframes gentle-sway {
  50% {
    -webkit-transform: translate(-40%, -50%);
            transform: translate(-40%, -50%);
  }
}
@keyframes gentle-sway {
  50% {
    -webkit-transform: translate(-40%, -50%);
            transform: translate(-40%, -50%);
  }
}
.reason__but--message {
  background: #fff;
  width: 850px;
  max-width: 90%;
  padding: 40px 50px;
  margin: 70px auto 0;
  border-radius: 6px 6px 12px 12px;
  -webkit-box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
  margin-bottom: 50px;
  position: relative;
}
.reason__but--message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #a21e1c;
  border-radius: 6px 6px 0 0;
}
.reason__but--message::after {
  content: "";
  background: url(../img/fun-design.png) center center/cover no-repeat;
  width: 136px;
  height: 67px;
  position: absolute;
  bottom: -130px;
  left: -136px;
  z-index: 10;
}
@media (max-width: 768px) {
  .reason__but--message::after {
    bottom: -22.7vw;
    left: -5.3vw;
    width: 24.5vw;
    height: 12vw;
  }
}
@media (max-width: 768px) {
  .reason__but--message {
    padding: 5.3vw 5.9vw;
    margin-bottom: 10.7vw;
  }
}
.reason__but--message .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .reason__but--message .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.3vw;
  }
}
.reason__but--message .flex .left {
  width: 168px;
  min-width: 168px;
}
@media (max-width: 768px) {
  .reason__but--message .flex .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.1vw;
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .reason__but--message .flex .left img {
    width: 26.7vw;
  }
}
.reason__but--message .flex .left p {
  font-size: 13px;
  letter-spacing: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 14px auto 0;
}
@media (max-width: 768px) {
  .reason__but--message .flex .left p {
    margin: 0;
    font-size: 3.5vw;
  }
}
.reason__but--message .flex .left p span {
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .reason__but--message .flex .left p span {
    font-size: 4.3vw;
  }
}
.reason__but--message .flex .right p:first-child {
  font-size: 22px;
}
@media (max-width: 768px) {
  .reason__but--message .flex .right p:first-child {
    font-size: 4.8vw;
  }
}
.reason__but--message .flex .right p:nth-child(2) {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .reason__but--message .flex .right p:nth-child(2) {
    font-size: 3.7vw;
    margin-top: 2.7vw;
  }
}

/* ----------------------------------------
  QUESTION
---------------------------------------- */
.question {
  padding: 80px 0 40px;
  margin: 30px 0 100px;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .question {
    margin: 5.3vw 0 16vw;
  }
}
.question:before, .question::after {
  position: absolute;
  content: "";
}
.question__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 57px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 95%;
}
@media (max-width: 768px) {
  .question__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.question__content {
  width: 790px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .question__content {
    max-width: 100%;
    margin: 0 auto;
  }
}
.question__content .qa__item {
  border-bottom: 1px solid #ebdbdb;
}
.question__content .qa__label, .question__content .qa__a::before, .question__content .qa__q::before {
  position: absolute;
  left: 16px;
  top: 18px;
  font-weight: 700;
  font-size: 18px;
  color: #a21e1c;
}
.question__content .qa__q {
  position: relative;
  margin: 0;
}
.question__content .qa__q button {
  width: 100%;
  text-align: left;
  padding: 18px 48px 18px 60px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  background: #fff;
  border: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .question__content .qa__q button {
    font-size: 18px;
    padding: 20px 28px 23px 50px;
  }
}
.question__content .qa__q button::before, .question__content .qa__q button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 21px;
  height: 1px;
  background: #a21e1c;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.question__content .qa__q button::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.question__content .qa__q button:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.question__content .qa__q::before {
  content: "Q";
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  top: 10px;
}
@media (max-width: 768px) {
  .question__content .qa__q::before {
    font-size: 24px;
    top: 15px;
  }
}
.question__content .qa__a {
  display: none;
  position: relative;
  padding: 8px 28px 16px 60px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .question__content .qa__a {
    margin-top: 0;
  }
}
.question__content .qa__a::before {
  content: "A";
  top: 4px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
}
@media (max-width: 768px) {
  .question__content .qa__a::before {
    font-size: 24px;
  }
}
.question__content .qa__a p {
  line-height: 1.8;
}
.question__content .qa__item.is-open .qa__q button::after {
  opacity: 0;
}

/* ----------------------------------------
  RECIPE
---------------------------------------- */
.recipe {
  padding: 80px 0;
  margin: 30px 0 0;
  position: relative;
  z-index: -1;
  background: #fff7ef;
}
@media (max-width: 768px) {
  .recipe {
    margin: 8vw 0;
    padding: 16vw 0;
  }
}
.recipe:before, .recipe::after {
  position: absolute;
  content: "";
}
.recipe::before {
  background: url(../img/recipe-top.png) center center/cover no-repeat;
  width: 100%;
  height: 5.1vw;
  top: -5.1vw;
  left: 0;
}
.recipe::after {
  background: url(../img/recipe-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 5.1vw;
  bottom: -5.1vw;
  left: 0;
}
@media (max-width: 768px) {
  .recipe {
    margin-top: 5.3vw;
  }
}
.recipe__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 57px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 95%;
  position: relative;
}
@media (max-width: 768px) {
  .recipe__inner {
    gap: 10.7vw;
  }
}
.recipe__inner::before {
  content: "";
  background: url(../img/fun-design.png) center center/cover no-repeat;
  width: 136px;
  height: 67px;
  position: absolute;
  top: -170px;
  right: 160px;
}
@media (max-width: 768px) {
  .recipe__inner::before {
    top: -24vw;
    right: -8vw;
    width: 24.5vw;
    height: 12vw;
  }
}
@media (max-width: 768px) {
  .recipe__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.recipe__content {
  width: 790px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .recipe__content {
    max-width: 100%;
    margin: 0 auto;
  }
}
.recipe__content--text {
  font-size: 18px;
}
@media (max-width: 768px) {
  .recipe__content--text {
    font-size: 3.7vw;
  }
}
.recipe__content--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
  gap: 20px 0;
}
@media (max-width: 768px) {
  .recipe__content--flex {
    margin-top: 5.3vw;
    gap: 5.3vw 0;
  }
}
.recipe__content--flex div {
  width: 30.5%;
}
@media (max-width: 768px) {
  .recipe__content--flex div {
    width: 48%;
  }
}
.recipe__content--flex div p {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .recipe__content--flex div p {
    font-size: 3.7vw;
  }
}
.recipe__content--link {
  color: #b8946d;
  border: 1px solid #b8946d;
  background: #fff;
  font-size: 14px;
  width: 320px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  border-radius: 100px;
  font-weight: bold;
  margin: 38px auto 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recipe__content--link:hover {
  background: #b8946d;
  color: #fff;
  border: #b8946d;
  opacity: 1;
}
@media (max-width: 768px) {
  .recipe__content--link {
    margin-top: 8vw;
    font-size: 3.7vw;
    width: 85.3vw;
    height: 13.3vw;
    line-height: 13.3vw;
  }
}

/* ----------------------------------------
  VOICE
---------------------------------------- */
.voice {
  padding: 170px 0 150px;
  margin-top: 30px;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .voice {
    margin-top: 5.3vw;
    padding: 16vw 0 16vw;
  }
}
.voice__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 57px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 95%;
}
@media (max-width: 768px) {
  .voice__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.voice__content {
  width: 790px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .voice__content {
    max-width: 100%;
    margin: 0 auto;
  }
}
.voice__content--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
.voice__content--flex img {
  width: 140px;
  height: 140px;
}
@media (max-width: 768px) {
  .voice__content--flex img {
    width: 21.3vw;
    height: 21.3vw;
  }
}
.voice__content--flex .text {
  background: #f6f6f6;
  border-radius: 15px;
  padding: 20px 30px;
  position: relative;
}
@media (max-width: 768px) {
  .voice__content--flex .text {
    padding: 5.3vw;
  }
}
.voice__content--flex .text::after {
  position: absolute;
  content: "";
  left: -30px;
  top: 35%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 35px solid #f6f6f6;
  border-left: 0;
}
@media (max-width: 768px) {
  .voice__content--flex .text::after {
    display: none;
  }
}
.voice__content--flex .text p:nth-child(2) {
  margin-top: 6px;
}
@media (max-width: 768px) {
  .voice__content--flex .text p:nth-child(2) {
    font-size: 4.3vw;
    margin-top: 2.7vw;
  }
}
.voice__content--flex .text p:nth-child(3) {
  font-size: 13px;
  text-align: right;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .voice__content--flex .text p:nth-child(3) {
    font-size: 3.5vw;
    margin-top: 1.6vw;
  }
}
@media (max-width: 768px) {
  .voice__content--flex .text .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.1vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.voice__content--flex .text .head p {
  font-weight: bold;
  font-size: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}
@media (max-width: 768px) {
  .voice__content--flex .text .head p {
    font-size: 4.8vw;
  }
}
.voice__content--flex:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.voice__content--flex:nth-child(2n) .text::after {
  left: auto;
  right: -30px;
  border-left: 35px solid #f6f6f6;
  border-right: 0;
}
@media (max-width: 768px) {
  .voice__content--flex:nth-child(2n) .text::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .voice__content--flex:nth-child(2n) .text .head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.voice__content--flex:nth-child(n+2) {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .voice__content--flex:nth-child(n+2) {
    margin-top: 4.5vw;
  }
}

/* ----------------------------------------
  PRODUCT
---------------------------------------- */
.product {
  padding: 130px 0 87px;
  margin-top: 30px;
  position: relative;
  z-index: -1;
  background: #fff7ef;
}
@media (max-width: 768px) {
  .product {
    padding: 21.3vw 0 16vw;
    margin-top: 5.3vw;
  }
}
.product::before {
  position: absolute;
  content: "";
  background: url(../img/recipe-top.png) center center/cover no-repeat;
  width: 100%;
  height: 5.1vw;
  top: -5.1vw;
  left: 0;
}
.product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 57px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 95%;
}
@media (max-width: 768px) {
  .product__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.product__content {
  width: 790px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .product__content {
    max-width: 100%;
    margin: 0 auto;
  }
}
.product__content--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 58px;
}
@media (max-width: 768px) {
  .product__content--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.3vw;
  }
}
.product__content--flex:nth-child(n+2) {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .product__content--flex:nth-child(n+2) {
    margin-top: 5.9vw;
  }
}
.product__content--flex img {
  width: 310px;
}
@media (max-width: 768px) {
  .product__content--flex img {
    width: 100%;
  }
}
.product__content--flex div p:first-child {
  background: #a21e1c;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 8px;
  font-size: 14px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .product__content--flex div p:first-child {
    margin-top: 0;
    font-size: 3.7vw;
    padding: 0.5vw 2.7vw;
  }
}
.product__content--flex div p:nth-child(2) {
  font-size: 18px;
  margin-top: 12px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .product__content--flex div p:nth-child(2) {
    font-size: 4.8vw;
  }
}
.product__content--flex div p:nth-child(3) {
  font-size: 13px;
}
@media (max-width: 768px) {
  .product__content--flex div p:nth-child(3) {
    font-size: 3.5vw;
  }
}
.product__content--flex div p:nth-child(4) {
  font-size: 30px;
  margin-top: 5px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .product__content--flex div p:nth-child(4) {
    font-size: 8vw;
  }
}
.product__content--flex div p:nth-child(4) span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .product__content--flex div p:nth-child(4) span {
    font-size: 4.8vw;
  }
}

/* ----------------------------------------
  PRESENT
---------------------------------------- */
.present {
  background: #cf090b;
}
.present__inner {
  padding: 24px 0;
}
@media (max-width: 768px) {
  .present__inner {
    padding: 5.3vw 0;
  }
}
.present__head {
  color: #fff;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 768px) {
  .present__head {
    font-size: 5.3vw;
  }
}
.present__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 36px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .present__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.7vw;
    margin-top: 3.5vw;
  }
}
.present__flex a {
  width: 352px;
  height: 55px;
  display: block;
  color: #cf090b;
  font-size: 18px;
  background: #fff;
  border: 2px solid #cf090b;
  text-align: center;
  line-height: 55px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.present__flex a:hover {
  background: #cf090b;
  color: #fff;
  border: 2px solid #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .present__flex a {
    width: 89.1vw;
    height: 12vw;
    font-size: 4.8vw;
    line-height: 12vw;
  }
}

/* ----------------------------------------
  FOOTER
---------------------------------------- */
.footer {
  padding: 20px 0 20px;
}
@media (max-width: 768px) {
  .footer {
    padding: 2.7vw 0 21.3vw;
  }
}
.footer img {
  width: 450px;
  max-width: 92%;
  margin: 0 auto;
  display: block;
}