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


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2D1820;
  background: #FFFCFD;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.wrapper {
  display: flex;
  justify-content: center;
}

.heading {
  max-width: 1200px;
  padding: 100px min(15%, 180px);
}


.pc {
  display: block;
}

.sp {
  display: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 90px 0;
}

.section--warm {
  background: #FDF5F7;
}

.section--orange {
  background: #FEF0F3;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head__en {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4607A;
  display: block;
  margin-bottom: 8px;
}

.section-head__ja {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2D1820;
  line-height: 1.3;
}

.section-head__ja::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #D4607A;
  margin: 14px auto 0;
  border-radius: 2px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #EDD0D8;
  transition: all 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}

.header__logo-img {
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}

.header__logo img {
  height: 50px;
  width: auto;
  vertical-align: middle;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header__logo-name {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2D1820;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.header__logo-en {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #9E7888;
  letter-spacing: 0.12em;
  line-height: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.header__nav a {
  font-size: 13px;
  font-weight: 500;
  color: #8E5262;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  position: relative;
  /* white-space: nowrap; */
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: #D4607A;
  transform: scaleX(0);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.header__nav a:hover {
  color: #D4607A;
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

.header__tel {
  font-size: 17px;
  font-weight: 700;
  color: #D4607A;
  letter-spacing: 0.05em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2D1820;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FEF0F3 0%, #FDDDE6 60%, #FAC8D5 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 96, 122, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 96, 122, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D4607A;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #D4607A;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #2D1820;
  line-height: 1.4;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: #D4607A;
}

.hero__lead {
  font-size: 16px;
  color: #8E5262;
  line-height: 1.9;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: #D4607A;
  color: white;
  box-shadow: 0 6px 20px rgba(212, 96, 122, 0.35);
}

.btn--primary:hover {
  background: #B04060;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 96, 122, 0.4);
}

.btn--outline {
  background: transparent;
  color: #D4607A;
  border-color: #D4607A;
}

.btn--outline:hover {
  background: #FEF0F3;
  transform: translateY(-2px);
}

.hero__img-wrap {
  position: relative;
}

.hero__img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(180, 80, 100, 0.15);
  object-fit: cover;
  height: 520px;
}

.hero__img-card {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: white;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 12px 48px rgba(180, 80, 100, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.hero__img-card-icon {
  width: 44px;
  height: 44px;
  background: #FEF0F3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__img-card-icon svg {
  color: #D4607A;
}

.hero__img-card-text {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

.hero__img-card-text strong {
  font-size: 18px;
  color: #D4607A;
}

.hero__img-card-text span {
  font-size: 16px;
  color: #9E7888;
  display: block;
}

.greeting__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.greeting__photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(180, 80, 100, 0.10);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.greeting__title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
  color: #2D1820;
}

.greeting__title em {
  font-style: normal;
  color: #D4607A;
}

.greeting__text {
  font-size: 16px;
  color: #8E5262;
  line-height: 2;
  margin-bottom: 16px;
}

.greeting__sign {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.greeting__sign-title {
  font-size: 16px;
  color: #9E7888;
}

.greeting__sign-name {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(180, 80, 100, 0.10);
  display: grid;
  grid-template-columns: 320px 1fr;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 48px rgba(180, 80, 100, 0.15);
}

.feature-card--full {
  grid-template-columns: 320px 1fr;
}

.feature-card__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.feature-card__body {
  padding: 32px;
}

.feature-card__label {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #2D1820;
  margin-bottom: 12px;
  line-height: 1.5;
  /* white-space: nowrap; */
}

.feature-card__label em {
  font-style: normal;
  color: #D4607A;
}

.feature-card__text {
  font-size: 16px;
  color: #8E5262;
  line-height: 1.9;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(180, 80, 100, 0.15);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.about__lead {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2D1820;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about__text {
  font-size: 16px;
  color: #8E5262;
  line-height: 2;
  margin-bottom: 14px;
}

.about__list {
  margin-top: 20px;
}

.about__list li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #EDD0D8;
  font-size: 16px;
  color: #8E5262;
  position: relative;
}

.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #D4607A;
  border-radius: 50%;
}

.flow__inner {
  max-width: 800px;
  margin: 0 auto;
}

.flow__steps {
  margin-bottom: 60px;
}

.flow__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 0;
  position: relative;
}

.flow__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 48px;
  width: 2px;
  height: calc(100% - 16px);
  background: #EDD0D8;
}

.flow__step-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #D4607A;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.flow__step-body {
  padding: 10px 0 28px;
}

.flow__step-title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.flow__step-text {
  font-size: 16px;
  color: #8E5262;
}

.flow-h3 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  margin-bottom: 28px;
  text-align: center;
}

.flow-text1 {
  text-align: center;
  margin-bottom: 40px;
  color: #8E5262;
  font-size: 14.5px;
  line-height: 2;
}

.price-text1 {
  font-size: 13.5px;
  color: #8E5262;
  margin-bottom: 20px;
  line-height: 1.9;
}

.price-box {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(180, 80, 100, 0.10);
}

.price-box__title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2D1820;
}

.price-box__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #EDD0D8;
  font-size: 16px;
}

.price-box__item:last-of-type {
  border-bottom: none;
}

.price-box__item-label {
  color: #8E5262;
}

.price-box__item-val {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #D4607A;
}

.price-box__note {
  margin-top: 16px;
  font-size: 16px;
  color: #9E7888;
  line-height: 1.8;
}

.area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.area__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(180, 80, 100, 0.15);
  background: #EDD0D8;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area__map iframe {
  width: 100%;
  height: 320px;
  border: none;
  filter: sepia(20%) hue-rotate(10deg);
}

.area__text {
  font-size: 16px;
  color: #8E5262;
  line-height: 2;
}

.area__note {
  margin-top: 16px;
  font-size: 16px;
  color: #9E7888;
  background: #FEF0F3;
  border-radius: 8px;
  padding: 14px 18px;
}

.guidance__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.guidance-card {
  background: white;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(180, 80, 100, 0.10);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.guidance-card:hover {
  border-top-color: #D4607A;
}

.guidance-card__icon {
  width: 65px;
  height: 65px;
  background: #FEF0F3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 10px;
}

.guidance-card__icon svg {
  width: 28px;
  height: 28px;
  color: #D4607A;
}

.guidance-card__name {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2D1820;
}

.overview__table-wrap {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(180, 80, 100, 0.10);
}

.overview__table {
  width: 100%;
  border-collapse: collapse;
}

.overview__table tr:not(:last-child) {
  border-bottom: 1px solid #EDD0D8;
}

.overview__table th {
  width: 200px;
  padding: 20px 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #2D1820;
  background: #FEF0F3;
  vertical-align: top;
}

.overview__table td {
  padding: 20px 28px;
  font-size: 16px;
  color: #8E5262;
  line-height: 1.8;
}

.hours__table-wrap {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(180, 80, 100, 0.10);
  max-width: 900px;
  margin: 0 auto;
}

.hours__table {
  width: 100%;
  border-collapse: collapse;
}

.hours__table th {
  background: #FEF0F3;
  color: #B04060;
  padding: 20px;
  font-weight: 700;
  border-bottom: 1px solid #EDD0D8;
}

.hours__table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #EDD0D8;
  color: #8E5262;
}

.hours__table tr:last-child td {
  border-bottom: none;
}

.hours__time-slot {
  background: #FDF5F7;
  font-weight: 700;
  color: #B04060 !important;
  width: 200px;
}

@media (max-width: 768px) {
  .hours__table-wrap {
    overflow-x: auto;
  }
  .hours__table {
    min-width: 600px;
  }
  .hours__table th,
  .hours__table td {
    padding: 12px 10px;
    font-size: 14px;
  }
  .hours__time-slot {
    width: 120px;
  }
}

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

.cta-banner {
  background: linear-gradient(135deg, #D4607A 0%, #B04060 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-banner__title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.cta-banner__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.cta-banner .btn--white {
  background: white;
  color: #D4607A;
  font-size: 22px;
  font-weight: 700;
  padding: 13px 20px;
  letter-spacing: 0.08em;
  box-sizing: border-box;
}

.cta-banner .btn--white:hover {
  background: #FEF0F3;
  transform: translateY(-2px);
}

.cta-banner__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-banner__tel-btn {
  margin-top: 8px;
}

.footer {
  background-color: #D4607A;
  padding: 24px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__link-item {
  margin-bottom: 0;
}

.footer__link-item a {
  color: #fff;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: opacity 0.3s;
  display: inline-block;
}

.footer__link-item a:hover {
  opacity: 0.7;
}

.footer__privacy-link {
  margin-right: 24px;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.pagetop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: #D4607A;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
}

.pagetop.visible {
  opacity: 1;
  pointer-events: auto;
}

.pagetop:hover {
  background: #B04060;
  transform: translateY(-3px);
}

.photo-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.photo-strip::before,
.photo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.photo-strip::before {
  left: 0;
  background: linear-gradient(to right, #FFFCFD 0%, transparent 100%);
}

.photo-strip::after {
  right: 0;
  background: linear-gradient(to left, #FFFCFD 0%, transparent 100%);
}

.photo-strip__track {
  display: flex;
  gap: 12px;
  padding: 0 12px;
  animation: slideLeft 40s linear infinite;
  width: max-content;
}

.photo-strip:hover .photo-strip__track {
  animation-play-state: paused;
}

.photo-strip__item {
  flex-shrink: 0;
  width: 360px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.sp-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 253, 249, 0.98);
  z-index: 9000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  top: 50px;
}

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

body.is-fixed {
    overflow: hidden;
}



.sp-nav-overlay.is-open {
  display: flex;
}

.sp-nav-overlay a {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  color: #2D1820;
  letter-spacing: 0.05em;
}

.sp-nav-overlay__close {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #8E5262;
}

.mobile-fixed {
  display: none;
}



/* レスポンシブル1 */

@media (max-width: 1024px) {
  .header__inner {
    height: 60px;
    padding: 0 10px;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }


  .heading {
    padding: 100px min(5.333%, 20px);
  }
  .container {
    padding: 0 24px;
  }

  .header__logo {
    gap: 5px;
  }

  .header__logo img {
    width: 40px;
    height: auto;
  }
  .header__logo-name {
    font-size: 16px;
  }

  .hero {
    justify-content: center;
    padding: 60px min(5.33vw, 20px);
    box-sizing: border-box;
  }

  .kv_sp {
    margin: 0 auto 40px auto;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }
  .hero__img-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  .greeting__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .greeting__photo {
    aspect-ratio: 16/9;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    grid-template-columns: 240px 1fr;
  }
  .feature-card--full {
    grid-template-columns: 240px 1fr;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .area__inner {
    grid-template-columns: 1fr;
  }
  .guidance__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-box__item {
    flex-wrap: wrap;
    justify-content: start;
  }

  .header__nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header__tel {
    font-size: 14px;
    margin: 0 10px 0 0;
  }

  .hero__cta  {
    justify-content: center;
  }

  .btn--outline,
  .btn--primary {
    max-width: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

  }


.flow-text1 {
  text-align: left;
  }
}


/* レスポンシブル2 */

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  .section-head__ja {
    font-size: 24px;
  }

  .header-tel {
    display: none;
  }
  .hero__title {
    font-size: 26px;
  }
  .feature-card {
    grid-template-columns: 1fr;
  }
  .feature-card__img {
    height: 200px;
  }
  .guidance__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .overview__table th {
    width: 120px;
    padding: 14px 16px;
  }
  .overview__table td {
    padding: 14px 16px;
  }
  .cta-banner__title {
    font-size: 22px;
  }
  .cta-banner__btns {
    flex-direction: column;
    gap: 12px;
  }

  .cta-banner .btn--white {
    font-size: 18px;
    max-width: 330px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pagetop {
    bottom: 57px;
  }

  .mobile-fixed {
    display: block;
  }


  .cta-fixed {
      position: fixed;
      width: 100%;
      bottom: 0;
      z-index: 13;
      display: flex;
  }
  .cta-fixed-link1 {
    background: #D4607A;
      width: 100%;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      font-weight: 700;

  }


}