@charset "UTF-8";
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media screen and (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 374) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  background-color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #494949;
}

html,
body {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

html.is-fixed,
body.is-fixed {
  overflow: hidden;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

.c-section-title--white, .c-section-title {
  text-align: center;
  font-weight: 700;
}

.c-section-title {
  font-size: 2.875rem;
  letter-spacing: 0.1em;
  color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 32px;
  }
}

.c-section-title--white {
  font-size: 2.75rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .c-section-title--white {
    font-size: 28px;
  }
}

.c-select-title {
  margin-right: auto;
  margin-left: auto;
  width: 32rem;
  height: 6rem;
  line-height: 6rem;
  background-color: #3B2A34;
  text-align: center;
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .c-select-title {
    width: 320px;
    height: 56px;
    line-height: 56px;
    font-size: 28px;
  }
}
@media screen and (max-width: 374px) {
  .c-select-title {
    width: 280px;
    height: 48px;
    line-height: 48px;
    font-size: 22px;
  }
}

.c-frecious-title {
  text-align: center;
  color: #3B2A34;
}

.c-frecious-title__every-frecious {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-frecious-title__every-frecious {
    font-size: 20px;
  }
}

.c-frecious-title__mini-tall {
  margin-left: 8px;
  font-weight: 500;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .c-frecious-title__mini-tall {
    margin-left: 6px;
    font-size: 42px;
  }
}

.c-frecious-title__and {
  margin-left: 8px;
  font-weight: 500;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .c-frecious-title__and {
    margin-left: 6px;
    font-size: 32px;
  }
}

.c-big-caret, .c-big-caret--white, .c-big-caret--brown {
  width: 100%;
  aspect-ratio: 384/64;
  background-color: transparent;
}

.c-big-caret--brown {
  background: url("../img/big-caret-brown.png") no-repeat center center/cover;
}

.c-big-caret--white {
  background: url("../img/big-caret-white.png") no-repeat center center/cover;
}

.c-btn {
  border-radius: 999px;
  background-color: #DD4211;
  text-align: center;
  font-weight: 700;
  color: #FFFFFF;
}

.c-burger-btn {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #3B2A34;
}

.c-burger-btn__bars {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-burger-btn__bars::before, .c-burger-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}
.c-burger-btn__bars::before {
  top: -8px;
}
.c-burger-btn__bars::after {
  top: 8px;
}

.c-burger-btn.is-open .c-burger-btn__bars {
  background-color: transparent;
}
.c-burger-btn.is-open .c-burger-btn__bars::before, .c-burger-btn.is-open .c-burger-btn__bars::after {
  top: 0;
  background-color: #FFFFFF;
}
.c-burger-btn.is-open .c-burger-btn__bars::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-burger-btn.is-open .c-burger-btn__bars::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-burger-menu {
  position: absolute;
  z-index: 100;
  top: 62px;
  left: 100%;
  width: 100%;
  height: calc(100vh - 62px);
  background-color: #3B2A34;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-burger-menu.is-open {
  left: 0;
}

.c-burger-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.c-burger-menu__link {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.c-burger-menu__btn {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding-right: 2.25rem;
  padding-left: 2.25rem;
}

.c-header-nav {
  height: inherit;
}

.c-header-nav__list {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 43px;
}
@media screen and (max-width: 1079px) {
  .c-header-nav__list {
    gap: 3.7068965517vw;
  }
}

.c-header-nav__link {
  display: inline-block;
  height: 56px;
  line-height: 56px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.c-header-nav__btn {
  display: block;
  height: 40px;
  line-height: 40px;
  padding-right: 2.25rem;
  padding-left: 2.25rem;
  font-weight: 700;
}
.c-header-nav__btn:hover {
  opacity: 1;
}

.c-header {
  width: 100%;
  height: 62px;
  background-color: #3B2A34;
  color: #FFFFFF;
}

.c-header__inner {
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header__left {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1079px) {
  .c-header__left {
    gap: 1.2931034483vw;
  }
}

.c-header__logo {
  padding-top: 8px;
  width: 12.0689655172vw;
  max-width: 140px;
}
@media screen and (max-width: 767px) {
  .c-header__logo {
    width: 120px;
  }
}

.c-header__company {
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .c-header__company {
    font-size: 11px;
  }
}

.c-header__right {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header__line {
  width: 100%;
  height: 6px;
  background-color: #56CDC4;
}

.c-cta__btn {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 24rem;
  height: 5rem;
  background-color: #18A096;
  line-height: 5rem;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-cta__btn {
    width: 256px;
    height: 56px;
    line-height: 56px;
    font-size: 21px;
  }
}

.c-point--white, .c-point {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 2.875rem;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .c-point--white, .c-point {
    font-size: 30px;
  }
}
.c-point--white::before, .c-point::before {
  content: "point";
  position: absolute;
  top: -2.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .c-point--white::before, .c-point::before {
    top: -24px;
    font-size: 19px;
  }
}
.c-point--white::after, .c-point::after {
  content: "";
  position: absolute;
  top: calc(100% + 1.625rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 6px;
  background-color: #56CDC4;
}
@media screen and (max-width: 767px) {
  .c-point--white::after, .c-point::after {
    top: calc(100% + 14px);
    height: 4px;
  }
}

.c-point {
  color: #494949;
}

.c-point--white {
  color: #FFFFFF;
}

.c-slider {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 46.0344827586vw;
  max-width: 534px;
  height: 46.0344827586vw;
  max-height: 534px;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .c-slider {
    width: 240px;
    height: 240px;
  }
}

.c-slider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.c-slider__btn-next, .c-slider__btn-prev {
  top: 50%;
  -webkit-transform: translateY(-22%);
          transform: translateY(-22%);
  width: 72px;
  height: 72px;
}
@media screen and (max-width: 767px) {
  .c-slider__btn-next, .c-slider__btn-prev {
    width: 44px;
    height: 44px;
  }
}
.c-slider__btn-next::after, .c-slider__btn-prev::after {
  display: none;
}

.c-slider__btn-prev {
  right: unset;
  left: -104px;
  background: url("../img/btn-prev.png") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-slider__btn-prev {
    left: -56px;
  }
}
@media screen and (max-width: 374px) {
  .c-slider__btn-prev {
    left: -22px;
  }
}

.c-slider__btn-next {
  right: -104px;
  left: unset;
  background: url("../img/btn-next.png") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-slider__btn-next {
    right: -56px;
  }
}
@media screen and (max-width: 374px) {
  .c-slider__btn-next {
    right: -22px;
  }
}

.c-qa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-qa {
    gap: 8px;
  }
}

.c-qa__q {
  margin-top: 5px;
  width: 4.5rem;
  height: 4.875rem;
  line-height: 4.5rem;
  border-bottom: 0.375rem solid #56CDC4;
  text-align: center;
  font-weight: 700;
  font-size: 2.875rem;
  color: #3B2A34;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .c-qa__q {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__q {
    margin-top: 10px;
    width: 32px;
    height: 36px;
    line-height: 32px;
    border-bottom: 4px solid #56CDC4;
    font-size: 24px;
  }
}
@media screen and (max-width: 374px) {
  .c-qa__q {
    font-size: 20px;
  }
}

.c-qa__pair {
  width: calc(100% - 5.5rem);
  border-top: 4px solid #DEE0DF;
  padding-right: 1rem;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-qa__pair {
    width: calc(100% - 40px);
    border-top: 2px solid #DEE0DF;
  }
}

.c-qa:last-child .c-qa__pair {
  border-bottom: 4px solid #DEE0DF;
}
@media screen and (max-width: 767px) {
  .c-qa:last-child .c-qa__pair {
    border-bottom: 2px solid #DEE0DF;
  }
}

.c-qa__question {
  position: relative;
  padding-top: 1.6875rem;
  padding-bottom: 1.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: #494949;
}
@media screen and (max-width: 767px) {
  .c-qa__question {
    padding-top: 14px;
    padding-right: 16px;
    padding-bottom: 14px;
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 374px) {
  .c-qa__question {
    font-size: 14px;
  }
}
.c-qa__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.19375rem 0.6875rem 0 0.6875rem;
  border-color: #3B2A34 transparent transparent transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-qa__question::after {
    right: 0;
    border-width: 13.9px 8px 0 8px;
  }
}
.c-qa__question.is-open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.c-qa__answer {
  margin-top: -0.1875rem;
  padding-bottom: 1.375rem;
  font-size: 1.125rem;
  color: #494949;
  letter-spacing: 0.07em;
  line-height: 1.5555555556;
  display: none;
}
@media screen and (max-width: 767px) {
  .c-qa__answer {
    font-size: 12px;
  }
}
.c-qa__answer.is-open {
  display: block;
}

.c-faq__list {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .c-faq__list {
    margin-top: 40px;
  }
}

.c-plan {
  border: 3px solid #DD4211;
  cursor: pointer;
}

.c-plan__title {
  padding-top: 19px;
  padding-bottom: 21px;
  text-align: center;
  font-weight: 700;
  font-size: 2.5625rem;
  color: #070606;
}
@media screen and (max-width: 767px) {
  .c-plan__title {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 20px;
  }
}
@media screen and (max-width: 374px) {
  .c-plan__title {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }
}

.c-popup {
  position: absolute;
  z-index: 50;
  top: 142px;
  width: 100%;
  display: none;
}
.c-popup.is-open {
  display: block;
}

.c-popup__box {
  position: relative;
  border: 1px solid #707070;
  background-color: #FFFFFF;
  padding: 3.3125rem 3rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .c-popup__box {
    padding: 32px;
  }
}

.c-popup__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  border: 2px solid #707070;
}
@media screen and (max-width: 767px) {
  .c-popup__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
}
.c-popup__close::before, .c-popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 2px;
  background-color: #707070;
}
@media screen and (max-width: 767px) {
  .c-popup__close::before, .c-popup__close::after {
    width: 33px;
  }
}
.c-popup__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.c-popup__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.c-privacy {
  color: #494949;
}

.c-privacy__title {
  font-weight: 700;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-privacy__title {
    font-size: 16px;
  }
}

.c-privacy__text + .c-privacy__title,
.c-privacy__list + .c-privacy__title {
  margin-top: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .c-privacy__text + .c-privacy__title,
  .c-privacy__list + .c-privacy__title {
    margin-top: 32px;
  }
}

.c-privacy__title + .c-privacy__text,
.c-privacy__title + .c-privacy__list {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .c-privacy__title + .c-privacy__text,
  .c-privacy__title + .c-privacy__list {
    margin-top: 24px;
  }
}

.c-privacy__text + .c-privacy__list {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .c-privacy__text + .c-privacy__list {
    margin-top: 24px;
  }
}

.c-privacy__text,
.c-privacy__list {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .c-privacy__text,
  .c-privacy__list {
    font-size: 11px;
  }
}

.c-privacy__list {
  margin-left: 3.375rem;
  list-style: decimal;
}
@media screen and (max-width: 767px) {
  .c-privacy__list {
    margin-left: 24px;
  }
}

.c-privacy__list .c-privacy__list {
  margin-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-privacy__list .c-privacy__list {
    margin-left: 14px;
  }
}

.c-law {
  color: #494949;
}

.c-law__title {
  font-weight: 700;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-law__title {
    font-size: 16px;
  }
}

.c-law__text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .c-law__text {
    font-size: 11px;
  }
}
.c-law__text:first-of-type {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .c-law__text:first-of-type {
    margin-top: 24px;
  }
}
.c-law__text:not(:first-of-type) {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-law__text:not(:first-of-type) {
    margin-top: 16px;
  }
}

.c-law__link {
  color: #092A78;
  text-decoration: underline;
}

.c-page-top {
  position: fixed;
  z-index: 10;
  bottom: 80px;
  left: calc(100vw - 80px - 72px);
  width: 72px;
  height: 72px;
  background: url("../img/page-top.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .c-page-top {
    bottom: 48px;
    left: calc(100vw - 48px - 60px);
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-page-top {
    bottom: 24px;
    left: calc(100vw - 24px - 48px);
    width: 48px;
    height: 48px;
  }
}

.c-footer {
  width: 100%;
  background-color: #DEE0DF;
  padding-top: 44px;
  padding-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .c-footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.c-footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}

.c-footer__popup-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 1079px) {
  .c-footer__popup-list {
    gap: 4.1379310345vw;
  }
}

.c-footer__popup-item {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-footer__popup-item {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .c-footer__popup-item:hover {
    opacity: 0.7;
  }
}

.c-footer__company-info {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-footer__company-info {
    text-align: center;
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .c-footer__company-info {
    font-size: 10px;
  }
}
.c-footer__company-info p:not(:first-child) {
  margin-top: 16px;
}

.c-footer__company-name {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-footer__company-name {
    font-size: 14px;
  }
}

.c-footer__copyright {
  margin-top: 18px;
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-footer__copyright {
    margin-top: 24px;
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .c-footer__copyright {
    font-size: 10px;
  }
}

.l-inner {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .l-inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .l-inner {
    max-width: 1160px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: 384px;
  min-width: 384px;
  max-width: 384px;
}
@media screen and (max-width: 767px) {
  .l-center {
    width: 256px;
    min-width: 256px;
    max-width: 256px;
  }
}

.l-grid {
  width: 100%;
  aspect-ratio: 1080/516;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .l-grid {
    display: block;
  }
}

.l-grid__img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .l-grid__img {
    width: 100%;
  }
}

.l-grid__text {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-grid__text {
    width: 100%;
  }
}

.l-spec-inner {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .l-spec-inner {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media screen and (min-width: 1080px) {
  .l-spec-inner {
    max-width: 980px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.l-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .l-select {
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-select {
    gap: 12px;
  }
}

.l-select__img {
  width: 30rem;
  aspect-ratio: 480/480;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .l-select__img {
    width: 22.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-select__img {
    width: 160px;
  }
}
@media screen and (max-width: 374px) {
  .l-select__img {
    width: 140px;
  }
}

.l-select__text {
  width: 30rem;
  height: 5.625rem;
  line-height: 5.5rem;
  text-align: center;
  font-size: 2.875rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .l-select__text {
    width: 22.5rem;
    height: 4rem;
    line-height: 3.875rem;
    font-size: 2.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-select__text {
    width: 160px;
    height: 45px;
    line-height: 43px;
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) {
  .l-select__text {
    width: 140px;
    font-size: 16px;
  }
}
.l-select__text small {
  font-size: 2.375rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .l-select__text small {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-select__text small {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .l-select__text small {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-hidden {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .u-pc-only {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u-pc-hidden {
    display: none;
  }
}

.u-ls-40 {
  letter-spacing: -0.04em;
}

.u-ls60 {
  letter-spacing: 0.06em;
}

.p-top-main-visual {
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual {
    position: relative;
    background: url("../img/main-visual-woman.jpg") no-repeat center center/cover;
  }
  .p-top-main-visual::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
}

@media screen and (max-width: 767px) {
  .p-top-main-visual__img-area {
    display: none;
  }
}

.p-top-main-visual__img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-top-main-visual__img {
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-top-main-visual__all {
    z-index: 1;
    width: 100%;
    max-width: 100%;
  }
}

.p-top-main-visual__center {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 0.375rem;
  background-color: #3B2A34;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__center {
    padding-top: 24px;
    padding-bottom: 0;
    background-color: transparent;
  }
}

.p-top-main-visual__lead {
  width: 100%;
  height: 2.5rem;
  line-height: 2.5rem;
  background-color: #000000;
  padding-left: 0.125rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__lead {
    height: 24px;
    line-height: 24px;
    font-size: 16px;
  }
}

.p-top-main-visual__title {
  margin-top: -0.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__title {
    margin-top: 20px;
  }
}

.p-top-main-visual__tittle-every {
  margin-top: -0.25rem;
  margin-left: 1rem;
  display: block;
  font-weight: 700;
  font-size: 5.25rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__tittle-every {
    font-size: 56px;
  }
}

.p-top-main-visual__tittle-frecious {
  margin-top: 0.5rem;
  margin-left: 0.25rem;
  display: block;
  font-weight: 700;
  font-size: 2.0625rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__tittle-frecious {
    font-size: 22px;
  }
}

.p-top-main-visual__frecious-img {
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  width: 18.4375vw;
  max-width: 66%;
  aspect-ratio: 480/800;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__frecious-img {
    width: 200px;
    max-width: 40%;
  }
}

.p-top-main-visual__circle {
  position: absolute;
  width: 9.75rem;
  height: 9.75rem;
  border-radius: 50%;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__circle {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-main-visual__circle {
    width: 80px;
    height: 80px;
  }
}
.p-top-main-visual__circle:nth-of-type(1) {
  top: 30%;
  right: -5.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__circle:nth-of-type(1) {
    top: unset;
    bottom: 140px;
    right: 20px;
  }
}
.p-top-main-visual__circle:nth-of-type(2) {
  top: 50%;
  left: -5.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__circle:nth-of-type(2) {
    top: unset;
    bottom: 80px;
    left: 20px;
  }
}
.p-top-main-visual__circle:nth-of-type(3) {
  top: 70%;
  right: -5.75rem;
  padding-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__circle:nth-of-type(3) {
    top: unset;
    bottom: 20px;
    right: 20px;
  }
}

.p-top-main-visual__point {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-main-visual__point {
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-main-visual__point {
    font-size: 12px;
  }
}

.p-top-movie1 {
  background: url("../img/movie-bg.png") no-repeat center center/cover;
}

.p-top-movie1__top {
  height: 120px;
  background-color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .p-top-movie1__top {
    height: 40px;
  }
}

.p-top-movie1__video {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 82.7586206897vw;
  max-width: 960px;
  aspect-ratio: 960/540;
}

.p-top-movie1__bottom {
  height: 80px;
  background-color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .p-top-movie1__bottom {
    height: 40px;
  }
}

.p-top-scene {
  width: 31.0344827586vw;
  max-width: 360px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-scene {
    width: 100%;
  }
  .p-top-scene:not(:first-child) {
    margin-top: 40px;
  }
}

.p-top-scene__img {
  margin-right: auto;
  margin-left: auto;
  width: 25.8620689655vw;
  max-width: 300px;
  aspect-ratio: 300/300;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-scene__img {
    width: 80vw;
    max-width: 100%;
  }
}

.p-top-scene__lead {
  position: relative;
  margin-top: 16px;
  margin-right: -20px;
  margin-left: -20px;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .p-top-scene__lead {
    font-size: 14px;
  }
}
.p-top-scene__lead::after {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 6px;
  background-color: #56CDC4;
}
@media screen and (max-width: 767px) {
  .p-top-scene__lead::after {
    height: 4px;
  }
}

.p-top-scene__title {
  margin-top: 33px;
  margin-right: -20px;
  margin-left: -20px;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .p-top-scene__title {
    font-size: 21px;
  }
}

.p-top-scenes__list {
  margin-top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.625rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-top-scenes__list {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-scenes__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
  }
}

.p-top-product__top {
  position: relative;
  background-color: #3B2A34;
  padding-top: 38px;
  padding-bottom: 80px;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-top-product__top {
    padding-bottom: 48px;
  }
}

.p-top-product__lead {
  position: relative;
  margin-top: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .p-top-product__lead {
    font-size: 12px;
  }
}

.p-top-product__divider {
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  width: 160px;
  height: 6px;
  border: none;
  background-color: #56CDC4;
}
@media screen and (max-width: 767px) {
  .p-top-product__divider {
    margin-top: 24px;
    height: 4px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-product__icon-area {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}

.p-top-product__icon {
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 128px;
  height: 128px;
}
@media screen and (max-width: 767px) {
  .p-top-product__icon {
    position: static;
    top: unset;
    -webkit-transform: none;
            transform: none;
    width: 80px;
    height: 80px;
  }
}
.p-top-product__icon.is-cold {
  right: calc(100% + 24px);
}
@media screen and (max-width: 767px) {
  .p-top-product__icon.is-cold {
    right: unset;
  }
}
.p-top-product__icon.is-hot {
  left: calc(100% + 24px);
}
@media screen and (max-width: 767px) {
  .p-top-product__icon.is-hot {
    left: unset;
  }
}

.p-top-product__text {
  margin-top: 38px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .p-top-product__text {
    margin-top: 24px;
    font-size: 12px;
  }
}

.p-top-product__grid-text-area {
  background: url("../img/texture-fabric.jpg") no-repeat center center/cover;
  padding-left: 4rem;
  color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .p-top-product__grid-text-area {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 24px;
  }
}

.p-top-product__grid-title {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-product__grid-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-product__grid-title {
    font-size: 16px;
  }
}

.p-top-product__grid-text {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.5555555556;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-top-product__grid-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-product__grid-text {
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-product__grid-text {
    font-size: 11px;
  }
}
.p-top-product__grid-text:nth-of-type(1) {
  margin-top: 30px;
}
.p-top-product__grid-text:nth-of-type(2) {
  margin-top: 16px;
  margin-left: 22px;
}
@media screen and (max-width: 767px) {
  .p-top-product__grid-text:nth-of-type(2) {
    margin-left: 0;
  }
}

.p-top-product__bottom {
  height: 80px;
  background-color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .p-top-product__bottom {
    height: 40px;
  }
}

.p-top-feature__top {
  background-color: #3B2A34;
  padding-top: 130px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-feature__top {
    padding-top: 80px;
    padding-bottom: 24px;
  }
}

.p-top-feature__title {
  margin-top: 70px;
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-top-feature__title {
    margin-top: 46px;
    font-size: 19px;
  }
}

.p-top-feature__img {
  margin-right: auto;
  margin-left: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-top-feature__img.feature1 {
  width: 584px;
  aspect-ratio: 584/467;
}
@media screen and (max-width: 767px) {
  .p-top-feature__img.feature1 {
    width: 389px;
  }
}
.p-top-feature__img.feature2 {
  width: 474px;
  aspect-ratio: 474/470;
}
@media screen and (max-width: 767px) {
  .p-top-feature__img.feature2 {
    width: 316px;
  }
}
.p-top-feature__img.feature3 {
  width: 579px;
  aspect-ratio: 579/471;
}
@media screen and (max-width: 767px) {
  .p-top-feature__img.feature3 {
    width: 386px;
  }
}

.p-top-feature__bottom {
  background-color: #3B2A34;
  padding-top: 38px;
  padding-bottom: 66px;
  padding-left: 2.8125rem;
  padding-right: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__bottom {
    padding-top: 27px;
    padding-bottom: 44px;
  }
}

.p-top-feature__text {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.5555555556;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-top-feature__text {
    font-size: 12px;
  }
}

.p-top-features__top {
  background-color: #3B2A34;
  padding-top: 36px;
  padding-bottom: 40px;
  padding-left: 0.375rem;
}

.p-top-features__grid-text-area {
  background: url("../img/texture-fabric.jpg") no-repeat center center/cover;
  padding-left: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__grid-text-area {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 24px;
  }
}

.p-top-features__grid-title {
  padding-top: 0.625rem;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .p-top-features__grid-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-features__grid-title {
    font-size: 16px;
  }
}

.p-top-features__grid-text {
  margin-top: 1.875rem;
  padding-right: 4.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.5555555556;
  color: #3B2A34;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-top-features__grid-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-features__grid-text {
    padding-right: 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-features__grid-text {
    font-size: 11px;
  }
}

.p-top-design-point__title {
  margin-top: 62px;
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  color: #494949;
}
@media screen and (max-width: 767px) {
  .p-top-design-point__title {
    margin-top: 40px;
    font-size: 18px;
  }
}

.p-top-design-point__text {
  margin-top: 32px;
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.5555555556;
  color: #494949;
}
@media screen and (max-width: 767px) {
  .p-top-design-point__text {
    margin-top: 20px;
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-design-point__text {
    font-size: 11px;
  }
}

.p-top-design__top {
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-design__lead {
  margin-top: 74px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-top-design__lead {
    margin-top: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.p-top-design__lead-title {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  color: #494949;
}
@media screen and (max-width: 767px) {
  .p-top-design__lead-title {
    text-align: center;
    font-size: 18px;
  }
}

.p-top-design__lead-text {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.5555555556;
  color: #494949;
}
@media screen and (max-width: 767px) {
  .p-top-design__lead-text {
    text-align: center;
    font-size: 12px;
  }
}

.p-top-design__img-lg {
  margin-top: 64px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 1920/800;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-design__img-lg {
    margin-top: 42px;
  }
}

.p-top-design__point {
  margin-top: 128px;
}
@media screen and (max-width: 767px) {
  .p-top-design__point {
    margin-top: 80px;
  }
}

.p-top-design__img {
  margin-top: 64px;
  margin-right: auto;
  margin-left: auto;
  width: 58.8793103448vw;
  max-width: 683px;
  aspect-ratio: 683/494;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-design__img {
    margin-top: 42px;
  }
}

.p-top-price-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3B2A34;
}

.p-top-price-detail__circle {
  width: 16.5517241379vw;
  max-width: 192px;
  height: 16.5517241379vw;
  max-height: 192px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-price-detail__circle {
    width: 128px;
    height: 128px;
  }
}

.p-top-price-detail__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.p-top-price-detail__icon {
  display: block;
  width: 64.5833333333%;
}

.p-top-price-detail__text {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .p-top-price-detail__text {
    font-size: 10px;
  }
}

.p-top-price-detail__title {
  margin-top: 8px;
  margin-right: -20px;
  margin-left: -20px;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-price-detail__title {
    font-size: 18px;
  }
}

.p-top-price-detail__note {
  margin-top: 10px;
  margin-right: -40px;
  margin-left: -40px;
  font-weight: 400;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-price-detail__note {
    font-size: 10px;
  }
}

.p-top-price__grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top-price__grid {
    margin-top: 42px;
  }
}

.p-top-price__grid-cell {
  aspect-ratio: 540/320;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.p-top-price__top-left {
  background-color: #FFF600;
  color: #494949;
}

.p-top-price__top-left-title {
  font-weight: 700;
  font-size: 2.875rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-price__top-left-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-price__top-left-title {
    font-size: 17px;
  }
}

.p-top-price__top-right {
  background-color: #FFFFFF;
  color: #DD4211;
}

.p-top-price__top-right-lead {
  font-weight: 700;
  font-size: 2.875rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-price__top-right-lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-price__top-right-lead {
    font-size: 14px;
  }
}

.p-top-price__top-right-title {
  margin-top: 36px;
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .p-top-price__top-right-title {
    margin-top: 8px;
    font-size: 24px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-price__top-right-title {
    font-size: 20px;
  }
}

.p-top-price__bottom-left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #FFFFFF;
  color: #494949;
}

.p-top-price__bottom-left-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-price__bottom-left-title {
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.2105263158;
}
@media screen and (max-width: 767px) {
  .p-top-price__bottom-left-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-price__bottom-left-title {
    font-size: 12px;
  }
}

.p-top-price__bottom-left-caret {
  margin-top: 50px;
  width: 33.1034482759vw;
  max-width: 384px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-top-price__bottom-left-caret {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price__bottom-left-caret {
    margin-top: 8px;
    width: 50%;
    max-width: 50%;
  }
}

.p-top-price__bottom-left-include {
  margin-top: 22px;
  height: 3.25rem;
  line-height: 3.25rem;
  border-radius: 999px;
  background-color: #494949;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-top-price__bottom-left-include {
    margin-top: 8px;
    height: 24px;
    line-height: 24px;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-price__bottom-left-include {
    padding-right: 3px;
    padding-left: 3px;
    font-size: 10px;
    letter-spacing: normal;
  }
}

.p-top-price__bottom-right {
  background-color: #3B2A34;
  color: #FFFFFF;
}

.p-top-price__bottom-right-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-price__bottom-right-title {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 374px) {
  .p-top-price__bottom-right-title {
    font-size: 18px;
  }
}

.p-top-price__bottom-right-number {
  display: block;
  margin-left: 0.75rem;
  margin-bottom: -0.5rem;
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-price__bottom-right-number {
    margin-left: 2px;
    margin-bottom: -3px;
    font-size: 36px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-price__bottom-right-number {
    margin-bottom: -2px;
    font-size: 30px;
  }
}

.p-top-price__bottom-right-yen {
  display: block;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-price__bottom-right-yen {
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .p-top-price__bottom-right-yen {
    font-size: 14px;
  }
}

.p-top-price__details {
  margin-top: -120px;
  background: url("../img/texture-fabric-light.jpg") no-repeat center center/cover;
  padding-top: 168px;
  padding-bottom: 56px;
  padding-left: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-top-price__details {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price__details {
    margin-top: -80px;
    padding-top: 112px;
    padding-bottom: 32px;
    padding-right: 10px;
    padding-left: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
}

.p-top-price__details-plus {
  margin-top: 5rem;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-price__details-plus {
    display: none;
    margin-top: 48px;
    width: 26px;
    height: 26px;
  }
}

.p-top-price__note {
  font-weight: 400;
  font-size: 1rem;
  color: #3B2A34;
}
@media screen and (max-width: 767px) {
  .p-top-price__note {
    font-size: 10px;
  }
}

.p-top-movie2__video {
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 82.7586206897vw;
  max-width: 960px;
  aspect-ratio: 960/540;
}
@media screen and (max-width: 767px) {
  .p-top-movie2__video {
    margin-top: 40px;
  }
}

.p-top-select-color__type {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-select-color__type {
    margin-top: 40px;
  }
}

.p-top-select-color__img, .p-top-select-color__img--tall, .p-top-select-color__img--mini {
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  width: 48.275862069vw;
  max-width: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-select-color__img, .p-top-select-color__img--tall, .p-top-select-color__img--mini {
    margin-top: 32px;
    width: 50%;
  }
}

.p-top-select-color__img--mini {
  aspect-ratio: 560/440;
}

.p-top-select-color__img--tall {
  aspect-ratio: 560/900;
}

.p-top-select-color__btn {
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 24rem;
  height: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-top-select-color__btn {
    margin-top: 32px;
    width: 256px;
    height: 56px;
    line-height: 56px;
    font-size: 21px;
  }
}

.p-top-spec {
  margin-right: auto;
  margin-left: auto;
  color: #092A78;
}

.p-top-spec__type {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-spec__type {
    margin-top: 54px;
  }
}

.p-top-spec__main {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-spec__main {
    margin-top: 42px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 32px;
  }
}

.p-top-spec__spec-area {
  padding-top: 0.625rem;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
}
@media screen and (max-width: 767px) {
  .p-top-spec__spec-area {
    font-size: 11px;
  }
}

.p-top-spec__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-spec__row:not(:first-child) {
  margin-top: 0.1875rem;
}

.p-top-spec__term {
  width: 10.1875rem;
  min-width: 10.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-spec__term {
    width: 100px;
    min-width: 100px;
  }
}

.p-top-spec__img, .p-top-spec__img-tall, .p-top-spec__img-mini {
  width: 28.275862069vw;
  max-width: 328px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-spec__img, .p-top-spec__img-tall, .p-top-spec__img-mini {
    margin-right: auto;
    margin-left: auto;
    width: 50%;
  }
}

.p-top-spec__img-mini {
  margin-top: 0.625rem;
  aspect-ratio: 328/241;
}

.p-top-spec__img-tall {
  aspect-ratio: 328/444;
}
@media screen and (min-width: 768px) {
  .p-top-spec__img-tall {
    margin-left: 2.5rem;
  }
}

.p-top-spec__attachment {
  margin-top: 40px;
  margin-left: 10.1875rem;
  width: 63.275862069vw;
  max-width: 734px;
  aspect-ratio: 734/122;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-spec__attachment {
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}

.p-top-spec__divider {
  margin-top: 40px;
  display: block;
  width: 77.5862068966vw;
  max-width: 900px;
  height: 2px;
  background-color: #DEE0DF;
}
@media screen and (max-width: 767px) {
  .p-top-spec__divider {
    margin-top: 24px;
    width: 100%;
  }
}

.p-top-spec__note {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
}
@media screen and (max-width: 767px) {
  .p-top-spec__note {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    font-size: 11px;
  }
}

.p-top-spec__note-term {
  width: 10.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-spec__note-term {
    width: 100px;
  }
}

.p-top-spec__note-list {
  padding-left: 1.125rem;
  list-style: "※ ";
}

.p-top__scenes {
  margin-top: 90px;
}

.p-top__product {
  margin-top: 80px;
}

.p-top__cta1 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top__cta1 {
    margin-top: 60px;
  }
}

.p-top__features {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top__features {
    margin-top: 60px;
  }
}

.p-top__design {
  margin-top: 92px;
}
@media screen and (max-width: 767px) {
  .p-top__design {
    margin-top: 60px;
  }
}

.p-top__price {
  margin-top: 128px;
}
@media screen and (max-width: 767px) {
  .p-top__price {
    margin-top: 80px;
  }
}

.p-top__movie2 {
  margin-top: 94px;
}
@media screen and (max-width: 767px) {
  .p-top__movie2 {
    margin-top: 60px;
  }
}

.p-top__select-color {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top__select-color {
    margin-top: 60px;
  }
}

.p-top__spec {
  margin-top: 129px;
}
@media screen and (max-width: 767px) {
  .p-top__spec {
    margin-top: 80px;
  }
}

.p-top__cta2 {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .p-top__cta2 {
    margin-top: 60px;
  }
}

.p-top__faq {
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .p-top__faq {
    margin-top: 80px;
  }
}

.p-top__cta3 {
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .p-top__cta3 {
    margin-top: 60px;
  }
}

.p-top__footer {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-top__footer {
    margin-top: 80px;
  }
}

.p-apply-main-visual {
  text-align: center;
  color: #494949;
}

.p-apply-main-visual__lead {
  margin-top: 25px;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .p-apply-main-visual__lead {
    margin-top: 16px;
    font-size: 12px;
  }
}

.p-apply-main-visual__slider {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-apply-main-visual__slider {
    margin-top: 26px;
  }
}

.p-apply-color {
  cursor: pointer;
}

.p-apply-color__img-area {
  border: 1px solid #707070;
}

.p-apply-color.is-selected .p-apply-color__img-area {
  border: 2px solid #DD4211;
}

.p-apply-color__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-apply-color__title {
  border: 1px solid #707070;
  background-color: #DEE0DF;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #494949;
}

.p-apply-color.is-selected .p-apply-color__title {
  border: 2px solid #DD4211;
  background-color: #DD4211;
  color: #FFFFFF;
}

.p-apply-select-color__type {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-apply-select-color__type {
    margin-top: 40px;
  }
}

.p-apply-select-color__row {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-apply-select-color__row {
    margin-top: 40px;
  }
}

.p-apply-installment__title {
  padding-top: 33px;
  padding-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .p-apply-installment__title {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-installment__title {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.p-apply-installment__amount {
  background-color: #DEE0DF;
  padding: 15px 12px 43px 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 700;
  color: #494949;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-installment__amount {
    padding: 15px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-installment__amount {
    padding: 10px 0 20px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-installment__amount {
    padding: 7px 0 10px;
  }
}

.c-plan.is-selected .p-apply-installment__amount {
  background-color: #DD4211;
  color: #FFFFFF;
}

.p-apply-installment__tax {
  padding-bottom: 4px;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-apply-installment__tax {
    padding-bottom: 2px;
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .p-apply-installment__tax {
    padding-bottom: 1px;
    font-size: 16px;
  }
}

.p-apply-installment__value {
  font-size: 8.375rem;
}
@media screen and (max-width: 767px) {
  .p-apply-installment__value {
    font-size: 67px;
  }
}
@media screen and (max-width: 600px) {
  .p-apply-installment__value {
    font-size: 40px;
  }
}

.p-apply-installment__month {
  margin-left: 22px;
  padding-bottom: 4px;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-installment__month {
    margin-left: 11px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-installment__month {
    margin-left: 5px;
    padding-bottom: 2px;
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .p-apply-installment__month {
    margin-left: 3px;
    padding-bottom: 1px;
    font-size: 18px;
  }
}

.p-apply-installment__times {
  margin-left: 23px;
  padding-bottom: 4px;
  font-size: 2.375rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-installment__times {
    margin-left: 11px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-installment__times {
    margin-left: 5px;
    padding-bottom: 2px;
    font-size: 19px;
  }
}
@media screen and (max-width: 600px) {
  .p-apply-installment__times {
    margin-left: 3px;
    padding-bottom: 1px;
    font-size: 12px;
  }
}

.p-apply-installment__times-unit {
  padding-bottom: 5px;
  font-size: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-apply-installment__times-unit {
    padding-bottom: 2px;
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .p-apply-installment__times-unit {
    padding-bottom: 1px;
    font-size: 10px;
  }
}

.p-apply-one-time {
  width: 559px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-one-time {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-one-time {
    width: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-one-time__title {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-one-time__title {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .p-apply-one-time__title {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.c-plan.is-selected .p-apply-one-time__title {
  background-color: #DD4211;
  color: #FFFFFF;
}

.p-apply-select-plan__title {
  font-size: 2.6875rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-apply-select-plan__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-select-plan__title {
    font-size: 22px;
  }
}

.p-apply-select-plan__installment {
  margin-top: 82px;
}
@media screen and (max-width: 767px) {
  .p-apply-select-plan__installment {
    margin-top: 55px;
  }
}

.p-apply-select-plan__row {
  margin-top: 49px;
  padding-right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 98px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-select-plan__row {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-select-plan__row {
    margin-top: 33px;
    padding-right: 0;
    gap: 48px;
  }
}
@media screen and (max-width: 600px) {
  .p-apply-select-plan__row {
    gap: 24px;
  }
}

.p-apply-select-plan__about {
  position: relative;
  padding-right: 2rem;
  font-weight: 700;
  font-size: 1.875rem;
  color: #5F5757;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-apply-select-plan__about {
    padding-right: 16px;
    font-size: 15px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-select-plan__about {
    font-size: 12px;
  }
}
.p-apply-select-plan__about::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 2px;
  width: 16px;
  height: 22px;
  background: url("../img/chevron-right.png") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-apply-select-plan__about::after {
    margin-top: 1px;
    width: 12px;
    height: 15px;
  }
}

.p-apply-about-plan__box {
  margin-top: 80px;
  border: 3px solid #DD4211;
}
@media screen and (max-width: 767px) {
  .p-apply-about-plan__box {
    margin-top: 64px;
  }
}

.p-apply-about-plan__lead {
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-about-plan__lead {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-about-plan__lead {
    padding: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-about-plan__lead {
    font-size: 12px;
  }
}

.p-apply-about-plan__value {
  background-color: #DD4211;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 5rem;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-about-plan__value {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-about-plan__value {
    padding: 10px;
    font-size: 20px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-about-plan__value {
    font-size: 16px;
  }
}

.p-apply-confirm {
  color: #494949;
}

.p-apply-confirm__title {
  font-weight: 700;
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__title {
    font-size: 22px;
  }
}

.p-apply-confirm__list {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__list {
    margin-top: 36px;
  }
}

.p-apply-confirm__item {
  border: 1px solid #707070;
  padding: 2.5rem 1rem 2.4375rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__item {
    padding: 15px 8px 15px 16px;
  }
}
.p-apply-confirm__item:not(:first-child) {
  margin-top: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-confirm__item:not(:first-child) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__item:not(:first-child) {
    margin-top: 16px;
  }
}
.p-apply-confirm__item.is-0yen {
  padding: 1.8125rem 1rem 1.875rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__item.is-0yen {
    padding: 10px 8px 15px 16px;
  }
}

.p-apply-confirm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-apply-confirm__item.is-0yen .p-apply-confirm__row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-apply-confirm__term {
  width: 26.6875rem;
  font-weight: 700;
  font-size: 2.375rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-confirm__term {
    width: 22.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__term {
    width: 120px;
    min-width: 120px;
    font-size: 16px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 767px) {
  .p-apply-confirm__item.is-0yen .p-apply-confirm__term {
    width: 160px;
  }
}

.p-apply-confirm__desc {
  font-weight: 400;
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__desc {
    font-size: 16px;
    line-height: 1.4;
  }
}
.p-apply-confirm__desc em {
  font-weight: 700;
  font-style: normal;
  color: #DD4211;
}
.p-apply-confirm__desc em span.number {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__desc em span.number {
    margin-right: 1px;
    margin-left: 1px;
    font-size: 24px;
  }
}

.p-apply-confirm__note {
  margin-top: 1.25rem;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-apply-confirm__note {
    margin-top: 8px;
    font-size: 14px;
  }
}

.p-apply-submit {
  color: #494949;
}

.p-apply-submit__btn {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 12rem;
  line-height: 12rem;
  border-radius: 999px;
  background-color: #56CDC4;
  text-align: center;
  font-weight: 700;
  font-size: 3.75rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-apply-submit__btn {
    height: 72px;
    line-height: 72px;
    font-size: 21px;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-submit__btn {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }
}

.p-apply-submit__detail {
  margin-top: 31px;
  text-align: center;
  font-weight: 400;
  font-size: 1.75rem;
  color: #092A78;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-apply-submit__detail {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-submit__detail {
    font-size: 14px;
  }
}

.p-apply-submit__card-only {
  margin-top: 35px;
  text-align: center;
  font-weight: 400;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-apply-submit__card-only {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-submit__card-only {
    font-size: 14px;
  }
}

.p-apply-submit__card-available {
  margin-top: 79px;
  text-align: center;
  font-weight: 700;
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-apply-submit__card-available {
    margin-top: 52px;
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-submit__card-available {
    font-size: 15px;
  }
}

.p-apply-submit__card-row {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 64px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-submit__card-row {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-submit__card-row {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.p-apply-submit__card-img {
  width: 51.724137931vw;
  max-width: 600px;
  aspect-ratio: 600/67;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-apply-submit__card-img {
    width: 400px;
    max-width: 100%;
  }
}

.p-apply-submit__no-debit {
  padding-bottom: 7px;
  font-weight: 400;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-apply-submit__no-debit {
    font-size: 15px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-submit__no-debit {
    font-size: 13px;
  }
}

.p-apply-spec__type {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .p-apply-spec__type {
    margin-top: 50px;
  }
}

.p-apply-spec__spec-container {
  margin-top: 75px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-spec__spec-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-spec__spec-container {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-apply-spec__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.4375;
  color: #494949;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-spec__row {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-spec__row {
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-spec__row {
    font-size: 12px;
  }
}
.p-apply-spec__row:not(:first-child) {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-apply-spec__row:not(:first-child) {
    margin-top: 5px;
  }
}

.p-apply-spec__term {
  width: 23.25rem;
  min-width: 23.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-spec__term {
    width: 17.4375rem;
    min-width: 17.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-spec__term {
    width: 128px;
    min-width: 128px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-spec__term {
    width: 108px;
    min-width: 108px;
  }
}

.p-apply-spec__img, .p-apply-spec__img-tall, .p-apply-spec__img-mini {
  margin-right: auto;
  margin-left: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-apply-spec__img-mini {
  margin-top: 80px;
  width: 100%;
  aspect-ratio: 328/241;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-spec__img-mini {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-spec__img-mini {
    margin-top: 52px;
    width: 80%;
  }
}

.p-apply-spec__img-tall {
  margin-top: 40px;
  width: 60%;
  aspect-ratio: 328/444;
}
@media screen and (min-width: 768px) {
  .p-apply-spec__img-tall {
    padding-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-spec__img-tall {
    margin-top: 26px;
  }
}

.p-apply-spec__attachment-title {
  margin-top: 88px;
  position: relative;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 2.25rem;
  color: #092A78;
}
@media screen and (max-width: 767px) {
  .p-apply-spec__attachment-title {
    margin-top: 58px;
    font-size: 20px;
  }
}
.p-apply-spec__attachment-title::after {
  content: "";
  position: absolute;
  top: calc(100% + 19px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #092A78;
}
@media screen and (max-width: 767px) {
  .p-apply-spec__attachment-title::after {
    top: calc(100% + 12px);
  }
}

.p-apply-spec__attachment-img {
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 1080/224;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-apply-spec__attachment-img {
    margin-top: 40px;
  }
}

.p-apply-spec__divider {
  margin-top: 75px;
  width: 100%;
  height: 2px;
  border: none;
  background-image: linear-gradient(to right, #092A78 0, #092A78 24px, transparent 24px, transparent 36px);
  background-size: 36px 2px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .p-apply-spec__divider {
    margin-top: 50px;
  }
}

.p-apply-spec__note-container {
  margin-top: 82px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .p-apply-spec__note-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-apply-spec__note-container {
    margin-top: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-apply-spec__note-area {
  font-weight: 400;
  font-size: 1.125rem;
  color: #092A78;
}
@media screen and (max-width: 767px) {
  .p-apply-spec__note-area {
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .p-apply-spec__note-area {
    font-size: 11px;
  }
}

.p-apply-spec__note-list {
  margin-top: 28px;
  list-style: "※ " inside;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767px) {
  .p-apply-spec__note-list {
    margin-top: 18px;
  }
}

.p-apply-more__btn {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 24rem;
  height: 6.875rem;
  line-height: 6.875rem;
  border: 1px solid #707070;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-apply-more__btn {
    width: 256px;
    height: 72px;
    line-height: 72px;
    font-size: 24px;
  }
}

.p-apply__main-visual {
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .p-apply__main-visual {
    margin-top: 40px;
  }
}

.p-apply__select-color {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-apply__select-color {
    margin-top: 80px;
  }
}

.p-apply__select-plan {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-apply__select-plan {
    margin-top: 80px;
  }
}

.p-apply__divider {
  margin-top: 78px;
  width: 100%;
  height: 4px;
  background-color: #707070;
}
@media screen and (max-width: 767px) {
  .p-apply__divider {
    margin-top: 52px;
    height: 2px;
  }
}

.p-apply__confirm {
  margin-top: 126px;
}
@media screen and (max-width: 767px) {
  .p-apply__confirm {
    margin-top: 80px;
  }
}

.p-apply__submit {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-apply__submit {
    margin-top: 50px;
  }
}

.p-apply__spec {
  margin-top: 169px;
}
@media screen and (max-width: 767px) {
  .p-apply__spec {
    margin-top: 100px;
  }
}

.p-apply__more {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-apply__more {
    margin-top: 80px;
  }
}

.p-apply__faq {
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .p-apply__faq {
    margin-top: 80px;
  }
}

.p-apply__footer {
  margin-top: 118px;
}
@media screen and (max-width: 767px) {
  .p-apply__footer {
    margin-top: 80px;
  }
}

.p-company-info__list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-company-info__list {
  display: inline-block;
  margin-top: 88px;
}
@media screen and (max-width: 767px) {
  .p-company-info__list {
    margin-top: 58px;
  }
}

.p-company-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-company-info__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company-info__item:not(:first-child) {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .p-company-info__item:not(:first-child) {
    margin-top: 30px;
  }
}

.p-company-info__term {
  width: 15rem;
  min-width: 15rem;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-company-info__term {
    width: 100%;
    min-width: 100%;
    font-size: 16px;
  }
}

.p-company-info__desc {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-company-info__desc {
    font-size: 16px;
  }
}

.p-company__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-company__info {
  margin-top: 90px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-company__info {
    margin-top: 60px;
  }
}

.p-company__footer {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-company__footer {
    margin-top: 80px;
  }
}