/* ---------------------------------------------------------- */
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------------------------------------------------------- */
/* アニメーション定義 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  letter-spacing: 0;
  line-height: inherit;
}

/* ---------------------------------------------------------- */
/* 基本設定 */
:root {
  --primary-color: #2d2422;
  --secondary-color: #dd3510;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --view-size: 1440;
}
@media (max-width: 768px) {
  :root {
    --view-size: 375;
  }
}
/* ---------------------------------------------------------- */
/* セクション共通 */

.section__icon {
  text-align: center;
}
@media (max-width: 768px) {
  .section__icon img {
    width: 10%;
  }
}
.section__title {
  font-size: clamp(0px, calc(32 / var(--view-size) * 100vw), 32px);
  text-align: center;
}

@media (max-width: 768px) {
  .section__title {
    font-size: calc(27 / var(--view-size) * 100vw);
  }
}

.section__title span {
  color: #dd3510;
  font-size: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}

@media (max-width: 768px) {
  .section__title span {
    color: #dd3510;
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}
.section__subtitle {
  font-weight: bold;
  text-align: center;
  color: #dd3510;
  font-size: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  font-family: "Lato", sans-serif;
}
@media (max-width: 768px) {
  .section__subtitle {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}

.price__subtitle {
  text-align: center;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
}
@media (max-width: 768px) {
  .price__subtitle {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}
.pc-only {
  display: block;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.section__line--before {
  width: 100vw;
  margin-bottom: calc(-10 / var(--view-size) * 100vw);
}

@media (max-width: 768px) {
  .section__line--before {
    width: 100vw;
    margin-bottom: calc(-6 / var(--view-size) * 100vw);
  }
}

.section__line--after {
  width: 100vw;
  margin-bottom: calc(-1 / var(--view-size) * 100vw);
}

@media (max-width: 768px) {
  .section__line--after {
    width: 100vw;
  }
}

/* ---------------------------------------------------------- */
/* 基本レイアウト */
body {
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 clamp(0px, calc(100 / var(--view-size) * 100vw), 100px);
  max-width: 1440px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 calc(20 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* フェードインアニメーション */
.fade-in-section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 見出し用フェードイン */
.fade-in-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-heading.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* 要素用フェードイン（段階的） */
.fade-in-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 段階的な遅延 */
.fade-in-item:nth-child(1).visible {
  transition-delay: 0.1s;
}
.fade-in-item:nth-child(2).visible {
  transition-delay: 0.2s;
}
.fade-in-item:nth-child(3).visible {
  transition-delay: 0.3s;
}
.fade-in-item:nth-child(4).visible {
  transition-delay: 0.4s;
}
.fade-in-item:nth-child(5).visible {
  transition-delay: 0.5s;
}
.fade-in-item:nth-child(6).visible {
  transition-delay: 0.6s;
}
.fade-in-item:nth-child(7).visible {
  transition-delay: 0.7s;
}
.fade-in-item:nth-child(8).visible {
  transition-delay: 0.8s;
}

/* ---------------------------------------------------------- */
/* ナビゲーション */
.nav {
  background: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}
.nav .container {
  padding: 0 calc(100 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .nav .container {
    padding: 0 calc(20 / var(--view-size) * 100vw);
  }
}

.nav.hide {
  transform: translateY(-100%);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0px, calc(12 / var(--view-size) * 100vw), 12px) 0;
}
@media (max-width: 768px) {
  .nav__wrapper {
    padding: calc(12 / var(--view-size) * 100vw) 0;
  }
}

.nav__logo {
  display: block;
  text-decoration: none;
}

.nav__logo img {
  width: clamp(0px, calc(200 / var(--view-size) * 100vw), 200px);
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .nav__logo img {
    width: calc(140 / var(--view-size) * 100vw);
  }
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
    z-index: 10000000;
  }
}

.nav__toggle span {
  display: block;
  width: calc(25 / var(--view-size) * 100vw);
  height: calc(2 / var(--view-size) * 100vw);
  background: var(--text-color);
  margin: calc(5 / var(--view-size) * 100vw) 0;
  transition: 0.3s;
  border-radius: 10000px;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: clamp(0px, calc(30 / var(--view-size) * 100vw), 30px);
}
@media (max-width: 768px) {
  .nav__menu {
    gap: calc(30 / var(--view-size) * 100vw);
  }
}

.nav__menu .nav__menu-link {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
  font-size: clamp(0px, calc(15 / var(--view-size) * 100vw), 15px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 10);
  font-weight: 500;
}
.nav__menu__external-link {
  display: none;
}

@media (max-width: 768px) {
  .nav__menu .nav__menu-link {
    font-size: calc(15 / var(--view-size) * 100vw);
    position: relative;
    padding-left: calc(30 / var(--view-size) * 100vw);
  }
  .nav__menu .nav__menu-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 54%;
    transform: translateY(-50%);
    width: calc(20 / var(--view-size) * 100vw);
    background: #2d2422;
    aspect-ratio: 1 / 1;
    border-radius: 10000px;
    background-image: url(../img/slider-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: calc(-10 / var(--view-size) * 100vw);
    left: 0;
    right: 0;
    height: auto;
    background: var(--white);
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    padding: calc(20 / var(--view-size) * 100vw);
    padding-bottom: calc(60 / var(--view-size) * 100vw);
    padding-top: calc(80 / var(--view-size) * 100vw);
    display: flex;
    background: #fcf6ea;
  }

  .nav__menu.active {
    transform: translateY(0);
  }

  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav__overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu__external-link {
    display: flex;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: calc(13 / var(--view-size) * 100vw);
    text-shadow: 0 0 10px rgba(255, 255, 255, 10);
    font-weight: 500;
    gap: calc(8 / var(--view-size) * 100vw);
  }
  .nav__menu__external-link a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    gap: calc(8 / var(--view-size) * 100vw);
  }
  .nav__menu__external-link img {
    width: calc(14 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* ヒーローセクション */
.hero {
  background: url(../img/fv-bg.jpg);
  background-position: right -40% center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero {
    background-position: left 70% bottom;
    background-size: 120%;
  }
}

.hero .container {
  display: grid;
  align-items: center;
  padding: calc(120 / var(--view-size) * 100vw);
  aspect-ratio: 1440 / 740;
  background: linear-gradient(90deg, #fcf6ea 40%, #fcf6ea00 70%);
  max-width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  .hero .container {
    padding: 0;
    aspect-ratio: inherit;
    padding: calc(120 / var(--view-size) * 100vw) 0;
    padding-bottom: calc(300 / var(--view-size) * 100vw);
    background: linear-gradient(180deg, #fcf6ea 50%, #fcf6ea00 70%);
  }
}

.hero__content {
  display: block;
  text-align: center;
}

.hero__buttons {
  display: flex;
  gap: calc(10 / var(--view-size) * 100vw);
  padding-top: calc(14 / var(--view-size) * 100vw);
  justify-content: center;
  opacity: 0;
}
.hero.images-loaded .hero__buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}
@media (max-width: 768px) {
  .hero__buttons {
    display: none;
  }
}
.hero .btn {
  font-size: calc(16 / var(--view-size) * 100vw);
  width: calc(240 / var(--view-size) * 100vw);
  text-align: center;
  position: relative;
  padding: calc(20 / var(--view-size) * 100vw) 0;
}
.btn__icon {
  position: absolute;
  left: calc(20 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
  padding: calc(12 / var(--view-size) * 100vw);
}
.btn__arrow {
  position: absolute;
  right: calc(20 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
  padding: calc(8 / var(--view-size) * 100vw);
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__tel {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: calc(40 / var(--view-size) * 100vw);
  gap: calc(20 / var(--view-size) * 100vw);
  padding-top: calc(16 / var(--view-size) * 100vw);
  font-family: "Lato", sans-serif;
  justify-content: center;
  opacity: 0;
}
.hero.images-loaded .hero__tel {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero__tel .hero__tel-link {
  display: flex;
  align-items: center;
  gap: calc(12 / var(--view-size) * 100vw);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.hero__tel .hero__tel-link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero__tel {
    display: none;
  }
}
.hero__areas {
  font-size: calc(14 / var(--view-size) * 100vw);
  display: flex;
  gap: calc(14 / var(--view-size) * 100vw);
  padding-top: calc(10 / var(--view-size) * 100vw);
  justify-content: center;
  opacity: 0;
}
.hero.images-loaded .hero__areas {
  animation: fadeInUp 1s ease-out 1s both;
}
@media (max-width: 768px) {
  .hero__areas {
    display: none;
  }
}

.hero__areas p {
  display: inline-block;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: calc(4 / var(--view-size) * 100vw)
    calc(20 / var(--view-size) * 100vw);
  transition: all 0.3s ease;
}
.hero__title {
  display: flex;
  flex-direction: column;
}
.hero__title-img--primary {
  width: calc(570 / var(--view-size) * 100vw);
  margin: auto;
  margin-bottom: calc(26 / var(--view-size) * 100vw);
  opacity: 0;
}
.hero.images-loaded .hero__title-img--primary {
  animation: fadeInUp 0.8s ease-out forwards;
}
.hero__title-img--secondary {
  width: calc(111 / var(--view-size) * 100vw);
  margin: auto;
  opacity: 0;
}
.hero.images-loaded .hero__title-img--secondary {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero__title-img--main {
  width: calc(737 / var(--view-size) * 100vw);
  margin: auto;
  opacity: 0;
}
.hero.images-loaded .hero__title-img--main {
  animation: fadeInUp 1s ease-out 0.4s both;
}
@media (max-width: 768px) {
  .hero__title-img--primary {
    width: calc(240 / var(--view-size) * 100vw);
    margin: auto;
    margin-bottom: calc(18 / var(--view-size) * 100vw);
  }
  .hero__title-img--secondary {
    width: calc(100 / var(--view-size) * 100vw);
    margin: auto;
  }
  .hero__title-img--main {
    width: calc(370 / var(--view-size) * 100vw);
    margin: auto;
  }
}
/* ---------------------------------------------------------- */
/* ボタン */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white);
  transition: all 0.3s ease;
  transform: translateY(0);
}
.btn-primary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 36, 34, 0.3);
}

.btn-primary:hover .btn__arrow {
  background-image: url(../img/arrow-hover-primary.svg);
}

.btn-primary .btn__icon--mail {
  background-image: url(../img/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-primary:hover .btn__icon--mail {
  background-image: url(../img/mail-hover.svg);
}

.btn-secondary .btn__icon--calendar {
  background-image: url(../img/calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-secondary {
  background: var(--secondary-color);
  color: white;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateY(0);
}
.btn-secondary:hover {
  background: white;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(221, 53, 16, 0.3);
}
.btn-secondary:hover .btn__arrow {
  background-image: url(../img/arrow-hover-secondary.svg);
}
.btn-secondary:hover .btn__icon--calendar {
  background-image: url(../img/calendar-hover.svg);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
}

/* ---------------------------------------------------------- */
/* About セクション */
.about__content {
  background-color: #fcf6ea;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about__content {
    padding: calc(40 / var(--view-size) * 100vw) 0;
    padding-bottom: calc(80 / var(--view-size) * 100vw);
  }
}

.about__item {
  display: flex;
  align-items: center;
  margin-top: clamp(0px, calc(100 / var(--view-size) * 100vw), 100px);
  margin-bottom: clamp(0px, calc(160 / var(--view-size) * 100vw), 160px);
  gap: clamp(0px, calc(120 / var(--view-size) * 100vw), 120px);
  position: relative;
}

@media (max-width: 768px) {
  .about__item {
    flex-direction: column;
    margin-right: 0;
    margin-left: 0;
    gap: calc(40 / var(--view-size) * 100vw);
    margin-bottom: 0;
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}
.about__item:last-child {
}
@media (max-width: 768px) {
  .about__item:last-child {
    margin-top: calc(100 / var(--view-size) * 100vw);
  }
}

.about__text-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .about__text-content {
    order: 2;
  }
}
.about__text-content--01 {
  margin-left: clamp(0px, calc(100 / var(--view-size) * 100vw), 100px);
}
.about__text-content--right {
  margin-right: clamp(0px, calc(100 / var(--view-size) * 100vw), 100px);
}
@media (max-width: 768px) {
  .about__text-content--01 {
    margin-left: 0;
  }
  .about__text-content--right {
    margin-right: 0;
  }
}
.about__title {
  font-size: clamp(0px, calc(32 / var(--view-size) * 100vw), 32px);
  margin-bottom: clamp(0px, calc(28 / var(--view-size) * 100vw), 28px);
}
@media (max-width: 768px) {
  .about__title {
    font-size: calc(22 / var(--view-size) * 100vw);
    margin-top: calc(28 / var(--view-size) * 100vw);
    margin-bottom: calc(28 / var(--view-size) * 100vw);
  }
}

.about__description {
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about__description {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}

.about__image {
  flex: 1;
  z-index: 1;
  width: clamp(0px, calc(500 / var(--view-size) * 100vw), 500px);
}
@media (max-width: 768px) {
  .about__image {
    order: 1;
    width: 100%;
  }
}

.about__image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 2px solid #dd3510;
}
@media (max-width: 768px) {
  .about__image img {
    width: 100%;
  }
}

.about__bg {
  position: absolute;
  left: clamp(-180px, calc(-180 / var(--view-size) * 100vw), 0px);
  top: clamp(-30px, calc(-30 / var(--view-size) * 100vw), 0px);
  width: clamp(0px, calc(1600 / var(--view-size) * 100vw), 1600px);
}
@media (max-width: 768px) {
  .about__bg {
    left: calc(-400 / var(--view-size) * 100vw);
    top: calc(200 / var(--view-size) * 100vw);
    width: calc(1400 / var(--view-size) * 100vw);
  }
  .about__bg--01 {
    width: calc(1600 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* CVRセクション */
.cta {
  padding: calc(58 / var(--view-size) * 100vw) 0;
  background: #dd3510;
  color: var(--white);
  position: relative;
}
@media (max-width: 768px) {
  .cta {
    padding: calc(50 / var(--view-size) * 100vw) 0;
    padding-top: calc(70 / var(--view-size) * 100vw);
  }
}

.cta__content {
  text-align: center;
}

.cta__title {
  font-size: calc(32 / var(--view-size) * 100vw);
  font-weight: bold;
  position: relative;
  z-index: 1;
  margin-bottom: calc(20 / var(--view-size) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: calc(28 / var(--view-size) * 100vw);
    flex-direction: column;
  }
}
.cta__title-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cta__title-inner {
    line-height: 0;
  }
}
.cta__subtitle {
  display: inline-block;
  line-height: 1.5;
  margin-top: calc(24 / var(--view-size) * 100vw);
}
.cta__subtitle p {
  font-size: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .cta__subtitle p {
    padding-left: 0;
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.cta__title span {
  color: #ffff00;
  font-size: 110%;
}
.cta__buttons {
  display: flex;
  gap: calc(10 / var(--view-size) * 100vw);
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta__buttons {
    flex-wrap: wrap;
    gap: calc(20 / var(--view-size) * 100vw);
  }
}
.cta .btn {
  font-size: calc(16 / var(--view-size) * 100vw);
  width: calc(240 / var(--view-size) * 100vw);
  text-align: center;
  position: relative;
  padding: calc(20 / var(--view-size) * 100vw) 0;
  height: calc(78 / var(--view-size) * 100vw);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.cta .btn span {
  font-size: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .cta .btn {
    font-size: calc(14 / var(--view-size) * 100vw);
    width: 100%;
    padding: calc(20 / var(--view-size) * 100vw) 0;
  }
  .cta .btn .btn__icon {
    left: calc(20 / var(--view-size) * 100vw);
  }
  .cta .btn .btn__arrow {
    right: calc(20 / var(--view-size) * 100vw);
  }
  .cta .btn.btn-secondary .btn__icon {
    left: calc(20 / var(--view-size) * 100vw);
  }
}
.cta .btn.btn-secondary {
  background-color: white;
  color: var(--secondary-color);
}
.cta .btn.btn-secondary:hover {
  border: 1px solid white;
}
.cta .btn.btn-secondary .btn__icon--calendar {
  background-image: url(../img/calendar-hover.svg);
}
.cta .btn.btn-secondary:hover .btn__icon--calendar {
  background-image: url(../img/calendar.svg);
}
.cta .btn.btn-secondary .btn__arrow {
  background-image: url(../img/arrow-hover-secondary.svg);
}
.cta .btn.btn-secondary:hover .btn__arrow {
  background-image: url(../img/arrow.svg);
}
.cta .btn.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}
.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* ---------------------------------------------------------- */
/* Performanceセクション */
.performance {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0;
  background-color: #fcf6ea;
  text-align: center;
}
@media (max-width: 768px) {
  .performance {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
  .performance .container {
    padding: 0;
  }
}
.performance-image {
  margin: 0 auto;
  width: clamp(0px, calc(800 / var(--view-size) * 100vw), 800px);
  max-width: 100%;
  margin: auto;
  margin-top: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
}
.performance-image img {
  width: 100%;
}
@media (max-width: 768px) {
  .performance-image {
    width: calc(640 / var(--view-size) * 100vw);
    overflow: scroll;
    padding-left: calc(20 / var(--view-size) * 100vw);
    padding-right: calc(20 / var(--view-size) * 100vw);
    margin-top: calc(20 / var(--view-size) * 100vw);
  }
  .performance-image img {
    width: 100%;
    min-width: calc(640 / var(--view-size) * 100vw);
  }
}
.performance__table {
  width: clamp(0px, calc(800 / var(--view-size) * 100vw), 800px);
  margin: auto;
  height: auto;
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
@media (max-width: 768px) {
  .performance__table {
    min-width: 620px;
  }
}

.performance__table {
  display: flex;
  flex-direction: column;
}

.performance__row {
  display: flex;
}

.performance__cell {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(0px, calc(80 / var(--view-size) * 100vw), 80px);
  text-align: center;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  margin-left: -1px;
  margin-bottom: -1px;
  font-weight: bold;
  font-size: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
}
.performance__cell--header {
  background-color: #efefef;
}

/* ---------------------------------------------------------- */
/* Coating セクション */
.coating {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0;
}
@media (max-width: 768px) {
  .coating {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}

.coating__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0px, calc(30 / var(--view-size) * 100vw), 30px);
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}

@media (max-width: 768px) {
  .coating__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .before-after__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.coating__item {
  background: var(--white);
  text-align: center;
}

.coating__image {
  overflow: hidden;
}

.coating__image img {
  width: 100%;
  object-fit: cover;
}

.coating__title {
  color: var(--text-color);
  font-size: clamp(0px, calc(18 / var(--view-size) * 100vw), 18px);
  color: #dd3510;
  margin-top: clamp(0px, calc(12 / var(--view-size) * 100vw), 12px);
  margin-bottom: clamp(0px, calc(12 / var(--view-size) * 100vw), 12px);
}
@media (max-width: 768px) {
  .coating__title {
    font-size: calc(18 / var(--view-size) * 100vw);
    margin-top: calc(12 / var(--view-size) * 100vw);
    margin-bottom: calc(12 / var(--view-size) * 100vw);
  }
}

.coating__text {
  line-height: 1.6;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  text-align: left;
}
@media (max-width: 768px) {
  .coating__text {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* Before&After セクション */
.beforeafter {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0
    clamp(0px, calc(100 / var(--view-size) * 100vw), 100px);
}
@media (max-width: 768px) {
  .beforeafter {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0px, calc(30 / var(--view-size) * 100vw), 30px);
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
@media (max-width: 768px) {
  .before-after__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(0px, calc(70 / var(--view-size) * 100vw), 70px);
  }
}

.before-after__image {
  overflow: visible;
  position: relative;
}
.before-after__number {
  display: inline-block;
  background-color: #dd3510;
  border-radius: 1000px;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 4px 20px;
  left: 50%;
  font-weight: bold;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
}

.before-after__image img {
  width: 100%;
  object-fit: cover;
}

.before-after__comment-title {
  font-size: clamp(0px, calc(15 / var(--view-size) * 100vw), 15px);
  margin-bottom: clamp(0px, calc(8 / var(--view-size) * 100vw), 8px);
  font-weight: bold;
}
@media (max-width: 768px) {
  .before-after__comment-title {
    margin-bottom: calc(8 / var(--view-size) * 100vw);
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}

.before-after__comment-text {
  line-height: 1.6;
  font-size: clamp(0px, calc(13 / var(--view-size) * 100vw), 13px);
}
@media (max-width: 768px) {
  .before-after__comment-text {
    font-size: calc(13 / var(--view-size) * 100vw);
  }
}
.before-after__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: clamp(0px, calc(8 / var(--view-size) * 100vw), 8px) 0;
  margin-bottom: clamp(0px, calc(12 / var(--view-size) * 100vw), 12px);
  font-size: clamp(0px, calc(14 / var(--view-size) * 100vw), 14px);
}
@media (max-width: 768px) {
  .before-after__content {
    margin: calc(8 / var(--view-size) * 100vw) 0;
    margin-bottom: calc(12 / var(--view-size) * 100vw);
    font-size: calc(13 / var(--view-size) * 100vw);
  }
}
.before-after__content .before-after__tags {
  display: flex;
  align-items: center;
  gap: clamp(0px, calc(4 / var(--view-size) * 100vw), 4px);
}

.before-after__content .before-after__tags-brown {
  background-color: #7d502b;
  color: white;
  padding: clamp(0px, calc(4 / var(--view-size) * 100vw), 4px)
    clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
.before-after__tags-grey {
  background-color: #7d7d7d;
  color: white;
  padding: clamp(0px, calc(4 / var(--view-size) * 100vw), 4px)
    clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
.before-after__tags-red {
  background-color: #b92626;
  color: white;
  padding: clamp(0px, calc(4 / var(--view-size) * 100vw), 4px)
    clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
.before-after__content .before-after__tags-house {
  background-color: #2d2422;
  color: white;
  padding: clamp(0px, calc(4 / var(--view-size) * 100vw), 4px)
    clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}

.before-after__comment {
  background-color: #f8f8f8;
  border-radius: 20px 20px 0 20px;
  padding: clamp(0px, calc(12 / var(--view-size) * 100vw), 12px)
    clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
}
@media (max-width: 768px) {
  .before-after__comment {
    padding: calc(20 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* Flowセクション */
.flow {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0;
}
@media (max-width: 768px) {
  .flow {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}
.flow__image {
  margin: 0 auto;
  width: clamp(0px, calc(800 / var(--view-size) * 100vw), 800px);
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
}
@media (max-width: 768px) {
  .flow__image {
    display: block;
    margin-left: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  }
}
.flow__image-inner {
  width: clamp(0px, calc(160 / var(--view-size) * 100vw), 160px);
  text-align: center;
  font-weight: 500;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
.flow__image-inner img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .flow__image-inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
    margin-top: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
    text-align: left;
  }
  .flow__image-inner img {
    width: clamp(0px, calc(140 / var(--view-size) * 100vw), 140px);
  }
}
.flow__image-inner.flow__image-inner--arrow {
  width: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  margin-top: clamp(0px, calc(120 / var(--view-size) * 100vw), 120px);
}
@media (max-width: 768px) {
  .flow__image-inner.flow__image-inner--arrow {
    transform: rotate(90deg);
    width: clamp(0px, calc(24 / var(--view-size) * 100vw), 24px);
    margin-top: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
    margin-left: clamp(0px, calc(56 / var(--view-size) * 100vw), 56px);
  }
  .flow__image-inner.flow__image-inner--arrow img {
    width: clamp(0px, calc(24 / var(--view-size) * 100vw), 24px);
  }
}

@media (max-width: 768px) {
  .flow__image {
    width: calc(800 / var(--view-size) * 100vw);
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.flow__image-inner__subtext {
  font-size: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
  font-weight: bold;
}
.flow__image-inner__subtext__highlight {
  font-weight: bold;
  color: #dd3510;
  background: linear-gradient(transparent 50%, #ffff00 50%);
  font-size: clamp(0px, calc(14 / var(--view-size) * 100vw), 14px);
}

.flow__image-inner__subtext__normal {
  font-weight: bold;
  color: #dd3510;
  font-size: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}

/* ---------------------------------------------------------- */
/* Priceセクション */
.price {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0;
}
@media (max-width: 768px) {
  .price {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}

.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0px, calc(30 / var(--view-size) * 100vw), 30px);
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
@media (max-width: 768px) {
  .price__grid {
    grid-template-columns: 1fr;
  }
}

.price__itemm {
  background: var(--white);
  position: relative;
  border: 1px solid #dd3510;
}
.price__header {
  text-align: center;
}
.price__plan {
  background-color: #dd3510;
  color: white;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  padding: clamp(0px, calc(12 / var(--view-size) * 100vw), 60px) 0;
  height: clamp(0px, calc(76 / var(--view-size) * 100vw), 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .price__plan {
    font-size: calc(16 / var(--view-size) * 100vw);
    padding: calc(12 / var(--view-size) * 100vw) 0;
    min-height: calc(76 / var(--view-size) * 100vw);
  }
}
.price__plan span {
  font-weight: 400;
}
.price__cost {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(0px, calc(5 / var(--view-size) * 100vw), 5px);
  padding: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px)
    clamp(0px, calc(40 / var(--view-size) * 100vw), 40px)
    clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
@media (max-width: 768px) {
  .price__cost {
    gap: calc(5 / var(--view-size) * 100vw);
    padding: calc(20 / var(--view-size) * 100vw)
      calc(40 / var(--view-size) * 100vw) calc(40 / var(--view-size) * 100vw);
  }
}

.price__info {
  background: linear-gradient(transparent 50%, #ffff00 50%);
}
.price__amount {
  font-size: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
  font-weight: bold;
}
@media (max-width: 768px) {
  .price__amount {
    font-size: calc(40 / var(--view-size) * 100vw);
  }
}

.price__unit {
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  font-weight: bold;
}
@media (max-width: 768px) {
  .price__unit {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* FAQセクション */
.faq__content {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0;
  background-color: #fcf6ea;
}
@media (max-width: 768px) {
  .faq__content {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}

.faq__list {
  max-width: clamp(0px, calc(800 / var(--view-size) * 100vw), 800px);
  margin: 0 auto;
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
@media (max-width: 768px) {
  .faq__list {
    max-width: calc(800 / var(--view-size) * 100vw);
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.faq__item {
  background: var(--white);
  border: 1px solid #b9b9b9;
  overflow: hidden;
  margin-top: -1px;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  padding-right: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .faq__question {
    padding: calc(14 / var(--view-size) * 100vw)
      calc(20 / var(--view-size) * 100vw);
  }
}

.faq__question h3 {
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  color: var(--text-color);
  margin: 0;
  flex: 1;
  padding-right: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  display: flex;
  gap: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
  align-items: center;
  font-weight: 500;
}
@media (max-width: 768px) {
  .faq__question h3 {
    font-size: calc(14 / var(--view-size) * 100vw);
    padding-right: calc(20 / var(--view-size) * 100vw);
    gap: calc(10 / var(--view-size) * 100vw);
  }
}

.faq__toggle {
  font-size: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  color: var(--secondary-color);
  font-weight: bold;
  transition: transform 0.3s;
  text-align: center;
}
@media (max-width: 768px) {
  .faq__toggle {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}

.faq__item.active .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 clamp(0px, calc(30 / var(--view-size) * 100vw), 30px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding: 0 clamp(0px, calc(30 / var(--view-size) * 100vw), 30px)
    clamp(0px, calc(30 / var(--view-size) * 100vw), 30px);
}

.faq__answer p {
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  margin-top: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
}
@media (max-width: 768px) {
  .faq__answer p {
    font-size: calc(14 / var(--view-size) * 100vw);
    margin-top: calc(20 / var(--view-size) * 100vw);
  }
}
.faq__item.active .faq__question {
  background-color: #f9e3d4;
}
.faq__item.active h3 {
  color: #dd3510;
}
.faq__item h3 span {
  font-weight: bold;
  color: #dd3510;
  font-size: clamp(0px, calc(32 / var(--view-size) * 100vw), 32px);
}
.faq__answer span {
  font-weight: bold;
  color: #dd3510;
  font-size: clamp(0px, calc(32 / var(--view-size) * 100vw), 32px);
}
@media (max-width: 768px) {
  .faq__item h3 span {
    font-size: calc(28 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* Featuresセクション */
.features {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0;
}

@media (max-width: 768px) {
  .features {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}
.features__wrapper {
  display: flex;
  gap: clamp(0px, calc(100 / var(--view-size) * 100vw), 100px);
  position: relative;
  justify-content: space-between;
  margin: auto;
  margin-top: clamp(0px, calc(100 / var(--view-size) * 100vw), 100px);
}
@media (max-width: 768px) {
  .features__wrapper {
    margin-top: calc(32 / var(--view-size) * 100vw);
  }
}

/* Sticky サイドバー */
.eatures__sidebar {
  width: clamp(0px, calc(240 / var(--view-size) * 100vw), 240px);
  position: sticky;
  top: clamp(0px, calc(200 / var(--view-size) * 100vw), 200px);
  height: fit-content;
}
@media (max-width: 768px) {
  .eatures__sidebar {
    display: none;
  }
}

.eatures__nav {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  color: #333;
}

.features__nav-link {
  display: flex;
  align-items: center;
  gap: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0.5;
}

.features__nav-link.active {
  opacity: 1;
  font-weight: bold;
}

.features__nav-number {
  font-weight: bold;
  width: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  aspect-ratio: 1/1;
  aspect-ratio: 1 / 1;
  background: #dd3510;
  border-radius: 1000000px;
}

.features__nav-title {
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  color: #333;
}

/* ---------------------------------------------------------- */
/* Features コンテンツ */
.features__content {
  flex: 1;
  max-width: clamp(0px, calc(700 / var(--view-size) * 100vw), 700px);
  margin-left: auto;
}
.feature {
  margin-bottom: clamp(0px, calc(100 / var(--view-size) * 100vw), 100px);
  scroll-margin-top: clamp(0px, calc(80 / var(--view-size) * 100vw), 80px);
}

.features__content img {
  width: 100%;
  border: 2px solid #dd3510;
}

.feature__subtitle {
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  margin-top: clamp(0px, calc(8 / var(--view-size) * 100vw), 8px);
  margin-bottom: clamp(0px, calc(8 / var(--view-size) * 100vw), 8px);
  color: var(--secondary-color);
  font-weight: bold;
}
@media (max-width: 768px) {
  .feature__subtitle {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-top: calc(8 / var(--view-size) * 100vw);
    margin-bottom: calc(8 / var(--view-size) * 100vw);
  }
}
.feature__title {
  font-size: clamp(0px, calc(24 / var(--view-size) * 100vw), 24px);
  margin-bottom: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
  color: var(--text-color);
}
@media (max-width: 768px) {
  .feature__title {
    font-size: calc(22 / var(--view-size) * 100vw);
    margin-bottom: calc(10 / var(--view-size) * 100vw);
  }
}
.feature__description {
  position: relative;
}
.feature__description p {
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .feature__description p {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}

.feature__description p.feature__description-number {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 0.6;
  font-size: clamp(0px, calc(200 / var(--view-size) * 100vw), 200px);
  z-index: -1;
  color: #fcf6ea;
  font-weight: bold;
}
@media (max-width: 768px) {
  .feature__description p.feature__description-number {
    font-size: calc(160 / var(--view-size) * 100vw);
  }
}

.about__feature-img {
  position: absolute;
  top: -14%;
  left: -14%;
  width: clamp(0px, calc(140 / var(--view-size) * 100vw), 140px);
}
@media (max-width: 768px) {
  .about__feature-img {
    top: -10%;
    left: -6%;
    width: calc(120 / var(--view-size) * 100vw);
  }
}
/* ---------------------------------------------------------- */
/* Servicesセクション */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s;
}

.service-item h3 {
  margin-bottom: 1rem;
}

.service-item p {
  margin-bottom: 1rem;
}

.link-arrow {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

/* ---------------------------------------------------------- */
/* Pricingセクション */
.pricing {
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: bold;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
  border-bottom: none;
}

/* ---------------------------------------------------------- */
/* Voiceセクション */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.stars {
  color: #fbc02d;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-size: 0.875rem;
}

/* ---------------------------------------------------------- */
/* Contactセクション */
.contact {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0;
}

@media (max-width: 768px) {
  .contact {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}

.contact__confirm {
  padding: clamp(0px, calc(120 / var(--view-size) * 100vw), 120px) 0
    clamp(0px, calc(60 / var(--view-size) * 100vw), 60px);
}
@media (max-width: 768px) {
  .contact__confirm {
    padding: calc(100 / var(--view-size) * 100vw) 0
      calc(40 / var(--view-size) * 100vw);
  }
}
.contact__thanks {
  padding: clamp(0px, calc(120 / var(--view-size) * 100vw), 120px) 0;
}
@media (max-width: 768px) {
  .contact__thanks {
    padding: calc(100 / var(--view-size) * 100vw) 0;
  }
}
.contact__subtitle {
  text-align: center;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  margin-top: clamp(0px, calc(15 / var(--view-size) * 100vw), 15px);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .contact__subtitle {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.info-card p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color) !important;
  margin: 0.5rem 0;
}

.business-hours {
  font-size: 0.9rem;
}

.note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ---------------------------------------------------------- */
/* フッター */
.footer {
  background: #fcf6ea;
  padding-top: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}

.footer__logo {
  margin-bottom: clamp(0px, calc(30 / var(--view-size) * 100vw), 30px);
}

.footer__logo img {
  width: clamp(0px, calc(200 / var(--view-size) * 100vw), 200px);
  height: auto;
}
@media (max-width: 768px) {
  .footer__logo img {
    width: calc(200 / var(--view-size) * 100vw);
  }
}

.footer__title {
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  font-weight: 500;
  margin-bottom: clamp(0px, calc(15 / var(--view-size) * 100vw), 15px);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer__title {
    font-size: calc(14 / var(--view-size) * 100vw);
    margin-bottom: calc(15 / var(--view-size) * 100vw);
  }
}

.footer__address {
  font-size: clamp(0px, calc(14 / var(--view-size) * 100vw), 14px);
  margin-bottom: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
@media (max-width: 768px) {
  .footer__address {
    font-size: calc(14 / var(--view-size) * 100vw);
    margin-bottom: calc(10 / var(--view-size) * 100vw);
  }
}

.footer__contact {
  font-size: clamp(0px, calc(14 / var(--view-size) * 100vw), 14px);
  color: var(--primary-color);
  text-decoration: none;
}
.footer__contact a {
  color: var(--primary-color);
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer__contact {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.footer__contact--site {
  margin-top: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
.footer__contact--site a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: clamp(0px, calc(14 / var(--view-size) * 100vw), 14px);
  margin-bottom: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__contact--site a img {
  width: clamp(0px, calc(13 / var(--view-size) * 100vw), 13px);
  margin-left: clamp(0px, calc(6 / var(--view-size) * 100vw), 6px);
  margin-top: clamp(0px, calc(2 / var(--view-size) * 100vw), 2px);
}

.footer__copyright {
  background: #dd3510;
  padding: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px) 0;
  font-size: clamp(0px, calc(13 / var(--view-size) * 100vw), 13px);
  text-align: center;
  color: var(--white);
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}

.footer__copyright p {
  font-size: clamp(0px, calc(13 / var(--view-size) * 100vw), 14px);
  margin: 0;
}
@media (max-width: 768px) {
  .footer__copyright p {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
/* ---------------------------------------------------------- */
/* Voice Swiperカスタマイズ */
.voice {
  padding: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px) 0;
  overflow: clip;
}
@media (max-width: 768px) {
  .voice {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}
@media (max-width: 768px) {
  .voice .section__title {
    font-size: calc(22 / var(--view-size) * 100vw);
  }
  .voice .section__title span {
    font-size: calc(26 / var(--view-size) * 100vw);
  }
}

.voice__card {
  background: #fcf6ea;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px);
  padding: clamp(0px, calc(24 / var(--view-size) * 100vw), 24px);
  padding-top: clamp(0px, calc(90 / var(--view-size) * 100vw), 90px);
}
@media (max-width: 768px) {
  .voice__card {
    margin-top: calc(60 / var(--view-size) * 100vw);
    padding: calc(24 / var(--view-size) * 100vw);
    padding-top: calc(90 / var(--view-size) * 100vw);
  }
}

.voice__image {
  width: clamp(0px, calc(180 / var(--view-size) * 100vw), 180px);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .voice__image {
    width: calc(180 / var(--view-size) * 100vw);
  }
}

.voice__image img {
  height: auto;
  object-fit: cover;
  width: clamp(0px, calc(180 / var(--view-size) * 100vw), 180px);
  border: 5px solid white;
}

.voice__title {
  font-size: clamp(0px, calc(18 / var(--view-size) * 100vw), 18px);
  color: var(--text-color);
  text-align: center;
  margin-bottom: clamp(0px, calc(8 / var(--view-size) * 100vw), 8px);
}
@media (max-width: 768px) {
  .voice__title {
    font-size: calc(18 / var(--view-size) * 100vw);
    margin-bottom: calc(8 / var(--view-size) * 100vw);
  }
}

.voice__text {
  line-height: 1.8;
  flex-grow: 1;
  font-size: clamp(0px, calc(15 / var(--view-size) * 100vw), 15px);
}
@media (max-width: 768px) {
  .voice__text {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.voice__text span {
  font-weight: 500;
  color: #dd3510;
}
.voice__swiper {
  padding: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px) 0;
}
@media (max-width: 768px) {
  .voice__swiper {
    padding: calc(40 / var(--view-size) * 100vw);
    width: 140%;
    margin-left: -20%;
  }
}
.swiper__wrapper {
  position: relative;
}
/* ---------------------------------------------------------- */
/* Voice Swiperボタンカスタマイズ */
.swiper__wrapper .swiper-button-prev,
.swiper__wrapper .swiper-button-next {
  width: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px);
  height: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px);
  color: white;
  background: var(--primary-color);
  border-radius: 1000000px;
  border: 3px solid white;
  background-image: url("../img/slider-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}
.swiper__wrapper .swiper-button-prev {
  left: clamp(-24px, calc(-24 / var(--view-size) * 100vw), 0px);
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .swiper__wrapper .swiper-button-prev {
    width: calc(42 / var(--view-size) * 100vw);
    height: calc(42 / var(--view-size) * 100vw);
    left: clamp(-12px, calc(-12 / var(--view-size) * 100vw), 0px);
  }
}
.swiper__wrapper .swiper-button-next {
  right: clamp(-24px, calc(-24 / var(--view-size) * 100vw), 0px);
}
@media (max-width: 768px) {
  .swiper__wrapper .swiper-button-next {
    width: calc(42 / var(--view-size) * 100vw);
    height: calc(42 / var(--view-size) * 100vw);
    right: clamp(-12px, calc(-12 / var(--view-size) * 100vw), 0px);
  }
  .swiper__wrapper .swiper-button-prev,
  .swiper__wrapper .swiper-button-next {
    background-size: calc(16 / var(--view-size) * 100vw)
      calc(16 / var(--view-size) * 100vw);
  }
}
.swiper__wrapper .swiper-button-prev:after,
.swiper__wrapper .swiper-button-next:after {
  content: "";
}

/* ---------------------------------------------------------- */
/* Voice Swiperボタンカスタマイズ */
.voice__swiper .swiper-button-prev,
.voice__swiper .swiper-button-next {
  width: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px);
  height: clamp(0px, calc(60 / var(--view-size) * 100vw), 60px);
  color: white;
  background: var(--primary-color);
  border-radius: 1000000px;
  border: 3px solid white;
  background-image: url("../img/slider-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}
.voice__swiper .swiper-button-prev {
  left: clamp(-24px, calc(-24 / var(--view-size) * 100vw), 0px);
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .voice__swiper .swiper-button-prev {
    left: 12%;
    width: calc(48 / var(--view-size) * 100vw);
    height: calc(48 / var(--view-size) * 100vw);
  }
}
.voice__swiper .swiper-button-next {
  right: clamp(-24px, calc(-24 / var(--view-size) * 100vw), 0px);
}
@media (max-width: 768px) {
  .voice__swiper .swiper-button-next {
    right: 12%;
    width: calc(48 / var(--view-size) * 100vw);
    height: calc(48 / var(--view-size) * 100vw);
  }
}
.voice__swiper .swiper-button-prev:after,
.voice__swiper .swiper-button-next:after {
  content: "";
}

/* ---------------------------------------------------------- */
/* Voice Swiperページネーション */
.voice__swiper .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
}

.voice__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ---------------------------------------------------------- */
/* SP 固定フッターボタン */
.sp-fixed-footer {
  display: none;
}

@media (max-width: 768px) {
  .sp-fixed-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 998;
    padding: 0;
  }

  .sp-fixed-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(12 / var(--view-size) * 100vw) 0;
    text-decoration: none;
    color: #fff;
    font-size: calc(12 / var(--view-size) * 100vw);
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s;
    gap: calc(4 / var(--view-size) * 100vw);
  }

  .sp-fixed-btn:first-child {
    background: var(--primary-color);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sp-fixed-btn:last-child {
    background: var(--secondary-color);
  }

  .sp-fixed-btn:active {
    opacity: 0.9;
  }

  .sp-fixed-icon {
    width: calc(20 / var(--view-size) * 100vw);
    height: calc(20 / var(--view-size) * 100vw);
    margin-bottom: calc(4 / var(--view-size) * 100vw);
  }

  .sp-fixed-btn span {
    display: block;
    line-height: 1.2;
  }

  /* フッターの下部余白を追加 */
  .footer {
    padding-bottom: calc(66 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* SP CTAエリア */
.sp-cta {
  display: none;
}

@media (max-width: 768px) {
  .sp-cta {
    display: block;
    padding-top: calc(20 / var(--view-size) * 100vw);
  }

  .sp-cta__wrapper {
    border: 1px solid #cecece;
    padding: calc(20 / var(--view-size) * 100vw);
    background: #fff;
  }

  .sp-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--view-size) * 100vw);
    margin-bottom: calc(12 / var(--view-size) * 100vw);
  }

  .sp-cta__buttons .btn {
    width: 100%;
    padding: calc(20 / var(--view-size) * 100vw) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
    font-size: calc(14 / var(--view-size) * 100vw);
  }

  .sp-cta__buttons .btn--primary {
    background: var(--primary-color);
    color: #fff;
  }

  .sp-cta__buttons .btn--secondary {
    color: white;
    background-color: #dd3510;
  }

  .sp-cta__buttons .btn__icon {
    position: absolute;
    left: calc(16 / var(--view-size) * 100vw);
    top: 50%;
    transform: translateY(-50%);
    width: calc(18 / var(--view-size) * 100vw);
    height: calc(18 / var(--view-size) * 100vw);
  }

  .sp-cta__buttons .btn__arrow {
    position: absolute;
    right: calc(16 / var(--view-size) * 100vw);
    top: 50%;
    transform: translateY(-50%);
    width: calc(14 / var(--view-size) * 100vw);
    height: calc(14 / var(--view-size) * 100vw);
  }

  .sp-cta__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(8 / var(--view-size) * 100vw);
    margin-bottom: calc(8 / var(--view-size) * 100vw);
    font-size: calc(32 / var(--view-size) * 100vw);
    font-weight: bold;
    color: #2d2422;
  }

  .sp-cta__tel-link {
    display: flex;
    align-items: center;
    gap: calc(8 / var(--view-size) * 100vw);
    text-decoration: none;
    color: inherit;
  }

  .sp-cta__tel-icon {
    width: calc(30 / var(--view-size) * 100vw);
    height: calc(30 / var(--view-size) * 100vw);
    margin-top: calc(6 / var(--view-size) * 100vw);
  }

  .sp-cta__tel-number {
    font-family: "Lato", sans-serif;
  }

  .sp-cta__areas {
    display: flex;
    justify-content: center;
    gap: calc(12 / var(--view-size) * 100vw);
    font-size: calc(12 / var(--view-size) * 100vw);
    color: #6b7280;
  }

  .sp-cta__area-item {
    position: relative;
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: calc(2 / var(--view-size) * 100vw)
      calc(10 / var(--view-size) * 100vw);
  }
}

/* ---------------------------------------------------------- */
/* PC CVRエリア */
.pc-fixed-footer {
  position: fixed;
  bottom: clamp(0px, calc(150 / var(--view-size) * 100vw), 150px);
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
@media (max-width: 768px) {
  .pc-fixed-footer {
    display: none;
  }
}

.pc-fixed-btn {
  display: flex;
  flex-direction: column;
  width: clamp(0px, calc(88 / var(--view-size) * 100vw), 88px);
  aspect-ratio: 1/1;
  text-decoration: none;
  font-size: clamp(0px, calc(13 / var(--view-size) * 100vw), 13px);
  font-weight: 500;
  gap: 5px;
  padding: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  border-radius: 4px 0 0 4px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
  padding-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 24px);
  padding-bottom: 0;
  position: relative;
}

.pc-fixed-icon {
  width: clamp(0px, calc(18 / var(--view-size) * 100vw), 18px);
}

.pc-fixed-btn--mitumori {
  background: #2d2422;
  color: white;
  border: 1px solid #2d2422;
  border-right: 0;
}

.pc-fixed-icon--mitumori {
  background-image: url(../img/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  padding: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
.pc-fixed-btn--mitumori:hover {
  background: white;
  color: #2d2422;
}
.pc-fixed-btn--mitumori:hover .pc-fixed-icon--mitumori {
  background-image: url(../img/mail-hover.svg);
}

.pc-fixed-btn--calendar {
  background: #dd3510;
  color: white;
  border: 1px solid #dd3510;
  border-right: 0;
}
.pc-fixed-icon--calendar {
  background-image: url(../img/calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  padding: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
.pc-fixed-btn--calendar:hover {
  background: white;
  color: #dd3510;
}
.pc-fixed-btn--calendar:hover .pc-fixed-icon--calendar {
  background-image: url(../img/calendar-hover.svg);
}
.pc-fixed-btn--tel {
  background: white;
  border: 1px solid #dd3510;
  border-right: none;
  color: #dd3510;
}

.pc-fixed-btn--tel:hover {
  background: #dd3510;
  color: white;
}

.pc-fixed-icon--tel {
  background-image: url(../img/tel--orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  padding: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}

.pc-fixed-btn--tel:hover .pc-fixed-icon--tel {
  background-image: url(../img/tel--white.svg);
}

/* ---------------------------------------------------------- */
/* コンタクトフォーム7 */
.hidden-fields-container {
  display: none;
}
.contact form {
  max-width: clamp(0px, calc(800 / var(--view-size) * 100vw), 800px);
  margin: 0 auto;
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
/* iOS Safari のデフォルト外観を外す */
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff; /* お好みの色 */
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  color: #2d2422;
}
.contact form input[type="text"],
.contact form input[type="email"],
.contact form input[type="tel"],
.contact form input[type="date"] {
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  border-radius: 8px;
  margin-top: clamp(0px, calc(12 / var(--view-size) * 100vw), 12px);
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  background: white;
}
.contact form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  border-radius: 8px;
  height: clamp(0px, calc(200 / var(--view-size) * 100vw), 200px);
  margin-top: clamp(0px, calc(12 / var(--view-size) * 100vw), 12px);
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
}
.form__box {
  margin-top: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  font-weight: 500;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
}
.contact form .hissu {
  color: #dd3510;
  margin-left: clamp(0px, calc(8 / var(--view-size) * 100vw), 8px);
  vertical-align: top;
  font-size: clamp(0px, calc(10 / var(--view-size) * 100vw), 10px);
}
.wpcf7-radio {
  display: flex;
  gap: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
  margin-top: clamp(0px, calc(12 / var(--view-size) * 100vw), 12px);
}
/* ラジオボタンをオレンジに */
.wpcf7 input[type="radio"] {
  accent-color: #dd3510; /* 色をオレンジに */
  transform: scale(1.5); /* サイズを1.5倍に */
}

/* ラジオボタン横の文字も大きく */
.wpcf7 input[type="radio"] + span {
  font-weight: 400;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  margin-left: clamp(0px, calc(8 / var(--view-size) * 100vw), 8px);
}
.wpcf7-submit {
  background: #dd3510;
  width: 100%;
  color: white;
  border: none;
  height: clamp(0px, calc(70 / var(--view-size) * 100vw), 70px);
  border-radius: 1000px;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  cursor: pointer;
  font-weight: bold;
}
.screen-reader-response {
  display: none;
}
.wpcf7-not-valid-tip {
  color: red;
}
.wpcf7-response-output {
  display: none;
}
/* カレンダーアイコンの不透明度など（任意） */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
}
.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.wpcf7-form-control[type="submit"] {
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
@media (max-width: 768px) {
  .wpcf7-form-control[type="submit"] {
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}
input[type="date"] {
  position: relative;
  text-align: left;
}
input[type="date"]::after {
  content: "";
  position: absolute;
  right: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  height: clamp(0px, calc(20 / var(--view-size) * 100vw), 20px);
  background-image: url("../img/calendar-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
/* iOS Safari 対応（中央寄せを強制的に解除） */
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}
.wpcf7-not-valid-tip {
  margin-top: clamp(0px, calc(4 / var(--view-size) * 100vw), 4px);
}

.confirm__test {
  font-weight: 400;
}

.form__title {
  font-weight: 500;
}

.form__box--confirm label {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, calc(4 / var(--view-size) * 100vw), 4px);
}

@media (max-width: 768px) {
  .form__box--confirm label {
    display: flex;
    flex-direction: column;
    gap: calc(4 / var(--view-size) * 100vw);
  }
}
.wpcf7-spinner {
  display: none;
}

.contact__thanks-btn {
  text-align: center;
  margin-top: clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
@media (max-width: 768px) {
  .contact__thanks-btn {
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.contact__thanks-btn .btn {
  background: #dd340f;
  color: white;
  font-size: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px);
  border-radius: 1000px;
  padding: clamp(0px, calc(16 / var(--view-size) * 100vw), 16px)
    clamp(0px, calc(40 / var(--view-size) * 100vw), 40px);
}
@media (max-width: 768px) {
  .contact__thanks-btn .btn {
    font-size: calc(16 / var(--view-size) * 100vw);
    border-radius: 1000px;
    padding: calc(16 / var(--view-size) * 100vw)
      calc(40 / var(--view-size) * 100vw);
  }
}
