:root {
  font-size: 100%;
  --font-noto: "Noto Sans JP", system-ui, sans-serif;
  --font-gsf: "Google Sans Flex", "Noto Sans JP", system-ui, sans-serif;
  --width-max: 1128px;
  --color-red: #c8161d;
  --color-navy: #071a6c;
  --color-gray: #f5f5f5;
  --color-black: #000000;
  --color-text: #ffffff;
  --color-caption: #f5f5f5;
  --color-accent: #ece171;
  --concept-pink: #fef4f5;
  --smart03-deco: #e9e9e9;
  --tf-line: #f4ccd2;
  --tf-date: #454545;
  font-feature-settings: "palt" 1;
}

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

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  :root {
    font-size: 18px;
  }
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding: 0;
  list-style: none;
}

.kv {
  position: relative;
  width: 100%;
  background: url("../img/kv-bg.webp") no-repeat center center / cover;
  color: var(--color-text);
  overflow: hidden;
}

.kv__bg-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.kv__mask-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 85.375rem;
  margin: 0 auto;
}

.kv__photo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: var(--kv-hero);
  background-size: cover;
  background-position: 55% 20%;
  background-repeat: no-repeat;
  -webkit-mask-image: var(--kv-mask);
  mask-image: var(--kv-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.kv__inner {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  padding: clamp(6.5rem, 12vw, 10.4375rem) clamp(1rem, 5vw, 7rem) clamp(2rem, 5vw, 3.375rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  min-height: inherit;
}

.kv__header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 1.5rem 2rem;
}

.kv__logo-mark {
  width: clamp(5rem, 12vw, 5.1875rem);
  height: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.kv__logo-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(20);
}

.kv__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.kv__nav a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  color: white;
}


.kv__column {
  position: relative;
  width: 100%;
  max-width: 35.1875rem;
  flex-shrink: 0;
}

.kv__tagline {
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" 1;
  margin-bottom: 0;
  margin-left: 0.5rem;
}

.kv__logo-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 35.125rem;
  aspect-ratio: 562 / 234;
  margin-bottom: 4rem;
}

.kv__tagline-wrap {
  overflow: hidden;
}

.kv__logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kv__stats-image-wrap {
  width: 100%;
  display: flex;
  max-width: 26.5rem;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.kv__stats-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kv__caption-body {
  /* max-width: 35rem; */
  font-family: var(--font-noto);
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  line-height: 1.5;
  color: var(--color-caption);
  font-feature-settings: "palt" 1;
}

.kv__caption-body p {
  margin: 0 0 0.25em;
}

@media (max-width: 768px) {
  .kv__nav {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 5rem 1rem;
    font-size: 1rem;
    position: fixed;
    top: 0;
    height: 100svh;
    left: -100vw;
    transition: left 0.2s;
    font-weight: 500;
    background: url(../img/header-bg-sp.webp) 0% 94% / 35vh, linear-gradient(90deg, #b9212e, #b31d2d);
    background-repeat: no-repeat;
  }

  .kv__nav.is-open {
    left: 0;
    transition: left 0.2s;
  }
}

@media (min-width: 1024px) {
  .kv__inner {
    padding-left: 4rem;
    padding-right: 7rem;
    width: 90vw;
  }
}

.concept {
  position: relative;
  color: var(--color-black);

}

.concept__stage {
  position: relative;
  margin: 0 auto;
  min-height: clamp(56rem, 95vw, 70.5rem);
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 4vw, 5.5rem) clamp(4rem, 9vw, 6.5rem);
  overflow-x: clip;
}

.concept__decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.concept__decor img {
  display: block;
  max-width: 100%;
  height: auto;
}

.concept__decor--tl {
  left: clamp(-2rem, -1vw, -0.5rem);
  top: clamp(6rem, 11vw, 9.25rem);
  width: 25vw;
}

.concept__decor--tr {
  right: -2rem;
  top: -3rem;
  width: 30vw;
}

.concept__decor--bl {
  left: 2%;
  bottom: clamp(2rem, 4vw, 4rem);
  width: 28vw;
  max-width: 430px;
}

.concept__decor--br {
  right: 4%;
  bottom: 20%;
  width: 23vw;
  max-width: 350px;
}

.concept__decor img {
  width: 100%;
  height: auto;
}

.concept__main {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.concept__head {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.concept__eyebrow {
  margin: 0 0 clamp(0.75rem, 2vw, 1rem);
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.866;
  letter-spacing: 0;
  color: var(--color-red);
}

.concept__title-line {
  margin: 1rem 0 0.25rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.concept__smart-word {
  display: block;
  height: clamp(2.125rem, 6vw, 3.375rem);
  width: auto;
}

.concept__body {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(0.9375rem, 2.2vw, 1.25rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.concept__body p {
  margin: 0 0 clamp(1.5rem, 3.5vw, 2.5rem);
}

.concept__cta-wrap {
  position: relative;
  z-index: 1;
  max-width: 40.25rem;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.concept__cta-panel {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 40.25rem;
  width: 100%;
  overflow: hidden;
}

.concept__cta-panel-bg {
  display: block;
  width: 100%;
  height: auto;
}

.concept__cta-inner {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2.5rem);
  text-align: center;
  background: url(/img/pink-foot.webp);
  background-size: cover;
}

.concept__cta-kage {
  position: absolute;
  left: 14%;
  top: -39%;
  width: 72%;
  max-width: 28.75rem;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: rotate(-13.57deg);
  overflow: hidden;
}

.concept__cta-kage-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 433 / 167;
}

.concept__cta-kage-inner img {
  position: absolute;
  width: 250%;
  max-width: none;
  left: -42%;
  top: -500px;
  height: auto;
}

.concept__cta-sub {
  margin: 0 0 clamp(0.5rem, 2vw, 1rem);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--color-red);
  font-feature-settings: "palt" 1;
}

.concept__cta-line {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  align-items: flex-start;
}

.concept__cta-logo {
  display: block;
  width: clamp(5.5rem, 16vw, 6.95rem);
  height: auto;
}

.concept__btn,
.smart04__btn,
.smart02__chart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  padding: 1rem 2.5rem 1rem 2rem;
  min-height: 4rem;
  background: var(--color-navy);
  border: 0.125rem solid var(--color-navy);
  border-radius: 6.25rem;
  color: #ffffff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  text-decoration: none;
  transition: opacity 0.2s ease;
  max-width: 350px;
  width: 100%;
  margin: auto;
  position: relative;
  transition: all 0.2s;
}

.concept__btn:hover,
.smart04__btn:hover,
.smart02__chart-btn:hover {
  background: #ffffff;
  color: var(--color-navy);
  border: 0.125rem solid var(--color-navy);
  transition: all 0.2s;
}

.concept__btn-icon,
.smart04__btn-icon,
.smart02__chart-btn-icon {
  flex-shrink: 0;
  position: absolute;
  right: 6%;
}

.concept__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .concept__stage {
    min-height: 0;
    padding-bottom: 3rem;
  }

  .concept__decor {
    width: 30%;
    max-width: 22rem;
    margin: 0 auto 1rem;
  }

  .concept__main {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .concept__cta-kage {
    display: none;
  }

  .concept__title-line {
    flex-wrap: wrap;
  }
}

.smart01 {
  position: relative;
  background: #f5f5f5;
  color: var(--color-black);
}

.smart01__inner {
  max-width: 1128px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) 0 0;
}

.smart01__intro {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.smart01__intro-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.smart01__intro-angle {
  width: clamp(2rem, 5vw, 3.875rem);
  height: auto;
}

.smart01__intro-angle--right {
  transform: scaleX(-1);
}

.smart01__intro-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.3rem;
}

.smart01__intro-eyebrow img {
  height: clamp(1.25rem, 3vw, 1.6875rem);
  width: auto;
}

.smart01__intro-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.smart01__intro-body {
  max-width: 54.875rem;
  margin: 0 auto;
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.smart01__intro-body .accent {
  font-weight: 700;
  color: var(--color-red);
}

.smart01__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 9rem;
  position: relative;
  padding: 0;
}

.smart01__step-card {

  overflow: hidden;
  position: relative;
}

.smart01__step-visual {
  position: relative;
  aspect-ratio: 252 / 304;
  overflow: hidden;
  background: var(--color-gray);
}

.smart01__step-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.smart01__step-label {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  padding: 0.625rem 1rem;

  color: #ffffff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1.7;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  margin: 0;
}

.smart01__step-num {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 2.2rem;
  font-family: var(--font-gsf);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: #ffffff;

}

.smart01__step-en {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 0.95rem;
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;

}

.smart01__step-content {
  padding: 1rem 0;
}

.smart01__step-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1.6;
  color: var(--color-red);
}

.smart01__step-desc {
  margin: 0;
  font-family: var(--font-noto);
  font-size: clamp(0.875rem, 1.8vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 1px;
  font-feature-settings: "palt" 1;
}

.smart01__check {
  position: relative;
  background: url(../img/check-bg.svg) no-repeat;
  background-size: 100% 100%;
  border-radius: 0.5rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  margin: auto;
  margin-bottom: 0;
  max-width: 1000px;
}

.smart01__check-shape {
  position: absolute;
  left: -6%;
  top: 4%;
  transform: translateY(-50%);
  width: clamp(9rem, 25vw, 18rem);
  height: auto;
  pointer-events: none;
}

.smart01__check-title {
  text-align: center;
  margin: 0 0 clamp(1.5rem, 4vw, 2rem);
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.55rem, 3.5vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}

.smart01__check-title .accent {
  color: var(--color-red);
}

.smart01__check-body {
  max-width: 51.125rem;
  margin: 0 auto;
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.smart01__check-body .accent {
  font-weight: 700;
  color: var(--color-red);
}

.smart01__interview {
  background: var(--color-gray);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 5.25rem);
  padding-top: 0;
}

.smart01__interview-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.smart01__interview-eyebrow {
  margin: 0 0 0.375rem;
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.67;
  color: var(--color-red);
}

.smart01__interview-title {
  margin: 0px 0 2.5rem;
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.smart01__interview-sub {
  margin: 0;
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
}

.smart01__interview-sub .accent {
  font-weight: 700;
  color: var(--color-red);
}

.smart01__interview-cards {

  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding: 0;
  list-style: none;
}

.smart01__interview-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.smart01__featured-card {
  background: #ffffff;
  padding: clamp(1.25rem, 3vw, 2rem);
  text-decoration: none;
  color: black;
}

.smart01__featured-top {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 1.5rem;
}

.smart01__featured-thumb {
  aspect-ratio: 200 / 236;
  overflow: hidden;
}

.smart01__featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart01__featured-title {
  margin: 0 0 0.75rem;
  color: var(--color-red);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.smart01__featured-meta,
.smart01__featured-name {
  margin: 0 0 0.5rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.35;
}

.smart01__featured-body {
  margin: 1rem 0;
  font-family: var(--font-noto);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.smart01__featured-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-navy);
  text-decoration: none;
  font-family: var(--font-noto);
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: flex-end;
  margin-bottom: 0;
  width: max-content;
  margin-left: auto;
}


.smart01__interview-card {
  background: #ffffff;
  padding: clamp(1.55rem, 3vw, 2rem);
  position: relative;
}

.smart01__interview-card-img {
  aspect-ratio: 270 / 158;
  background: var(--color-gray);
  overflow: hidden;
  margin-bottom: 1rem;
}

.smart01__interview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart01__interview-logo {
  display: block;
  width: auto;
  height: 1.875rem;
  margin: 0.25rem auto 0.75rem;
}

.smart01__interview-card-title {
  margin: 0 0 1rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-red);
  text-align: center;
}

.smart01__interview-card-meta {
  margin: 0 0 0.25rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.35;
}

.smart01__interview-card-name {
  margin: 0 0 0.75rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 0.875rem;
}

.smart01__interview-card-body {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.smart01__slide-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.smart01__slide-btn {
  width: 4.0625rem;
  height: 4.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0.25rem solid var(--color-red);
  border-radius: 50%;
  color: var(--color-red);
  cursor: pointer;
  transition: opacity 0.2s;
}

.smart01__slide-btn:hover {
  opacity: 0.85;
}

.smart01__slide-btn img {
  width: 0.625rem;
  height: 1.25rem;
}

.smart01__slide-btn--next img {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .smart01__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .smart01__interview-featured {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .smart01__featured-top {
    grid-template-columns: 1fr;
  }

  .smart01__steps {
    grid-template-columns: 1fr;
    width: 88%;
    margin: auto;
    margin-bottom: 3rem;
  }

  .smart01__interview-cards {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .smart01__intro-angle {}
}

.smart02 {
  position: relative;
  background: #ffffff;
  color: #000000;
}

.smart02__inner {
  max-width: var(--width-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3.5rem, 8vw, 5rem);
}

.smart02__intro {
  text-align: center;
  width: 100%;
  max-width: 54.8125rem;
}

.smart02__intro-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  gap: clamp(0.5rem, 2vw, 2rem);
}

.smart02__intro-angle {
  width: clamp(2rem, 5vw, 3.875rem);
  height: auto;
}

.smart02__intro-angle--right {
  transform: scaleX(-1);
}

.smart02__intro-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}

.smart02__intro-smart-img {
  display: block;
  height: clamp(1.25rem, 3vw, 1.6875rem);
  width: auto;
}

.smart02__intro-eyebrow-text {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.smart02__intro-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.smart02__intro-body {
  margin: clamp(1.5rem, 4vw, 2rem) 0 0;
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.smart02__intro-body .accent {
  font-weight: 700;
  color: var(--color-red);
}

.smart02__schedule-viz {
  position: relative;
  width: 100%;
  max-width: 70.5rem;
  aspect-ratio: 1128 / 478;
  background: #f8f4f5;

  overflow: hidden;
}

.smart02__schedule-viz-base {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.smart02__schedule-viz-btns {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.smart02__schedule-viz-btn {
  position: absolute;
  width: 16.5%;
  height: auto;
  cursor: pointer;
  appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  line-height: 0;
  font: inherit;
}

.smart02__schedule-viz-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.smart02__schedule-viz-btn--1 {
  left: 19.77%;
  top: 5.23%;
}

.smart02__schedule-viz-btn--2 {
  left: 59.75%;
  top: 7.74%;
}

.smart02__schedule-viz-btn--3 {
  left: 64.36%;
  top: 55.02%;
}

.smart02__schedule-viz-btn--4 {
  left: 13.74%;
  top: 49.79%;
}

.smart02__week {
  width: 100%;
}

.smart02__week-head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.smart02__week-eyebrow {
  margin: 0 0 0.375rem;
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.87;
  color: var(--color-red);
}

.smart02__week-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em 0.25em;
}

.smart02__week-title-lg {
  font-size: clamp(1.5rem, 5vw, 3rem);
}

.smart02__week-title-sm {
  font-size: clamp(0.8rem, 3.5vw, 2rem);
  letter-spacing: 0.02em;
}

.smart02__week-sub {
  margin: clamp(1.25rem, 3vw, 1.5rem) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.smart02__week-sub-line {
  flex: 1;
  min-width: 10rem;
  max-width: 27.25rem;
  height: 0.125rem;
  background: var(--color-red);
}

.smart02__week-sub-label {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: var(--color-red);
  white-space: nowrap;
}

.smart02__week-cards {
  display: flex;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.smart02__week-card {
  position: relative;
  width: 100%;
  max-width: 15.75rem;
  margin: 0 auto;
  min-height: 24.875rem;
  overflow: hidden;
  background: #f4ccd2;
}

.smart02__week-card-dayimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}

.smart02__week-card-icon-img {
  position: absolute;
  left: 1.25rem;
  top: 3.75rem;
  width: calc(100% - 2.5rem);
  max-width: 13.25rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.smart02__week-card-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 11.6875rem;
  margin: 0;
  padding: 0 0.75rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1.6;
  color: var(--color-red);
  text-align: center;
  z-index: 2;
}

.smart02__week-card-desc {
  position: absolute;
  left: 0;
  right: 0;
  top: 14.875rem;
  margin: 0;
  padding: 0 1.25rem 1rem;
  font-family: var(--font-noto);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  z-index: 2;
}

.smart02__chart {
  width: 100%;
  text-align: center;
}

.smart02__chart-head {
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.smart02__chart-eyebrow {
  margin: 0 0 0.375rem;
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.87;
  color: var(--color-red);
}

.smart02__chart-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.smart02__chart-body {
  max-width: 51.125rem;
  margin: 0 auto clamp(2rem, 5vw, 2.5rem);
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.smart02__chart-body p {
  margin: 0 0 0.5em;
}

.smart02__chart-body p:last-child {
  margin-bottom: 0;
}

.smart02__chart-body .accent {
  font-weight: 700;
  color: var(--color-red);
}

.smart02__chart-btn {
  cursor: pointer;
  max-width: 250px;
  background: white;
  color: var(--color-navy);
}

.smart02__chart-btn:hover {
  background: var(--color-navy);
  color: white;
}

.smart02__chart-btn-icon {
  width: 0.625rem;
  height: 1rem;
}

.smart02__chart-btn--img img {
  display: block;
  width: 100%;
  height: auto;
}

.smart02__chart-btn span {
  font-size: 1.5rem;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .smart02__week-cards {}
}

@media (max-width: 768px) {
  .smart02__week-cards {}

  .smart02__intro-angle {
    display: none;
  }

  .smart02__schedule-viz-btn {
    width: 32%;
  }
}

.smart03 {
  position: relative;
  background: var(--color-gray);
  color: #000000;
  overflow: hidden;
}

.smart03__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.smart03__inner {
  position: relative;
  max-width: var(--width-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.smart03__deco {
  position: absolute;
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 8.125rem);
  line-height: 1.3;
  color: var(--smart03-deco);
  pointer-events: none;
  white-space: nowrap;
}

.smart03__deco--left {
  left: 2.4rem;
  top: 8%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left center;
}

.smart03__deco--right {
  right: 2.3rem;
  top: 50%;

  transform: translateY(-50%) rotate(270deg);
  transform-origin: right center;
}

.smart03__intro {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.smart03__intro-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.smart03__intro-angle {
  width: clamp(2rem, 5vw, 3.875rem);
  height: auto;
}

.smart03__intro-angle--right {
  transform: scaleX(-1);
}

.smart03__intro-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}

.smart03__intro-smart-img {
  display: block;
  height: clamp(1.25rem, 3vw, 1.6875rem);
  width: auto;
}

.smart03__intro-eyebrow-text {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 1.025rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.smart03__intro-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.smart03__intro-body {
  max-width: 54.8125rem;
  margin: 0 auto;
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.smart03__intro-body p {
  margin: 0 0 0.1em;
}

.smart03__intro-body p:last-child {
  margin-bottom: 0;
}

.smart03__intro-body .accent {
  font-weight: 700;
  color: var(--color-red);
}

.smart03__steps-footer {
  grid-column: 1 / 4;
  grid-row: 3;
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
}

.smart03__steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(15rem, 37.75rem) 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
  align-items: start;
  max-width: 72rem;
  margin: 0 auto;
}

.smart03__steps-hero-wrap {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-self: start;
  width: 100%;
}

.smart03__steps-hero {
  display: block;
  width: 100%;
  max-width: 37.75rem;
  height: auto;
}

.smart03__step {

  padding: 0.5rem;
  border-radius: 0.5rem;

}

.smart03__step--1 {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  margin-top: 3rem;
  padding-right: 0;
}

.smart03__step--2 {
  grid-column: 1 / 4;
  grid-row: 2;
  justify-self: center;
  max-width: 30rem;
  display: flex;
  gap: 1.2rem;
}

.smart03__step--3 {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  margin-top: 1rem;
  padding-left: 0;
}

.smart03__step-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.8;
  color: var(--color-red);
}

.smart03__step-desc {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.smart03__step-thumb {
  position: relative;
  width: 100%;
  max-width: 12.125rem;
  margin: auto;
  margin-top: 0.75rem;
}

.smart03__step-thumb img {
  width: 100%;
  height: 100%;

  display: block;
}

@media (max-width: 1024px) {
  .smart03__steps {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .smart03__step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 99%;
    margin: 0;
    margin-top: 1.3rem;
    gap: 0;
  }

  .smart03__steps-hero-wrap {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }

  .smart03__step-thumb {
    margin: 0;
    max-width: 150px;
    width: 30%;
  }

  .smart03__step--2 {
    max-width: unset;
  }

  .smart03__step--3 {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    justify-self: stretch;
  }

  .smart03__step--1 {
    grid-column: 1;
    grid-row: auto;
    order: 3;
    justify-self: stretch;
  }

  .smart03__step--2 {
    grid-column: 1;
    grid-row: auto;
    order: 4;
    justify-self: stretch;
  }

  .smart03__steps-footer {
    grid-column: 1;
    grid-row: auto;
    order: 5;
  }

  .topics__text {
    text-align: left;
  }
}

.smart04 {
  position: relative;
  background: #ffffff;
  color: #000000;
}

.smart04__inner {
  max-width: var(--width-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 5.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 3rem);
}

.smart04__head {
  text-align: center;
  width: 100%;
  max-width: 54.8125rem;
}

.smart04__head-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.smart04__head-angle {
  width: clamp(2rem, 5vw, 3.875rem);
  height: auto;
}

.smart04__head-angle--right {
  transform: scaleX(-1);
}

.smart04__head-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.smart04__head-eyebrow span {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.smart04__head-eyebrow img {
  height: clamp(1.25rem, 3vw, 1.6875rem);
  width: auto;
}

.smart04__title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
}

.smart04__body {
  max-width: 54.8125rem;
  width: 100%;
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  font-feature-settings: "palt" 1;
}

.smart04__body .accent {
  font-weight: 700;
  color: var(--color-red);
}

.smart04__body p {
  margin: 0 0 0.75em;
}

.smart04__hero {
  width: 100%;
  max-width: 70.5rem;
  aspect-ratio: 1128 / 336;
  overflow: hidden;
  background: #e5e5e5;
}

.smart04__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {
  .smart04__hero img {
    min-height: 10rem;
  }
}

.smart04__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .smart04__head-angle {}
}

.price {
  background: var(--color-red);
  color: #ffffff;
  position: relative;
}

.price__inner {
  max-width: var(--width-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1rem, 4vw, 5.25rem) clamp(3rem, 8vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.3125rem);
}

.price__head {
  text-align: center;
  width: 100%;
  max-width: 51.125rem;
}

.price__eyebrow {
  margin: 0 0 0.375rem;
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.647;
  color: var(--color-accent);
}

.price__title {
  margin: 0 0 clamp(1.5rem, 4vw, 2rem);
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.7rem, 5vw, 3.25rem);
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-accent);
}

.price__head-body {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.price__head-body .accent {
  color: #ffffff;
}

.price__head-body p {
  margin: 0px 0 0.1em;
}

.price__card {
  position: relative;
  width: 100%;
  max-width: 45.875rem;
}

.price__card-frame {
  display: block;
  width: 100%;
  height: auto;
}

.price__card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 4% 7% 4%;
  box-sizing: border-box;
}

.price__card-campaign-row {
  display: flex;
  gap: clamp(0.75rem, 2vw, 0.8rem);
  margin-bottom: 0.6rem;
  min-height: 3.125rem;
  justify-content: center;
}

.price__logo {
  flex-shrink: 0;
  width: clamp(5.1rem, 12vw, 6.95rem);
  height: auto;
}

.price__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.price__campaign {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.8;
  color: var(--color-red);
  text-align: left;
}

.price__main {

  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);

}

.price__secondary {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  justify-content: center;
}

.price__primary {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2.2rem;
  gap: 0.5rem;
}

.price__primary-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price__primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.75rem;
  min-height: 2.5rem;
  padding: 0.25rem 0.5rem;
  background: var(--color-red);
  font-family: var(--font-noto);
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  color: #ffffff;
  margin-right: 0.5rem;
}

.price__primary-amount {
  font-family: var(--font-gsf);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-red);
}

.price__primary-amount--lg {
  font-size: clamp(2.7rem, 6vw, 3.75rem);
  margin: 0;
  line-height: 1;
}

.price__primary-amount--md {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  margin: 0;
}

.price__primary-note {
  font-family: var(--font-noto);
  font-weight: 800;
  font-size: 0.6875rem;
  color: var(--color-red);
  margin: 0;
}

.price__secondary-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  border: 3px solid var(--color-red);
  padding: 0 0.3rem;
  margin-right: 0.4rem;
}

.price__secondary-amount {
  font-family: var(--font-gsf);
  font-weight: 500;
  font-size: clamp(0.9rem, 2.5vw, 1.0625rem);
  line-height: 1.5;
  color: var(--color-red);
}

.price__secondary-note {
  font-family: var(--font-noto);
  font-weight: 800;
  font-size: 0.6875rem;
  color: var(--color-red);
}

.price__footnotes {

  padding-top: 0.65rem;

  font-family: var(--font-noto);
  font-size: 0.75rem;
  line-height: 1.6;
  color: #000000;
}

.price__footnotes p {
  margin: 0 0 0.25em;
}

.price__footnotes .accent {
  color: var(--color-red);
  font-weight: 700;
}

.price__services {
  position: relative;
  width: 100%;
  max-width: 70.5rem;
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid;
}

.price__services-deco {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 70.5rem);
  height: auto;
  max-height: 21.875rem;
  pointer-events: none;
  opacity: 0.95;
}

.price__services-title {
  position: absolute;
  z-index: 1;
  margin: 0 0 clamp(1.5rem, 4vw, 2rem);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
  left: 0;
  right: 0;
  top: -2rem;
  background: #c8161d;
  width: max-content;
  margin: auto;
  padding: 0 2rem;
}

.price__services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem clamp(1rem, 3vw, 1.5rem);
  padding: 0 0rem 0 3rem;
  margin-top: 0;
}

.price__service-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  text-align: center;
  text-align: left;
}

.price__service-thumb {
  position: relative;
  width: 37%;
  aspect-ratio: 96 / 143;
  overflow: hidden;
}

.price__service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.price__service-label {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.price__cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  /* max-width: 21.5rem; */
  flex-direction: column;
}

.price__cta-side {
  flex: 1 1 12rem;
  min-width: 23.25rem;
  width: 25vw;
  height: auto;
  display: block;
  position: absolute;
  left: 2%;
  bottom: 0;
}

.price__cta-side--right {
  left: auto;
  right: 2%;
}

.price__cta {
  /* flex: 1 1 20rem; */
  text-align: center;
  max-width: 38.75rem;
}

.price__cta-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.price__cta-title .accent {
  color: var(--color-accent);
}

.price__cta-body {
  margin: clamp(1rem, 3vw, 1.5rem) 0 0;
  font-family: var(--font-noto);
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.price__note {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-family: var(--font-noto);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  opacity: 0.9;
  position: absolute;
  bottom: 2rem;
  left: 10%;
}

@media (max-width: 1024px) {
  .price__services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .price__services-grid {
    padding: 0.2rem 1.5rem;
    margin-bottom: 0.4rem;
  }

  .price__main {
    flex-direction: column;
  }
}

.btn-wrap {
  background: white;
  padding: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-wrap__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2.5vw, 2rem) clamp(2rem, 5vw, 3rem);
  min-height: 6.875rem;
  min-width: min(100%, 35.875rem);
  background: var(--color-navy);
  border: 0.125rem solid var(--color-navy);
  border-radius: 18.75rem;
  color: #ffffff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
  transition: all 0.2s;
}

.btn-wrap__btn:hover {
  opacity: 0.85;
  background: #ffffff;
  color: var(--color-navy);
  border: 0.125rem solid var(--color-navy);
  transition: all 0.2s;
}

.btn-wrap__btn-icon {
  width: 0.4375rem;
  flex-shrink: 0;
  position: absolute;
  right: 6%;
}

.btn-wrap__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq {
  background: var(--color-gray);
  padding: clamp(2.5rem, 6vw, 6.5rem) clamp(1rem, 4vw, 5.25rem);
}

.faq__inner {
  max-width: 70.375rem;
  margin: 0 auto;
}

.faq__title {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 3.375rem);
  line-height: 1.4;
  color: var(--color-red);
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: #ffffff;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq__question-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2.5rem;
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1;
  color: var(--color-red);
}

.faq__question-text {
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #000000;
  width: max-content;
}

.faq__question-toggle {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  position: relative;
  margin-left: auto;
}

.faq__question-toggle::before,
.faq__question-toggle::after {
  content: "";
  position: absolute;
  background: var(--color-red);
  transition: transform 0.2s ease;
}

.faq__question-toggle::before {
  width: 100%;
  height: 0.125rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq__question-toggle::after {
  width: 0.125rem;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq__item.is-open .faq__question-toggle::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq__answer {

  padding: 2.5rem 5.8rem;

  position: relative;
  max-height: 0;
  padding: 0 5.8rem;
  transition: 0.3s;
}

.faq__item.is-open .faq__answer {

  max-height: max-content;

  padding: 2.5rem 5.8rem;
  transition: 0.3s;
}

.faq__answer-inner {
  font-family: var(--font-noto);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #000000;

}

.faq__answer-inner p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq__answer {
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.topics {
  background: #ffffff;
  padding: clamp(3.2rem, 6vw, 6.5rem) clamp(1rem, 4vw, 5.25rem);
  padding-bottom: 11rem;
}

.topics__inner {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14%;
  justify-content: center;
}

.topics__title {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 3.375rem);
  line-height: 1;
  color: var(--color-red);
}

.topics__body {
  flex: 1;
  min-width: 0;
  max-width: 48.0625rem;
}

.topics__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topics__item {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: start;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  border-bottom: 0.125rem solid var(--tf-line);
}

.topics__item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.topics__date {
  font-family: var(--font-gsf);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.87;
  color: var(--tf-date);
  white-space: nowrap;
}

.topics__text {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #000000;
}

.topics__link {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .topics__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .topics__title {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }

  .topics__body {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .topics__item {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.footer {
  position: relative;
  color: #ffffff;
  position: relative;
}

.footer__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: url(../img/modal-bg-2.webp) no-repeat center center / cover;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 5vw, 5rem) clamp(1.5rem, 4vw, 2rem);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.footer__logo {
  width: clamp(7rem, 15vw, 9.75rem);
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.footer__nav a {
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.footer__nav a:hover {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.75rem, 2vw, 1.875rem);
}

.footer__social a {
  display: block;
  line-height: 0;
  opacity: 0.95;
}

.footer__social a:hover {
  opacity: 1;
}

.footer__social img {
  display: block;
  width: auto;
}

.footer__social .footer__social-icon--ig {
  width: 2.0625rem;
  height: 2.0625rem;
  object-fit: cover;
}

.footer__social .footer__social-icon--fb {
  width: 1.875rem;
  height: 1.9375rem;
  object-fit: cover;
}

.footer__social .footer__social-icon--line {
  height: 1.875rem;
  max-width: 10.125rem;
  width: auto;
  object-fit: contain;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

}

.footer__privacy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  flex-direction: row-reverse;
}

.footer__privacy:hover {
  text-decoration: underline;
}

.footer__privacy-icon {
  width: 0.5rem;
  height: 0.5rem;
}

.footer__copy {
  margin: 0;
  font-family: var(--font-gsf);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.75;
  color: #f3b7c0;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .section__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer__top {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .footer__social {
    justify-content: center;
    margin-right: -0.4rem;
    align-items: center;
    gap: 1.9rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: end;
    gap: 0.8rem;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 70.5rem;
  max-height: 90vh;
  background: #ffffff;
  overflow-y: auto;
  padding: 4rem 3rem;
}

.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.25rem;
  aspect-ratio: 1/1;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
  transition: opacity 0.2s;
}

.modal__close:hover {
  opacity: 0.7;
}

.modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}

.modal__body {
  background: url("../img/Group 616.svg") no-repeat;
  padding-top: 1.8rem;
  display: flex;
  flex-direction: column;
}

.modal__row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
  gap: 1.3rem;
}

.modal__row:last-child {
  margin-bottom: 0;
}

.modal__row-left {
  flex: 0 0 auto;
  width: 30%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem 2.5rem;
}

.modal__row-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #c8161d;
  display: none;
}

.modal__row-name {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
}

.modal__row-left--crimson .modal__row-name,
.modal__row-left--coral .modal__row-name {
  color: #ffffff;
}

.modal__row-left--pink .modal__row-name {
  color: #c8161d;
}

.modal__row-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.625rem;
  font-family: "Google Sans Flex", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.87;
  min-width: 6rem;
}

.modal__row-left--crimson .modal__row-badge,
.modal__row-left--coral .modal__row-badge {
  border: 0.0625rem solid #ffffff;
  color: #ffffff;
}

.modal__row-left--pink .modal__row-badge {
  border: 0.0625rem solid #c8161d;
  color: #c8161d;
}

.modal__row-content {
  flex: 1;
  min-width: 0;
  padding: 1.8rem 0rem;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 2px solid var(--color-red);
}

.modal__row-content p {
  margin: 0 0 0.5em;
}

.modal__row-content p:last-child {
  margin-bottom: 0;
}

.modal__row-content .dot {
  color: #c8161d;
}

.schedule-modal {
  z-index: 1001;
}

.schedule-modal__body {
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 3vw, 2rem);
  padding-bottom: 0;
  position: relative;
  background: url(../img/modal-1-img-1.webp) no-repeat 5% center / contain;
}

#schedule-modal-2 .schedule-modal__body {
  background: url(../img/modal-2-img-1.webp) no-repeat left center / contain;
}

#schedule-modal-3 .schedule-modal__body {
  background: url(../img/modal-3-img-1.webp) no-repeat right center / contain;
  padding-bottom: 4rem;
}

#schedule-modal-4 .schedule-modal__body {
  background: url(../img/modal-4-img-1.webp) no-repeat right center / contain;
  padding-bottom: 4rem;
}

#schedule-modal-3 .schedule-modal__figure--phone,
#schedule-modal-4 .schedule-modal__figure--phone {
  max-width: 39rem;
}

.schedule-modal__eyebrow {
  margin: 0 0 0.5rem;
  font-family: "Google Sans Flex", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #c8161d;
  text-align: center;
  letter-spacing: 0.02em;
}

.schedule-modal__title {
  margin: 0 0 clamp(1rem, 3vw, 1.5rem);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ffffff;
}

.schedule-modal__en {
  margin: 0 0 clamp(1rem, 3vw, 1.5rem);
  font-family: "Google Sans Flex", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 6vw, 3.375rem);
  line-height: 1.05;
  color: #ece171;
  text-align: center;
  letter-spacing: 0.02em;
}

.schedule-modal__text {
  margin: 0 auto clamp(1.5rem, 4vw, 2rem);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(0.8rem, 2vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ffffff;
}

.schedule-modal .modal__panel--schedule {
  background: url(../img/modal-bg-2.webp) no-repeat center center / cover;
  padding: 0;
}

.schedule-modal__figure {
  margin: 0 auto;
  max-width: 70.5rem;
}

.schedule-modal__figure img {
  display: block;
  width: 100%;
  height: auto;

}

.schedule-modal__figure--phone {
  max-width: 19rem;
}

.body .concept__body-text2 {
  margin-bottom: 6rem;
}

.swiper {
  position: static;
}

.swiper-wrapper {
  padding: 0;
}

.smart01__interview-cards {
  position: relative;
}

.smart01__interview-card {
  height: auto;
}

.swiper-button-prev {
  left: -1.8rem;
}

.swiper-button-next {
  right: -1.8rem;
}

.swiper-button-next,
.swiper-button-prev {
  width: max-content;
}

.swiper-button-prev::after {
  background-image: url(../img/swiper_button_left.webp);
}

.swiper-button-next::after {
  background-image: url(../img/swiper_button_right.webp);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 0;
  width: 3.6rem;
  height: 3.6rem;
  background-size: cover;
}

.price__primary .price__primary-note {
  margin-bottom: 0.6rem;
}

.faq__answer:before {
  content: "";
  width: 95%;
  display: block;
  height: 2px;
  background: var(--color-red);
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
}

.fix-banner {
  display: block;
  position: fixed;
  max-width: 372px;
  right: 2rem;
  bottom: 1rem;
  z-index: 10;
}

.fix-banner img {
  max-width: 100%;
}

.fix-banner__img--hover {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.fix-banner:hover .fix-banner__img--hover {
  opacity: 1;
  transition: opacity 0.2s;
}

.body .mg-b-0 {
  margin-bottom: 0;
}


.smart02__schedule-viz-btn-hover {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.smart02__schedule-viz-btn-hover:hover {
  opacity: 1;
  transition: opacity 0.2s;
}

.smart01__steps:before {
  content: "";
  height: 6rem;
  background: #FCCDCE;
  width: 100%;
  display: block;
  top: 6.7rem;
  position: absolute;
}

.faq__question:hover .faq__question-text {}

.body .footer a {
  text-decoration: none;
}

.footer .footer__inner a:hover {
  opacity: 0.5;
  transition: opacity 0.2s;
}

.swiper-button-next,
.swiper-button-prev {
  opacity: 1;
  transition: opacity 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.5;
  transition: opacity 0.2s;
}

.modal__row:last-of-type .modal__row-content {
  border-bottom: 2px solid var(--color-red);
}

.kv__header.fixed {
  background: white;
  position: fixed;
  border-bottom: 2px solid var(--color-red);
  animation: header-fixed 0.2s forwards;
}

.kv__header.hiding {
  animation: header-fixed-reverse 0.2s forwards;
}

.kv__header.fixed * {
  color: var(--color-red);
}

.kv__header.fixed .kv__logo-mark img {
  filter: none;
}

.intro-head:before,
.intro-head:after {
  content: "";
  display: block;
  aspect-ratio: 50/97;
  background: url(../img/h2-deco.svg) no-repeat 100%;
  width: 3.9rem;
}

.intro-head:after {
  transform: rotate(180deg);
}

.kv__rabbit {
  position: absolute;
  width: 50%;
  z-index: -1;
  right: 0;
}

.kv__rabbit--white {
  right: 13%;
  width: 45%;
  top: 17%;
  max-width: 550px;
}

.kv__rabbit--black {
  width: 62%;
  top: 12%;
  right: -8%;
  max-width: 750px;
}

.kv__achive-image {
  width: 33%;
}

.kv__achive-image:not(:last-child) {
  margin-right: -5%;
}

.intro-head-wrap {
  overflow: hidden;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.intro-head {
  margin-bottom: 0;
}

.aos-animate.c_animate .-move {
  opacity: 1;
}

.c_animate.-bounce-in>* {
  transform: scale(0.5) translateY(50px);
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0;
}

.aos-animate.c_animate.-bounce-in>*.-move {
  animation: bounceIn2 0.8s forwards;
}

.footer__bottom__links {
  display: flex;
  width: 100%;
  gap: 1.3rem;
}

.footer__bottom__links a {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer__box {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.footer__breadcrumbs-wrap {
  margin: 0;
  background: #FEF4F5;
}

.footer_breadcrumbs {
  margin: auto;
  max-width: 1300px;
  display: flex;
  padding: 1.5rem 1rem;
}

.footer_breadcrumbs__item a {
  color: #7E7E7E;
  font-weight: 500;
}

.footer_breadcrumbs__item.current a {
  color: black;
}

.footer_breadcrumbs__item:not(.current):after {
  content: "〉";
  color: black;
  font-size: 0.6rem;
  font-weight: 800;
  margin: 0 0.7rem;
}

.footer_breadcrumbs__item {
  display: flex;
  align-items: center;
}

body:not(.topPage) .concept__cta-wrap {
  margin: 0 auto;
}

.footer_breadcrumbs__item.current a:hover {
  color: #7E7E7E;
}

.topPage .footer__breadcrumbs-wrap {
  display: none;
}

.section__inner {
  padding-top: clamp(3rem, 8vw, 6.5rem);
  padding-bottom: clamp(3rem, 8vw, 6.5rem);
}

.smart01__interview .smart01__inner {
  padding-top: 0;
}

.topics__inner,
.faq__inner {
  padding: 0;
}

.price__card-campaign-row .price__primary-badge {
  margin: 0;
}

.price__card-campaign-row .price__primary-label {
  margin: 0;
}

.footer_breadcrumbs {
  font-family: var(--font-noto);
}

.tag_news:before {
  content: "NEWS";
  background: var(--color-red);
  color: white;
  font-size: 0.8rem;
  padding: 0.1rem 0.3rem;
  margin-right: 0.6rem;
}

.topics__item a {
  color: var(--color-navy);
  transition: all 0.2s;
  text-decoration: none;
}

.topics__item a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}

.topics__item a:after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.7rem;
  background: url("/img/company/link-mark.svg") no-repeat;
  background-size: contain;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
  margin-bottom: 0.2rem;
}

.topics__item a {
  margin-left: 0.2rem;
}

@keyframes bounceIn2 {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes header-fixed {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes header-fixed-reverse {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

@media screen and (max-width: 1050px) {
  #body *:hover {
    cursor: default;
    text-decoration: none;
  }
}

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

  .kv {
    background-position-x: 84%;
    background-position-y: -6%;
    background-size: cover;
  }

  .kv__inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(255, 255, 255, 0) 24%, var(--color-red) 75%, var(--color-red));
    z-index: -1;
  }

  .kv__inner {
    padding-top: 83vw;
  }

  .kv__tagline {
    width: 86%;
    margin: auto;
    text-align: center;
  }

  .kv__logo-image-wrap {
    margin: auto;
    margin-bottom: 1.4rem;
    width: 83%;
  }

  .kv__stats-image-wrap {
    margin: auto;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    justify-content: center;
  }

  .modal__row {
    flex-direction: column;
    gap: 1rem;
  }

  .modal__row-left {
    width: 63%;
    padding-right: 1rem;
    padding: 0;
    margin: auto;
  }

  .modal__row-left::after {
    display: none;
  }

  .swiper-button-prev {
    left: clamp(-1rem, -4vw, -5.25rem);
    top: 60%;
  }

  .swiper-button-next {
    right: clamp(-1rem, -4vw, -5.25rem);
    top: 60%;
  }

  .concept__body p {
    margin: 0 0 clamp(1.5rem, 3.5vw, 2.5rem);
    font-size: 1rem;
  }

  .concept__title-line {
    margin-top: 0.6rem;
  }

  .body .concept__body-text2 {
    margin-bottom: 19rem;
  }

  .concept__cta-wrap {
    margin-top: 18rem;
  }

  .concept__decor--tl {
    width: 46%;
    top: 30.7%;
    left: -4%;
  }

  .concept__decor--tr {
    width: 54%;
    right: 4%;
    top: 28%;
  }

  .concept__decor--bl {
    width: 56%;
    bottom: 16.5%;
    left: 0;
  }

  .concept__decor--br {
    width: 36%;
    bottom: 29%;
    right: 0;
  }

  .concept__cta-panel {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .concept__cta-kage {
    display: block;
    width: 90%;
    left: 0;
    top: -20%;
    right: 0;
    margin: auto;
  }

  .concept__cta-kage-inner {
    width: 100%;
    aspect-ratio: 433 / 190;
  }

  .concept__cta-kage-inner img {
    width: 270%;
    max-width: none;
    left: -48%;
    top: -276%;
    height: auto;
  }

  .concept__btn,
  .smart04__btn,
  .smart02__chart-btn {
    padding: 0.7rem 2.5rem 0.7rem 2rem;
    min-height: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    width: 80%;
  }

  .concept__btn-icon,
  .smart04__btn-icon,
  .smart02__chart-btn-icon {
    font-weight: 700;
  }

  .concept__cta-line {
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1;
    align-items: flex-end;
  }

  .concept__cta-sub {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .smart01__intro-title {
    font-size: 1.6rem;
  }

  .section__inner {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0;
  }

  .smart01__step-title {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
  }

  .smart01__step-content {
    padding: 0.6rem 0 1.2rem;
  }

  .smart01__step-label {
    font-size: 1.3rem;
    line-height: 1.9;
  }

  .smart01__step-num {
    font-size: 4.4rem;
  }

  .smart01__steps:before {
    height: 80%;
    width: 22%;
    left: 0;
    right: 0;
    margin: auto;
  }

  .smart01__intro {
    margin-bottom: 2.3rem;
  }

  .smart01__check-shape {
    top: 2%;
    left: 0;
  }

  .smart01__interview-title {
    margin-bottom: 1.2rem;
  }

  .smart01__featured-thumb {
    width: 60%;
    margin: auto;
  }

  .smart01__featured-meta,
  .smart01__featured-name {
    font-size: 0.7rem;
    line-height: 1;
  }

  .smart01__featured-body {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  .smart01__featured-link {
    font-size: 1rem;
  }

  .smart01__featured-card {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .interview-title-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .smart01__interview-card-img {
    aspect-ratio: 2/1.2;
    width: 38%;
    margin-bottom: 0;
  }

  .smart01__interview-card-title {
    text-align: left;
    font-size: 0.95rem;
    width: 57%;
    margin-bottom: 0;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    width: 2.4rem;
    height: 2.4rem;
  }

  .smart01__interview-card-meta {
    font-size: 0.7rem;
  }

  .smart01__interview-card-name {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }

  .smart01__interview-card-body {
    font-size: 0.83rem;
    letter-spacing: 0;
    font-weight: 600;
  }

  .smart01__interview-logo {
    margin-right: auto;
    margin-left: 0;
    margin-top: 0.7rem;
    height: 1.6rem;
  }

  .smart02__week-title {
    gap: 0;
  }

  .smart02__intro {
    margin-bottom: 1rem;
  }

  .smart02__schedule-viz {
    margin-bottom: 3rem;
    aspect-ratio: auto;
  }

  .smart02__week-sub-line {
    display: none;
  }

  .smart02__week-sub {
    border-top: var(--color-red) 2px solid;
    margin-top: 2rem;
    justify-content: center;
  }

  .smart02__week-sub-label {
    font-size: 1.1rem;
    background: white;
    margin-top: -0.9rem;
    padding: 0 0.6rem;
  }

  .smart02__week-card {
    max-width: none;
    min-height: auto;
    height: auto;
    display: flex;
    align-items: center;
    padding: 3.6rem 2rem 3rem 0rem;
  }

  .smart02__week-card-icon-img {
    position: static;
    width: 41%;
  }

  .smart02__week-card-title {
    position: static;
    text-align: left;
    padding: 0;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }

  .smart02__week-card-desc {
    position: static;
    padding: 0;
    font-size: 0.9rem;
  }

  .smart02__week-card-dayimg {
    width: 80%;
  }

  .swiper-schedule {
    width: calc(100% + 2rem);
    position: relative;
    margin-left: -1rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
  }

  .swiper-schedule .swiper-button-next {
    right: 0%;
    top: 50%;
  }

  .swiper-schedule .swiper-button-prev {
    left: 0;
    top: 50%;
  }

  .smart03__step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 99%;
    margin: 0;
    margin-top: 1.3rem;
    gap: 0;
  }

  .smart03__step-thumb {
    margin: 0;
    max-width: 150px;
    width: 30%;
  }

  .smart03__step-text {
    width: 65%;
  }

  .smart03__step-desc {
    font-size: 0.9rem;
  }

  .smart02__chart-btn {
    width: 55%;
    padding: 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
  }

  .smart02__chart-btn span {
    font-size: 1rem;
    font-weight: 700;
  }

  .smart04__body p {
    margin-bottom: 2rem;
  }

  .smart04__hero {
    margin-bottom: 2.3rem;
    aspect-ratio: auto;
  }

  .price__head-body {
    margin-bottom: 2rem;
  }

  .price__head-body p {
    font-weight: 400;
  }

  .price__card-inner {
    position: relative;
    padding-top: 1.3rem;
    padding-bottom: 1rem;
  }

  .price__card-frame {
    position: absolute;
    height: 100%;
  }

  .price__card {
    width: calc(100% + 2rem);
  }

  .price__services-title {
    padding: 0 0.8rem;
    top: -1.2rem;
  }

  .price__services {
    border-width: 2px;
  }

  .price__service-thumb {
    width: 40%;
    aspect-ratio: auto;
  }

  .price__services {
    margin-bottom: 2rem;
    margin-top: 3rem;
  }

  .price__cta-side--right {
    position: static;
    margin-right: -62%;
    width: 85%;
  }

  .price__note {
    bottom: 1rem;
    font-size: 0.57rem;
    left: 0;
    right: 0;
  }

  .price__inner {
    padding-bottom: 0;
    overflow: hidden;
  }

  .price__cta-side {
    width: 67%;
    min-width: auto;
    flex: 0;
  }

  .price__cta-side--left {
    width: 73%;
    left: -4%;
    max-width: 277px;
  }

  .btn-wrap {
    padding: 3rem 1rem;
  }

  .btn-wrap__btn {
    text-align: center;
    font-weight: 500;
    min-height: auto;
  }

  .btn-wrap__btn-icon {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .faq__title {
    margin-bottom: 0.6rem;
  }

  .faq__question {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .faq__inner {
    padding: 0;
  }

  .faq__question-icon {
    height: auto;
    width: auto;
  }

  .faq__list {
    gap: 0.6rem;
  }

  .faq__item.is-open .faq__answer {
    padding: 1.5rem;
  }

  .faq__answer {
    padding: 0 1.5rem;
  }

  .faq__answer:before {
    width: 83%;
  }

  .faq__question:hover .faq__question-text {
    text-decoration: none;
  }


  .topics__list {
    text-align: left;
  }

  .topics__date {
    font-size: 0.8rem;
  }

  .topics__text {
    font-size: 0.8rem;
  }

  .topics__inner {
    padding: 0;
  }

  .footer__nav {
    flex-direction: column;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .footer__privacy {
    font-weight: 400;
    font-size: 0.6rem;
  }

  .smart03__deco--left {
    left: 1.2rem;
    top: 0;
  }

  .smart03__deco--right {
    top: auto;
    bottom: 0;
    right: 1.3rem;
    height: max-content;
    transform: translateY(-233%) rotate(270deg);
  }

  .kv__nav a {
    border-bottom: 2px solid;
    padding: 0.8rem 0;
    display: flex;
    justify-content: space-between;
  }

  .kv__nav a:after {
    content: "〉";
    margin-right: 0.7rem;
  }

  .kv__toggle {
    position: relative;
    z-index: 2;
  }

  .is-open .kv__nav a {
    color: white;
  }

  .kv__nav.is-open a {
    color: white;
  }

  .body .kv__logo-mark.is-open img {
    filter: brightness(20);
  }

  .kv__header {
    padding: 1rem;
    align-items: flex-start;
  }

  .kv__nav:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url();
    top: 0;
    left: 0;
    pointer-events: none;
  }

  .schedule-modal__body {
    background-size: 18%;
    background-position-y: top;
    background-position-x: 1%;
    padding-top: 2.9rem;
  }

  .modal__close {
    width: 1.2rem;
    top: 1rem;
    right: 1rem;
  }

  .schedule-modal__text {
    font-weight: 400;
    text-align: left;
    margin-bottom: 1rem;
  }

  .schedule-modal__en {
    margin-bottom: 0.9rem;
  }

  #schedule-modal-2 .schedule-modal__body {
    background-size: 25%;
    background-position: 0px top;
  }

  #schedule-modal-4 .schedule-modal__body {
    background-size: 36%;
    background-position: right bottom;
    padding-bottom: 8.5rem;
  }

  #schedule-modal-3 .schedule-modal__body {
    background-size: 42%;
    background-position: right bottom;
    padding-bottom: 8.5rem;
  }

  .modal__panel {
    padding: 1.8rem;
    padding-top: 3rem;
  }

  #level-chart-modal {
    align-items: flex-start;
  }

  #level-chart-modal .modal__panel {
    height: calc(100dvh - 2rem);
  }

  .modal__body {
    background: none;
    padding: 0;
  }

  .modal__row-content {
    font-size: 0.9rem;
    border: none;
    text-indent: -0.8rem;
    padding-left: 0.5em;
    line-height: 1.7;
    padding-top: 0.3rem;
    padding-bottom: 0.7rem;
  }

  .modal__row:last-of-type .modal__row-content {
    border: none;
  }

  .modal__row-name {
    font-size: 1rem;
    padding-left: 1rem;
  }

  .modal__row-content p {
    margin-bottom: 0;
    font-feature-settings: "palt" 1;
  }

  #level-chart-modal .modal__close {
    position: fixed;
    top: 2rem;
    right: 2rem;
  }

  .footer__social .footer__social-icon--fb,
  .footer__social .footer__social-icon--ig {
    width: 1.6rem;
    height: 1.6rem;
  }

  .footer__copy {
    font-size: 0.6rem;
  }

  .footer__social .footer__social-icon--line {
    max-width: 150px;
  }

  .footer__inner {
    gap: 3.4rem;
  }

  .fix-banner {
    left: 0;
    right: 0;
    bottom: 0.2rem;
    margin: auto;
    width: 95%;
  }

  .kv__toggle {
    background: none;
    border: none;
    padding: 0;
    height: 40px;
  }

  .kv__toggle:not(.is-open) .menu-close {
    opacity: 0;
  }

  .menu-close {
    position: absolute;
    top: 0;
    right: 0;
  }

  .kv__toggle.is-open .menu-open {
    opacity: 0;
  }

  .smart01__check {
    background: url(../img/check-bg-sp.svg) no-repeat;
    background-size: 100% 100%;
  }

  .smart02__schedule-viz-btn--1 {
    top: 2%;
    left: 33%;
  }

  .smart02__schedule-viz-btn--2 {
    top: 16%;
    left: 64%;
  }

  .smart02__schedule-viz-btn--3 {
    top: 75%;
    left: 34%;
  }

  .smart02__schedule-viz-btn--4 {
    left: 13%;
  }

  .modal__row {
    background-image: url(../img/chart-bg-red.webp);
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 1.5rem;
  }

  .modal__row--2,
  .modal__row--5 {
    background-image: url(../img/chart-bg-pink.webp);
  }

  .modal__row--3,
  .modal__row--6 {
    background-image: url(../img/chart-bg-pink-2.webp);
  }

  .modal__row-badge {
    padding: 0.4rem;
    font-size: 0.8rem;
    line-height: 1;
    min-width: auto;
  }

  .intro-head:before,
  .intro-head:after {
    background: url(../img/h2-deco-sp.svg) no-repeat 100%;
    width: 2.8rem;
  }

  .intro-head {
    justify-content: space-between;
    gap: 0;
  }

  .price__card-campaign-row {
    min-height: auto;
    align-items: end;
    margin-bottom: 0.8rem;
    gap: 0.4rem;
  }

  .price__campaign {
    line-height: 1;
    font-size: 1rem;
  }

  .price__primary-label {
    margin: 0;
  }

  .price__primary-badge {
    min-height: auto;
    min-width: auto;
  }

  .price__primary {
    align-items: center;
    margin-bottom: 1.2rem;
  }

  .price__primary .price__primary-note {
    margin-bottom: 0.3rem;
    margin-top: auto;
  }

  .price__secondary-row {
    border: 2px solid var(--color-red);
    padding: 0 0.2rem;
  }

  .price__secondary .price__primary-note {
    font-size: 0.6rem;
    margin-top: 0.5rem;
  }

  .price__secondary-amount {
    line-height: 1.3;
  }

  .price__footnotes {
    font-size: 0.6rem;
    padding-top: 0.4rem;
  }

  .price__footnotes .accent {
    font-size: 0.7rem;
    margin: 0;
  }

  .price__service-label {
    width: 55%;
  }

  .price__cta-side--right-pic {
    margin-right: -69%;
  }

  .topics {
    padding-bottom: 6rem;
  }

  .footer__inner {
    padding-bottom: 4rem;
  }

  .price__eyebrow {
    font-size: 0.9rem;
  }

  .kv__header:not(.fixed) .menu-open-fixed {
    display: none;
  }

  .footer__bottom__links {
    flex-wrap: wrap;
    justify-content: end;
    margin-top: 0.4rem;
  }

  .footer__bottom__links a {
    font-size: 0.6rem;
  }

  .kv__rabbit--black {
    max-width: none;
    width: 148%;
    top: 5%;
    right: -29%;
  }

  .kv__rabbit--white {
    max-width: none;
    width: 108%;
    right: 21%;
    top: 10%;
  }

  .kv__header.fixed {
    padding: 0.7rem;
  }

  .footer_breadcrumbs__item a {
    font-size: 0.8rem;
  }

  .footer_breadcrumbs {
    padding: 0.7rem 1.5rem;
  }

  .kv__achive-image {
    width: 37%;
  }

  .concept__cta-inner {
    background-size: cover;
    background-position-x: center;
  }

  .modal__row-content .dot {
    font-feature-settings: normal;
  }

  body.is-open {
    overflow-y: clip;
  }

  .body .smart02__schedule-viz-btn-hover {
    display: none;
  }

  .smart02__week-card-body {
    width: 59%;
  }

  .smart03__step-title .sub-title {
    font-size: 1rem;
    margin-bottom: -0.2rem;
    display: block;
  }

  .smart03__step.smart03__step--1 {
    order: 2;
  }

  .smart03__step.smart03__step--3 {
    order: 4;
  }

  .smart03__step.smart03__step--2 {
    order: 2;
    max-width: none;
  }

  .tag_news:before {
    font-size: 0.7rem;
    margin-right: 0.4rem;
  }

  .topics__item a:after {
    width: 0.65rem;
    height: 0.55rem;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    margin-bottom: 0.2rem;
  }
}

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

  .smart02__week-cards {
    margin-top: 2rem;
    gap: 0;
    justify-content: space-between;
  }

  .swiper-schedule .swiper-button-next,
  .swiper-schedule .swiper-button-prev {
    display: none;
  }

  .smart02__week-card {
    margin: 0;
  }

  .price__services {
    margin-top: 1.5rem;
  }

  .hover-anime {
    position: relative;
  }

  a.hover-anime::after,
  .smart01__featured-link::after,
  .faq__question-text::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #ffffff;
    bottom: -2px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }

  a.hover-anime:hover::after,
  .smart01__featured-card:hover .smart01__featured-link::after,
  .faq__question:hover .faq__question-text::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  .fixed a.hover-anime::after {
    background: var(--color-red);
  }

  .smart01__featured-link.hover-anime::after,
  .faq__question-text.hover-anime::after,
  .instructor-profile__featured-link.hover-anime::after {
    background: var(--color-navy);
  }
}

@media screen and (min-width: 1350px) {
  .kv__inner {
    max-width: 1500px;
    width: 85vw;
  }

  .kv__logo-image-wrap {
    max-width: none;
    margin-bottom: 11%;
  }

  .kv__column {
    width: 53%;
    max-width: none;
  }

  .kv__rabbit--white {
    max-width: none;
    width: 45%;
    right: 13%;
    top: 14%;
  }

  .kv__rabbit--black {
    max-width: none;
    width: 60%;
    top: 9%;
    right: -7%;
  }

  .kv__stats-image-wrap {
    max-width: none;
    width: 85%;
  }

  .kv__tagline {
    font-size: min(1.63vw, 1.9rem);
    line-height: 1;
  }

  .kv__caption-body {
    font-size: min(0.8vw, 14px);
  }

  .price__cta-side--right {
    right: 7%;
  }

  .price__cta-side--left {
    left: 5%;
  }

  .price__note {
    left: 13%;
  }

  .smart04__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .smart04__head .intro-head-wrap {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 500px) and (max-width: 768px) {
  .smart01__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .smart01__interview-featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept__decor--tr {
    width: 27%;
    right: 4%;
    top: 25%;
  }

  .concept__decor--bl {
    width: 25%;
    bottom: 21.5%;
    left: 0;
  }

  .concept__decor--br {
    width: 30%;
    bottom: 25%;
    right: 0;
  }

  .concept__decor--tl {
    width: 32%;
    top: 30.7%;
    left: -4%;
  }

  .body .concept__body-text2 {
    margin-bottom: 3rem;
  }

  .concept__cta-panel {
    width: 70%;
    margin-left: -18px;
    margin: auto;
  }

  .concept__cta-wrap {
    margin-top: 4rem;
  }

  .fix-banner {
    max-width: 500px;
  }

  .smart02__week-card {
    max-width: none;
    min-height: 21rem;
    height: 100%;
  }

  .topics {
    padding-bottom: 9rem;
  }

  .smart01__steps:before {
    height: 60%;
  }

  .intro-head {
    justify-content: space-around;
  }

  .schedule-modal__text {
    text-align: center;
  }

  .price__service-card {
    align-items: center;
    justify-content: center;
  }

  .price__service-thumb {
    width: 24%;
  }

  .price__services-grid {
    gap: 0;
    width: max-content;
    margin: auto;
  }

  .price__service-label {
    width: 50%;
  }

  .price__services {
    width: max-content;
  }

  .btn-wrap {
    padding: 3rem 1rem;
    max-width: 500px;
    margin: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
  .smart01__featured-top {
    display: flex;
    flex-direction: column;
  }

  .sub-title.sp {
    display: block;
  }

  .smart03__step {
    width: 75%;
    margin: auto;
    margin-top: 1.3rem;
  }

  .smart03__step-text {
    width: 71%;
  }

  .price__cta-band {
    justify-content: flex-start;
    height: 26rem;
  }

  .price__service-thumb {
    width: 35%;
  }

  .price__service-card,
  .price__services,
  .price__services-grid {
    width: max-content;
  }

  .smart01__check {
    width: 80%;
  }

  .concept__decor--bl {
    bottom: 14rem;
  }

  .concept__decor--br {
    bottom: 22rem;
  }

  .kv__logo-image-wrap {
    max-width: 26rem;
    margin-bottom: 2rem;
  }

  .kv__rabbit--white {
    right: 16%;
    width: 41%;
  }

  .kv__rabbit--black {
    width: 55%;
    right: -5%;
  }

  .smart02__week-card {
    max-width: unset;
  }

  .smart02__week-card-icon-img {
    left: 0;
    right: 0;
    margin: auto;
  }

  .smart01__steps {
    padding: 0 2rem;
  }
}