@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

.header {
  background: #fff;
  color: #333;
  padding: 0.2rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* 左側エリア（ロゴ＋テキスト） */
  /* 右側エリア（ボタン） */
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 576px) {
  .header__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 576px) {
  .header__left {
    display: flex;
    gap: 0.5rem;
    text-align: center;
  }
}
.header__logo {
  line-height: 1;
}
.header__logo a {
  display: block;
  transition: opacity 0.3s;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__service-name {
  font-size: 0.9rem;
  font-weight: bold;
  color: #000;
  margin: 0;
}
@media (max-width: 576px) {
  .header__service-name {
    font-size: 0.8rem;
  }
}
@media (max-width: 576px) {
  .header__right {
    width: 100%;
    display: none;
  }
}

.footer {
  background-color: #e6e9ed;
  padding: 4rem 1rem 1rem;
  color: #333;
  /* 左側（ロゴエリア） */
  /* 右側（情報エリア） */
  /* コピーライト */
}
@media (max-width: 576px) {
  .footer {
    padding: 2rem 1rem;
  }
}
.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__left .footer__logo img {
  width: 180px;
  height: auto;
}
@media (max-width: 576px) {
  .footer__left .footer__logo img {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .footer__right {
    width: 100%;
    text-align: left;
  }
}
.footer__info {
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .footer__info {
    font-size: 0.85rem;
  }
}
.footer__row {
  display: flex;
  margin-bottom: 0.8rem;
}
@media (max-width: 576px) {
  .footer__row {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.footer__row dt {
  font-weight: bold;
  width: 120px;
  position: relative;
  padding-left: 1rem;
  flex-shrink: 0;
}
.footer__row dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 14px;
  background-color: #333;
}
@media (max-width: 576px) {
  .footer__row dt {
    width: 100%;
    margin-bottom: 0.2rem;
  }
}
.footer__row dd {
  flex: 1;
}
.footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  margin-top: 2rem;
}

/* お悩みセクション */
.trouble {
  background-color: #2c3e50;
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
  /* 下部の解決テキストエリア */
}
@media (max-width: 576px) {
  .trouble {
    padding: 1rem 1rem;
  }
}
.trouble__box {
  border: 2px solid #fff;
  padding: 3rem 2rem;
  position: relative;
  max-width: 900px;
  margin: 2rem auto 4rem;
  border-radius: 4px;
}
@media (max-width: 576px) {
  .trouble__box {
    padding: 1.2rem 1rem;
  }
}
.trouble__box::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background-color: #2c3e50;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.trouble__title {
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2c3e50;
  padding: 0 1.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
}
.trouble__title .blur-text {
  color: #8fa0b3;
}
@media (max-width: 576px) {
  .trouble__title {
    font-size: 1.2rem;
    top: -1rem;
  }
}
.trouble__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: left;
}
@media (max-width: 576px) {
  .trouble__content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.trouble__img {
  flex-shrink: 0;
}
.trouble__img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .trouble__img img {
    width: 100px;
    height: auto;
  }
}
.trouble__list {
  list-style: none;
}
.trouble__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}
.trouble__item .icon-check {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #f39c12;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.trouble__item .icon-check::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.trouble__item .highlight {
  color: #f39c12;
  font-weight: bold;
}
.trouble__solution {
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .trouble__solution {
    margin-top: -2rem;
  }
}
.trouble__solution-sub {
  font-size: 1.5rem;
  display: inline-block;
  padding-bottom: 5px;
}
@media (max-width: 576px) {
  .trouble__solution-sub {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.trouble__solution-main {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-top: 10px;
}
.trouble__solution-main .text-accent {
  color: #f39c12;
}
@media (max-width: 576px) {
  .trouble__solution-main {
    font-size: 1.4rem;
  }
}

/* サービス内容セクション */
.services {
  position: relative;
  background-color: #f9f9f9;
  padding: 5rem 1rem;
  overflow: hidden;
  background-image: url("../img/service/img1.webp");
  background-size: cover;
  background-position: center;
  /* グリッドレイアウト */
}
@media (max-width: 576px) {
  .services {
    padding: 2rem 1rem;
  }
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}
.services__bg-layer,
.services .section__inner {
  position: relative;
  z-index: 2;
}
.services__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .services__header {
    margin-bottom: 1rem;
  }
}
.services__icon {
  display: inline-block;
}
.services__icon img {
  width: 5rem;
  height: auto;
}
.services__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}
@media (max-width: 576px) {
  .services__title {
    font-size: 1.6rem;
  }
}
.services__sub {
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.1rem;
}
@media (max-width: 576px) {
  .services__sub {
    font-size: 0.9rem;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0 10rem 0 10rem;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services__grid {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
}

/* サービスカード単体 */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
@media (max-width: 576px) {
  .service-card {
    padding: 1.5rem 1rem;
  }
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card__img {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.service-card__title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
  background: linear-gradient(transparent 60%, rgb(249.1445783133, 206.6927710843, 139.3554216867) 60%);
  padding: 0 5px;
}
.service-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
  color: #555;
}

/* 選ばれている理由 (Reason) */
.reason {
  background-color: #2c3e50;
  color: #fff;
  padding: 6rem 1rem;
}
@media (max-width: 576px) {
  .reason {
    padding: 2rem 1rem;
  }
}
.reason__header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
@media (max-width: 576px) {
  .reason__header {
    margin-bottom: 3rem;
  }
}
.reason__tape {
  display: inline-block;
  background-color: #d35400;
  color: #f1c40f;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.2rem 1.5rem;
  transform: rotate(-3deg);
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}
.reason__tape::before, .reason__tape::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background-image: radial-gradient(circle, #2c3e50 2px, transparent 3px);
  background-size: 5px 5px;
}
.reason__tape::before {
  left: -2px;
}
.reason__tape::after {
  right: -2px;
}
.reason__title {
  color: #fff;
  margin-bottom: 0;
  font-size: 2.2rem;
}
@media (max-width: 576px) {
  .reason__title {
    font-size: 1.6rem;
  }
}
.reason__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.reason__item {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}
.reason__item--reverse .reason__box {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .reason__item--reverse .reason__box {
    flex-direction: column-reverse;
  }
}
.reason__label {
  position: absolute;
  top: 0;
  left: 2rem;
  transform: translateY(-50%);
  background-color: #ffb74d;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.5rem 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.reason__label--center {
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .reason__label {
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    padding: 0.4rem 2rem;
    width: 80%;
    text-align: center;
  }
}
.reason__box {
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  padding: 4rem 3rem 3rem;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  gap: 3rem;
}
@media (max-width: 768px) {
  .reason__box {
    flex-direction: column-reverse;
    padding: 3.5rem 1.5rem 2rem;
    gap: 1.5rem;
  }
}
.reason__content {
  flex: 1;
}
@media (max-width: 768px) {
  .reason__content {
    width: 100%;
  }
}
.reason__head {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.reason__head .highlight {
  font-size: 1.8rem;
  color: #e67e22;
}
@media (max-width: 576px) {
  .reason__head {
    font-size: 1.2rem;
  }
  .reason__head .highlight {
    font-size: 1.4rem;
  }
}
.reason__text {
  font-size: 0.95rem;
  line-height: 1.8;
}
.reason__img {
  flex: 1;
  width: 100%;
}
.reason__img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 300px;
}

/* CTAバナー */
.banner-cta {
  background-image: url("../img/banner/img1.webp");
  background-size: cover;
  background-position: center right;
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* テキストデザイン（茶色・階段状） */
  /* ボタン配置エリア */
  /* 吹き出し「即日対応！」（これはCSSで描画） */
}
@media (max-width: 768px) {
  .banner-cta {
    background-position: 65% center;
    padding: 4rem 1rem;
  }
}
@media (max-width: 576px) {
  .banner-cta {
    display: none;
  }
}
.banner-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.banner-cta__content {
  max-width: 700px;
}
.banner-cta__title {
  color: #4e342e;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.4);
}
.banner-cta__title span {
  display: block;
}
.banner-cta__title .line-1 {
  font-size: 3.5rem;
}
@media (max-width: 576px) {
  .banner-cta__title .line-1 {
    font-size: 2rem;
  }
}
.banner-cta__title .line-2 {
  font-size: 3rem;
  margin-left: 2rem;
}
@media (max-width: 576px) {
  .banner-cta__title .line-2 {
    font-size: 1.6rem;
    margin-left: 1rem;
  }
}
.banner-cta__title .line-3 {
  font-size: 4rem;
  text-align: center;
}
@media (max-width: 576px) {
  .banner-cta__title .line-3 {
    font-size: 2.2rem;
  }
}
.banner-cta__btn-wrap {
  position: absolute;
  right: 5%;
  top: 20%;
  transform: translateY(-50%);
  text-align: center;
}
@media (max-width: 1024px) {
  .banner-cta__btn-wrap {
    position: static;
    transform: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.banner-cta__bubble {
  display: inline-block;
  background: #fff;
  color: #e67e22;
  border: 2px solid #e67e22;
  padding: 0.3rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.banner-cta__bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 8px solid #e67e22;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

/* サービス料金 (Pricing) */
.pricing {
  background-color: #f7f9fa;
  padding: 3rem 1rem;
  background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  /* 3つの円形ハイライト */
}
@media (max-width: 576px) {
  .pricing {
    padding: 2rem 1rem;
  }
}
.pricing__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .pricing__header {
    margin-bottom: 2rem;
  }
}
.pricing__subtitle {
  display: block;
  color: #ffb74d;
  font-weight: bold;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.pricing__title {
  margin-top: 0;
}
.pricing__highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .pricing__highlights {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

/* 円形コンポーネント */
.pricing-circle {
  width: 180px;
  height: 180px;
  background-color: #2c3e50;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  .pricing-circle {
    width: 130px;
    height: 130px;
  }
}
.pricing-circle__tape {
  position: absolute;
  top: -10px;
  width: 80px;
  height: 20px;
  background-color: #ffb74d;
  transform: rotate(-5deg);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.pricing-circle__label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.pricing-circle__price {
  color: #ffb74d;
  line-height: 1;
}
.pricing-circle__price .val {
  font-size: 2.5rem;
  font-weight: bold;
}
@media (max-width: 576px) {
  .pricing-circle__price .val {
    font-size: 2rem;
  }
}
.pricing-circle__price .unit {
  font-size: 1.2rem;
  color: #ffb74d;
}
.pricing-circle__price .tax {
  font-size: 0.8rem;
  color: #ffb74d;
  display: block;
  margin-top: 5px;
}

/* 料金グリッド */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 15rem 3rem 15rem;
}
@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    margin: 0 1rem;
    gap: 1rem;
  }
}

/* 料金カード */
.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
@media (max-width: 576px) {
  .pricing-card {
    padding: 1rem 1rem;
  }
}
.pricing-card__price {
  font-size: 3rem;
  font-weight: bold;
  color: #ffb74d;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: sans-serif;
}
.pricing-card__price .unit {
  font-size: 1.2rem;
  margin-left: 2px;
}
.pricing-card__price .per {
  font-size: 1rem;
  color: #ffb74d;
}
.pricing-card__badge {
  display: inline-block;
  background-color: #2c3e50;
  color: #fff;
  padding: 0.3rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.pricing-card__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
  color: #666;
}

/* アクションエリア（ボタン） */
.pricing__action {
  text-align: center;
}

.text-center {
  text-align: center;
}
@media (max-width: 576px) {
  .text-center {
    padding: 2rem;
  }
}

.button--dark {
  background-color: #4a4a4a;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.button--dark:hover {
  opacity: 0.8;
}
.button--dark .arrow {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

/* ご利用の流れ (Flow) */
.flow {
  background-color: #2c3e50;
  color: #fff;
  padding: 3rem 1rem;
  /* グリッドレイアウト */
}
.flow__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .flow__header {
    margin-bottom: 0.5rem;
  }
}
.flow__tape {
  display: inline-block;
  background-color: #d35400;
  color: #f1c40f;
  font-weight: bold;
  font-family: sans-serif;
  padding: 0.2rem 1.5rem;
  transform: rotate(-3deg);
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}
.flow__tape::before, .flow__tape::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-image: radial-gradient(circle, #2c3e50 2px, transparent 3px);
  background-size: 4px 4px;
}
.flow__tape::before {
  left: -2px;
}
.flow__tape::after {
  right: -2px;
}
.flow__sub {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.flow__title {
  color: #fff;
  margin-top: 0;
}
.flow__grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem 2rem;
}
@media (max-width: 768px) {
  .flow__grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .flow__grid {
    gap: 2.5rem;
    padding: 1rem 1rem;
  }
}
.flow__item {
  width: 25%;
}
@media (max-width: 768px) {
  .flow__item {
    width: 48%;
  }
}
@media (max-width: 576px) {
  .flow__item {
    width: 100%;
  }
}
.flow__step-label {
  text-align: center;
  color: #ffb74d;
  font-weight: bold;
  font-family: sans-serif;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

/* 白いカード部分 */
.flow-card {
  background: #fff;
  color: #333;
  padding: 2rem 1.5rem 0.5rem;
  text-align: center;
  border-radius: 4px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .flow-card {
    padding: 1.5rem 0.5rem 0rem;
  }
}
.flow-card__icon {
  position: relative;
  display: inline-block;
}
.flow-card__icon img {
  position: relative;
  z-index: 1;
  width: 12rem;
  height: auto;
  align-items: center;
}
.flow-card__title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #2c3e50;
}
.flow-card__text {
  font-size: 0.85rem;
  text-align: left;
  line-height: 1.6;
}

/* クロージングCTA (Last CTA) 完全再現 */
.last-cta {
  position: relative;
  width: 100%;
  padding: 6rem 1rem;
  color: #fff;
  background-image: url("../img/hero/img1.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* --- 左側：テキストエリア --- */
  /* --- 右側：アクションエリア --- */
}
@media (max-width: 576px) {
  .last-cta {
    padding: 3rem 1rem;
  }
}
.last-cta__bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.last-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .last-cta__inner {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
}
.last-cta__content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 1024px) {
  .last-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.last-cta__label {
  display: inline-block;
  background: #fff;
  color: #333;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.6rem 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.last-cta__label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.last-cta__label .highlight {
  color: #e67e22;
  font-size: 1.2em;
}
.last-cta__sub {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
.last-cta__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.last-cta__title .quote {
  color: #f1c40f;
  font-family: "Yu Mincho", "游明朝", serif;
  font-size: 1.2em;
}
@media (max-width: 576px) {
  .last-cta__title {
    font-size: 1.8rem;
  }
}
.last-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  min-width: 450px;
}
@media (max-width: 768px) {
  .last-cta__action {
    min-width: auto;
    width: 100%;
  }
}
.last-cta__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* --- バッジ単体スタイル（専用定義） --- */
.last-cta-badge {
  background: #2c3e50;
  color: #fff;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 576px) {
  .last-cta-badge {
    width: 130px;
    height: 130px;
  }
}
.last-cta-badge__tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  background: #f1c40f;
  width: 60%;
  height: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.last-cta-badge__title {
  font-size: 0.75rem;
  margin: 10px 0 0;
  opacity: 0.9;
}
@media (max-width: 576px) {
  .last-cta-badge__title {
    font-size: 1rem;
  }
}
.last-cta-badge__num {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f1c40f;
  line-height: 1.1;
  margin: 0;
}
.last-cta-badge__num span {
  font-size: 0.8rem;
  color: #fff;
}
@media (max-width: 576px) {
  .last-cta-badge__num {
    font-size: 1.4rem;
  }
}
.last-cta-badge__desc {
  font-size: 0.75rem;
  margin: 0;
}
@media (max-width: 576px) {
  .last-cta-badge__desc {
    font-size: 0.6rem;
  }
}

/* --- ボタンエリア --- */
.last-cta__btn-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 576px) {
  .last-cta__btn-container {
    width: 80%;
  }
}

.last-cta__svg-link {
  display: inline-block;
  width: 100%;
  transition: transform 0.3s, opacity 0.3s;
}
.last-cta__svg-link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.last-cta__svg-btn {
  width: 100%;
  height: auto;
  display: block;
}

/* お客様の声 (Voice) */
.voice {
  background-color: #fff;
  padding: 3rem 1rem;
}
.voice__header {
  text-align: center;
  margin-bottom: 2rem;
}
.voice__tape {
  display: inline-block;
  background-color: #ffb74d;
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 1.2rem;
  padding: 0.2rem 1.5rem;
  transform: rotate(-3deg);
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  letter-spacing: 0.1em;
}
.voice__tape::before, .voice__tape::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-image: radial-gradient(circle, #fff 2px, transparent 3px);
  background-size: 4px 4px;
}
.voice__tape::before {
  left: -2px;
}
.voice__tape::after {
  right: -2px;
}
.voice__title {
  margin-top: 0;
  color: #333;
}
.voice__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0rem;
}
@media (max-width: 576px) {
  .voice__list {
    padding-left: 0;
  }
}

/* お客様の声カード */
.voice-card {
  background-color: #1a2533;
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem 3rem 2.5rem 5rem;
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .voice-card {
    flex-direction: column;
    padding: 4rem 1.5rem 0.5rem;
    text-align: center;
    margin-top: 2rem;
  }
}
.voice-card__img {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  background: #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.voice-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .voice-card__img {
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }
}
.voice-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 576px) {
  .voice-card__text {
    font-size: 0.9rem;
  }
}

/* よくあるご質問 (Q&A) */
.qa {
  background-color: #dbe0e6;
  padding: 3rem 1rem;
  /* --- 以下、回答エリアのスタイル --- */
}
.qa__header {
  text-align: center;
  margin-bottom: 2rem;
}
.qa__tape {
  display: inline-block;
  background-color: #2c3e50;
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 1.2rem;
  padding: 0.2rem 1.2rem;
  transform: rotate(-3deg);
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  letter-spacing: 0.05em;
}
.qa__tape::before, .qa__tape::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-image: radial-gradient(circle, #dbe0e6 2px, transparent 3px);
  background-size: 4px 4px;
}
.qa__tape::before {
  left: -2px;
}
.qa__tape::after {
  right: -2px;
}
.qa__title {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 0;
}
.qa__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.qa__item {
  background-color: #1a2533;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
.qa__item:hover {
  opacity: 0.9;
}
.qa__item.is-open .qa__toggle {
  transform: rotate(180deg);
}
.qa__item.is-open .qa__toggle::after {
  border-color: #f39c12;
}
.qa__head {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  min-height: 60px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 576px) {
  .qa__head {
    padding: 0.8rem 1rem;
  }
}
.qa__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 1rem;
  margin-right: 1rem;
  height: 100%;
}
@media (max-width: 576px) {
  .qa__icon {
    font-size: 1rem;
    width: 30px;
    padding-right: 0.5rem;
    margin-right: 0.5rem;
  }
}
.qa__text {
  flex: 1;
  font-weight: bold;
  font-size: 0.95rem;
  line-height: 1.4;
}
@media (max-width: 576px) {
  .qa__text {
    font-size: 0.85rem;
  }
}
.qa__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 1rem;
  position: relative;
  transition: transform 0.3s ease;
}
.qa__toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -2px;
}
.qa__body {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
  background-color: #fff;
}
.qa__answer {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  border-top: none;
}
.qa__answer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40px;
  height: 100%;
  flex-shrink: 0;
  color: #f39c12;
  margin-right: 1rem;
  padding-top: 2px;
}
.qa__answer-text {
  flex: 1;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: auto;
}

/* お問い合わせ (Contact) */

.contact {
  background-image: url("../img/contact/img1.webp");
  background-size: cover;
  background-position: center;
  padding: 6rem 1rem 8rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .contact {
    padding: 3rem 1rem;
  }
}
.contact__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .contact__header {
    margin-bottom: 2rem;
  }
}
.contact__tape {
  display: inline-block;
  color: #ff6b00;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 1.4rem;
  position: relative;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.contact__tape::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 40px;
  height: 10px;
  background: #ffb74d;
  opacity: 0.8;
}
.contact__title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #333;
}
.contact__desc {
  font-size: 0.9rem;
  font-weight: bold;
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form__row {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .contact-form__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact-form__label {
  width: 30%;
  display: flex;
  align-items: center;
  font-weight: bold;
}
@media (max-width: 576px) {
  .contact-form__label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.contact-form__label .label-text {
  margin-left: 0.8rem;
  font-size: 0.95rem;
}
.contact-form__label .note {
  font-size: 0.7rem;
  font-weight: normal;
}
.contact-form__input {
  width: 70%;
}
@media (max-width: 576px) {
  .contact-form__input {
    width: 100%;
  }
}
.contact-form__input input, .contact-form__input textarea {
  width: 100%;
  padding: 0.8rem;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form__input input::-moz-placeholder, .contact-form__input textarea::-moz-placeholder {
  color: #999;
}
.contact-form__input input::placeholder, .contact-form__input textarea::placeholder {
  color: #999;
}
.contact-form__input input:focus, .contact-form__input textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: #ff6b00;
}
.contact .badge-required {
  background-color: #ff6b00;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 2px;
}
.contact .badge-optional {
  background-color: #666;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 2px;
}
.contact-privacy {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-privacy__title {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.contact-privacy__text {
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.6;
}
.contact-consent {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-consent label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}
.contact-consent input[type=checkbox] {
  transform: scale(1.2);
}
.contact-btn-wrap {
  text-align: center;
}
.contact .button--submit {
  background: #ff6b00;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem 4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}
.contact .button--submit:hover {
  background: rgb(255, 121.8, 25.5);
  transform: translateY(-2px);
}
.contact .button--submit .arrow {
  margin-left: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  line-height: 18px;
  font-size: 12px;
}


/* モーダルウィンドウ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.modal__content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 900px;
  height: 90%;
  max-height: 800px;
  border-radius: 8px;
  padding: 3rem 2rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 576px) {
  .modal__content {
    width: 95%;
    height: 95%;
    padding: 2.5rem 1rem 1rem;
  }
}
.modal__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.modal__close-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
}
.modal__close-icon:hover {
  color: #000;
}
.modal__footer {
  margin-top: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}
.modal__close-btn {
  background: #666;
  color: #fff;
  border: none;
  padding: 1rem 4rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
}
.modal__close-btn:hover {
  opacity: 0.8;
}

/* オプション料金リスト（スクロールエリア） */
.option-list {
  flex: 1;
  overflow-y: auto;
  border-top: 2px solid #ffb74d;
  font-size: 0.9rem;
}
.option-list__head, .option-list__row {
  display: grid;
  grid-template-columns: 200px 140px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  align-items: center;
}
@media (max-width: 576px) {
  .option-list__head, .option-list__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.2rem 1rem;
  }
}
.option-list__head {
  background: #fff;
  font-weight: bold;
  color: #ffb74d;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 576px) {
  .option-list__head {
    display: none;
  }
}
.option-list__row:nth-child(even) {
  background: #fafafa;
}
.option-list .col-item {
  font-weight: bold;
  color: #444;
}
.option-list .col-price {
  font-weight: bold;
}
.option-list .col-note {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.nav__list {
  display: flex;
  gap: 1rem;
  list-style: none;
}
@media (max-width: 576px) {
  .nav__list {
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    box-shadow: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
.nav__list.nav__list--active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 576px) {
  .nav__link {
    color: #fff;
    padding: 1rem;
    display: block;
  }
}
.nav__link:hover {
  text-decoration: underline;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 576px) {
  .nav__toggle {
    display: flex;
    z-index: 2000;
    position: fixed;
    top: 1.5rem;
    right: 1rem;
  }
}
.nav__toggle-line {
  width: 100%;
  height: 2px;
  background: #fff;
}
@media (max-width: 576px) {
  .nav__toggle-line {
    background: #333;
  }
}

/* ヒーローエリア */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  color: #333;
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  background-image: url("../img/hero/img1.webp");
  background-size: cover;
  background-position: center;
  /* 上部ラベル（最短2日...） */
  /* サブコピー */
  /* メインタイトル */
  /* 実績バッジリスト */
  /* ビジュアル画像エリア */
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
}
.hero__content {
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.hero__label {
  display: inline-block;
  background: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  position: relative;
}
.hero__label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
@media (max-width: 768px) {
  .hero__label::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero__label .highlight {
  color: #e67e22;
  font-size: 1.1em;
}
.hero__sub {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-decoration: underline;
  text-decoration-color: #333;
  text-underline-offset: 3px;
}
.hero__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  color: #000;
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 1.6rem;
  }
}
.hero__title .quote {
  font-size: 1.2em;
  color: #2c3e50;
  font-family: serif;
  position: relative;
  margin: 0 0.2em;
}
.hero__badges {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .hero__badges {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero__badges {
    gap: 0.5rem;
  }
}
.hero__visual {
  display: none;
}
.hero__visual img {
  width: 90%;
  height: auto;
  display: block;
}
@media (max-width: 576px) {
  .hero__visual {
    display: flex;
    justify-content: center;
  }
}

/* 実績バッジ単体コンポーネント */
.badge {
  background: #2c3e50;
  color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .badge {
    width: 100px;
    height: 100px;
  }
}
.badge__tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  background: #f1c40f;
  width: 60%;
  height: 25px;
  z-index: 1;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.badge__tape::before, .badge__tape::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
.badge__title {
  font-size: 0.8rem;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 576px) {
  .badge__title {
    font-size: 0.6rem;
    margin-top: 5px;
  }
}
.badge__number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f1c40f;
  line-height: 1.1;
  margin: 0;
}
.badge__number span {
  font-size: 0.9rem;
  color: #fff;
}
@media (max-width: 576px) {
  .badge__number {
    font-size: 1.2rem;
  }
  .badge__number span {
    font-size: 0.7rem;
  }
}
.badge__desc {
  font-size: 0.8rem;
  margin: 0;
}
@media (max-width: 576px) {
  .badge__desc {
    font-size: 0.6rem;
  }
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em 2em;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  line-height: 1.2;
}
.button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.button--primary {
  background: #2c3e50;
  color: #fff;
}
.button--accent {
  background: #f39c12;
  color: #fff;
  font-size: 1.1rem;
  min-width: 200px;
}
.button--header-cta {
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
}
.button--header-cta:hover {
  transform: translateY(-1px);
}
.button--cta {
  background: #ff6b00;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 3rem;
  box-shadow: 0 5px 0 #cc5500;
}
.button--cta:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #cc5500;
  opacity: 1;
}
@media (max-width: 576px) {
  .button--cta {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    width: 100%;
  }
}
.button--dark {
  background-color: #4a4a4a;
  color: #fff;
  padding: 1rem 3rem;
}
.button--dark .arrow {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  margin-left: 10px;
}
.button--submit {
  background: #ff6b00;
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 4rem;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}
.button--submit .arrow {
  margin-left: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  line-height: 18px;
  font-size: 12px;
}
.button--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.button--icon .button__icon,
.button--icon .button__svg {
  width: 1.2em;
  height: 1.2em;
  -o-object-fit: contain;
     object-fit: contain;
  fill: currentColor;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.button--icon span {
  line-height: 1;
  margin-top: 2px;
}
.button--svg-only {
  padding: 0.8rem 2rem;
}
.button--svg-only .button__img-text {
  height: 1.2em;
  width: auto;
  filter: brightness(0) invert(1);
}
.button .button--img-only {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  width: auto;
  height: auto;
  min-width: auto;
  display: inline-block;
  opacity: 1;
}
.button .button--img-only img {
  display: block;
  width: 320px;
  height: auto;
  max-width: 100%;
  transition: opacity 0.3s;
}
.button .button--img-only:hover {
  background: none;
  box-shadow: none;
  transform: translateY(-2px);
}
.button .button--img-only:hover img {
  opacity: 0.85;
}/*# sourceMappingURL=style.css.map */
.hidden-fields-container {
  display: none;
}

/* 個人情報保護方針のスクロールボックス */
.contact-privacy__scroll-box {
  width: 100%;
  height: 200px; /* ボックスの高さ */
  overflow-y: scroll; /* 縦スクロールを表示 */
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
  margin-top: 1rem;
}

.contact-privacy__scroll-box h4 {
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-privacy__scroll-box p {
  margin-bottom: 1rem;
}

.contact-privacy__scroll-box .privacy-footer {
  margin-top: 2rem;
  text-align: right;
  font-weight: bold;
}

/* 同意チェックボックス周りの調整 */
.wpcf7-acceptance input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 5px;
}

/* 無効化されているときのチェックボックスの見え方 */
.wpcf7-acceptance input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.wpcf7-response-output {
    text-align: center;
    margin: 1rem;
    font-weight: bold;
    color: red;
}

.screen-reader-response {
    display: none;
}

span.wpcf7-not-valid-tip {
    color: red;
    font-weight: bold;
}