@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --noto: "Noto Sans JP", sans-serif;
  font-family: var(--noto);
  line-height: 1.875;
  --navy: #061a59;
  --black: #000;
  color: var(--black);
  font-size: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  position: relative;
}

h2,
h3,
h4,
h5 {
  font-family: var(--noto);
  font-weight: bold;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

header {
  width: 375px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  background-color: #fff;
  padding: 0 10px;
}

main {
  width: 375px;
  margin: 0 auto;
}

.logo {
  width: 160px;
  line-height: 1;
}

.header__right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__phone-link {
  display: block;
  width: 42px;
}

.hamburger {
  width: 26px;
  aspect-ratio: 1/1;
  display: block;
  position: relative;
}

.hamburger__line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #105ee8;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  display: block;
}
.hamburger__line:first-of-type {
  top: 23%;
}
.hamburger__line:last-of-type {
  top: 75%;
}

.hamburger.is-active .hamburger__line:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:last-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__nav {
  background-color: #3f7fed;
  padding: 30px 5% 60px;
  width: 375px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -600px;
  transition: all 0.7s ease;
  z-index: 50;
  opacity: 0;
}
.header__nav.is-active {
  top: 56px;
  opacity: 1;
}

.header__nav-list li a {
  display: block;
  padding: 15px 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.cta {
  padding: 30px 0;
  background-image: url(../img/webp/cta_bg.webp);
  background-size: cover;
  background-position: center;
}

.cta__txt {
  position: relative;
  padding: 0 20px;
  width: 100%;
}
.cta__txt::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 60%;
  transform: translateY(-50%) rotate(-20deg);
  width: 2px;
  height: 50px;
  background-color: #fff;
  display: block;
}
.cta__txt::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 60%;
  transform: translateY(-50%) rotate(20deg);
  width: 2px;
  height: 50px;
  background-color: #fff;
  display: block;
}
.cta__txt .txt {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: block;
}
.cta__txt .img-txt {
  display: block;
  width: 162px;
  margin: 5px auto 0;
}

.cta__btn-phone {
  border: 3px solid #fff;
  border-radius: 100px;
  background: linear-gradient(180deg, #ffb347 0%, #ff9f1c 50%, #ff8c00 100%);
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  width: 100%;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  position: relative;
  margin-top: 12px;
}
.cta__btn-phone::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 40px;
  height: 40px;
  background-image: url(../img/webp/btn_phone_icon.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.cta__btn-caution {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
}

.cta .inner {
  justify-content: center; /* 中央寄せ */
}

.cta__btn.cta__btn-mail {
  width: 100%;
  max-width: 340px;       /* 375幅の中で“気持ち大きめ” */
  margin: 0 auto;         /* 中央 */
  height: 56px;           /* 高さを少し大きく */
  font-size: 2.1rem;      /* 文字も少し大きく */
  letter-spacing: .05em;  /* 見た目の余裕 */
  padding: 0 24px;        /* 左右余白を増やして“横に広く見せる” */
  border: 3px solid var(--navy);
  border-radius: 100px;
  background-color: #fff;
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 10px;
}
.cta__btn.cta__btn-mail::before {
  content: "";
  position: absolute;
  left: 8px;   /* 4px → 14px に */
  top: 50%;
  transform: translateY(-50%) translateY(12px); /* ← 3px分だけ下げる（2〜6で調整） */
  width: 40px;
  height: 40px;
  top: -15px;
  background-image: url(../img/webp/btn_mail_icon.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.cta__btn.cta__btn-line {
  width: calc(50% - 5px);
  height: 56px;
  border: 3px solid #3ad600;
  border-radius: 100px;
  background-color: #3ad600;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cta__btn.cta__btn-line::before {
  content: "";
  position: absolute;
  left: 4px;
  width: 34px;
  height: 34px;
  top: -15px;
  background-image: url(../img/webp/btn_line_icon.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.cta__phone-block {
  display: block;
  width: 100%;
}

.staff {
  padding: 30px 0;
}

.staff__ttl {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: var(--navy);
}

.staff__swiper {
  overflow: hidden;
}
.staff__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.back {
  padding: 30px 0;
  background-image: url(../img/webp/henkin_bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
.back::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background-image: url(../img/webp/maker_bg.webp);
  background-size: cover;
  background-position: top 0 left 50%;
  display: block;
  z-index: 0;
}
.back .inner {
  position: relative;
  z-index: 1;
}
.back .img-txt {
  margin-top: 10px;
  display: block;
}
.back .img-txt img {
  transform: translateX(10px);
}

.back__ttl-fukidashi {
  width: 100%;
  display: block;
  background-color: #105ee8;
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
}
.back__ttl-fukidashi::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 16px solid #105ee8;
  display: block;
}
.back__ttl-fukidashi .big {
  font-size: 3rem;
}

.yellow-txt {
  color: #ffff00 !important;
}

.back__block {
  border-radius: 10px;
  background-color: #fff;
  border: 3px solid #ddd;
  position: relative;
  width: 100%;
  margin-top: -130px;
  margin-bottom: 20px;
}
.back__block::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 7px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #ddd;
  display: block;
}
.back__block::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #ddd;
  display: block;
}

.back__block-ttl {
  position: relative;
  padding: 15px 10px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--navy);
  line-height: 1.5;
}
.back__block-ttl span {
  display: block;
  margin-bottom: 10px;
}
.back__block-ttl .underline-txt {
  border-bottom: 2px solid #f22c8b;
  color: #f22c8b;
  font-weight: bold;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
}
.back__block-ttl::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #ddd;
  display: block;
}
.back__block-ttl::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #ddd;
  display: block;
}

.back__list {
  padding: 0 20px 30px;
}
.back__list li {
  position: relative;
  padding-left: 1.8em;
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--navy);
}
.back__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.3em;
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}

.menu {
  padding: 40px 0;
  background-image: url(../img/webp/note_bg.webp);
  background-size: auto 100%;
  background-position: center;
  position: relative;
  background-repeat: repeat;
}

.menu__ttl {
  position: relative;
  padding: 47px 0 0;
  font-size: 2.3rem;
  font-weight: bold;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.menu__ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  background-image: url(../img/webp/yen_icon.webp);
  background-size: contain;
  background-position: center;
  display: block;
}
.menu__ttl .big {
  font-size: 3rem;
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
}
.menu__list > li {
  width: calc(50% - 5px);
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.menu__list-ttl {
  padding: 10px;
  background-color: #3f7fed;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  position: relative;
  border-radius: 15px 15px 0 0;
}
.menu__list-ttl::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -13px;
  width: 42px;
  height: 69px;
  background-image: url(../img/webp/menu_water_icon.webp);
  background-size: contain;
  background-position: center;
  display: block;
}
.menu__list-ttl .yellow-txt {
  color: #ffff00 !important;
  font-size: 2rem;
}

.w100 {
  width: 100% !important;
}

.menu__list-ttl-middle {
  padding: 10px 15px;
}
.menu__list-ttl-middle .tag {
  background-color: #105ee8;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 7px;
  display: block;
  line-height: 1.2;
}
.menu__list-ttl-middle .price {
  display: block;
  height: 35px;
  padding-bottom: 5px;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.menu__list-ttl-middle .price img {
  height: 100%;
  width: auto;
}

.menu__list-small {
  padding: 0 15px 20px;
  line-height: 1.6;
}
.menu__list-small li {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.3rem;
  margin-bottom: 0.3em;
}
.menu__list-small li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  width: 11px;
  height: 16px;
  background-image: url(../img/webp/water_icon.webp);
  background-size: contain;
  background-position: center;
}

.trouble__list {
  display: flex;
  padding: 20px 15px;
  gap: 20px 10px;
  flex-wrap: wrap;
}
.trouble__list li {
  width: calc(50% - 5px);
}
.trouble__list li .img {
  margin-bottom: 5px;
}
.trouble__list li .price {
  border-bottom: none;
  padding-bottom: 0;
  height: 25px;
}
.trouble__list li .menu__list-ttl-middle {
  padding: 10px 0 0;
}

.water__ttl {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.3rem;
  margin-bottom: 0.1em;
}
.water__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  width: 11px;
  height: 16px;
  background-image: url(../img/webp/water_icon.webp);
  background-size: contain;
  background-position: center;
}

.menu__caution {
  line-height: 1.3;
  border-bottom: 1px solid var(--black);
  font-size: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto;
}

.pay__block {
  border-radius: 15x 15px 0 0;
  background-color: #fff;
  padding-bottom: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pay__ttl {
  padding: 8px 10px;
  line-height: 1.4;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #105ee8;
  border-radius: 15px 15px 0 0;
  margin-bottom: 10px;
}

.pay__ttl-small {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.pay__credit {
  width: 90%;
  margin: 0 auto 20px;
}

.pay__caution-list li {
  font-size: 1.1rem;
}

.voice {
  background-image: url(../img/webp/voice_bg.webp);
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.voice__slide-content {
  background-color: #fff;
  padding: 15px;
  min-height: 290px;
}

.voice__card-ttl {
  border-radius: 7px;
  background-color: #105ee8;
  line-height: 1.5;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 7px;
  text-align: center;
  padding: 8px;
}

.voice__person-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.voice__person-block .icon {
  width: 72px;
  height: 72px;
}
.voice__person-block .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.voice__person-block .content {
  width: calc(100% - 82px);
}

.voice__ttl {
  margin-bottom: 10px;
}
.voice__ttl .tag {
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #fff;
  padding: 5px 25px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  border: #3f7fed 2px solid;
  margin: 0 auto 2px;
  display: block;
  color: #3f7fed;
}
.voice__ttl .ttl {
  font-size: 2.3rem;
  display: block;
  font-weight: bold;
  text-align: center;
  color: var(--navy);
  line-height: 1.5;
}
.voice__ttl .ttl .big {
  font-size: 3rem;
}

.voice__content-ttl {
  color: #105ee8;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}

.voice__about-txt {
  font-size: 1.1rem;
  line-height: 1.5;
}

.stars {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  justify-content: center;
  border-bottom: 2px solid #ddd;
  margin-bottom: 10px;
}
.stars .tag {
  font-size: 1.3rem;
  font-weight: bold;
  background-color: #fff;
  padding: 2px 15px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  line-height: 1.4;
  margin: 0;
  display: block;
  background-color: #a0a0a0;
  color: #fff;
}
.stars .star {
  display: block;
  width: 130px;
  aspect-ratio: 130/21;
}
.stars .star img {
  height: 100%;
  width: auto;
}

.voice__txt {
  font-size: 1.2rem;
  color: var(--navy);
}

.swiper-pagination-bullet {
  background-color: #fff !important;
}

.swiper-pagination {
  bottom: 0 !important;
}

.voice__swiper {
  position: relative;
  padding-bottom: 40px;
}

.swiper-button-next, .swiper-button-prev {
  width: 35px !important;
  height: 35px !important;
}

.swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: "" !important;
}

.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  content: "" !important;
}

.swiper-button-next {
  background-image: url(../img/webp/voice_next_btn.webp);
  background-size: contain;
  background-position: center;
  right: -10px !important;
}

.swiper-button-prev {
  background-image: url(../img/webp/voice_prev_btn.webp);
  background-size: contain;
  background-position: center;
  left: -10px !important;
}

.step {
  padding: 40px 0;
}

.step__ttl {
  width: 240px;
  margin: 0 auto 30px;
  padding: 45px 0 0;
  position: relative;
}
.step__ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 41px;
  background-image: url(../img/webp/three_hand.webp);
  background-size: contain;
  background-position: center;
  display: block;
}

.step__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.step__list li {
  background-color: #bce2f6;
  border-radius: 25px;
  position: relative;
  padding: 20px 17px 20px 95px;
}
.step__list li::before {
  width: 64px;
  aspect-ratio: 1/1;
  background-image: url(../img/webp/step_icon01.webp);
  background-size: contain;
  background-position: center;
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
}
.step__list li:nth-of-type(2)::before {
  background-image: url(../img/webp/step_icon02.webp);
}
.step__list li:nth-of-type(3)::before {
  background-image: url(../img/webp/step_icon03.webp);
}

.maker__ttl {
  background: var(--navy);
  padding: 7px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 12px;
  margin-top: 10px;
}

.step__tag {
  width: 82px;
  position: absolute;
  left: 15px;
  top: 0;
  transform: translateY(-50%);
}

.step__list-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2px;
  line-height: 1.5;
  color: var(--navy);
}

.step__list-txt {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.area {
  position: relative;
  background-image: url(../img/webp/area_bg.webp);
  background-size: cover;
  background-position: top 0 left 50%;
  padding: 40px 0 260px;
}
.area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 368/246;
  background-image: url(../img/webp/kanto.webp);
  background-size: cover;
  background-position: top 0 left 50%;
  display: block;
  z-index: 0;
}

.area__ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 36px 0 0;
  position: relative;
}
.area__ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 26px;
  height: 40px;
  background-image: url(../img/webp/map_icon.webp);
  background-size: contain;
  background-position: center;
  display: block;
}

.kant__area {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
  margin: 10px auto 0;
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
}
.kant__area .blue-txt {
  color: #105ee8 !important;
  font-size: 2.6rem;
  display: inline-block;
  margin-right: 0.1em;
}
.kant__area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 30px;
  transform: rotate(-20deg);
  display: block;
  background-color: #105ee8;
}
.kant__area::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 30px;
  transform: rotate(20deg);
  display: block;
  background-color: #105ee8;
}

.faq {
  padding: 40px 0;
}

.faq__ttl {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  padding-top: 60px;
  position: relative;
  color: var(--navy);
}
.faq__ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background-image: url(../img/webp/qa_icon.webp);
  background-size: contain;
  background-position: center;
  display: block;
}

.caution {
  padding: 30px 0;
  background-image: url(../img/webp/caution_bg.webp);
  background-size: cover;
  background-position: center;
}

.caution__block {
  background-color: #fff;
  padding: 15px 15px;
}
.caution__block p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.caution__ttl {
  text-align: center;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--navy);
  margin: 0 auto 10px;
  line-height: 1.5;
}
.caution__ttl::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 29px;
  background-image: url(../img/webp/caution_icon.webp);
  background-size: contain;
  background-position: center;
  display: block;
}
.caution__ttl::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 29px;
  background-image: url(../img/webp/caution_icon.webp);
  background-size: contain;
  background-position: center;
  display: block;
}

footer {
  width: 375px;
  height: 43px;
  background-color: #105ee8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  margin: 0 auto 78px;
}

/* =========================
  fixed CTA: pulse + shine
========================= */
.fixed-bnr{
  width: 375px;
  aspect-ratio: 375/81;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 100;

  /* 追加 */
  display: block;
  cursor: pointer;
  position: fixed; /* 念のため維持 */
  overflow: hidden;          /* shineをはみ出させない */
  animation: fixedPulse .7s ease-in-out infinite;  /* pulse */
  transition: transform .2s ease-in-out;
  will-change: transform, filter;
}

/* hoverで少しだけ持ち上げる（PCだけ効く） */
.fixed-bnr:hover{
  transform: translateX(-50%) scale(1.02);
}

/* 画像はそのまま */
.fixed-bnr img{
  width: 100%;
  height: auto;
  display: block;
}

/* キラッ（shine） */
.fixed-bnr::before{
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,.85) 50%,
    rgba(255,255,255,0) 70%
  );
  transform: rotate(-45deg);
  animation: fixedShine 1.5s ease-in-out infinite;
  pointer-events: none;
}

/* pulse */
@keyframes fixedPulse{
  0%   { transform: translateX(-50%) scale(1); }
  50%  { transform: translateX(-50%) scale(1.03); }
  100% { transform: translateX(-50%) scale(1); }
}

/* shine（左→右へ流す） */
@keyframes fixedShine{
  0%   { left: -150%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

/* 既に入ってる glow を併用するならこのままOK
   もし“動き強すぎ”なら glow か pulse どっちか1つにするのが綺麗 */
.fixed-bnr{
  /* あなたの既存 */
  animation: fixedPulse .7s ease-in-out infinite, ctaGlow 1.8s ease-in-out infinite;
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce){
  .fixed-bnr{ animation: none; }
  .fixed-bnr::before{ animation: none; }
}



.contact__heading-ttl {
  padding: 40px 0 30px 0;
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: var(--navy);
  line-height: 1.4;
}
.contact__heading-ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 42px;
  height: 30px;
  background-image: url(../img/webp/mail_icon.webp);
  background-size: contain;
  background-position: center;
  display: block;
}

.thanks__content p {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1.5em;
}

.cyan-link {
  text-decoration: underline;
  color: #3f7fed;
}

@media screen and (max-width: 450px) {
  :root,
  body,
  header,
  main,
  footer,
  .header__nav {
    width: 100%;
  }
  footer {
    margin: 0 auto 21vw;
  }
  .fixed-bnr {
    width: 100%;
    aspect-ratio: 375/81;
  }
}/*# sourceMappingURL=style.css.map */



/* =========================
  FV下ステータスバー（流れるテキスト）
========================= */
.statusBar{
  width: 375px;
  margin: 0 auto;
  background: #ffd35a; /* 添付っぽい黄 */
  border-bottom: 8px solid #3D7EED;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 450px){
  .statusBar{ width: 100%; }
}

.statusBar__inner{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.statusBar__bubble::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
}

/* 右側の流れるエリア */
.statusBar__marquee{
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
}

/* ★trackを「中身2セット」で2倍幅として扱う */
.statusBar__track{
  display: flex;
  width: max-content;          /* 中身幅に追従 */
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  animation: statusMarquee 14s linear infinite; /* 速度は好みで */
}

/* itemを折り返さない */
.statusBar__item{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 40px;
}

/* ★重要：2つ並べてる前提で -50% へ */
@keyframes statusMarquee{
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

.statusBar__marquee{
  -webkit-mask-image: -webkit-linear-gradient(#000, #000);
}


.statusBar__text{
  font-weight: 700;
  font-size: 2.2rem;
  color: #1b1b1b;
  letter-spacing: .02em;
}

.statusBar .js-workingCount{
  color: #d60000;
  font-size: 3.2rem;
  padding: 0 .08em;
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce){
  .statusBar__track{ animation: none; }
}



.maker__txt{
  margin-bottom: 30px; /* 好みで 16〜40px くらいで調整 */
}
