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

html {
  scroll-behavior: smooth;
}

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

body.is-fixed {
  overflow: hidden;
}

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;
  min-height: 100vh;
}

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

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

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

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

.hamburger2 {
  position: absolute;
  top: 15px;
  right: 15px;
}

.hamburger__line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #033983;
  left: 50%;
  top: 50%;
  border-radius: 5px;
  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%;
}

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

.header__nav {
  background-color: #E1F2FF;
  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: 0;
  opacity: 1;
}

.header__nav-list li a {
  display: block;
  padding: 15px 0 15px 22px;
  position: relative;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  color: #033983;
  border-bottom: 1px solid #fff;
}
.header__nav-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 17px;
  background-image: url(../img/water.webp);
  background-size: contain;
  display: block;
}

.cta {
  padding: 30px 0;
  background-color: #0084E6;
}

.cta__ttl {
  color: #fff;
  font-weight: bold;
  font-size: 1.9rem;
  text-align: center;
  display: block;
  width: 100%;
}

.cta__price {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  position: relative;
  margin: 0 auto 10px;
  font-weight: bold;
  color: #FFF100;
  line-height: 1;
}
.cta__price .yen, .cta__price .off {
  font-size: 2rem;
}
.cta__price .num {
  font-size: 3rem;
}
.cta__price::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translate(0, -50%);
  width: 32px;
  aspect-ratio: 32/37;
  background-image: url(../img/f01.webp);
  display: block;
  background-size: contain;
  animation: priceAnim 1.5s ease infinite;
}
.cta__price::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translate(0, -50%);
  width: 32px;
  aspect-ratio: 32/37;
  background-image: url(../img/f02.webp);
  display: block;
  background-size: contain;
  animation: priceAnim 1.5s ease infinite;
}

@keyframes priceAnim {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.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 {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.cta__btn.cta__btn-mail {
  width: calc(50% - 5px);
  height: 56px;
  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;
}
.cta__btn.cta__btn-mail::before {
  content: "";
  position: absolute;
  left: 4px;
  width: 34px;
  height: 34px;
  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__note {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}

.cta__contact {
  background-color: var(--navy);
  border-radius: 5px;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cta__contact::before {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background-image: url(../img/mail.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-right: 10px;
}

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

#staff {
  padding: 30px 0;
  background-color: #69BFFF;
}

.staff__ttl {
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  position: relative;
}
.staff__ttl::before {
  content: "＼";
  position: absolute;
  left: -1.5em;
  top: 0;
  width: 22px;
  height: 22px;
  display: block;
}
.staff__ttl::after {
  content: "／";
  position: absolute;
  right: -1.5em;
  top: 0;
  width: 22px;
  height: 22px;
  display: block;
}

.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: 30px 0;
  background-color: #E1F2FF;
  position: relative;
  background-repeat: repeat;
}

.menu__ttl {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--navy);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  border-bottom: 2px solid var(--navy);
  line-height: 1.4;
}
.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;
  padding-bottom: 10px;
}

.menu__item-ttl {
  padding: 10px;
  background-color: #3f7fed;
  font-size: 2.4rem;
  color: #FFF100;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  position: relative;
  border-radius: 15px 15px 0 0;
  line-height: 1;
}
.menu__item-ttl .small {
  font-size: 1.4rem;
  color: #fff;
}

.menu__other-cont {
  margin-top: 15px;
}
.menu__other-cont .menu__item-ttl {
  flex-direction: row;
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.menu__item-ttl--price {
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 1px 5px 2px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3px;
  margin: 10px auto 5px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.menu__item-price {
  width: -moz-fit-content;
  width: fit-content;
  color: #ff9f1c;
  margin: 7px auto 5px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.1em;
  display: flex;
  align-items: center;
}
.menu__item-price .num {
  font-size: 3.8rem;
  font-family: var(--aks);
}

.menu__item {
  height: -moz-fit-content;
  height: fit-content;
}
.menu__item button {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 auto;
}

.menu__cont {
  padding: 10px 5% 0 8%;
}

.menu__cont {
  overflow: hidden;
  transition: height 0.3s ease;
}

/* hidden中でも display:none にならないように上書き */
.menu__cont[hidden] {
  display: block;
  height: 0;
}

.menu__cont-list li {
  position: relative;
  padding-left: 1.8em;
  font-size: 1.3rem;
}
.menu__cont-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 18px;
  aspect-ratio: 1/1;
  background-image: url(../img/water-drop.webp);
  background-size: contain;
  background-position: center;
  display: block;
}

.menu__other-cont-list {
  padding: 25px 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #fff;
}
.menu__other-cont-list li {
  width: calc(50% - 10px);
}

.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__other-cont-list-txt {
  position: relative;
  padding-left: 1.8em;
  font-size: 1.3rem;
  margin-top: 10px;
  line-height: 1.4;
}
.menu__other-cont-list-txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 18px;
  aspect-ratio: 1/1;
  background-image: url(../img/water-drop.webp);
  background-size: contain;
  background-position: center;
  display: block;
}

.menu__note {
  font-size: 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid var(--black);
  margin: 15px auto 20px;
  line-height: 1.4;
  color: #333333;
}

.menu__howto {
  border-radius: 20px;
  background-color: #fff;
}

.menu__howto-ttl {
  border-radius: 20px 20px 0 0;
  padding: 10px;
  background-color: #ff8c00;
  color: #fff;
  font-weight: bold;
  font-size: 1.7rem;
  text-align: center;
}

.menu__howto-txt {
  color: var(--navy);
  text-align: center;
  font-size: 1.6rem;
  margin: 10px auto 0;
  font-weight: bold;
}

.menu__howto-img {
  padding: 0 5% 10px;
}

.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 {
  padding: 0 0 20px;
}

.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;
}

.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;
}

.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: 2rem;
  font-weight: bold;
  color: #FFF100;
  margin: 0 auto 10px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.caution__ttl::before {
  content: "";
  position: relative;
  width: 23px;
  height: 22px;
  background-image: url(../img/caution_icon.png);
  background-size: contain;
  background-position: center;
  display: block;
}

.caution__txt {
  font-size: 1.6rem;
  color: #fff;
}

.footer {
  background-color: #2682DF;
  padding: 20px 0 100px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}

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

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

.fixed__btns {
  width: 375px;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 100;
}

.fixed__btn {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 100;
  font-weight: bold;
  font-size: 2rem;
  background-color: #EC8000;
  width: 100%;
  height: 56px;
}
.fixed__btn::before {
  content: "";
  position: relative;
  left: 8px;
  width: 35px;
  height: 35px;
  background-image: url(../img/footer_tel-icon.gif);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.fixed__btns-txt {
  margin-bottom: 3px;
  max-width: 100%;
}
.fixed__btns-txt img {
  width: 100%;
  animation: zoom 2s ease-in-out infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.mv__txt {
  font-size: 1.5rem;
  color: #033983;
  text-align: center;
  font-weight: 600;
  display: block;
  background-color: #FFF100;
  padding: 5px 5px 10px 50px;
  position: relative;
  line-height: 1;
}
.mv__txt::before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 0;
  width: 47px;
  aspect-ratio: 47/63;
  background-image: url(../img/top_staff.webp);
  background-size: contain;
  background-position: center;
  display: block;
}
.mv__txt .p-num {
  font-size: 2.2rem;
  font-weight: bold;
  color: #EC8000;
  display: inline-block;
  padding: 0 3px;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
}

.cre__btn {
  font-size: 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto;
  padding-right: 18px;
  position: relative;
  display: block;
}
.cre__btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.cre__btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-image: url(../img/circle-plus.png);
  display: block;
}
.cre__btn.is-active::after {
  background-image: url(../img/mainus-circle.png);
}

.cre__cont {
  overflow: hidden;
  transition: height 0.3s ease;
}

/* hidden中は高さ0に */
.cre__cont[hidden] {
  display: block; /* ← これ重要 */
  height: 0;
}

.cre__list {
  padding-top: 10px;
}
.cre__list li {
  position: relative;
  padding-left: 2em;
  font-size: 1.1rem;
}
.cre__list li .tag {
  position: absolute;
  left: 0;
  top: 0;
}

.plus-price {
  padding: 20px 0;
  background-color: #69BFFF;
  overflow: hidden;
}
.plus-price .inner {
  border-radius: 10px;
  background-color: #fff;
}

.plus-price__ttl {
  padding: 15px 0 0;
}
.plus-price__ttl .txt {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  color: #2682DF;
  font-weight: bold;
  margin-bottom: 10px;
}
.plus-price__ttl .txt--big {
  width: 100%;
}

.plus-price__list {
  padding: 10px 5%;
}
.plus-price__list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 5px;
}
.plus-price__list li:last-of-type {
  margin-bottom: 0;
}
.plus-price__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 14px;
  background-image: url(../img/check.png);
  background-size: contain;
  background-position: center;
  display: block;
}

.plus-price__ttl-maker {
  background-color: var(--navy);
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  width: 90%;
  margin: 20px auto 10px;
}

.plus-price__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

#survey {
  padding: 20px 0;
  overflow: hidden;
  background-color: #E1F2FF;
}
#survey .swiper-button-next {
  width: 28px !important;
  height: 28px !important;
  background-image: url(../img/next.png);
  background-size: contain;
  background-position: center;
  right: -10px !important;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
}
#survey .swiper-button-prev {
  width: 28px !important;
  height: 28px !important;
  background-image: url(../img/prev.png);
  background-size: contain;
  background-position: center;
  left: -10px !important;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
}
#survey .swiper-slide {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.survey__ttl {
  width: 250px;
  margin: 0 auto 10px;
}

.survey__swiper {
  position: relative;
  padding-bottom: 30px;
}

#voice {
  padding: 0 auto 30px;
}

.voice__swiper {
  overflow: hidden;
  padding: 0 5%;
}
.voice__swiper .swiper-button-next {
  width: 28px !important;
  height: 28px !important;
  background-image: url(../img/next.png);
  background-size: contain;
  background-position: center;
  right: 10px !important;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.voice__swiper .swiper-button-prev {
  width: 28px !important;
  height: 28px !important;
  background-image: url(../img/prev.png);
  background-size: contain;
  background-position: center;
  left: 10px !important;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.voice__swiper .swiper-pagination-bullet {
  background-color: #666;
}

.voice__ttl {
  margin-top: -20px;
}
.voice__ttl .txt {
  background-color: #2682DF;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
  padding: 5px 10px 10px;
}

.voice__card {
  border-radius: 20px;
  background-color: #F4F5F7;
  padding: 20px;
}

.voice__account {
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice__account img {
  width: 30px;
}

.voice__account-option {
  width: calc(100% - 40px);
  line-height: 1.3;
}

.voice__account-name {
  font-size: 1.2rem;
  color: #555;
  font-weight: 500;
}

.voice__account-date {
  font-size: 1.2rem;
  color: #AEAEAE;
  font-weight: 500;
}

.voice__favorite {
  width: 70px;
  margin-bottom: 7px;
}

.voice__comment {
  font-size: 1.4rem;
}

#area {
  padding: 30px 0 20px;
  background-color: #E1F2FF;
}

.area__ttl {
  width: 147px;
  margin: 0 auto 10px;
}

.area__cont-ttl {
  border-radius: 5px 5px 0 0;
  background-color: var(--navy);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 3px;
}
.area__cont-ttl .yellow {
  color: #fff100 !important;
}

.area__cont-txt {
  padding: 10px 15px 15px;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.area__cont-txt .orange {
  color: #EC8000 !important;
  font-weight: 600;
}

#step {
  padding: 20px 0;
  background-color: #E1F2FF;
}

.step__ttl {
  text-align: center;
  color: var(--navy);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}
.step__ttl .orange {
  color: #EC8000 !important;
  font-size: 4rem;
}
.step__ttl .middle {
  font-size: 2.4rem;
}
.step__ttl .small {
  font-size: 1.6rem;
}

.step__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step__list li {
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 15px 15px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.step__list li::before {
  content: "1";
  color: #fff;
  position: absolute;
  left: -8px;
  top: -8px;
  width: 37px;
  height: 37px;
  background-color: #2682DF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 50%;
  line-height: 1;
  font-size: 2rem;
}
.step__list li:nth-of-type(2)::before {
  content: "2";
}
.step__list li:nth-of-type(3)::before {
  content: "3";
}

.step__list-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #105ee8;
  margin-bottom: 10px;
  border-bottom: 1px solid #105ee8;
}

.step__list-cont {
  display: flex;
  gap: 10px;
}
.step__list-cont .img {
  width: 25%;
}
.step__list-cont .cont {
  width: calc(75% - 10px);
}
.step__list-cont .cont p {
  font-size: 1.6rem;
  line-height: 1.6;
}
.step__list-cont .cont p .maker {
  color: var(--navy);
  font-weight: bold;
  background: linear-gradient(transparent 80%, #ff6 80%);
}

.faq__ttl {
  width: 90%;
  margin: -10px auto 0;
}

#caution {
  background-color: #535353;
  position: relative;
  padding: 50px 0;
}
#caution::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  background-image: url(../img/warning_bar.webp);
  background-size: contain;
  background-position: center;
  display: block;
  aspect-ratio: 375/25;
}
#caution::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(-1);
  width: 100%;
  background-image: url(../img/warning_bar.webp);
  background-size: contain;
  background-position: center;
  display: block;
  aspect-ratio: 375/25;
}

/* ===== modal base ===== */
.img-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.img-modal.is-open {
  display: block;
}

/* 画面全体（どこクリックしても閉じる） */
.img-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: zoom-out;
}

/* 画像を中央に置くだけ（背景なし） */
.img-modal__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none; /* 重要：下のoverlayをクリック可能に */
}

/* 表示する画像 */
.img-modal__img {
  max-width: 100vw;
  max-height: 90vh;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent;
  pointer-events: auto; /* 画像だけ触れる */
}

/* ×ボタン */
.img-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

/* 背景スクロール停止 */
body.is-fixed {
  overflow: hidden;
}

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