@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}
html.is-nav-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-feature-settings: "palt";
  line-height: 1.7;
  color: #160903;
  background-color: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.body__inner {
  overflow: clip;
}

.page {
  container-type: inline-size;
}
@media (width >= 1024px) {
  .page {
    display: grid;
    grid-template-areas: "header header" "hero hero" "sidebar main" "footer footer";
    grid-template-columns: 224px 1fr;
    max-width: 1440px;
    margin-inline: auto;
  }
}

.l-header {
  grid-area: header;
  transition: opacity 1s ease-out;
}
.page-home .l-header {
  opacity: 0;
}
.page-home.is-loaded .l-header {
  opacity: 1;
}
@media (width >= 1024px) {
  .page-404 .l-header {
    display: none;
  }
}

.l-sidebar {
  display: none;
  grid-area: sidebar;
}
@media (width >= 1024px) {
  .l-sidebar {
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease-out;
  }
  .is-scrolled-top.page-home .l-sidebar {
    opacity: 0;
  }
}

.l-main {
  grid-area: main;
}
@media (width >= 1024px) {
  .l-main:not(.not-found) {
    padding-right: clamp(60px, 6.9444444444vw, 100px);
    margin-left: 102px;
  }
}

.l-hero {
  grid-area: hero;
}

.l-footer {
  grid-area: footer;
}

@media (width >= 1024px) {
  .page {
    flex-direction: column;
  }
  .page__content {
    margin-left: 0;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
}
@media (width >= 1024px) {
  .header {
    position: static;
  }
}
.header__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 10px;
}
@media (width >= 1024px) {
  .header__inner {
    position: relative;
    max-width: 1440px;
    height: 110px;
    padding-inline: clamp(60px, 6.9444444444vw, 100px);
  }
  .header__inner::before {
    display: block;
    width: 168px;
    height: 0;
    content: "";
  }
}
.header__logo {
  width: 192px;
}
@media (width >= 1024px) {
  .header__logo {
    position: absolute;
    top: 50%;
    left: clamp(60px, 6.9444444444vw, 100px);
    width: 300px;
    transform: translate(0, -50%);
  }
}
@media (width >= 1440px) {
  .header__logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.header__logo:hover {
  opacity: 0.6;
}
.header__right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__links {
  display: flex;
  align-items: center;
}
.header__link {
  position: relative;
  padding: 3px 8px;
  border-left: 1px solid rgba(22, 9, 3, 0.25);
  transition: opacity 0.2s;
}
.header__link:last-child {
  border-right: 1px solid rgba(22, 9, 3, 0.25);
}
@media (width >= 1024px) {
  .header__link {
    padding: 3px 25px;
  }
}
.header__link-default {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (width >= 1024px) {
  .header__link:hover .header__link-default {
    position: absolute;
    top: 50%;
    right: 25px;
    opacity: 0;
    transition: opacity 0.5s;
    transform: translate(0, -50%);
  }
}
.header__link-hover {
  display: none;
}
@media (width >= 1024px) {
  .header__link-hover {
    align-items: center;
    opacity: 0;
  }
  .header__link:hover .header__link-hover {
    position: static;
    display: flex;
    opacity: 0;
    animation: fade-in 0.5s forwards;
  }
}
.header__icon {
  display: block;
  width: 32px;
  height: 32px;
  opacity: 0.7;
}
@media (width >= 1024px) {
  .header__tel-detail {
    display: block;
    width: 0;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .header__tel:hover .header__tel-detail {
    width: 200px;
    margin-left: 10px;
  }
}
.header__tel-number {
  display: block;
  font-size: 22px;
  line-height: 1;
}
.header__tel-hours {
  display: block;
  font-size: 12px;
}
@media (width >= 1024px) {
  .header__calendar-text {
    display: block;
    width: 0;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .header__calendar:hover .header__calendar-text {
    width: 100px;
    margin-left: 10px;
  }
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 40px;
}
@media (width >= 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger-line {
  width: 100%;
  height: 1px;
  background-color: #160903;
}

.hamburger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  color: #fff;
  pointer-events: none;
  background-color: #7c7f87;
  opacity: 0;
}
.hamburger.is-open {
  pointer-events: auto;
}
.hamburger__close {
  position: fixed;
  top: 30px;
  right: 16px;
  width: 40px;
  height: 25px;
}
.hamburger__inner {
  display: flex;
  flex-direction: column;
  max-width: 390px;
  padding: 30px 25px;
  margin-inline: auto;
}
.hamburger__main {
  width: 198px;
  margin-right: 28px;
  margin-left: auto;
}
.hamburger__logo {
  width: 116px;
  margin-bottom: 77px;
}
.hamburger__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hamburger__contact {
  margin-top: 42px;
}
.hamburger__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 30px;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: #5c606a;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  transition: all 0.2s;
}
.hamburger__cta:hover {
  background-color: #bec2ca;
  border-color: transparent;
}
.hamburger__tel {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 20px;
}
.hamburger__tel-label {
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 1;
}
.hamburger__tel-number {
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 26px;
  line-height: 1;
}
.hamburger__hours {
  margin-top: 4px;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.hamburger__divider {
  margin: 18px 0 14px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.hamburger__clinic-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  align-self: flex-end;
  margin-right: 28px;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  transition: opacity 0.2s;
}
@media (width >= 1024px) {
  .hamburger__clinic-link {
    align-self: flex-end;
  }
}
.hamburger__clinic-link:hover {
  opacity: 0.7;
}
.hamburger__external-icon {
  width: 13px;
  height: 13px;
}

.sidebar {
  position: relative;
  z-index: 100;
}
.sidebar__inner {
  position: relative;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.sidebar__main {
  position: relative;
  z-index: 5;
  padding: 60px 24px 132px;
}
.sidebar__main::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 30.89%);
  border-radius: 0 0 1600px;
}
.sidebar__main::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  content: "";
  background: linear-gradient(180deg, rgba(230, 82, 82, 0) 0%, rgb(230, 82, 82) 49%);
  border-radius: 0 0 1600px;
  mix-blend-mode: multiply;
  opacity: 0.4;
}
.sidebar__logo {
  display: block;
  width: 144px;
  margin: 0 auto 54px;
}
.sidebar__logo img {
  display: block;
  width: 144px;
  height: auto;
}
.sidebar__nav {
  display: flex;
  flex: 1;
  align-items: center;
  max-width: 166px;
  margin-inline: auto;
}
.sidebar__nav-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar__nav-link {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  line-height: 1;
  color: #160903;
  transition: opacity 0.2s;
}
.sidebar__nav-link::before {
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.sidebar__nav-link:hover {
  opacity: 0.7;
}
.sidebar__nav-link:hover::before {
  opacity: 1;
}
.sidebar__nav-link.is-current::before {
  opacity: 1;
}
.sidebar__nav-label {
  letter-spacing: 0;
}
.sidebar__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 32px 30px;
}
.sidebar__tel {
  display: flex;
  gap: 6px;
  align-items: center;
}
.sidebar__tel-label {
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 1;
  color: #5c606a;
}
.sidebar__tel-number {
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 26px;
  line-height: 1;
  color: #5c606a;
}
.sidebar__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar__hours-main {
  margin: 0;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  line-height: 1.4;
  color: #5c606a;
  letter-spacing: 0.03em;
}
.sidebar__hours-note {
  margin: 0;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 12px;
  line-height: 1;
  color: #5c606a;
  letter-spacing: 0.03em;
}
.sidebar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  padding: 10px 30px;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #160903;
  letter-spacing: 0.05em;
  background-color: #fff;
  border: 1px solid rgba(92, 96, 106, 0.6);
  border-radius: 30px;
  transition: all 0.2s;
}
.sidebar__cta:hover {
  background-color: #bec2ca;
  border-color: transparent;
}

.site-footer {
  position: sticky;
  bottom: 0;
  max-height: 100vh;
  overflow: hidden;
  overscroll-behavior: none;
  color: #fff;
  background-color: #7c7f87;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.site-footer::-webkit-scrollbar {
  display: none;
}
.site-footer.is-static {
  position: static;
  max-height: none;
  overflow: visible;
}
.site-footer__outer {
  position: relative;
  padding: 20px 0;
}
@media (width >= 1024px) {
  .site-footer__outer {
    padding: 206px 0 60px;
  }
}
.site-footer__inner {
  position: relative;
  gap: 40px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media (width >= 1024px) {
  .site-footer__inner {
    max-width: 1290px;
    padding-inline: 50px;
  }
}
@media (width >= 1024px) {
  .site-footer__main {
    display: flex;
    justify-content: space-between;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.site-footer__title {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  opacity: 0.7;
}
@media (width >= 1024px) {
  .site-footer__title {
    font-size: 56px;
  }
}
.site-footer__subtitle {
  margin-top: 5px;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  opacity: 0.7;
}
@media (width >= 1024px) {
  .site-footer__subtitle {
    font-size: 16px;
  }
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
@media (width >= 1024px) {
  .site-footer__nav {
    flex-direction: row;
    gap: clamp(32px, 5vw, 70px);
    margin-top: 0;
  }
}
.site-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width >= 1024px) {
  .site-footer__nav-col {
    gap: 40px;
  }
}
.site-footer__nav-link {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 17px;
  line-height: 1;
  color: #fff;
  transition: opacity 0.2s;
}
@media (width >= 1024px) {
  .site-footer__nav-link {
    font-size: 16px;
    white-space: nowrap;
  }
}
.site-footer__nav-link::before {
  width: 6px;
  height: 6px;
  background-color: #e65252;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (width >= 1024px) {
  .site-footer__nav-link::before {
    display: block;
    content: "";
  }
}
.site-footer__nav-link:hover {
  opacity: 0.7;
}
.site-footer__nav-link:hover::before {
  opacity: 1;
}
.site-footer__copy-vertical {
  position: absolute;
  top: 36px;
  right: 10px;
  margin: 0;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.0434em;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
@media (width >= 1024px) {
  .site-footer__copy-vertical {
    top: 40px;
    right: 20px;
  }
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (width >= 1024px) {
  .site-footer__bottom {
    margin-top: 25px;
  }
}
.site-footer__tagline {
  margin-top: 50px;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.05em;
}
@media (width >= 1024px) {
  .site-footer__tagline {
    margin: 0 0 18px;
    font-size: 22px;
  }
}
.site-footer__divider {
  margin: 18px 0 14px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.site-footer__clinic-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  transition: opacity 0.2s;
}
@media (width >= 1024px) {
  .site-footer__clinic-link {
    align-self: flex-end;
  }
}
.site-footer__clinic-link:hover {
  opacity: 0.7;
}
.site-footer__external-icon {
  width: 13px;
  height: 13px;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.loading.is-hidden {
  display: none;
}
.loading__logo {
  width: 222px;
  height: 222px;
  filter: blur(20px);
  transition: filter 1s ease-out;
  will-change: filter;
}
.is-started .loading__logo {
  filter: blur(0);
}

.page-top {
  display: none;
}
@media (width >= 1024px) {
  .page-top {
    position: fixed;
    bottom: 30px;
    left: 50%;
    z-index: 10;
    display: block;
    width: 100%;
    max-width: 1440px;
    pointer-events: none;
    transform: translateX(-50%);
  }
  .page-top.is-stopped {
    position: absolute;
  }
}
.page-top__link {
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-right: 30px;
  margin-left: auto;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.is-scrolled-top .page-top__link {
  opacity: 0;
}
.page-top__text {
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.page-top__arrow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
  width: 9px;
  height: 70px;
  rotate: 180deg;
}
.page-top__arrow svg {
  width: 9px;
  height: auto;
}
.page-top__arrow::before {
  display: block;
  width: 1px;
  height: 56px;
  content: "";
  background-color: #160903;
  opacity: 0.4;
  animation: scroll-up 3s ease-in-out infinite;
}

.hero {
  position: relative;
  max-width: 500px;
  padding: 45px 25px 0;
  margin: 0 auto;
}
@media (width >= 1024px) {
  .hero {
    max-width: 1440px;
    padding: 0 clamp(60px, 6.94vw, 100px);
  }
}
.hero__scroll-down {
  display: none;
}
@media (width >= 1024px) {
  .hero__scroll-down {
    position: absolute;
    top: 50%;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-out;
    transform: translateY(-50%);
  }
  .is-loaded .hero__scroll-down {
    opacity: 1;
  }
}
.hero__scroll-down-text {
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.hero__scroll-down-arrow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 9px;
  height: 70px;
}
.hero__scroll-down-arrow svg {
  width: 9px;
  height: auto;
}
.hero__scroll-down-arrow::before {
  display: block;
  width: 1px;
  height: 56px;
  content: "";
  background-color: #160903;
  opacity: 0.4;
  animation: scroll-up 3s ease-in-out infinite;
}
.hero__wrapper {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
}
.hero__rect {
  position: absolute;
  top: 0;
  z-index: 2;
  display: block;
  width: 50vw;
  height: 100%;
  content: "";
  background-color: #fff;
}
.hero__rect--left {
  left: 0;
}
.hero__rect--right {
  right: 0;
}
.hero__anm {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  opacity: 0.3;
  object-fit: cover;
}
.hero__front {
  position: relative;
}
.hero__bg-image {
  width: 100%;
}
.hero__blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 340/584;
  /* mask */
  clip-path: url("#blur_path");
  background-color: rgba(255, 255, 255, 0.3);
  /* 全体にぼかしを適用 */
  backdrop-filter: blur(8px);
}
@media (width >= 1024px) {
  .hero__blur {
    clip-path: url("#blur_path_lg");
  }
}
.hero__blur-path {
  position: absolute;
  width: 100%;
  height: auto;
}
.hero__text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding-bottom: 40px;
  padding-left: 10px;
  color: #160903;
  text-align: left;
  mix-blend-mode: overlay;
  opacity: 0;
}
@media (width >= 1024px) {
  .hero__text {
    top: 28%;
    bottom: auto;
    left: 3.5483870968%;
  }
}
.hero__title {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 0.85;
}
@media (width >= 1024px) {
  .hero__title {
    font-size: clamp(70px, 7.6388888889vw, 110px);
  }
}
.hero__subtitle {
  font-size: 14px;
  line-height: 1.8;
}
@media (width >= 1024px) {
  .hero__subtitle {
    margin-top: 0.8em;
    font-size: clamp(14px, 1.1111111111vw, 16px);
  }
}
.hero__deco {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  mix-blend-mode: multiply;
}
@media (width >= 1024px) {
  .hero__deco--sm {
    display: none;
  }
}
.hero__deco--lg {
  display: none;
}
@media (width >= 1024px) {
  .hero__deco--lg {
    display: block;
  }
}

.second-view {
  position: relative;
  z-index: 1;
  max-width: 500px;
  aspect-ratio: 390/441;
  margin: 0 auto;
}
.second-view::before {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  content: "";
  background-color: #f6f2ee;
}
@media (width >= 1024px) {
  .second-view::before {
    display: none;
  }
}
@media (width >= 1024px) {
  .second-view {
    position: absolute;
    top: 80%;
    right: 0;
    z-index: 3;
    width: min(241px, 16.7361111111vw);
    height: min(857px, 59.5138888889vw);
  }
}
.second-view__img {
  position: absolute;
  display: block;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
.second-view__img:nth-child(1) {
  top: -50px;
  right: 7.3529411765%;
  z-index: 2;
  width: 34.4117647059%;
  border-radius: 0 0 200px;
}
@media (width >= 1024px) {
  .second-view__img:nth-child(1) {
    top: 0;
    left: 0;
    width: 82.9875518672%;
  }
}
.second-view__img:nth-child(2) {
  top: 105px;
  left: 11.4705882353%;
  width: 25%;
  border-radius: 0 200px 200px 0;
}
@media (width >= 1024px) {
  .second-view__img:nth-child(2) {
    top: 46.3243873979%;
    right: 0;
    left: auto;
    width: 59.7510373444%;
  }
}
.second-view__img img {
  transform: scale(1.15);
}
.is-shown .second-view__img img {
  animation: scale-down 10s ease-out forwards;
}

.main-first {
  position: relative;
  margin-bottom: 172px;
}
@media (width >= 1024px) {
  .main-first {
    margin-bottom: 305px;
  }
}
.main-first::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #f6f2ee 96.5%, #fff 100%);
}
@media (width >= 1024px) {
  .main-first::before {
    top: 0;
    right: 0;
    left: auto;
    width: calc(100cqw - clamp(120px, 13.88vw, 200px));
    max-width: 1240px;
    background: linear-gradient(180deg, #f6f2ee 68.47%, #fff 100%);
  }
}
.main-first__bottom {
  max-width: 1015px;
  margin-left: auto;
}
@media (width >= 1024px) {
  .main-first__bottom {
    position: relative;
  }
  .main-first__bottom::before {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f6f2ee 13.55%, #f6f2ee 83.6%, rgba(255, 255, 255, 0) 100%);
    mix-blend-mode: multiply;
  }
}

/* section common */
.section-head {
  margin-bottom: 46px;
}
@media (width >= 1024px) {
  .section-head {
    margin-bottom: 72px;
  }
}
.section-head__en {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 65px;
  font-weight: 400;
  line-height: 1;
  color: #160903;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  filter: blur(8px);
  opacity: 0.1;
}
.is-animated .section-head__en {
  animation: clear-blur 0.5s ease-out forwards;
}
@media (width >= 1024px) {
  .section-head__en {
    font-size: 110px;
  }
}
.section-head__up {
  vertical-align: text-top;
}
.section-head__title {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 24px;
  opacity: 0;
}
.is-animated .section-head__title {
  animation: blur-in 0.5s ease-out forwards;
}
.section-head__icon {
  display: block;
  width: 15px;
  height: 30px;
  margin-top: 3px;
  background-color: #e65252;
  border-radius: 0 30px 30px 0;
}
.section-head__ja {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

/* fdd */
@media (width >= 1024px) {
  .fdd {
    padding-top: 200px;
    margin-right: 117px;
    margin-left: -117px;
  }
}
.fdd__head {
  margin-bottom: 40px;
  color: #5c606a;
  text-align: center;
}
@media (width >= 1024px) {
  .fdd__head {
    margin-bottom: 50px;
  }
}
.fdd__head-en {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 24px;
}
@media (width >= 1024px) {
  .fdd__head-en {
    font-size: 28px;
  }
}
.fdd__head-ja {
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 20px;
}
@media (width >= 1024px) {
  .fdd__head-ja {
    font-size: 24px;
  }
}
.fdd__lead {
  margin-bottom: 50px;
  font-size: 26px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (width >= 1024px) {
  .fdd__lead {
    margin-bottom: 60px;
  }
}
@media (width >= 1440px) {
  .fdd__lead {
    font-size: 32px;
  }
}
.fdd__text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

/* concerns */
.concerns {
  position: relative;
  padding-top: 111px;
}
@media (width >= 1024px) {
  .concerns {
    padding-top: 33px;
    margin-top: 200px;
  }
}
.concerns::before {
  position: absolute;
  top: 0;
  right: -140px;
  display: block;
  width: 324px;
  height: 217px;
  content: "";
  background: url("../images/deco_1.png") no-repeat center center/contain;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  rotate: 153deg;
}
@media (width >= 1024px) {
  .concerns::before {
    top: -110px;
    right: -282px;
    width: 639px;
    height: 425px;
  }
}
.concerns.is-animated::before {
  opacity: 0.3;
}
.concerns__inner {
  padding-inline: 25px;
}
.concerns__title {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 0;
}
.is-animated .concerns__title {
  animation: blur-in 0.5s 0.7s ease-out forwards;
}
.concerns__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 300px;
  margin-inline: auto;
}
@media (width >= 1024px) {
  .concerns__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 962px;
  }
}
.concerns__item {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  background-color: #fff8f8;
  box-shadow: inset 0 0 0 10px #dfd7d7;
}
@media (width >= 1024px) {
  .concerns__item {
    padding: 60px 30px;
  }
}
.concerns__case-label {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 4px 12px 6px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  background-color: #b88e87;
  border-radius: 4px;
  transform: translate(-50%, calc(-50% + 5px));
}
.concerns__text {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0;
}
.is-animated .concerns__text {
  animation: blur-in 0.5s 1s ease-out forwards;
}

/* difference */
.difference {
  position: relative;
  margin-top: 100px;
}
.difference__inner {
  position: relative;
  padding-inline: 25px;
}
.difference__badge {
  width: fit-content;
  padding: 10px 20px;
  margin-inline: auto;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #5c606a;
  background: rgba(184, 142, 135, 0.2);
}
.difference__title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}
.difference__lead {
  margin-bottom: 56px;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.08em;
}
.difference__table {
  display: block;
  max-width: 341px;
  margin: 0 auto;
}
@media (width >= 1024px) {
  .difference__table {
    max-width: 870px;
  }
}
.difference__note {
  margin-top: 80px;
  font-size: 18px;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0.02em;
  filter: blur(8px);
  will-change: filter;
}
@media (width >= 1024px) {
  .difference__note {
    position: relative;
    z-index: 2;
    padding-bottom: 134px;
    margin-top: 100px;
    font-size: 20px;
  }
}
.difference__images {
  position: relative;
  left: -25px;
  display: block;
  width: calc(100% + 50px);
  max-width: 500px;
  aspect-ratio: 390/651;
  margin-inline: auto;
  margin-top: 20px;
}
@media (width >= 1024px) {
  .difference__images {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1015/483;
  }
}
.difference__figure {
  position: absolute;
  opacity: 0;
}
.difference__figure img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.difference__figure--main {
  top: 12.2887864823%;
  width: 100%;
}
@media (width >= 1024px) {
  .difference__figure--main {
    top: auto;
    bottom: 0;
    left: 0;
    width: 49.7536945813%;
  }
}
.difference__figure--sub1 {
  top: 59.6006144393%;
  left: 6.1538461538%;
  z-index: 3;
  width: 44.358974359%;
  overflow: hidden;
  border-radius: 6px;
}
@media (width >= 1024px) {
  .difference__figure--sub1 {
    inset: auto 17.9310344828% -12.4223602484% auto;
    width: 22.0689655172%;
  }
}
.difference__figure--sub2 {
  right: 21.0256410256%;
  bottom: 0;
  width: 34.1025641026%;
  overflow: hidden;
  border-radius: 6px;
}
@media (width >= 1024px) {
  .difference__figure--sub2 {
    inset: 43.2712215321% 5.8128078818% auto auto;
    width: 17.0443349754%;
  }
}
.difference__deco {
  position: absolute;
  mix-blend-mode: multiply;
  opacity: 0;
}
.difference__deco--1 {
  top: 0;
  right: 11.0256410256%;
  width: 21.0256410256%;
}
@media (width >= 1024px) {
  .difference__deco--1 {
    right: 0;
    width: 13.3990147783%;
  }
}
.difference__deco--2 {
  right: 5.641025641%;
  bottom: 12.9032258065%;
  z-index: -1;
  width: 26.9230769231%;
}
@media (width >= 1024px) {
  .difference__deco--2 {
    inset: 72.8778467909% auto auto 28.078817734%;
    z-index: 2;
    width: 10.4433497537%;
  }
}

/* digital */
.digital {
  position: relative;
  max-width: 1015px;
  margin-left: auto;
}
.digital__head {
  position: relative;
  z-index: 3;
  padding-bottom: 46px;
  margin-bottom: 0;
}
@media (width >= 1024px) {
  .digital__head {
    padding-bottom: 0;
  }
}
.digital__head::before {
  position: absolute;
  top: 45px;
  left: -25px;
  z-index: -1;
  display: block;
  width: min(100vw, 1440px);
  height: 101%;
  content: "";
  background-color: #efeff0;
}
@media (width >= 1024px) {
  .digital__head::before {
    top: 0;
    left: -324px;
    height: 100%;
    border-top: 75px solid #fff;
  }
}
@media (width >= 1440px) {
  .digital__head::before {
    left: -325px;
  }
}
.digital__bg {
  position: absolute;
  top: 35px;
  display: block;
  width: min(100vw, 1440px);
  height: 100%;
  background-color: #efeff0;
}
@media (width >= 1024px) {
  .digital__bg {
    top: 55px;
    left: -214px;
    height: calc(100vh - 55px);
  }
}
.digital__inner {
  position: relative;
  padding: 0 25px;
}
@media (width >= 1024px) {
  .digital__inner {
    padding: 0;
  }
}
.digital__steps {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 200px;
}
@media (width >= 1024px) {
  .digital__steps {
    z-index: 2;
    display: grid;
    grid-auto-rows: 1fr;
    padding-top: 72px;
  }
}
.digital__steps::before {
  position: absolute;
  top: 0;
  left: -25px;
  z-index: -2;
  display: block;
  width: min(100vw, 1440px);
  height: 100%;
  content: "";
  background-color: #efeff0;
}
@media (width >= 1024px) {
  .digital__steps::before {
    left: -324px;
    height: 100%;
  }
}
@media (width >= 1440px) {
  .digital__steps::before {
    left: -325px;
  }
}
.digital__steps::after {
  display: block;
  width: 100%;
  height: 1px;
}
.digital__step {
  position: sticky;
  top: 80px;
  max-width: 500px;
  padding-bottom: 100px;
  margin-inline: auto;
  overflow: hidden;
  background-color: #efeff0;
  border-radius: 10px;
}
@media (width >= 1024px) {
  .digital__step {
    top: 240px;
    display: grid;
    grid-template-columns: 56% 1fr;
    gap: min(74px, 7.2906403941%);
    max-width: 100%;
    background: transparent;
  }
}
.digital__step-body {
  padding-top: 20px;
  transition: filter 0.3s 0.2s ease-out, opacity 0.3s ease-out;
}
@media (width >= 1024px) {
  .digital__step-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    background-color: #efeff0;
  }
}
.digital__step:nth-child(n+2) .digital__step-body {
  filter: blur(3px);
  opacity: 0;
}
.digital__step.is-shown:nth-child(n+2) .digital__step-body {
  filter: blur(0);
  opacity: 1;
}
.digital__step-visual {
  display: block;
  align-self: start;
  overflow: hidden;
  border-radius: 10px;
}
.digital__step-image {
  display: block;
  transition: all 2s;
  transform: scale(1.15);
}
.is-animation-started .digital__step-image {
  animation: scale-down 10s ease-out forwards;
}
.digital__step-label {
  display: flex;
  gap: 8px;
  align-items: center;
}
.digital__step-label-en {
  font-size: 18px;
  font-weight: 500;
  color: #5c606a;
}
.digital__step-label-num {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: #e65252;
}
.digital__step-title {
  margin-top: 12px;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.digital__step-text {
  margin-top: 24px;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5c606a;
  letter-spacing: 0.05em;
}

/* case */
.cases {
  padding-top: 82px;
}
.cases__inner {
  padding-inline: 25px;
}
@media (width >= 1024px) {
  .cases__inner {
    max-width: 950px;
    padding: 0;
    margin-right: auto;
  }
}
.cases__list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (width >= 1024px) {
  .cases__list {
    gap: 100px;
  }
}
.cases__more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.cases__more-link {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid #160903;
  border-radius: 50px;
}
.cases__more-link:hover {
  background: rgba(92, 96, 106, 0.1490196078);
  border-color: transparent;
}
.cases__more-icon-wrap {
  position: relative;
  width: 15px;
  height: 15px;
  overflow: hidden;
}
.cases__more-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease-out;
  transform: translate(-50%, -50%);
}
.cases__more-link:hover .cases__more-icon {
  transform: translate(150%, -150%);
}
.cases__more-icon:nth-child(2) {
  transform: translate(-150%, 100%);
}
.cases__more-link:hover .cases__more-icon:nth-child(2) {
  transform: translate(-50%, -50%);
}

.case-card__head {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 32px;
}
.case-card__head::after {
  display: block;
  flex: 1;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(92, 96, 106, 0.6);
}
.case-card__inner {
  max-width: 768px;
  margin-inline: auto;
}
.case-card__title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 40px 12px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  background: rgba(184, 142, 135, 0.2);
  border-radius: 0 0 50px;
}
@media (width >= 1024px) {
  .case-card__title {
    font-size: 20px;
  }
}
.case-card__concern {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.4;
}
.case-card__meta {
  margin-bottom: 30px;
}
@media (width >= 1024px) {
  .case-card__meta {
    margin-bottom: 40px;
  }
}
.case-card__meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}
@media (width >= 1024px) {
  .case-card__meta-list {
    flex-direction: row;
    gap: 30px;
  }
}
.case-card__meta-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 18px;
}
.case-card__meta-label {
  display: grid;
  flex-shrink: 0;
  grid-template-columns: 7px 1fr;
  gap: 6px;
  align-items: center;
  width: 100px;
}
@media (width >= 1024px) {
  .case-card__meta-label {
    width: auto;
  }
}
.case-card__meta-icon {
  display: block;
  width: 7px;
  height: 14px;
  background-color: #e65252;
  border-radius: 0 30px 30px 0;
  opacity: 0.6;
}
.case-card__difference__figuren {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
.case-card__description {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5c606a;
  letter-spacing: 0.05em;
}
.case-card__compare {
  display: grid;
  gap: 63px;
  max-width: 500px;
  padding-inline: 22px;
  margin-inline: auto;
  margin-top: 46px;
}
@media (width >= 1024px) {
  .case-card__compare {
    grid-template-columns: repeat(2, 1fr);
    gap: 62px;
    max-width: 100%;
    padding: 0;
  }
}
.case-card__before, .case-card__after {
  position: relative;
  display: flex;
  flex-direction: column;
}
.case-card__before::after, .case-card__after::after {
  position: absolute;
  top: 15px;
  left: 50%;
  display: inline-block;
  padding: 2px 16px 4px;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  transform: translateX(-50%);
}
@media (width >= 1024px) {
  .case-card__before::after, .case-card__after::after {
    font-size: 16px;
  }
}
.case-card__before::before {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-top: 24px solid #868b9c;
  border-right: 20px solid transparent;
  border-bottom: 0;
  border-left: 20px solid transparent;
  transform: translateX(-50%);
}
@media (width >= 1024px) {
  .case-card__before::before {
    display: none;
  }
}
.case-card__before::after {
  content: "Before";
}
.case-card__after::after {
  content: "After";
}
.case-card__photos {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width >= 1024px) {
  .case-card__before .case-card__photos::before {
    position: absolute;
    top: 50%;
    left: calc(100% + 20px);
    display: block;
    width: 0;
    height: 0;
    content: "";
    border-style: solid;
    border-top: 23px solid transparent;
    border-right: 0;
    border-bottom: 23px solid transparent;
    border-left: 22px solid #868b9c;
    transform: translateY(-50%);
  }
}
.case-card__image {
  border-radius: 8px;
}
.case-card__caption {
  margin-top: 16px;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #5c606a;
  letter-spacing: 0.05em;
}

/* price */
.price {
  margin-top: 180px;
}
.price__inner {
  padding-inline: 25px;
}
@media (width >= 1024px) {
  .price__inner {
    max-width: 950px;
    padding: 0;
    margin-right: auto;
  }
}
.price__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width >= 1024px) {
  .price__list {
    gap: 30px;
  }
}
.price__note {
  margin-top: 6px;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 15px;
  text-align: right;
  letter-spacing: 0.03em;
}

.price-card {
  padding-bottom: 12px;
  border-bottom: 1px solid #160903;
}
@media (width >= 1440px) {
  .price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
  }
}
@media (width >= 1440px) {
  .price-card__body {
    display: grid;
    grid-template-columns: 175px 1fr;
    align-items: center;
    max-width: 642px;
  }
}
.price-card__title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.05em;
}
.price-card__description {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5c606a;
  letter-spacing: 0.05em;
}
.price-card__amount {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 22px;
  text-align: right;
  letter-spacing: 0.03em;
}

/* message */
.message {
  position: relative;
  padding-top: 10px;
  padding-left: 25px;
  margin-top: 130px;
}
@media (width >= 1024px) {
  .message {
    padding-top: 0;
    padding-left: 55px;
    margin-top: 140px;
  }
}
.message__head {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}
@media (width >= 1024px) {
  .message__head {
    margin-bottom: -45px;
  }
}
.message__inner {
  position: relative;
  z-index: 0;
  padding: 130px 25px 60px;
  background-color: rgba(92, 96, 106, 0.1);
}
@media (width >= 1024px) {
  .message__inner {
    padding: 118px clamp(60px, 6.9444444444vw, 100px) 80px;
    margin-right: calc(-1 * clamp(60px, 6.9444444444vw, 100px));
  }
}
.message__portrait {
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 1;
  width: 222px;
  overflow: hidden;
  border-radius: 0 0 200px;
}
@media (width >= 1024px) {
  .message__portrait {
    top: 20px;
    width: min(23vw, 337px);
  }
}
.message__portrait-image {
  display: block;
}
.is-animated .message__portrait-image {
  transform-origin: center top;
  animation: scale-down 10s ease-out forwards;
}
.message__panel-deco {
  position: relative;
  width: 216px;
  margin-right: -48px;
  margin-bottom: 24px;
  margin-left: auto;
}
@media (width >= 1024px) {
  .message__panel-deco {
    position: absolute;
    top: 66px;
    right: -48px;
    width: 371px;
    margin: 0;
  }
}
@media (width >= 1024px) {
  .message__panel-body {
    position: relative;
    box-sizing: content-box;
    max-width: 578px;
    padding-left: min(19vw, 281px);
    margin-left: auto;
  }
}
.message__panel-head {
  margin-bottom: 40px;
}
.message__text {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.message__signature {
  margin-top: 46px;
}
@media (width >= 1024px) {
  .message__signature {
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
  }
}
.message__clinic-name {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 15px;
}
.message__director {
  display: flex;
  gap: 10px;
  align-items: center;
}
.message__director-role {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 15px;
}
.message__director-name {
  font-size: 24px;
}
.message__clinic {
  margin-top: 80px;
}
@media (width >= 1024px) {
  .message__clinic {
    display: grid;
    grid-template-areas: "info visual";
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }
}
.message__clinic-visual {
  margin-right: -25px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
@media (width >= 1024px) {
  .message__clinic-visual {
    grid-area: visual;
    margin-right: calc(-1 * clamp(60px, 6.9444444444vw, 100px));
  }
}
.is-animated .message__clinic-image {
  animation: scale-down 10s ease-out forwards;
}
@media (width >= 1024px) {
  .message__clinic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (width >= 1024px) {
  .message__clinic-info {
    grid-area: info;
  }
}
.message__clinic-brand {
  margin-top: 40px;
}
@media (width >= 1024px) {
  .message__clinic-brand {
    margin-top: 0;
  }
}
.message__clinic-logo {
  width: 100%;
  max-width: 250px;
}
@media (width >= 1024px) {
  .message__clinic-logo {
    max-width: 280px;
  }
}
.message__clinic-tagline {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.message__clinic-tagline .sm {
  letter-spacing: 0.03em;
}
.message__clinic-details {
  margin-top: 18px;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  line-height: 1.4;
}
.message__clinic-detail {
  display: grid;
  grid-template-columns: 63px 1fr;
  gap: 20px;
  align-items: center;
  padding-block: 12px;
  border-bottom: 1px solid rgba(92, 96, 106, 0.6);
}
.message__clinic-detail:first-child {
  border-top: 1px solid rgba(92, 96, 106, 0.6);
}
.message__maps-link {
  display: inline-block;
  padding: 4px 8px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #5c606a;
  letter-spacing: 0.03em;
  background-color: #fff;
  border-radius: 30px;
}
.message__maps-link:hover {
  color: #fff;
  background: rgba(92, 96, 106, 0.6);
}

/* flow */
.flow {
  padding-bottom: 140px;
  margin-top: 140px;
}
@media (width >= 1024px) {
  .flow {
    padding-bottom: 206px;
    margin-top: 180px;
  }
}
.flow__inner {
  padding-inline: 25px;
}
@media (width >= 1024px) {
  .flow__inner {
    padding: 0;
  }
}
.flow__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.flow__steps::before {
  position: absolute;
  left: 69px;
  display: block;
  width: 1px;
  height: calc(100% - 138px);
  content: "";
  background-color: #5c606a;
}
@media (width >= 1024px) {
  .flow__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: min(50px, 5.2631578947%);
  }
  .flow__steps::before {
    top: 69px;
    left: 50%;
    width: calc(100% - 100px);
    height: 1px;
    transform: translateX(-50%);
  }
}
@media (width >= 1440px) {
  .flow__steps::before {
    top: 80px;
  }
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 16px;
}
@media (width >= 1024px) {
  .flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.flow-step__icon {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: center;
  width: 138px;
  aspect-ratio: 1/1;
  padding-bottom: 7px;
  font-size: 23px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
  background-color: #dfd7d7;
  border-radius: 50%;
}
.flow-step__icon img {
  width: 69px;
  height: 69px;
}
@media (width >= 1440px) {
  .flow-step__icon {
    width: 160px;
  }
  .flow-step__icon img {
    width: 80px;
  }
}
.flow-step__title {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (width >= 1024px) {
  .flow-step__title {
    font-size: 18px;
    text-align: center;
  }
}
@media (width >= 1440px) {
  .flow-step__title {
    font-size: 20px;
  }
}
.flow-step__text {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5c606a;
  letter-spacing: 0.05em;
}

/* contact */
.contact {
  position: relative;
  z-index: 2;
  background: #dfd7d7;
}
@media (width >= 1024px) {
  .contact .section-head__en {
    text-align: left;
  }
}
.contact__inner {
  max-width: 1290px;
  padding: 50px 25px 80px;
  margin-inline: auto;
}
.contact__cards {
  max-width: 950px;
  margin: 0 auto;
}
@media (width >= 1024px) {
  .contact__cards {
    display: grid;
    grid-template-areas: "reservation reservation" "form tel";
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
}

.contact-card {
  position: relative;
  display: block;
  padding: 30px;
  border-bottom: 1px solid rgba(92, 96, 106, 0.6);
  transition: all 0.3s;
}
.contact-card--reservation {
  background: rgba(255, 255, 255, 0.2);
  --card-title-fz: 28px;
}
.contact-card--reservation:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media (width >= 1024px) {
  .contact-card--reservation {
    display: flex;
    grid-area: reservation;
    gap: 40px;
    align-items: center;
    padding: 60px 30px;
    --card-title-fz: 30px;
  }
}
.contact-card--form {
  background: rgba(255, 255, 255, 0.2);
  --card-title-fz: 22px;
}
.contact-card--form:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media (width >= 1024px) {
  .contact-card--form {
    grid-area: form;
    padding: 40px 30px;
    background: transparent;
    --card-title-fz: 24px;
  }
}
@media (width >= 1024px) {
  .contact-card--tel {
    grid-area: tel;
  }
}
.contact-card__title {
  margin-bottom: 18px;
  font-size: var(--card-title-fz);
  font-weight: 500;
}
.contact-card__text {
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5c606a;
}
.contact-card__icon {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.3s;
}
.contact-card:hover .contact-card__icon {
  background-color: #e65252;
}
@media (width >= 1024px) {
  .contact-card__icon {
    top: 40px;
    right: 30px;
  }
  .contact-card--reservation .contact-card__icon {
    top: 60px;
    right: 30px;
  }
}
.contact-card__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
}
.contact-card:hover .contact-card__svg {
  transform: translate(250%, -200%);
}
.contact-card__svg:nth-child(2) {
  transform: translate(-250%, 200%);
}
.contact-card:hover .contact-card__svg:nth-child(2) {
  transform: translate(-50%, -50%);
}
.contact-card:hover .contact-card__svg {
  color: #fff;
}
.contact-card__tel-label {
  margin-bottom: 6px;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #5c606a;
}
.contact-card__tel-number {
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (width >= 1024px) {
  .contact-card__tel-number {
    font-size: 36px;
  }
}
.contact-card__tel-hours {
  margin-top: 3px;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5c606a;
}

.not-found {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 100px 36px 120px;
}
@media (width >= 1024px) {
  .not-found {
    padding: 200px 40px 170px;
  }
}
.not-found__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: min(100%, 950px);
}
.not-found__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  text-align: center;
}
.not-found__en {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1;
  color: #160903;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.1;
}
@media (width >= 1024px) {
  .not-found__en {
    font-size: 110px;
  }
}
.not-found__title {
  margin: 0;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: #160903;
  letter-spacing: 0.05em;
}
@media (width >= 1024px) {
  .not-found__title {
    font-size: 32px;
  }
}
.not-found__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.not-found__text {
  margin: 0;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 1.8;
  color: #160903;
  letter-spacing: 0.08em;
}
@media (width >= 1024px) {
  .not-found__text {
    font-size: 18px;
    text-align: center;
  }
}
.not-found__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: yakuhanmp, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 18.55px;
  font-weight: 500;
  line-height: 26.5px;
  color: #160903;
  letter-spacing: 0.05em;
  background-color: #dfd7d7;
  border-radius: 60px;
  transition: all 0.2s;
}
.not-found__btn:hover {
  background-color: rgba(223, 215, 215, 0.4);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scale-down {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}
@keyframes blur-in {
  0% {
    filter: blur(var(--blur-radius, 10px));
    opacity: 0;
  }
  20% {
    filter: blur(var(--blur-radius, 10px));
    opacity: 1;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes clear-blur {
  from {
    filter: blur(var(--blur-radius, 10px));
  }
  to {
    filter: blur(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.blur-in {
  filter: blur(10px);
  opacity: 0;
}
.blur-in.is-animated {
  animation: blur-in 0.5s ease-out forwards;
}

@keyframes scroll-up {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}
@media (width >= 1024px) {
  .u-only-sp {
    display: none;
  }
}

.u-only-pc {
  display: none;
}
@media (width >= 1024px) {
  .u-only-pc {
    display: initial;
  }
}

.u-dib {
  display: inline-block;
}

/*# sourceMappingURL=style.css.map */
