/* ==============================
   TOP PAGE STYLES
   ============================== */

/* --- SP-only line break (hidden on desktop) --- */
br.sp-only { display: none; }

/* --- Header --- */
.tt-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 56px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.tt-header.is-scrolled {
  background: var(--color-white);
  box-shadow: 0 4px 10px rgba(79, 79, 79, 0.08);
}

.tt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1328px;
  margin: 0 auto;
}

.tt-header__logo {
  height: 48px;
  transition: var(--transition);
}

.tt-header__logo:hover {
  opacity: 0.8;
}

.tt-header__logo img {
  height: 100%;
  width: auto;
}

.tt-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tt-header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tt-header__menu li a {
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  position: relative;
}

.tt-header__menu li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tt-header__menu li a:hover::after {
  transform: scaleX(1);
}

/* --- FV (First View) --- */
.tt-fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  height: calc(100dvh - 80px);
  min-height: 600px;
  overflow: hidden;
}

.tt-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tt-fv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tt-fv__inner {
  position: relative;
  z-index: 2;
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 56px;
  height: 100%;
  min-height: 600px;
}

.tt-fv__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.tt-fv__marquee-inner {
  display: flex;
  gap: 16px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.tt-fv__marquee-text {
  font-family: var(--font-english);
  font-size: 148.864px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 5.955px;
  line-height: 140%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tt-fv__content {
  position: relative;
  z-index: 2;
  padding-top: 186px;
  max-width: 560px;
}

.tt-fv__badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}

.tt-fv__badge-frame {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 8px;
}

.tt-fv__badge-label {
  font-family: var(--font-main);
  font-size: 21px;
  font-weight: 500;
  color: var(--color-white);
}

.tt-fv__badge-num {
  font-family: var(--font-english);
  font-size: 39px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.tt-fv__title {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 4.48px;
  color: var(--color-white);
  margin: 0 0 16px;
}

.tt-fv__desc {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0 0 32px;
}

.tt-fv__btns {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.tt-fv__btns .tt-btn__icon {
  flex-shrink: 0;
}

.tt-fv__btns .tt-btn--primary .tt-btn__icon {
  width: 18px;
  height: 18px;
}

.tt-fv__images {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: -10px;
}

.tt-fv__img-main {
  position: relative;
  z-index: 1;
}

.tt-fv__img-main img {
  width: 630px;
  height: auto;
}

.tt-fv__img-sub {
  position: absolute;
  top: 80px;
  left: -140px;
  z-index: 3;
}

.tt-fv__img-sub img {
  width: 390px;
  height: auto;
}


.tt-fv__illust {
  position: absolute;
  z-index: 3;
  line-height: 0;
}

.tt-fv__illust svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tt-fv__illust--circle-lg {
  width: 184.484px;
  height: 184.484px;
  top: 110px;
  right: -80px;
}

.tt-fv__illust--circle-sm {
  width: 107.423px;
  height: 107.423px;
  bottom: 180px;
  right: 560px;
}

.tt-problems .tt-heading__ja {
  font-size: 40px;
  letter-spacing: 0.04em;
}

/* --- お悩み Section --- */
.tt-problems {
  background: var(--color-white);
  padding: 80px 0 200px;
  position: relative;
  border: none;
  outline: none;
}

.tt-problems__bg {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--content-narrow);
  width: 100%;
  bottom: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1080 532' fill='none' preserveAspectRatio='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1080 467.697L830.965 531.479C741.99 492.123 643.548 470.262 540 470.262C436.451 470.262 338.008 492.123 249.033 531.479L0 467.697V0H1080V467.697Z' fill='%23F5F7F7'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

.tt-problems__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 80px 50px 0;
}

.tt-problems__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.tt-problems__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.tt-problems__item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tt-problems__illust {
  position: absolute;
  bottom: 0;
  left: max(0px, calc(50% - 510px));
  width: 220px;
  z-index: 2;
}

/* --- 解決します Section --- */
.tt-solve {
  background: #fff url("../images/solve-bg.svg") center top / cover no-repeat;
  margin-top: 61px;
  padding: 0 0 56px;
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
}

.tt-solve__heading {
  text-align: center;
  padding: 80px 0 40px;
}

.tt-solve__heading-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-black);
}

.tt-solve__heading-title .highlight {
  color: var(--color-main);
}

.tt-solve__heading-en {
  font-family: var(--font-english);
  font-size: 14px;
  color: var(--color-main);
  margin-top: 8px;
}

.tt-solve__slider {
  overflow: hidden;
}

.tt-solve__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slide-scroll 40s linear infinite;
}

.tt-solve__slide {
  flex: 0 0 360px;
  width: 360px;
  height: 240px;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  overflow: hidden;
  background: lightgray;
}

.tt-solve__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slide-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- 特徴 Section --- */
.tt-features {
  padding: 80px 0 100px;
  background: #fff;
}

.tt-features__cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.tt-feature-card {
  display: flex;
  width: 370px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 30px;
}

.tt-feature-card__inner {
  position: relative;
  display: flex;
  padding: 54px 46px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 88px;
  background: linear-gradient(135deg, #72DCE9 0%, #FBEA72 100%);
  isolation: isolate;
}

.tt-feature-card__inner::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 74px;
  background: #E8F6FE;
  z-index: -1;
}

.tt-feature-card__num {
  display: inline-flex;
  padding: 2px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-english);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.7px;
}

.tt-feature-card__icon {
  width: 80px;
  height: 80px;
}

.tt-feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tt-feature-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  color: var(--color-black);
  text-align: center;
}

.tt-feature-card__text {
  align-self: stretch;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  color: var(--color-black);
  text-align: center;
}

/* --- サービス Section --- */
.tt-services {
  padding: 80px 0 100px;
  background: #fff;
}

.tt-services__bg {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--color-main);
}

.tt-services__bg .tt-heading__en,
.tt-services__bg .tt-heading__ja,
.tt-services__bg .tt-heading__sub,
.tt-services__bg .tt-heading__ja .accent,
.tt-services__bg .tt-heading__ja .accent--sm {
  color: #fff;
}

.tt-services__cards {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.tt-service-card {
  display: flex;
  width: 520px;
  padding: 40px 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 30px;
  background: var(--color-white);
  flex-shrink: 0;
}

.tt-service-card__tag {
}

.tt-service-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-service-card__header-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.tt-service-card__header-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tt-service-card__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1.2px;
  color: var(--color-black);
  text-align: center;
}

.tt-service-card__img {
  align-self: stretch;
  height: 212px;
  border-radius: 20px;
  overflow: hidden;
}

.tt-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-service-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  align-self: stretch;
  overflow: hidden;
  color: var(--color-black);
  text-align: center;
  text-overflow: ellipsis;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}

.tt-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: stretch;
  justify-content: center;
}

.tt-service-card .tt-tag:not(.tt-tag--main) {
  display: flex;
  padding: 10px 16px;
  align-items: center;
  gap: 6px;
  border-radius: 200px;
  border: 1px solid var(--color-main);
  background: #FAFBFC;
  color: var(--color-black);
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 130%;
}

.tt-service-card .tt-tag__check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.tt-service-card--green .tt-tag:not(.tt-tag--main) {
  border-color: var(--color-green);
}

.tt-service-card__more {
  display: flex;
  align-self: flex-end;
}

.tt-service-card .tt-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.tt-service-card .tt-more__icon {
  width: 28px;
  height: 28px;
}

.tt-services__combo {
  display: flex;
  padding: 32px 100px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-radius: 40px;
  border: 1px solid var(--color-gray);
  background: var(--color-white);
  margin-top: 32px;
}

.tt-services__combo-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.96px;
  color: var(--color-main);
  flex-shrink: 0;
}

.tt-services__combo-icon {
  width: 38px;
  height: 38px;
}

.tt-services__combo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tt-services__combo-divider {
  width: 2px;
  height: 50px;
  background: var(--color-gray);
}

.tt-services__combo-text {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 155%;
  color: var(--color-black);
}

/* --- Recommend Section --- */
.tt-recommend {
  display: flex;
  padding: 40px 10px 80px 10px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background: var(--color-light-blue);
  position: relative;
}

.tt-recommend .tt-inner--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.tt-recommend .tt-heading {
  margin-bottom: 0;
}

.tt-recommend__bg-text {
  font-family: var(--font-english);
  font-size: 148.864px;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  line-height: 100%;
  letter-spacing: 5.955px;
  margin-bottom: -10px;
}

/* Subtitle with SVG decorations */
.tt-recommend__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 155%;
  color: var(--color-main);
  margin-bottom: 8px;
}

.tt-recommend__subtitle-deco {
  width: 21.727px;
  height: 24px;
  flex-shrink: 0;
}

/* Override heading styles for recommend section */
.tt-recommend .tt-heading__ja {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1.6px;
  color: var(--color-black);
}

.tt-recommend .tt-heading__sub {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  color: var(--color-black);
}

/* Content row: image + card */
.tt-recommend__content {
  display: flex;
  gap: 32px;
  width: 100%;
}

.tt-recommend__img {
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 30px;
  background-color: lightgray;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

/* Right info card */
.tt-recommend__info {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  border-radius: 30px;
  background: var(--color-white);
}

.tt-recommend__info-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-recommend__info-icon {
  display: flex;
  width: 38px;
  height: 38px;
  padding: 3px 9.33px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tt-recommend__info-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.96px;
  color: var(--color-main);
}

.tt-recommend__info-text {
  flex: 1 0 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 155%;
  color: var(--color-black);
}

.tt-recommend__labels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.tt-recommend__label-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-light-blue);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  color: var(--color-black);
}

.tt-recommend__label-item .highlight {
  color: var(--color-main);
  text-decoration: none;
}

.tt-recommend__label-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Target audience section */
.tt-recommend__target {
  width: 100%;
}

.tt-recommend__target-header {
  display: flex;
  padding: 12px 204px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px 30px 0 0;
  background: var(--color-main);
}

.tt-recommend__target-header-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.tt-recommend__target-header-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.96px;
  color: var(--color-white);
}

.tt-recommend__target-body {
  display: flex;
  padding: 40px 32px;
  align-items: center;
  gap: 32px;
  border-radius: 0 0 30px 30px;
  background: var(--color-white);
}

.tt-recommend__target-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tt-recommend__target-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  color: var(--color-black);
  padding: 16px 0;
  border-bottom: 1px dashed var(--color-gray);
}

.tt-recommend__target-item:first-child {
  padding-top: 0;
}

.tt-recommend__target-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tt-recommend__target-item .highlight {
  color: var(--color-main);
  text-decoration: none;
}

.tt-recommend__target-check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
}

.tt-recommend__target-img {
  height: 200px;
  flex: 1 0 0;
  border-radius: 10px;
  background-color: lightgray;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- 主要プラン Section --- */
.tt-plans {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.tt-heading__sub--plan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
}

.tt-plans__deco {
  width: 21.727px;
  height: 24px;
  aspect-ratio: 21.73 / 24;
  flex-shrink: 0;
}

.tt-plans__bg {
  display: flex;
  width: 1080px;
  max-width: 100%;
  padding: 48px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-radius: 30px;
  background: var(--color-light-blue);
  margin: 0 auto;
}

.tt-plans__points {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.tt-plans__point {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  font-family: var(--font-main);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}

.tt-plans__point-icon {
  display: flex;
  width: 38px;
  height: 38px;
  padding: 3px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.tt-plans__cards {
  display: flex;
  gap: 24px;
  width: 100%;
}

.tt-plan-card {
  flex: 1;
  background: var(--color-white);
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 32px;
  border: 2px solid var(--color-main);
}

.tt-plan-card--green {
  border-color: var(--color-green);
}

.tt-plan-card--blue {
  border-color: var(--color-blue);
}

.tt-plan-card__header {
  padding: 16px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}

.tt-plan-card__header--main {
  background: var(--color-main);
}

.tt-plan-card__header--green {
  background: var(--color-green);
}

.tt-plan-card__header--blue {
  background: var(--color-blue);
}

.tt-plan-card__price {
  padding: 24px 16px 0;
}

.tt-plan-card__price-num {
  font-family: var(--font-english);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-main);
}

.tt-plan-card--green .tt-plan-card__price-num {
  color: var(--color-green);
}

.tt-plan-card--blue .tt-plan-card__price-num {
  color: var(--color-blue);
}

.tt-plan-card__price-unit {
  font-size: 14px;
  color: var(--color-black);
}

.tt-plan-card__price-tax {
  font-size: 13px;
  color: var(--color-black);
  margin-top: 4px;
}

.tt-plan-card__detail {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0;
}

.tt-plan-card__detail .large {
  font-family: var(--font-english);
  font-size: 28px;
  font-weight: 700;
}

.tt-plan-card__sub {
  font-size: 13px;
  color: var(--color-black);
  margin-bottom: 16px;
  line-height: 1.6;
}

.tt-plan-card__option-wrap {
  display: flex;
  padding: 8px 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 5px;
  background: var(--color-blue-gray);
  margin: 0 16px;
}

.tt-plan-card__option {
  display: inline-flex;
  padding: 2px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-main);
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-english);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.7px;
}

.tt-plan-card--green .tt-plan-card__option {
  background: var(--color-green);
}

.tt-plan-card--blue .tt-plan-card__option {
  background: var(--color-blue);
}

.tt-plan-card__option-text {
  font-size: 13px;
  color: var(--color-black);
}

.tt-plan-card__extra {
  font-size: 13px;
  color: var(--color-black);
  padding: 8px 16px;
}

.tt-plans__cta {
  text-align: center;
}

.tt-plans__cta .tt-btn {
  border-radius: 9999px;
  border: 1px solid var(--color-main);
  background: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 155%;
  color: var(--color-black);
}

.tt-plans__cta .tt-btn span {
  color: var(--color-main);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

/* --- CTA Section (共通) --- */
.tt-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.tt-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tt-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.tt-cta__card {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--content-narrow);
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border-radius: 30px;
  text-align: center;
}

.tt-cta__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}

.tt-cta__deco {
  width: 21.727px;
  height: 24px;
  aspect-ratio: 21.73 / 24;
  flex-shrink: 0;
}

.tt-cta__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  margin-top: 4px;
  margin-bottom: 8px;
}

.tt-cta__title .highlight {
  color: var(--color-main);
}

.tt-cta__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tt-cta .tt-btn {
  width: 300px;
}

.tt-cta .tt-btn--line {
  color: var(--color-white);
}

.tt-cta .tt-btn--primary .tt-btn__icon {
  width: 18px;
  height: 18px;
}

.tt-cta .tt-btn--line .tt-btn__icon {
  width: 24px;
  height: 24px;
}

.tt-cta__illust {
  position: absolute;
  z-index: 2;
  bottom: 0;
}

.tt-cta__illust--left {
  left: -22.045px;
  bottom: -16.045px;
  width: 145.914px;
  height: 187.423px;
}

.tt-cta__illust--right {
  right: -22.67px;
  bottom: -40px;
  width: 160px;
  height: 151px;
}

/* --- ステップ Section --- */
.tt-steps {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.tt-steps__list {
  margin-top: 40px;
}

.tt-step-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  background: var(--color-blue-gray);
  border: 1px solid var(--color-main);
  border-radius: 30px;
  padding: 32px 48px;
}

.tt-step-card__img {
  flex: 0 0 300px;
  height: 169px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: var(--color-white);
}

.tt-step-card__img img {
  width: 157px;
  height: 170px;
  object-fit: contain;
}

.tt-step-card__content {
  flex: 1;
}

.tt-step-card__tag {
  margin-bottom: 8px;
}

.tt-step-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.96px;
  color: var(--color-black);
  margin-bottom: 12px;
}

.tt-step-card__title-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #E0E4E8;
  margin: 12px 0;
}

.tt-step-card__desc {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  color: var(--color-black);
  margin-bottom: 12px;
}

.tt-step-card .tt-tag:not(.tt-tag--main) {
  display: flex;
  padding: 10px 16px;
  align-items: center;
  gap: 6px;
  border-radius: 200px;
  border: 1px solid var(--color-main);
  background: #FAFBFC;
  color: var(--color-black);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}

.tt-step-card .tt-tag__check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.tt-steps__arrow {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.tt-steps__arrow-icon {
  width: 38px;
  height: 38px;
  color: var(--color-main);
}

/* --- スタッフ Section --- */
.tt-staff {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.tt-staff__content {
  display: flex;
  gap: 64px;
  margin-top: 32px;
  align-items: center;
}

.tt-staff__photo {
  flex: 0 0 auto;
  width: 539.096px;
  height: 404.322px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: lightgray 50% / cover no-repeat;
}

.tt-staff__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-staff__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tt-staff-card {
  display: flex;
  width: 246px;
  padding: 24px 67px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: var(--color-blue-gray);
}

.tt-staff-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-staff-card__title {
  color: var(--color-black);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}

.tt-staff__message {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.tt-staff__message .highlight {
  color: var(--color-main);
}

/* --- お客様の声 Section --- */
.tt-voices {
  padding: 80px 0 100px;
  background: var(--LightBlue, #E8F6FE);
}

.tt-voices__cards {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.tt-voice-card {
  flex: 1;
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px 24px;
}

.tt-voice-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tt-voice-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.tt-voice-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-voice-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tt-voice-card__area {
  display: inline-block;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: #3CC1DB;
  border: none;
  color: #fff;
}

.tt-voice-card__name {
  align-self: stretch;
  color: var(--Main, #3CC1DB);
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%;
}

.tt-voice-card__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* --- FAQ Section --- */
.tt-faq {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.tt-faq__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tt-faq-item {
  border: 1px solid var(--color-light-blue);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.tt-faq-item.is-open {
  background: var(--color-blue-gray);
}

.tt-faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}

.tt-faq-item__q {
  width: 29px;
  height: 35px;
  flex-shrink: 0;
  color: var(--color-main);
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.tt-faq-item__question-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  padding-top: 8px;
}

.tt-faq-item__toggle {
  width: 39.184px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-faq-item__toggle svg {
  width: 100%;
  height: 100%;
}

.tt-faq-item__toggle-minus {
  display: none;
}

.tt-faq-item.is-open .tt-faq-item__toggle-plus {
  display: none;
}

.tt-faq-item.is-open .tt-faq-item__toggle-minus {
  display: block;
}

.tt-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.tt-faq-item__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 28px 24px;
}

.tt-faq-item__a {
  width: 29px;
  height: 35px;
  flex-shrink: 0;
  color: var(--color-main);
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.tt-faq-item__answer-text {
  font-size: 15px;
  line-height: 1.7;
  padding-top: 4px;
}

/* --- Strength (特徴4カード) Section --- */
.tt-strength {
  padding: 48px 0;
  background: var(--color-light-blue);
}

.tt-strength__cards {
  display: flex;
  gap: 16px;
}

.tt-strength-card {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  border-radius: 30px;
  background: var(--color-white);
}

.tt-strength-card__img img {
  width: 100%;
  height: auto;
  display: block;
}

.tt-strength-card__text {
  color: var(--color-black);
  text-align: center;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 155%;
  width: 100%;
}

/* --- Footer --- */
.tt-footer {
  background: var(--color-footer-bg);
  padding: 80px 0 0;
  color: var(--color-white);
}

.tt-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 30px;
}

.tt-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 80px;
}

.tt-footer__brand {
  flex: 0 0 389px;
}

.tt-footer__logo {
  margin-bottom: 24px;
}

.tt-footer__logo img {
  height: 110px;
  width: auto;
}

.tt-footer__desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
}

.tt-footer__social {
  display: flex;
  gap: 16px;
}

.tt-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.tt-footer__social a:hover {
  opacity: 0.8;
}

.tt-footer__social img {
  width: 100%;
  height: 100%;
}

.tt-footer__nav {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.tt-footer__nav-col h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 16px;
  padding-bottom: 14px;
  position: relative;
}

.tt-footer__nav-col h4::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
}

.tt-footer__nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tt-footer__nav-col li {
  margin-bottom: 4px;
}

.tt-footer__nav-col a {
  font-size: 14px;
  opacity: 0.9;
  display: block;
  padding: 6px 0;
}

.tt-footer__nav-col a:hover {
  opacity: 1;
  color: var(--color-main);
}

.tt-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.tt-footer__info {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.6;
}

.tt-footer__copy {
  font-size: 13px;
  opacity: 0.8;
}

/* ==============================
   Mobile Fixed CTA
   ============================== */
.tt-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  gap: 8px;
}

.tt-mobile-cta .tt-btn {
  flex: 1;
  padding: 14px 8px;
  font-size: 14px;
}

/* ==============================
   Mobile Menu Toggle
   ============================== */
.tt-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.tt-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: var(--transition);
}

/* ==============================
   Mobile menu overlay
   ============================== */
@media (max-width: 768px) {
  .tt-header__menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1000;
  }

  .tt-header__menu.is-open li a {
    font-size: 20px;
    padding: 20px;
  }

  .tt-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .tt-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .tt-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ==============================
   RESPONSIVE: Tablet (768px)
   ============================== */
@media (max-width: 768px) {
  br.sp-only { display: block; }

  :root {
    --section-pt: 64px;
    --section-pb: 56px;
  }

  .tt-header {
    padding: 12px 20px;
  }

  .tt-header__menu {
    display: none;
  }

  .tt-header__nav .tt-btn {
    display: none;
  }

  .tt-header__hamburger {
    display: flex;
    margin-left: auto;
  }

  /* FV */
  .tt-fv {
    height: auto;
    min-height: calc(100vh - 56px);
    min-height: calc(100dvh - 56px);
    padding-bottom: 40px;
  }

  .tt-fv__bg-img {
    display: none !important;
    visibility: hidden;
    width: 0;
    height: 0;
  }

  .tt-fv__bg {
    background: linear-gradient(135deg, #00B3D6 0%, #F8FCF2 100%) !important;
  }

  .tt-fv__inner {
    min-height: auto;
    padding: 0 20px;
  }

  .tt-fv__content {
    padding: 80px 0 40px;
    max-width: 100%;
  }

  .tt-fv__title {
    font-size: 36px;
  }

  .tt-fv__desc {
    font-size: 15px;
  }

  .tt-fv__btns {
    flex-direction: row;
    gap: 8px;
    max-width: 100%;
  }

  .tt-fv__btns .tt-btn {
    flex: 1;
    min-width: 0;
  }

  .tt-fv__images {
    position: relative;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .tt-fv__img-main {
    overflow: hidden;
    border-radius: 16px;
  }

  .tt-fv__img-main img {
    width: 100%;
  }

  .tt-fv__img-sub {
    top: 40px;
    left: -30px;
    overflow: hidden;
    border-radius: 12px;
  }

  .tt-fv__img-sub img {
    width: 100%;
  }


  .tt-fv__marquee-text {
    font-size: 80px;
  }

  .tt-fv__illust--circle-lg {
    width: 120px;
    height: 120px;
    top: 60px;
    right: -20px;
  }

  .tt-fv__illust--circle-sm {
    display: none;
  }


  .tt-fv__badge {
    transform: scale(0.85);
    transform-origin: left;
  }

  /* Problems */
  .tt-problems__inner {
    padding: 60px 20px 0;
  }

  .tt-problems__grid {
    gap: 12px;
  }

  .tt-problems__item {
    padding: 14px 16px;
    font-size: 14px;
  }

  .tt-problems__illust {
    display: none;
  }

  /* Heading */
  .tt-heading__ja {
    font-size: 24px;
  }

  .tt-problems .tt-heading__ja {
    font-size: 24px;
    letter-spacing: normal;
  }

  .tt-solve__heading-title {
    font-size: 24px;
  }

  .tt-heading__ja .accent {
    font-size: 40px;
  }

  .tt-heading__ja .accent--sm {
    font-size: 32px;
  }

  /* Features */
  .tt-features__cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .tt-feature-card {
    width: 100%;
    max-width: 370px;
  }

  /* Services */
  .tt-services__bg {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .tt-services__cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .tt-service-card {
    width: 100%;
    padding: 24px;
  }

  .tt-services__combo {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
  }

  .tt-services__combo-divider {
    width: 80%;
    height: 1px;
  }

  /* Recommend */
  .tt-recommend {
    padding: 32px 16px 60px 16px;
    gap: 24px;
  }

  .tt-recommend .tt-inner--narrow {
    gap: 24px;
  }

  .tt-recommend__bg-text {
    font-size: 60px;
    letter-spacing: 2px;
    margin-bottom: -20px;
  }

  .tt-recommend__subtitle {
    font-size: 15px;
  }

  .tt-recommend .tt-heading__ja {
    font-size: 24px;
    letter-spacing: 0.96px;
  }

  .tt-recommend .tt-heading__sub {
    font-size: 16px;
    letter-spacing: 0.64px;
  }

  .tt-recommend__content {
    flex-direction: column;
    gap: 24px;
  }

  .tt-recommend__img {
    flex: auto;
    min-height: 250px;
    border-radius: 20px;
  }

  .tt-recommend__info {
    border-radius: 20px;
    padding: 24px;
  }

  .tt-recommend__info-title {
    font-size: 20px;
  }

  .tt-recommend__target-header {
    padding: 12px 24px;
    border-radius: 20px 20px 0 0;
  }

  .tt-recommend__target-header-text {
    font-size: 18px;
  }

  .tt-recommend__target-body {
    flex-direction: column;
    padding: 24px 20px;
    border-radius: 0 0 20px 20px;
  }

  .tt-recommend__target-img {
    flex: auto;
    width: 100%;
    height: 200px;
  }

  /* Plans */
  .tt-plans__bg {
    padding: 24px;
    gap: 24px;
    border-radius: 20px;
  }

  .tt-plans__points {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
  }

  .tt-plans__cards {
    flex-direction: column;
    gap: 16px;
  }

  /* Steps */
  .tt-step-card {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .tt-step-card__img {
    flex: auto;
    height: auto;
  }

  /* Staff */
  .tt-staff__content {
    flex-direction: column;
    gap: 24px;
  }

  .tt-staff__photo {
    flex: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }

  /* Voices */
  .tt-voices__cards {
    flex-direction: column;
    gap: 16px;
  }

  /* Strength */
  .tt-strength__cards {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tt-strength-card {
    flex: 0 0 calc(50% - 6px);
  }

  /* CTA */
  .tt-cta__card {
    width: 100%;
    padding: 32px 24px;
    border-radius: 20px;
  }

  .tt-cta__subtitle {
    font-size: 16px;
  }

  .tt-cta__btns {
    flex-direction: column;
    gap: 12px;
  }

  .tt-cta__title {
    font-size: 24px;
  }

  .tt-cta .tt-btn {
    width: 100%;
  }

  .tt-cta__illust--left,
  .tt-cta__illust--right {
    display: none;
  }

  /* Footer */
  .tt-footer__top {
    flex-direction: column;
    gap: 48px;
  }

  .tt-footer__brand {
    flex: auto;
  }

  .tt-footer__nav {
    flex-wrap: wrap;
    gap: 32px;
  }

  .tt-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Mobile CTA */
  .tt-mobile-cta {
    display: flex;
  }
}

/* ==============================
   RESPONSIVE: Mobile (480px)
   ============================== */
@media (max-width: 480px) {
  /* --- FV: 背景 --- */
  .tt-fv {
    height: auto;
    min-height: auto;
    padding-bottom: 16px;
  }

  /* 外側の白い円（ベース） */
  .tt-fv__bg::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: white;
    bottom: -100px;
    right: -100px;
    z-index: 1;
    box-sizing: border-box;
    border: none;
  }

  /* 内側のグラデーションボーダー円 */
  .tt-fv__bg::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
    border: 24px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(to bottom right, #F8FCF2, #00B3D6);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    z-index: 2;
    box-sizing: border-box;
  }

  /* --- FV: テキスト左寄せ --- */
  .tt-fv__inner {
    min-height: auto;
  }

  .tt-fv__content {
    text-align: left;
    padding: 68px 0 8px;
    max-width: 100%;
  }

  .tt-fv__title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .tt-fv__desc {
    font-size: clamp(11px, 3.5vw, 14px);
    margin-bottom: 0;
  }

  .tt-fv__badge {
    transform: scale(0.75);
    transform-origin: left;
  }

  /* --- FV: 画像拡大＆右寄せ配置 --- */
  .tt-fv__images {
    margin-top: 4px;
    justify-content: flex-end;
  }

  .tt-fv__img-main {
    width: 90%;
    max-width: none;
    height: auto;
  }

  .tt-fv__img-main img {
    width: 100%;
    height: auto;
  }

  .tt-fv__img-sub {
    width: 58%;
    max-width: none;
    height: auto;
    top: 60px;
    left: -15px;
  }

  .tt-fv__img-sub img {
    width: 100%;
    height: auto;
  }

  /* --- FV: CTA 2カラム --- */
  .tt-fv__btns {
    flex-direction: row;
    gap: 8px;
    max-width: 100%;
    padding: 0;
    margin-top: 16px;
  }

  .tt-fv__btns .tt-btn {
    flex: 1;
    min-width: 0;
    padding: 14px 8px;
    font-size: 13px;
  }

  .tt-fv__btns .tt-btn__icon {
    width: 14px;
    height: 14px;
  }

  /* --- FV: 装飾・マーキー --- */
  .tt-fv__illust--circle-lg {
    display: none;
  }

  .tt-fv__marquee-text {
    font-size: 48px;
  }

  .tt-heading__ja {
    font-size: 22px;
  }

  .tt-problems .tt-heading__ja {
    font-size: 22px;
  }

  .tt-problems__grid {
    flex-direction: column;
    align-items: center;
  }

  .tt-problems__item {
    width: 100%;
  }

  .tt-solve__heading-title {
    font-size: 22px;
  }

  .tt-heading__ja .accent {
    font-size: 34px;
  }

  .tt-solve__slide {
    flex: 0 0 280px;
    height: 180px;
  }

  .tt-recommend__bg-text {
    font-size: 40px;
    letter-spacing: 1.5px;
    margin-bottom: -10px;
  }

  .tt-recommend .tt-heading__ja {
    font-size: 22px;
  }

  .tt-recommend__info-title {
    font-size: 18px;
  }

  .tt-recommend__target-header-text {
    font-size: 16px;
  }

  .tt-staff__grid {
    grid-template-columns: 1fr;
  }

  .tt-strength-card {
    flex: 0 0 100%;
  }

  .tt-footer__nav {
    flex-direction: column;
  }
}
