@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Zen Maru Gothic", sans-serif;
}

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

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

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
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;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #222;
  color: #fff;
}

/* ハンバーガーメニューを表示するためのスタイル */
.hamburger {
  display: block;
  height: 60px;
  margin-left: auto;
  position: relative;
  z-index: 99;
  width: 60px;
  border: none;
  background-color: transparent;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger.-active .hamburger__text::before {
  content: "閉じる";
}

.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24px;
  background-color: #172e59;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #172e59;
  -webkit-transition: inherit;
  transition: inherit;
}

.hamburger__line:before {
  top: -6px;
}

.hamburger__line:after {
  top: 6px;
}

.hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.hamburger__text::before {
  content: "メニュー";
  text-align: center;
  color: #172e59;
  font-size: 10px;
  font-weight: 900;
}

.header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
}

.header__nav-area {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99;
  height: 100vh;
  width: 300px;
  visibility: hidden;
  padding-top: 60px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__nav-area.-active {
  left: 0;
  visibility: visible;
}

.global-navigation {
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 120px;
  padding-left: 25px;
}

.global-navigation__list > li {
  padding-bottom: 20px;
  border-bottom: 2px solid #c2f8f9;
}

.global-navigation__list > li + li {
  margin-top: 20px;
}

.global-navigation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #f37853;
  font-weight: 900;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  font-size: 14px;
  font-size: 0.875rem;
}

.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
}

.global-navigation__link.-accordion::after {
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 2px;
  background-color: #ed3242;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.global-navigation__link.-accordion::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  background-color: #ed3242;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.global-navigation__link.-active::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.accordion.-active {
  height: auto;
  padding-top: 30px;
  visibility: visible;
}

.accordion__list li {
  font-size: 12px;
  font-size: 0.75rem;
}

.accordion__list li + li {
  margin-top: 21px;
}

.accordion__link {
  color: #222;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  padding-left: 0.9375rem;
}

.header__logo {
  max-width: 230px;
  max-width: 14.375rem;
  width: 100%;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo {
    margin-top: 0;
    max-width: 12.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .header__logo {
    margin-top: 0;
    max-width: 16.875rem;
  }
}

.worries {
  margin-top: 0;
}

.worries__bg {
  background-image: url(../images/common/bg-sp.svg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .worries__bg {
    background-image: url(../images/common/bg.svg);
    background-position: top center;
    padding-bottom: 7.5rem;
  }
}

.worries__deco {
  max-width: 80px;
  width: 100%;
  margin: auto;
}

.worries__lead {
  background: #fff;
  border-radius: 7px;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .worries__lead {
    max-width: 39.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.worries__lead--green {
  color: #00c2c4;
  font-size: 20px;
  font-size: 1.25rem;
}

.worries__lead--orange {
  color: #f37853;
  font-size: 24px;
  font-size: 1.5rem;
}

.worries__lead::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #fff;
}

.worries-voice__wrap {
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.worries-voice__wrap img {
  max-width: 80vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .worries-voice__wrap img {
    max-width: 62.5rem;
    margin-top: -2.5rem;
  }
}

.worries-voice__wrap:nth-child(odd) img {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .worries-voice__wrap:nth-child(odd) img {
    margin: auto;
  }
}

.worries-voice__fam {
  max-width: 180px;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .worries-voice__fam {
    max-width: 15.625rem;
    margin-top: -2.5rem;
  }
}

.quantity__graph {
  background: #003c6e;
  border-radius: 14px;
  padding: 30px 15px;
  padding: 1.875rem 0.9375rem;
}

.quantity__txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .quantity__txt {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
  }
}

.quantity__img img {
  border-radius: 7px;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.quantity__notes {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .quantity__notes {
    text-align: center;
  }
}

.cta {
  padding: 30px 15px;
  padding: 1.875rem 0.9375rem;
  background: #f37853;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta {
    font-size: 2rem;
    padding: 2.5rem 0.9375rem;
  }
}

.cta span {
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cta span {
    font-size: 2rem;
  }
}

.deco-color {
  max-width: 80px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .deco-color {
    max-width: 6.25rem;
  }
}

.movie {
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .movie {
    padding: 2.5rem 0.9375rem;
  }
}

.movie__txt {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-top: 26px;
  margin-top: 1.625rem;
  color: #00c2c4;
}
@media screen and (min-width: 768px) {
  .movie__txt {
    font-size: 2rem;
  }
}

.movie__txt span {
  color: #f37853;
}

.movie__frame {
  margin-top: 26px;
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .movie__frame {
    margin-top: 2.625rem;
  }
}

.movie__frame iframe {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16/9;
  margin: auto;
}

.point {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #ffffff), color-stop(1%, #f2f6f6));
  background: linear-gradient(to bottom, #ffffff 1%, #f2f6f6 1%);
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .point {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(6%, #ffffff), color-stop(6%, #f2f6f6));
    background: linear-gradient(to bottom, #ffffff 6%, #f2f6f6 6%);
    margin-top: 6.25rem;
  }
}

.point-secret {
  max-width: 250px;
  margin: 20px auto;
  margin: 1.25rem auto;
}
@media screen and (min-width: 768px) {
  .point-secret {
    max-width: 450px;
    margin-top: 2.5rem;
  }
}

.point__points {
  max-width: 200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .point__points {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1000px;
  }
}

.point__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .point__item {
    margin-top: 6.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.point__item.-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .point__item.-sec {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.point__body {
  background: #fff;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .point__body {
    width: 50%;
    padding: 3.125rem 5rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .point__body::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 0%;
    background-image: url(../images/common/point-icon01.svg);
    background-size: contain;
    width: 7.0625rem;
    height: 7.0625rem;
    background-repeat: no-repeat;
  }
}

.point__item.-sec .point__body::before {
  top: -15%;
  left: auto;
  right: 0;
  background-image: url(../images/common/point-icon02.svg);
  width: 130px;
  width: 8.125rem;
  height: 130px;
  height: 8.125rem;
}

.point__item.-th .point__body::before {
  background-image: url(../images/common/point-icon03.svg);
}

@media screen and (min-width: 768px) {
  .point__img {
    width: 50%;
    margin-top: -3.125rem;
    margin-left: -2.5rem;
    position: relative;
    z-index: 2;
  }
}

.point__body p {
  color: #89dedf;
  font-weight: 600;
  line-height: 1;
}

.point__body h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .point__body h3 {
    font-size: 1.75rem;
  }
}

.point__body h3 span {
  color: #f37853;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .point__body h3 span {
    font-size: 1.875rem;
  }
}

.point__body h3 span .big {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .point__body h3 span .big {
    font-size: 2.3125rem;
  }
}

.point__body__ttl {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 16px;
  margin-top: 1rem;
  color: #444444;
}
@media screen and (min-width: 768px) {
  .point__body__ttl {
    font-size: 1rem;
    margin-top: 2rem;
  }
}

.point__body__ttl span {
  color: #f37853;
  display: block;
}

@media screen and (min-width: 768px) {
  .point__item.-sec .point__img {
    margin-left: 0;
    position: relative;
    margin-right: -2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .point__item.-sec .point__body {
    padding-right: 3.125rem;
  }
}

.voice {
  padding: 40px 0 0;
  padding: 2.5rem 0 0;
}

.section__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  color: #00c2c4;
  margin-top: 26px;
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__ttl {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.section__txt {
  text-align: center;
  margin-top: 26px;
  margin-top: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .section__txt {
    margin-top: 1rem;
  }
}

.voice__students {
  margin-top: 26px;
  margin-top: 1.625rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .voice__students {
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3.75rem auto 0;
    gap: 3.125rem;
  }
}

.voice__student img {
  margin: auto;
  max-width: 150px;
}
@media screen and (min-width: 768px) {
  .voice__student img {
    max-width: 220px;
  }
}

.voice__student h3 {
  color: #f37853;
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}

.voice__student p {
  margin-top: 8px;
  margin-top: 0.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .voice__student p {
    margin-top: 1rem;
    line-height: 2;
  }
}

.class {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .class {
    margin-top: 4.375rem;
  }
}

.class__imgs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  gap: 1.25rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 900px;
  max-width: 56.25rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .class__imgs {
    margin-top: 2rem;
  }
}

.student-video {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .student-video {
    padding-bottom: 0;
  }
}

.student-video video {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.flow {
  padding: 40px 0;
  padding: 2.5rem 0;
}

.flow__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  gap: 1.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.flow__steps img {
  max-width: 150px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .flow__steps img {
    max-width: 1000px;
    margin-top: 2.5rem;
  }
}

.flow__steps p {
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
  font-weight: 500;
}

.faq {
  padding: 40px 15px 0;
  padding: 2.5rem 0.9375rem 0;
}

.faq-inner {
  max-width: 880px;
  max-width: 55rem;
  width: 100%;
  margin: 40px auto;
  margin: 2.5rem auto;
}

.details-summary {
  background-color: #00c2c4;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  text-align: left;
  font-weight: bold;
  position: relative;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .details-summary {
    font-size: 20px;
    margin-bottom: 1.25rem;
    padding: 20px;
    padding-left: 3.125rem;
  }
}

.details-summary::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .details-summary::before {
    width: 15px;
    height: 15px;
  }
}

.details-summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 20px;
  color: #fff;
  -webkit-transition: content 0.3s ease, -webkit-transform 0.3s ease;
  transition: content 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, content 0.3s ease;
  transition: transform 0.3s ease, content 0.3s ease, -webkit-transform 0.3s ease;
  top: 8px;
}
@media screen and (min-width: 768px) {
  .details-summary::after {
    top: 17px;
    right: 15px;
  }
}

.details-summary.is-active::after {
  content: "-";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.details-content {
  display: none;
  padding: 0 0 15px;
  font-size: 16px;
  line-height: 1.6;
  border-top: none;
  background-color: #fff;
}

.details-content.open {
  display: block;
}

.details-summary {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.details-content__q {
  font-weight: 600;
}

.details-content__q,
.details-content__a {
  position: relative;
  padding: 15px 50px;
  padding: 0.9375rem 3.125rem;
  padding-right: 0;
}

.details-content__a {
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .details-content__a {
    padding-top: 0.9375rem;
  }
}

.details-content__q::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background-size: cover;
  vertical-align: middle;
  background-image: url(../images/common/icon-q.png);
  left: 6px;
  top: 14px;
}

.details-content__a::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background-size: cover;
  vertical-align: middle;
  background-image: url(../images/common/icon-a.png);
  left: 6px;
  top: 5px;
}
@media screen and (min-width: 768px) {
  .details-content__a::before {
    top: 14px;
  }
}

.details-content__detail {
  border-bottom: 1px solid #00c2c4;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.details-content__detail:last-child {
  border-bottom: none;
}

.details-content__detail:first-child {
  padding-top: 0;
}

.price__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  gap: 1rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .price__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.price__left,
.price__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  gap: 1rem;
}

.footer-cta__txt {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-top: 16px;
  margin-top: 1rem;
}

a.btn_18 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
  width: 100%;
  margin: auto;
  padding: 12px 14px 15px 28px;
  padding: 0.75rem 0.875rem 0.9375rem 1.75rem;
  padding-left: 32px;
  padding-left: 2rem;
  font-weight: bold;
  color: #fff;
  background: #06C755;
  -webkit-box-shadow: 5px 5px #fff;
          box-shadow: 5px 5px #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  a.btn_18 {
    width: 410px;
    font-size: 1.25rem;
  }
}

a.btn_18 strong {
  font-size: 25px;
  font-size: 1.5625rem;
  margin-right: 3px;
}

a.btn_18::before {
  content: "";
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/line-icon.png);
  border-radius: 50px;
}

a.btn_18::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25.6px;
  right: 1.6rem;
  -webkit-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

a.btn_18:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  color: #fff;
  opacity: 1;
}

.footer__logo {
  max-width: 300px;
  max-width: 18.75rem;
  margin: auto;
}

.footer {
  padding: 40px 15px;
  padding: 2.5rem 0.9375rem;
}

.footer__copy {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
  display: block;
}

.header__inner.sp-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .header__inner.sp-only {
    display: none;
  }
}

.header__inner.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__inner.pc-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav-list {
    gap: 20px;
  }
}

.header__nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  height: 5.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  .header .contact a {
    padding: 0 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .header .contact a {
    padding: 0 1.875rem;
    height: 3.125rem;
    background: #06C755;
    color: #fff;
    border-radius: 50px;
  }
}

@media screen and (min-width: 768px) {
  .quantity-ttl img {
    max-width: 32.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.point-ttl {
  max-width: 810px;
  max-width: 50.625rem;
  margin: auto;
}

section {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  section {
    margin-top: 2.5rem;
  }
}

.price__txt {
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.7;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .price__txt {
    text-align: center;
  }
}

.flow__steps.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .flow__steps.pc-only {
    display: grid;
  }
}

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

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

.contact-cta {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .contact-cta {
    margin-top: 6.25rem;
  }
}

.mv {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.mv-cta {
  margin-top: 0;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f6f6;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
  -webkit-box-shadow: 0 -2px 5px rgba(0, 0, 0, .2);
          box-shadow: 0 -2px 5px rgba(0, 0, 0, .2);
}

.fixed-cta a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  background-color: #06C755;
  padding: 8px 8px 10px 22px;
  border-radius: 7px;
  margin: auto;
  width: 90vw;
  display: block;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 2px 3px #3dad6c;
          box-shadow: 2px 3px #3dad6c;
}

.fixed-cta a strong {
  font-size: 20px;
  margin-right: 2px;
}

.fixed-cta a::before {
  content: "";
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  position: absolute;
  top: 50%;
  left: 2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/line-icon.png);
  border-radius: 50px;
}

.fixed-cta a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25.6px;
  right: 1.6rem;
  -webkit-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.cta02 {
  margin: 16px 0;
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .cta02 {
    margin: 3rem 0;
  }
}

.cta-btn {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  background-color: #06C755;
  padding: 14px;
  padding: 0.875rem;
  padding-left: 26px;
  padding-left: 1.625rem;
  border-radius: 14px;
  margin: auto;
  width: 100%;
  display: block;
  text-align: center;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 5px 5px #3dad6c;
          box-shadow: 5px 5px #3dad6c;
}
@media screen and (min-width: 768px) {
  .cta-btn {
    font-size: 2rem;
    padding: 20px 24px;
  }
}

.cta-btn span {
  font-weight: bold;
  position: relative;
}

.cta-btn strong {
  font-size: 20px;
  font-size: 1.25rem;
  margin-right: 3px;
}
@media screen and (min-width: 768px) {
  .cta-btn strong {
    font-size: 2.5rem;
  }
}

.cta-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16%;
  background-image: url(../images/common/line-icon.png);
  background-size: contain;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .cta-btn span::before {
    width: 4.375rem;
    height: 4.375rem;
  }
}

.cta-btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  -webkit-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .cta-btn span::after {
    right: -7%;
  }
}

.cta-txt {
  text-align: center;
  padding-bottom: 2px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .cta-txt {
    font-size: 1.75rem;
  }
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .5);
  z-index: 50;
}

.menu-overlay.open {
  display: block;
}

.global-navigation__btn {
  margin-top: 16px;
  margin-top: 1rem;
}

.global-navigation__btn a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  background-color: #06C755;
  padding: 8px 8px 10px 13px;
  border-radius: 7px;
  margin: auto;
  width: 100%;
  display: block;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 3px 3px #3dad6c;
          box-shadow: 3px 3px #3dad6c;
}

.global-navigation__btn a strong {
  font-size: 20px;
  margin-right: 3px;
}

.global-navigation__btn a::before {
  content: "";
  width: 35.2px;
  width: 2.2rem;
  height: 35.2px;
  height: 2.2rem;
  position: absolute;
  top: 50%;
  left: 2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/line-icon.png);
}

.global-navigation__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25.6px;
  right: 1.6rem;
  -webkit-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
/*# sourceMappingURL=styles.css.map */
