@charset "UTF-8";
/* ====== 基本設定（モバイルファースト） ====== */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

:root {
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Helvetica,
    Arial, sans-serif;
  --font-serif: "Hina Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --font-baskerville: "Libre Baskerville", serif;
  --text: #000;
  --muted: #6b7280;
  --bg: #fff;
  --bg-soft: #f7f8fa;
  --primary: #0b6bff;
  --primary-ink: #fff;
  --accent: #111827;
  --r-1: clamp(1.4rem, 3.6vw, 1.6rem); /* 14–16px */
  --r-2: clamp(1.6rem, 4.4vw, 2rem); /* 18–20px */
  --r-3: clamp(2.2rem, 5.2vw, 3rem); /* 22–28px */
  --r-4: clamp(2.8rem, 6.2vw, 3.6rem); /* 28–36px */
  --r-5: clamp(3rem, 7.2vw, 5rem);
  --space: clamp(2rem, 6vw, 4rem); /* 20–40px */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font: 1.6rem/1.7 var(--font-sans);
  background: var(--bg);
  position: relative;
}

/* ====== 共通レイアウト ====== */
.grecaptcha-badge {
  visibility: hidden;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.no-wrap {
  text-wrap: nowrap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  padding: 0;
  margin: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
  margin: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #fff;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

input,
select,
button,
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
}

[id] {
  scroll-margin-top: 140px;
}

.pc {
  display: none;
}

.container {
  width: 100%;
  padding: 0 2rem;
}

.bg-noize {
  background: #efe2d2;
}
.bg-noize > section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/bg_noize.png);
  background-repeat: repeat;
  background-size: 846px; /* タイルの大きさ調整 */
  mix-blend-mode: multiply;
  pointer-events: none; /* クリック操作を邪魔しない */
  z-index: 0; /* 後ろ */
}
.bg-noize > * {
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: #000;
  border-radius: 30px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  height: 60px;
  width: 300px;
}
.cta-btn.sans {
  font-family: var(--font-sans);
}

.sec__title {
  font-family: var(--font-serif);
  font-size: var(--r-5);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.sec__head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.sec__head .sec__ttlwrap .sec_subttl {
  margin-left: -2rem;
}
.sec__head .sec__ttlwrap .sec__title {
  margin-top: -1rem;
  margin-left: 0.5rem;
}
.sec__head .sec__desc .sec__desc_ttl {
  font-size: var(--r-2);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-bottom: 1rem;
}
.sec__head .sec__desc .sec__desc_txt,
.sec__head .sec__desc .sec__desc_txt-s {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}

.btn-download {
  border-radius: 20px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition: all 0.3s ease-out;
}
.btn-download:hover {
  opacity: 0.7;
}

.btn-sample {
  border-radius: 20px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition: all 0.3s ease-out;
}
.btn-sample:hover {
  opacity: 0.7;
}

/* ====== ヘッダー ====== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  border-bottom: 1px solid #fff;
  z-index: 10;
  height: 60px;
  transition: background 1s ease;
}
.header.bg-black {
  background: #000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  position: absolute;
  left: 20px;
  top: 14px;
}
.logo-wrap .logo {
  display: block;
  width: 92px;
  height: 30px;
}
.logo-wrap .logo img {
  display: block;
}
.logo-wrap .desc {
  display: none;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6666;
  letter-spacing: 0.05em;
}

.header_right {
  position: absolute;
  top: 9px;
  right: 70px;
}
.header_right .btns-wrap {
  display: none;
}
.header_right .tel-wrap .tel {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.header_right .tel-wrap .time {
  color: #fff;
  font-size: 1rem;
  margin-top: -4px;
  letter-spacing: 0.01em;
}

.gnav {
  display: none;
  gap: 16px;
  align-items: center;
}

.gnav a {
  color: #111827;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact .header_right {
  right: 20px;
}

/* ====== Hamburger (SP) ====== */
.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 60px;
  transition: all 0.1s ease-out;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger__bar {
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* 変形（開いた時） */
.hamburger.is-open .hamburger__bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.is-open .hamburger__bar:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ====== Off-canvas nav ====== */
.spnav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: saturate(120%) blur(1px);
  z-index: 90;
  top: 60px;
}

.spnav {
  position: fixed;
  top: 60px;
  right: 0;
  height: 100dvh;
  width: min(82vw, 360px);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  display: block;
  background-color: #efe2d2;
}
.spnav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/bg_noize.png);
  background-repeat: repeat;
  background-size: 846px; /* タイルの大きさ調整 */
  mix-blend-mode: multiply;
  pointer-events: none; /* クリック操作を邪魔しない */
  z-index: 0; /* 後ろ */
}
.spnav.is-open {
  transform: translateX(0);
  box-shadow: -16px 0 32px rgba(0, 0, 0, 0.12);
}

.spnav__inner {
  padding: 3rem 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.spnav__inner a {
  color: #222;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}
.spnav__inner a:not(:last-child) {
  padding-bottom: 1.2rem;
}
.spnav__inner a::after {
  position: absolute;
  right: 0;
  top: 8px;
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  border: 1px solid #000;
  border-left-width: 0;
  border-top-width: 0;
  transform: translate(0, 0) rotate(-45deg);
  background: none;
}

body.menu-open {
  overflow: hidden;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hamburger__bar,
  .spnav {
    transition: none;
  }
}
/* ====== SPナビ ====== */
.header .nav-sp {
  margin-top: 60px;
  transition: background 1s ease;
  width: 100%;
}
.header .nav-sp.bg-black {
  background: #000;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.header .nav-sp ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.header .nav-sp ul li {
  width: 33.3333333333%;
  border-bottom: 1px solid #707070;
  height: 40px;
}

.header .nav-sp ul li:not(:nth-child(3n)) {
  border-right: 1px solid #707070;
}

.header .nav-sp ul li a {
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  transition: opacity 0.3s ease-out;
  color: #fff;
  text-decoration: none;
}

.header .nav-sp ul li a:active {
  opacity: 0.7;
}

.page .header .nav-sp,
.error404 .header .nav-sp {
  background: #efe2d2;
  position: relative;
}
.page .header .nav-sp::before,
.error404 .header .nav-sp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/bg_noize.png);
  background-repeat: repeat;
  background-size: 846px;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.page .header .nav-sp ul li a,
.error404 .header .nav-sp ul li a {
  color: #000;
}

/* ====== CTA ====== */
.cta {
  background: #b18d5d;
  padding: 3rem 0 6rem;
  color: #fff;
}
.cta .txt-wrap .zenkoku {
  margin-left: -3rem;
}
.cta .txt-wrap .sec__title {
  font-weight: 400;
  color: #fff;
  font-size: var(--r-3);
  letter-spacing: 0.1em;
  line-height: 1.66666;
  margin-top: -4.5rem;
  margin-left: 4rem;
}
.cta .tel-wrap {
  margin-bottom: 2rem;
  text-align: center;
}
.cta .tel-wrap .tel-block {
  width: 262px;
  margin: 0 auto 2rem;
  text-align: left;
}
.cta .tel-wrap .tel-block .tel {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 3rem;
  letter-spacing: 0.1em;
}
.cta .tel-wrap .tel-block .time {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 1px;
}
.cta .tel-wrap .free-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.cta .tel-wrap .free-block .circle {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: var(--r-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cta .tel-wrap .free-block .free-txt {
  text-align: left;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.cta .btns-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.cta .btns-wrap .cta-btn {
  background: #fff;
  max-width: 300px;
  height: 60px;
  align-content: center;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #000;
  width: 300px;
  border-radius: 30px;
}

/* ====== フッター ====== */
.footer {
  background: url(../images/footer-bk-sp.jpg) no-repeat;
  background-position-x: 42%;
  background-position-y: center;
  background-size: cover;
  padding: 4rem 0 10rem;
}
.footer .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer .footer-inner .container {
  max-width: 620px;
  margin-left: 0;
  margin-right: auto;
}
.footer .footer-inner .container .footer-ttl {
  font-family: var(--font-serif);
  font-size: var(--r-3);
  letter-spacing: 0.1em;
  line-height: 1.6666;
  margin-bottom: 2.5rem;
}
.footer .footer-inner .container .footer-zenkoku {
  position: relative;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.footer .footer-inner .container .footer-zenkoku::before, .footer .footer-inner .container .footer-zenkoku::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc((100% - 280px) / 2);
  height: 1px;
  background: #000;
}
.footer .footer-inner .container .footer-zenkoku::before {
  left: 0;
  transform: translateY(-50%);
}
.footer .footer-inner .container .footer-zenkoku::after {
  right: 0;
  transform: translateY(-50%);
}
.footer .footer-inner .container .tel-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer .footer-inner .container .tel-btn-wrap .tel-wrap .tel-block {
  width: 262px;
  margin: 0 auto;
}
.footer .footer-inner .container .tel-btn-wrap .tel-wrap .tel-block .tel {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1.26;
  margin-bottom: 1px;
}
.footer .footer-inner .container .tel-btn-wrap .tel-wrap .tel-block .time {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #000;
}
.footer .footer-inner .container .tel-btn-wrap .tel-wrap .free-block {
  margin-top: 2rem;
  display: flex;
  gap: 1.9rem;
  align-items: center;
  justify-content: center;
}
.footer .footer-inner .container .tel-btn-wrap .tel-wrap .free-block .circle {
  border-radius: 50%;
  border: 1px solid #000;
  width: 60px;
  height: 60px;
  text-align: center;
  align-content: center;
  font-size: 1.6rem;
}
.footer .footer-inner .container .tel-btn-wrap .tel-wrap .free-block .free-txt {
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: 0.1em;
}
.footer .footer-inner .container .tel-btn-wrap .btns-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
}
.footer .footer-inner .container .footer-bottom {
  margin-top: 5rem;
}
.footer .footer-inner .container .footer-bottom .privacy {
  display: block;
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 1rem;
  text-align: left;
}
.footer .footer-inner .container .footer-bottom .copyright {
  font-size: 1.2rem;
  color: #000;
}

.footer-simple {
  background: #000;
  padding: 2rem;
}
.footer-simple .footer-inner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-simple .footer-inner .container .privacy {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0;
}
.footer-simple .footer-inner .container small {
  font-size: 1rem;
  color: #fff;
}

/* sp footer 固定 */
.footer-fixed-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 73px;
  background: #000;
  z-index: 996;
  padding: 1rem;
}
.footer-fixed-container .footer-fixed-wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.footer-fixed-container .footer-fixed-wrap a {
  width: 48%;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  line-height: 1.4;
}
.footer-fixed-container .footer-fixed-wrap a:active {
  opacity: 0.9;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .container {
    max-width: 1440px;
    margin: 0 auto;
  }
  .sec__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 5rem;
  }
  .sec__head .sec__ttlwrap .sec_subttl {
    margin-left: -3.6rem;
  }
  .sec__head .sec__ttlwrap .sec__title {
    margin-top: -1.5rem;
    margin-left: 0.8rem;
  }
  .sec__head .sec__desc {
    margin-top: 62px;
  }
  .sec__head .sec__desc .sec__desc_ttl {
    margin-bottom: 2rem;
  }
  .sec__head .sec__desc .sec__desc_txt {
    font-size: 1.6rem;
  }
  /* ====== CTA ====== */
  .cta {
    padding: 9rem 0 9rem;
    color: #fff;
  }
  .cta .container {
    max-width: 1312px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .cta .txt-wrap {
    margin-top: -5rem;
  }
  .cta .txt-wrap .zenkoku {
    margin-left: -3rem;
  }
  .cta .txt-wrap .sec__title {
    margin-left: 5rem;
  }
  .cta .tel-wrap {
    margin-bottom: 0;
  }
  .cta .tel-wrap .free-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .cta .tel-wrap .free-block .circle {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: var(--r-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .cta .tel-wrap .free-block .free-txt {
    text-align: left;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
  .cta .btns-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .cta .btns-wrap .cta-btn {
    background: #fff;
    max-width: 300px;
    height: 60px;
    align-content: center;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #000;
    width: 300px;
    border-radius: 30px;
  }
  /* ====== フッター ====== */
  .footer {
    background: url(../images/footer-bk.jpg) no-repeat;
    background-position-x: center;
    background-size: cover;
    padding: 8.3rem 0 12.3rem;
  }
  .footer .footer-inner .container {
    box-sizing: content-box;
  }
  .footer .footer-inner .container .footer-ttl {
    margin-bottom: 5rem;
  }
  .footer .footer-inner .container .footer-zenkoku {
    margin-bottom: 3rem;
  }
  .footer .footer-inner .container .tel-btn-wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .footer .footer-inner .container .tel-btn-wrap .btns-wrap {
    margin: 0;
  }
  .footer .footer-inner .container .footer-bottom {
    margin-top: 10rem;
  }
}
@media (min-width: 960px) {
  [id] {
    scroll-margin-top: 143px;
  }
  .header {
    height: 143px;
  }
  .header.header-simple {
    height: 90px;
  }
  .header .logo-wrap {
    left: 50px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .header .logo-wrap .logo {
    width: 131px;
    height: 43px;
  }
  .header .logo-wrap .desc {
    display: block;
  }
  .header_right {
    display: flex;
    gap: 20px;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 60px;
  }
  .header_right .btns-wrap {
    display: flex;
    gap: 1rem;
  }
  .header_right .btns-wrap .btn-download {
    width: 220px;
    height: 40px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  .header_right .btns-wrap .btn-sample {
    width: 170px;
    height: 40px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  .header_right .tel-wrap .tel {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.1em;
  }
  .header_right .tel-wrap .time {
    margin-top: -5px;
    font-size: 1.2rem;
  }
  .hamburger {
    display: none;
  }
  .gnav {
    display: flex;
    justify-content: center;
    width: 1400px;
    margin: 93px auto 0;
    gap: 3.857%;
  }
  .gnav a {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
  }
  .nav-sp {
    display: none;
  }
  .spnav,
  .spnav__overlay {
    display: none !important;
  }
  .footer {
    padding: 8.3rem 0 5rem;
  }
  .footer-fixed-container {
    display: none;
  }
}
@media (max-width: 1239px) {
  .header .logo-wrap .desc {
    display: none;
  }
}
@media (max-width: 1169px) {
  .gnav {
    gap: 2.8%;
  }
  .gnav a {
    font-size: 1.3rem;
  }
}
@media (min-width: 1400px) {
  .sec__head .sec__desc .sec__desc_txt {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .sec__head .sec__ttlwrap .sec_subttl {
    margin-left: -1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1040px) {
  .container {
    padding: 0 5vw;
  }
  .sec__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .sec__head .sec__desc {
    margin-top: 0;
  }
  /* ====== CTA ====== */
  .cta .container {
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .container {
    padding: 0 10vw;
  }
}
/* animation */
@keyframes popup {
  0% {
    transform: translateY(2rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  animation: popup 1s ease-in-out forwards;
}

.scrollIn {
  transform: translateY(2rem);
  -webkit-transform: translateY(2rem);
  opacity: 0;
}
.scrollIn.show {
  animation: popup 0.4s ease-in-out forwards;
}

main {
  margin-top: 80px;
}
main.main-contact, main.main-thanks {
  margin-top: 0;
}

/* 固定背景レイヤー（常に画面に貼り付く） */
.fixedbg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: none; /* クリック貫通 */
  height: calc(100vh - 73px);
  background: url("../images/mv_firstframe.jpg") center center/cover no-repeat;
}

.fixedbg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.93);
}

.fixedbg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

/* CTA以降は非表示にする（JSが .fixedbg--off を付与） */
.fixedbg--off {
  opacity: 0;
}

/* ====== ヒーロー ====== */
/* Hero */
.hero {
  width: 100%;
  min-height: 68vh;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
}

.hero__inner {
  position: relative;
  z-index: 1;
  height: 68vh;
}

.vh {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.heroTitle {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.heroCopy {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroCopy picture {
  width: 90%;
  margin-top: -20px;
}

.heroCopy__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ====== 特徴セクション ====== */
.feature {
  padding: 5rem 0 10rem;
}
.feature .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.feature .container .feature-badges-wrap {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.feature .container .feature-badges-wrap .feature-badge-block {
  width: 157px;
  height: 157px;
  background: url(../images/badge-bg-wood.png) no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature .container .feature-badges-wrap .feature-badge-block .badge-ttl {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 1rem;
  margin-top: 10px;
}
.feature .container .feature-badges-wrap .feature-badge-block .badge-num {
  color: #fff;
  font-style: italic;
  font-size: 5.5rem;
  font-family: var(--font-baskerville);
  letter-spacing: -0.05em;
  line-height: 1;
}
.feature .container .feature-badges-wrap .feature-badge-block .badge-num .percent {
  font-size: 2rem;
  margin-left: 0.2rem;
}
.feature .container .feature-badges-wrap .feature-badge-block .badge-num .unit {
  font-size: 1.8rem;
  margin-left: 0.2rem;
  font-style: normal;
  font-family: var(--font-serif);
}
.feature .container .feature-badges-wrap .feature-badge-block .badge-note {
  color: #fff;
  font-size: 1.2rem;
}
.feature .container .feature__title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: var(--r-3);
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 1.5rem;
}
.feature .container .feature__txt {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.feature .container .feature__txt p {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 2;
}

/* ====== イントロ section ====== */
.intro {
  padding: 0 0 10rem;
}
.intro .ornament {
  text-align: center;
}
.intro .ornament img {
  width: 156px;
  height: auto;
}
.intro .ornament_top {
  margin-bottom: 2.5rem;
}
.intro .intro__title {
  color: #fff;
  font-family: var(--font-serif);
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.intro .problems {
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 3rem;
}
.intro .intro__note {
  color: #fff;
  text-align: center;
  font-size: var(--r-2);
  line-height: 2;
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
}

/* ====== features-image section ====== */
.features-image {
  padding: 0 0 10rem;
}
.features-image .container .features-image-ttl-head .features-image_ttl_top {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 4rem;
  text-align: center;
}
.features-image .container .features-image-ttl-head .features-image_ttl_top img {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.features-image .container .features-pic-wrap {
  margin-bottom: 5rem;
}
.features-image .container .features-pic-wrap .img-wrap {
  margin-bottom: 1.5rem;
}
.features-image .container .features-pic-wrap .img-wrap img {
  width: 100%;
  height: auto;
}
.features-image .container .features-pic-wrap .txt-wrap p {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1.76;
  text-align: center;
}
.features-image .container .features-compare {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.features-image .container .features-compare .features-compare-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.features-image .container .features-compare .features-compare-item .img-wrap {
  width: 60%;
  max-width: 268px;
}
.features-image .container .features-compare .features-compare-item .img-wrap img {
  width: 100%;
  height: auto;
}
.features-image .container .features-compare .features-compare-item .txt-wrap .features-compare-ttl {
  color: #fff;
  font-size: 1.8rem;
  font-family: var(--font-serif);
  letter-spacing: 0.2em;
  line-height: 1.769;
  margin-bottom: 1rem;
}
.features-image .container .features-compare .features-compare-item .txt-wrap .features-compare-txt {
  font-size: 1.4rem;
  line-height: 2.07;
  letter-spacing: 0.1em;
  color: #fff;
}

/* ====== catch ====== */
.catch {
  padding: 0 0 10rem;
}
.catch .ornament {
  text-align: center;
}
.catch .ornament img {
  width: 156px;
  height: auto;
}
.catch .ornament_top {
  margin-bottom: 2.5rem;
}
.catch .catch__title {
  color: #fff;
  font-family: var(--font-serif);
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.2em;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.catch .catch-ttl-bottom {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 3rem;
  text-align: center;
}
.catch .catch__note {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.07;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

/* ====== kodawari ====== */
.kodawari {
  padding: 0 0 10rem;
}
.kodawari .kodawari__title {
  color: #fff;
  text-align: center;
  font-family: var(--font-serif);
  line-height: 1.6;
  letter-spacing: 0.2em;
  margin-bottom: 5rem;
  font-size: 2.2rem;
}
.kodawari .kodawari-list {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}
.kodawari .kodawari-list .kodawari-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kodawari .kodawari-list .kodawari-item .img-block {
  margin: 0 0 0 -2rem;
}
.kodawari .kodawari-list .kodawari-item .img-block img {
  width: 100%;
  height: auto;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
}
.kodawari .kodawari-list .kodawari-item .txt-block .ttl-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.kodawari .kodawari-list .kodawari-item .txt-block .ttl-wrap .kodawari-item-num {
  color: #fff;
  font-style: italic;
  font-family: var(--font-baskerville);
  letter-spacing: 0.1em;
  font-size: 5.5rem;
}
.kodawari .kodawari-list .kodawari-item .txt-block .ttl-wrap .kodawari-item-ttl {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.kodawari .kodawari-list .kodawari-item .txt-block .kodawari-item-txt {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.07;
  letter-spacing: 0.1em;
}
.kodawari .kodawari-list .kodawari-item .txt-block .kodawari-item-txt-img {
  margin-top: 2.5rem;
  text-align: right;
  width: 100%;
}
.kodawari .kodawari-list .kodawari-item .txt-block .kodawari-item-txt-img img {
  max-width: 130px;
  width: 53%;
  height: auto;
}
.kodawari .kodawari-list .kodawari-item:nth-child(even) .img-block {
  margin: 0 -2rem 0 0;
}
.kodawari .kodawari-list .kodawari-item:nth-child(even) .txt-block .kodawari-item-txt-img {
  text-align: left;
}

/* ====== product ====== */
.product {
  padding: 5rem 0 10rem;
}
.product .container:nth-child(1) {
  margin-bottom: 8rem;
}
.product .container:nth-child(1) .sec__head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.product .container:nth-child(1) .sec__head .sec__ttlwrap .sec_subttl {
  margin-left: -2rem;
}
.product .container:nth-child(1) .sec__head .sec__ttlwrap .sec__title {
  margin-top: -1rem;
  margin-left: 0.5rem;
}
.product .container:nth-child(1) .sec__head .sec__desc {
  position: relative;
  max-width: 400px;
}
.product .container:nth-child(1) .sec__head .sec__desc .free-badge {
  position: absolute;
  top: -20px;
  right: -15px;
  width: 100px;
  height: 100px;
}
.product .container:nth-child(1) .sec__head .sec__desc .free-badge img {
  width: 100%;
  height: auto;
}
.product .container:nth-child(1) .product_steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product .container:nth-child(1) .product_steps li {
  position: relative;
  background: #fff; /* 透け防止 */
  z-index: 1;
  padding: 1.5rem 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.product .container:nth-child(1) .product_steps li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1; /* テキストの下、背景として機能 */
}
.product .container:nth-child(1) .product_steps li .product_steps__num {
  font-size: 4rem;
  font-family: var(--font-baskerville);
  letter-spacing: 0.1em;
  font-style: italic;
}
.product .container:nth-child(1) .product_steps li p {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  font-weight: 500;
}
.product .product-menu-contents {
  position: relative;
  margin-bottom: 7.5rem;
}
.product .product-menu-contents .popular-pickup {
  font-weight: 500;
  position: absolute;
  top: -50px;
  display: inline-block;
  background: url(../images/popular-pickup-bk.svg) no-repeat;
  width: 104px;
  height: 84px;
  background-size: contain;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.product .product-menu-contents .product-menulist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product .product-menu-contents .product-menulist .product-menuitem {
  aspect-ratio: 390/350;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product .product-menu-contents .product-menulist .product-menuitem:nth-child(1) {
  background: url(../images/product-menuitem1-sp.jpg) no-repeat;
  background-size: cover;
}
.product .product-menu-contents .product-menulist .product-menuitem:nth-child(2) {
  background: url(../images/product-menuitem2-sp.jpg) no-repeat;
  background-size: cover;
}
.product .product-menu-contents .product-menulist .product-menuitem:nth-child(3) {
  background: url(../images/product-menuitem3-sp.jpg) no-repeat;
  background-size: cover;
}
.product .product-menu-contents .product-menulist .product-menuitem:nth-child(4) {
  background: url(../images/product-menuitem4-sp.jpg) no-repeat;
  background-size: cover;
}
.product .product-menu-contents .product-menulist .product-menuitem:nth-child(5) {
  background: url(../images/product-menuitem5-sp.jpg) no-repeat;
  background-size: cover;
}
.product .product-menu-contents .product-menulist .product-menuitem:nth-child(6) {
  background: url(../images/product-menuitem6-sp.jpg) no-repeat;
  background-size: cover;
}
.product .product-menu-contents .product-menulist .product-menuitem:nth-child(7) {
  background: url(../images/product-menuitem7-sp.jpg) no-repeat;
  background-size: cover;
}
.product .product-menu-contents .product-menulist .product-menuitem:nth-child(8) {
  background: url(../images/product-menuitem8-sp.jpg) no-repeat;
  background-size: cover;
}
.product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-name {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-txt {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}
.product .product-cta-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}
.product .product-cta-wrap .badge-wrap {
  z-index: 2;
  position: absolute;
  top: -60px;
  left: -20px;
  width: 100px;
  height: 100px;
}
.product .product-cta-wrap .badge-wrap img {
  width: 100%;
  height: auto;
}
.product .product-cta {
  position: relative;
  background: #fff; /* 透け防止 */
  z-index: 1;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product .product-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1; /* テキストの下、背景として機能 */
}
.product .product-cta .block:nth-child(1) .product-cta-txt {
  font-size: 1.4rem;
  line-height: 2.07;
  letter-spacing: 0.1em;
}
.product .product-cta .block:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product .product-cta .block:nth-child(2) .product-cta-free-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.product .product-cta .block:nth-child(2) .product-cta-free-block .circle {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid #000;
  font-size: var(--r-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.product .product-cta .block:nth-child(2) .product-cta-free-block .free-txt {
  text-align: left;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.product .product-cta .block:nth-child(2) .product-cta-btns-wrap .cta-btn {
  display: block;
  background: #000;
  max-width: 300px;
  width: 100%;
  height: 60px;
  align-content: center;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 30px;
  margin: 0 auto;
}

/* ====== original menu ====== */
.original-menu {
  padding-bottom: 10rem;
}
.original-menu .original-menu-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.original-menu .original-menu-list .original-menu-row {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.original-menu .original-menu-list .original-menu-item {
  width: 100%;
}
.original-menu .original-menu-list .original-menu-item .ttl-wrap {
  position: relative;
  max-width: 450px;
  margin: 0 auto 1.5rem;
}
.original-menu .original-menu-list .original-menu-item .ttl-wrap .original-menu-item-ttl {
  position: absolute;
  top: 0;
  right: 11.1111%;
  font-family: var(--font-serif);
  letter-spacing: 0.2em;
  font-size: 2.6rem;
  writing-mode: vertical-rl;
  background: #efe2d2;
  line-height: 1;
  font-weight: 400;
  text-wrap: nowrap;
  text-orientation: upright; /* 文字を正立 */
  display: inline-block;
}
.original-menu .original-menu-list .original-menu-item .ttl-wrap .original-menu-item-ttl span {
  opacity: 0;
  transform: translateY(-10px);
  display: inline-block;
}
.original-menu .original-menu-list .original-menu-item .ttl-wrap .original-menu-item-ttl.is-inview span {
  animation: fadeInUp 0.4s forwards;
}
.original-menu .original-menu-list .original-menu-item .ttl-wrap img {
  width: 100%;
  height: auto;
  max-width: 450px;
}
.original-menu .original-menu-list .original-menu-item .txt-wrap {
  max-width: 450px;
  margin: 0 auto;
}
.original-menu .original-menu-list .original-menu-item .txt-wrap .menu-desc {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.original-menu .original-menu-list .original-menu-item .txt-wrap .menu-txt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.07;
}

/* ====== how-to-eat ====== */
.how-to-eat {
  background: #b18d5d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.how-to-eat .img-wrap img {
  width: 100%;
  height: auto;
}
.how-to-eat .txt-wrap {
  padding: 5rem 0;
}
.how-to-eat .txt-wrap .ornament {
  text-align: center;
}
.how-to-eat .txt-wrap .ornament img {
  width: 156px;
  height: auto;
}
.how-to-eat .txt-wrap .ornament_top {
  margin-bottom: 1.5rem;
}
.how-to-eat .txt-wrap .intro__title {
  color: #fff;
  font-family: var(--font-serif);
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.how-to-eat .txt-wrap .ttl-en {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  text-align: center;
}
.how-to-eat .txt-wrap .how-to-eat-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.how-to-eat .txt-wrap .how-to-eat-list .how-to-eat-item {
  display: flex;
  gap: 1.5rem;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.how-to-eat .txt-wrap .how-to-eat-list .how-to-eat-item .img-wrap {
  width: 20%;
}
.how-to-eat .txt-wrap .how-to-eat-list .how-to-eat-item .img-wrap img {
  width: 100%;
  height: auto;
}
.how-to-eat .txt-wrap .how-to-eat-list .how-to-eat-item .text-block {
  width: calc(80% - 1.5rem);
}
.how-to-eat .txt-wrap .how-to-eat-list .how-to-eat-item .text-block .how-to-eat-item-ttl {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.how-to-eat .txt-wrap .how-to-eat-list .how-to-eat-item .text-block .how-to-eat-item-txt {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}

/* ====== voice ====== */
.voice {
  padding: 5rem 0 10rem;
}
.voice .sec__head {
  margin-bottom: 5rem;
}
.voice .voice_list {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}
.voice .voice_list .voice_item {
  position: relative;
  background: #fff;
  z-index: 1;
  padding: 2.5rem;
}
.voice .voice_list .voice_item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}
.voice .voice_list .voice_item .ornament_top {
  position: absolute;
  top: -27px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 156px;
  height: 22.59px;
}
.voice .voice_list .voice_item .ornament_top img {
  width: 156px;
  height: 22.59px;
}
.voice .voice_list .voice_item .ornament_bottom {
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 156px;
  height: 22.59px;
}
.voice .voice_list .voice_item .ornament_bottom img {
  width: 156px;
  height: 22.59px;
}
.voice .voice_list .voice_item .voice_item_contents {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.voice .voice_list .voice_item .voice_item_contents .voice_item_img_wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.voice .voice_list .voice_item .voice_item_contents .voice_item_img_wrap img {
  width: calc((100% - 1rem) / 2);
}
.voice .voice_list .voice_item .voice_item_contents .voice_item_txt_wrap .voice_item_customer {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.voice .voice_list .voice_item .voice_item_contents .voice_item_txt_wrap .voice_item_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.voice .voice_list .voice_item .voice_item_contents .voice_item_txt_wrap .voice_item_txt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}

/* ====== quality-control ====== */
.quality-control {
  padding: 5rem 0 2rem;
}
.quality-control .quality-control_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.quality-control .quality-control_list .quality-control_item {
  color: #fff;
  padding: 5rem 0;
  height: 400px;
}
.quality-control .quality-control_list .quality-control_item:nth-child(1) {
  background: url(../images/quality-control_item_bk1-sp.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.quality-control .quality-control_list .quality-control_item:nth-child(2) {
  background: url(../images/quality-control_item_bk2-sp.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.quality-control .quality-control_list .quality-control_item:nth-child(3) {
  background: url(../images/quality-control_item_bk3-sp.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.quality-control .quality-control_list .quality-control_item .quality-control_ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-bottom: 2rem;
}
.quality-control .quality-control_list .quality-control_item .quality-control_txt {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 2;
}
.quality-control .quality-control_list .quality-control_item .quality-control_txt .small {
  font-size: 1.2rem;
}

/* ====== flow ====== */
.flow {
  padding: 6rem 0 10rem;
}
.flow .flow-list .flow-item-row:nth-child(1) {
  margin-bottom: 10rem;
}
.flow .flow-list .flow-item-row:nth-child(1)::after {
  content: "";
  width: 50px;
  height: 20px;
  background: url(../images/flow-arrow-sp.svg) no-repeat;
  position: absolute;
  margin: 40px auto 0;
  left: 0;
  right: 0;
}
.flow .flow-list .flow-item-row .flow-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
  position: relative;
  margin: 0 auto;
}
.flow .flow-list .flow-item-row .flow-item:not(:last-child) {
  margin-bottom: 10rem;
}
.flow .flow-list .flow-item-row .flow-item:not(:last-child)::after {
  content: "";
  width: 50px;
  height: 20px;
  background: url(../images/flow-arrow-sp.svg) no-repeat;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -60px;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-ttl-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-ttl-wrap .flew-item-ttl-num {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  align-content: center;
  color: #222;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 50%;
  border: 1px solid #000;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-ttl-wrap .flew-item-ttl-txt {
  width: calc(100% - 50px - 1rem);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.61111;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-img {
  position: relative;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-img img {
  width: 100%;
  height: auto;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-img img.flow-free-badge {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 100px;
  height: 100px;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-desc p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-desc p:not(:last-child) {
  margin-bottom: 2rem;
}
.flow .flow-list .flow-item-row .flow-item .flow-item-desc p .small {
  font-size: 1.2rem;
}

/* ====== faq ====== */
.faq {
  padding: 0 0 10rem;
}
.faq .faq_list {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
}
.faq .faq_list .faq_item {
  border-bottom: 1px solid #c6ae8d;
}
.faq .faq_list .faq_item:nth-child(1) {
  border-top: 1px solid #c6ae8d;
}
.faq .faq_list .faq_item .faq_question {
  display: flex;
  padding: 2rem 1.5rem;
  position: relative;
  cursor: pointer;
}
.faq .faq_list .faq_item .faq_question span {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-right: 1.5rem;
  line-height: 2.07;
}
.faq .faq_list .faq_item .faq_question p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
  padding-right: 4.3rem;
}
.faq .faq_list .faq_item .faq_question .faq_question_toggle {
  position: absolute;
  top: 2.6rem;
  right: 1rem;
  width: 14px;
  height: 14px;
}
.faq .faq_list .faq_item .faq_question .faq_question_toggle .inbox {
  width: 100%;
  height: 100%;
  position: relative;
}
.faq .faq_list .faq_item .faq_question .faq_question_toggle .inbox span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #000;
}
.faq .faq_list .faq_item .faq_question .faq_question_toggle .inbox span:nth-child(1) {
  width: 100%;
  height: 1px;
}
.faq .faq_list .faq_item .faq_question .faq_question_toggle .inbox span:nth-child(2) {
  width: 1px;
  height: 100%;
}
.faq .faq_list .faq_item .faq_question.active .faq_question_toggle .inbox span:nth-child(2) {
  display: none;
}
.faq .faq_list .faq_item .faq_answer {
  padding: 2rem 1.5rem;
  display: none;
  position: relative;
  background: #fff;
  z-index: 1;
}
.faq .faq_list .faq_item .faq_answer ::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}
.faq .faq_list .faq_item .faq_answer .faq_answer_text {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}
.faq .faq_list .faq_item .faq_answer.is-open {
  display: block;
}

/* ====== thoughts ====== */
.thoughts {
  padding: 7rem 0;
  background: url("../images/thoughts_bk.jpg") no-repeat;
  background-position-y: top;
  background-position-x: 28%;
  background-size: cover;
  color: #fff;
}
.thoughts .thoughts-contents .thoughts-txt {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}
.thoughts .thoughts-contents .thoughts-txt:not(:last-child) {
  margin-bottom: 2.5rem;
}

/* ====== company ====== */
.company {
  padding: 5rem 0;
}
.company .company-table {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
}
.company .company-table tr {
  border-bottom: 1px solid #c6ae8d;
}
.company .company-table tr:nth-child(1) {
  border-top: 1px solid #c6ae8d;
}
.company .company-table tr th {
  color: #222;
  width: 30%;
  max-width: 20rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  font-size: 1.4rem;
  text-align: left;
  padding: 1.5rem 1rem;
}
.company .company-table tr td {
  color: #222;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding: 1.5rem 1rem;
}
.company .company-table tr td a {
  color: #222;
}

@media screen and (min-width: 768px) {
  /* ====== 特徴セクション ====== */
  .feature {
    padding: 10rem 0 20rem;
  }
  .feature .container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4.07%;
    max-width: 1267px;
    margin: 0 auto;
  }
  .feature .container .feature-badges-wrap {
    width: 43%;
    gap: 5.57%;
    justify-content: right;
  }
  .feature .container .feature-badges-wrap .feature-badge-block {
    width: 47.215%;
    max-width: 180px;
    max-height: 180px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .feature .container .features-txt-wrap {
    width: 52.93%;
  }
  .feature .container .feature__title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .feature .container .feature__txt {
    max-width: 648px;
    margin: 0;
  }
  .feature .container .feature__txt p {
    font-size: 1.8rem;
  }
  .intro {
    padding: 0 0 20rem;
  }
  .intro .ornament_top {
    margin-bottom: 5rem;
  }
  .intro .intro__title {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
  .intro .problems {
    max-width: 930px;
  }
  .intro .intro__note {
    margin-bottom: 5rem;
  }
  /* ====== features-image section ====== */
  .features-image {
    padding: 0 0 20rem;
  }
  .features-image .container .features-image-ttl-head .features-image_ttl_top {
    font-size: 4rem;
    margin-bottom: 7rem;
  }
  .features-image .container .features-image-ttl-head .features-image_ttl_top img {
    width: 100%;
    max-width: 578px;
    margin-top: 0;
  }
  .features-image .container .features-pic-wrap {
    margin-bottom: 10rem;
  }
  .features-image .container .features-pic-wrap .img-wrap {
    max-width: 578px;
    margin: 0 auto 3rem;
  }
  .features-image .container .features-pic-wrap .txt-wrap p {
    font-size: 2.6rem;
  }
  .features-image .container .features-compare {
    gap: 7rem;
  }
  .features-image .container .features-compare .features-compare-item {
    flex-direction: row;
    justify-content: space-between;
    gap: 6.7%;
    max-width: 984px;
    margin: 0 auto;
  }
  .features-image .container .features-compare .features-compare-item .img-wrap {
    width: 27.23%;
  }
  .features-image .container .features-compare .features-compare-item .txt-wrap {
    width: 66%;
  }
  .features-image .container .features-compare .features-compare-item .txt-wrap .features-compare-ttl {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
  /* ====== catch ====== */
  .catch {
    padding: 0 0 20rem;
  }
  .catch .ornament_top {
    margin-bottom: 5rem;
  }
  .catch .catch__title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .catch .catch-ttl-bottom {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .catch .catch__note {
    margin-bottom: 5rem;
  }
  /* ====== kodawari ====== */
  .kodawari {
    padding: 0 0 20rem;
  }
  .kodawari .kodawari__title {
    font-size: 4rem;
    margin-bottom: 7.5rem;
  }
  .kodawari .kodawari-list {
    gap: 10rem;
  }
  .kodawari .kodawari-list .kodawari-item {
    flex-direction: row;
    gap: 4rem;
  }
  .kodawari .kodawari-list .kodawari-item .img-block {
    margin-left: calc(50% - 50vw);
    width: calc((100% - 4rem) / 2);
  }
  .kodawari .kodawari-list .kodawari-item .txt-block {
    width: calc((100% - 4rem) / 2);
  }
  .kodawari .kodawari-list .kodawari-item .txt-block .ttl-wrap .kodawari-item-num {
    font-size: 7.5rem;
  }
  .kodawari .kodawari-list .kodawari-item .txt-block .ttl-wrap .kodawari-item-ttl {
    font-size: 3rem;
  }
  .kodawari .kodawari-list .kodawari-item .txt-block .kodawari-item-txt-img {
    margin-top: 2.5rem;
  }
  .kodawari .kodawari-list .kodawari-item .txt-block .kodawari-item-txt-img img {
    max-width: 300px;
  }
  .kodawari .kodawari-list .kodawari-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .kodawari .kodawari-list .kodawari-item:nth-child(even) .img-block {
    margin-right: calc(50% - 50vw);
  }
  /* ====== product ====== */
  .product {
    padding: 10.8rem 0 15rem;
  }
  .product .container:nth-child(1) {
    margin-bottom: 12.5rem;
  }
  .product .container:nth-child(1) .sec__head .sec__desc {
    max-width: none;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-self: flex-start;
  }
  .product .container:nth-child(1) .sec__head .sec__desc .free-badge {
    position: relative;
    top: -20px;
    right: 0;
    width: 157px;
    height: 157px;
  }
  .product .container:nth-child(1) .product_steps li p {
    font-size: 1.8rem;
  }
  .product .product-menu-contents {
    margin-bottom: 5rem;
  }
  .product .product-menu-contents .popular-pickup {
    top: -75px;
    width: 190px;
    height: 150px;
    font-size: 2rem;
  }
  .product .product-menu-contents .product-menulist {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product .product-menu-contents .product-menulist .product-menuitem {
    width: 25%;
    aspect-ratio: 480/600;
    padding: 1em;
  }
  .product .product-menu-contents .product-menulist .product-menuitem:nth-child(1) {
    background: url(../images/product-menuitem1-pc.jpg) no-repeat;
    background-size: cover;
  }
  .product .product-menu-contents .product-menulist .product-menuitem:nth-child(2) {
    background: url(../images/product-menuitem2-pc.jpg) no-repeat;
    background-size: cover;
  }
  .product .product-menu-contents .product-menulist .product-menuitem:nth-child(3) {
    background: url(../images/product-menuitem3-pc.jpg) no-repeat;
    background-size: cover;
  }
  .product .product-menu-contents .product-menulist .product-menuitem:nth-child(4) {
    background: url(../images/product-menuitem4-pc.jpg) no-repeat;
    background-size: cover;
  }
  .product .product-menu-contents .product-menulist .product-menuitem:nth-child(5) {
    background: url(../images/product-menuitem5-pc.jpg) no-repeat;
    background-size: cover;
  }
  .product .product-menu-contents .product-menulist .product-menuitem:nth-child(6) {
    background: url(../images/product-menuitem6-pc.jpg) no-repeat;
    background-size: cover;
  }
  .product .product-menu-contents .product-menulist .product-menuitem:nth-child(7) {
    background: url(../images/product-menuitem7-pc.jpg) no-repeat;
    background-size: cover;
  }
  .product .product-menu-contents .product-menulist .product-menuitem:nth-child(8) {
    background: url(../images/product-menuitem8-pc.jpg) no-repeat;
    background-size: cover;
  }
  .product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-name {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-txt {
    font-size: 1.4rem;
    min-height: 144.84px;
  }
  .product .product-cta-wrap {
    width: 96%;
  }
  .product .product-cta-wrap .badge-wrap {
    top: -30px;
    left: -40px;
    width: 110px;
    height: 110px;
  }
  .product .product-cta {
    padding: 6rem 5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .product .product-cta .block:nth-child(2).sp {
    display: none;
  }
  .product .product-cta .block:nth-child(3).pc {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  .product .product-cta .block:nth-child(3).pc .free-txt {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
  .product .product-cta .block:nth-child(3) .product-cta-pc-row {
    display: flex;
    gap: 1rem;
  }
  .product .product-cta .block:nth-child(3) .product-cta-pc-row .product-cta-free-block {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }
  .product .product-cta .block:nth-child(3) .product-cta-pc-row .product-cta-free-block .circle {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    border: 1px solid #000;
    border-radius: 50%;
    text-align: center;
    align-content: center;
  }
  .product .product-cta .block:nth-child(3) .product-cta-btns-wrap .cta-btn {
    display: block;
    background: #000;
    max-width: 250px;
    width: 250px;
    height: 60px;
    align-content: center;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #fff;
    border-radius: 30px;
    font-family: var(--sans);
  }
  /* ====== original menu ====== */
  .original-menu {
    padding-bottom: 20rem;
  }
  .original-menu .sec__head {
    margin-bottom: 8rem;
  }
  .original-menu .original-menu-list {
    gap: 10rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .original-menu .original-menu-list .original-menu-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 10rem;
    max-width: 1100px;
  }
  .original-menu .original-menu-list .original-menu-row:nth-child(1) {
    margin-right: auto;
  }
  .original-menu .original-menu-list .original-menu-row:nth-child(2) {
    margin-left: auto;
  }
  .original-menu .original-menu-list .original-menu-item {
    width: 49.55%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .original-menu .original-menu-list .original-menu-item .ttl-wrap {
    margin-bottom: 0;
  }
  .original-menu .original-menu-list .original-menu-item .txt-wrap .menu-desc {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  /* ====== voice ====== */
  .voice {
    padding: 8rem 0 16rem;
  }
  .voice .sec__head {
    margin-bottom: 6rem;
    align-items: center;
  }
  /* ====== quality-control ====== */
  .quality-control {
    padding: 10rem 0 2rem;
  }
  .quality-control .sec__head {
    margin-bottom: 6rem;
    align-items: center;
  }
  .quality-control .quality-control_list {
    display: flex;
    flex-direction: column;
  }
  .quality-control .quality-control_list .quality-control_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .quality-control .quality-control_list .quality-control_item:nth-child(1) {
    background: url(../images/quality-control_item_bk1-pc.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .quality-control .quality-control_list .quality-control_item:nth-child(1) .quality-control_item_inner {
    margin-left: auto;
  }
  .quality-control .quality-control_list .quality-control_item:nth-child(2) {
    background: url(../images/quality-control_item_bk2-pc.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .quality-control .quality-control_list .quality-control_item:nth-child(3) {
    background: url(../images/quality-control_item_bk3-pc.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .quality-control .quality-control_list .quality-control_item:nth-child(3) .quality-control_item_inner {
    margin-left: auto;
  }
  .quality-control .quality-control_list .quality-control_item .quality-control_item_inner {
    max-width: 500px;
  }
  .quality-control .quality-control_list .quality-control_item .quality-control_ttl {
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
  }
  .quality-control .quality-control_list .quality-control_item .quality-control_txt {
    font-size: 1.4rem;
    line-height: 2.07;
  }
  /* ====== flow ====== */
  .flow {
    padding: 11rem 0 20rem;
  }
  .flow .flow-list .flow-item-row .flow-item .flow-item-img img.flow-free-badge {
    top: -100px;
    right: -30px;
    width: 157px;
    height: 157px;
  }
  /* ====== faq ====== */
  .faq {
    padding: 0 0 20rem;
  }
  .faq .sec__head {
    margin-bottom: 6rem;
    align-items: center;
  }
  .faq .faq_list .faq_item .faq_question {
    padding: 4rem 3rem;
  }
  .faq .faq_list .faq_item .faq_question .faq_question_toggle {
    position: absolute;
    top: 5rem;
    right: 3rem;
  }
  .faq .faq_list .faq_item .faq_answer {
    padding: 3rem;
  }
  /* ====== thoughts ====== */
  .thoughts {
    padding: 10rem 0 20rem;
  }
  .thoughts .sec__head {
    margin-bottom: 10rem;
  }
  .thoughts .thoughts-contents {
    max-width: 1000px;
    margin-left: auto;
  }
  .thoughts .thoughts-contents .thoughts-txt {
    font-size: 1.4rem;
  }
  .thoughts .thoughts-contents .thoughts-txt:not(:last-child) {
    margin-bottom: 3rem;
  }
  /* ====== company ====== */
  .company {
    padding: 10rem 0 20rem;
  }
  .company .sec__head {
    margin-bottom: 7.5rem;
    align-items: center;
  }
  .company .company-table tr th {
    width: 20rem;
    padding: 2.5rem 3rem;
  }
  .company .company-table tr td {
    padding: 2.5rem 3rem 2.5rem 0;
  }
}
@media (min-width: 960px) {
  main {
    margin-top: 0;
  }
  .fixedbg {
    height: 100vh;
  }
  .hero,
  .hero__inner {
    min-height: calc(100vh - 143px);
    height: calc(100vh - 143px);
  }
  .heroCopy {
    height: calc(100vh - 143px);
  }
  .heroCopy picture {
    width: auto;
    margin-top: 0;
  }
  .heroCopy__img {
    width: 871px;
  }
  /* ====== product ====== */
  .product .container:nth-child(1) .product_steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.785%;
  }
  .product .container:nth-child(1) .product_steps li {
    width: 32.1433333333%;
    padding: 2rem 3.5rem 2rem 3rem;
    display: flex;
    gap: 5%;
    align-items: center;
  }
  .product .container:nth-child(1) .product_steps li .product_steps__num {
    font-size: 8rem;
    font-family: var(--font-baskerville);
    letter-spacing: 0.1em;
    font-style: italic;
  }
  .product .container:nth-child(1) .product_steps li p {
    letter-spacing: 0.1em;
    line-height: 1.75;
    font-weight: 500;
  }
  /* ====== how-to-eat ====== */
  .how-to-eat {
    flex-direction: row;
    align-items: center;
  }
  .how-to-eat .img-wrap {
    width: 52%;
  }
  .how-to-eat .txt-wrap {
    width: 48%;
    padding: 2rem;
  }
  .how-to-eat .txt-wrap .container {
    padding: 0;
  }
  /* ====== voice ====== */
  .voice .voice_list .voice_item {
    padding: 5rem;
  }
  .voice .voice_list .voice_item .voice_item_contents {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .voice .voice_list .voice_item .voice_item_contents .voice_item_img_wrap {
    width: 46.92%;
  }
  .voice .voice_list .voice_item .voice_item_contents .voice_item_txt_wrap {
    width: 50.77%;
  }
  .voice .voice_list .voice_item .voice_item_contents .voice_item_txt_wrap .voice_item_customer {
    margin-bottom: 1rem;
  }
  .voice .voice_list .voice_item .voice_item_contents .voice_item_txt_wrap .voice_item_ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  /* ====== flow ====== */
  .flow .flow-list {
    gap: 0 10rem;
  }
  .flow .flow-list .flow-item-row {
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    gap: 10rem;
  }
  .flow .flow-list .flow-item-row:nth-child(1) {
    margin-right: auto;
  }
  .flow .flow-list .flow-item-row:nth-child(2) {
    margin-left: auto;
  }
  .flow .flow-list .flow-item-row:nth-child(1) {
    position: relative;
    margin-bottom: 0;
  }
  .flow .flow-list .flow-item-row:nth-child(1)::after {
    content: "";
    width: 20px;
    height: 50px;
    background: url(../images/flow-arrow-pc.svg) no-repeat;
    position: absolute;
    margin: 0;
    left: auto;
    right: -60px;
    top: 194px;
  }
  .flow .flow-list .flow-item-row .flow-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 500px;
    position: relative;
    margin: 0;
    width: calc((100% - 10rem) / 2);
  }
  .flow .flow-list .flow-item-row .flow-item:not(:last-child) {
    margin-bottom: 5rem;
  }
  .flow .flow-list .flow-item-row .flow-item:not(:last-child)::after {
    content: "";
    width: 20px;
    height: 50px;
    background: url(../images/flow-arrow-pc.svg) no-repeat;
    position: absolute;
    margin: auto 0;
    left: auto;
    right: -60px;
    bottom: auto;
    top: 194px;
  }
  .flow .flow-list .flow-item-row .flow-item .flow-item-ttl-wrap {
    gap: 2rem;
  }
  .flow .flow-list .flow-item-row .flow-item .flow-item-img img.flow-free-badge {
    top: -100px;
    right: -30px;
    width: 157px;
    height: 157px;
  }
}
@media (min-width: 1400px) {
  /* ====== 特徴セクション ====== */
  .feature .container .feature-badges-wrap {
    width: 43%;
    gap: 3rem;
  }
  .feature .container .feature-badges-wrap .feature-badge-block {
    width: 250px;
    height: 250px;
    max-width: 250px;
    max-height: 250px;
  }
  .feature .container .feature-badges-wrap .feature-badge-block .badge-ttl {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
    margin-top: 0;
  }
  .feature .container .feature-badges-wrap .feature-badge-block .badge-num {
    font-size: 10.5rem;
  }
  .feature .container .feature-badges-wrap .feature-badge-block .badge-num .percent {
    font-size: 3rem;
  }
  .feature .container .feature-badges-wrap .feature-badge-block .badge-num .unit {
    font-size: 2.2rem;
    margin-left: -0.2rem;
  }
  .feature .container .feature-badges-wrap .feature-badge-block .badge-note {
    font-size: 1.4rem;
  }
  .feature .container .features-txt-wrap {
    width: 52.93%;
  }
  .feature .container .feature__title {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
  .feature .container .feature__txt p {
    font-size: 2rem;
  }
  .intro .intro__title {
    font-size: 4rem;
  }
  .intro .intro__note {
    margin-bottom: 5rem;
  }
  /* ====== catch ====== */
  .catch .catch__title {
    font-size: 4rem;
  }
  .kodawari .kodawari__title {
    font-size: 5rem;
    margin-bottom: 10rem;
  }
  .kodawari .kodawari-list .kodawari-item {
    gap: 10rem;
  }
  .kodawari .kodawari-list .kodawari-item .txt-block .ttl-wrap .kodawari-item-num {
    font-size: 10rem;
  }
  .kodawari .kodawari-list .kodawari-item .txt-block .ttl-wrap .kodawari-item-ttl {
    font-size: 4rem;
  }
  .kodawari .kodawari-list .kodawari-item .txt-block .kodawari-item-txt-img {
    margin-top: 5rem;
  }
  /* ====== product ====== */
  .product .container:nth-child(1) .sec__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 5rem;
  }
  .product .container:nth-child(1) .sec__head .sec__ttlwrap .sec_subttl {
    margin-left: -3.6rem;
  }
  .product .container:nth-child(1) .sec__head .sec__ttlwrap .sec__title {
    margin-top: -1.5rem;
    margin-left: 0.8rem;
  }
  .product .container:nth-child(1) .sec__head .sec__desc {
    margin-top: 46.95px;
    gap: 10.8rem;
  }
  .product .container:nth-child(1) .sec__head .sec__desc .sec__desc_ttl {
    margin-bottom: 2rem;
  }
  .product .container:nth-child(1) .product_steps li p {
    font-size: 2rem;
  }
  .product .product-menu-contents .product-menulist .product-menuitem {
    padding: 1em;
    padding: 5rem 3rem;
  }
  .product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-name {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
  .product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-txt {
    font-size: 1.4rem;
    min-height: 115.91px;
  }
  .product .product-cta-wrap .badge-wrap {
    top: -40px;
    left: -100px;
    width: 157px;
    height: auto;
  }
  .product .product-cta {
    padding: 6rem 5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .product .product-cta .block:nth-child(2).sp {
    display: none;
  }
  .product .product-cta .block:nth-child(3).pc {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  .product .product-cta .block:nth-child(3).pc .free-txt {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
  .product .product-cta .block:nth-child(3) .product-cta-pc-row {
    display: flex;
    gap: 1rem;
  }
  .product .product-cta .block:nth-child(3) .product-cta-pc-row .product-cta-free-block {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }
  .product .product-cta .block:nth-child(3) .product-cta-pc-row .product-cta-free-block .circle {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    border: 1px solid #000;
    border-radius: 50%;
    text-align: center;
    align-content: center;
  }
  .product .product-cta .block:nth-child(3) .product-cta-btns-wrap .cta-btn {
    display: block;
    background: #000;
    max-width: 250px;
    width: 250px;
    height: 60px;
    align-content: center;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #fff;
    border-radius: 30px;
    font-family: var(--sans);
  }
  /* ====== original menu ====== */
  .original-menu .original-menu-list .original-menu-item .ttl-wrap .original-menu-item-ttl {
    font-size: 3.8rem;
  }
  .original-menu .original-menu-list .original-menu-item .txt-wrap {
    padding-left: 2.5rem;
  }
  /* ====== thoughts ====== */
  .thoughts {
    background-position: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  /* ====== product ====== */
  .product .container .product_steps li .product_steps__num {
    font-size: 6rem;
  }
  .product .container .product_steps li p {
    font-size: 1.6rem;
  }
  .product .container .product_steps li p br {
    display: none;
  }
  .product .product-cta-wrap {
    max-width: 800px;
  }
  .product .product-cta {
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1040px) {
  /* ====== 特徴セクション ====== */
  .feature .container .feature__title {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
  }
  .feature .container .feature__txt p {
    font-size: 1.6rem;
  }
  /* ====== flow ====== */
  .flow .flow-list .flow-item-row:nth-child(1)::after {
    content: none;
  }
  /* ====== features-image section ====== */
  .features-image .container .features-compare .features-compare-item .txt-wrap .features-compare-ttl {
    font-size: 2rem;
  }
  /* ====== kodawari ====== */
  .kodawari .kodawari-list .kodawari-item .img-block {
    margin: 0 0 0 -5vw;
  }
  .kodawari .kodawari-list .kodawari-item:nth-child(even) .img-block {
    margin: 0 -5vw 0 0;
  }
  .kodawari .kodawari-list .kodawari-item .txt-block .ttl-wrap .kodawari-item-ttl {
    font-size: 2.4rem;
  }
  /* ====== product ====== */
  .product {
    padding: 10.8rem 0 15rem;
  }
  .product .container_top {
    margin-bottom: 12.5rem;
  }
  .product .product-menu-contents .product-menulist .product-menuitem {
    width: 50%;
    padding: 3rem 2rem;
  }
  .product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-name {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
  .product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-txt {
    font-size: 1.6rem;
    min-height: 132.44px;
  }
  /* ====== original menu ====== */
  .original-menu .original-menu-list .original-menu-item {
    gap: 2rem;
  }
  .original-menu .original-menu-list .original-menu-item .txt-wrap .menu-desc {
    font-size: 1.8rem;
  }
  /* ====== voice ====== */
  .voice .sec__head {
    align-items: flex-start;
  }
  /* ====== quality-control ====== */
  .quality-control .sec__head {
    align-items: flex-start;
  }
  /* ====== faq ====== */
  .faq .sec__head {
    align-items: flex-start;
  }
  /* ====== company ====== */
  .company .sec__head {
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) and (max-width: 899px) {
  .product .container .product_steps {
    flex-direction: column;
    gap: 1rem;
  }
  .product .container .product_steps li {
    width: 100%;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  /* ====== kodawari ====== */
  .kodawari .kodawari-list .kodawari-item .img-block {
    margin: 0 0 0 -10vw;
  }
  .kodawari .kodawari-list .kodawari-item:nth-child(even) .img-block {
    margin: 0 -10vw 0 0;
  }
}
@media (min-width: 1660px) {
  /* ====== product ====== */
  .product .product-menu-contents .product-menulist .product-menuitem .product-menuitem-txt {
    min-height: 78px;
  }
}/*# sourceMappingURL=top.css.map */