/* ==============================
   RESET & BASE
   ============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ==============================
   VARIABLES
   ============================== */
:root {
  --blue: #1a56c4;
  --blue-dark: #1240a0;
  --blue-main: #2949B1;
  --blue-light: #eef3fb;
  --yellow: #ffd900;
  --orange: #f07800;
  --red: #e60012;
  --light-red: #ff6571;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text: #333333;
}

/* ==============================
   UTILITY
   ============================== */

main {
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}

.sec-ttl {
  font-size: calc(56 / 750 * 100vw);
  font-weight: 900;
  color: var(--blue);
  text-align: center;
  padding-bottom: 16px;
  position: relative;
}

.sec-ttl::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 10px auto 0;
}

.sec-ttl--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  font-size: calc(56 / 750 * 100vw);
  color: var(--text);
  padding-bottom: calc(48 / 750 * 100vw);
}

.sec-ttl--icon::after {
  display: none;
}

.sec-ttl.sec-ttl--flat {
  color: var(--text);
  padding-bottom: calc(48 / 750 * 100vw);
}

.sec-ttl--flat::after {
  display: none;
}

.color-red {
  color: var(--red);
}

@media screen and (min-width:768px) {
  main {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
  }

  .sec-ttl {
    font-size: 56px;
    padding-bottom: 16px;
  }

  .sec-ttl::after {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    margin: 10px auto 0;
  }

  .sec-ttl--icon {
    font-size: 56px;
    padding-bottom: 48px;
  }

  .sec-ttl.sec-ttl--flat {
    padding-bottom: 48px;
  }

}

/* ==============================
   HEADER
   ============================== */
.campain-note {
  background-image: url(../img/sp/campaign_bg_sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: calc(10 / 750 * 100vw);
  text-align: center;
}

.campain-note__text {
  font-size: calc(36 / 750 * 100vw);
  color: var(--red);
  font-weight: bold;
  line-height: calc(43 / 36);
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.l-header__logo {
  width: calc(188 / 750 * 100vw);
  flex-shrink: 0;
}

.l-header__tel {
  display: block;
  flex-shrink: 0;
  transition: opacity .2s;
  width: calc(406 / 750 * 100vw);
}

.l-header__tel:hover {
  opacity: .85;
}

.l-header__nav-pc {
  display: none;
  flex-grow: 1;
  margin-right: 64px;
}

.l-header__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.l-header__list-item a {
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
}


.l-header__menu {
  display: block;
  width: calc(60 / 750 * 100vw);
  height: calc(40 / 750 * 100vw);
  position: relative;
  flex-shrink: 0;
  flex-shrink: 0;
}

.l-header__menu-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.l-header__menu-bar:nth-child(1) {
  top: 0;
}

.l-header__menu-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.l-header__menu-bar:nth-child(3) {
  bottom: 0;
}
.l-header__btns {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 60%;
}
.l-header__tel-btn {
  max-width: 524px;
  width: 100%;
}
.header-btn {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .campain-note {
    background-image: url(../img/pc/campaign_bg_pc.webp);
    padding: 10px 10px;
  }

  .campain-note__text {
    font-size: 32px;
    line-height: calc(38 / 32);
  }

  .l-header__inner {
    gap: 12px;
    padding: 8px 16px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .l-header__logo {
    width: 188px;
    flex-shrink: 0;
  }

  .l-header__nav-pc {
    display: block;
  }

  .l-header__tel {
    width: 284px;
  }

  .l-header__tel:hover {
    opacity: .85;
  }


  .l-header__menu {
    display: none;
  }

  .l-header__btns {
    width: auto;
  }
  .l-header__tel-btn {
    max-width: 300px;
  }
}

@media screen and (min-width:768px) and (max-width: 1200px) {
  .l-header__nav-pc {
    margin-right: 8px;
  }

  .l-header__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

}

/* ==============================
   FV
   ============================== */
.sec-fv {
  position: relative;
}

.sec-fv__img {
  line-height: 0;
}

.sec-fv__btn-contents {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: calc(32 / 750 * 100vw);
  z-index: 1;
  width: calc(600 / 750 * 100%);
}

.sec-fv__btn {
  display: block;
  width: 100%;
  animation: floating 2s ease-in-out infinite;
  transition: opacity .2s;
}

.sec-fv__btn:nth-child(2) {
  animation-delay: .3s;
}

.sec-fv__btn:hover {
  opacity: .88;
  animation-play-state: paused;
}

@media screen and (min-width:768px) {
  .sec-fv {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    max-width: 1200px;
  }

  .sec-fv__btn-contents {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4px;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    z-index: 1;
    width: calc(300 / 1200 * 100%);
  }

}

/* ==============================
   CTA BLOCK
   ============================== */
.sec-cta {
  position: relative;
}

.c-cta__tel-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(600 / 750 * 100%);
  top: calc(247 / 820 * 100%);
}

.sec-cta--final {
  padding: 40px 16px 52px;
}

.sec-cta__inner {
  max-width: 600px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(125 / 1035 * 100%) !important;
  width: calc(600 / 750 * 100%);
}

.sec-cta--2 .sec-cta__inner {
  bottom: calc(118 / 1035 * 100%) !important;
}

.sec-cta__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .03em;
}


.c-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 / 750 * 100vw);
}

.c-cta-btns__item {
  display: block;
  width: 100%;
  animation: floating 2s ease-in-out infinite;
  transition: opacity .2s;
}

.c-cta-btns__item:nth-child(2) {
  animation-delay: .3s;
}

.c-cta-btns__item:hover {
  opacity: .88;
  animation-play-state: paused;
}

.sec-cta--2 .c-cta__tel-btn {
  top: calc(612 / 1035 * 100%);
}

.sec-cta--2 .sec-cta__inner {
  bottom: calc(125 / 1035 * 100%);
}

.sec-cta--3 .c-cta__tel-btn {
  top: calc(579 / 989 * 100%);
}

.sec-cta--3 .sec-cta__inner {
  bottom: calc(112 / 989 * 100%);
}

.sec-cta--4 .c-cta__tel-btn {
  top: calc(556 / 966 * 100%);
}

.sec-cta--4 .sec-cta__inner {
  bottom: calc(110 / 966 * 100%);
}

.sec-cta--5 .c-cta__tel-btn {
  top: calc(612 / 1029 * 100%);
}

.sec-cta--5 .sec-cta__inner {
  bottom: calc(125 / 1029 * 100%);
}

.sec-cta--6 .c-cta__tel-btn {
  top: calc(612 / 1035 * 100%);
}

.sec-cta--6 .sec-cta__inner {
  bottom: calc(104 / 1035 * 100%);
}

@media (min-width: 768px) {
  .sec-cta__inner {
    max-width: 600px;
  }

  .c-cta-btns {
    gap: 88px;
  }
}

/* ==============================
   WORRY
   ============================== */
.sec-worry {
  background: #f0f0f0;
}

.sec-worry__img {
  max-width: 750px;
  margin: 0 auto;
}

/* ==============================
   MANGA BANNER
   ============================== */
.sec-manga-banner {
  background: var(--white);
  padding: calc(32 / 750 * 100vw) calc(24 / 750 * 100vw) calc(28 / 750 * 100vw);
}

.sec-manga-banner__img {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  border: 3px solid #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 8px 0 #d7d7d7,
    0 18px 24px rgba(0, 34, 78, 0.18);
  transform: translateY(-2px);
}

.sec-manga-banner__img::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  pointer-events: none;
}

.sec-manga-banner__img img {
  display: block;
  width: 100%;
}

.sec-manga-banner__img a {
  display: block;
}

.sec-manga-banner__text {
  max-width: 680px;
  margin: calc(20 / 750 * 100vw) auto 0;
  color: var(--text);
  font-size: clamp(16px, calc(28 / 750 * 100vw), 24px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* ==============================
   APPEAL
   ============================== */
.sec-appeal {
  background: #eef5ff;
}

.sec-appeal__img {
  max-width: 750px;
  margin: 0 auto;
}

/* ==============================
   SERVICE
   ============================== */
.sec-service {
  background: var(--white);
  padding-bottom: calc(80 / 750 * 100vw);
  padding-top: calc(80 / 750 * 100vw);
}

.sec-service__inner {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.sec-service__text {
  margin: 0 auto;
  margin-bottom: calc(56 / 750 * 100vw);
}

@media screen and (min-width:768px) {
  .sec-service {
    padding-bottom: 95px;
    padding-top: 80px;
  }

  .sec-service__text {
    max-width: 100%;
    margin: 0 auto 56px;
  }

}

/* ==============================
   REASONS
   ============================== */
.sec-reasons {
  padding-bottom: calc(80 / 750 * 100vw);
  padding-top: calc(80 / 750 * 100vw);
  background-image: url(../img/sp/reasons_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sec-reasons__inner {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.sec-reasons__title {
  margin: 0 auto;
  width: calc(616 / 670 * 100%);
  margin-bottom: calc(56 / 750 * 100vw);
}

.sec-reasons__description {
  margin: 0 auto;
  width: calc(624 / 670 * 100%);
  margin-bottom: calc(56 / 750 * 100vw);
}

.sec-reasons__body {
  background-image: url(../img/sp/reasons_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width:768px) {
  .sec-reasons {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .sec-reasons__title {
    margin-bottom: 56px;
  }

  .sec-reasons__description {
    margin-bottom: 56px;
  }
}

/* ==============================
   STEPS
   ============================== */
.sec-steps {
  background: var(--white);
  padding: calc(80 / 750 * 100vw) 0;
}

.sec-steps__inner {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

@media screen and (min-width:768px) {
  .sec-steps {
    padding: 80px 0;
  }
}

/* ==============================
   EXAMPLES
   ============================== */
.sec-examples {
  background: var(--blue-light);
  padding: calc(80 / 750 * 100vw) 0;
}

.sec-examples__inner {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.sec-examples__slider {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.sec-examples__slides {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.sec-examples__slide {
  display: none;
}

.sec-examples__slide.is-active {
  display: block;
}

.sec-examples__slide-img {
  border-radius: 8px;
  overflow: hidden;
}

.sec-examples__arrow {
  flex-shrink: 0;
  transition: opacity .2s;
  position: absolute;
  top: calc(259 / 701 * 100%);
  width: calc(61 / 670 * 100%);
}

.sec-examples__arrow.sec-examples__arrow.sec-examples__arrow--prev {
  left: 0;
  transform: translateX(-50%);
}

.sec-examples__arrow.sec-examples__arrow.sec-examples__arrow--next {
  right: 0;
  transform: translateX(50%);
}

.sec-examples__arrow:hover {
  opacity: .7;
}

.sec-examples__dots {
  display: flex;
  justify-content: center;
  gap: calc(32 / 750 * 100vw);
  margin-top: calc(32 / 750 * 100vw);
}

.sec-examples__dot {
  display: block;
  width: calc(20 / 670 * 100%);
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #5770C4;
  cursor: pointer;
  transition: background .2s;
}

.sec-examples__dot::after {
  content: '';
  display: block;
  padding-top: 100%;
}

.sec-examples__dot.is-active {
  background: var(--blue-main);
}

@media screen and (min-width:768px) {
  .sec-examples {
    padding: 80px 0;
  }

  .sec-examples__slider {
    gap: 8px;
  }

  .sec-examples__slides {
    border-radius: 8px;
  }

  .sec-examples__slide-img {
    border-radius: 8px;
    overflow: hidden;
  }

  .sec-examples__arrow:hover {
    opacity: .7;
  }

  .sec-examples__dots {
    gap: 32px;
    margin-top: 32px;
  }
}

/* ==============================
   AREA
   ============================== */
.sec-area {
  background: var(--white);
  padding: calc(64 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
}

.sec-area__inner {
  max-width: 671px;
  width: calc(671 / 750 * 100%);
  margin: 0 auto;
}

.sec-area__icon {
  width: calc(50 / 671 * 100%);
  flex-shrink: 0;
}

.sec-area__map {
  max-width: 432px;
  width: calc(432 / 671 * 100%);
  margin: 0 auto calc(24 / 750 * 100vw);
}

.sec-area__description {
  font-size: calc(32 / 750 * 100vw);
  margin-bottom: calc(48 / 750 * 100vw);
}

.sec-area__list {
  font-size: 14px;
  margin-bottom: calc(32 / 750 * 100vw);
}

.sec-area__head {
  background-color: var(--blue-main);
  color: #fff;
  padding: calc(16 / 750 * 100vw) calc(35 / 750 * 100vw);
  font-weight: bold;
  border-top-left-radius: calc(10 / 750 * 100vw);
  border-top-right-radius: calc(10 / 750 * 100vw);
  font-size: calc(36 / 750 * 100vw);
}

.sec-area__body {
  background-color: var(--white);
  border: solid var(--blue-main);
  border-width: 0 1px 1px;
  border-bottom-left-radius: calc(10 / 750 * 100vw);
  border-bottom-right-radius: calc(10 / 750 * 100vw);
}

.sec-area__area-detail {
  font-size: calc(28 / 750 * 100vw);
  padding: calc(32 / 750 * 100vw) calc(35 / 750 * 100vw);
  line-height: 1.5;
}

.sec-area__content:not(:last-child) {
  margin-bottom: calc(32 / 750 * 100vw);
}

.sec-area__note {
  font-size: calc(28 / 750 * 100vw);
  color: var(--text);
}

@media screen and (min-width:768px) {
  .sec-area {
    padding: 64px 0 80px;
  }

  .sec-area__map {
    max-width: 432px;
    width: calc(432 / 671 * 100%);
    margin: 0 auto 24px;
  }

  .sec-area__description {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .sec-area__list {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .sec-area__head {
    padding: 16px 35px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 36px;
  }

  .sec-area__body {
    border-width: 0 1px 1px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .sec-area__area-detail {
    font-size: 28px;
    padding: 32px 35px;
  }

  .sec-area__content:not(:last-child) {
    margin-bottom: 32px;
  }

  .sec-area__note {
    font-size: 28px;
  }
}

/* ==============================
   PRICE
   ============================== */
.sec-price {
  background: var(--blue-light);
  padding: calc(80 / 750 * 100vw) 0;
}

.sec-price__inner {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.sec-price__card {
  /* 幅は親 .sec-price__inner が制御 */
}

.sec-price__description {
  font-size: calc(32 / 750 * 100vw);
  line-height: calc(38 / 32);
  text-align: center;
  margin-bottom: calc(48 / 750 * 100vw);
  font-weight: bold;
}

.sec-price__note {
  font-size: calc(28 / 750 * 100vw);
  line-height: calc(34 / 28);
  margin-top: calc(32 / 750 * 100vw);
  margin-bottom: calc(80 / 750 * 100vw);
}

.sec-price__service {
  background-color: var(--white);
  border-radius: calc(10 / 750 * 100vw);
  padding: calc(80 / 750 * 100vw) 0;
}

.sec-price__service-inner {
  width: calc(600 / 670 * 100%);
  margin-right: auto;
  margin-left: auto;
}

.sec-price__service-list {
  list-style: none;
  padding: 0;
  margin-bottom: calc(80 / 750 * 100vw);
}

.sec-price__service-item {
  position: relative;
  padding-left: calc(52 / 670 * 100vw);
  font-size: calc(36 / 750 * 100vw);
  line-height: calc(43 / 36);
  font-weight: bold;
}

.sec-price__service-item:not(:last-child) {
  margin-bottom: calc(16 / 750 * 100vw);
}

.sec-price__service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(3.5 / 43 * 100%);
  width: calc(36 / 670 * 100vw);
  height: calc(36 / 670 * 100vw);
  background-image: url(../img/sp/service_icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.sec-price__service-description {
  text-align: center;
  font-size: calc(36 / 750 * 100vw);
  line-height: calc(43 / 36);
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .sec-price {
    padding: 80px 0;
  }

  .sec-price__description {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .sec-price__note {
    font-size: 28px;
    line-height: 34px;
    margin-top: 32px;
    margin-bottom: 80px;
  }

  .sec-price__service {
    border-radius: 10px;
    padding: 80px 0;
  }

  .sec-price__service-list {
    margin-bottom: 80px;
  }

  .sec-price__service-item {
    padding-left: 52px;
    font-size: 36px;
  }

  .sec-price__service-item:not(:last-child) {
    margin-bottom: 16px;
  }

  .sec-price__service-item::before {
    width: 36px;
    height: 36px;
  }

  .sec-price__service-description {
    font-size: 36px;
  }
}

/* ==============================
   COMPARISON
   ============================== */
.sec-comparison {
  padding: calc(60 / 750 * 100vw) calc(20 / 750 * 100vw) calc(80 / 750 * 100vw);
  background: var(--white);
}

.sec-comparison__inner {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.sec-comparison__icon {
  width: calc(60 / 750 * 100vw);
  height: calc(60 / 750 * 100vw);
}

.sec-comparison__description {
  text-align: center;
  font-weight: bold;
  font-weight: bold;
  font-size: calc(36 / 750 * 100vw);
  margin-top: calc(48 / 750 * 100vw);
  line-height: calc(43 / 36);
}

@media screen and (min-width:768px) {
  .sec-comparison {
    padding: 60px 20px 80px;
  }

  .sec-comparison__icon {
    width: 60px;
    height: 60px;
  }

  .sec-comparison__description {
    font-size: 36px;
    margin-top: 48px;
    line-height: 43px;
  }
}

/* ==============================
   CAMPAIGN
   ============================== */
.sec-campaign {
  padding: calc(60 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
  background: #E9EAEE;
}

.sec-campaign__inner {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.sec-campaign__list {
  background-color: var(--white);
  border-radius: calc(10 / 750 * 100vw);
  padding: calc(16 / 750 * 100vw) 0 calc(16 / 750 * 100vw) calc(16 / 750 * 100vw);
  list-style: none;
}

.sec-campaign__list-item {
  position: relative;
  padding-left: calc(28 / 750 * 100vw);
  font-size: calc(28 / 750 * 100vw);
  line-height: calc(34 / 28);
  font-weight: bold;
}

.sec-campaign__list-item::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
  width: calc(28 / 750 * 100vw);
  height: calc(34 / 750 * 100vw);
  font-size: 1em;
}

.sec-campaign__list-item:not(:last-child) {
  margin-bottom: calc(8 / 750 * 100vw);
}

.sec-campaign__contents {
  position: relative;
}

.sec-campaign__icon {
  position: absolute;
  bottom: 0;
  right: calc(13 / 670 * 100%);
  transform: translateY(50%);
  width: calc(130 / 670 * 100vw);
}

.sec-campaign__copy {
  text-align: center;
  font-size: calc(36 / 750 * 100vw);
  line-height: calc(43 / 36);
  margin-top: calc(48 / 750 * 100vw);
  font-weight: bold;
}

.sec-campaign__copy--accent {
  font-size: calc(48 / 36 * 1em);
}

@media screen and (min-width:768px) {
  .sec-campaign {
    padding: 60px 0 80px;
  }

  .sec-campaign__list {
    border-radius: 10px;
    padding: 16px 0 16px 16px;
  }

  .sec-campaign__list-item {
    padding-left: 28px;
    font-size: 28px;
    line-height: 34px;
  }

  .sec-campaign__list-item::before {
    width: 28px;
    height: 34px;
  }

  .sec-campaign__list-item:not(:last-child) {
    margin-bottom: 8px;
  }

  .sec-campaign__icon {
    right: 13px;
    width: 130px;
  }

  .sec-campaign__copy {
    font-size: 36px;
    line-height: 43px;
    margin-top: 48px;
  }
}

/* ==============================
   FAQ
   ============================== */
.sec-faq {
  background: var(--white);
  padding: calc(80 / 750 * 100vw) 0;
}

.sec-faq__inner {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.c-faq {
  display: flex;
  flex-direction: column;
}

.c-faq__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--blue);
  padding: calc(32 / 750 * 100vw) 0;
  gap: calc(16 / 750 * 100vw);
}

.c-faq__q,
.c-faq__a {
  display: flex;
  align-items: flex-start;
  gap: calc(24 / 750 * 100vw);
  align-items: flex-start;
}

.c-faq__icon {
  width: calc(33 / 750 * 100vw);
  flex-shrink: 0;
}

.c-faq__a .c-faq__icon {
  top: calc(3 / 750 * 100vw);
}

.c-faq__text {
  flex-grow: 1;
  font-size: calc(28 / 750 * 100vw);
  line-height: calc(34 / 28);
}

.c-faq__q .c-faq__text {
  font-weight: bold;
  font-size: calc(32 / 750 * 100vw);
  line-height: calc(38 / 32);
}

.c-faq__toggle-icon {
  width: calc(14 / 750 * 100vw);
  height: calc(14 / 750 * 100vw);
  transition: transform .2s;
  align-self: center;
  position: relative;
}

.c-faq__toggle-icon::before,
.c-faq__toggle-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all .2s ease;
}

.c-faq__toggle-icon::after {
  transform: rotate(90deg);
}

.is-open .c-faq__toggle-icon::after {
  transform: rotate(0deg);
}

.c-faq__a {
  display: flex;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height .35s ease, opacity .25s ease, margin-top .35s ease;
}

.c-faq__a.is-open {
  max-height: 400px;
  opacity: 1;
}


@media screen and (min-width:768px) {
  .sec-faq {
    padding: 80px 0;
  }

  .c-faq__item {
    border-bottom: 1px solid var(--blue);
    padding: 32px 0;
    gap: 16px;
  }

  .c-faq__q,
  .c-faq__a {
    gap: 24px;
  }

  .c-faq__icon {
    width: 34px;
    flex-shrink: 0;
  }

  .c-faq__a .c-faq__icon {
    top: 3px;
  }

  .c-faq__text {
    flex-grow: 1;
    font-size: 28px;
  }

  .c-faq__q .c-faq__text {
    font-size: 32px;
  }

  .c-faq__toggle-icon {
    width: 14px;
    height: 14px;
  }

  .c-faq__a {
    gap: 10px;
    font-size: 14px;
  }

}

/* ==============================
   enable
   ============================== */
.sec-enable {
  background: var(--blue-light);
  padding: calc(80 / 750 * 100vw) 0;
}

.sec-enable__inner {
  max-width: 600px;
  width: calc(600 / 750 * 100%);
  margin: 0 auto;
}

.c-enable__item {
  display: flex;
  align-items: center;
  gap: calc(32 / 750 * 100vw);
  padding-top: calc(24 / 750 * 100vw);
  padding-bottom: calc(24 / 750 * 100vw);
  padding-left: calc(32 / 750 * 100vw);
  padding-right: calc(16 / 750 * 100vw);
  background-color: var(--white);
  border-radius: calc(20 / 750 * 100vw);
  border: 2px solid var(--blue);
}

.c-enable__item:not(:last-child) {
  margin-bottom: calc(32 / 750 * 100vw);
}

.c-enable__icon {
  width: calc(120 / 750 * 100vw);
  flex-shrink: 0;
}

.c-enable__text {
  flex-grow: 1;
  font-size: calc(32 / 750 * 100vw);
  font-weight: bold;
}

.c-enable__text--light {
  font-size: calc(28 / 32 * 1em);
  font-weight: normal;
}

@media screen and (min-width:768px) {
  .sec-enable {
    padding: 80px 0;
  }

  .c-enable__item {
    gap: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 16px;
    border-radius: 20px;
  }

  .c-enable__item:not(:last-child) {
    margin-bottom: 32px;
  }

  .c-enable__icon {
    width: 120px;
  }

  .c-enable__text {
    font-size: 32px;
  }

  .c-enable__text--light {
    font-size: 28px;
  }

}



/* ==============================
FOOTER
============================== */
.l-footer {
  background: var(--white);
}

.l-footer__inner {
  padding-bottom: calc(80 / 750 * 100vw);
  padding-top: calc(80 / 750 * 100vw);
  margin: 0 auto;
  max-width: 750px;
}

.l-footer__company {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.l-footer__name {
  max-width: 268px;
  width: calc(268 / 670 * 100%);
  margin-bottom: calc(32 / 750 * 100vw);
}

.l-footer__info-item {
  font-size: calc(28 / 750 * 100vw);
  display: flex;
}

.l-footer__info-item:not(:last-child) {
  margin-bottom: calc(16 / 750 * 100vw);
}

.l-footer__info-label {
  flex-basis: calc(140 / 750 * 100vw);
  display: flex;
}

.l-footer__info-label::after {
  content: '：';
  margin-left: auto;
  display: inline-block;
}

.l-footer__info-text {
  flex-grow: 1;
}

.l-footer__company {
  margin-bottom: calc(64 / 750 * 100vw);
}

.l-footer__nav {
  max-width: 670px;
  width: calc(670 / 750 * 100%);
  margin: 0 auto;
}

.l-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.l-footer__nav-item:nth-child(odd) {
  border-right: 1px solid var(--blue);
}

.l-footer__nav-item:nth-child(n+3) {
  border-top: 1px solid var(--blue);
}

.l-footer__nav-item a {
  padding: calc(24 / 750 * 100vw);
  display: block;
  position: relative;
  font-size: calc(32 / 750 * 100vw);
  font-weight: bold;
  text-transform: uppercase;
}

.l-footer__nav-item a::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(24 / 750 * 100vw);
  width: 9px;
  height: 16px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTguODM4NzUgOC44Mzg3NUwxLjc2NzUgMTUuOTFMMCAxNC4xNDI1TDYuMTg3NSA3Ljk1NUwwIDEuNzY3NUwxLjc2NzUgMEw4LjgzODc1IDcuMDcxMjVDOS4wNzMwOSA3LjMwNTY2IDkuMjA0NzMgNy42MjM1NCA5LjIwNDczIDcuOTU1QzkuMjA0NzMgOC4yODY0NiA5LjA3MzA5IDguNjA0MzQgOC44Mzg3NSA4LjgzODc1WiIgZmlsbD0iIzMzMzMzMyIvPjwvc3ZnPg==");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.l-footer__copy-contents {
  background-color: var(--text);
  padding: 0 calc(20 / 750 * 100vw);
}

.l-footer__copy {
  color: var(--white);
  padding: calc(32 / 750 * 100vw) 0;
  font-size: calc(28 / 750 * 100vw);
  text-align: center;
}

@media screen and (min-width:768px) {
  .l-footer__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  }

  .l-footer__name {
    max-width: 268px;
    width: 268px;
    margin-bottom: 32px;
  }

  .l-footer__info-item {
    font-size: 28px;
  }

  .l-footer__info-item:not(:last-child) {
    margin-bottom: 16px;
  }

  .l-footer__info-label {
    flex-basis: 140px;
  }

  .l-footer__info-text {
    flex-grow: 1;
  }

  .l-footer__company {
    margin-bottom: 64px;
  }

  .l-footer__nav-item a {
    padding: 24px;
    font-size: 32px;
  }

  .l-footer__nav-item a::after {
    right: 24px;
  }

  .l-footer__copy-contents {
    padding: 0 20px;
  }

  .l-footer__copy {
    padding: 32px 0;
    font-size: 28px;
  }

}

/* ==============================
   DRAWER
   ============================== */
.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}

.l-drawer.is-open {
  pointer-events: auto;
}

.l-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .3s ease;
}

.l-drawer.is-open .l-drawer__overlay {
  opacity: 1;
}

.l-drawer__nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 320px;
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  padding: 72px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.l-drawer.is-open .l-drawer__nav {
  transform: translateX(0);
}

.l-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.l-drawer__close-bar {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.l-drawer__close-bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-drawer__close-bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #eee;
}

.l-drawer__item {
  border-bottom: 1px solid #eee;
}

.l-drawer__link {
  display: block;
  padding: 16px 8px;
  font-size: 16px;
  font-weight: bold;
  color: var(--text);
}

.l-drawer__tel {
  display: block;
  width: 100%;
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ==============================
ANIMATIONS
============================== */
.lpForm {
  background-color: transparent;
  padding: 40px 20px;
  border-radius: 10px;
}

.form-section__contents,
.lpForm {
  min-height: 0;
}

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

.form-items-scroll {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.form-item {
  margin-bottom: 24px;
}

.form-item__label {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-item__label-category {
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  /* line-height: calc(34 / 28); */
  border-radius: 25px;
  padding: 8px 24px;
  display: inline-block;
  margin-left: 16px;
  line-height: 1 !important;
}

.form-item__label-category.form-item__label-category--must {
  background-color: var(--light-red);
}

.form-item__label-category.form-item__label-category--any {
  background-color: #fff;
  border-color: var(--text);
  color: var(--text);
  border: 1px solid var(--text);
}

.form-item__input input,
.form-item__input select,
.form-item__input textarea {
  border: 1px solid #7B7573;
  padding: 8px 8px;
  font-size: 16px;
  border-radius: 5px;
  width: 100%;
}

.form-item__input.form-item__input--name {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.form-item__input.form-item__input--address {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.form-submit-btn {
  background-color: var(--red);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 5px;
  color: var(--white);
  width: 100%;
  border-radius: 40px;
  border-color: var(--red);
  text-align: center;
}

.form-submit-btns {
  position: relative;
}

.form-submit-btns::after {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 10%;
}

@media screen and (max-width:767px) {
  .lpForm {
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    padding-bottom: 0;
  }

  .form-fieldset {
    margin-bottom: calc(24 / 375 * 100vw);
  }

  .form-item__label {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.5;
    margin-bottom: calc(8 / 375 * 100vw);
  }

  .form-item__label-category {
    font-size: calc(14 / 375 * 100vw);
    font-weight: bold;
    line-height: calc(34 / 28);
    border-radius: calc(25 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(24 / 375 * 100vw);
    display: inline-block;
    margin-left: calc(16 / 375 * 100vw);
  }

  .form-item__input input {
    padding: calc(8 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
  }

  .contents:not(.form-fieldset-optional-label-invisible) .form-fieldset.optional>legend:after {
    border-radius: calc(25 / 375 * 100vw);
  }

  .form-submit-btn {
    font-size: calc(16 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(10 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
  }

  .form-submit-btns {
    position: relative;
  }

  .form-submit-btns::after {
    width: calc(8 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
  }
}

/* ==============================
   FORM MODAL
   ============================== */
.form-section {
  position: fixed;
  top: var(--modal-offset-top, 0);
  left: 0;
  width: 100%;
  height: var(--modal-vh, 100%);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.form-section.is-open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.form-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.form-section__wrapper {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: #ffd936;
  border-radius: 8px;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-section__close {
  position: sticky;
  top: -140px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  margin-left: auto;
  margin-right: 16px;
  margin-top: 16px;
  transition: background 0.3s ease;
}

.form-section__close:hover {
  background: rgba(0, 0, 0, 1);
}

.form-section__close-bar {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
}

.form-section__close-bar:first-child {
  transform: rotate(45deg);
}

.form-section__close-bar:last-child {
  transform: rotate(-45deg);
}

.form-section__contents {
  padding: 0 0px 10px;
  margin: 20px;
}

@media screen and (min-width: 768px) {
  .form-section__wrapper {
    max-width: 750px;
  }

  .form-section__close {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
    margin-right: 20px;
    margin-top: 20px;
  }

  .form-section__close-bar {
    width: 25px;
  }

  .form-section__contents {
    padding: 0 40px 40px;
    margin: 0 40px 40px;
  }
}

/* フォーム背景・吹き出し追記 */
.form-section__wrapper {
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  /* background: transparent; */
}

.form-section__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.form-section__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  margin: 0;
}

.form-section__contents {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.form-section__contents {
  background: #fff;
  border-radius: 20px;
}

.form-section__bubble-image {
  position: absolute;
  top: 10px;
  left: 50%;
  display: block;
  width: min(34vw, 280px);
  height: auto;
  margin: 0;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

@media (min-width: 768px) {
  .form-section__wrapper {
    max-width: 900px;
    max-height: 96vh;
  }

  .form-section__contents {
    margin: 124px 48px 32px;
    padding: 0 28px 20px;
  }

  .lpForm {
    padding: 24px 16px 0;
  }

  .form-item {
    margin-bottom: 14px;
  }

  .form-item__label {
    margin-bottom: 6px;
  }

  .form-item__input input,
  .form-item__input select,
  .form-item__input textarea {
    padding: 5px 8px;
  }

  .form-item__input--radio {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .form-item__input--radio label {
    min-height: 50px;
    padding: 8px 10px 8px 38px;
    font-size: 14px;
    line-height: 1.25;
  }

  .form-item__input--radio input[type="radio"] {
    left: 12px;
    width: 16px;
    height: 16px;
  }

  .form-submit-btn {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .form-item--submit {
    margin-bottom: 0;
  }

  .form-item--submit p {
    margin: 0;
  }

  .form-item--submit p+p {
    margin-top: 6px;
  }
}

@media (max-width: 767px) {
  .form-section {
    align-items: flex-start;
    padding-top: max(8px, env(safe-area-inset-top));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .form-section__wrapper {
    width: calc(100% - 20px);
    height: calc(var(--modal-vh, 100svh) - 10px);
    max-height: calc(var(--modal-vh, 100svh) - 10px);
    padding-top: clamp(52px, 16vw, 70px);
  }

  .form-section__contents {
    max-height: calc(100% - clamp(52px, 16vw, 70px) - 20px);
    margin: clamp(8px, 2.5vw, 12px) 10px 10px;
    border-radius: 13px;
  }

  .lpForm {
    max-height: 100%;
    padding: 14px 10px 0;
  }

  .form-items-scroll {
    padding-bottom: 12px;
  }

  .form-item {
    margin-bottom: 14px;
  }

  .form-item__label {
    align-items: center;
    margin-bottom: 7px;
    font-size: clamp(13px, 3.45vw, 15px);
  }

  .form-item__label-category {
    flex: 0 0 auto;
    margin-left: 8px;
    padding: 4px 16px;
    font-size: clamp(11px, 3vw, 13px);
  }

  .form-item__input input,
  .form-item__input select,
  .form-item__input textarea {
    min-height: 34px;
    padding: 5px 8px;
    font-size: 16px;
  }

  .form-section__bubble-image {
    position: absolute;
    top: 6px;
    left: 50%;
    width: min(54vw, 235px);
    margin: 0;
    transform: translateX(-50%);
  }
}

.form-item__input--radio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.form-item__input--radio label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px 12px 46px;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-item__input--radio input[type="radio"] {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: 0;
  transform: translateY(-50%);
  accent-color: var(--blue-main);
}

.form-item__input--radio label:has(input[type="radio"]:checked) {
  border-color: var(--blue-main);
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(41, 73, 177, 0.14);
}

.form-item__input--radio label:hover {
  border-color: var(--blue-main);
}

@media (max-width: 767px) {
  .form-item__input--radio {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .form-item__input--radio label {
    min-height: 32px;
    padding: 4px 8px 4px 34px;
    border-radius: 6px;
    border-width: 1px;
    font-size: 12px;
    line-height: 1.2;
  }

  .form-item__input--radio input[type="radio"] {
    left: 11px;
    width: 14px;
    height: 14px;
    accent-color: var(--blue-main);
  }

  .form-submit-btn {
    min-height: 38px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .form-item--submit {
    flex: 0 0 auto;
    margin-bottom: 0;
    padding: 10px 0 6px;
    background: #fff;
    box-shadow: 0 -8px 16px rgba(255, 255, 255, 0.92);
  }

  .form-item--submit p {
    margin: 0;
  }

  .form-item--submit p+p {
    margin-top: 4px;
  }

  #powered {
    font-size: 11px;
    line-height: 1.25;
  }

  .form-section.is-keyboard-open .form-items-scroll {
    overflow: visible;
    padding-bottom: 96px;
  }

  .form-section.is-keyboard-open .form-section__contents {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .form-section.is-keyboard-open .lpForm {
    display: block;
  }

  .form-section.is-keyboard-open .form-item--submit {
    position: static;
    padding-top: 8px;
    box-shadow: none;
  }
}

@media (min-width: 768px) {
  .form-item__input--radio {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .form-item__input--radio label {
    min-height: 50px;
    padding: 8px 10px 8px 38px;
    font-size: 14px;
    line-height: 1.25;
  }

  .form-item__input--radio input[type="radio"] {
    left: 12px;
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width:1200px) {
  .sec-fv {
    margin-left: calc(50% - 600px);
  }
}