html {
  font-size: 10px;
}

body {
  background: #fff;
  color: #2c2647;
  font-family: "Noto Sans JP", sans-serif;
}

body.noscroll {
  overflow: hidden;
}

a {
  display: block;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

dt {
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

th,
td {
  padding: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*
 * footer
 * -------------------------------------------------------------
 */

/*
 * header
 * -------------------------------------------------------------
 */

.header {
  background: #fff;
  bottom: 0;
  box-shadow: 5px 5px 3px rgba(181, 181, 181, 0.75);
  height: 8rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding-left: 2.7rem;
}

.header__logo {
  max-width: 8.6rem;
}

.header__btns {
  display: flex;
  max-width: 32rem;
}

.header__btn {
  max-width: 16rem;
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 118rem;
  padding: 0 4rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  overflow: hidden;
  padding-top: 8rem;
}

/*
 * c-head
 * -------------------------------------------------------------
 */

.c-head {
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.c-head__eng {
  color: #B2B2B2;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.c-head__ja {
  color: #235C8D;
  font-size: 4.7rem;
  font-weight: 500;
  line-height: 1.7446808511;
}

.c-head__eng.--wht,
.c-head__ja.--wht {
  color: #fff;
}

/*
 * case
 * -------------------------------------------------------------
 */

.case {
  box-shadow: 0px 25px 25px rgba(142, 142, 142, 0.3);
  padding: 25rem 0 41.5rem;
  position: relative;
}

.case::before {
  background: url(./../images/bg_top.webp) no-repeat center/cover;
  box-shadow: 0px -25px 25px rgba(142, 142, 142, 0.3);
  content: "";
  display: block;
  height: 66.7rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}

.case::after {
  background: url(./../images/bg_btm.webp) no-repeat center/cover;
  bottom: 0;
  content: "";
  display: block;
  height: 83rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.case__inner {
  position: relative;
  z-index: 1;
}

.case__head {
  color: #235C8D;
  font-family: "Shippori Mincho", serif;
  font-size: 4.7rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.case__head span {
  font-size: 3.6rem;
}

.case__items {
  grid-gap: 6.4rem;
  display: grid;
  gap: 6.4rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 13rem;
}

.case__item {
  align-items: center;
  background: #fff;
  box-shadow: 7px 7px 4px rgba(135, 135, 135, 0.5);
  display: flex;
  padding: 1.5rem 1.2rem;
}

.case__cont {
  margin-top: 11.2rem;
}

/*
 * comparison
 * -------------------------------------------------------------
 */

.comparison {
  background: url(./../images/comparison_bg.webp) no-repeat center/cover;
  padding: 11.2rem 0 18rem;
}

.comparison__head {
  align-items: center;
  color: #235C8D;
  display: flex;
  font-family: "Shippori Mincho", serif;
  font-size: 4.7rem;
  font-weight: 500;
  justify-content: space-between;
  letter-spacing: -0.1em;
  line-height: 1.7446808511;
  margin: 0 auto;
  max-width: 74.5rem;
  text-align: center;
}

.comparison__head::before,
.comparison__head::after {
  border: 2px solid #235C8D;
  content: "";
  display: block;
  height: 22.6rem;
  width: 1.6rem;
}

.comparison__head::before {
  border-right: none;
}

.comparison__head::after {
  border-left: none;
}

.comparison__table {
  margin: 7.8rem auto 0;
  max-width: 88rem;
}

/*
 * cta
 * -------------------------------------------------------------
 */

.cta__inner {
  position: relative;
}

.cta__head {
  background: #ae975d;
  color: #fff;
  padding: 3.7rem 0 2.8rem;
  text-align: center;
}

.cta__ttl {
  margin-left: auto;
  margin-right: auto;
  max-width: 39.5rem;
}

.cta__text {
  font-size: 2.1rem;
  letter-spacing: -0.025em;
  margin-top: 0.8rem;
}

.cta__img {
  bottom: -3.5rem;
  max-width: 25.8rem;
  position: absolute;
  right: 0;
  width: 100%;
}

.cta__body {
  background: url(./../images/cta_bg.webp) no-repeat bottom/cover;
  padding: 7.8rem 0 10.2rem;
}

.cta__btns {
  display: flex;
  gap: 9.6rem;
  justify-content: center;
}

.cta__btn {
  max-width: 50rem;
}

/*
 * faq
 * -------------------------------------------------------------
 */

.faq {
  background: #f3faff;
  padding: 10.3rem 0 25.6rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 6.5rem;
  margin-top: 7.2rem;
}

.faq__item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 9px 9px 9px rgba(131, 131, 131, 0.3);
  padding: 4.5rem 3rem 4.3rem 2.5rem;
}

.faq__group {
  display: flex;
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  gap: 1.4rem;
  position: relative;
}

.faq__group:first-of-type::after {
  background: #989898;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  margin-left: auto;
  position: absolute;
  right: 0;
  width: calc(100% - 0.8rem);
}

.faq__group:nth-of-type(2) {
  padding-top: 2.8rem;
}

.faq__eng {
  display: inline-block;
  min-width: 4.2rem;
  width: 4.2rem;
}

.faq__ttl {
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.56;
  padding-bottom: 2.8rem;
}

.faq__text {
  font-weight: 500;
  line-height: 1.56;
  max-width: 95.2rem;
  text-align: justify;
}

/*
 * flow
 * -------------------------------------------------------------
 */

.flow {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(229, 229, 229, 0.3) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(229, 229, 229, 0.3) calc(100% - 1px));
  background-position: center center;
  background-repeat: repeat;
  background-size: 4.4rem 4.4rem;
  padding: 10rem 0 13.5rem;
}

.flow__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 9rem;
}

.flow__item {
  align-items: center;
  display: flex;
  gap: 4.2rem;
}

.flow__img {
  max-width: 52.8rem;
}

.flow__details {
  flex: 1;
  font-family: "Shippori Mincho", serif;
}

.flow__ttlGroup {
  align-items: center;
  display: flex;
  gap: 0.9rem;
}

.flow__num {
  background: #ae975d;
  border-radius: 1.4rem;
  color: #fff;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 0 0.2rem 0.2rem;
  text-align: center;
  width: 6.8rem;
}

.flow__ttl {
  color: #AE975D;
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.flow__text {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.4166666667;
  margin-top: 1.2rem;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv {
  background: url(./../images/fv_bg.webp) no-repeat center/cover;
  padding-bottom: 4rem;
}

.fv__card {
  border-radius: 1.2rem;
  box-shadow: 4px 4px 4px rgba(155, 155, 155, 0.75);
  margin-top: 4rem;
  overflow: hidden;
}

.fv__btm {
  margin: 8.5rem auto 0;
  max-width: 67.5rem;
}

/*
 * graph
 * -------------------------------------------------------------
 */

.graph {
  padding-top: 11.7rem;
}

.graph__inner {
  max-width: 162rem;
  position: relative;
}

.graph__note {
  bottom: min(21.4rem, 13.21vw);
  color: #B2B2B2;
  font-size: min(2.5rem, 1.5432vw);
  left: 50%;
  letter-spacing: -0.025em;
  line-height: 1.36;
  margin-left: auto;
  margin-right: auto;
  padding: 0 min(4rem, 2.47vw);
  position: absolute;
  right: 0;
  text-align: right;
  transform: translateX(-50%);
  width: min(118rem, 72.84vw);
}

/*
 * point
 * -------------------------------------------------------------
 */

.point {
  padding-bottom: 16.4rem;
}

.point__head {
  margin: 0 calc(50% - 50vw);
}

.point__list {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  margin-top: -10rem;
}

.point__item {
  align-items: center;
  background: #fff;
  border-radius: 0.6rem;
  box-shadow: 7px 7px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 4.5rem;
  justify-content: space-between;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
}

.point__item.--item1 .point__img img {
  max-width: 34.6rem;
}

.point__img {
  max-width: 44.3rem;
}

.point__details {
  flex: 1;
  max-width: 55.8rem;
}

.point__ttlWrap {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.point__num {
  display: inline-block;
  margin-top: 0.8rem;
  max-width: 8.2rem;
}

.point__ttl {
  color: #235C8D;
  font-family: "Shippori Mincho", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.4074074074;
}

.point__ttl span {
  font-size: 3.7rem;
}

.point__text {
  font-size: 1.9rem;
  letter-spacing: 0.11em;
  line-height: 1.5789473684;
  margin-top: 1.8rem;
  text-align: justify;
}

/*
 * price
 * -------------------------------------------------------------
 */

.price {
  padding: 11.3rem 0 20rem;
  position: relative;
}

.price::before {
  background: url(./../images/comparison_bg.webp) no-repeat center/cover;
  content: "";
  display: block;
  height: 62.5rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
}

.price__inner {
  max-width: 143.3rem;
}

.price__body {
  background: #fff;
  box-shadow: 0 20px 80px 20px rgba(60, 110, 210, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.9);
  padding: 12.6rem;
}

.price__itemWrap {
  margin-top: 6.6rem;
  position: relative;
}

.price__itemTtl {
  left: 2.2rem;
  max-width: 43.3rem;
  position: absolute;
  top: -3.2rem;
  z-index: 2;
}

.price__item {
  border-radius: 0.8rem;
  box-shadow: 12px 12px 12px rgba(144, 144, 144, 0.5);
}

.price__item img {
  border-radius: 0.8rem;
}

.price__guide {
  margin: 9rem auto 0;
  max-width: 63.2rem;
}

.price__flex {
  align-items: flex-start;
  display: flex;
  gap: 5rem;
  justify-content: center;
  margin-top: 8.4rem;
}

.price__flexItem {
  border-radius: 0.7rem;
  box-shadow: 8px 8px 8px rgba(144, 144, 144, 0.5);
  max-width: 51.2rem;
}

.price__payment {
  background: #f1f1f1;
  border-radius: 1rem;
  box-shadow: 9px 9px 9px rgba(144, 144, 144, 0.5);
  margin-top: 9.2rem;
  padding: 4.4rem 3.9rem 5rem;
}

.price__paymentText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.6;
  margin-top: 1rem;
}

.price__paymentImg {
  border-radius: 0.9rem;
  margin-top: 4.2rem;
  overflow: hidden;
}

/*
 * problem
 * -------------------------------------------------------------
 */

.problem {
  background: url(./../images/problem_bg.webp) no-repeat top/cover;
  padding: 23rem 0 18rem;
}

.problem__head {
  margin-left: auto;
  margin-right: auto;
  max-width: 56.9rem;
}

.problem__body {
  margin-top: 3.7rem;
}

.problem__item {
  display: flex;
  gap: 5.6rem;
}

.problem__item.--item1 {
  padding-right: 3.3rem;
}

.problem__img {
  max-width: 34.2rem;
}

.problem__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3.9rem;
  padding-top: 8.5rem;
}

.problem__text {
  align-items: center;
  display: flex;
  font-family: "Shippori Mincho", serif;
  font-size: 3.1rem;
  font-weight: 500;
  gap: 1rem;
  letter-spacing: -0.1em;
}

.problem__text::before {
  background: url(./../images/problem_check.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 3rem;
  width: 3rem;
}

.problem__item.--item2 {
  flex-direction: row-reverse;
  gap: 3rem;
}

.problem__item.--item2 .problem__img {
  max-width: 40rem;
}

/*
 * store
 * -------------------------------------------------------------
 */

.store {
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(./../images/store_bg.webp) no-repeat center/cover;
  padding: 11rem 0 17rem;
}

.store__body {
  align-items: flex-start;
  display: flex;
  gap: 5.2rem;
  margin-top: 9.4rem;
}

.store__img {
  max-width: 48.8rem;
}

.store__info {
  border: 1px solid #E5E5E5;
  flex: 1;
}

.store__item {
  display: flex;
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3181818182;
}

.store__item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.store__item dt {
  border-right: 1px solid #e5e5e5;
  font-weight: 500;
  letter-spacing: 0.03em;
  min-width: 13.5rem;
  padding: 0.8rem 1rem 1rem 2.4rem;
  width: 13.5rem;
}

.store__item dd {
  flex: 1;
  padding: 0.8rem 1rem 1rem 1.2rem;
}

.store__item .lt- {
  letter-spacing: -0.05em;
}

.store__map {
  height: 34.6rem;
  margin: 10rem auto 0;
  max-width: 83.1rem;
  width: 100%;
}

/*
 * voice
 * -------------------------------------------------------------
 */

.voice {
  padding-bottom: 20rem;
}

.voice__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 27rem;
  justify-content: center;
  position: relative;
}

.voice__head::before {
  background: url(./../images/voice_ttlbg.webp) no-repeat center/100% 100%;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
}

.voice__headText {
  left: 20rem;
  max-width: 32.3rem;
  position: absolute;
  top: -5rem;
  width: 100%;
}

.voice__body {
  display: flex;
  gap: 6rem;
  margin-top: 11rem;
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 4.7rem;
}

.voice__item {
  border-radius: 1.6rem;
  box-shadow: 5px 5px 7px rgba(155, 155, 155, 0.75);
  overflow: hidden;
}

/*
 * u-fadeIn
 * -------------------------------------------------------------
 */

.u-fadeIn {
  opacity: 0;
  transform: translateY(4rem);
  transition: all 0.6s ease-out;
}

.u-fadeIn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
  display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: none;
}

/*
 * u-visually-hidden
 * -------------------------------------------------------------
 */

.u-visually-hidden {
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

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

  a[href^="tel:"] {
    pointer-events: none;
  }

}

@media screen and (max-width: 1280px) {

  html {
    font-size: 0.78125vw;
  }

}

@media screen and (max-width: 767px) {

  html {
    font-size: 10px;
  }

  .header {
    height: 7rem;
  }

  .header__inner {
    padding-left: 1.8rem;
  }

  .header__logo {
    max-width: 7.6rem;
  }

  .header__btns {
    max-width: 20rem;
  }

  .header__btn {
    max-width: 10rem;
  }

  .l-inner {
    max-width: 55rem;
    padding: 0 3.8rem;
  }

  .l-main {
    padding-top: 7rem;
  }

  .c-head__eng {
    font-size: 1.5rem;
  }

  .c-head__ja {
    font-size: 2.6rem;
    line-height: 1.7692307692;
  }

  .case {
    box-shadow: 0px 5px 5px rgba(142, 142, 142, 0.3);
    padding: 11.2rem 0 12rem;
  }

  .case::before {
    background: url(./../images/sp/bg_top.webp) no-repeat center/cover;
    box-shadow: 0px -5px 5px rgba(142, 142, 142, 0.3);
    height: 44.1vw;
  }

  .case::after {
    background: url(./../images/sp/bg_btm.webp) no-repeat top/cover;
    height: 43.59vw;
  }

  .case__head {
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .case__head span {
    font-size: 1.8rem;
  }

  .case__items {
    gap: 2rem 2.3rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.3rem;
  }

  .case__item {
    box-shadow: 3px 3px 2px rgba(135, 135, 135, 0.5);
    padding: 0.7rem;
  }

  .case__cont {
    margin-top: 5rem;
  }

  .comparison {
    padding: 5.3rem 0 4.5rem;
  }

  .comparison__inner {
    padding: 0 3.8rem;
  }

  .comparison__head {
    font-size: 2.4rem;
    line-height: 1.35;
    max-width: 100%;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .comparison__head {
    font-size: 2.3rem;
  }

  .comparison__head::before,
  .comparison__head::after {
    border-width: 1px;
    height: 9.7rem;
    width: 0.7rem;
  }

  .comparison__head span {
    display: block;
    padding-top: 1rem;
  }

  .comparison__head small {
    font-size: 2rem;
  }

  .comparison__table {
    margin-top: 2.6rem;
    max-width: 100%;
  }

  .cta__head {
    padding: 1.7rem 0;
  }

  .cta__ttl {
    left: -1rem;
    max-width: 20.6rem;
    position: relative;
  }

  .cta__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    text-align: center;
  }

  .cta__img {
    bottom: -2rem;
    max-width: 11.4rem;
    right: -1.3rem;
  }

  .cta__body {
    background: url(./../images/sp/cta_bg.webp) no-repeat bottom/cover;
    padding: 1.4rem 0 2.6rem;
  }

  .cta__btns {
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .faq {
    padding: 4.3rem 0 3.5rem;
  }

  .faq__list {
    gap: 3rem;
    margin-top: 3rem;
  }

  .faq__item {
    border-radius: 0.5rem;
    box-shadow: 5px 5px 5px rgba(131, 131, 131, 0.3);
    padding: 2.7rem 2.1rem 3rem 1.2rem;
  }

  .faq__group {
    font-size: 1.5rem;
    gap: 0.9rem;
  }

  .faq__group:first-of-type::after {
    width: calc(100% - 0.5rem);
  }

  .faq__group:nth-of-type(2) {
    padding-top: 1.6rem;
  }

  .faq__eng {
    min-width: 2.5rem;
    width: 2.5rem;
  }

  .faq__ttl {
    padding-bottom: 1.6rem;
  }

  .faq__text {
    line-height: 1.5333333333;
    max-width: 100%;
  }

  .flow {
    background-size: 3rem 3rem;
    padding: 3.3rem 0 4.4rem;
  }

  .flow__list {
    gap: 2rem;
    margin-top: 4rem;
  }

  .flow__item {
    flex-direction: column;
    gap: 1.2rem;
  }

  .flow__details {
    width: 100%;
  }

  .flow__ttlGroup {
    gap: 0.5rem;
  }

  .flow__num {
    font-size: 1.3rem;
    padding: 0 0.2rem 0.1rem;
    width: 4rem;
  }

  .flow__ttl {
    font-size: 1.6rem;
  }

  .flow__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-top: 0.9rem;
  }

  .fv {
    padding-bottom: 1.5rem;
  }

  .fv__inner {
    padding: 0 3.8rem;
  }

  .fv__main {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }

  .fv__card {
    border-radius: 0.5rem;
    box-shadow: 5px 5px 5px rgba(155, 155, 155, 0.75);
    margin-top: 1.5rem;
  }

  .fv__btm {
    margin-top: 6.3rem;
    max-width: 100%;
  }

  .graph {
    padding-top: 2.6rem;
  }

  .graph__inner {
    max-width: 55rem;
    padding: 0 1.8rem;
  }

  .graph__note {
    bottom: 10.5rem;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    max-width: 100%;
    padding: 0 5.5rem 0 2rem;
    width: 100%;
  }

  .point {
    margin-top: -5rem;
    padding-bottom: 3.8rem;
  }

  .point__list {
    gap: 1rem;
    margin-top: -4rem;
  }

  .point__item {
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    gap: 0;
    padding: 1.7rem 2rem 3rem;
  }

  .point__item.--item1 .point__img {
    margin-left: auto;
  }

  .point__item.--item1 .point__img img {
    max-width: 23rem;
  }

  .point__img {
    order: 2;
  }

  .point__details {
    display: contents;
  }

  .point__ttlWrap {
    gap: 0;
    order: 1;
    position: relative;
    right: 1rem;
    width: 100%;
  }

  .point__num {
    max-width: 9.1rem;
    min-width: 9.1rem;
  }

  .point__ttl {
    font-size: 2rem;
    margin-right: calc(50% - 50vw);
  }

  .point__ttl span {
    font-size: 2.8rem;
  }

  .point__text {
    font-size: 1.3rem;
    line-height: 1.3846153846;
    margin-top: 1.2rem;
    order: 3;
  }

  .price {
    overflow: hidden;
    padding: 4rem 0 3.6rem;
    padding: 0;
  }

  .price__inner {
    max-width: 55rem;
    padding: 0 2rem;
  }

  .price__body {
    box-shadow: 0 8px 10px 8px rgba(60, 110, 210, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.9);
    padding: 4rem 1.8rem;
  }

  .price__itemWrap {
    margin-top: 3rem;
  }

  .price__itemTtl {
    left: 0.5rem;
    max-width: 19.3rem;
    top: -1.4rem;
  }

  .price__item {
    border-radius: 0.3rem;
    box-shadow: 5px 5px 5px rgba(144, 144, 144, 0.5);
  }

  .price__item img {
    border-radius: 0.3rem;
  }

  .price__guide {
    margin-top: 4.4rem;
    max-width: 100%;
  }

  .price__flex {
    flex-direction: column;
    gap: 2.7rem;
    margin-top: 2.7rem;
  }

  .price__flexItem {
    border-radius: 0.4rem;
    box-shadow: 5px 5px 5px rgba(144, 144, 144, 0.5);
    max-width: 100%;
  }

  .price__payment {
    border-radius: 0.3rem;
    box-shadow: 3px 3px 3px rgba(144, 144, 144, 0.5);
    margin-top: 2.7rem;
    padding: 2.1rem 1.1rem 2rem;
  }

  .price__paymentText {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    margin-top: 0.6rem;
  }

  .price__paymentImg {
    border-radius: 0.3rem;
    margin-top: 1rem;
  }

  .price__paymentTtl {
    font-size: 2rem;
  }

  .problem {
    background: url(./../images/sp/problem_bg.webp) no-repeat top/cover;
    padding: 6.5rem 0 6.5rem;
  }

  .problem__inner {
    padding: 0 0 0 1.4rem;
  }

  .problem__head {
    max-width: 23rem;
  }

  .problem__body {
    margin-top: 0;
  }

  .problem__item {
    gap: 0.9rem;
    justify-content: center;
  }

  .problem__img {
    max-width: 13.9rem;
  }

  .problem__list {
    gap: 0.9rem;
    padding-top: 2rem;
  }

  .problem__text {
    align-items: flex-start;
    font-size: 1.5rem;
    gap: 0.4rem;
    line-height: 1.4;
  }

  .problem__text::before {
    background: url(./../images/sp/problem_check.webp) no-repeat center/100%;
    height: 1.4rem;
    margin-top: 0.6rem;
    min-width: 1.3rem;
    width: 1.3rem;
  }

  .problem__item.--item2 {
    gap: 1.4rem;
    margin-top: 3.4rem;
  }

  .problem__item.--item2 .problem__img {
    max-width: 16.9rem;
  }

  .store {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(./../images/sp/store_bg.webp) no-repeat center/cover;
    padding: 3.7rem 0 6.5rem;
  }

  .store__body {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .store__img {
    max-width: 100%;
  }

  .store__info {
    width: 100%;
  }

  .store__item {
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }

  .store__item dt {
    min-width: 6.5rem;
    padding: 0.5rem;
    width: 6.5rem;
  }

  .store__item dd {
    padding: 0.5rem 0.6rem;
  }

  .store__map {
    height: 13rem;
    margin-top: 1.8rem;
  }

  .voice {
    padding-bottom: 4.6rem;
  }

  .voice__head {
    height: 13rem;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }

  .voice__head::before {
    background: url(./../images/sp/voice_ttlbg.webp) no-repeat center/100% 100%;
  }

  .voice__headText {
    left: -7.8rem;
    max-width: 15.5rem;
    top: -2.4rem;
  }

  .voice__body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 4rem;
  }

  .voice__list {
    display: contents;
  }

  .voice__item {
    border-radius: 0.5rem;
    box-shadow: 3px 3px 4px rgba(155, 155, 155, 0.75);
  }

  .voice__item:nth-child(1) {
    order: 1;
  }

  .voice__item:nth-child(2) {
    order: 4;
  }

  .voice__item:nth-child(3) {
    order: 5;
  }

  .voice__item:nth-child(4) {
    order: 2;
  }

  .voice__item:nth-child(5) {
    order: 3;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

}

@media screen and (max-width: 390px) {

  html {
    font-size: 2.564vw;
  }

}


/*# sourceMappingURL=style.css.map */