@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;
  }
}/*# sourceMappingURL=common.css.map */