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

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
}

html {
  font-size: 16px;
  border: 10px solid turquoise;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333333;
  background-color: #FFFFFF;
}

a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

img {
  height: auto;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 1023px) {
  .l-header {
    height: 64px;
    padding: 0 16px;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
}
.l-header__logo {
  flex-shrink: 0;
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: auto;
  height: 48px;
}
@media (max-width: 1023px) {
  .l-header__logo img {
    height: 32px;
  }
}
.l-header__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 1023px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__utility {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-header__utility-link {
  display: flex;
  align-items: center;
  gap: 1px;
  border-radius: 4px;
  overflow: hidden;
}
.l-header__utility-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  background-color: #E8EEF6;
  font-size: 14px;
  font-weight: 500;
  color: #425267;
  line-height: 1.4;
  white-space: nowrap;
}
.l-header__utility-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.l-header__menu {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 8px;
}
.l-header__menu-item {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
  white-space: nowrap;
}
.l-header__menu-item a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-header__menu-item svg {
  width: 7px;
  height: 4px;
}
.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
@media (max-width: 1023px) {
  .l-header__hamburger {
    display: flex;
  }
}
.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #425267;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.l-header__mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  z-index: 99;
  padding: 24px 20px;
  overflow-y: auto;
}
@media (max-width: 1023px) {
  .l-header__mobile-nav.is-open {
    display: block;
  }
}
.l-header__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.l-header__mobile-menu-item {
  border-bottom: 1px solid #D0D7E0;
}
.l-header__mobile-menu-item a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}
.l-header__mobile-utility {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-header__mobile-utility-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #E8EEF6;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #425267;
}
.l-header__mobile-utility-item svg {
  width: 14px;
  height: 14px;
}

.l-footer {
  color: #333333;
}
.l-footer__clinic {
  background-color: #FFFFFF;
  border-top: 1px solid #D0D7E0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .l-footer__clinic {
    padding: 40px 0;
  }
}
.l-footer__clinic-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1023px) {
  .l-footer__clinic-inner {
    flex-direction: column;
    gap: 40px;
  }
}
.l-footer__clinic-info {
  flex-shrink: 0;
}
.l-footer__logo {
  margin-bottom: 24px;
}
.l-footer__logo img {
  height: 48px;
  width: auto;
}
@media (max-width: 767px) {
  .l-footer__logo img {
    height: 36px;
  }
}
.l-footer__address {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}
.l-footer__links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.l-footer__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid #D0D7E0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
}
.l-footer__link-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #D0D7E0;
}
.l-footer__link-btn:hover {
  border-color: #3C699C;
  color: #3C699C;
}
.l-footer__link-btn:hover svg {
  color: #3C699C;
}
@media (max-width: 767px) {
  .l-footer__link-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}
.l-footer__schedule {
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .l-footer__schedule {
    width: 100%;
  }
}
.l-footer__schedule-title {
  font-size: 16px;
  font-weight: 700;
  color: #425267;
  text-align: center;
  margin-bottom: 16px;
}
.l-footer__schedule-table {
  font-size: 14px;
  border-collapse: collapse;
  border: 1px solid #D0D7E0;
}
@media (max-width: 767px) {
  .l-footer__schedule-table {
    font-size: 12px;
    width: 100%;
  }
}
.l-footer__schedule-table th,
.l-footer__schedule-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #D0D7E0;
}
@media (max-width: 767px) {
  .l-footer__schedule-table th,
  .l-footer__schedule-table td {
    padding: 10px 8px;
  }
}
.l-footer__schedule-table thead th {
  font-weight: 500;
  color: #666;
  border-bottom: 1px solid #D0D7E0;
}
.l-footer__schedule-table thead th:first-child {
  text-align: left;
  font-weight: 700;
  color: #333333;
}
.l-footer__schedule-table tbody td {
  color: #3C699C;
  font-weight: 700;
}
.l-footer__schedule-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
}
.l-footer__schedule-table tbody td.is-closed {
  color: #D0D7E0;
}
.l-footer__schedule-table tbody tr:last-child td {
  border-bottom: none;
}
.l-footer__group {
  background-color: #F5F5F3;
  padding: 48px 0 56px;
  border-top: 1px solid #D0D7E0;
}
@media (max-width: 767px) {
  .l-footer__group {
    padding: 32px 0 40px;
  }
}
.l-footer__group-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.l-footer__group-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .l-footer__group-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }
}
.l-footer__group-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-footer__group-logo img {
  height: 36px;
  width: auto;
}
@media (max-width: 767px) {
  .l-footer__group-logo img {
    height: 28px;
  }
}
.l-footer__group-logo-text {
  font-size: 14px;
  font-weight: 700;
  color: #425267;
  line-height: 1.4;
}
.l-footer__group-logo-en {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #3C699C;
  letter-spacing: 0.08em;
}
.l-footer__group-links {
  display: flex;
  gap: 24px;
}
.l-footer__group-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: color 0.3s ease;
}
.l-footer__group-link svg {
  width: 14px;
  height: 14px;
  color: #D0D7E0;
}
.l-footer__group-link:hover {
  color: #3C699C;
}
.l-footer__group-link:hover svg {
  color: #3C699C;
}
.l-footer__group-nav {
  display: flex;
  gap: 60px;
}
@media (max-width: 767px) {
  .l-footer__group-nav {
    flex-direction: column;
    gap: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-footer__group-nav {
    gap: 40px;
  }
}
.l-footer__group-col {
  flex: 1;
  min-width: 0;
}
.l-footer__group-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.l-footer__group-col-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.l-footer__group-col-title-ja {
  font-size: 16px;
  font-weight: 700;
  color: #425267;
  white-space: nowrap;
}
.l-footer__group-col-title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #3C699C;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.l-footer__group-col-title-line {
  flex: 1;
  height: 1px;
  background-color: #D0D7E0;
}
.l-footer__group-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__group-list li a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #555;
  transition: color 0.3s ease;
}
.l-footer__group-list li a span {
  font-size: 12px;
  color: #999;
  margin-left: 4px;
}
.l-footer__group-list li a svg {
  width: 14px;
  height: 14px;
  color: #D0D7E0;
  flex-shrink: 0;
  margin-left: 2px;
}
.l-footer__group-list li a:hover {
  color: #3C699C;
}
.l-footer__bottom {
  background-color: #F5F5F3;
  border-top: 1px solid #D0D7E0;
  padding: 24px 0;
}
.l-footer__bottom-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .l-footer__bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.l-footer__bottom-link {
  font-size: 12px;
  color: #666;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.l-footer__bottom-link:hover {
  color: #3C699C;
}
.l-footer__copyright {
  font-size: 12px;
  color: #999;
}

.l-main {
  width: 100%;
  overflow: hidden;
}

.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-heading {
  text-align: center;
}
.c-heading__sub {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3C699C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-heading__sub {
    font-size: 12px;
  }
}
.c-heading__main {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .c-heading__main {
    font-size: 22px;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border: none;
}
.c-button:hover {
  opacity: 0.8;
}
.c-button--primary {
  background-color: #3C699C;
  color: #FFFFFF;
}
.c-button--outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.c-card {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 40px 16px;
  border-bottom: 1px solid #D0D7E0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .c-card {
    gap: 32px;
    padding: 32px 12px;
  }
}
@media (max-width: 767px) {
  .c-card {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }
}
.c-card:last-child {
  border-bottom: none;
}
.c-card__image {
  flex-shrink: 0;
  width: 320px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .c-card__image {
    width: 240px;
    height: 150px;
  }
}
@media (max-width: 767px) {
  .c-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 320/200;
  }
}
.c-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__body {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 18px;
}
@media (max-width: 767px) {
  .c-card__body {
    padding-top: 0;
    gap: 16px;
  }
}
.c-card__label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3C699C;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
.c-card__title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-card__title {
    font-size: 18px;
  }
}
.c-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 767px) {
  .c-card__text {
    font-size: 14px;
  }
}

.p-page-title {
  background-color: #425267;
  background-image: url("../images/titlebar-first.jpg");
  background-size: cover;
  background-position: center;
  padding: 48px 0 40px;
  position: relative;
}
.p-page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(66, 82, 103, 0.75);
}
@media (max-width: 767px) {
  .p-page-title {
    padding: 32px 0 28px;
  }
}
.p-page-title__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.p-page-title__heading {
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .p-page-title__heading {
    margin-bottom: 24px;
  }
}
.p-page-title__sub {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-page-title__sub {
    font-size: 12px;
  }
}
.p-page-title__main {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .p-page-title__main {
    font-size: 24px;
  }
}
.p-page-title__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .p-page-title__nav {
    gap: 8px;
  }
}
.p-page-title__nav-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .p-page-title__nav-item a {
    padding: 8px 14px;
    font-size: 12px;
  }
}
.p-page-title__nav-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  opacity: 1;
}

.p-hero {
  padding: 100px 0 80px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-hero {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .p-hero {
    padding: 40px 0;
  }
}
.p-hero__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-hero__inner {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .p-hero__inner {
    flex-direction: column;
    gap: 24px;
  }
}
.p-hero__body {
  flex: 1;
  min-width: 0;
}
.p-hero__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .p-hero__label {
    margin-bottom: 20px;
  }
}
.p-hero__label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: #425267;
}
.p-hero__label-text {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #333333;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-hero__label-text {
    font-size: 22px;
  }
}
.p-hero__content {
  max-width: 584px;
}
@media (max-width: 767px) {
  .p-hero__content {
    max-width: 100%;
  }
}
.p-hero__greeting {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .p-hero__greeting {
    font-size: 14px;
  }
}
.p-hero__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
@media (max-width: 767px) {
  .p-hero__text {
    font-size: 14px;
  }
}
.p-hero__image {
  flex-shrink: 0;
  width: 400px;
  height: 318px;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-hero__image {
    width: 300px;
    height: 240px;
  }
}
@media (max-width: 767px) {
  .p-hero__image {
    width: 100%;
    height: auto;
    aspect-ratio: 400/318;
  }
}
.p-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-points {
  padding: 0 0 80px;
}
@media (max-width: 767px) {
  .p-points {
    padding: 0 0 48px;
  }
}
.p-points__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-points__list {
  display: flex;
  flex-direction: column;
}

.p-steps {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-steps {
    padding: 48px 0;
  }
}
.p-steps__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-steps__list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .p-steps__list {
    margin-top: 32px;
    gap: 12px;
  }
}
.p-steps__item {
  background-color: #E8EEF6;
  border-radius: 8px;
  overflow: hidden;
}
.p-steps__item-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 32px 48px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-steps__item-inner {
    gap: 32px;
    padding: 24px 24px;
  }
}
@media (max-width: 767px) {
  .p-steps__item-inner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
  }
}
.p-steps__item-body {
  flex: 1;
}
@media (max-width: 767px) {
  .p-steps__item-body {
    order: 2;
  }
}
.p-steps__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-steps__item-header {
    gap: 12px;
    margin-bottom: 12px;
  }
}
.p-steps__item-label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3C699C;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-steps__item-label {
    font-size: 12px;
  }
}
.p-steps__item-separator {
  width: 1px;
  height: 20px;
  background-color: #D0D7E0;
  flex-shrink: 0;
}
.p-steps__item-title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-steps__item-title {
    font-size: 16px;
  }
}
.p-steps__item-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 767px) {
  .p-steps__item-text {
    font-size: 14px;
  }
}
.p-steps__item-note {
  display: flex;
  gap: 2px;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .p-steps__item-note {
    font-size: 12px;
    margin-top: 12px;
  }
}
.p-steps__item-note-mark {
  flex-shrink: 0;
  width: 17px;
}
.p-steps__item-image {
  flex-shrink: 0;
  width: 300px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 12px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-steps__item-image {
    width: 220px;
    height: 132px;
  }
}
@media (max-width: 767px) {
  .p-steps__item-image {
    width: 100%;
    height: auto;
    aspect-ratio: 300/180;
    margin-top: 0;
    order: 1;
  }
}
.p-steps__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-steps__arrow {
  display: flex;
  justify-content: center;
  padding: 0;
}
.p-steps__arrow svg {
  width: 20px;
  height: 12px;
  color: #425267;
}

.p-pain {
  padding: 80px 0;
  background-color: #FCFBF9;
}
@media (max-width: 767px) {
  .p-pain {
    padding: 48px 0;
  }
}
.p-pain__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-pain__subtitle {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .p-pain__subtitle {
    font-size: 20px;
    margin-top: 20px;
  }
}
.p-pain__circles {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .p-pain__circles {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
  }
}
.p-pain__circle-wrapper {
  display: flex;
  align-items: flex-start;
  flex: 1;
}
@media (max-width: 767px) {
  .p-pain__circle-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .p-pain__circle-wrapper::after {
    display: none !important;
  }
}
.p-pain__circle-wrapper:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 364px;
  background-color: #D0D7E0;
  flex-shrink: 0;
  margin: 0 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-pain__circle-wrapper:not(:last-child)::after {
    margin: 0 16px;
    height: 300px;
  }
}
.p-pain__circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-pain__circle-item {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .p-pain__circle-item {
    width: 240px;
  }
}
.p-pain__circle-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-pain__circle-image {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .p-pain__circle-image {
    width: 240px;
    height: 240px;
    margin-bottom: 16px;
  }
}
.p-pain__circle-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-pain__circle-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 767px) {
  .p-pain__circle-text {
    font-size: 14px;
  }
}
.p-pain__description {
  max-width: 784px;
  margin: 40px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 767px) {
  .p-pain__description {
    margin-top: 28px;
    font-size: 14px;
  }
}
.p-pain__note {
  display: flex;
  gap: 8px;
  max-width: 885px;
  margin: 16px auto 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 767px) {
  .p-pain__note {
    font-size: 12px;
  }
}
.p-pain__note-mark {
  flex-shrink: 0;
  font-weight: 500;
}

.p-cost {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-cost {
    padding: 48px 0;
  }
}
.p-cost__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.p-cost__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 920px;
  max-width: 100%;
  height: 52px;
  border: 1px solid #D0D7E0;
  border-radius: 4px;
  margin-top: 48px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .p-cost__box {
    margin-top: 28px;
    height: auto;
    padding: 16px 20px;
  }
}
.p-cost__price {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-cost__price {
    font-size: 16px;
  }
}
.p-cost__notes {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
  text-align: left;
  max-width: 588px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-cost__notes {
    margin-top: 20px;
  }
}
.p-cost__note {
  display: flex;
  gap: 2px;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 767px) {
  .p-cost__note {
    font-size: 12px;
  }
}
.p-cost__note-mark {
  flex-shrink: 0;
  width: 17px;
}

.p-items {
  padding: 80px 0;
  background-color: #E8EEF6;
}
@media (max-width: 767px) {
  .p-items {
    padding: 48px 0;
  }
}
.p-items__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-items__list {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 56px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-items__list {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .p-items__list {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
  }
}
.p-items__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-items__item {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .p-items__item {
    width: calc(50% - 12px);
  }
}
.p-items__item-icon {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-items__item-icon {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .p-items__item-icon {
    width: 140px;
    height: 140px;
    margin-bottom: 12px;
  }
}
.p-items__item-icon img {
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-items__item-icon img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .p-items__item-icon img {
    width: 80px;
    height: 80px;
  }
}
.p-items__item-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 767px) {
  .p-items__item-text {
    font-size: 14px;
  }
}

.p-countermeasures {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-countermeasures {
    padding: 48px 0;
  }
}
.p-countermeasures__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-countermeasures__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-top: 24px;
  max-width: 796px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-countermeasures__lead {
    font-size: 14px;
    text-align: left;
  }
}
.p-countermeasures__list {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .p-countermeasures__list {
    margin-top: 32px;
  }
}

.p-cta {
  background-color: #425267;
  background-image: url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.p-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(66, 82, 103, 0.75);
}
@media (max-width: 767px) {
  .p-cta {
    padding: 32px 20px;
  }
}
.p-cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-cta__title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .p-cta__title {
    font-size: 18px;
  }
}
.p-cta__text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .p-cta__text {
    font-size: 12px;
    margin-bottom: 16px;
  }
}
.p-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.p-cta__buttons .c-button {
  padding: 20px 64px;
  font-size: 18px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .p-cta__buttons .c-button {
    padding: 16px 40px;
    font-size: 16px;
  }
}
.p-cta__note {
  font-size: 12px;
  opacity: 0.6;
}
.p-cta__note a {
  text-decoration: underline;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mt-sm {
  margin-top: 16px;
}

.u-mt-md {
  margin-top: 32px;
}

.u-mt-lg {
  margin-top: 48px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=style.css.map */