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

body.page {
  margin: 0;
  font-family: "Noto Serif JP", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #000;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

@media (min-width: 641px) {
  body.page {
    font-size: 100%;
  }
}

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

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

/* LAYOUT */
.main {
  overflow: hidden;
}

.section {
  padding: 70px 16px;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* TYPOGRAPHY */
.section-title {
  margin: 0 0 32px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #336188;
  display: block;
  font-size: 22px;
  font-weight: 700;
}

@media (min-width: 641px) {
  .section-title {
    font-size: 2vh;
  }
}

/* BUTTON */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.button__icon img,
.button__arrow img {
  width: 20px;
  height: 20px;
}

.button__icon {
  margin-right: 8px;
}

.button__arrow {
  margin-left: 8px;
}

.button__label {
  font-weight: 700;
}

.button--primary {
  background-image: linear-gradient(90deg, #f0a329, #f7c552);
  color: #fff;
  border-color: #ebaf24;
  border: double 6px;
  padding: 1em;
}

.button--accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 12px;
  border: 6px double #fff;
  background: linear-gradient(180deg, #f8b640 0%, #e38e14 100%);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 2vh;
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.button--accent:hover {
  opacity: 0.9;
}

/* ANIMATION */
.js-fade {
  opacity: 1;
  transform: none;
}

.page--fade-init .js-fade {
  opacity: 0;
  transform: translateY(24px);
}

.page--fade-init .js-fade.is-inview {
  opacity: 1;
  transform: none;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #336188;
  border-bottom: 1px solid #eee;
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}

.site-header__brand {
  display: flex;
  align-items: center;
}

.site-header__logo-img {
  width: 200px;
  height: auto;
}

.site-header__tagline {
  margin: 0 0 0 1em;
  font-size: 100%;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

.site-header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.site-header__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 15px;
  box-sizing: border-box;
  text-align: center;
  background-image: linear-gradient(90deg, #f2a623, #f5c14b);
  border-radius: 10px;
  border: 6px double #fff;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2vh;
}

.site-header__tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 3vh;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
}

.site-header__tel-icon img {
  width: 25px;
  height: 25px;
  margin-right: 4px;
}

.site-header__time {
  margin: 0;
  font-size: 1.5vh;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .site-header__brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-header__tagline {
    margin: 4px 0 0;
    font-size: 14px;
  }

  .site-header__contact {
    align-items: center;
    width: 100%;
  }

  .site-header__contact-btn,
  .site-header__tel-link,
  .site-header__time {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .site-header__tel-link {
    font-size: 16px;
  }

  .site-header__time {
    font-size: 13px;
  }
}

/* HERO */
.hero {
  position: relative;
  background-image: url("images/fv_main.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 70px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__body {
  flex: 1 1 auto;
}

.hero__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 2vh;
  line-height: 1.6;
  margin: 0 0 24px;
  color: #fff;
}

.hero-banner {
  display: inline-block;
  padding: 8px 60px 8px 20px;
  margin-bottom: 16px;
}

.hero-banner--gradient {
  background: linear-gradient(90deg, #3b7ba7, #7dacde);
  color: #fff;
}

.hero-banner__text {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 100%;
  font-weight: 700;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.hero-badges__item {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.hero-badges__item::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  margin-top: 6px;
  background-image: url("images/checmark-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-badges__text-yellow {
  color: #ebaf24;
}

.hero-cta,
.cta-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  margin: 24px auto 8px;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}

.hero-cta__button,
.cta-bar__button {
  flex: 0 0 auto;
}

.hero-cta__divider,
.cta-bar__divider {
  flex: 0 0 auto;
  width: 1px;
  height: 56px;
  background-color: #999999;
}

.hero-cta__phone,
.cta-bar__phone {
  flex: 1 1 0;
  font-family: "Noto Serif JP", serif;
  color: #000;
  text-align: left;
}

.hero-cta__phone-label,
.cta-bar__phone-label {
  margin: 0 0 4px;
  font-size: 1.7vh;
}

.hero-cta__phone-main,
.cta-bar__phone-main {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 3vh;
  text-decoration: none;
  color: inherit;
}

.hero-cta__phone-icon img,
.cta-bar__phone-icon img {
  width: 26px;
  height: 26px;
  margin-right: 6px;
}

.hero-cta__phone-number,
.cta-bar__phone-number {
  font-weight: 700;
}

.hero-cta__phone-time,
.cta-bar__phone-time {
  margin: 4px 0 0;
  font-size: 1.7vh;
}

.hero__note {
  margin: 4px auto 0;
  font-size: 1.6vh;
  color: #fff;
  max-width: 900px;
}

.hero-banner,
.hero-cta,
.hero__note {
  width: 100%;
  max-width: 640px;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 641px) {
  .hero-banner,
  .hero-cta,
  .hero__note {
    margin-left: 0;
    margin-right: auto;
  }

  .hero__title-big {
    font-size: 6.5vh;
  }

  .hero__title {
    font-size: 5vh;
  }

  .hero-banner__text {
    font-size: 2vh;
  }
}

@media (max-width: 640px) {
  .hero__inner {
    align-items: center;
  }

  .hero__title {
    font-size: 22px;
    text-align: center;
  }

  .hero__title-big {
    font-size: 26px;
  }

  .hero-banner,
  .hero-cta,
  .hero__note {
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-banner {
    width: 100%;
    text-align: center;
    padding: 8px 12px;
  }

  .hero-banner__text {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-badges {
    margin-bottom: 20px;
  }

  .hero-badges__item {
    font-size: 14px;
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
  }

  .hero-cta,
  .cta-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 16px;
    max-width: 100%;
  }

  .hero-cta__divider,
  .cta-bar__divider {
    display: none;
  }

  .hero-cta__phone,
  .cta-bar__phone {
    text-align: center;
  }

  .hero-cta__phone-main,
  .cta-bar__phone-main {
    justify-content: center;
    font-size: 20px;
  }

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

/* INTRO */
.intro {
  position: relative;
  background-image: url("images/fv_bg.png");
  background-repeat: repeat;
  background-size: 480px auto;
  background-position: center;
}

.intro__inner {
  position: relative;
  z-index: 1;
}

.intro__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  text-align: center;
  line-height: 1.8;
  color: #333;
  margin-bottom: 28px;
  border-bottom: 1px solid #333;
}

.intro__title-small {
  font-size: 2vh;
}

.intro__text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8vh;
  color: #333;
  line-height: 2;
  text-align: center;
  margin: 0 auto;
  max-width: 860px;
}

@media (max-width: 640px) {
  .intro__title {
    font-size: 20px;
  }

  .intro__text {
    font-size: 16px;
    text-align: left;
    padding: 0 10px;
  }
}

/* PROBLEMS */
.problems {
  background-color: #fff;
  padding-bottom: 70px;
  position: relative;
}

.problems__bg {
  background-image: url("images/onayami-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 70px;
  padding-bottom: 120px;
}

.problems__inner {
  max-width: 960px;
  margin: 0 auto;
}

.problems__title {
  margin: 0 0 32px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 3vh;
  letter-spacing: 0.08em;
}

.problems__title-accent {
  color: #336188;
}

.problems-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background-color: #fff;
  padding: 32px 40px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.problems-card__body {
  flex: 1 1 auto;
}

.problems-card__illust {
  position: absolute;
  right: -50px;
  bottom: -60px;
}

.problems-card__illust img {
  width: 135px;
}

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

.problems__item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 2vh;
}

.problems__item::before {
  content: "☑";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: #336188;
}

.problems__bottom {
  background-color: #fff;
  text-align: center;
  padding-top: 60px;
  position: relative;
  z-index: 1;
}

.problems__arrow-wrap {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70px;
  z-index: 2;
}

.problems__arrow {
  width: 100%;
  height: auto;
}

.problems__lead {
  margin: 0 0 20px;
  font-size: 3vh;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
}

.problems__lead-accent {
  color: #336188;
  font-weight: 700;
}

@media (max-width: 640px) {
  .problems-card {
    flex-direction: column;
    padding: 24px 20px;
  }

  .problems-card__illust {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .problems-card__illust img {
    width: 110px;
    margin-top: -12px;
  }

  .problems__bg {
    padding-bottom: 100px;
  }

  .problems__title {
    font-size: 18px;
  }

  .problems__item {
    font-size: 14px;
  }

  .problems__lead {
    font-size: 18px;
  }
}

/* FEATURES */
.features {
  position: relative;
  padding-top: 80px;
  padding-bottom: 90px;
  color: #336188;
  background-image: url("images/erabareru-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.features__inner {
  position: relative;
  z-index: 1;
}

.features__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  margin-bottom: 40px;
  color: #336188;
  font-weight: 700;
}

.features__title-accent {
  color: #f0a329;
  font-size: 5vh;
  margin-left: -0.2em;
}

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

@media (min-width: 641px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  background-color: #fff;
  padding: 32px 24px 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-card__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  background-color: #336188;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.feature-card__num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 0 10px;
}

.feature-card__icon {
  height: 110px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card__icon img {
  max-height: 90px;
  width: auto;
}

.feature-card__title {
  margin: 8px 0 10px;
  font-size: 2.5vh;
  text-align: center;
  color: #336188;
  font-weight: 700;
}

.feature-card__text {
  margin: 0 auto;
  max-width: 90%;
  font-size: 1.7vh;
  line-height: 1.9;
  color: #000;
  text-align: left;
}

@media (max-width: 640px) {
  .features {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .feature-card {
    padding: 24px 18px 22px;
  }

  .feature-card__corner {
    width: 60px;
    height: 60px;
  }

  .feature-card__num {
    font-size: 18px;
    margin-top: 6px;
  }

  .feature-card__icon {
    height: 80px;
  }

  .feature-card__icon img {
    max-height: 64px;
  }

  .feature-card__title {
    font-size: 16px;
  }

  .feature-card__text {
    font-size: 13px;
    max-width: 100%;
  }
}

/* PLANS */
.plans {
  background-color: #fff;
  color: #333;
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
}

.plans__inner {
  max-width: 960px;
  margin: 0 auto;
}

.plans__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.plans__title-icon {
  width: 24px;
  height: auto;
}

.plans .section-title {
  color: #000000;
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  margin: 0;
}

.plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.plan-card {
  display: flex;
  border: 1px solid #336188;
  background-color: #fff;
  overflow: hidden;
  text-align: left;
}

@media (min-width: 641px) {
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card:nth-child(2),
  .plan-card:nth-child(4),
  .plan-card:nth-child(6) {
    flex-direction: row-reverse;
  }
}

.plan-card__media {
  flex: 0 0 40%;
}

.plan-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-card__body {
  flex: 1 1 auto;
  padding: 22px 22px;
  background-color: #336188;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.plan-card__label {
  margin: 0 0 6px;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-weight: 600;
}

.plan-card__price {
  margin: 0 0 12px;
  font-family: "Noto Serif JP";
  font-size: 26px;
  font-weight: 700;
  color: #f7c552;
}

.plan-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.plans__note {
  margin-top: 12px;
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

.plans__message {
  margin: 50px auto 16px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 1.8;
}

.plans__message span {
  color: #a43131;
  font-weight: 700;
}

.plans__cta {
  text-align: center;
}

@media (max-width: 640px) {
  .plan-card {
    flex-direction: column;
  }

  .plan-card__media {
    flex: 0 0 auto;
  }

  .plan-card__body {
    min-height: auto;
  }

  .plan-card__label {
    font-size: 16px;
  }

  .plan-card__price {
    font-size: 22px;
  }

  .plan-card__text {
    font-size: 13px;
  }
}

/* FLOW */
.flow {
  position: relative;
  padding-top: 80px;
  padding-bottom: 90px;
  background-image: url("images/flow-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

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

.flow__heading {
  margin: 0 0 50px;
  text-align: center;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  color: #333;
}

.flow__heading-main {
  position: relative;
  display: inline-block;
  padding-top: 8px;
}

.flow__heading-main::before {
  content: "・・・";
  position: absolute;
  top: -0.2em;
  left: 10%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #a43131;
}

.flow__heading-accent {
  color: #a43131;
  font-size: 1.2em;
  white-space: nowrap;
}

.flow-steps {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}

.flow-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.flow-step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 5px solid #336188;
}

.flow-step__num {
  flex: 0 0 60px;
  height: 48px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #336188;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.flow-step__bar {
  flex: 1 1 auto;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.flow-step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 18px solid #336188;
}

.flow-step:last-child::after {
  display: none;
}

.flow-step__text {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5vh;
  font-weight: 700;
  color: #333;
  text-align: center;
  position: relative;
  left: -30px;
}

.flow__cta {
  text-align: center;
}

.flow__button {
  min-width: 280px;
  font-size: 18px;
}

.no-break {
  white-space: nowrap !important;
}

@media (max-width: 640px) {
  .flow {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .flow__heading {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .flow-steps {
    margin-bottom: 40px;
  }

  .flow-step {
    margin-bottom: 32px;
  }

  .flow-step::before {
    border-bottom-width: 4px;
  }

  .flow-step__num {
    flex-basis: 52px;
    height: 42px;
    font-size: 15px;
  }

  .flow-step__bar {
    height: 42px;
  }

  .flow-step__text {
    left: -26px;
    font-size: 14px;
  }

  .flow-step::after {
    bottom: -14px;
    border-left-width: 18px;
    border-right-width: 18px;
    border-top-width: 14px;
  }
}

/* VOICES */
.voices {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 100px;
}

.voices .section-title::before {
  content: none;
}

.voices__title {
  margin: 0 0 50px;
  text-align: center;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 30px;
  color: #000;
  position: relative;
  padding-top: 20px;
}

.voice__title small {
  font-size: 1.7vh;
  font-weight: 400;
}

.voices__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #336188;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}

.voices__title-text {
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

.voices__title-text::before,
.voices__title-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  background-image: url("images/blue-square.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.voices__title-text::before {
  left: 0;
}

.voices__title-text::after {
  right: 0;
}

.voice {
  display: flex;
  align-items: flex-end;
  margin-bottom: 90px;
}

.voice--right {
  flex-direction: row-reverse;
}

.voice__figure {
  display: flex;
  align-items: flex-end;
  padding-bottom: 12px;
  margin-right: 32px;
}

.voice--right .voice__figure {
  margin-right: 0;
  margin-left: 32px;
}

.voice__figure img {
  width: 140px;
}

.voice__bubble {
  position: relative;
  flex: 1;
  background-color: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  border: 2px solid #b7d1de;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.voice__title {
  font-size: 18px;
  font-weight: 700;
  color: #336188;
  margin: 0 0 10px;
}

.voice__text {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.voice__bubble::before,
.voice__bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
}

.voice__bubble::before {
  border-width: 14px 16px 14px 0;
  border-color: transparent #b7d1de transparent transparent;
  left: -16px;
}

.voice__bubble::after {
  border-width: 12px 14px 12px 0;
  border-color: transparent #fff transparent transparent;
  left: -14px;
}

.voice--right .voice__bubble::before {
  border-width: 14px 0 14px 16px;
  border-color: transparent transparent transparent #b7d1de;
  left: auto;
  right: -16px;
}

.voice--right .voice__bubble::after {
  border-width: 12px 0 12px 14px;
  border-color: transparent transparent transparent #fff;
  left: auto;
  right: -14px;
}

@media (max-width: 640px) {
  .voices {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .voices__title {
    font-size: 22px;
  }

  .voice,
  .voice--right {
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
  }

  .voice__figure {
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 0;
    margin-top: 12px;
  }

  .voice--right .voice__figure {
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 0;
    margin-top: 12px;
  }
  
  .voice__figure img {
    width: 90px;
  }

  .voice__bubble {
    padding: 18px 16px;
  }

  .voice__bubble::before,
  .voice__bubble::after,
  .voice--right .voice__bubble::before,
  .voice--right .voice__bubble::after {
    top: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .voice__bubble::before,
  .voice--right .voice__bubble::before {
    bottom: -18px;
    border-width: 14px 14px 0 14px;
    border-color: #b7d1de transparent transparent transparent;
  }

  .voice__bubble::after,
  .voice--right .voice__bubble::after {
    bottom: -16px;
    border-width: 12px 12px 0 12px;
    border-color: #fff transparent transparent transparent;
  }
}

/* FAQ */
.faq {
  background-color: #f3f7fb;
}

.faq__title {
  text-align: center;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  margin-bottom: 60px;
  color: #000;
}

.faq__title-text {
  display: inline-block;
  padding: 0 48px;
  position: relative;
}

.faq__title-text::before,
.faq__title-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  background: url("images/blue-square.png") no-repeat center / contain;
  transform: translateY(-50%);
}

.faq__title-text::before {
  left: 0;
}

.faq__title-text::after {
  right: 0;
}

.faq__list {
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  list-style: none;
  counter-reset: faq;
}

/* ===== Q & A 共通の箱 ===== */
.faq-item__question,
.faq-item__answer {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ===== Q（dt） ===== */
.faq-item__question {
  margin: 0;
  padding: 16px 48px 16px 90px;
  font-weight: 700;
  font-size: 2vh;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* Q番号 */
.faq-item__question::before {
  counter-increment: faq;
  content: "Q" counter(faq) ".";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 95px;
  color: #5987af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-size: 2.5vh;
  font-weight: 700;
}

/* ＋ − アイコン */
.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #5987af;
}

/* ===== A（dd） ===== */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  font-size: 1.7vh;
  line-height: 1.9;
  padding: 0 32px 0 90px;
  position: relative;
  border-top: none;
  border-radius: 0 0 4px 4px;
  margin-bottom: 14px;
}

.faq-item__answer::before {
  content: "A.";
  position: absolute;
  left: 20px;
  top: 14px;
  font-size: 2vh;
  font-weight: 700;
  color: #b43b3b;
}

/* ===== 開いた状態（ここが重要） ===== */
.faq-item__question.is-open {
  border-radius: 4px 4px 0 0;
}

.faq-item__question.is-open::after {
  content: "−";
}

.faq-item__question.is-open + .faq-item__answer {
  max-height: 500px;
  padding: 16px 32px 20px 60px;
}

/* ===== SP ===== */
@media (max-width: 640px) {
  .faq-item__question {
    padding: 14px 40px 14px 90px;
    font-size: 14px;
  }

  .faq-item__question::before {
    width: 70px;
    font-size: 14px;
  }

  .faq-item__answer {
    padding-left: 90px;
    font-size: 14px;
  }

  .faq-item__answer::before {
    left: 24px;
  }
}

/* NOTES */
.notes__title {
  text-align: center;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  font-weight: 600;
  color: #000;
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.notes__icon {
  width: 48px;
  height: auto;
}

.notes__box {
  border: 2px solid #333;
  padding: 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.notes__lead {
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 32px;
  font-size: 18px;
}

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

.notes__item {
  display: flex;
  align-items: flex-start;
  font-size: 1.7vh;
  margin-bottom: 14px;
  line-height: 1.7;
}

.notes__item::before {
  content: "☑";
  color: #547a9c;
  margin-right: 10px;
  font-size: 1.7vh;
}

/* MESSAGE */
.message {
  background-image: url("images/anataniyorisou-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.message__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  text-align: center;
  margin-bottom: 50px;
  color: #336188;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
  font-weight: 700;
}

.message__text {
  font-size: 1.9vh;
  line-height: 2.2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 65px;
  color: #000;
  font-weight: 500;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

.message__price-accent {
  color: #ebaf24;
  font-weight: bold;
}

.message-points {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 0;
  list-style: none;
  margin-top: 40px;
}

.message-points__item {
  list-style: none;
}

.point-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.7vh;
  line-height: 1.7;
  color: #226576;
  text-align: center;
  background: radial-gradient(
    rgba(255, 255, 255, 0.93) 40%,
    rgba(220, 235, 255, 0.45) 70%,
    rgba(200, 220, 255, 0.2) 100%
  );
  box-shadow: 0 0 20px rgba(210, 230, 255, 0.4);
}

@media (max-width: 640px) {
  .message-points {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .point-circle {
    width: 220px;
    height: 220px;
    font-size: 1.6vh;
  }
}

/* HISTORY */
.history {
  padding: 120px 0;
  background: url("images/anayama_baisen-bg.png") center top / cover no-repeat;
}

.history__wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 18px;
}

.history__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  color: #15446b;
  margin-bottom: 32px;
}

.history__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5vh;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.7;
}

.history__note {
  font-size: 1.7vh;
  color: #000;
}

.history__text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.7vh;
  line-height: 2.2;
  color: #000;
  text-align: left;
  margin: 0 auto;
  max-width: 780px;
  background: rgba(255, 255, 255, 0.88);
  padding: 35px 28px;
  border-radius: 8px;
}

/* COMPANY */
.company {
  position: relative;
  padding: 120px 0 150px;
  background-image: url("images/shinrai-jisseki-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.company__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.company__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  color: #336188;
  margin: 0 0 24px;
  font-weight: 700;
}

.company__text {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2vh;
  color: #000;
  font-weight: 700;
}

.company__card {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 26px 40px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.company__info {
  margin: 0;
}

.company__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
  white-space: nowrap;
}

.company__row:last-child {
  border-bottom: none;
}

.company__label {
  flex: 0 0 80px;
  font-weight: 700;
  color: #000;
  text-align: left;
}

.company__value {
  flex: 1 1 auto;
  text-align: left;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company__tel-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(51, 97, 136, 0.5);
}

.company__tel-link:hover {
  border-bottom-color: transparent;
}

@media (max-width: 640px) {
  .company {
    padding: 80px 0 100px;
  }

  .company__title {
    font-size: 22px;
    line-height: 1.5;
  }

  .company__text {
    font-size: 14px;
  }

  .company__card {
    margin-top: 28px;
    padding: 20px 18px;
  }

  .company__row {
    display: block;
    white-space: normal;
  }

  .company__label {
    width: 100%;
    margin: 0 0 3px 0;
  }

  .company__value {
    width: 100%;
  }
}

/* CTA */
.cta {
  background-color: #336188;
  padding: 70px 0 90px;
}

.cta__inner {
  max-width: 980px;
  margin: 0 auto;
}

.cta__title {
  margin: 0 0 32px;
  text-align: center;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  color: #fff;
}

.cta__title-accent {
  color: #fff700;
}

.cta-bar {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 40px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-bar__button {
  flex: 0 0 350px;
}

.cta-bar__button .button--primary {
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  display: flex;
  justify-content: center;
}

.hero-cta__button .button__label,
.cta-bar__button .button__label,
.flow__button .button__label {
  font-size: 18px;
}

.cta-bar__divider {
  width: 1px;
  height: 80px;
  background-color: #d0d0d0;
  margin: 0 32px;
}

.cta-bar__phone {
  flex: 1;
  text-align: center;
}

.cta-bar__phone-label {
  margin: 0 0 8px;
  font-size: 1.8vh;
  font-weight: 700;
  color: #000;
}

.cta-bar__phone-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-bar__phone-icon img {
  width: 3.8vh;
  height: 3.8vh;
  margin-right: 12px;
}

.cta-bar__phone-number {
  font-size: 4.2vh;
  line-height: 1;
  font-weight: 900;
  color: #336188;
  font-family: "Noto Serif JP", serif;
}

.cta-bar__phone-time {
  margin-top: 10px;
  font-size: 1.8vh;
  color: #000;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cta {
    padding: 48px 0 60px;
  }

  .cta__title {
    font-size: 18px;
    line-height: 1.7;
  }

  .cta-bar {
    flex-direction: column;
    align-items: center;
    padding: 18px 16px;
  }

  .cta-bar__button {
    width: 100%;
    margin-bottom: 18px;
  }

  .cta-bar__divider {
    display: none;
  }

  .cta-bar__phone {
    width: 100%;
  }

  .cta-bar__phone-label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .cta-bar__phone-main {
    justify-content: center;
  }

  .cta-bar__phone-icon img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  .cta-bar__phone-number {
    font-size: 26px;
  }

  .cta-bar__phone-time {
    font-size: 12px;
    margin-top: 6px;
  }
}

@media (max-width: 640px) {
  .cta-bar__button .button--primary {
    padding: 12px 24px !important;
    border: double 6px #ffffff !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap;
  }

  .cta-bar__button {
    flex: 0 0 auto !important;
    width: auto !important;
  }
}

/* CONTACT */
.contact {
  background-color: #fbf7f2;
  padding: 80px 0 100px;
}

.contact__inner {
  max-width: 940px;
  margin: 0 auto;
}

.contact__title {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 3vh;
  color: #000;
}

.contact__title-accent {
  color: #ff0000;
}

.contact__title-accent-inner {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
}

.contact__title-accent-inner::before {
  content: "・・・";
  position: absolute;
  top: -0.65em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55em;
  letter-spacing: 0.35em;
}

/* CONTACT FORM 基本 */
.contact-form {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 40px 0px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #e3ddd2;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1.7vh;
  color: #000;
}

.contact-form__group {
  margin-bottom: 18px;
}

/* CF7 が <p> でラップするのを想定した調整 */
.contact-form__group > p {
  margin: 0 0 6px;
}

.contact-form__group > p:last-child {
  margin-bottom: 0;
}

/* ラベル */
.contact-form__label {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.7vh;
}

.contact-form__required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 1.5vh;
  line-height: 1.4;
  border-radius: 2px;
  background-color: #ff0000;
  color: #fff;
}

/* 行レイアウト */
.contact-form__row {
  display: flex;
  gap: 10px;
}

/* CF7 の <p> ラップを横並びにする */
.contact-form__row > p {
  margin: 0;
  display: flex;
  flex: 1 1 0;
  gap: 10px;
  flex-wrap: wrap;
}

/* Safari flex 崩れ対策 */
.contact-form__row > p,
.contact-form__row > p > *,
.wpcf7-form-control-wrap {
  min-width: 0;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
  min-width: 0;
}


/* <br> はレイアウトに不要なので非表示 */
.contact-form__row > p br {
  display: none;
}

/* 2カラム行（お名前、フリガナ、希望日時など） */
.contact-form__group--row2 .contact-form__row .contact-form__input,
.contact-form__group--row2 .contact-form__row .wpcf7-form-control-wrap {
  flex: 1 1 0;
}

/* 日付＋時間 */
.contact-form__row--date .contact-form__input[type="date"],
.contact-form__row--date .contact-form__input[type="time"],
.contact-form__row--date .wpcf7-form-control-wrap {
  max-width: 200px;
}

/* テキスト / テキストエリア共通 */
.contact-form__input,
.contact-form__textarea,
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap input[type="date"],
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 3px;
  border: 1px solid #d3d3d3;
  font-size: 2vh;
  box-sizing: border-box;
  background-color: #fff;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap select:focus,
.wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: #6b8fb4;
  box-shadow: 0 0 0 1px rgba(107, 143, 180, 0.4);
}

.contact-form__textarea,
.wpcf7-form-control-wrap textarea {
  resize: vertical;
  min-height: 120px;
}

/* 住所ブロック */
.contact-form__row--address {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.contact-form__row--address-top {
  margin-top: 0;
}

/* 郵便番号・都道府県・市区町村の幅
   ─ CF7 のラッパ(span.wpcf7-form-control-wrap)をflexアイテムにする */
.contact-form__row--address .wpcf7-form-control-wrap[data-name="zip"] {
  flex: 0 0 35%;
}

.contact-form__row--address .wpcf7-form-control-wrap[data-name="pref"] {
  flex: 0 0 35%;
}

.contact-form__row--address .wpcf7-form-control-wrap[data-name="city"] {
  flex: 1 1 auto;
}

/* ラジオ・チェックボックスグループ */
.contact-form__radio-group,
.contact-form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 1.7vh;
}

/* CF7が <p> でラップするのをリセット */
.contact-form__checkbox-group > p,
.contact-form__radio-group > p {
  margin: 0;
}

/* CF7 の .wpcf7-list-item を通常の label と同じ扱いに */
.contact-form__checkbox-group .wpcf7-list-item,
.contact-form__radio-group .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.contact-form__checkbox-group label,
.contact-form__radio-group label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.contact-form__checkbox-group input,
.contact-form__radio-group input {
  margin-right: 4px;
}

/* wrapバリエーション（宗派、ご希望プランなど） */
.contact-form__checkbox-group--wrap,
.contact-form__radio-group--wrap {
  gap: 8px 20px;
}

/* グレーのボックス */
.contact-form__box {
  background-color: #f3f3f3;
  border-radius: 4px;
  padding: 12px 14px;
  margin-top: 6px;
}

.contact-form__option-title {
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 1.7vh;
}

/* CF7 の wrap 要素共通 */
.wpcf7-form-control-wrap {
  width: 100%;
}

/* 送信ボタン */
.contact-form .button--accent,
.wpcf7-submit.button--accent {
  background-color: #336188 !important;
  background-image: none !important;
  color: #fff;
  font-size: 2vh;
  padding: 14px 44px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
}

.contact-form .button--accent:hover,
.wpcf7-submit.button--accent:hover {
  background-color: #336188 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.contact-form__submit {
  text-align: center;
}

/* 送信完了したボタンの見た目（お好みで調整） */
.wpcf7-submit.is-complete,
.contact-form .button--accent.is-complete {
  opacity: 0.8;
  cursor: default;
}

div.wpcf7 .wpcf7-spinner {
    display: none;
    margin: 0 auto;
}
div.wpcf7-response-output {
  margin: 0 auto;
}

.cf-turnstile {
  display: block;
  text-align: center;
}

/* CONTACT: メディアクエリ */
@media (max-width: 640px) {
  .contact {
    padding: 60px 0 80px;
  }

  .contact__title {
    font-size: 20px;
    line-height: 1.6;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .contact-form__row,
  .contact-form__row > p,
  .contact-form__row--address {
    flex-direction: column;
    gap: 8px;
  }

  /* Safari用：CF7 flex解除 */
  .contact-form__row > p {
    display: block !important;
  }

  /* 横幅制限を完全解除 */
  .contact-form__row--date .wpcf7-form-control-wrap {
    max-width: none !important;
    width: 100% !important;
  }

  /* flex-basis 強制 */
  .wpcf7-form-control-wrap {
    flex: 0 0 100% !important;
    min-width: 0;
  }

  /* 入力欄そのものに余白を付ける（Safari確殺） */
  .contact-form__row input,
  .contact-form__row select,
  .contact-form__row textarea {
    margin-bottom: 8px;
  }

  /* 最後の入力欄だけ余白を消す */
  .contact-form__row input:last-child,
  .contact-form__row select:last-child,
  .contact-form__row textarea:last-child {
    margin-bottom: 0;
  }

  /* CF7のラッパを block 化（Safari必須） */
  .contact-form__row > p > .wpcf7-form-control-wrap {
    display: block !important;
    width: 100%;
    margin-bottom: 8px;
  }

  /* 最後だけ余白を消す */
  .contact-form__row > p > .wpcf7-form-control-wrap:last-child {
    margin-bottom: 0;
  }


  .contact-form__row--date .contact-form__input[type="date"],
  .contact-form__row--date .contact-form__input[type="time"],
  .contact-form__row--date .wpcf7-form-control-wrap {
    max-width: 100%;
  }

  .contact-form__checkbox-group,
  .contact-form__radio-group {
    gap: 6px 10px;
  }

  .contact-form__checkbox-group label,
  .contact-form__radio-group label {
    font-size: 12px;
  }

  .contact-form__row--address .wpcf7-form-control-wrap[data-name="zip"],
  .contact-form__row--address .wpcf7-form-control-wrap[data-name="pref"],
  .contact-form__row--address .wpcf7-form-control-wrap[data-name="city"] {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* FOOTER */
.site-footer {
  background-color: #336188;
  color: #fff;
  text-align: center;
  padding: 56px 0 38px;
  font-family: "Noto Serif JP", serif;
}

.site-footer__inner {
  max-width: 960px;
  margin: 0 auto;
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.site-footer__logo img {
  width: 180px;
  height: auto;
  margin: 0 auto;
}

.site-footer__name {
  font-size: 2vh;
  font-weight: 700;
  margin-bottom: 14px;
}

.site-footer__info p {
  margin: 4px 0;
  font-size: 1.7vh;
  line-height: 1.7;
}

.footer-tel {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.footer-tel:hover {
  color: #d6e9ff;
}

.site-footer__copy {
  margin-top: 22px;
  font-size: 1.5vh;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 46px 0 32px;
  }

  .site-footer__logo img {
    width: 150px;
  }

  .site-footer__name {
    font-size: 18px;
  }

  .site-footer__info p {
    font-size: 13px;
  }

  .site-footer__copy {
    font-size: 11px;
  }
}

/* 固定ページ本文レイアウト */
.page-content {
  font-family: "Noto Serif JP", serif;
  color: #000;
  line-height: 1.9;
  font-size: 16px;
}

h1.section-title-privcy {
  margin: 36px 0 12px;
  font-size: 4vh;
  font-weight: 700;
  color: #336188;
  text-align: center;
}

.page-content h2 {
  margin: 36px 0 12px;
  font-size: 2.5vh;
  font-weight: 700;
  color: #336188;
}

.page-content p {
  margin-bottom: 16px;
}

.page-content ul {
  margin: 0 0 20px 20px;
  padding: 0;
  list-style: disc;
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}
