@charset "UTF-8";
html {
  font-size: 100%;
}
@media (min-width: 768px) and (max-width: calc(425px - 0.02px)) {
  html {
    font-size: 3.7647058824vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 425px) {
  html {
    font-size: 100%;
  }
}

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

a,
button {
  transition: 0.3s;
  cursor: pointer;
}
a:hover,
button:hover {
  opacity: 0.7;
}

@media (hover: none) {
  a,
  button {
    transition: none;
    cursor: auto;
  }
  a:hover,
  button:hover {
    opacity: 1;
  }
}
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 425px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media (max-width: 768px) {
  .l-inner {
    max-width: 33.5rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/* ===========================================
   CSS Variables
=========================================== */
:root {
  --main: #ff7060;
  --base: #ffe6de;
  --line: #ffef44;
  --font: #414141;
  --green: #00983e;
  --green-light: #00e35d;
}

.lp-wrapper {
  max-width: 375px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

/* ===========================================
   共通
=========================================== */
.sec-heading {
  text-align: center;
  position: relative;
  padding-top: 50px;
}

.sec-heading .vline {
  width: 2px;
  height: 35px;
  background: #ff7060;
  background: var(--main);
  margin: 0 auto 8px;
}

.sec-heading .ja {
  font-size: 24px;
  font-weight: 700;
  color: #414141;
  color: var(--font);
}

.sec-heading .en {
  font-size: 12px;
  font-weight: 700;
  color: #ff7060;
  color: var(--main);
  margin-top: 4px;
}

.line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 305px;
  height: 60px;
  background: linear-gradient(to bottom, #00e35d 15%, #00983e);
  background: linear-gradient(to bottom, var(--green-light) 15%, var(--green));
  border-radius: 15px;
  border: 2px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.line-btn img {
  width: 29px;
  height: 27px;
  flex-shrink: 0;
}

.line-btn-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.line-btn-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===========================================
   FV
=========================================== */
.sec-fv {
  width: 100%;
}

.sec-fv img {
  aspect-ratio: 375/606;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ===========================================
   スクロール固定バー
=========================================== */
.sticky-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 375px;
  height: 70px;
  z-index: 100;
  background: #ff7060;
  background: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.sticky-bar .line-icon {
  width: 29px;
  height: 27px;
}

/* ===========================================
   CTA
=========================================== */
.sec-cta {
  position: relative;
  background-color: #ffe6de;
  background-color: var(--base);
  padding: 40px 0 40px;
  overflow: hidden;
}

.cta-deco-l {
  position: absolute;
  left: 0;
  top: 0;
  width: 219px;
  height: 299px;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.cta-deco-r {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 266px;
  height: 337px;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.cta-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  margin: 100px 20px 0;
  padding: 15px 15px 10px;
  overflow: visible;
}

.cta-headline {
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  width: 289px;
  height: 129px;
  display: block;
}

.cta-gift {
  display: block;
  width: 100%;
  height: 180px;
}

.cta-item {
  margin: 16px 0 0;
}

.cta-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  position: relative;
}

.cta-item-label::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 0;
  top: 0;
  height: 35px;
  background: linear-gradient(to right, rgba(255, 112, 96, 0.2) 46%, rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.cta-item-badge,
.cta-item-title {
  position: relative;
  z-index: 1;
}

.cta-item-badge {
  top: -9px;
}

.cta-item-badge {
  background: #ff7060;
  background: var(--main);
  color: #ffef44;
  color: var(--line);
  font-weight: 700;
  font-size: 18px;
  padding: 4px 10px;
  border: 2px solid #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.cta-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #414141;
  color: var(--font);
}

.cta-item-desc {
  font-size: 16px;
  color: #414141;
  color: var(--font);
  line-height: 1.5;
}

.cta-btn-link {
  display: block;
  margin: 20px 0 0;
}

.cta-btn-link img {
  display: block;
  width: 305px;
  height: auto;
}

/* ===========================================
   実績
=========================================== */
.sec-jisseki {
  position: relative;
  background-color: #ffe6de;
}

.jisseki-bg {
  position: absolute;
  top: 3.4375rem;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.jisseki-bg img {
  width: 100%;
  display: block;
}

.jisseki-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.jisseki-heading img {
  width: 305px;
  display: block;
  margin: 0 auto;
}

.jisseki-slider-wrap {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
}

.jisseki-slides {
  width: 335px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.jisseki-slide img {
  width: 335px;
  height: 150px;
  display: block;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.jisseki-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.jisseki-btn.prev {
  left: 5px;
}

.jisseki-btn.next {
  right: 5px;
}

.jisseki-btn img {
  width: 30px;
  height: 30px;
}

.jisseki-copy {
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

.jisseki-copy img {
  width: 335px;
  display: block;
  margin: 0 auto;
}

/* ===========================================
   WHO
=========================================== */
.sec-who {
  background: #ffe6de;
  background: var(--base);
  padding: 5.8125rem 1.25rem;
}

.who-heading {
  text-align: center;
  margin-bottom: 28px;
}

.who-heading img {
  max-width: 100%;
}

.who-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-card img {
  width: 100%;
  display: block;
}

/* ===========================================
   解決（こんな悩みを解決します）
=========================================== */
.sec-kaiketsu {
  position: relative;
  background: #fff;
  padding-bottom: 94px;
}

.kaiketsu-deco-l {
  position: absolute;
  left: -90px;
  top: 53px;
  width: 292px;
  height: 292px;
  pointer-events: none;
  z-index: 0;
}

.kaiketsu-deco-r {
  position: absolute;
  left: 160px;
  bottom: 0;
  width: 226px;
  height: 226px;
  pointer-events: none;
  z-index: 0;
}

.kaiketsu-woman {
  display: block;
  width: 274px;
  height: 196px;
  margin-left: 44px;
  position: relative;
  z-index: 10;
  transform: translateY(-45px);
}

.kaiketsu-heading-img {
  display: block;
  width: 268px;
  height: 60px;
  margin: -4.0625rem auto 0;
  position: relative;
  z-index: 1;
}

.kaiketsu-list {
  margin: 16px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  position: relative;
  z-index: 1;
}

.kaiketsu-item {
  background: #fffdde;
  border-radius: 8px;
  padding: 10px 16px 10px 34px;
  font-size: 16px;
  font-weight: 400;
  color: #414141;
  color: var(--font);
  line-height: 1.5;
  position: relative;
  min-height: 63px;
  display: flex;
  align-items: center;
}

.kaiketsu-item::before {
  content: "";
  position: absolute;
  left: 10px;
  transform: translateY(-50%);
  width: 18px;
  height: 12px;
  background-image: url("../images/solution-check.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===========================================
   REASON（本スクールの秘密）
=========================================== */
.sec-reason {
  position: relative;
  width: 375px;
  background: #ffe6de;
  background: var(--base);
}

.sec-reason__head {
  transform: translateY(-25px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.reason-card:nth-child(n+2) {
  margin-top: 2.5rem;
}

.reason-bottom-copy {
  width: 20.6875rem;
  margin-top: 1.25rem;
  margin-inline: auto;
}

.reason-bottom-copy .accent {
  color: #ff7060;
  color: var(--main);
  font-size: 24px;
}

/* ===========================================
   比較表
=========================================== */
.sec-hikaku {
  position: relative;
  width: 375px;
  padding: 0 0 40px;
  overflow: hidden;
  background: #fff;
}

.hikaku-heading {
  padding: 40px 20px 0;
  position: relative;
}

.hikaku-heading-line1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0 0.625rem;
  background: linear-gradient(to right, #ff7060, #ffbb78);
  background: linear-gradient(to right, var(--main), #ffbb78);
  height: 2.5625rem;
}

.hikaku-heading-line1:nth-child(1)::after {
  content: "";
  width: 4.625rem;
  height: 2.125rem;
  background: url(../images/icon_hikaku.svg) no-repeat center/cover;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(60%, -80%) rotate(15deg);
}

.hikaku-heading-line1:nth-child(n+2) {
  margin-top: 0.375rem;
}

.hikaku-deco {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 80px;
  height: 57px;
}

.hikaku-desc {
  font-size: 16px;
  color: #414141;
  color: var(--font);
  line-height: 1.6;
  padding: 16px 20px 0;
}

.hikaku-table-wrap {
  overflow-x: auto;
  margin: 16px 20px 0;
  -webkit-overflow-scrolling: touch;
}

.hikaku-table {
  border-collapse: collapse;
  width: 528px;
}

.hikaku-table th,
.hikaku-table td {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}

.hikaku-table thead th:first-child {
  background: #ffe6de;
  background: var(--base);
  border-radius: 8px 0 0 0;
  font-size: 14px;
  font-weight: 500;
}

.hikaku-table thead th.our {
  background: #ff7060;
  background: var(--main);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
}

.hikaku-table thead th.other {
  background: #ffe6de;
  background: var(--base);
  font-size: 14px;
  font-weight: 500;
}

.hikaku-table tbody th {
  background: #ffe6de;
  background: var(--base);
  font-weight: 400;
  color: #414141;
  color: var(--font);
  width: 76px;
}

.hikaku-table td.our {
  background: #fffdde;
  color: #ff7060;
  color: var(--main);
  font-weight: 700;
  border-left: 3px solid #ff7060;
  border-left: 3px solid var(--main);
  border-right: 3px solid #ff7060;
  border-right: 3px solid var(--main);
}

.hikaku-table tr:last-child td.our {
  border-bottom: 3px solid #ff7060;
  border-bottom: 3px solid var(--main);
}

.hikaku-table td.other {
  background: #fff;
  color: #414141;
  color: var(--font);
}

.hikaku-check {
  color: #ff7060;
  color: var(--main);
  font-weight: 700;
}

.hikaku-note {
  font-size: 11px;
  color: #414141;
  color: var(--font);
  padding: 8px 20px 0;
  line-height: 1.6;
}

/* ===========================================
   受講生の実績
=========================================== */
.sec-jukousei {
  position: relative;
  width: 375px;
  background: #ffe6de;
  background: var(--base);
  padding: 0 0 50px;
  overflow: hidden;
}

.jukousei-cards {
  margin: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.jukousei-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.jukousei-card-img {
  width: 100%;
  padding: 1.0625rem 1.0625rem 0.625rem;
}

.jukousei-card-body {
  background: #fffdde;
  padding: 16px 17px 20px;
}

.jukousei-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ff7060;
  color: var(--main);
  line-height: 1.53;
  padding-bottom: 0.25rem;
  border-bottom: 1px dashed #ff7060;
  border-bottom: 1px dashed var(--main);
}

.jukousei-card-desc {
  font-size: 16px;
  color: #414141;
  color: var(--font);
  line-height: 1.38;
  margin-top: 0.5rem;
}

.jukousei-tag {
  display: inline-block;
  background: linear-gradient(to right, #ff7060, #ffbb78);
  background: linear-gradient(to right, var(--main), #ffbb78);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 30px;
}

/* ===========================================
   FAQ
=========================================== */
.sec-faq {
  position: relative;
  width: 375px;
  background: #fff5f2;
  padding: 0 0 50px;
  overflow: hidden;
}

.faq-list {
  margin: 16px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 0.625rem 0.9375rem;
}

.faq-q {
  display: flex;
  gap: 8px;
  padding: 0 1.625rem 0 0;
  cursor: pointer;
  position: relative;
}

.faq-q::before,
.faq-q::after {
  content: "";
  width: 1rem;
  height: 1px;
  background-color: #414141;
  position: absolute;
  top: 1.25rem;
  right: 0;
  transition: 0.3s ease;
}

.faq-q::after {
  transform: rotate(90deg);
}

.faq-q.close::after {
  transform: rotate(0);
}

.faq-q-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(to right, #ff7060, #ffbb78);
  background: linear-gradient(to right, var(--main), #ffbb78);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #414141;
  color: var(--font);
  line-height: 1.4;
  margin-top: 0.25rem;
}

.faq-q-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q-arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px dashed #ff7060;
  border-top: 1px dashed var(--main);
}

.faq-divider {
  display: flex;
  gap: 0.4375rem;
}

.faq-a-badge {
  display: flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: #ff7060;
  color: var(--main);
  background: linear-gradient(90deg, rgb(255, 216, 204) 0%, rgb(255, 216, 204) 100%);
  flex-shrink: 0;
}

.faq-a-text {
  font-size: 16px;
  color: #414141;
  color: var(--font);
  line-height: 1.6;
}

/* ===========================================
   CTA最終
=========================================== */
.sec-cta-final {
  position: relative;
  width: 375px;
  background: linear-gradient(to right, #ff7060, #ffbb78);
  background: linear-gradient(to right, var(--main), #ffbb78);
  padding: 0 0 60px;
  overflow: hidden;
}

.cta-final-card {
  margin: 70px 21px 0;
  position: relative;
}

.sec-cta-final__btn {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.sec-last {
  padding: 4.125rem 0 4.375rem;
}

.sec-last__btn {
  margin-top: 1.875rem;
}

/* ===========================================
   Footer
=========================================== */
footer {
  border-top: 1px solid #eee;
  padding: 50px 20px 100px;
  text-align: center;
  background: #ffe6de;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

.footer-links a {
  font-size: 14px;
  color: #414141;
  color: var(--font);
  text-decoration: none;
}

.footer-copy {
  font-size: 12px;
  color: #414141;
  color: var(--font);
}

/* ===========================================
   スティッキーバー
=========================================== */
.sticky-line-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-line-bar a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.sticky-line-bar .line-icon {
  width: 29px;
  height: 27px;
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */