@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;
  }
}
body.page-template-default,
.error404 {
  background: #efe2d2;
}
body.page-template-default::before,
.error404::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; /* 後ろ */
}
body.page-template-default .header,
.error404 .header {
  background: #efe2d2;
  border-bottom: 1px solid #000;
}
body.page-template-default .header::before,
.error404 .header::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; /* 後ろ */
}
body.page-template-default .header.bg-black,
.error404 .header.bg-black {
  background: #efe2d2;
}
body.page-template-default .header .btn-download,
.error404 .header .btn-download {
  color: #000;
  border: 1px solid #000;
}
body.page-template-default .header .btn-sample,
.error404 .header .btn-sample {
  background: #000;
  color: #fff;
}
body.page-template-default .hamburger__bar,
.error404 .hamburger__bar {
  background: #000;
}
body.page-template-default .logo-wrap .desc,
.error404 .logo-wrap .desc {
  color: #000;
}
body.page-template-default .header_right .tel-wrap .tel,
body.page-template-default .header_right .tel-wrap .time,
.error404 .header_right .tel-wrap .tel,
.error404 .header_right .tel-wrap .time {
  color: #000;
}
body.page-template-default .gnav a,
.error404 .gnav a {
  color: #000;
}

.main-page {
  margin-top: 80px;
}

.page-section {
  padding: 4rem 0 10rem;
}
.page-section .sec__head {
  margin-bottom: 5rem;
}
.page-section .txt {
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 4rem;
}
.page-section .txt a {
  color: #1571da;
}
.page-section .txt li {
  list-style: inside;
}
.page-section .page-h2ttl {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-section .page-h3ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.sample-form {
  padding: 4rem 0 10rem;
  /* 画像枠（全カード共通） */
  /* チェック時の装飾（色変更 or ✓マーク） */
  /* 各商品の画像（valueで分岐） */
}
.sample-form .sec__head {
  margin-bottom: 5rem;
}
.sample-form .sec__head .sec__ttlwrap .sec__title {
  margin-top: -4rem;
  margin-left: 3.5rem;
}
.sample-form form {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.sample-form .head-txt {
  margin-bottom: 1.5rem;
}
.sample-form .head-txt p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}
.sample-form .note-box {
  background: #fff;
  padding: 2rem;
  margin-bottom: 5rem;
  position: relative;
}
.sample-form .note-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}
.sample-form .note-box .note-box-ttl {
  font-size: var(--r-2);
  line-height: 2;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.sample-form .note-box .note-box-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sample-form .note-box .note-box-list .note-box-item {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
  padding-left: 20px;
  position: relative;
}
.sample-form .note-box .note-box-list .note-box-item::before {
  content: "";
  background: #ac1d1d;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
}
.sample-form .contact__question {
  font-size: var(--r-2);
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 400;
  position: relative;
  padding-right: 50px;
  margin-bottom: 1.5rem;
}
.sample-form .product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem 1.5rem;
}
.sample-form .product-grid .wpcf7-list-item {
  width: calc((100% - 1.5rem) / 2);
  margin: 0;
}
.sample-form .product-grid .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
  user-select: none;
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}
.sample-form .product-grid .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}
.sample-form .product-grid .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #a7a7a7;
  flex-shrink: 0;
  transition: all 0.2s ease;
  top: 10px;
  left: 10px;
  position: absolute;
}
.sample-form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}
.sample-form input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  border-color: #b18d5d;
  background-image: url("../images/sample/icon-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.sample-form .product-desc {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}
.sample-form .product-grid input[value=くちどけもちこ] + .wpcf7-list-item-label::before {
  background-image: url("../images/sample/kuchidoke.jpg");
}
.sample-form .product-grid input[value=みみまでふわり] + .wpcf7-list-item-label::before {
  background-image: url("../images/sample/sandbaguette.jpg");
}
.sample-form .product-grid input[value=白いコッペパン] + .wpcf7-list-item-label::before {
  background-image: url("../images/sample/whiteCoppepan.jpg");
}
.sample-form .product-grid input[value=クリスピードッグ] + .wpcf7-list-item-label::before {
  background-image: url("../images/sample/crispyDog.jpg");
}
.sample-form .product-grid input[value=ライ・カオリ] + .wpcf7-list-item-label::before {
  background-image: url("../images/sample/raiKaori.jpg");
}
.sample-form .product-grid input[value=クロワッサン] + .wpcf7-list-item-label::before {
  background-image: url("../images/sample/croissant.jpg");
}
.sample-form .product-grid input[value=こむぎバンズ] + .wpcf7-list-item-label::before {
  background-image: url("../images/sample/komugiBuns.jpg");
}
.sample-form .product-grid input[value=リッチフォカッチャ] + .wpcf7-list-item-label::before {
  background-image: url("../images/sample/richFocaccia.jpg");
}
.sample-form .others-note-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.sample-form .others-note-wrap .others-note {
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.2em;
  padding: 0.7rem 2rem;
  display: inline-block;
}
.sample-form .flow-wrap {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.sample-form .flow-wrap .flow-ttl {
  font-size: var(--r-2);
  letter-spacing: 0.2rem;
  line-height: 2;
  margin-bottom: 1rem;
  font-weight: 400;
}
.sample-form .flow-wrap .flow-box {
  background: #fff;
  padding: 2rem;
  position: relative;
}
.sample-form .flow-wrap .flow-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}
.sample-form .flow-wrap .flow-box .flow-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.sample-form .flow-wrap .flow-box .flow-list .flow-item {
  width: 100%;
  position: relative;
}
.sample-form .flow-wrap .flow-box .flow-list .flow-item:not(:last-child)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4rem;
  margin: 0 auto;
  content: "";
  width: 48.14px;
  height: 20px;
  background: url(../images/flow-arrow-sp.svg) no-repeat;
}
.sample-form .flow-wrap .flow-box .flow-list .flow-item .flow-item-img {
  width: 100%;
  margin-bottom: 1.5rem;
}
.sample-form .flow-wrap .flow-box .flow-list .flow-item .flow-item-txt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}
.sample-form .flow-wrap .flow-box .flow-box-note {
  margin-top: 2.5rem;
  border-top: 1px solid #000;
  padding-top: 1.5rem;
}
.sample-form .flow-wrap .flow-box .flow-box-note p {
  font-size: 1.4rem;
  line-height: 2.07;
  letter-spacing: 0.01em;
}
.sample-form .product-grid.is-overlimit .wpcf7-list-item-label {
  opacity: 0.9;
}

.stepper {
  margin-bottom: 5rem;
}
.stepper .stepper__list {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 798px;
  width: 100%;
  position: relative;
}
.stepper .stepper__list::before {
  content: "";
  background: #000;
  position: absolute;
  width: calc(100% - 100px);
  max-width: 609px;
  height: 1px;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.stepper .stepper__list .stepper__item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stepper .stepper__list .stepper__item .stepper__circle {
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  align-content: center;
  text-align: center;
  font-size: 2rem;
  color: #222;
  background: #efe2d2;
  margin: 0 auto 1rem;
}
.stepper .stepper__list .stepper__item .stepper__circle.is-current {
  background: #b18d5d;
  color: #fff;
}
.stepper .stepper__list .stepper__item .stepper__circle.is-done {
  background: #000;
  color: #fff;
}
.stepper .stepper__list .stepper__item .stepper__label {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #222;
  text-align: center;
  line-height: 1.7;
  display: block;
}

.contact__item {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
}

.contact__require,
.contact__any {
  position: absolute;
  right: 0;
  top: 3px;
  width: 40px;
  height: 24px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: center;
  align-content: center;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
}

.contact__require {
  background: #ac1d1d;
}

.contact__any {
  background: #b18d5d;
}

.wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
}
.wpcf7-form-control-wrap:not(:last-child) {
  margin-bottom: 2.5rem;
}

.contact__txt {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 2.07;
  letter-spacing: 0.1em;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  border-radius: 5px;
  background: #fff;
  padding: 0 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  border: none;
  width: 100%;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #a7a7a7;
}
input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #a7a7a7;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #a7a7a7;
}

input[type=text],
input[type=email],
input[type=tel] {
  height: 60px;
}

textarea {
  height: 240px;
  padding: 1.5rem;
}

input#sample-zip {
  width: 60%;
  max-width: 300px;
}

.select-wrap {
  margin-bottom: 2.5rem;
  width: 60%;
  max-width: 300px;
}
.select-wrap .wpcf7-form-control-wrap {
  position: relative;
  max-width: 300px;
}
.select-wrap .wpcf7-form-control-wrap::after {
  content: "";
  background: url(../images/sample/select-arrow-bottom.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 11px;
  height: 6px;
  pointer-events: none;
  margin: auto 0;
}
.select-wrap select {
  height: 60px;
  width: 100%;
  max-width: 300px;
  background: #fff;
  border: none;
  padding: 0 1.5rem;
  padding-right: 3.5rem;
  align-content: center;
  border-radius: 5px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #a7a7a7;
  cursor: pointer;
}
.select-wrap select option[value=""] {
  color: #a7a7a7;
}

.h-adr {
  margin-bottom: 2.5rem;
}

.wpcf7-form-control.wpcf7-radio,
.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  gap: 5rem;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 29px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::after,
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #fff;
  border: none;
  flex-shrink: 0;
  transition: all 0.2s ease;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  position: absolute;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wpcf7-list-item label {
  cursor: pointer;
}

/* チェック時の装飾（色変更 or ✓マーク） */
input[type=radio]:checked + .wpcf7-list-item-label::after {
  border-color: #b18d5d;
  background-image: url("../images/sample/icon-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.contact__group {
  border: none;
  padding: 0;
  margin: 0 0 2.5rem;
}
.contact__group .wpcf7-list-item {
  margin: 0;
}

.privacy {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 2rem;
}
.privacy a {
  color: #1571da;
  transition: all 0.3s ease-out;
  background: url(../images/icon-link-out-blue.svg) no-repeat;
  padding-right: 15px;
  background-position: right center;
  margin-right: 6px;
}
.privacy a:hover {
  opacity: 0.7;
}

.form-error {
  margin: 0 0 2rem;
  padding: 10px 12px;
  border: 1px solid #e57373;
  background: #fdecea;
  color: #b71c1c;
  font-size: 14px;
  border-radius: 6px;
}

.nav1,
.nav4 {
  text-align: center;
}
.nav1 .btn-next,
.nav4 .btn-next {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  height: 60px;
  border-radius: 50px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  border: none;
  align-content: center;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s ease-out;
  background: #000;
  color: #fff;
}
.nav1 .btn-next:hover,
.nav4 .btn-next:hover {
  opacity: 0.7;
}

.nav2,
.nav3 {
  max-width: 630px;
  margin: 0 auto;
  display: flex;
  gap: 4.76%;
}
.nav2 .btn-next,
.nav2 .btn-back,
.nav2 .btn-submit,
.nav3 .btn-next,
.nav3 .btn-back,
.nav3 .btn-submit {
  max-width: 300px;
  width: calc((100% - 2rem) / 2);
  margin: 0 auto;
  height: 60px;
  border-radius: 50px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-align: center;
  border: none;
  align-content: center;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.nav2 .btn-next:hover,
.nav2 .btn-back:hover,
.nav2 .btn-submit:hover,
.nav3 .btn-next:hover,
.nav3 .btn-back:hover,
.nav3 .btn-submit:hover {
  opacity: 0.7;
}
.nav2 .btn-next,
.nav2 .btn-submit,
.nav3 .btn-next,
.nav3 .btn-submit {
  background: #000;
  color: #fff;
}
.nav2 .btn-back,
.nav3 .btn-back {
  background: #fff;
  color: #000;
  position: relative;
}
.nav2 .btn-back::before,
.nav3 .btn-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
  border-radius: 50px;
}

.wpcf7-spinner {
  display: none !important;
}

.recaptcha-notice {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #666;
  margin-top: 2rem;
  text-align: center;
}
.recaptcha-notice a {
  color: #1571da;
}

.review {
  margin-bottom: 5rem;
}
.review dt {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.review dd {
  margin-left: 0;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.review dd:not(:last-child) {
  margin-bottom: 2.5rem;
}

.main-thanks {
  height: calc(100vh - 88px - 60px);
}

.sample-form-thanks,
.catalog-form-thanks {
  padding: 5rem 0 10rem;
}
.sample-form-thanks .thanks-contents,
.catalog-form-thanks .thanks-contents {
  max-width: 1000px;
  margin: 0 auto;
}

.thanks-ttl {
  font-family: var(--font-serif);
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.thanks-txt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
  text-align: center;
}

.catalog-form {
  padding: 4rem 0 10rem;
}
.catalog-form .sec__head {
  margin-bottom: 5rem;
}
.catalog-form .sec__head .sec__ttlwrap .sec__title {
  margin-top: -1rem;
  margin-left: 1.5rem;
}
.catalog-form form {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.catalog-form .stepper .stepper__list {
  max-width: 640px;
}
.catalog-form .stepper .stepper__list::before {
  width: calc(100% - 150px);
}
.catalog-form .stepper .stepper__list .stepper__item {
  width: 33.3333333333%;
}
.catalog-form .catalog-form-contents {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.catalog-form .catalog-form-contents .head-txt-wrap .head-txt {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}
.catalog-form .catalog-form-contents .head-txt-wrap .catalog-img-wrap {
  margin-bottom: 2.5rem;
}
.catalog-form .catalog-form-contents .head-txt-wrap .catalog-img-wrap img {
  width: 100%;
  height: auto;
}
.catalog-form .catalog-form-contents .head-txt-wrap .catalog-img-wrap .catalog-img-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.catalog-form .catalog-form-contents .head-txt-wrap .catalog-img-wrap .catalog-img-row img {
  width: calc((100% - 1.2rem) / 2);
  height: auto;
}
.catalog-form .catalog-form-contents .head-txt-wrap .tel-wrap .tel-txt {
  font-weight: 700;
  font-size: var(--r-2);
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.catalog-form .catalog-form-contents .head-txt-wrap .tel-wrap .tel-number {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000;
}
.catalog-form .catalog-form-contents .head-txt-wrap .tel-wrap .tel-time {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
}

.catalog-form-thanks .btn-download-wrap {
  margin-top: 1.5rem;
}
.catalog-form-thanks .btn-download {
  display: block;
  max-width: 500px;
  width: 100%;
  height: 60px;
  border-radius: 50px;
  background: #b18d5d;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  align-content: center;
  border: none;
  margin: 0 auto;
}
.catalog-form-thanks .btn-download img {
  width: 21px;
  height: auto;
  margin-right: 2rem;
  vertical-align: text-top;
}
.catalog-form-thanks .btn-download:hover {
  background: #000;
  color: #fff;
}
.catalog-form-thanks .sample-cta {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.catalog-form-thanks .sample-cta .img-wrap {
  width: 100%;
}
.catalog-form-thanks .sample-cta .img-wrap img {
  width: 100%;
  height: auto;
}
.catalog-form-thanks .sample-cta .txt-wrap .sample-cta-ttl {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 2rem;
  font-weight: 400;
}
.catalog-form-thanks .sample-cta .txt-wrap .sample-cta-txt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.07;
  margin-bottom: 3rem;
}
.catalog-form-thanks .sample-cta .txt-wrap .cta-btn-wrap .cta-btn {
  width: 100%;
  max-width: 300px;
}

@media screen and (min-width: 768px) {
  .page-section {
    padding: 8rem 0 20rem;
  }
  .page-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .page-section .txt {
    font-size: 1.6rem;
  }
  .page-section .page-h2ttl {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
  .page-section .page-h3ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .sample-form {
    /* 画像枠（全カード共通） */
  }
  .sample-form .sec__head {
    margin-bottom: 10rem;
  }
  .sample-form .sec__head .sec__ttlwrap .sec__title {
    margin-top: -5rem;
    margin-left: 5.5rem;
  }
  .sample-form .head-txt {
    margin-bottom: 3rem;
  }
  .sample-form .head-txt.step2 {
    margin-bottom: 5rem;
  }
  .sample-form .note-box {
    background: #fff;
    padding: 4rem 5rem;
    margin-bottom: 10rem;
  }
  .sample-form .note-box .note-box-ttl {
    margin-bottom: 2rem;
  }
  .sample-form .note-box .note-box-list {
    gap: 2rem;
  }
  .sample-form .contact__question {
    margin-bottom: 3rem;
  }
  .sample-form .contact__question .contact__require,
  .sample-form .contact__question .contact__any {
    top: 8px;
  }
  .sample-form .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 5%;
  }
  .sample-form .product-grid .wpcf7-list-item {
    width: 100%;
  }
  .sample-form .product-grid .wpcf7-list-item-label {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .sample-form .product-grid .wpcf7-list-item-label::before {
    margin-bottom: 2rem;
  }
  .sample-form .others-note-wrap {
    margin-top: 5rem;
  }
  .sample-form .others-note-wrap .others-note {
    font-size: 2rem;
    padding: 0.7rem 3.5rem;
  }
  .sample-form .flow-wrap {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
  .sample-form .flow-wrap .flow-ttl {
    margin-bottom: 2rem;
  }
  .sample-form .flow-wrap .flow-box {
    padding: 5rem 5.5rem;
  }
  .sample-form .flow-wrap .flow-box .flow-list {
    flex-direction: row;
    gap: 10rem;
  }
  .sample-form .flow-wrap .flow-box .flow-list .flow-item {
    width: calc((100% - 10rem) / 2);
  }
  .sample-form .flow-wrap .flow-box .flow-list .flow-item:not(:last-child)::after {
    content: none;
  }
  .sample-form .flow-wrap .flow-box .flow-list .flow-item:not(:last-child) .flow-item-img {
    position: relative;
  }
  .sample-form .flow-wrap .flow-box .flow-list .flow-item:not(:last-child) .flow-item-img::after {
    content: "";
    position: absolute;
    right: -60px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 20px;
    height: 48.14px;
    background: url(../images/flow-arrow-pc.svg) no-repeat;
  }
  .sample-form .flow-wrap .flow-box .flow-list .flow-item .flow-item-img {
    margin-bottom: 3rem;
  }
  .sample-form .flow-wrap .flow-box .flow-box-note {
    margin-top: 5rem;
    padding-top: 3rem;
  }
  .sample-form .product-grid.is-overlimit .wpcf7-list-item-label {
    opacity: 0.9;
  }
  .stepper {
    margin-bottom: 10rem;
  }
  .stepper .stepper__list::before {
    top: 40px;
  }
  .stepper .stepper__list .stepper__item {
    gap: 1rem;
  }
  .stepper .stepper__list .stepper__item .stepper__circle {
    display: block;
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
  .stepper .stepper__list .stepper__item .stepper__label {
    font-size: 1.6rem;
  }
  .wpcf7-form-control-wrap:not(:last-child) {
    margin-bottom: 5rem;
  }
  .select-wrap,
  .h-adr {
    margin-bottom: 5rem;
  }
  input[type=text],
  input[type=email],
  input[type=tel] {
    padding: 0 2rem;
  }
  textarea {
    padding: 1.8rem 2rem;
  }
  .contact__txt {
    margin-top: 1rem;
  }
  .contact__group {
    margin: 0 0 5rem;
  }
  .privacy {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  .form-error {
    margin: 0 0 3rem;
    font-size: 1.6rem;
  }
  .nav1 {
    text-align: center;
  }
  .nav1 .btn-next,
  .nav1 .btn-back {
    width: 500px;
    height: 100px;
    font-size: 2rem;
    padding: 0;
  }
  .nav4 {
    text-align: center;
  }
  .nav4 .btn-next {
    width: 300px;
    font-size: 1.3rem;
  }
  .recaptcha-notice {
    margin-top: 4rem;
  }
  .review {
    margin-bottom: 10rem;
  }
  .review dt {
    margin-bottom: 1rem;
  }
  .review dd:not(:last-child) {
    margin-bottom: 5rem;
  }
  .main-thanks {
    height: calc(100vh - 88px - 90px);
  }
  .sample-form-thanks,
  .catalog-form-thanks {
    padding: 10rem 0 20rem;
  }
  .sample-form-thanks .thanks-contents,
  .catalog-form-thanks .thanks-contents {
    max-width: 1000px;
    margin: 0 auto;
  }
  .thanks-ttl {
    font-size: 3.6rem;
  }
  .catalog-form {
    padding: 8rem 0 20rem;
  }
  .catalog-form .sec__head {
    margin-bottom: 10rem;
  }
  .catalog-form-thanks .btn-download-wrap {
    margin-top: 3rem;
  }
  .catalog-form-thanks .btn-download {
    height: 100px;
    font-size: 2rem;
  }
  .catalog-form-thanks .btn-download img {
    vertical-align: baseline;
  }
  .catalog-form-thanks .btn-download:hover {
    opacity: 1;
    background: #000;
    color: #fff;
  }
  .catalog-form-thanks .sample-cta {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 10rem;
    flex-direction: row;
    gap: 5%;
  }
  .catalog-form-thanks .sample-cta .img-wrap {
    width: 40%;
  }
  .catalog-form-thanks .sample-cta .img-wrap img {
    width: 100%;
    height: auto;
  }
  .catalog-form-thanks .sample-cta .txt-wrap {
    width: 55%;
  }
}
@media (min-width: 960px) {
  .main-page {
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .sample-form .product-grid {
    gap: 5rem;
  }
  .sample-form .product-grid .wpcf7-list-item-label::after {
    width: 30px;
    height: 30px;
    top: 20px;
    left: 20px;
  }
  .stepper .stepper__list .stepper__item .stepper__label {
    font-size: 1.8rem;
  }
  .thanks-ttl {
    font-size: 4rem;
  }
  .catalog-form .m-1000 {
    max-width: 1000px;
    margin: 0 auto;
  }
  .catalog-form .catalog-form-contents {
    flex-direction: row;
    justify-content: space-between;
    gap: 7.14%;
  }
  .catalog-form .catalog-form-contents .head-txt-wrap {
    width: 46.43%;
  }
  .catalog-form .catalog-form-contents .head-txt-wrap .head-txt {
    margin-bottom: 3rem;
  }
  .catalog-form .catalog-form-contents .head-txt-wrap .catalog-img-wrap {
    margin-bottom: 5rem;
  }
  .catalog-form .catalog-form-contents .head-txt-wrap .catalog-img-wrap .catalog-img-row {
    gap: 4.3%;
    margin-top: 2.5rem;
  }
  .catalog-form .catalog-form-contents .head-txt-wrap .catalog-img-wrap .catalog-img-row img {
    width: 47.85%;
  }
  .catalog-form .catalog-form-contents .head-txt-wrap .tel-wrap .tel-txt {
    margin-bottom: 1rem;
  }
  .catalog-form .catalog-form-contents .head-txt-wrap .tel-wrap .tel-number {
    font-size: 4.3rem;
  }
  .catalog-form .catalog-form-contents .input-wrap {
    width: 46.43%;
  }
}/*# sourceMappingURL=page.css.map */