@charset "UTF-8";
/*
* {
  outline: 1px solid rgba(255,0,0,0.3);
}*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

:target {
  scroll-margin-block-start: 85px;
}
@media screen and (max-width: 860px) {
  :target {
    scroll-margin-block-start: 101px;
  }
}
@media screen and (max-width: 500px) {
  :target {
    scroll-margin-block-start: 55px;
  }
}

body {
  font-family: "LINE Seed JP", sans-serif;
  color: #685858;
  background-color: #fffdfc;
}

@keyframes page-content-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.l-main {
  animation: page-content-fade-in 0.9s 0.05s ease-out backwards;
}

@media (prefers-reduced-motion: reduce) {
  .l-main {
    animation: none;
  }
}
.p-lower {
  overflow-x: clip;
}

/* ハンバーガーメニューなど背景を動かしたくないとき
 */
body.no-scroll {
  overflow: hidden; /* スクロールバーを消す。スクロール自体できなくなる */
  position: fixed;
  width: 100%;
}

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

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.l-inner {
  width: 100%;
  max-width: 1040px;
  padding-inline: 20px;
  margin-inline: auto;
}
.l-inner--narrow {
  max-width: 860px;
}
.l-inner--service {
  max-width: 860px;
}

.l-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  padding-inline: max(40px, 50% - 600px);
  background-color: #fff;
}
.l-header .c-brand__logo-link {
  transition: opacity 0.25s ease;
}
@media (any-hover: hover) {
  .l-header .c-brand__logo-link:hover {
    opacity: 0.65;
  }
}
.l-header .c-brand__logo-link:focus-visible {
  opacity: 0.65;
}
.l-header > .c-brand .c-brand__address {
  font-size: 1.3rem;
  line-height: 1.4;
}
@media screen and (max-width: 860px) {
  .l-header > .c-brand .c-brand__address {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 860px) {
  .l-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 12px 20px;
    background-color: #fff;
  }
}
.l-header__menu-button {
  display: none;
}
.l-header__menu-button:focus:not(:focus-visible) {
  outline: none;
}
@media screen and (max-width: 860px) {
  .l-header__menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 34px;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
    transition: gap 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media screen and (max-width: 860px) {
  .l-header__menu-button.is-open {
    gap: 8px;
  }
}
@media screen and (max-width: 860px) {
  .l-header__menu-button.is-open .l-header__menu-line {
    gap: 0;
  }
}
@media screen and (max-width: 860px) {
  .l-header__menu-button.is-open .l-header__menu-line::before {
    transform: translateY(1px) rotate(24deg);
  }
}
@media screen and (max-width: 860px) {
  .l-header__menu-button.is-open .l-header__menu-line::after {
    transform: rotate(-24deg);
  }
}
.l-header__menu-text {
  display: none;
}
@media screen and (max-width: 860px) {
  .l-header__menu-text {
    display: block;
    color: #db6f6f;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.09em;
  }
}
@media screen and (max-width: 860px) {
  .l-header__menu-line {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 32px;
    height: 10px;
    transition: gap 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media screen and (max-width: 860px) {
  .l-header__menu-line::before, .l-header__menu-line::after {
    display: block;
    width: 32px;
    height: 0;
    border-top: 1px solid #db6f6f;
    content: "";
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.l-header__nav.c-menu {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1080px) {
  .l-header__nav.c-menu {
    gap: 24px;
  }
}
@media screen and (max-width: 860px) {
  .l-header__nav.c-menu {
    display: none;
  }
}
@media screen and (max-width: 860px) {
  .l-header__nav.c-menu.is-open {
    position: fixed;
    inset: 104px 0 0;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 48px 20px;
    overflow-y: auto;
    background-color: #fffdfc;
  }
}
@media screen and (max-width: 860px) {
  .l-header__nav.c-menu.is-open .c-menu__list {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}
@media screen and (max-width: 860px) {
  .l-header__nav.c-menu.is-open .c-menu__link {
    font-size: 2rem;
  }
}
@media screen and (max-width: 860px) {
  .l-header__nav.c-menu.is-open .l-header__nav-tel {
    display: flex;
    width: min(280px, 100%);
    height: 88px;
  }
}
.l-header__nav .c-menu__list {
  flex-direction: row;
  gap: 32px;
}
@media screen and (max-width: 1080px) {
  .l-header__nav .c-menu__list {
    gap: 20px;
  }
}
.l-header__nav .c-menu__link {
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #db6f6f;
}
.l-header__nav .c-menu__link::before {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #eddbbc;
  content: "";
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (any-hover: hover) {
  .l-header__nav .c-menu__link:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
.l-header__nav .c-menu__link:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
@media screen and (max-width: 1080px) {
  .l-header__nav .c-menu__link {
    font-size: 1.4rem;
  }
}
.l-header__nav .l-header__nav-tel {
  width: 232px;
  height: 75px;
  border-radius: 16px;
  text-decoration: none;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 1080px) {
  .l-header__nav .l-header__nav-tel {
    width: 200px;
    height: 66px;
  }
}
.l-header__nav-tel.c-tel-button {
  gap: 2px;
  background-image: radial-gradient(ellipse 119px 121px at 0 -30px, rgba(255, 222, 172, 0.4) 0%, rgba(255, 222, 172, 0) 100%);
}
.l-header__nav-tel.c-tel-button::before, .l-header__nav-tel.c-tel-button::after {
  content: none;
}
.l-header__nav-tel .c-tel-button__number {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 2.2rem;
}
.l-header__nav-tel .c-tel-button__number::before {
  top: -1px;
  left: 2px;
}
@media screen and (max-width: 1080px) {
  .l-header__nav-tel .c-tel-button__number {
    font-size: 1.9rem;
  }
}
.l-header__nav-tel .c-tel-button__time {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 1080px) {
  .l-header__nav-tel .c-tel-button__time {
    font-size: 1rem;
  }
}

@media screen and (max-width: 860px) {
  body.no-scroll .l-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }
}

.p-top .l-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  width: 100%;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0s linear 0.35s;
}
.p-top .l-header.is-visible {
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}
@media screen and (max-width: 860px) {
  .p-top .l-header {
    transform: translateY(0);
    visibility: visible;
    transition: none;
  }
}

@media screen and (min-width: 861px) and (max-width: 1080px) {
  .p-top .l-header {
    position: sticky;
    transform: translateY(0);
    visibility: visible;
    transition: none;
  }
}
@media screen and (max-width: 860px) {
  .p-top .l-main {
    padding-top: 85px;
  }
}

@media screen and (max-width: 860px) {
  .p-lower .l-main {
    padding-top: 85px;
  }
}

@media screen and (min-width: 861px) {
  .p-lower .l-header {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
  }
}
.l-footer {
  padding-block: 64px 57px;
}
@media screen and (max-width: 770px) {
  .l-footer {
    padding-block: 0 30px;
  }
}
.l-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .l-footer__inner {
    flex-direction: column;
    max-width: 820px;
  }
}
@media screen and (max-width: 500px) {
  .l-footer__inner {
    align-items: flex-start;
  }
}
.l-footer__info, .l-footer__hours {
  margin-bottom: 40px;
}
@media screen and (max-width: 1080px) {
  .l-footer__info, .l-footer__hours {
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .l-footer__info, .l-footer__hours {
    margin-bottom: 49px;
    margin-inline: 0;
  }
}
@media screen and (max-width: 600px) {
  .l-footer__hours {
    width: 100%;
    min-width: 0;
  }
}
.l-footer__logo {
  display: inline-block;
  margin-bottom: 33px;
  transition: opacity 0.25s ease;
}
@media (any-hover: hover) {
  .l-footer__logo:hover {
    opacity: 0.65;
  }
}
.l-footer__logo:focus-visible {
  opacity: 0.65;
}
.l-footer__logo img {
  width: 285px;
  height: 43px;
}
@media screen and (max-width: 770px) {
  .l-footer__logo img {
    width: 285px;
    height: auto;
  }
}
.l-footer__address {
  position: relative;
  padding-left: 30px;
  margin: 0 0 16px;
  color: #504444;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 770px) {
  .l-footer__address {
    margin-bottom: 16px;
    font-size: 1.6rem;
  }
}
.l-footer__address::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 24px;
  height: 30px;
  background: url("../img/original/common/access_map_icon.png") center/contain no-repeat;
  pointer-events: none;
}
.l-footer__tel {
  display: flex;
  flex-direction: column;
  color: #db6f6f;
  font-family: "LINE Seed JP", sans-serif;
  text-decoration: none;
}
.l-footer__tel-number {
  position: relative;
  display: inline-block;
  padding-left: 33px;
  margin-bottom: 8px;
  color: #db6f6f;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 770px) {
  .l-footer__tel-number {
    margin-bottom: 8px;
    font-size: 2.8rem;
  }
}
.l-footer__tel-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 30px;
  background: url("../img/original/common/access_tel_icon.png") center/contain no-repeat;
  pointer-events: none;
}
.l-footer__tel-time {
  color: #504444;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-left: 28px;
}
@media screen and (max-width: 770px) {
  .l-footer__tel-time {
    font-size: 1.4rem;
  }
}
.l-footer__hours-table {
  margin-top: 13px;
}
@media screen and (min-width: 501px) and (max-width: 600px) {
  .l-footer__hours-table {
    margin-inline: auto;
  }
}
.l-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .l-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.l-footer__privacy {
  color: #db6f6f;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: currentColor;
  transition: text-decoration-color 0.25s ease;
}
@media (any-hover: hover) {
  .l-footer__privacy:hover {
    text-decoration-color: transparent;
  }
}
.l-footer__privacy:focus-visible {
  text-decoration-color: transparent;
}
@media screen and (max-width: 770px) {
  .l-footer__privacy {
    margin-bottom: 24px;
    font-size: 1.4rem;
  }
}
.l-footer__copyright {
  color: #504444;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 770px) {
  .l-footer__copyright {
    font-size: 1.4rem;
  }
}

.c-section-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #e07878;
}
@media screen and (max-width: 770px) {
  .c-section-title {
    font-size: 2.8rem;
  }
}
.c-section-title::before {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.c-section-title.is-icon-visible::before {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .c-section-title::before {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.c-lower-fv picture {
  display: block;
  width: 100%;
  aspect-ratio: 25/7;
}
@media screen and (max-width: 600px) {
  .c-lower-fv picture {
    aspect-ratio: 67/80;
  }
}
.c-lower-fv picture img {
  display: block;
  width: 100%;
  height: 100%;
}
.c-lower-fv__inner {
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 770px) {
  .c-lower-fv__inner {
    padding-top: 12px;
  }
}
@media screen and (max-width: 500px) {
  .c-lower-fv__inner {
    padding-top: 8px;
  }
}
.c-lower-fv__body {
  position: absolute;
  top: clamp(30px, 6.40625vw, 82px);
  left: clamp(24px, 5.3125vw, 68px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .c-lower-fv__body {
    top: 80px;
    left: 50%;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding-inline: 20px;
    text-align: center;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 770px) {
  .c-lower-fv__body {
    top: 30px;
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .c-lower-fv__body {
    top: 48px;
    gap: 16px;
  }
}
@media screen and (min-width: 400px) and (max-width: 600px) {
  .c-lower-fv__body {
    top: clamp(48px, 46.72vw - 138.9px, 105px);
    gap: 16px;
  }
}
.c-lower-fv__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #e07878;
}
@media screen and (max-width: 860px) {
  .c-lower-fv__title {
    font-size: 3.4rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 770px) {
  .c-lower-fv__title {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 500px) {
  .c-lower-fv__title {
    font-size: 2.6rem;
  }
}
.c-lower-fv__lead {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #504444;
}
@media screen and (max-width: 770px) {
  .c-lower-fv__lead {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 500px) {
  .c-lower-fv__lead {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.c-step-guide__list {
  counter-reset: guide-number;
  display: flex;
  flex-direction: column;
  gap: 47px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 500px) {
  .c-step-guide__list {
    gap: 52px;
  }
}
.c-step-guide__item {
  position: relative;
  counter-increment: guide-number;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
}
@media screen and (max-width: 500px) {
  .c-step-guide__item {
    gap: 16px;
  }
}
.c-step-guide__item::before {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-top: calc(1.76rem - 30px);
  border-radius: 50%;
  background-color: #db6f6f;
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  content: counter(guide-number, decimal-leading-zero);
}
.c-step-guide__item:not(:last-child)::after {
  position: absolute;
  top: 48px;
  bottom: -36px;
  left: 29px;
  width: 1px;
  background-color: #db6f6f;
  content: "";
}
.c-step-guide__body {
  width: 100%;
}
.c-step-guide__item-title {
  margin: 0 0 14px;
  color: #504444;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.c-step-guide__text {
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
}
@media screen and (max-width: 770px) {
  .c-step-guide__list {
    gap: 48px;
  }
  .c-step-guide__item {
    grid-template-columns: 48px 1fr;
  }
  .c-step-guide__item::before {
    width: 48px;
    height: 48px;
    margin-top: calc(1.44rem - 24px);
    font-size: 2rem;
  }
  .c-step-guide__item:not(:last-child)::after {
    top: calc(1.44rem + 24px);
    bottom: -48px;
    left: 23.5px;
  }
  .c-step-guide__item-title {
    font-size: 1.8rem;
  }
}

@keyframes drawer-fade-in-plan1 {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes drawer-item-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drawer-overlay-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes drawer-overlay-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.c-menu {
  display: flex;
  flex-direction: column;
}
.c-menu__list, .c-menu__sub-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-menu__item, .c-menu__sub-item {
  margin: 0;
}
.c-menu__link, .c-menu__sub-link {
  display: inline-block;
  text-decoration: none;
}
.c-menu__sub-link {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.c-tel-button {
  position: relative;
  background-color: #db6f6f;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 26px;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.c-tel-button::before, .c-tel-button::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 31px;
  background: center/contain no-repeat;
  pointer-events: none;
}
.c-tel-button::before {
  top: -23px;
  left: -15px;
  background-image: url("../img/original/top/tel_button_star_left.png");
}
.c-tel-button::after {
  right: -23px;
  bottom: -15px;
  background-image: url("../img/original/top/tel_button_star_right.png");
}
.c-tel-button__decoration {
  position: absolute;
  right: 145px;
  bottom: 16px;
  z-index: 1;
  width: 238px;
  height: 242px;
  border-radius: 50%;
  background: radial-gradient(ellipse closest-side, #fcc46c 0%, #000 100%);
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}
.c-tel-button__number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: flex-start;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
}
.c-tel-button__number::before {
  content: "";
  position: relative;
  top: 2px;
  left: -2px;
  width: 24px;
  height: 26px;
  margin-right: 2px;
  background: url("../img/original/common/c_tel_icon.svg") center/contain no-repeat;
}
.c-tel-button__time {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}

.c-emphasis {
  color: #db6f6f;
  font-weight: 700;
}

.c-parent-message {
  width: min(820px, 100%);
  margin-inline: auto;
  padding: 32px 26px 32px 32px;
  border: 3px solid #f0c8c8;
  border-radius: 20px;
}
@media screen and (max-width: 500px) {
  .c-parent-message {
    padding: 24px;
  }
}
.c-parent-message__title {
  margin-bottom: 8px;
  color: #e07878;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 500px) {
  .c-parent-message__title {
    font-size: 1.6rem;
  }
}
.c-parent-message__text {
  margin: 0;
  color: #504444;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 500px) {
  .c-parent-message__text {
    font-size: 1.5rem;
  }
}

.c-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 1080px) {
  .c-brand {
    gap: 6px;
  }
}
@media screen and (max-width: 860px) {
  .c-brand {
    gap: 4px;
  }
}
.c-brand__logo {
  margin: 0;
}
.c-brand__logo-link {
  display: inline-block;
}
.c-brand__logo-link img {
  width: 285px;
  height: 43px;
}
@media screen and (max-width: 1080px) {
  .c-brand__logo-link img {
    width: 240px;
    height: auto;
  }
}
@media screen and (max-width: 860px) {
  .c-brand__logo-link img {
    width: 220px;
  }
}
@media screen and (max-width: 860px) and (max-width: 500px) {
  .c-brand__logo-link img {
    width: 180px;
  }
}
.c-brand__address {
  margin: 0;
  text-align: right;
  color: #685858;
}
@media screen and (max-width: 1080px) {
  .c-brand__address {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 500px) {
  .c-brand__address {
    font-size: 1.1rem;
  }
}
.c-brand--menu {
  padding-block: 82px 32px;
}

.c-hours-table--large {
  max-width: 639px;
  width: 100%;
  color: #685858;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large {
    max-width: 335px;
  }
}
.c-hours-table--large .c-hours-table__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c-hours-table--large .c-hours-table__heading {
  box-sizing: border-box;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee9e9;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 1080px) {
  .c-hours-table--large .c-hours-table__heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__heading {
    padding: 0 10px 8px;
    font-size: 1.2rem;
  }
}
.c-hours-table--large .c-hours-table__heading--time {
  width: 180px;
  color: transparent;
  font-size: 0;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__heading--time {
    width: 105px;
    padding-right: 10px;
    padding-left: 2px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__heading--time {
    width: 88px;
    padding-right: 2px;
  }
  .p-hours .c-hours-table--large .c-hours-table__heading--time {
    width: 88px;
    padding-right: 2px;
  }
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__heading:last-child {
    padding-right: 0;
    padding-left: 1px;
    letter-spacing: -0.2em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__heading {
    padding-right: 2px;
    padding-left: 2px;
    font-size: 1.1rem;
  }
  .p-hours .c-hours-table--large .c-hours-table__heading {
    padding-right: 2px;
    padding-left: 2px;
    font-size: 1.1rem;
  }
}
.c-hours-table--large .c-hours-table__time, .c-hours-table--large .c-hours-table__cell {
  box-sizing: border-box;
  border-bottom: 1px solid #eee9e9;
  vertical-align: middle;
}
.c-hours-table--large .c-hours-table__time {
  padding: 18px 0 18px 10px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 1080px) {
  .c-hours-table--large .c-hours-table__time {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__time {
    width: 105px;
    max-width: 105px;
    padding: 6px 10px 8px 2px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__time {
    width: 88px;
    max-width: 88px;
    padding-right: 2px;
    font-size: 1.2rem;
  }
  .p-hours .c-hours-table--large .c-hours-table__time {
    width: 88px;
    max-width: 88px;
    padding-right: 2px;
    font-size: 1.2rem;
  }
}
.c-hours-table--large .c-hours-table__period {
  margin-right: 16px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__period {
    display: block;
    margin-right: 0;
    font-size: 1rem;
  }
}
.c-hours-table--large .c-hours-table__row:nth-child(2) .c-hours-table__period, .c-hours-table--large .c-hours-table__row:nth-child(3) .c-hours-table__period {
  margin-right: 5px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__row:nth-child(2) .c-hours-table__period, .c-hours-table--large .c-hours-table__row:nth-child(3) .c-hours-table__period {
    margin-right: 0;
  }
}
.c-hours-table--large .c-hours-table__cell {
  text-align: center;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__cell {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__cell {
    padding-inline: 2px;
  }
  .p-hours .c-hours-table--large .c-hours-table__cell {
    padding-inline: 2px;
  }
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__cell:last-child {
    padding-right: 0;
    padding-left: 1px;
  }
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__body .c-hours-table__row:first-child .c-hours-table__time time:first-of-type {
    margin-left: 8px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__body .c-hours-table__row:first-child .c-hours-table__time time:first-of-type {
    margin-left: 4px;
  }
  .p-hours .c-hours-table--large .c-hours-table__body .c-hours-table__row:first-child .c-hours-table__time time:first-of-type {
    margin-left: 4px;
  }
}
.c-hours-table--large .c-hours-table__mark {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.c-hours-table--large .c-hours-table__mark--open {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #f0aaaa;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__mark--open {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__mark--open {
    width: 9px;
    height: 9px;
  }
  .p-hours .c-hours-table--large .c-hours-table__mark--open {
    width: 9px;
    height: 9px;
  }
}
.c-hours-table--large .c-hours-table__mark--closed {
  width: 14px;
  height: 14px;
  background-image: url("../img/original/common/closed.png");
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__mark--closed {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__mark--closed {
    width: 9px;
    height: 9px;
  }
  .p-hours .c-hours-table--large .c-hours-table__mark--closed {
    width: 9px;
    height: 9px;
  }
}
.c-hours-table--large .c-hours-table__mark--checkup {
  width: 27px;
  height: 24px;
  background-image: url("../img/original/common/baby.png");
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__mark--checkup {
    width: 18px;
    height: 16px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__mark--checkup {
    width: 14px;
    height: 13px;
  }
  .p-hours .c-hours-table--large .c-hours-table__mark--checkup {
    width: 14px;
    height: 13px;
  }
}
.c-hours-table--large .c-hours-table__mark--vaccine {
  width: 24px;
  height: 24px;
  background-image: url("../img/original/common/vaccine.png");
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__mark--vaccine {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__mark--vaccine {
    width: 13px;
    height: 13px;
  }
  .p-hours .c-hours-table--large .c-hours-table__mark--vaccine {
    width: 13px;
    height: 13px;
  }
}
.c-hours-table--large .c-hours-table__mark--saturday {
  width: 18px;
  height: 17px;
  background-image: url("../img/original/common/saturday.png");
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__mark--saturday {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__mark--saturday {
    width: 10px;
    height: 10px;
  }
  .p-hours .c-hours-table--large .c-hours-table__mark--saturday {
    width: 10px;
    height: 10px;
  }
}
.c-hours-table--large .c-hours-table__notes {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 16px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__notes {
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
  }
}
.c-hours-table--large .c-hours-table__reception {
  display: flex;
  align-items: center;
  padding: 6px 12.5px;
  border-radius: 4px;
  color: #fff;
  background-color: #db6f6f;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__reception {
    flex-shrink: 0;
    justify-content: center;
    border-radius: 6px;
    padding: 5px 17.5px;
    font-size: 1rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__reception {
    padding-inline: 10px;
  }
  .p-hours .c-hours-table--large .c-hours-table__reception {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__reception {
    padding: 12px;
  }
  .p-hours .c-hours-table--large .c-hours-table__reception {
    padding: 12px;
  }
}
.c-hours-table--large .c-hours-table__reception-label {
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__reception-label {
    font-size: 1.1rem;
  }
}
.c-hours-table--large .c-hours-table__reception-time {
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__reception-time {
    font-size: 1.1rem;
  }
}
.c-hours-table--large .c-hours-table__legend {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__legend {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-items: start;
    align-content: center;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 8px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__legend {
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 6px;
  }
  .p-hours .c-hours-table--large .c-hours-table__legend {
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 6px;
  }
}
.c-hours-table--large .c-hours-table__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__legend-item {
    gap: 5px;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__legend-item:last-child {
    grid-column: 1/-1;
  }
}
.c-hours-table--large .c-hours-table__legend-text {
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__legend-text {
    font-size: 1.3rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large .c-hours-table__legend-text {
    font-size: 1.1rem;
  }
  .p-hours .c-hours-table--large .c-hours-table__legend-text {
    font-size: 1.1rem;
  }
}
.c-hours-table--large .c-hours-table__legend .c-hours-table__mark--checkup {
  width: 24px;
  height: 21px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__legend .c-hours-table__mark--checkup {
    width: 16px;
    height: 16px;
  }
}
.c-hours-table--large .c-hours-table__legend .c-hours-table__mark--vaccine {
  width: 21px;
  height: 21px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__legend .c-hours-table__mark--vaccine {
    width: 16px;
    height: 16px;
  }
}
.c-hours-table--large .c-hours-table__legend .c-hours-table__mark--saturday {
  width: 18px;
  height: 17px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large .c-hours-table__legend .c-hours-table__mark--saturday {
    width: 12px;
    height: 12px;
  }
}

@media screen and (min-width: 501px) and (max-width: 770px) {
  .p-hours .c-hours-table--large .c-hours-table__heading {
    height: 38px;
    padding-bottom: 16px;
    font-size: clamp(1.3rem, 2.35vw, 1.8rem);
  }
  .p-hours .c-hours-table--large .c-hours-table__heading:last-child {
    white-space: nowrap;
  }
  .p-hours .c-hours-table--large .c-hours-table__heading--time {
    width: clamp(135px, 23.4vw, 180px);
  }
  .p-hours .c-hours-table--large .c-hours-table__time {
    height: 58px;
    padding-block: 18px;
    padding-left: clamp(4px, 1.3vw, 10px);
    font-size: clamp(1.4rem, 2.35vw, 1.8rem);
  }
  .p-hours .c-hours-table--large .c-hours-table__cell {
    height: 58px;
  }
  .p-hours .c-hours-table--large .c-hours-table__period {
    margin-right: clamp(6px, 2vw, 16px);
    font-size: clamp(1rem, 1.55vw, 1.2rem);
  }
  .p-hours .c-hours-table--large .c-hours-table__notes {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px clamp(14px, 3vw, 30px);
  }
  .p-hours .c-hours-table--large .c-hours-table__reception {
    font-size: clamp(1.2rem, 1.95vw, 1.5rem);
  }
  .p-hours .c-hours-table--large .c-hours-table__legend {
    gap: clamp(10px, 2.5vw, 24px);
  }
  .p-hours .c-hours-table--large .c-hours-table__legend-item {
    gap: clamp(4px, 1vw, 8px);
  }
  .p-hours .c-hours-table--large .c-hours-table__legend-text {
    font-size: clamp(1.15rem, 1.82vw, 1.4rem);
  }
}
@media screen and (min-width: 501px) and (max-width: 600px) {
  .p-hours .c-hours-table--large .c-hours-table__notes {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .p-hours .c-hours-table--large .c-hours-table__reception {
    flex-shrink: 0;
    justify-content: center;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.1rem;
  }
  .p-hours .c-hours-table--large .c-hours-table__legend {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-items: start;
    align-content: center;
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 8px;
  }
  .p-hours .c-hours-table--large .c-hours-table__legend-item {
    gap: 5px;
  }
  .p-hours .c-hours-table--large .c-hours-table__legend-item:last-child {
    grid-column: 1/-1;
  }
  .p-hours .c-hours-table--large .c-hours-table__legend-text {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .p-hours .c-hours-table--large .c-hours-table__legend .c-hours-table__mark--checkup, .p-hours .c-hours-table--large .c-hours-table__legend .c-hours-table__mark--vaccine {
    width: 16px;
    height: 16px;
  }
  .p-hours .c-hours-table--large .c-hours-table__legend .c-hours-table__mark--saturday {
    width: 12px;
    height: 12px;
  }
}
.c-hours-table--large.c-hours-table--footer {
  width: 100%;
  max-width: 507px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__heading {
    font-size: 1.2rem;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__heading--time {
  color: #504444;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__heading--time {
    font-size: 1.2rem;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__time {
  padding: 15px 0 15px 10px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__time {
    padding: 4px 0 10px 3px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__reception {
  padding: 6px 10px;
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: 0;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__reception {
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__reception {
    padding: 12px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__notes {
  gap: 30px;
}
@media screen and (max-width: 370px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__notes {
    gap: 4px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__legend {
  gap: 15px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__legend {
    gap: 9px;
  }
}
@media screen and (max-width: 370px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__legend {
    -moz-column-gap: 4px;
         column-gap: 4px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__legend-item {
  gap: 4px;
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__legend-text {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__legend .c-hours-table__mark--checkup {
  width: 19px;
  height: 17px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__legend .c-hours-table__mark--checkup {
    width: 18px;
    height: 16px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__legend .c-hours-table__mark--vaccine {
  width: 17px;
  height: 17px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__legend .c-hours-table__mark--vaccine {
    width: 16px;
    height: 16px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__legend .c-hours-table__mark--saturday {
  width: 14px;
  height: 13px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__legend .c-hours-table__mark--saturday {
    width: 12px;
    height: 11px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--open {
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--open {
    width: 12px;
    height: 12px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--closed {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--closed {
    width: 10px;
    height: 10px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--checkup {
  width: 21px;
  height: 19px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--checkup {
    width: 18px;
    height: 16px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--vaccine {
  width: 19px;
  height: 19px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--vaccine {
    width: 16px;
    height: 16px;
  }
}
.c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--saturday {
  width: 14px;
  height: 13px;
}
@media screen and (max-width: 500px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__mark--saturday {
    width: 12px;
    height: 11px;
  }
}
@media screen and (min-width: 501px) {
  .c-hours-table--large.c-hours-table--footer .c-hours-table__heading {
    font-size: 1.4rem;
  }
  .c-hours-table--large.c-hours-table--footer .c-hours-table__heading:last-child {
    white-space: nowrap;
  }
  .c-hours-table--large.c-hours-table--footer .c-hours-table__heading--time {
    width: 143px;
    text-align: center;
  }
  .c-hours-table--large.c-hours-table--footer .c-hours-table__time {
    width: 143px;
    font-size: 1.4rem;
  }
  .c-hours-table--large.c-hours-table--footer .c-hours-table__period {
    margin-right: 10px;
    font-size: 1rem;
  }
  .c-hours-table--large.c-hours-table--footer .c-hours-table__body .c-hours-table__row:first-child .c-hours-table__period {
    margin-right: 13px;
  }
}

.p-fv {
  overflow-x: clip;
  padding-top: 56px;
}
@media screen and (max-width: 1080px) {
  .p-fv {
    padding-top: 40px;
  }
}
@media screen and (max-width: 770px) {
  .p-fv {
    padding-block: 32px 80px;
  }
}
@media screen and (max-width: 500px) {
  .p-fv {
    padding-block: 0 80px;
  }
}
.p-fv__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .p-fv__inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .p-fv__inner {
    gap: 48px;
  }
}
@media screen and (max-width: 770px) {
  .p-fv__inner {
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__inner {
    flex-direction: column;
    gap: 24px;
  }
}
.p-fv__content {
  order: 3;
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  writing-mode: vertical-rl;
  width: 180px;
  height: 520px;
}
@media screen and (max-width: 770px) {
  .p-fv__content {
    margin-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__content {
    order: 1;
    align-self: flex-start;
    width: auto;
    height: auto;
    gap: 16px;
    margin-top: 4px;
    margin-left: 20px;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 370px) {
  .p-fv__content {
    margin-left: 0;
  }
}
.p-fv__lead {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.1em;
  color: #e07878;
  inset-block-start: 9px;
  inset-inline-start: 13px;
}
@media screen and (max-width: 1080px) {
  .p-fv__lead {
    font-size: 3rem;
  }
}
@media screen and (max-width: 770px) {
  .p-fv__lead {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__lead {
    position: static;
    inset: auto;
    gap: 0;
    font-size: clamp(2.4rem, 1.236rem + 3.636vw, 2.6rem);
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
}
.p-fv__lead span:nth-child(2) {
  margin-top: 72px;
}
@media screen and (max-width: 500px) {
  .p-fv__lead span:nth-child(2) {
    margin-top: 0;
  }
}
.p-fv__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 160px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 0.1em;
  color: #685858;
  inset-block-start: 130px;
  inset-inline-end: 10px;
}
@media screen and (max-width: 770px) {
  .p-fv__text {
    margin-top: 112px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__text {
    position: static;
    inset: auto;
    gap: 0;
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 370px) {
  .p-fv__text {
    font-size: 1.4rem;
  }
}
.p-fv__nav {
  order: 1;
  width: 100%;
  max-width: 297px;
  margin-top: -40px;
  margin-right: 42px;
}
@media screen and (min-width: 1081px) and (max-width: 1279px) {
  .p-fv__nav {
    margin-right: clamp(16px, 13vw - 124.4px, 42px);
  }
}
.p-fv__nav .c-brand--menu {
  width: 100%;
}
.p-fv__nav .c-brand__logo {
  text-align: center;
}
.p-fv__nav .c-brand__address {
  padding-right: 6px;
  font-size: 1.3rem;
  line-height: 1.4;
}
.p-fv__nav .c-brand__logo-link,
.p-fv__nav .p-fv__tel {
  transition: opacity 0.25s ease;
}
@media (any-hover: hover) {
  .p-fv__nav .c-brand__logo-link:hover,
  .p-fv__nav .p-fv__tel:hover {
    opacity: 0.65;
  }
}
.p-fv__nav .c-brand__logo-link:focus-visible,
.p-fv__nav .p-fv__tel:focus-visible {
  opacity: 0.65;
}
@media screen and (max-width: 1080px) {
  .p-fv__nav {
    display: none;
    max-width: 240px;
    margin-right: 24px;
  }
}
@media screen and (max-width: 860px) {
  .p-fv__nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 121px 20px 36px;
    overflow-y: auto;
    background-color: #fffdfc;
    animation: drawer-overlay-fade-in 0.4s ease both;
  }
  .p-fv__nav.is-open.is-closing {
    pointer-events: none;
    animation: drawer-overlay-fade-out 0.4s ease both;
  }
  .p-fv__nav.is-open .c-menu__list,
  .p-fv__nav.is-open .c-menu__sub-list {
    align-items: flex-start;
  }
  .p-fv__nav.is-open .c-menu__item {
    font-size: 2rem;
  }
  .p-fv__nav.is-open .c-menu__link {
    margin-bottom: 11px;
    margin-left: 0;
    color: #db6f6f;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    transition: opacity 0.25s ease;
  }
}
@media screen and (max-width: 860px) and (any-hover: hover) {
  .p-fv__nav.is-open .c-menu__link:hover {
    opacity: 0.65;
  }
}
@media screen and (max-width: 860px) {
  .p-fv__nav.is-open .c-menu__link:active, .p-fv__nav.is-open .c-menu__link:focus-visible {
    opacity: 0.65;
  }
  .p-fv__nav.is-open .c-menu__item:first-child .c-menu__link {
    margin-bottom: 27px;
  }
  .p-fv__nav.is-open .c-menu__item:last-child .c-menu__link {
    margin-bottom: 52px;
  }
  .p-fv__nav.is-open .c-menu__sub-list {
    gap: 7px;
    margin-bottom: 34px;
    margin-left: 0;
  }
  .p-fv__nav.is-open .c-menu__sub-item {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .p-fv__nav.is-open .c-menu__sub-item::before {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    background: center/contain no-repeat;
    transform: rotate(145.39deg);
    content: "";
  }
  .p-fv__nav.is-open .c-menu__sub-link {
    padding: 4px 3px;
    border-radius: 4px;
    color: #685858;
    font-size: 1.8rem;
    transition: color 0.25s ease, background-color 0.25s ease;
  }
}
@media screen and (max-width: 860px) and (any-hover: hover) {
  .p-fv__nav.is-open .c-menu__sub-link:hover {
    color: #db6f6f;
  }
}
@media screen and (max-width: 860px) {
  .p-fv__nav.is-open .c-menu__sub-link:active, .p-fv__nav.is-open .c-menu__sub-link:focus-visible {
    color: #fff;
    background-color: #db6f6f;
  }
}
@media screen and (max-width: 860px) and (max-width: 500px) {
  .p-fv__nav.is-open .c-menu__item,
  .p-fv__nav.is-open .c-menu__link {
    font-size: 1.8rem;
  }
  .p-fv__nav.is-open .c-menu__sub-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 860px) {
  .p-fv__nav.is-open .c-brand--menu {
    display: none;
  }
  .p-fv__nav.is-open .p-fv__nav-home {
    display: block;
  }
  .p-fv__nav.is-open .p-fv__tel {
    flex-shrink: 0;
    width: min(253px, 100%);
    height: 93px;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__nav.is-open {
    inset: 0;
    padding-top: 121px;
  }
}
.p-fv__nav .p-fv__nav-home {
  display: none;
}
.p-fv__nav .c-menu__link {
  margin-bottom: 12px;
  margin-left: 14px;
  color: #db6f6f;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  transition: opacity 0.25s ease;
}
@media (any-hover: hover) {
  .p-fv__nav .c-menu__link:hover {
    opacity: 0.65;
  }
}
.p-fv__nav .c-menu__link:active, .p-fv__nav .c-menu__link:focus-visible {
  opacity: 0.65;
}
@media screen and (max-width: 860px) {
  .p-fv__nav .c-menu__link {
    margin-left: 0;
  }
}
.p-fv__nav .c-menu__item:last-child .c-menu__link {
  margin-bottom: 50px;
}
.p-fv__nav .c-menu__sub-list {
  gap: 7px;
  margin-bottom: 34px;
  margin-left: 32px;
}
@media screen and (max-width: 860px) {
  .p-fv__nav .c-menu__sub-list {
    align-items: flex-start;
    margin-left: 0;
  }
}
.p-fv__nav .c-menu__sub-item {
  display: flex;
  align-items: center;
}
.p-fv__nav .c-menu__sub-item::before {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: center/contain no-repeat;
  transform: rotate(145.39deg);
  content: "";
}
.p-fv__nav .p-fv__nav-item--flow .c-menu__sub-item::before {
  background-image: url("../img/original/top/menu_star_pink.png");
}
.p-fv__nav .p-fv__nav-item--service .c-menu__sub-item::before {
  background-image: url("../img/original/top/menu_star_yellow.png");
}
.p-fv__nav .c-menu__sub-link {
  padding: 4px 3px;
  border-radius: 4px;
  color: #685858;
  transition: color 0.25s ease, background-color 0.25s ease;
}
@media (any-hover: hover) {
  .p-fv__nav .c-menu__sub-link:hover {
    color: #db6f6f;
  }
}
.p-fv__nav .c-menu__sub-link:active, .p-fv__nav .c-menu__sub-link:focus-visible {
  color: #fff;
  background-color: #db6f6f;
}
.p-fv__tel {
  width: 265px;
  height: 90px;
  margin-top: -2px;
  background-image: radial-gradient(ellipse 119px 121px at 0 -30px, rgba(255, 222, 172, 0.4) 0%, rgba(255, 222, 172, 0) 100%);
  text-decoration: none;
}
.p-fv__tel .c-tel-button__decoration {
  display: none;
}
.p-fv__image-wrap {
  position: relative;
  order: 2;
  width: clamp(440px, 48.125vw, 616px);
  height: 680px;
  margin-right: 64px;
  overflow: visible;
  border-radius: 34px;
}
@media screen and (min-width: 1081px) and (max-width: 1279px) {
  .p-fv__image-wrap {
    width: clamp(560px, 28vw + 257.6px, 616px);
    margin-right: clamp(24px, 20vw - 192px, 64px);
  }
}
@media screen and (max-width: 1080px) {
  .p-fv__image-wrap {
    width: clamp(430px, 58vw, 560px);
    margin-right: 0;
  }
}
@media screen and (max-width: 770px) {
  .p-fv__image-wrap {
    width: min(62vw, 460px);
    height: 620px;
    margin-right: 0;
  }
}
@media screen and (min-width: 771px) and (max-width: 794px) {
  .p-fv__image-wrap {
    width: 430px;
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__image-wrap {
    order: 2;
    width: 100%;
    height: auto;
    margin-right: 0;
    overflow: visible;
    border-radius: 0;
  }
}
.p-fv__image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
}
@media screen and (max-width: 500px) {
  .p-fv__image {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    border-radius: 0;
  }
}
.p-fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 42% center;
     object-position: 42% center;
}
@media screen and (max-width: 1080px) {
  .p-fv__image img {
    -o-object-position: 36% center;
       object-position: 36% center;
  }
}
@media screen and (max-width: 770px) {
  .p-fv__image img {
    -o-object-position: 34% center;
       object-position: 34% center;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
.p-fv__decorations {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.p-fv__current, .p-fv__seabed {
  position: absolute;
  inset: 0;
}
.p-fv__current {
  animation: fv-water-current 10s ease-in-out infinite;
  will-change: transform;
}
.p-fv__decoration {
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-fv__decoration:not(.p-fv__decoration--starfish, .p-fv__decoration--wakame, .p-fv__decoration--sango-left, .p-fv__decoration--anago, .p-fv__decoration--sango-right, .p-fv__decoration--kurage-blue, .p-fv__decoration--kurage-mizuiro, .p-fv__decoration--kurage-pink, .p-fv__decoration--kurage-orange) {
  animation: fv-decoration-float 4.8s ease-in-out infinite alternate;
  will-change: translate, rotate;
}
.p-fv__decoration:nth-child(3n+1) {
  animation-duration: 5.6s;
  animation-delay: -1.8s;
}
.p-fv__decoration:nth-child(3n+2) {
  animation-duration: 4.2s;
  animation-delay: -3.1s;
}
.p-fv__decoration[class*=p-fv__decoration--nimo-] {
  animation-name: fv-decoration-float-nimo;
}
.p-fv__decoration--nimo-01, .p-fv__decoration--nimo-02, .p-fv__decoration--nimo-03 {
  animation-name: fv-decoration-float;
}
.p-fv__decoration--kurage-blue, .p-fv__decoration--kurage-mizuiro, .p-fv__decoration--kurage-pink, .p-fv__decoration--kurage-orange {
  animation: fv-jellyfish-pulse 8.8s ease-in-out infinite;
  will-change: translate, rotate;
}
.p-fv__decoration--kurage-blue {
  animation-name: fv-jellyfish-pulse-small;
  animation-duration: 10s;
  animation-delay: -1.6s;
}
.p-fv__decoration--kurage-mizuiro {
  animation-duration: 10.2s;
  animation-delay: -4.1s;
}
.p-fv__decoration--kurage-pink {
  animation-duration: 9.4s;
  animation-delay: -6.3s;
}
.p-fv__decoration--kurage-orange {
  animation-name: fv-jellyfish-pulse-orange;
  animation-duration: 10.8s;
  animation-delay: -2.7s;
}
.p-fv__decoration--wakame, .p-fv__decoration--sango-left, .p-fv__decoration--anago, .p-fv__decoration--sango-right {
  animation: fv-seabed-sway 10s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: translate, rotate;
}
@media screen and (max-width: 1080px) {
  .p-fv__decoration {
    scale: 0.9;
  }
}
@media screen and (max-width: 770px) {
  .p-fv__decoration {
    scale: 0.78;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__decoration {
    scale: 1;
  }
}
.p-fv__decoration--nimo-01 {
  top: 60px;
  left: 109px;
  width: 35px;
  height: 21px;
  background-image: url("../img/original/top/nimo_01.png");
  transform: rotate(-6.83deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--nimo-01 {
    top: 37px;
    left: 78px;
    width: 24px;
    height: 14px;
  }
}
.p-fv__decoration--nimo-02 {
  top: 91px;
  left: 49px;
  width: 34px;
  height: 21px;
  background-image: url("../img/original/top/nimo_02.png");
  transform: rotate(-6.83deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--nimo-02 {
    top: 60px;
    left: 33px;
    width: 24px;
    height: 14px;
  }
}
.p-fv__decoration--nimo-03 {
  top: 103px;
  left: 94px;
  width: 43px;
  height: 26px;
  background-image: url("../img/original/top/nimo_03.png");
  transform: rotate(-6.83deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--nimo-03 {
    top: 70px;
    left: 66px;
    width: 31px;
    height: 18px;
  }
}
.p-fv__decoration--starfish {
  top: 0;
  right: -21px;
  width: 137px;
  height: 93px;
  background-image: url("../img/original/top/starfish.png");
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--starfish {
    top: -7px;
    right: -17px;
    width: 103px;
    height: 70px;
  }
}
.p-fv__decoration--kurage-blue {
  top: 100px;
  right: 54px;
  width: 60px;
  height: 128px;
  background-image: url("../img/original/top/kurage_blue.png");
  transform: rotate(-15.17deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--kurage-blue {
    top: 68px;
    right: 35px;
    width: 40px;
    height: 76px;
  }
}
.p-fv__decoration--kurage-mizuiro {
  bottom: 208px;
  left: -57px;
  width: 120px;
  height: 204px;
  background-image: url("../img/original/top/kurage_mizuiro.png");
  transform: rotate(-7.89deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--kurage-mizuiro {
    bottom: 161px;
    left: -52px;
    width: 81px;
    height: 149px;
  }
}
.p-fv__decoration--kurage-pink {
  bottom: 151px;
  left: 3px;
  width: 84px;
  height: 119px;
  background-image: url("../img/original/top/kurage_pink.png");
  transform: rotate(14.86deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--kurage-pink {
    bottom: 118px;
    left: 1px;
    width: 48px;
    height: 83px;
  }
}
.p-fv__decoration--wakame {
  bottom: -12px;
  left: -24px;
  width: 65px;
  height: 109px;
  background-image: url("../img/original/top/wakame.png");
  transform: rotate(-4.93deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--wakame {
    bottom: -4px;
    left: -24px;
    width: 45px;
    height: 78px;
  }
}
.p-fv__decoration--sango-left {
  bottom: -15px;
  left: 58px;
  width: 120px;
  height: 76px;
  background-image: url("../img/original/top/sango_left.png");
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--sango-left {
    bottom: -7px;
    left: 39px;
    width: 90px;
    height: 57px;
  }
}
.p-fv__decoration--nimo-04 {
  bottom: 99px;
  left: 92px;
  width: 54px;
  height: 32px;
  background-image: url("../img/original/top/nimo_04.png");
  transform: rotate(-5.99deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--nimo-04 {
    bottom: 81px;
    left: 70px;
    width: 38px;
    height: 22px;
  }
}
.p-fv__decoration--nimo-05 {
  bottom: 68px;
  left: 48px;
  width: 44px;
  height: 29px;
  background-image: url("../img/original/top/nimo_05.png");
  transform: rotate(-12.41deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--nimo-05 {
    bottom: 58px;
    left: 37px;
    width: 31px;
    height: 18px;
  }
}
.p-fv__decoration--anago {
  right: -21px;
  bottom: -5px;
  width: 93px;
  height: 64px;
  background-image: url("../img/original/top/anago.png");
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--anago {
    right: -20px;
    bottom: -3px;
    width: 70px;
    height: 48px;
  }
}
.p-fv__decoration--bubble {
  right: 53px;
  bottom: 51px;
  width: 33px;
  height: 53px;
  background-image: url("../img/original/top/bubble.png");
  transform: rotate(9.07deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--bubble {
    right: 35px;
    bottom: 39px;
    width: 25px;
    height: 40px;
  }
}
.p-fv__decoration--sango-right {
  right: 80px;
  bottom: -14px;
  width: 66px;
  height: 77px;
  background-image: url("../img/original/top/sango_right.png");
  transform: rotate(-5.42deg);
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--sango-right {
    right: 55px;
    bottom: -10px;
    width: 50px;
    height: 58px;
  }
}
.p-fv__decoration--kurage-orange {
  display: none;
}
@media screen and (max-width: 500px) {
  .p-fv__decoration--kurage-orange {
    top: -110px;
    right: -30px;
    display: block;
    width: 63px;
    height: 116px;
    background-image: url("../img/original/top/kurage_orage.png");
    transform: rotate(-3.53deg);
  }
}

@keyframes fv-decoration-float {
  0% {
    translate: -2px 1px;
    rotate: -1deg;
  }
  50% {
    translate: 1px -3px;
    rotate: 1.2deg;
  }
  100% {
    translate: 3px 2px;
    rotate: -0.5deg;
  }
}
@keyframes fv-decoration-float-nimo {
  0% {
    translate: -4px 2px;
    rotate: -1.4deg;
  }
  50% {
    translate: 2px -5px;
    rotate: 1.5deg;
  }
  100% {
    translate: 5px 3px;
    rotate: -0.8deg;
  }
}
@keyframes fv-water-current {
  0%, 100% {
    transform: translate3d(-2px, 1px, 0);
  }
  42% {
    transform: translate3d(5px, -2px, 0);
  }
  68% {
    transform: translate3d(7px, 1px, 0);
  }
}
@keyframes fv-jellyfish-pulse {
  0%, 100% {
    translate: -1px 2px;
    rotate: -2deg;
  }
  28% {
    translate: 2px -11px;
    rotate: 3deg;
  }
  62% {
    translate: 4px -5px;
    rotate: -3.5deg;
  }
}
@keyframes fv-jellyfish-pulse-small {
  0%, 100% {
    translate: 0 1px;
    rotate: -0.7deg;
  }
  30% {
    translate: 1px -6px;
    rotate: 1.2deg;
  }
  65% {
    translate: 2px -3px;
    rotate: -1.3deg;
  }
}
@keyframes fv-jellyfish-pulse-orange {
  0%, 100% {
    translate: -1px 2px;
    rotate: 0deg;
  }
  28% {
    translate: 2px -11px;
    rotate: 3.53deg;
  }
  62% {
    translate: 4px -5px;
    rotate: 0.8deg;
  }
}
@keyframes fv-seabed-sway {
  0%, 100% {
    rotate: -0.5deg;
  }
  42% {
    rotate: 1.2deg;
  }
  68% {
    rotate: 1.7deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-fv__current {
    animation: none;
    transform: none;
  }
  .p-fv__decoration {
    animation: none;
    translate: none;
    rotate: none;
  }
}
.p-news {
  padding-block: 95px 0;
}
.p-news:not(:has(.p-news__item)) {
  display: none;
}
@media screen and (max-width: 770px) {
  .p-news {
    padding-block: 0;
  }
}
.p-news__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .p-news__inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}
.p-news__title {
  flex-shrink: 0;
  margin-right: 90px;
  padding-left: 14px;
}
@media screen and (max-width: 1080px) {
  .p-news__title {
    align-self: center;
    margin-right: 0;
    text-align: center;
  }
}
.p-news__list {
  width: 597px;
  max-height: 356px;
  overflow-x: hidden;
  overflow-y: auto;
  direction: ltr;
  scrollbar-color: #f6f4f4 transparent;
  scrollbar-width: auto;
}
@media screen and (max-width: 770px) {
  .p-news__list {
    width: 100%;
    max-height: 402px;
  }
}
.p-news__list::-webkit-scrollbar {
  width: 17px;
}
.p-news__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.p-news__list::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.p-news__list::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: #f6f4f4;
}
.p-news__item {
  width: 580px;
  padding: 24px 8px;
  border-bottom: 1px solid #eee9e9;
  direction: ltr;
}
@media screen and (max-width: 770px) {
  .p-news__item {
    width: 580px;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }
}
.p-news__item:last-child {
  border-bottom: 0;
}
.p-news__empty {
  width: 580px;
  padding: 32px 8px;
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 770px) {
  .p-news__empty {
    width: 100%;
  }
}
.p-news__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
@media screen and (max-width: 770px) {
  .p-news__meta {
    align-items: center;
  }
}
.p-news__date {
  color: #685858;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (max-width: 770px) {
  .p-news__date {
    display: block;
  }
}
.p-news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 24px;
  border-radius: 100px;
  color: #504444;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
}
.p-news__category--closed {
  background-color: #C8EBF3;
}
.p-news__category--medical {
  background-color: #F7CECE;
}
.p-news__category--vaccine {
  background-color: #D8ECC8;
}
.p-news__category--checkup {
  background-color: #F0E0C8;
}
.p-news__category--other {
  background-color: #EDD8E8;
}
.p-news__item-title {
  margin-bottom: 8px;
  color: #504444;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-news__text {
  margin: 0;
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.p-hours {
  padding-block: 90px 128px;
}
@media screen and (max-width: 770px) {
  .p-hours {
    padding-block: 88px 128px;
  }
}
.p-hours__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-hours__title {
  position: absolute;
  top: -24px;
  left: 40px;
  z-index: 1;
}
.p-hours__summary {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.p-hours__table {
  position: relative;
}
.p-hours__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.p-hours__tel-wrap {
  position: relative;
}
.p-hours__tel-wrap::before {
  display: none;
}
.p-hours__tel {
  width: 279px;
  height: 120px;
  border-radius: 32px;
  background-image: radial-gradient(ellipse 119px 121px at 6px -27px, rgba(255, 222, 172, 0.4) 0%, rgba(255, 222, 172, 0) 100%);
  text-decoration: none;
}
.p-hours__tel .c-tel-button__number,
.p-hours__tel .c-tel-button__time {
  position: relative;
  z-index: 2;
}
.p-hours__tel .c-tel-button__number {
  font-size: 2.5rem;
}
.p-hours__tel .c-tel-button__time {
  font-size: 1.4rem;
}
@media screen and (max-width: 500px) {
  .p-hours__tel .c-tel-button__number::before {
    width: 19px;
    height: 20px;
  }
}
.p-hours__closed {
  margin: 0;
  color: #504444;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1080px) {
  .p-hours__inner {
    flex-direction: column;
    align-items: center;
  }
  .p-hours__title {
    position: static;
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }
  .p-hours__table {
    width: 100%;
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 500px) {
  .p-hours__table {
    margin-bottom: 69px;
  }
}
@media screen and (max-width: 1080px) {
  .p-hours__table img {
    width: 100%;
    height: auto;
  }
  .p-hours__tel {
    width: 216px;
    height: 93px;
  }
  .p-hours__tel .c-tel-button__number {
    font-size: 2rem;
  }
  .p-hours__tel .c-tel-button__time {
    font-size: 1.1rem;
  }
  .p-hours__closed {
    font-size: 1.4rem;
    text-align: center;
  }
}
@media screen and (min-width: 375px) and (max-width: 1080px) {
  .p-hours__table.c-hours-table--large {
    max-width: 639px;
  }
}
@media screen and (max-width: 370px) {
  .p-hours__inner {
    padding-inline: 12px;
  }
  .p-hours__title {
    margin-bottom: 24px;
  }
  .p-hours__table {
    margin-bottom: 40px;
  }
}

.p-guide {
  background-color: #fffbf2;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 500px) {
  .p-guide {
    border-radius: 40px 40px 0 0;
  }
}
.p-guide__inner {
  padding-block: 49px 88px;
}
@media screen and (max-width: 770px) {
  .p-guide__inner {
    padding-block: 54px 80px;
  }
}
.p-guide__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 770px) {
  .p-guide__title {
    margin-bottom: 32px;
  }
}
.p-guide__title::before {
  display: block;
  width: 72px;
  height: 47px;
  margin-bottom: 8px;
  background: url("../img/original/top/reception_icon.png") center/contain no-repeat;
  content: "";
}
.p-guide__item:last-child .p-guide__note {
  margin-bottom: 24px;
}
.p-guide .c-step-guide__item:not(:last-child)::after {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-guide__list.is-bar-animated .c-step-guide__item:not(:last-child)::after {
  transform: scaleY(1);
}
.p-guide__list.is-bar-animated .c-step-guide__item:nth-child(2)::after {
  transition-delay: 1.5s;
}
.p-guide__body {
  position: relative;
}
.p-guide__body::before {
  position: absolute;
  z-index: 2;
  top: calc(1.76rem - 85px);
  left: -135px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle closest-side, #fcc46c 0%, #000 100%);
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
  content: "";
}
@media screen and (max-width: 770px) {
  .p-guide__body::before {
    top: calc(1.44rem - 91px);
  }
}
.p-guide__text {
  margin-bottom: 7px;
  color: #504444;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 770px) {
  .p-guide__text {
    font-size: 1.6rem;
  }
}
.p-guide__caution {
  width: 100%;
  max-width: 696px;
  padding: 24px;
  background-color: #fff;
  border-radius: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .p-guide__caution {
    padding: 16px;
  }
}
.p-guide__caution-lead {
  margin-bottom: 12px;
  color: #db6f6f;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-guide__caution-text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-guide__caution-text--pink {
  margin-bottom: 12px;
}
.p-guide__link {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-right: 64px;
  color: #c84848;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media screen and (max-width: 770px) {
  .p-guide__link {
    font-size: 1.5rem;
    padding-right: 52px;
  }
}
.p-guide__link::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 48px;
  height: 48px;
  border: 2px solid #db6f6f;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color 0.25s ease;
  content: "";
}
@media screen and (max-width: 770px) {
  .p-guide__link::before {
    width: 36px;
    height: 36px;
  }
}
.p-guide__link::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 15px;
  background: url("../img/original/top/arrow_1.png") center/contain no-repeat;
  transform: translateY(-50%);
  transition: filter 0.25s ease;
  content: "";
}
@media screen and (max-width: 770px) {
  .p-guide__link::after {
    right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .p-guide__link::after {
    background: url("../img/original/top/arrow_1_sp.png") center/contain no-repeat;
  }
}
@media (any-hover: hover) {
  .p-guide__link:hover::before {
    background-color: #db6f6f;
  }
  .p-guide__link:hover::after {
    filter: brightness(0) invert(1);
  }
}
.p-guide__link:focus-visible::before {
  background-color: #db6f6f;
}
.p-guide__link:focus-visible::after {
  filter: brightness(0) invert(1);
}

@media (prefers-reduced-motion: reduce) {
  .p-guide .c-step-guide__item:not(:last-child)::after {
    transform: none;
  }
}
.p-concept {
  padding-block: 65px 104px;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 1080px) {
  .p-concept__inner {
    padding-inline: 37px;
  }
}
@media screen and (max-width: 770px) {
  .p-concept__inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 770px) {
  .p-concept {
    padding-block: 53px 80px;
  }
}
@media screen and (max-width: 500px) {
  .p-concept {
    border-radius: 40px 40px 0 0;
  }
}
.p-concept__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 57px;
  text-align: center;
}
@media screen and (max-width: 770px) {
  .p-concept__title {
    margin-bottom: 32px;
  }
}
.p-concept__title::before {
  display: block;
  width: 72px;
  height: 40px;
  margin-bottom: 8px;
  background: url("../img/original/top/concept_icon.png") center/contain no-repeat;
  content: "";
}
.p-concept__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 500px) {
  .p-concept__list {
    gap: 70px;
  }
}
.p-concept__item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
@media screen and (max-width: 770px) {
  .p-concept__item {
    flex-direction: column;
    gap: 0;
  }
}
.p-concept__body {
  flex: 1;
}
@media screen and (max-width: 770px) {
  .p-concept__body {
    order: 2;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
}
.p-concept__item-title {
  margin-bottom: 16px;
  color: #504444;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 770px) {
  .p-concept__item-title {
    margin-bottom: 16px;
    font-size: 2rem;
    text-align: center;
  }
}
.p-concept__text {
  margin: 0;
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
}
@media screen and (max-width: 770px) {
  .p-concept__text {
    font-size: 1.6rem;
  }
}
.p-concept__image {
  position: relative;
  display: block;
  flex: 0 0 247px;
  transform: translateY(15px);
}
@media screen and (max-width: 770px) {
  .p-concept__image {
    order: 1;
    flex: none;
    margin-bottom: 24px;
  }
}
.p-concept__image::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 280px;
  height: 212px;
  background: url("../img/webp/top/concept_img_bg.webp") center/contain no-repeat;
  transform: translateX(-50%);
  content: "";
}
.p-concept__image img {
  position: relative;
  z-index: 1;
}

.p-service {
  padding-block: 104px 88px;
  background-color: #fffbf2;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 770px) {
  .p-service {
    padding-block: 64px;
  }
}
@media screen and (max-width: 500px) {
  .p-service {
    border-radius: 40px 40px 0 0;
  }
}
.p-service__list {
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 770px) {
  .p-service__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.p-service__message {
  margin-top: 52px;
  color: #504444;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 770px) {
  .p-service__message {
    margin-top: 0;
    font-size: 1.8rem;
  }
}

.p-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 480px;
  height: 240px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 4px #f0c8c8;
  color: #504444;
  text-decoration: none;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (any-hover: hover) {
  .p-service-card:hover {
    transform: scale(1.025);
  }
  .p-service-card:hover::before {
    background-color: #e07878;
  }
  .p-service-card:nth-child(2):hover::before {
    background-color: #c49e5d;
  }
  .p-service-card:hover::after {
    filter: brightness(0) invert(1);
  }
}
.p-service-card:focus-visible {
  transform: scale(1.025);
}
@media screen and (max-width: 770px) {
  .p-service-card {
    width: 560px;
    max-width: 100%;
    height: 240px;
  }
}
@media screen and (max-width: 500px) {
  .p-service-card {
    width: 335px;
  }
}
.p-service-card:nth-child(2) {
  box-shadow: inset 0 0 0 4px #eddbbc;
}
.p-service-card::before {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border: 1.67px solid #e07878;
  border-radius: 50%;
  transition: background-color 0.25s ease;
  content: "";
}
.p-service-card::after {
  position: absolute;
  right: 36px;
  bottom: 38px;
  width: 15px;
  height: 12px;
  background: url("../img/original/top/Arrow_2.png") center/contain no-repeat;
  transition: filter 0.25s ease;
  content: "";
}
.p-service-card:nth-child(2)::before {
  border-color: #c49e5d;
}
.p-service-card:nth-child(2)::after {
  background-image: url("../img/original/top/Arrow_3.png");
}
.p-service-card:focus-visible::before {
  background-color: #e07878;
}
.p-service-card:nth-child(2):focus-visible::before {
  background-color: #c49e5d;
}
.p-service-card:focus-visible::after {
  filter: brightness(0) invert(1);
}
.p-service-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  color: #e07878;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-service-card__title::after {
  display: block;
  width: 39px;
  height: 37px;
  background: url("../img/original/top/guide_icon.png") center/contain no-repeat;
  content: "";
}
.p-service-card:nth-child(2) .p-service-card__title::after {
  background-image: url("../img/original/top/service_icon.png");
}
@media screen and (max-width: 500px) {
  .p-service-card__title::after {
    width: 40px;
    height: 37px;
  }
}
@media screen and (max-width: 500px) {
  .p-service-card__title {
    margin-bottom: 16px;
  }
}
.p-service-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-service-card__item {
  position: relative;
  padding-left: 20px;
  color: #504444;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-service-card__item::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #f0c8c8;
  transform: translateY(-50%);
  content: "";
}
.p-service-card:nth-child(2) .p-service-card__item::before {
  background-color: #eddbbc;
}

.p-access {
  padding-block: 48px 88px;
}
@media screen and (max-width: 770px) {
  .p-access {
    padding-block: 52px 160px;
  }
}
.p-access__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 33px;
  text-align: center;
}
.p-access__title::before {
  display: block;
  width: 72px;
  height: 50px;
  margin-bottom: 8px;
  background: url("../img/original/top/access_icon.png") center/contain no-repeat;
  content: "";
}
.p-access__content {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 770px) {
  .p-access__content {
    flex-direction: column;
    gap: 0;
  }
}
.p-access__map {
  flex: 1 1 0;
  min-width: 0;
}
@media screen and (max-width: 770px) {
  .p-access__map {
    margin-bottom: 16px;
  }
}
.p-access__map-frame {
  display: block;
  width: 100%;
  height: 420px;
  border-radius: 20px;
}
@media screen and (max-width: 770px) {
  .p-access__map-frame {
    width: 100%;
    height: 420px;
  }
}
.p-access__body {
  display: flex;
  flex-direction: column;
  flex: 0 1 318px;
  min-width: 0;
  color: #504444;
}
@media screen and (max-width: 770px) {
  .p-access__body {
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .p-access__body {
    align-items: flex-start;
  }
}
.p-access__image {
  order: 1;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 770px) {
  .p-access__image {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-access__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 770px) {
  .p-access__image img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-access__traffic {
  order: 2;
  margin-bottom: 20px;
  color: #504444;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-left: 10px;
}
@media screen and (max-width: 770px) {
  .p-access__traffic {
    margin-bottom: 20px;
    font-size: 1.6rem;
    padding-left: 14px;
  }
}
@media screen and (max-width: 770px) {
  .p-access__traffic .c-bold {
    font-size: 2.4rem;
  }
}
.p-access__contact {
  order: 3;
  padding-left: 11px;
}
@media screen and (max-width: 770px) {
  .p-access__contact {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-access__contact {
    width: auto;
    margin-inline: 0;
  }
}
.p-access__address {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: #504444;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 770px) {
  .p-access__address {
    padding-left: 33px;
    margin-bottom: 16px;
    font-size: 1.6rem;
  }
}
.p-access__address::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 24px;
  height: 30px;
  background: url("../img/original/common/access_map_icon.png") center/contain no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 770px) {
  .p-access__address::before {
    left: 0;
  }
}
.p-access__tel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "LINE Seed JP", sans-serif;
  text-decoration: none;
}
.p-access__tel-number {
  position: relative;
  display: inline-block;
  padding-left: 33px;
  color: #db6f6f;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 770px) {
  .p-access__tel-number {
    padding-left: 33px;
    font-size: 2.8rem;
  }
}
.p-access__tel-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 27px;
  height: 30px;
  background: url("../img/original/common/access_tel_icon.png") center/contain no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 770px) {
  .p-access__tel-number::before {
    left: 0;
  }
}
.p-access__tel-time {
  color: #504444;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-left: 27px;
}
@media screen and (max-width: 770px) {
  .p-access__tel-time {
    padding-left: 33px;
    font-size: 1.4rem;
  }
}

.p-flow-fv .c-lower-fv__body {
  z-index: 2;
}
.p-flow-fv__image-wrap {
  position: relative;
  width: 100%;
}
.p-flow-fv__decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.p-flow-fv__current, .p-flow-fv__seabed {
  position: absolute;
  inset: 0;
}
.p-flow-fv__current {
  animation: flow-fv-water-current 10s ease-in-out infinite;
  will-change: transform;
}
.p-flow-fv__decoration {
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-flow-fv__decoration--anago {
  right: -25px;
  bottom: -7px;
  width: 93px;
  height: 64px;
  background-image: url("../img/original/flow/fv_anago.png");
  animation: flow-fv-seabed-sway 10s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: rotate;
}
@media screen and (max-width: 500px) {
  .p-flow-fv__decoration--anago {
    right: -19px;
    bottom: -3px;
    width: 70px;
    height: 48px;
  }
}
.p-flow-fv__decoration--bubble {
  right: 38px;
  bottom: 46px;
  width: 33px;
  height: 53px;
  background-image: url("../img/original/top/bubble.png");
  transform: rotate(9.06deg);
  animation: flow-fv-bubble-float 4.2s -1.3s ease-in-out infinite alternate;
  will-change: translate, scale;
}
@media screen and (max-width: 500px) {
  .p-flow-fv__decoration--bubble {
    right: 36px;
    bottom: 39px;
    width: 25px;
    height: 40px;
  }
}
.p-flow-fv__decoration--kurage {
  top: -25px;
  right: -50px;
  width: 124px;
  height: 235px;
  background-image: url("../img/original/flow/fv_kurage.png");
  transform: rotate(-0.79deg);
  animation: flow-fv-jellyfish-pulse 10.8s -3.4s ease-in-out infinite;
  will-change: translate, rotate;
}
@media screen and (max-width: 500px) {
  .p-flow-fv__decoration--kurage {
    top: auto;
    right: -30px;
    bottom: 90px;
    width: 74px;
    height: 136px;
  }
}
.p-flow-fv__decoration--sango {
  right: 70px;
  bottom: -15px;
  width: 66px;
  height: 77px;
  background-image: url("../img/original/flow/fv_sango.png");
  transform: rotate(-5.42deg);
  animation: flow-fv-seabed-sway-sango 10s -1.2s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: rotate;
}
@media screen and (max-width: 500px) {
  .p-flow-fv__decoration--sango {
    right: 56px;
    bottom: -10px;
    width: 49px;
    height: 57px;
  }
}

@keyframes flow-fv-water-current {
  0%, 100% {
    transform: translate3d(-2px, 1px, 0);
  }
  42% {
    transform: translate3d(5px, -2px, 0);
  }
  68% {
    transform: translate3d(7px, 1px, 0);
  }
}
@keyframes flow-fv-jellyfish-pulse {
  0%, 100% {
    translate: -3px 2px;
    rotate: -1.5deg;
  }
  28% {
    translate: 3px -8px;
    rotate: 2.5deg;
  }
  62% {
    translate: 7px -3px;
    rotate: -2.5deg;
  }
}
@keyframes flow-fv-bubble-float {
  0% {
    translate: -4px 3px;
    scale: 0.96;
  }
  45% {
    translate: 4px -4px;
    scale: 1.02;
  }
  100% {
    translate: -1px -10px;
    scale: 1.06;
  }
}
@keyframes flow-fv-seabed-sway {
  0%, 100% {
    rotate: -0.5deg;
  }
  42% {
    rotate: 1.2deg;
  }
  68% {
    rotate: 1.7deg;
  }
}
@keyframes flow-fv-seabed-sway-sango {
  0%, 100% {
    rotate: -0.3deg;
  }
  42% {
    rotate: 0.8deg;
  }
  68% {
    rotate: 1.1deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-flow-fv__current,
  .p-flow-fv__decoration {
    animation: none;
    translate: none;
    rotate: none;
    scale: none;
  }
  .p-flow-fv__current {
    transform: none;
  }
}
.p-flow-guide-group {
  padding-bottom: 88px;
  background-color: #fffbf2;
  border-radius: 60px 60px 0 0;
}

.p-flow-guide {
  padding-block: 56px 0;
}
.p-flow-guide__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 44px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-flow-guide__title {
    margin-bottom: 38px;
  }
}
.p-flow-guide__title::before {
  display: block;
  width: 72px;
  height: 40px;
  margin-bottom: 8px;
  background: url("../img/original/common/section_icon_flow_yadokari.png") center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 500px) {
  .p-flow-guide__title::before {
    width: 64px;
    height: 35px;
  }
}
.p-flow-guide__list {
  margin-bottom: 55px;
}
.p-flow-guide .c-step-guide__item:not(:last-child)::after {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-flow-guide__list.is-bar-animated .c-step-guide__item:not(:last-child)::after {
  transform: scaleY(1);
}
.p-flow-guide__list.is-bar-animated .c-step-guide__item:nth-child(2)::after {
  transition-delay: 1.5s;
}
.p-flow-guide__list.is-bar-animated .c-step-guide__item:nth-child(3)::after {
  transition-delay: 3s;
}
.p-flow-guide__list.is-bar-animated .c-step-guide__item:nth-child(4)::after {
  transition-delay: 4.5s;
}
.p-flow-guide__body {
  position: relative;
}
.p-flow-guide__body::before {
  position: absolute;
  z-index: 2;
  top: calc(1.76rem - 85px);
  left: -135px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle closest-side, #fcc46c 0%, #000 100%);
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
  content: "";
}
@media screen and (max-width: 770px) {
  .p-flow-guide__body::before {
    top: calc(1.44rem - 91px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-flow-guide .c-step-guide__item:not(:last-child)::after {
    transform: none;
    transition: none;
  }
}
.p-flow-items {
  padding-block: 49px 104px;
}
@media screen and (max-width: 500px) {
  .p-flow-items {
    padding-block: 55px 80px;
  }
}
.p-flow-items__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-flow-items__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-flow-items__title {
    margin-bottom: 32px;
    text-align: center;
  }
}
.p-flow-items__title::before {
  display: block;
  width: 72px;
  height: 47px;
  margin-bottom: 8px;
  background: url("../img/original/common/section_icon_items_nimo.png") center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 500px) {
  .p-flow-items__title::before {
    width: 64px;
    height: 42px;
  }
}
.p-flow-items__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  margin-left: 50px;
}
@media screen and (max-width: 500px) {
  .p-flow-items__list {
    align-self: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    margin-left: 0;
  }
}
@media screen and (min-width: 375px) and (max-width: 500px) {
  .p-flow-items__list {
    align-self: center;
  }
}
.p-flow-items__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #504444;
}
@media screen and (max-width: 500px) {
  .p-flow-items__item {
    gap: 8px;
    font-size: 1.6rem;
  }
}
.p-flow-items__item::before {
  flex-shrink: 0;
  width: 18px;
  height: 17px;
  content: "";
  background: url("../img/original/flow/items_check.png") center/contain no-repeat;
}
@media screen and (max-width: 500px) {
  .p-flow-items__item::before {
    width: 15px;
    height: 14px;
  }
}
@media screen and (max-width: 500px) {
  .p-flow-items__item:nth-child(3) {
    align-items: flex-start;
  }
}
@media screen and (max-width: 500px) {
  .p-flow-items__item:nth-child(3)::before {
    margin-top: 6px;
  }
}
.p-flow-items__optional {
  margin-left: 8px;
  padding: 32px 88px 32px 32px;
  border: 3px solid #f0c8c8;
  border-radius: 20px;
}
@media screen and (max-width: 770px) {
  .p-flow-items__optional {
    padding: 32px 47px 32px 32px;
  }
}
@media screen and (max-width: 500px) {
  .p-flow-items__optional {
    margin-left: 0;
    padding: 32px 53px 32px 32px;
  }
}
.p-flow-items__optional-title {
  margin-bottom: 12px;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #504444;
}
@media screen and (max-width: 500px) {
  .p-flow-items__optional-title {
    font-size: 1.6rem;
  }
}
.p-flow-items__optional-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 8px;
}
@media screen and (max-width: 500px) {
  .p-flow-items__optional-list {
    gap: 10px;
    margin-left: 0;
  }
}
.p-flow-items__optional-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #504444;
}
@media screen and (max-width: 500px) {
  .p-flow-items__optional-item {
    gap: 8px;
    font-size: 1.5rem;
  }
}
.p-flow-items__optional-item::before {
  flex-shrink: 0;
  width: 15px;
  height: 14px;
  content: "";
  background: url("../img/original/flow/items_check.png") center/contain no-repeat;
}
@media screen and (max-width: 500px) {
  .p-flow-items__optional-item::before {
    width: 14px;
    height: 13px;
  }
}
@media screen and (max-width: 500px) {
  .p-flow-items__optional-item:nth-child(2) {
    align-items: flex-start;
  }
}
@media screen and (max-width: 500px) {
  .p-flow-items__optional-item:nth-child(2)::before {
    margin-top: 6px;
  }
}

.p-flow-notice {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(820px, 100% - 40px);
  margin-block: 0;
  margin-inline: auto;
  padding: 32px;
  background-color: #fff;
  border-radius: 20px;
  list-style: none;
}
.p-flow-notice__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 18px;
  color: #504444;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 770px) {
  .p-flow-notice__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
.p-flow-notice__item::before {
  position: absolute;
  top: 0.8em;
  left: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #db6f6f;
  transform: translate(-100%, -50%);
  content: "";
}
.p-flow-notice__item--description {
  display: block;
}
.p-flow-notice__item--description .p-flow-notice__heading,
.p-flow-notice__item--description .p-flow-notice__text {
  display: inline;
}
.p-flow-notice__heading {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.p-flow-notice__download, .p-flow-notice__text {
  margin: 0;
}
.p-flow-notice__link {
  display: inline-flex;
  align-items: center;
  gap: 5.5px;
  flex-shrink: 0;
  color: #db6f6f;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: currentColor;
  transition: text-decoration-color 0.25s ease;
}
@media (any-hover: hover) {
  .p-flow-notice__link:hover {
    text-decoration-color: transparent;
  }
}
.p-flow-notice__link:focus-visible {
  text-decoration-color: transparent;
}
.p-flow-notice__link::before {
  flex-shrink: 0;
  width: 17px;
  height: 15px;
  background: url("../img/original/flow/DL_icon.png") center/contain no-repeat;
  content: "";
}

.p-flow-greeting {
  padding-block: 46px 88px;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 500px) {
  .p-flow-greeting {
    padding-block: 41px 160px;
    border-radius: 40px 40px 0 0;
  }
}
.p-flow-greeting__content {
  display: flex;
  justify-content: space-between;
  gap: 71px;
}
@media screen and (min-width: 771px) {
  .p-flow-greeting__content {
    padding-left: 22px;
  }
}
@media screen and (max-width: 770px) {
  .p-flow-greeting__content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.p-flow-greeting__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-flow-greeting__title {
    margin-bottom: 32px;
  }
}
.p-flow-greeting__title::before {
  display: block;
  width: 72px;
  height: 50px;
  margin-bottom: 8px;
  background: url("../img/original/common/section_icon_greeting_anago.png") center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 500px) {
  .p-flow-greeting__title::before {
    width: 64px;
    height: 44px;
  }
}
.p-flow-greeting__body {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: justify;
}
@media screen and (max-width: 770px) {
  .p-flow-greeting__body {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-flow-greeting__body {
    gap: 24px;
  }
}
.p-flow-greeting__text {
  margin: 0;
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.p-flow-greeting__name {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 0;
}
.p-flow-greeting__name-label {
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-flow-greeting__name-text {
  color: #685858;
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.p-flow-greeting__image {
  position: relative;
  order: 1;
  flex: 0 0 308px;
  width: 308px;
  height: 263px;
}
@media screen and (max-width: 500px) {
  .p-flow-greeting__image {
    flex: 0 0 auto;
    width: 246px;
    height: 211px;
    margin-bottom: 24px;
  }
}
.p-flow-greeting__image::before {
  position: absolute;
  top: 0;
  left: -22px;
  z-index: 0;
  width: 350px;
  height: 259px;
  background: url("../img/original/flow/greeting_maru.png") center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 500px) {
  .p-flow-greeting__image::before {
    left: -17px;
    width: 279px;
    height: 212px;
  }
}
.p-flow-greeting__image img {
  position: relative;
  z-index: 1;
  width: 308px;
  height: 263px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 500px) {
  .p-flow-greeting__image img {
    width: 246px;
    height: 211px;
  }
}

.p-service-fv .c-lower-fv__body {
  z-index: 2;
}
.p-service-fv__image-wrap {
  position: relative;
  width: 100%;
}
.p-service-fv__decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.p-service-fv__current, .p-service-fv__seabed {
  position: absolute;
  inset: 0;
}
.p-service-fv__current {
  animation: service-fv-water-current 10s ease-in-out infinite;
  will-change: transform;
}
.p-service-fv__decoration {
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-service-fv__decoration--kurage-left {
  bottom: 34px;
  right: 36px;
  width: 64px;
  height: 155px;
  background-image: url("../img/original/service/kurage_left.png");
  transform: rotate(1.16deg);
  animation: service-fv-jellyfish-left 9.2s -2.1s ease-in-out infinite;
  will-change: translate, rotate;
}
@media screen and (max-width: 500px) {
  .p-service-fv__decoration--kurage-left {
    bottom: 47px;
    right: 20px;
    width: 80px;
    height: 81px;
  }
}
.p-service-fv__decoration--kurage-right {
  top: -26px;
  right: -62px;
  width: 120px;
  height: 225px;
  background-image: url("../img/original/service/kurage_right.png");
  transform: rotate(-5deg);
  animation: service-fv-jellyfish-right 11.4s -5.7s ease-in-out infinite;
  will-change: translate, rotate;
}
@media screen and (max-width: 500px) {
  .p-service-fv__decoration--kurage-right {
    top: auto;
    right: -35px;
    bottom: 70px;
    width: 80px;
    height: 120px;
  }
}
.p-service-fv__decoration--kai-left {
  bottom: -17px;
  right: 39px;
  width: 46px;
  height: 46px;
  background-image: url("../img/original/service/kai_left.png");
  animation: service-fv-shell-left 10s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: rotate;
}
@media screen and (max-width: 500px) {
  .p-service-fv__decoration--kai-left {
    bottom: -18px;
    right: 31px;
    width: 32px;
    height: 32px;
  }
}
.p-service-fv__decoration--kai-right {
  right: -32px;
  bottom: -4px;
  width: 63px;
  height: 62px;
  background-image: url("../img/original/service/kai_right.png");
  animation: service-fv-shell-right 10s -0.8s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: rotate;
}
@media screen and (max-width: 500px) {
  .p-service-fv__decoration--kai-right {
    right: -21px;
    bottom: -4px;
    width: 45px;
    height: 44px;
  }
}

@keyframes service-fv-water-current {
  0%, 100% {
    transform: translate3d(-2px, 1px, 0);
  }
  42% {
    transform: translate3d(5px, -2px, 0);
  }
  68% {
    transform: translate3d(7px, 1px, 0);
  }
}
@keyframes service-fv-jellyfish-left {
  0%, 100% {
    translate: -3px 2px;
    rotate: -1deg;
  }
  35% {
    translate: 2px -8px;
    rotate: 2deg;
  }
  70% {
    translate: 5px -3px;
    rotate: -2deg;
  }
}
@keyframes service-fv-jellyfish-right {
  0%, 100% {
    translate: 3px 1px;
    rotate: 1.5deg;
  }
  30% {
    translate: -5px -5px;
    rotate: -2.5deg;
  }
  64% {
    translate: -1px -12px;
    rotate: 2deg;
  }
}
@keyframes service-fv-shell-left {
  0%, 100% {
    rotate: -0.5deg;
  }
  42% {
    rotate: 1.8deg;
  }
  68% {
    rotate: 2.4deg;
  }
}
@keyframes service-fv-shell-right {
  0%, 100% {
    rotate: -0.3deg;
  }
  42% {
    rotate: 1.2deg;
  }
  68% {
    rotate: 1.7deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-service-fv__current,
  .p-service-fv__decoration {
    animation: none;
    translate: none;
    rotate: none;
  }
  .p-service-fv__current {
    transform: none;
  }
}
.p-service-medical {
  padding-block: 49px 104px;
}
@media screen and (max-width: 500px) {
  .p-service-medical {
    padding-block: 51px 75px;
  }
}
.p-service-medical__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-service-medical__title {
    margin-bottom: 32px;
  }
}
.p-service-medical__title::before {
  display: block;
  width: 72px;
  height: 47px;
  margin-bottom: 8px;
  background: url("../img/original/common/section_icon_items_nimo.png") center/contain no-repeat;
  content: "";
}
.p-service-medical__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 500px) {
  .p-service-medical__list {
    gap: 64px;
    margin-bottom: 56px;
  }
}
.p-service-medical__item {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 500px) {
  .p-service-medical__item {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}
.p-service-medical__image {
  order: 1;
  flex: 0 0 152px;
  width: 152px;
  height: 113px;
}
@media screen and (max-width: 500px) {
  .p-service-medical__image {
    flex-basis: 149px;
    width: 200px;
    height: 149px;
  }
}
.p-service-medical__image img {
  width: 152px;
  height: 113px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 500px) {
  .p-service-medical__image img {
    width: 200px;
    height: 149px;
  }
}
.p-service-medical__body {
  order: 2;
}
.p-service-medical__item-title {
  margin-bottom: 8px;
  color: #504444;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 500px) {
  .p-service-medical__item-title {
    font-size: 1.8rem;
  }
}
.p-service-medical__text {
  margin: 0;
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: left;
}

.p-service-vaccines {
  padding-block: 56px 88px;
  border-radius: 64px 64px 0 0;
  background-color: #fffbf2;
}
@media screen and (max-width: 500px) {
  .p-service-vaccines {
    padding-block: 59px 80px;
    border-radius: 40px 40px 0 0;
  }
}
.p-service-vaccines__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-service-vaccines__title {
    margin-bottom: 32px;
  }
}
.p-service-vaccines__title::before {
  display: block;
  width: 72px;
  height: 40px;
  margin-bottom: 8px;
  background: url("../img/original/common/section_icon_flow_yadokari.png") center/contain no-repeat;
  content: "";
}
.p-service-vaccines__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 770px) {
  .p-service-vaccines__content {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-service-vaccines__content {
    gap: 59px;
  }
}
@media screen and (max-width: 500px) {
  .p-service-vaccines__block {
    display: flex;
    flex-direction: column;
  }
}
.p-service-vaccines__block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #504444;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 500px) {
  .p-service-vaccines__block-title {
    font-size: 1.8rem;
    margin-bottom: 13px;
  }
}
.p-service-vaccines__block-title::before {
  flex-shrink: 0;
  width: 34px;
  height: 35px;
  background: center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 500px) {
  .p-service-vaccines__block-title::before {
    width: 28px;
    height: 29px;
  }
}
.p-service-vaccines__block:nth-child(1) .p-service-vaccines__block-title::before {
  background-image: url("../img/original/service/vacines_icon01.png");
}
.p-service-vaccines__block:nth-child(2) .p-service-vaccines__block-title::before {
  background-image: url("../img/original/service/vacines_icon02.png");
}
.p-service-vaccines__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
}
.p-service-vaccines__item {
  display: flex;
  align-items: flex-start;
  gap: 29px;
}
@media screen and (max-width: 770px) {
  .p-service-vaccines__item {
    flex-direction: column;
    gap: 8px;
  }
}
.p-service-vaccines__term {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 48px;
  color: #504444;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 500px) {
  .p-service-vaccines__term {
    padding-left: 40px;
  }
}
.p-service-vaccines__term::before {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #db6f6f;
  content: "";
}
.p-service-vaccines__description {
  margin: 0;
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 770px) {
  .p-service-vaccines__description {
    padding-left: 58px;
    font-size: 1.5rem;
  }
}
.p-service-vaccines__text {
  margin: 0;
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-left: 43px;
}
@media screen and (max-width: 500px) {
  .p-service-vaccines__text {
    padding-left: 37px;
    font-size: 1.6rem;
  }
}

.p-service-infant {
  padding-block: 52px 85px;
  border-radius: 40px 40px 0 0;
}
@media screen and (max-width: 500px) {
  .p-service-infant {
    padding-block: 42px 157px;
  }
}
.p-service-infant__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  text-align: center;
}
.p-service-infant__title::before {
  display: block;
  width: 72px;
  height: 50px;
  margin-bottom: 8px;
  background: url("../img/original/common/section_icon_greeting_anago.png") center/contain no-repeat;
  content: "";
}
.p-service-infant__content {
  margin-bottom: 48px;
}
.p-service-infant__content-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #504444;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 500px) {
  .p-service-infant__content-title {
    font-size: 1.8rem;
  }
}
.p-service-infant__content-title::before {
  flex-shrink: 0;
  width: 34px;
  height: 35px;
  background: url("../img/original/service/infant_icon.png") center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 500px) {
  .p-service-infant__content-title::before {
    width: 28px;
    height: 25px;
  }
}
.p-service-infant__list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 48px;
}
@media screen and (max-width: 500px) {
  .p-service-infant__list {
    flex-direction: column;
    gap: 4px;
    padding-left: 41px;
  }
}
.p-service-infant__item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: #685858;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.p-service-infant__item::before {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #db6f6f;
  content: "";
}

.p-privacy-fv .c-lower-fv__body {
  z-index: 2;
}
.p-privacy-fv__image-wrap {
  position: relative;
  width: 100%;
}
.p-privacy-fv__decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.p-privacy-fv__decoration {
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-privacy-fv__decoration--iwa {
  z-index: 2;
  bottom: -13px;
  right: -21px;
  width: 102px;
  height: 52px;
  background-image: url("../img/original/privacy/iwa.png");
}
@media screen and (max-width: 500px) {
  .p-privacy-fv__decoration--iwa {
    right: -10px;
    bottom: -4px;
    width: 70px;
    height: 37px;
  }
}
.p-privacy-fv__decoration--kame {
  top: 31px;
  right: -72px;
  width: 122px;
  height: 77px;
  background-image: url("../img/original/privacy/kame.png");
  transform: rotate(-10.51deg);
  animation: privacy-fv-turtle-drift 12s -3.6s ease-in-out infinite;
  will-change: translate, rotate;
}
@media screen and (max-width: 500px) {
  .p-privacy-fv__decoration--kame {
    top: auto;
    right: -33px;
    bottom: 159px;
    left: auto;
    width: 73px;
    height: 53px;
  }
}
.p-privacy-fv__decoration--kusa-left {
  z-index: 1;
  right: -9px;
  bottom: 26px;
  width: 26px;
  height: 95px;
  background-image: url("../img/original/privacy/kusa_left.png");
  animation: privacy-fv-seaweed-left 10s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: rotate;
}
@media screen and (max-width: 500px) {
  .p-privacy-fv__decoration--kusa-left {
    right: 0;
    bottom: 20px;
    width: 20px;
    height: 72px;
  }
}
.p-privacy-fv__decoration--kusa-right {
  z-index: 1;
  right: -31px;
  bottom: 13px;
  width: 28px;
  height: 93px;
  background-image: url("../img/original/privacy/kusa_right.png");
  animation: privacy-fv-seaweed-right 10s -1.1s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: rotate;
}
@media screen and (max-width: 500px) {
  .p-privacy-fv__decoration--kusa-right {
    right: -18px;
    bottom: 11px;
    width: 22px;
    height: 71px;
  }
}
.p-privacy-fv__decoration--yadokari {
  z-index: 3;
  right: 24px;
  bottom: -21px;
  width: 102px;
  height: 56px;
  background-image: url("../img/original/privacy/yadokari.png");
  animation: privacy-fv-hermit-crab 8s -2.4s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: translate, rotate;
}
@media screen and (max-width: 500px) {
  .p-privacy-fv__decoration--yadokari {
    right: 21px;
    bottom: -15px;
    width: 81px;
    height: 45px;
  }
}

@keyframes privacy-fv-turtle-drift {
  0%, 100% {
    translate: -1px 2px;
    rotate: -1deg;
  }
  30% {
    translate: -7px -6px;
    rotate: 1.5deg;
  }
  64% {
    translate: -14px -2px;
    rotate: -1.5deg;
  }
  82% {
    translate: -6px 4px;
    rotate: 0.8deg;
  }
}
@keyframes privacy-fv-seaweed-left {
  0%, 100% {
    rotate: -1deg;
  }
  42% {
    rotate: 2.5deg;
  }
  68% {
    rotate: 3.5deg;
  }
}
@keyframes privacy-fv-seaweed-right {
  0%, 100% {
    rotate: 1deg;
  }
  42% {
    rotate: -2deg;
  }
  68% {
    rotate: -3deg;
  }
}
@keyframes privacy-fv-hermit-crab {
  0%, 100% {
    translate: 0 0;
    rotate: 0deg;
  }
  45% {
    translate: -3px 0;
    rotate: -0.6deg;
  }
  70% {
    translate: -1px -1px;
    rotate: 0.4deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-privacy-fv__decoration--kame,
  .p-privacy-fv__decoration--kusa-left,
  .p-privacy-fv__decoration--kusa-right,
  .p-privacy-fv__decoration--yadokari {
    animation: none;
    translate: none;
    rotate: none;
  }
}
.p-privacy {
  padding-block: 80px 88px;
}
@media screen and (max-width: 500px) {
  .p-privacy {
    padding-block: 80px 160px;
  }
}
.p-privacy__introduction {
  margin-bottom: 64px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #504444;
  text-align: justify;
}
@media screen and (max-width: 500px) {
  .p-privacy__introduction {
    font-size: 1.5rem;
  }
}
.p-privacy__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  counter-reset: privacy-section;
}
.p-privacy__item {
  counter-increment: privacy-section;
}
.p-privacy__title {
  margin-bottom: 14px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #e07878;
}
@media screen and (max-width: 500px) {
  .p-privacy__title {
    font-size: 1.8rem;
  }
}
.p-privacy__title::before {
  content: counter(privacy-section) ". ";
}
.p-privacy__text {
  text-align: justify;
}
.p-privacy__text, .p-privacy__sub-item {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #504444;
}
@media screen and (max-width: 500px) {
  .p-privacy__text, .p-privacy__sub-item {
    font-size: 1.5rem;
  }
}
.p-privacy__sub-list {
  margin-top: 14px;
}
.p-privacy__sub-item::before {
  content: "・";
}
.p-privacy__item:last-child .p-privacy__text {
  margin-bottom: 16px;
}
.p-privacy__contact {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 32px;
  font-style: normal;
  border: 3px solid #f0c8c8;
  border-radius: 20px;
}
@media screen and (max-width: 500px) {
  .p-privacy__contact {
    padding: 24px 6px 24px 16px;
  }
}
.p-privacy__contact-item {
  display: flex;
}
.p-privacy__contact-term, .p-privacy__contact-description {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #504444;
}
@media screen and (max-width: 500px) {
  .p-privacy__contact-term, .p-privacy__contact-description {
    font-size: 1.5rem;
  }
}
.p-privacy__contact-term {
  flex-shrink: 0;
  width: 4.2em;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}
.p-privacy__contact-description {
  display: flex;
}
.p-privacy__contact-description::before {
  flex-shrink: 0;
  content: "：";
}
.p-privacy__contact-link {
  color: inherit;
}

.p-drawer-nav {
  display: none;
}
@media screen and (max-width: 860px) {
  .p-drawer-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 121px 20px 36px;
    overflow-y: auto;
    background-color: #fffdfc;
    animation: drawer-overlay-fade-in 0.4s ease both;
  }
  .p-drawer-nav.is-open.is-closing {
    pointer-events: none;
    animation: drawer-overlay-fade-out 0.4s ease both;
  }
  .p-drawer-nav.is-open .c-menu__list,
  .p-drawer-nav.is-open .c-menu__sub-list {
    align-items: flex-start;
  }
  .p-drawer-nav.is-open .c-menu__item {
    font-size: 2rem;
  }
  .p-drawer-nav.is-open .c-menu__link {
    margin-bottom: 11px;
    margin-left: 0;
    color: #db6f6f;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    transition: opacity 0.25s ease;
  }
}
@media screen and (max-width: 860px) and (any-hover: hover) {
  .p-drawer-nav.is-open .c-menu__link:hover {
    opacity: 0.65;
  }
}
@media screen and (max-width: 860px) {
  .p-drawer-nav.is-open .c-menu__link:active, .p-drawer-nav.is-open .c-menu__link:focus-visible {
    opacity: 0.65;
  }
  .p-drawer-nav.is-open .c-menu__item:first-child .c-menu__link {
    margin-bottom: 27px;
  }
  .p-drawer-nav.is-open .c-menu__item:last-child .c-menu__link {
    margin-bottom: 52px;
  }
  .p-drawer-nav.is-open .c-menu__sub-list {
    gap: 7px;
    margin-bottom: 34px;
    margin-left: 0;
  }
  .p-drawer-nav.is-open .c-menu__sub-item {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .p-drawer-nav.is-open .c-menu__sub-item::before {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    background: center/contain no-repeat;
    transform: rotate(145.39deg);
    content: "";
  }
  .p-drawer-nav.is-open .c-menu__sub-link {
    padding: 4px 3px;
    border-radius: 4px;
    color: #685858;
    font-size: 1.8rem;
    transition: color 0.25s ease, background-color 0.25s ease;
  }
}
@media screen and (max-width: 860px) and (any-hover: hover) {
  .p-drawer-nav.is-open .c-menu__sub-link:hover {
    color: #db6f6f;
  }
}
@media screen and (max-width: 860px) {
  .p-drawer-nav.is-open .c-menu__sub-link:active, .p-drawer-nav.is-open .c-menu__sub-link:focus-visible {
    color: #fff;
    background-color: #db6f6f;
  }
}
@media screen and (max-width: 860px) and (max-width: 500px) {
  .p-drawer-nav.is-open .c-menu__item,
  .p-drawer-nav.is-open .c-menu__link {
    font-size: 1.8rem;
  }
  .p-drawer-nav.is-open .c-menu__sub-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 860px) {
  .p-drawer-nav.is-open .p-drawer-nav__item--flow .c-menu__sub-item::before {
    background-image: url("../img/original/top/menu_star_pink.png");
  }
  .p-drawer-nav.is-open .p-drawer-nav__item--service .c-menu__sub-item::before {
    background-image: url("../img/original/top/menu_star_yellow.png");
  }
  .p-drawer-nav.is-open .p-drawer-nav__tel {
    flex-shrink: 0;
    width: min(253px, 100%);
    height: 93px;
    background-image: radial-gradient(ellipse 119px 121px at 0 -30px, rgba(255, 222, 172, 0.4) 0%, rgba(255, 222, 172, 0) 100%);
    text-decoration: none;
  }
  .p-drawer-nav.is-open .p-drawer-nav__tel .c-tel-button__decoration {
    display: none;
  }
}

.c-bold {
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 1080px) {
  .pc-only {
    display: none;
  }
}
@media screen and (max-width: 770px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .pc-only {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media screen and (max-width: 770px) {
  .tab-only {
    display: inline-block !important;
  }
}
@media screen and (max-width: 500px) {
  .tab-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 500px) {
  .sp-only {
    display: inline-block !important;
  }
}

@media screen and (max-width: 770px) {
  .tab-only.sp-only {
    display: inline-block !important;
  }
}

.tab-down-only {
  display: none !important;
}
@media screen and (max-width: 770px) {
  .tab-down-only {
    display: inline-block !important;
  }
}

.pc-down-only {
  display: none !important;
}
@media screen and (max-width: 1080px) {
  .pc-down-only {
    display: inline-block !important;
  }
}

.xs-only {
  display: none !important;
}
@media screen and (max-width: 370px) {
  .xs-only {
    display: inline-block !important;
  }
}

@media screen and (max-width: 370px) {
  .xs-hidden {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */