@charset "utf-8";

/* -----------------------------------
  global
----------------------------------- */

/* global > color
----------------------------------- */
:root {
  --color-bg-base: #fdfdf3;
  --color-bg-primary: #dbf1ff;
  --color-bg-blue: #1b416d;
  --color-bg-blue-purple: #5e7dbd;
  --color-bg-orange: #eca53e;
  --color-bg-sky-blue: #7bb5d1;
  --color-bg-white: #fcfcfc;
  --color-bg-yellow: #ffeb7b;
  --color-border-blue: #1b416d;
  --color-border-blue-purple: #5e7dbd;
  --color-border-gray: #ddd;
  --color-border-orange: #eca53e;
  --color-font-white: #fcfcfc;
  --color-font-base: #1a1a1a;
  --color-font-blue-purple: #5e7dbd;
  --color-font-blue: #1b416d;
  --color-font-orange: #eca53e;
  --color-font-sky-blue: #7bb5d1;
}

/* global > content-width
----------------------------------- */
:root {
  --width-content: 1000px;
  --width-content-s: 710px;
}

/* global > font
----------------------------------- */
:root {
  /* Base font family for the entire document */
  --font-family-base: "Noto Sans JP", sans-serif;
  /* English font family for the entire document */
  --font-family-english: "Roboto", sans-serif;
}

/* -----------------------------------
  foundation
----------------------------------- */

/* foundation > base
----------------------------------- */
body {
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  background-color: var(--color-bg-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

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

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

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}


/* -----------------------------------
  utility
----------------------------------- */

/* utility > utility
----------------------------------- */
/* uppercase */
.u-uppercase {
  text-transform: uppercase;
}

/* no-sp / no-pc */
.u-no-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-no-sp {
    display: inline-block;
  }

  .u-no-pc {
    display: none;
  }
}

/* inline-block */
.u-inline-block {
  display: inline-block;
}


/* -----------------------------------
  component
----------------------------------- */

/* component > button
----------------------------------- */
.c-button {
  font-weight: 700;
  text-align: center;
}

.c-button__head {
  position: relative;
  color: #de6a5d;
}

.c-button__decoration {
  position: absolute;
  top: 2px;
  display: block;
  width: 1px;
  height: 14px;
  background-color: #de6a5d;
}

.c-button__decoration--left {
  left: calc(50% - 81px);
  transform: rotate(150deg);
}

.c-button__decoration--right {
  right: calc(50% - 81px);
  transform: rotate(-150deg);
}

.c-button__decoration--left::before,
.c-button__decoration--right::before {
  content: "";
  display: block;
  width: 1px;
  height: 6px;
  background-color: #de6a5d;
}

.c-button__decoration--left::before {
  transform: rotate(-12deg) translate(4px, 2px);
}

.c-button__decoration--right::before {
  transform: rotate(12deg) translate(-4px, 2px);
}

.c-button__text {
  line-height: 1;
  letter-spacing: 0.1em;
}

.c-button__text span {
  margin-left: 1px;
}

/* btn */
.c-button__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 189px;
  height: 72px;
  border-radius: 32px;
  margin-top: 8px;
  background: linear-gradient(180deg, #007C39, #55B55C);
  box-shadow: 2px 2px 2px rgb(0 0 0 / 0.15);
}

.c-button__btn-inner {
  display: inline-block;
  width: 186px;
  height: 68px;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #55b55c 25%, #007c39);
  box-shadow: 2px 2px 2px rgb(0 0 0 / 0.15);
  color: var(--color-font-white);
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.c-button__line {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.c-button__line::before {
  content: "";
  width: 18px;
  height: 14px;
  background-image: url(../images/ico-line@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

@media screen and (min-width: 768px) {

  /* btn */
  .c-button__btn {
    width: 241px;
    height: 72px;
    border-radius: 36px;
    margin-top: 8px;
    transition: all 0.3s;
  }

  .c-button__btn:hover {
    opacity: 0.8;
  }

  .c-button__btn-inner {
    width: 237px;
    height: 68px;
    padding: 24px 12px;
    border-radius: 33px;
  }
}

/* button animation */
.c-button-animation {
  animation: vertical 1.1s linear infinite;
}

@keyframes vertical {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }

  100% {
    transform: translateY(0)
  }
}

/* component > coupon
----------------------------------- */
.c-coupon {
  width: 100%;
  max-width: 375px;
  height: 138px;
  margin: auto;
  border: 2px solid var(--color-border-blue);
  background-color: var(--color-bg-white);
}

.c-coupon__head {
  position: relative;
  padding: 8px 0 12px;
  background-color: var(--color-bg-blue);
  color: var(--color-font-white);
}

.c-coupon__head::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 13px solid var(--color-bg-blue);
  border-bottom: 0;
}

.c-coupon__lead {
  position: relative;
  font-size: clamp(16px, calc(18 / 375 * 100vw), 18px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.c-coupon__eye-catch {
  position: absolute;
  top: -26px;
  left: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(64px, calc(70 / 375 * 100vw), 70px);
  height: clamp(64px, calc(70 / 375 * 100vw), 70px);
  background-image: url(../images/bg-jagged@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  font-size: 16px;
}

.c-coupon__eye-catch-text {
  margin: 0 2px 3px 0;
  transform: rotate(-17deg);
  font-size: clamp(14px, calc(16 / 375 * 100vw), 16px);
  line-height: 1.16;
}

.c-coupon__lead-kerning {
  margin-left: -7px;
  letter-spacing: 0.2em;
}

.c-coupon__content {
  padding: 19px 0 13px;
}

.c-coupon__content-inner {
  width: 277px;
  margin: auto;
}

.c-coupon__text {
  position: relative;
  z-index: 10;
  color: var(--color-font-orange);
  font-weight: 900;
  line-height: 1;
}

.c-coupon__text::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 3px;
  z-index: -10;
  display: inline-block;
  width: 177px;
  height: 14px;
  background-color: var(--color-bg-yellow);
}

.c-coupon__text-1000 {
  font-family: var(--font-family-english);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.c-coupon__text-1000 span {
  margin-left: -4px;
  font-size: 40px;
}

.c-coupon__text-yen {
  position: relative;
  margin-left: 8px;
  font-size: 32px;
}

.c-coupon__text-yen span {
  position: absolute;
  top: 4px;
  left: 0;
}

.c-coupon__text-off {
  margin-left: 38px;
  color: var(--color-font-blue);
  font-size: 38px;
}

/* pc-fv */
@media screen and (min-width: 768px) {
  .c-coupon--pc-fv {
    max-width: 500px;
    height: 205px;
  }

  .c-coupon__head--pc-fv {
    padding: 21px 0 23px;
  }

  .c-coupon__head--pc-fv::after {
    bottom: -14px;
    border-style: solid;
    border-right-width: 10px;
    border-left-width: 10px;
    border-top-width: 15px;
  }

  .c-coupon__lead--pc-fv {
    transform: scale(1.46);
  }

  .c-coupon__eye-catch--pc-fv {
    top: 20px;
    left: 7px;
    width: 92px;
    height: 92px;
  }

  .c-coupon__eye-catch-text--pc-fv {
    position: relative;
    margin: 0px -2px 2px 0;
    transform: rotate(0);
    font-size: 20px;
  }

  .c-coupon__eye-catch-text--pc-fv::after {
    content: "";
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 7px;
    background-image: url(../images/ico-arrow-right@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  .c-coupon__content--pc-fv {
    padding: 43px 0 35px;
  }

  .c-coupon__text--pc-fv {
    transform: scale(1.46);
  }
}


/* -----------------------------------
  layout
----------------------------------- */

/* layout > container
----------------------------------- */
.l-container,
.l-container-s {
  width: 100%;
  padding: 0 calc(20 / 375 * 100%);
  margin: auto;
}

.l-container {
  max-width: calc(var(--width-content) + calc(20 / 375 * 100%) * 2);
}

.l-container-s {
  max-width: calc(var(--width-content-s) + calc(20 / 375 * 100%) * 2);
}

/* layout > header
----------------------------------- */
.header {
  background-color: var(--color-bg-blue);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 47px;
}

.header__site-title {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__site-title img {
  width: clamp(40px, calc(47 / 375 * 100vw), 47px);
  margin-top: 4px;
}

.header__site-title-text {
  color: var(--color-font-white);
  font-size: clamp(15px, calc(22 / 375 * 100vw), 22px);
  font-weight: 900;
}

.header__phone-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(124px, calc(154 / 375 * 100vw), 154px);
  height: 32px;
  border-radius: 15px;
  background: linear-gradient(180deg, #9e9f9f, #eee);
  box-shadow: 1px 1px 1px rgb(0 0 0 / 0.15);
}

.header__phone-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(120px, calc(150 / 375 * 100vw), 150px);
  height: 30px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #eee 25%, #9e9f9f);
  box-shadow: 1px 1px 1px rgb(0 0 0 / 0.15);
  color: var(--color-font-blue);
  font-size: clamp(14px, calc(18 / 375 * 100vw), 18px);
  font-weight: 700;
}

.header__phone-button a::before {
  content: "";
  width: 16px;
  height: 14px;
  margin-top: 3px;
  background-image: url(../images/ico-phone@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

/* layout > footer
----------------------------------- */
.footer {
  width: 100%;
  height: 344px;
  padding: 44px 0 10px;
  background-image: url(../images/bg-footer.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  color: var(--color-font-white);
}

.footer__title {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}

.footer__information {
  display: grid;
  gap: 6px;
  margin: 28px auto 0;
  width: 302px;
}

.footer__def {
  display: flex;
  gap: 20px;
  font-size: clamp(11px, calc(12 / 375 * 100vw), 12px);
  letter-spacing: 0.05em;
}

.footer__term {
  flex: 0 0 52px;
  font-weight: 500;
}

.footer__desc {
  flex: 1 1 auto;
}

.footer__link {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.footer__link-item a {
  padding: 10px 0;
  color: var(--color-font-blue);
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.footer__copyright {
  margin-top: 8px;
  text-align: center;
}

.footer__copyright small {
  color: var(--color-font-blue);
  font-size: 12px;
  letter-spacing: 0.025em;
}

@media screen and (min-width: 360px) {
  .footer__link {
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .footer {
    background-image: url(../images/bg-footer-pc.svg);
  }

  .footer__link-item a:hover {
    text-decoration: underline;
  }
}


/* -----------------------------------
  page
----------------------------------- */

/* page > top > top-fv
----------------------------------- */
.top-fv-head {
  text-align: center;
}

.top-fv-head__text {
  padding: 2px 0 3px;
  background-color: var(--color-bg-white);
  color: var(--color-font-blue-purple);
  letter-spacing: 0.1em;
  line-height: 1;
}

.top-fv-head__text-last-half {
  margin-left: 12px;
}

.top-fv-head__lead {
  padding: 7px 0 9px;
  background-color: var(--color-bg-blue-purple);
  color: var(--color-font-white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: calc(22 / 18);
}

.top-fv-content {
  padding: 9px 0 8px;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.top-fv-content__inner {
  max-width: 400px;
  margin: auto;
}

.top-fv-content__three-points {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.top-fv-content__list {
  display: flex;
  gap: 6px;
}

/* 1st, 2nd, 3rd */
.top-fv-content__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin-top: 1px;
  background: linear-gradient(225deg, #2b4e77, #4a688a 40%, #7389a4);
  color: var(--color-font-white);
  font-size: 17px;
  font-weight: 900;
  line-height: calc(20 / 17);
  text-align: center;
}

/* 1st, 2nd */
.top-fv-content__item--extra-small {
  font-size: 14px;
  line-height: calc(20 / 14);
}

/* 2nd */
.top-fv-content__item:nth-child(2) {
  letter-spacing: -0.08em;
}

.top-fv-content__item:nth-child(2) .top-fv-content__item--extra-small {
  letter-spacing: normal;
}

/* 3rd */
.top-fv-content__item:nth-child(3) {
  line-height: calc(18 / 17);
}

.top-fv-content__item:nth-child(3) .top-fv-content__item--small {
  font-size: 15px;
  line-height: calc(18 / 15);
}

.top-fv-content__item:nth-child(3) .top-fv-content__item--extra-small {
  line-height: calc(18 / 14);
}

.top-fv-content__coupon {
  margin-top: 16px;
}

.top-fv-content__button {
  margin-top: 8px;
}

/* catch */
.top-fv-catch {
  color: var(--color-font-blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.top-fv-catch__upper {
  margin-left: 6px;
  letter-spacing: 0.2em;
}

.top-fv-catch__upper-large {
  position: relative;
  z-index: 10;
  font-size: 32px;
}

.top-fv-catch__upper-large::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: -6px;
  z-index: -10;
  display: inline-block;
  width: 80px;
  height: 8px;
  background-color: var(--color-bg-sky-blue);
}

.top-fv-catch__lower {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
}

.top-fv-catch__lower1 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--color-font-white);
  font-size: 50px;
}

.top-fv-catch__lower1::after {
  content: "";
  position: absolute;
  top: 55px;
  right: -53px;
  width: 208px;
  height: 156px;
  background-image: url(../images/illust-fv-woman@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}

.top-fv-catch__lower1 span {
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding-top: 2px;
  background-color: var(--color-bg-blue);
}

.top-fv-catch__lower1 span img {
  width: 50px;
  height: 50px;
  margin-top: 3px;
}

.top-fv-catch__lower2 {
  position: relative;
  z-index: 2;
  margin-left: 6px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .top-fv-head__lead {
    padding: 20px 0 19px;
    font-size: 21px;
    letter-spacing: 0.1em;
    line-height: 1;
  }

  .top-fv-content {
    padding: 16px 0 23px;
  }

  .top-fv-content__inner {
    max-width: 100%;
  }

  .top-fv-content__lead {
    width: 100%;
    max-width: 910px;
    margin: auto;
  }

  .top-fv-content__three-points {
    margin-top: 24px;
  }

  .top-fv-content__list {
    justify-content: center;
    gap: 30px;
  }

  /* 1st, 2nd, 3rd */
  .top-fv-content__item {
    flex-direction: row;
    align-items: center;
    width: 247px;
    height: 60px;
    border-radius: 28px;
    margin-top: 0;
    font-size: clamp(18px, calc(24 / 1120 * 100vw), 24px);
    letter-spacing: 0.15em;
  }

  /* 1st, 2nd */
  .top-fv-content__item--extra-small {
    font-size: inherit;
    line-height: inherit;
  }

  /* 2nd */
  .top-fv-content__item:nth-child(2) {
    letter-spacing: 0.15em;
  }

  .top-fv-content__item:nth-child(2) .top-fv-content__item--extra-small {
    letter-spacing: 0.15em;
  }

  /* 3rd */
  .top-fv-content__item:nth-child(3) {
    line-height: inherit;
  }

  .top-fv-content__item:nth-child(3) .top-fv-content__item--small {
    font-size: inherit;
    line-height: inherit;
  }

  .top-fv-content__item:nth-child(3) .top-fv-content__item--extra-small {
    line-height: inherit;
  }

  .top-fv-content__coupon {
    margin-top: 18px;
  }

  .top-fv-content__button {
    margin-top: 26px;
  }

  /* catch */
  .top-fv-catch {
    display: grid;
    gap: 7px;
    font-size: 40px;
  }

  .top-fv-catch__upper {
    letter-spacing: 0.235em;
  }

  .top-fv-catch__upper-large {
    font-size: 50px;
  }

  .top-fv-catch__upper-large::after {
    left: -4px;
    width: 125px;
    height: 16px;
  }

  .top-fv-catch__lower {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-top: 27px;
  }

  .top-fv-catch__lower1 {
    font-size: 100px;
    font-size: clamp(70px, calc(100 / 1120 * 100vw), 100px);
    flex: 1 1 auto;
  }

  .top-fv-catch__lower1::after {
    top: -104px;
    right: -232px;
    width: 247px;
    height: 185px;
  }

  .top-fv-catch__lower1 span {
    width: 120px;
    height: 120px;
    width: clamp(80px, calc(120 / 1120 * 100vw), 120px);
    height: clamp(80px, calc(120 / 1120 * 100vw), 120px);
    padding-top: 5px;
  }

  .top-fv-catch__lower1 span img {
    width: 100px;
    height: 100px;
    width: clamp(70px, calc(100 / 1120 * 100vw), 100px);
    height: clamp(70px, calc(100 / 1120 * 100vw), 100px);
    margin-top: 5px;
  }

  .top-fv-catch__lower2 {
    flex: 0 0 201px;
    margin-left: 0;
    letter-spacing: 0.005em;
  }
}

/* page > top > top-needs
----------------------------------- */
.top-needs {
  position: relative;
}

.top-needs::after {
  content: "";
  position: absolute;
  bottom: -74px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 48px;
  background-image: url(../images/ico-needs-arrows@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.top-needs__title {
  position: relative;
  padding: 25px 0 30px;
  background-color: var(--color-bg-sky-blue);
  color: var(--color-font-white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
}

.top-needs__title::before,
.top-needs__title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.top-needs__title::before {
  bottom: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 13px solid var(--color-bg-sky-blue);
  border-bottom: 0;
}

.top-needs__title::after {
  bottom: -154px;
  width: 205px;
  height: 154px;
  background-image: url(../images/illust-needs-stuff@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

.top-needs__list {
  display: grid;
  gap: 24px;
  max-width: 315px;
  margin: 150px auto 0;
}

.top-needs__item {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: calc(24 / 18);
}

.top-needs__image {
  flex: 0 0 60px;
}

.top-needs__text {
  flex: 1 1 auto;
}

.top-needs__text-large {
  color: var(--color-font-blue);
  font-size: 18px;
  background-image: linear-gradient(#dbf1ff, #dbf1ff);
  background-size: 100% 33%;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .top-needs::after {
    bottom: -88px;
  }

  .top-needs__title {
    letter-spacing: 0.05em;
  }

  .top-needs__title::after {
    bottom: -170px;
  }

  .top-needs__list {
    max-width: 486px;
    margin: 173px auto 0;
  }
}

/* page > top > top-solution
----------------------------------- */
.top-solution {
  margin-top: 106px;
  overflow: hidden;
}

.top-solution__title {
  width: 321px;
  margin: auto;
}

.top-solution__title-text {
  position: relative;
  width: 236px;
  height: 104px;
  padding: 22px 0 0 24px;
  border-radius: 24px;
  background-color: var(--color-bg-sky-blue);
  color: var(--color-font-white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.top-solution__title-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 18px solid var(--color-bg-sky-blue);
  border-right: 0;
}

.top-solution__title-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: -125px;
  width: 138px;
  height: 104px;
  background-image: url(../images/illust-solution-man@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

.top-solution__title-text span {
  margin: 0 3px 0 5px;
}

.top-solution__list {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.top-solution__item {
  max-width: 435px;
  padding: 26px 45px 30px;
  margin: auto;
  border-radius: 3px;
  background-color: var(--color-bg-white);
  box-shadow: 1px 1px 2px rgb(26 26 26 / 0.3);
  text-align: justify;
}

.top-solution__item-blue {
  color: var(--color-font-sky-blue);
}

.top-solution__lead {
  position: relative;
  padding-left: 0.05em;
  margin-top: 93px;
  color: var(--color-font-orange);
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}

.top-solution__lead::before,
.top-solution__lead::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 40px;
  background-image: url(../images/ico-solution-stars@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.top-solution__lead::before {
  top: -36px;
  right: calc(50% - 132px);
  transform: translateX(50%);
}

.top-solution__lead::after {
  bottom: -36px;
  left: calc(50% - 129px);
  transform: translateX(-50%);
}

.top-solution__before-after {
  position: relative;
  display: flex;
  gap: 24px;
  width: fit-content;
  padding: 0 29px;
  margin: 96px auto 0;
}

.top-solution__before-after::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 12px solid #eca53e;
  border-right: 0;
}

.top-solution__before-after-item {
  position: relative;
  font-size: clamp(12px, calc(12 / 375 * 100vw), 16px);
  font-weight: 700;
}

.top-solution__before-after-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: clamp(48px, calc(48 / 375 * 100vw), 80px);
  height: clamp(17px, calc(17 / 375 * 100vw), 30px);
  color: var(--color-font-white);
}

.top-solution__before-after-item:first-child:after {
  content: "Before";
  background-color: #bababa;
}

.top-solution__before-after-item:last-child::after {
  content: "After";
  background-color: #eca53e;
}

.top-solution__desc {
  display: grid;
  gap: 29px;
  max-width: 504px;
  padding: 0 25px;
  margin: 50px auto 0;
}

.top-solution__text {
  letter-spacing: 0.05em;
  text-align: justify;
}

.top-solution__text-orange {
  color: var(--color-font-orange);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

@media screen and (min-width: 768px) {
  .top-solution {
    margin-top: 128px;
  }

  .top-solution__title {
    width: 378px;
  }

  .top-solution__title-text {
    width: 278px;
    padding: 24px 0 0 39px;
    letter-spacing: 0.1em;
  }

  .top-solution__title-text::after {
    right: -140px;
  }

  .top-solution__list {
    margin-top: 40px;
  }

  .top-solution__item {
    padding: 17px 57px 19px;
  }

  .top-solution__lead {
    margin-top: 78px;
  }

  .top-solution__lead::before {
    right: calc(50% - 274px);
  }

  .top-solution__lead::after {
    bottom: -41px;
    left: calc(50% - 274px);
  }

  .top-solution__desc {
    gap: 40px;
    max-width: 610px;
    margin: 40px auto 0;
  }
}

/* page > top > top-price
----------------------------------- */
.top-price {
  padding-bottom: 57px;
  margin-top: 55px;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.top-price__title {
  position: relative;
  padding: 63px 0 36px;
  background-color: var(--color-bg-blue);
  color: var(--color-font-white);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.top-price__title-line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #fff, #fff 3px, transparent 3px, transparent 9px);
  background-size: 9px 3px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.top-price__title-line--upper {
  top: 9px;
}

.top-price__title-line--bottom {
  bottom: 9px;
}

.top-price__title-speech-bubble {
  position: absolute;
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  padding: 2px 0 4px;
  border-radius: 100px;
  background-color: var(--color-bg-white);
  color: var(--color-font-blue);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.top-price__title-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 9px solid var(--color-bg-white);
  border-bottom: 0;
}

.top-price__title-large {
  padding-left: 0.15em;
  font-size: 45px;
  letter-spacing: 0.15em;
}

.top-price__title-image {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 5.333vw 0 5px;
  width: calc(50px + 5px + 5.333vw);
  height: 50px;
  background-color: var(--color-bg-blue);
}

.top-price__title-image img {
  width: 50px;
  height: 50px;
}

.top-price__container {
  max-width: 500px;
  margin-top: 27px;
}

.top-price__lead {
  padding: 0 28px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.top-price__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 50px;
}

.top-price__item {
  position: relative;
  width: calc(100% - 6px);
  padding: 4px;
  background-color: var(--color-bg-white);
  text-align: center;
}

.top-price__item-inner {
  width: 100%;
  padding: 45px 20px 20px;
  border: 1px solid var(--color-border-orange);
}

.top-price__item-inner--1t {
  border-color: var(--color-border-blue-purple);
}

.top-price__plan-title {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(250px, calc(300 / 375 * 100vw), 300px);
  padding: 13px 0;
  border-radius: 25px;
  background-color: var(--color-font-orange);
  color: var(--color-font-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.top-price__plan-title--1t {
  background-color: var(--color-bg-blue-purple);
}

.top-price__price {
  width: 230px;
  margin: auto;
}

.top-price__price-text {
  width: 200px;
  margin-right: 32px;
  color: var(--color-font-orange);
  font-family: var(--font-family-english);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.top-price__price-text--1t {
  color: var(--color-font-blue-purple);
}

.top-price__price-comma {
  position: relative;
  margin-right: 10px;
  font-size: 40px;
}

.top-price__price-comma span {
  position: absolute;
  top: -2px;
  left: 0;
}

.top-price__price-yen {
  position: relative;
  font-size: 30px;
  font-weight: 600;
}

.top-price__price-yen-yen {
  position: absolute;
  top: 0;
  left: 0;
}

.top-price__price-tax-excluded {
  position: absolute;
  top: -15px;
  left: -2px;
  display: block;
  width: 34px;
  font-size: 12px;
  font-weight: 700;
}

.top-price__desc {
  margin-top: 11px;
  letter-spacing: -0.025em;
  line-height: calc(27 / 16);
}

.top-price__image {
  margin-top: 17px;
}

.top-price__image img {
  width: 160px;
  height: 120px;
}

.top-price__image--1t img {
  width: clamp(248px, calc(291 / 375 * 100vw), 291px);
}

.top-price__def {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.top-price__def dt {
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--color-bg-orange);
  color: var(--color-font-white);
  font-size: 12px;
  line-height: 1.2;
}

.top-price__def--1t dt {
  background-color: var(--color-bg-blue-purple);
}

.top-price__def dd {
  font-size: 14px;
  text-align: left;
}

.top-price-other {
  margin-top: 56px;
}

.top-price-other__title {
  position: relative;
  z-index: 100;
  width: clamp(285px, calc(300 / 375 * 100vw), 300px);
  height: clamp(99px, calc(104 / 375 * 100vw), 104px);
  padding: 20px 0;
  margin: auto;
  background-image: url(../images/bg-price-other@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: var(--color-font-blue);
  font-size: clamp(22px, calc(24 / 375 * 100vw), 24px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-align: center;
}

.top-price-other__title::before,
.top-price-other__title::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.top-price-other__title::after {
  top: -19px;
  right: -17px;
  width: 64px;
  height: 48px;
  background-image: url(../images/illust-price-wheelbarrow@2x.png);
}

.top-price-other__title::before {
  bottom: -27px;
  left: -36px;
  width: 96px;
  height: 72px;
  background-image: url(../images/illust-price-woman@2x.png);
}

.top-price-other__title-marker {
  background-image: linear-gradient(#dbf1ff, #dbf1ff);
  background-size: 100% 31%;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.top-price-other__title-marker span {
  font-size: clamp(26px, calc(24 / 375 * 100vw), 28px);
  letter-spacing: 0.01em;
  margin-right: -2px;
}

.top-price-other__lead {
  margin-top: 28px;
  padding: 0 22px;
  letter-spacing: -0.05em;
  text-align: justify;
}

.top-price-other__catch {
  display: flex;
  justify-content: center;
  margin-top: 29px;
  color: #de6a5d;
  font-size: clamp(17px, calc(18 / 375 * 100vw), 18px);
  font-weight: 600;
  line-height: 1;
}

.top-price-other__catch::before,
.top-price-other__catch::after {
  content: "";
  width: 21px;
  height: 21px;
  background-image: url(../images/ico-price-decoration@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

.top-price-other__catch::after {
  transform: rotate(180deg);
}

.top-price-other__text {
  padding: 0 28px;
  margin-top: 30px;
  font-size: 14px;
  text-align: justify;
}

.top-price__coupon {
  margin-top: 58px;
}

@media screen and (min-width: 768px) {
  .top-price {
    padding-bottom: 92px;
    margin-top: 87px;
  }

  .top-price__title {
    padding: 63px 0 35px;
  }

  .top-price__title-image {
    right: 168px;
    padding: 0px 15px 0 15px;
    width: 80px;
  }

  .top-price__container {
    max-width: calc(var(--width-content-s) + calc(20 / 375 * 100%) * 2);
    margin-top: 36px;
  }

  .top-price__lead {
    max-width: 610px;
    padding: 0 28px;
    margin: auto;
  }

  .top-price__list {
    flex-direction: row;
    gap: 50px;
    margin-top: 66px;
  }

  .top-price__item {
    width: calc((100% - 50px) / 2);
    padding: 4px;
    background-color: var(--color-bg-white);
    text-align: center;
  }

  .top-price__item-inner {
    padding: 45px 17px 22px;
  }

  .top-price__plan-title {
    width: 250px;
  }

  .top-price-other {
    margin-top: 67px;
  }

  .top-price-other__title {
    width: 575px;
    height: 88px;
    padding: 25px 0 22px;
    background-image: url(../images/bg-price-other-pc@2x.png);
  }

  .top-price-other__title::after {
    top: -26px;
    right: -30px;
  }

  .top-price-other__title::before {
    bottom: -36px;
    left: -40px;
  }

  .top-price-other__lead {
    margin-top: 73px;
    padding: 0 68px;
  }

  .top-price-other__catch {
    margin-top: 46px;
  }

  .top-price-other__text {
    padding: 0 78px;
    margin-top: 51px;
  }

  .top-price__coupon {
    margin-top: 66px;
  }
}

/* page > top > top-reasons
----------------------------------- */
.top-reasons {
  padding-top: 56px;
}

.top-reasons__container {
  max-width: 500px;
}

.top-reasons__title {
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.top-reasons__title-upper {
  position: relative;
  color: var(--color-border-blue);
  font-size: 24px;
}

.top-reasons__title-upper::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 285px;
  height: 9px;
  background-image: url(../images/img-reasons-decoration@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.top-reasons__title-upper-en {
  font-size: 28px;
  margin-top: 1px;
}

.top-reasons__title-lower {
  display: inline-block;
  margin-top: 22px;
  color: var(--color-font-orange);
  font-size: 40px;
  letter-spacing: 0.05em;
}

.top-reasons__title-lower-number {
  font-size: 48px;
}

.top-reasons__title-lower-kana {
  font-size: 32px;
}

.top-reasons__list {
  display: grid;
  gap: 55px;
  margin-top: 50px;
}

.top-reasons__item-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-reasons__item-title-number {
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 3px 0 0 2px;
  border-radius: 50% 50% 0 50%;
  background-color: var(--color-bg-orange);
  color: #fdfdf3;
  font-family: var(--font-family-english);
  font-size: 24px;
  font-weight: 700;
}

.top-reasons__item-title-text {
  font-size: clamp(23px, calc(24 / 375 * 100vw), 24px);
  font-weight: 600;
  line-height: calc(32 / 24);
}

.top-reasons__item-title-text span {
  color: var(--color-font-orange);
}

.top-reasons__image {
  margin-top: 20px;
}

.top-reasons__text {
  padding: 0 30px;
  margin-top: 19px;
}

.top-reasons__text span {
  background-image: linear-gradient(#ffeb7b, #ffeb7b);
  background-size: 100% 33%;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

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

  .top-reasons__container {
    max-width: calc(var(--width-content) + calc(20 / 375 * 100%) * 2);
  }

  .top-reasons__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 124px;
  }

  .top-reasons__item-title-text {
    font-size: clamp(16px, calc(24 / 1280 * 100vw), 24px);
  }
}

/* page > top > top-philosophy
----------------------------------- */
.top-philosophy {
  padding: 111px 0 56px;
}

.top-philosophy__title {
  width: 200px;
  height: 145px;
  margin: auto;
  background-image: url(../images/img-philosophy-decoration@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  color: var(--color-font-blue);
  letter-spacing: 0.26em;
  line-height: 1;
  text-align: center;
}

.top-philosophy__title-upper {
  display: block;
  padding-top: 44px;
  font-size: 20px;
  font-weight: 600;
}

.top-philosophy__title-upper span {
  font-size: 24px;
  font-weight: 500;
}

.top-philosophy__title-lower {
  display: block;
  margin-top: 5px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.top-philosophy__list {
  display: grid;
  gap: 40px;
  margin-top: 54px;
}

.top-philosophy__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-philosophy__item--even {
  flex-direction: row-reverse;
}

.top-philosophy__desc {
  width: calc(180 / 375 * 100%);
  padding: 0 0 0 calc(20 / 375 * 100%);
}

.top-philosophy__desc--even {
  padding: 0 calc(20 / 375 * 100%) 0 0;
}

.top-philosophy__desc-title {
  position: relative;
  padding-left: 10px;
  margin-top: 4px;
  color: var(--color-font-orange);
  font-size: 18px;
  line-height: 1;
}

.top-philosophy__desc-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-block;
  width: 6px;
  height: 18px;
  background-color: var(--color-bg-orange);
}

.top-philosophy__text {
  margin-top: 10px;
}

.top-philosophy__image {
  width: calc(174 / 375 * 100%);
}

.top-philosophy__button {
  margin-top: 55px;
}

@media screen and (min-width: 768px) {
  .top-philosophy {
    padding: 181px 0 80px;
  }

  .top-philosophy__container {
    max-width: calc(var(--width-content) + calc(20 / 375 * 100%) * 2);
    margin: auto;
  }

  .top-philosophy__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 52px;
    padding: 0 95px;
    margin-top: 75px;
  }

  .top-philosophy__item {
    flex-direction: column;
    gap: 32px;
  }

  .top-philosophy__item--even {
    flex-direction: column
  }

  .top-philosophy__desc {
    width: 100%;
    padding: 0;
  }

  .top-philosophy__desc--even {
    padding: 0;
  }

  .top-philosophy__image {
    width: 143px;
    height: 143px;
  }

  .top-philosophy__button {
    margin-top: 79px;
  }
}

/* page > top > top-area
----------------------------------- */
.top-area {
  padding: 56px 0 55px;
  background-color: var(--color-bg-primary);
  text-align: center;
}

.top-area__container {
  max-width: 500px;
}

.top-area__title {
  display: grid;
  justify-items: center;
  gap: 11px;
  color: var(--color-font-blue);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.top-area__title::before,
.top-area__title::after {
  content: "";
  width: 152px;
  height: 2px;
  background-color: currentColor;
}

.top-area__lead {
  margin-top: 26px;
}

.top-area__map {
  margin-top: 23px;
}

.top-area__map img {
  width: 235px;
  height: auto;
}

.top-area__list {
  display: grid;
  gap: 57px;
  margin-top: 47px;
}

.top-area__item {
  border: 4px solid var(--color-border-orange);
  border-radius: 10px;
  background-color: var(--color-bg-white);
}

.top-area__item--saitama {
  border-color: var(--color-bg-blue-purple);
}

.top-area__def dt {
  padding: 11px 0 15px 0.2em;
  background-color: var(--color-bg-orange);
  color: var(--color-font-white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.top-area__def dd {
  padding: 19px 20px 23px;
  text-align: justify;
}

.top-area__def--saitama dt {
  background-color: var(--color-bg-blue-purple);
}

@media screen and (min-width: 768px) {
  .top-area {
    padding: 78px 0;
  }

  .top-area__container {
    max-width: calc(var(--width-content-s) + calc(20 / 375 * 100%) * 2);
  }

  .top-area__lead {
    margin-top: 44px;
  }

  .top-area__map {
    margin-top: 51px;
  }

  .top-area__list {
    gap: 36px;
    padding: 0 24px;
    margin-top: 38px;
  }

  .top-area__def dd {
    padding: 22px 26px;
  }
}

/* page > top > top-flow
----------------------------------- */
.top-flow {
  padding-bottom: 60px;
}

.top-flow__title {
  aspect-ratio: 375 / 141;
  padding: calc(47 / 375 * 100vw) 0 0 0.2em;
  background-image: url(../images/bg-flow-wave.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: var(--color-font-white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
}

.top-flow__list {
  display: grid;
  gap: 45px;
  max-width: 550px;
  padding: 0 20px;
  margin: 56px auto 0;
}

.top-flow__item {
  display: flex;
  gap: 20px;
}

.top-flow__icon {
  position: relative;
  flex: 0 0 56px;
}

.top-flow__item:not(:last-child) .top-flow__icon::after {
  content: "";
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 105px;
  background-image: url(../images/img-flow-dot@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.top-flow__desc-title {
  margin-top: 7px;
  color: var(--color-font-sky-blue);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.top-flow__desc-text {
  margin-top: 18px;
}

@media screen and (min-width: 768px) {
  .top-flow {
    padding-bottom: 102px;
  }

  .top-flow__title {
    aspect-ratio: 1280 / 138;
    padding: calc(41 / 1280 * 100vw) 0 0 0.2em;
    background-image: url(../images/bg-flow-wave-pc.svg);
    font-size: clamp(20px, calc(24 / 1280 * 100vw), 24px);
  }

  .top-flow__container {
    max-width: 600px;
    margin: auto;
  }

  .top-flow__list {
    gap: 29px;
    max-width: 100%;
    margin-top: 81px;
  }

  .top-flow__desc-text {
    margin-top: 17px;
  }
}

/* page > top > top-removal
----------------------------------- */
.top-removal {
  padding-bottom: 56px;
}

.top-removal__title {
  position: relative;
  padding: 28px 0 27px 0.2em;
  background-color: var(--color-bg-orange);
  color: var(--color-font-white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
}

.top-removal__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 13px solid var(--color-bg-orange);
  border-bottom: 0;
}

.top-removal__list {
  display: grid;
  gap: 38px;
  max-width: 550px;
  margin: 39px auto 0;
}

.top-removal__item {
  display: flex;
  gap: 20px;
  padding: 23px 12px 25px 18px;
  border-radius: 4px;
  border: 2px solid var(--color-border-orange);
  background-color: var(--color-bg-white);
  text-align: justify;
}

.top-removal__item-head {
  flex: 0 0 80px;
  margin-top: 4px;
  text-align: center;
}

.top-removal__item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.top-removal__item-title--short {
  padding-left: 0.2em;
  letter-spacing: 0.2em;
}

.top-removal__item-image img {
  width: 72px;
  height: auto;
  margin-top: 13px;
}

.top-removal__item-image--small img {
  width: 62px;
  margin-top: 23px;
}

.top-removal__item-text {
  letter-spacing: -0.05em;
  line-height: calc(22 / 16);
}

@media screen and (min-width: 768px) {
  .top-removal {
    padding-bottom: 78px;
  }

  .top-removal__title {
    padding: 27px 0 27px 0.2em;
  }

  .top-removal__container {
    max-width: calc(var(--width-content-s) + calc(20 / 375 * 100%) * 2);
  }

  .top-removal__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px;
    max-width: 100%;
    margin-top: 93px;
  }
}

/* page > top > top-voice
----------------------------------- */
.top-voice {
  padding: 53px 0 54px;
  background-color: var(--color-bg-primary);
}

.top-voice__title {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--color-font-blue);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.top-voice__title::before,
.top-voice__title::after {
  content: "";
  width: 152px;
  height: 2px;
  background-color: currentColor;
}

.top-voice__list {
  display: grid;
  gap: 33px;
  max-width: 550px;
  margin: 54px auto 0;
}

.top-voice__item {
  padding: 12px 13px 20px;
  border-radius: 27px;
  border: 2px solid #7bb5d1;
  background-color: var(--color-bg-white);
}

.top-voice__term {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #7bb5d1;
}

.top-voice__attribute {
  display: grid;
  padding: 0 0 0 12px;
  line-height: 2;
}

.top-voice__address-time-mg16 {
  margin-right: 16px;
}

.top-voice__image img {
  width: 70px;
  height: auto;
}

.top-voice__desc {
  padding: 18px 12px 0;
  letter-spacing: -0.075em;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .top-voice {
    padding: 77px 0 79px;
  }

  .top-voice__container {
    max-width: calc(var(--width-content-s) + calc(20 / 375 * 100%) * 2);
  }

  .top-voice__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 46px;
    max-width: 100%;
    margin-top: 86px;
  }

  .top-voice__item {
    padding: 12px 13px 24px;
  }
}

/* page > top > top-faq
----------------------------------- */
.top-faq {
  padding: 56px 0 58px;
}

.top-faq__container {
  max-width: calc(567px + calc(20 / 375 * 100%) * 2);
}

.top-faq__title {
  position: relative;
  color: var(--color-border-blue);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.top-faq__title::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 148px;
  height: 9px;
  background-image: url(../images/img-faq-decoration@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.top-faq__list {
  padding: 0 10px;
  margin-top: 60px;
}

.top-faq__item {
  padding: 23px 0 25px;
}

.top-faq__item:not(:last-child) {
  border-bottom: 2px dashed var(--color-border-orange);
}

.top-faq__def {
  padding-left: 39px;
}

.top-faq__def dt {
  position: relative;
  font-weight: 600;
}

.top-faq__def dt span {
  position: absolute;
  top: 0;
  left: -36px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-bg-orange);
  color: var(--color-font-white);
  font-family: var(--font-family-english);
  font-size: 14px;
  font-weight: 700;
}

.top-faq__def dd {
  margin-top: 14px;
  font-weight: 400;
}

.top-faq__button {
  margin-top: 35px;
}

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

  .top-faq__list {
    padding: 0;
    margin-top: 76px;
  }

  .top-faq__item {
    padding: 26px 0 46px;
  }

  .top-faq__button {
    margin-top: 31px;
  }
}

/* page > top > top-back-to-top
----------------------------------- */
.top-back-to-top {
  position: fixed;
  bottom: 40px;
  right: 0;
}

.top-back-to-top a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 93px;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(225deg, #2b4e77, #4a688a 40%, #7389a4);
  color: var(--color-font-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.05em;
  writing-mode: vertical-rl;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .top-back-to-top a {
    width: 42px;
    height: 140px;
    font-size: 16px;
  }

  .top-back-to-top a:hover {
    opacity: 0.8;
  }
}

/* page > lower > common
----------------------------------- */
.lower-title {
  margin-top: 50px;
  text-align: center;
}

.lower-tokushoho,
.lower-privacy-policy {
  width: 100%;
  max-width: 700px;
  padding: 0 calc(47 / 375 * 100%);
  margin: auto;
}

.lower-tokushoho__title,
.lower-privacy-policy__title {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-font-orange);
}

.lower-tokushoho__title::before,
.lower-privacy-policy__title::before {
  content: "";
  display: block;
  width: 5px;
  height: 19px;
  background-color: var(--color-bg-orange);
}

/* page > lower > lower-tokushoho
----------------------------------- */
.lower-tokushoho {
  padding-top: 50px;
  padding-bottom: 70px;
}

.lower-tokushoho__content {
  display: grid;
  gap: 18px;
  padding-left: 16px;
  margin-top: 27px;
}

.lower-tokushoho__def {
  font-size: 12px;
  letter-spacing: -0.025em;
  text-align: justify;
}

.lower-tokushoho__def dt {
  position: relative;
  font-weight: 600;
}

.lower-tokushoho__def dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: var(--color-bg-orange);
}

.lower-tokushoho__def dd {
  font-weight: 400;
}

/* page > lower > lower-privacy-policy
----------------------------------- */
.lower-privacy-policy {
  padding-top: 50px;
  margin: auto;
}

.lower-privacy-policy__content {
  margin-top: 26px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-align: justify;
}

/* list1 */
.lower-privacy-policy__list1 {
  display: grid;
  gap: 37px;
  margin-top: 31px;
}

.lower-privacy-policy__title1 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-orange);
  margin-bottom: 9px;
  color: var(--color-font-orange);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.lower-privacy-policy__title1 span {
  margin-left: 14px;
}

/* list2 */
.lower-privacy-policy__item2 {
  position: relative;
  padding-left: 20px;
}

.lower-privacy-policy__item2 span {
  position: absolute;
  top: 0;
  left: 0;
}

/* list3 */
.lower-privacy-policy__item3 {
  position: relative;
  padding-left: 20px;
}

.lower-privacy-policy__item3 span {
  position: absolute;
  top: 0;
  left: 0;
}

/* list4 */
.lower-privacy-policy__item4 {
  position: relative;
  padding-left: 20px;
}

.lower-privacy-policy__item4 span {
  position: absolute;
  top: 0;
  left: 0;
}

/* dl */
.lower-privacy-policy__def {
  display: flex;
}

.lower-privacy-policy__def dt {
  display: flex;
  font-weight: 400;
}

.lower-privacy-policy__def dt::after {
  content: "：";
}

/* page > lower > lower-link
----------------------------------- */
.lower-link {
  margin: 48px 0 60px;
  text-align: center;
}

.lower-link a {
  display: inline-block;
  padding: 10px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .lower-link a:hover {
    color: var(--color-font-orange);
  }
}