@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
:root {
  --inner: 66.25rem;
  --padding-inner: 1.5625rem;
}
@media (max-width: 767px) {
  :root {
    --inner: 33.75rem;
    --padding-inner: 1.25rem;
  }
}
:root {
  --color-black: #2a2408;
  --color-white: #ffffff;
  --color-text: #3d3d3d;
  --color-beige01: #fef7f1;
  --color-beige02: #ffeddd;
  --color-pink01: #ec6d7b;
  --color-pink02: #f29c9f;
  --color-pink03: #f7c7cd;
  --color-green: #4ea93e;
  --color-orange-light: #ffdaba;
  --font-family-base: "Noto Sans JP", sans-serif;
  --zen-maru-font: "Zen Maru Gothic", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-beige01);
  padding-top: 5rem;
}

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.l-inner {
  margin-inline: auto;
  padding-inline: var(--padding-inner);
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}

.l-inner--wide {
  margin-inline: auto;
  padding-inline: var(--padding-inner);
  max-width: calc(85rem + var(--padding-inner) * 2);
}
@media screen and (max-width: 767px) {
  .l-inner--wide {
    max-width: calc(var(--inner) + var(--padding-inner) * 2);
  }
}

.l-page {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 5rem);
}

.l-page > main {
  flex: 1;
}

.p-header {
  width: 100%;
  height: 5rem;
  background-color: var(--color-beige01);
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90rem;
  height: inherit;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
}

.p-header__logo {
  height: inherit;
}

.p-header__logo-link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 11rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__logo-link {
    max-width: 10rem;
  }
}

.p-header__logo-link img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 176/47;
}

.p-header__nav {
  display: flex;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__nav-item {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__nav-link {
  display: inline-flex;
  align-items: center;
  height: inherit;
  padding-inline: 1.25rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-text);
}

.p-header__nav-text {
  position: relative;
  display: inline-block;
}

.p-header__nav-text::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .p-header__nav-link:hover .p-header__nav-text::after {
    transform: scaleX(1);
  }
}
.p-header__nav-contact {
  padding-block: 0.5625rem;
  padding-inline: 0.625rem;
  display: inline-block;
  width: 8.5rem;
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
  border-radius: 1.125rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-header__nav-contact:hover {
    background-color: var(--color-white);
    color: var(--color-green);
  }
}
.p-header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 4rem;
  height: 4rem;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: flex;
  }
}

.p-header__hamburger-bar {
  display: block;
  width: 2.375rem;
  height: 0.1875rem;
  background-color: var(--color-pink01);
  border-radius: 0.625rem;
}

.p-drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: var(--color-beige02);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.p-drawer.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-drawer__close {
  position: fixed;
  top: 0.5625rem;
  right: 1.25rem;
  width: 4rem;
  height: 4rem;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.p-drawer__close-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.375rem;
  height: 0.1875rem;
  background-color: var(--color-pink01);
  border-radius: 0.625rem;
}

.p-drawer__close-bar:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-drawer__close-bar:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-drawer__nav {
  width: 100%;
  padding-top: 7.0625rem;
  padding-bottom: 2.5rem;
  padding-inline: 1.25rem;
}

.p-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  width: 21.875rem;
  max-width: 100%;
  margin-inline: auto;
}

.p-drawer__item {
  border-bottom: 0.0625rem dashed var(--color-pink01);
}

.p-drawer__link {
  display: block;
  padding-block: 1rem;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--color-text);
}

.p-drawer__link--sub {
  padding-left: 0.625rem;
  font-weight: 400;
  font-size: 1.25rem;
}

body.js-drawerOpen {
  overflow: hidden;
}

body.js-drawerOpen .l-header {
  z-index: 101;
  pointer-events: none;
}

body.js-drawerOpen .p-header {
  background-color: transparent;
}

body.js-drawerOpen .p-header__logo-link {
  pointer-events: auto;
}

body.js-drawerOpen .p-header__hamburger {
  visibility: hidden;
}

.p-lower-hero {
  width: 100%;
  background-color: var(--color-beige01);
}
@media screen and (max-width: 767px) {
  .p-lower-hero {
    padding-top: 1.25rem;
  }
}

.p-lower-hero__container {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  min-height: 15.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-lower-hero__container {
    flex-direction: column-reverse;
    gap: 1.25rem;
    min-height: auto;
  }
}

.p-lower-hero__heading {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.125rem;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-lower-hero__heading {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
}

.p-lower-hero__en {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-pink01);
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-lower-hero__en {
    font-size: 1rem;
  }
}

.p-lower-hero__ja {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.6;
  color: var(--color-text);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-lower-hero__ja {
    font-size: 1.875rem;
  }
}

.p-lower-hero__img {
  flex-shrink: 0;
  width: 51.25rem;
  max-width: 100%;
  aspect-ratio: 820/250;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-lower-hero__img {
    width: 100%;
    aspect-ratio: 350/185;
    border-radius: 1rem;
  }
}

.p-lower-hero__img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-lower-hero__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-service-intro {
  padding-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-intro {
    padding-top: 3.75rem;
  }
}

.p-service-intro__lead {
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-service-intro__lead {
    font-size: 1rem;
  }
}

.p-service-nav {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service-nav {
    padding-top: 3.125rem;
  }
}

.p-service-nav__list {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service-nav__list {
    gap: 1rem;
  }
}

.p-service-nav__item {
  flex: 1;
  min-width: 0;
}

.p-service-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  height: 5rem;
  padding-inline: 1.25rem;
  background-color: var(--color-pink02);
  border: 0.0625rem solid var(--color-pink02);
  border-radius: 0.5rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-service-nav__link {
    gap: 0.625rem;
    height: 2.5rem;
    padding-inline: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9375rem;
  }
}

@media (any-hover: hover) {
  .p-service-nav__link:hover {
    background-color: var(--color-white);
    color: var(--color-pink02);
  }
  .p-service-nav__link:hover .p-service-nav__icon {
    background-color: var(--color-pink02);
  }
}
.p-service-nav__text {
  width: 14rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service-nav__text {
    width: 3.75rem;
  }
}
@media (width <= 389px) {
  .p-service-nav__text {
    font-size: clamp(0.625rem, -0.804rem + 7.14vw, 0.938rem); /* 10 ~ 15 | 320 ~ 389 */
  }
}

.p-service-nav__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-white);
  -webkit-mask-image: url("../images/service/icon-down.webp");
  mask-image: url("../images/service/icon-down.webp");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-service-nav__icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.p-rental {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-rental {
    padding-top: 3.125rem;
  }
}

.p-rental__title {
  display: flex;
  align-items: center;
  padding-block: 0.75rem;
  padding-inline: 0.75rem;
  background-color: var(--color-pink03);
  border-radius: 0.25rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-rental__title {
    font-size: 1.375rem;
  }
}

.p-rental__lead {
  margin-top: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-rental__lead {
    font-size: 1rem;
  }
}

.p-rental__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2.1875rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-rental__list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.p-rental__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.p-rental__card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.p-rental__card-img {
  aspect-ratio: 330/210;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-rental__card-img {
    aspect-ratio: 350/210;
  }
}

.p-rental__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-rental__card-text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-rental__card-title {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-rental__card-title {
    line-height: 1;
  }
}

.p-rental__card-desc {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.p-rental__card-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  height: 3.25rem;
  border: 0.0625rem solid var(--color-pink01);
  border-radius: 0.625rem;
  background-color: transparent;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-pink01);
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-rental__card-btn-link {
    border-radius: 0.375rem;
  }
}

.p-rental__card-btn-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  transition: filter 0.3s;
}

@media (any-hover: hover) {
  .p-rental__card-btn-link:hover {
    background-color: var(--color-pink01);
    color: var(--color-white);
  }
  .p-rental__card-btn-link:hover .p-rental__card-btn-icon {
    filter: brightness(0) invert(1);
  }
}
.p-rental__cta {
  display: flex;
  justify-content: center;
  gap: 2.4375rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-rental__cta {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-rental__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 20.625rem;
  max-width: 100%;
  height: 3.75rem;
  background-color: var(--color-pink01);
  border: 0.0625rem solid var(--color-pink01);
  border-radius: 0.625rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--color-white);
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-rental__cta-btn {
    width: 100%;
    height: 3.125rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
  }
}

.p-rental__cta-btn-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

@media (any-hover: hover) {
  .p-rental__cta-btn:hover {
    background-color: var(--color-white);
    color: var(--color-pink01);
  }
  .p-rental__cta-btn:hover .p-rental__cta-btn-icon {
    filter: none;
  }
}
.p-sales {
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-sales {
    padding-top: 3.75rem;
  }
}

.p-sales__title {
  display: flex;
  align-items: center;
  padding-block: 0.75rem;
  padding-inline: 0.75rem;
  background-color: var(--color-pink03);
  border-radius: 0.25rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-sales__title {
    font-size: 1.375rem;
  }
}

.p-sales__lead {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-top: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sales__lead {
    font-size: 1rem;
  }
}

.p-sales__list {
  display: flex;
  justify-content: center;
  gap: 2.1875rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-sales__list {
    flex-direction: column;
    gap: 2.1875rem;
    margin-top: 2.5rem;
  }
}

.p-sales__item {
  width: 20.625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-sales__item {
    width: 100%;
  }
}

.p-sales__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.p-sales__card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.p-sales__card-text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-sales__card-img {
  aspect-ratio: 330/210;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-sales__card-img {
    aspect-ratio: 350/210;
  }
}

.p-sales__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-sales__card-title {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sales__card-title {
    line-height: 1;
  }
}

.p-sales__card-desc {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.p-sales__card-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  height: 3.25rem;
  border: 0.0625rem solid var(--color-pink01);
  border-radius: 0.625rem;
  background-color: transparent;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-pink01);
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-sales__card-btn-link {
    border-radius: 0.375rem;
  }
}

.p-sales__card-btn-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  transition: filter 0.3s;
}

@media (any-hover: hover) {
  .p-sales__card-btn-link:hover {
    background-color: var(--color-pink01);
    color: var(--color-white);
  }
  .p-sales__card-btn-link:hover .p-sales__card-btn-icon {
    filter: brightness(0) invert(1);
  }
}
.p-sales__cta {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-sales__cta {
    margin-top: 2.5rem;
  }
}

.p-sales__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20.625rem;
  max-width: 100%;
  height: 3.75rem;
  background-color: var(--color-pink01);
  border: 0.0625rem solid var(--color-pink01);
  border-radius: 0.625rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--color-white);
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-sales__cta-btn {
    width: 100%;
    height: 3.125rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .p-sales__cta-btn:hover {
    background-color: var(--color-white);
    color: var(--color-pink01);
  }
}
.p-residence {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-residence {
    padding-top: 3.75rem;
  }
}

.p-residence__title {
  display: flex;
  align-items: center;
  padding-block: 0.75rem;
  padding-inline: 0.75rem;
  background-color: var(--color-pink03);
  border-radius: 0.25rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-residence__title {
    font-size: 1.375rem;
  }
}

.p-residence__lead {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-top: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-residence__lead {
    font-size: 1rem;
  }
}

.p-residence__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3.75rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-residence__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-residence__item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.p-residence__item-img {
  flex-shrink: 0;
  width: 15rem;
  height: 9.5rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-residence__item-img {
    width: 9.375rem;
    height: 5.9375rem;
    border-radius: 0.375rem;
  }
}

.p-residence__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-residence__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  flex: 1;
  min-width: 0;
}

.p-residence__item-place {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-pink01);
}

.p-residence__item-reform {
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--color-text);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-residence__item-reform {
    font-size: 1rem;
  }
}

.p-residence__cta {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-residence__cta {
    margin-top: 2.5rem;
  }
}

.p-residence__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20.625rem;
  max-width: 100%;
  height: 3.75rem;
  background-color: var(--color-pink01);
  border: 0.0625rem solid var(--color-pink01);
  border-radius: 0.625rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--color-white);
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-residence__cta-btn {
    width: 100%;
    height: 3.125rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .p-residence__cta-btn:hover {
    background-color: var(--color-white);
    color: var(--color-pink01);
  }
}
.p-top-hero {
  width: 100%;
  padding-block: 1.875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero {
    padding-block: 1.25rem 6.5rem;
  }
}

.p-top-hero__visual {
  display: block;
  width: 100%;
  max-width: 85rem;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-hero__visual {
    max-width: 100%;
    border-radius: 1.875rem;
  }
}

.p-top-hero__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1360/640;
}
@media screen and (max-width: 767px) {
  .p-top-hero__visual img {
    aspect-ratio: 350/640;
  }
}

.p-top-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(247, 199, 205, 0.05) 69.14%, rgba(247, 199, 205, 0.4) 100%);
  pointer-events: none;
}

.p-top-hero__title {
  position: absolute;
  bottom: 2.5rem;
  left: calc(50% - 33.75rem);
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 0 0 1.25rem rgba(236, 109, 123, 0.6);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-hero__title {
    bottom: 1.5rem;
    left: calc(50% - 10.125rem);
    font-size: 2.25rem;
    text-shadow: 0 0 0.625rem rgba(236, 109, 123, 0.6);
  }
}

.p-philosophy {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy {
    margin-top: 3.75rem;
  }
}

/* ============ h2 ============ */
.p-philosophy__h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__h2 {
    gap: 0.625rem;
  }
}

.p-philosophy__h2-bar {
  flex-shrink: 0;
  width: 0.875rem;
  height: 4.375rem;
  background-color: var(--color-pink01);
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__h2-bar {
    width: 0.625rem;
    height: 2.5rem;
  }
}

.p-philosophy__h2-text {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-philosophy__h2-text {
    font-size: 1.625rem;
  }
}

/* ============ Block ============ */
.p-philosophy__block {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__block {
    margin-top: 2.5rem;
  }
}

.p-philosophy__block + .p-philosophy__block {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__block + .p-philosophy__block {
    margin-top: 3.75rem;
  }
}

/* ============ h3 ============ */
.p-philosophy__h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background-color: var(--color-pink03);
  border-radius: 0.25rem;
}

.p-philosophy__h3-main {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-philosophy__h3-main {
    font-size: 1.375rem;
  }
}

.p-philosophy__h3-sub {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-philosophy__h3-sub {
    font-size: 1rem;
  }
}

/* ============ Mission ============ */
.p-philosophy__mission {
  display: flex;
  gap: 4.6875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__mission {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-philosophy__concept {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.875rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-philosophy__concept {
    gap: 1.25rem;
  }
}

.p-philosophy__mission-lead {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-philosophy__mission-lead {
    font-size: 1rem;
  }
}

.p-philosophy__mission-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__mission-body {
    gap: 1rem;
  }
}

.p-philosophy__mission-body p {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-philosophy__mission-body p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.p-philosophy__logo-frame {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.5rem;
  aspect-ratio: 360/232;
  background-color: var(--color-white);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__logo-frame {
    width: 100%;
    aspect-ratio: 350/180;
  }
}

.p-philosophy__logo-img {
  display: block;
  width: 13.1875rem;
  height: 13.1875rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-philosophy__logo-img {
    width: 8.75rem;
    height: 8.75rem;
  }
}

/* ============ Card (Vision / Value 共通) ============ */
.p-philosophy__card {
  margin-top: 2.5rem;
  padding: 2.5rem;
  padding-block: 2.5rem;
  background-color: var(--color-white);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__card {
    margin-top: 1.875rem;
    padding-block: 1.875rem;
    padding-inline: 1.25rem;
  }
}

/* ============ Vision ============ */
.p-philosophy__card-head {
  width: fit-content;
  margin-inline: auto;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-philosophy__card-head {
    font-size: 1.25rem;
  }
}

.p-philosophy__badges {
  display: flex;
  justify-content: center;
  gap: 1.59375rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
  }
}

.p-philosophy__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-pink01);
  border-radius: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-philosophy__badge {
    width: 13.75rem;
  }
}

.p-philosophy__badge span {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-pink01);
}

.p-philosophy__card-foot {
  max-width: 58.5rem;
  margin-top: 0.625rem;
  margin-inline: auto;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-philosophy__card-foot {
    max-width: 100%;
    margin-top: 1.25rem;
    line-height: 1.8;
    text-align: center;
  }
}

/* ============ Value ============ */
.p-philosophy__values-container {
  margin-inline: auto;
  max-width: 52.5rem;
}

.p-philosophy__values {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__values {
    gap: 1rem;
  }
}

.p-philosophy__value-item {
  display: grid;
  grid-template-columns: 16.25rem 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-philosophy__value-item {
    display: block;
  }
}

.p-philosophy__value-item dt {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-philosophy__value-item dt {
    font-size: 1.125rem;
  }
}

.p-philosophy__value-item dd {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-philosophy__value-item dd {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

.p-information {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-information {
    margin-top: 3.75rem;
  }
}

/* ============ h2 ============ */
.p-information__h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-information__h2 {
    gap: 0.625rem;
  }
}

.p-information__h2-bar {
  flex-shrink: 0;
  width: 0.875rem;
  height: 4.375rem;
  background-color: var(--color-pink01);
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-information__h2-bar {
    width: 0.625rem;
    height: 2.5rem;
  }
}

.p-information__h2-text {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-information__h2-text {
    font-size: 1.625rem;
  }
}

/* ============ Card ============ */
.p-information__card {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background-color: var(--color-white);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-information__card {
    margin-top: 1.875rem;
    padding: 1.25rem;
  }
}

/* ============ List ============ */
.p-information__list {
  display: flex;
  flex-direction: column;
}

.p-information__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-information__item {
    gap: 0.625rem;
    align-items: flex-start;
  }
}

.p-information__item--top {
  align-items: flex-start;
}

.p-information__item dt {
  flex-shrink: 0;
  width: 5.625rem;
  padding: 0.625rem;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-information__item dt {
    width: 4.375rem;
    padding-block: 0.625rem;
    padding-inline: 0;
  }
}

.p-information__item dd {
  flex: 1;
  min-width: 0;
  padding: 0.625rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-information__item dd {
    padding-block: 0.625rem;
    padding-inline: 0;
  }
}

/* ============ Address (所在地) ============ */
.p-information__address {
  display: block;
}

.p-information__map {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.p-information__map-text {
  position: relative;
}
.p-information__map-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.p-information__map-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}
@media (any-hover: hover) {
  .p-information__map:hover .p-information__map-text::before {
    opacity: 0;
  }
  .p-information__map:hover .p-information__map-text::after {
    transform: scaleX(1);
    transition: transform 0.3s ease;
  }
}

.p-information__map-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.1875rem;
  color: currentColor;
}

/* ============ Generic Link (関連会社) ============ */
.p-information__link {
  position: relative;
  display: inline-block;
  color: var(--color-text);
}
.p-information__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.p-information__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}
@media (any-hover: hover) {
  .p-information__link:hover::before {
    opacity: 0;
  }
  .p-information__link:hover::after {
    transform: scaleX(1);
    transition: transform 0.3s ease;
  }
}

.p-top-concept {
  padding-block: 5rem 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-concept {
    padding-block: 0 5rem;
  }
}

.p-top-concept__inner {
  margin-inline: auto;
  padding-inline: var(--padding-inner);
  max-width: 47.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-concept__inner {
    max-width: 36.25rem;
  }
}

.p-top-concept__title {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-top-concept__title {
    font-size: 1.625rem;
    text-align: center;
  }
}

.p-top-concept__text {
  margin-top: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-concept__text {
    line-height: 2;
  }
}

.p-top-service {
  width: 100%;
  padding-block: 8.75rem;
  background-color: var(--color-beige02);
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-block: 5rem;
  }
}

.p-top-service__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__title {
    gap: 0.625rem;
  }
}

.p-top-service__title-en {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-pink01);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-service__title-en {
    font-size: 1rem;
  }
}

.p-top-service__title-ja {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-service__title-ja {
    font-size: 1.875rem;
  }
}

.p-top-service__list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__list {
    grid-template-columns: repeat(1, 1fr);
    column-gap: initial;
  }
}

.p-top-service__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-top-service__item + .p-top-service__item {
    margin-top: 3.75rem;
  }
}

.p-top-service__image {
  display: block;
  width: 100%;
  max-width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__image {
    max-width: 100%;
  }
}

.p-top-service__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 500/320;
  border-radius: 1.25rem;
}

.p-top-service__heading {
  margin-top: 0.625rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text);
}

.p-top-service__text {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

.p-top-service__button {
  margin-top: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-service__button {
    text-align: center;
  }
}

.p-top-service__link {
  padding: 0.8125rem 0.625rem;
  display: inline-block;
  width: 10.625rem;
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
  border-radius: 100vmax;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-top-service__link:hover {
    background-color: var(--color-white);
    color: var(--color-green);
  }
}
.p-flow-about {
  padding-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-flow-about {
    padding-top: 3.75rem;
  }
}

/* ============ h2 ============ */
.p-flow-about__h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-flow-about__h2 {
    gap: 0.625rem;
  }
}

.p-flow-about__h2-bar {
  flex-shrink: 0;
  width: 0.875rem;
  height: 4.375rem;
  background-color: var(--color-pink01);
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-flow-about__h2-bar {
    width: 0.625rem;
    height: 2.5rem;
  }
}

.p-flow-about__h2-text {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-flow-about__h2-text {
    font-size: 1.625rem;
  }
}

/* ============ Lead ============ */
.p-flow-about__lead {
  margin-top: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-flow-about__lead {
    margin-top: 1.25rem;
    line-height: 1.8;
  }
}

/* ============ Table (common cell styles) ============ */
.p-flow-about__table {
  display: grid;
  gap: 0.0625rem;
  background-color: var(--color-beige01);
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-flow-about__table {
    margin-top: 1.875rem;
  }
}

.p-flow-about__cell {
  padding: 0.625rem;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow-about__cell {
    padding-block: 0.625rem;
    padding-inline: 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-flow-about__cell--head {
  background-color: var(--color-pink02);
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow-about__cell--head {
    font-size: 0.9375rem;
  }
}

.p-flow-about__cell--multi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

/* ============ PC Table (3 列 × 4 行) ============ */
.p-flow-about__table--pc {
  grid-template-columns: 8.75rem 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-flow-about__table--pc {
    display: none;
  }
}

/* ============ SP Tables (2 列 × 4 行 × 2) ============ */
.p-flow-about__tables-sp {
  display: none;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-flow-about__tables-sp {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-flow-about__table--sp {
  grid-template-columns: 6.25rem 1fr;
  margin-top: 0;
}

/* SP: 被保険者名のヘッダー（第1号 / 第2号被保険者）のみ 16px */
@media screen and (max-width: 767px) {
  .p-flow-about__table--sp .p-flow-about__cell--head:nth-child(2) {
    font-size: 1rem;
  }
}

.p-usage {
  padding-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-usage {
    padding-top: 3.75rem;
  }
}

/* ============ h2 ============ */
.p-usage__h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-usage__h2 {
    gap: 0.625rem;
  }
}

.p-usage__h2-bar {
  flex-shrink: 0;
  width: 0.875rem;
  height: 4.375rem;
  background-color: var(--color-pink01);
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-usage__h2-bar {
    width: 0.625rem;
    height: 2.5rem;
  }
}

.p-usage__h2-text {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-usage__h2-text {
    font-size: 1.625rem;
  }
}

.p-usage__lead {
  margin-top: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-usage__lead {
    margin-top: 1.25rem;
    line-height: 1.8;
  }
}

/* ============ Flow List ============ */
.p-usage__list {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-usage__list {
    margin-top: 1.25rem;
    gap: 1.0625rem;
  }
}

.p-usage__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem;
  background-color: var(--color-beige02);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-usage__item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }
}

.p-usage__item-body {
  flex: 1;
  min-width: 0;
}

.p-usage__item-title {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--color-pink01);
  padding-left: 2.5rem;
  text-indent: -1.875rem;
}
@media screen and (max-width: 767px) {
  .p-usage__item-title {
    font-size: 1.25rem;
  }
}

.p-usage__item-desc {
  margin-top: 0.625rem;
  padding-left: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-usage__item-desc {
    padding-left: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.p-usage__item-card {
  flex-shrink: 0;
  padding: 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 24.375rem;
  min-height: 100%;
  background-color: var(--color-white);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-usage__item-card {
    width: 100%;
    padding: 0.625rem;
  }
}

.p-usage__item-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.p-usage__item-card li {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-usage__item-card li {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-usage__item-card li + li {
    margin-top: 0.21875rem;
  }
}

/* ============ Arrow ============ */
.p-usage__arrow {
  align-self: center;
  width: 5.125rem;
  height: 1.5625rem;
  color: var(--color-pink01);
}
@media screen and (max-width: 767px) {
  .p-usage__arrow {
    width: 2.1875rem;
    height: 0.9375rem;
  }
}

.p-usage__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  transform: rotate(180deg);
}

.p-image-area {
  position: relative;
  width: 100%;
  height: 18.75rem;
  margin-top: 8.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-image-area {
    margin-top: 3.75rem;
  }
}

.p-image-area__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-image-area__mask {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 237, 221, 0.8);
}
@media screen and (max-width: 767px) {
  .p-image-area__mask {
    background-color: rgba(255, 237, 221, 0.9);
  }
}

.p-image-area__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
  padding-block: 5.25rem;
  padding-inline: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-image-area__heading {
    padding-block: 3.875rem;
  }
}

.p-image-area__title {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-pink01);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-image-area__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-image-area__desc {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-pink01);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-image-area__desc {
    font-size: 0.9375rem;
  }
}

.p-faq {
  padding-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-top: 3.75rem;
  }
}

/* ============ h2 ============ */
.p-faq__h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-faq__h2 {
    gap: 0.625rem;
  }
}

.p-faq__h2-bar {
  flex-shrink: 0;
  width: 0.875rem;
  height: 4.375rem;
  background-color: var(--color-pink01);
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__h2-bar {
    width: 0.625rem;
    height: 2.5rem;
  }
}

.p-faq__h2-text {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-faq__h2-text {
    font-size: 1.625rem;
  }
}

.p-faq__lead {
  margin-top: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-faq__lead {
    margin-top: 1.25rem;
    line-height: 1.8;
  }
}

/* ============ Category ============ */
.p-faq__category {
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__category {
    padding-top: 3.75rem;
  }
}

.p-faq__category + .p-faq__category {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__category + .p-faq__category {
    padding-top: 3.75rem;
  }
}

.p-faq__category-title {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background-color: var(--color-pink03);
  border-radius: 0.25rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-faq__category-title {
    font-size: 1.375rem;
  }
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

/* ============ Item ============ */
.p-faq__item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
}

.p-faq__q {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px dashed var(--color-pink02);
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    align-items: baseline;
    font-size: 1rem;
  }
}

.p-faq__q-label {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-faq__q-label {
    font-size: 1.25rem;
  }
}

.p-faq__a {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-left: 1.875rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    padding-left: 1.5rem;
    font-size: 0.9375rem;
  }
}

.p-faq__a-text {
  line-height: 1.6;
}

.p-faq__a-list {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.p-faq__a-item {
  display: flex;
  gap: 0.25rem;
  line-height: 1.4;
}

.p-faq__a-item::before {
  content: "・";
  flex-shrink: 0;
}

.p-top-image {
  width: 100%;
}

.p-top-image__img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-news {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    margin-top: 5rem;
  }
}

.p-top-news__container {
  display: flex;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}

.p-top-news__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 10rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news__title {
    align-items: center;
    gap: 0.625rem;
    width: auto;
  }
}

.p-top-news__title-en {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-pink01);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-news__title-en {
    font-size: 1rem;
  }
}

.p-top-news__title-ja {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-top-news__title-ja {
    font-size: 1.875rem;
  }
}

.p-top-news__list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  width: 100%;
  max-width: 51.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    gap: 1.25rem;
  }
}

.p-top-news__item {
  border-radius: 0.375rem;
  overflow: hidden;
}

.p-top-news__empty {
  font-family: var(--zen-maru-font);
  font-size: 1rem;
  color: var(--color-text);
}

.p-top-news__link {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background-color: var(--color-white);
  font-family: var(--zen-maru-font);
  color: var(--color-text);
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-news__link {
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem;
  }
}

.p-top-news__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.p-top-news__date {
  width: 3.75rem;
  flex-shrink: 0;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--color-text);
}

.p-top-news__cat {
  flex-shrink: 0;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-pink01);
  white-space: nowrap;
}

.p-top-news__heading {
  flex: 1;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
}

a.p-top-news__link .p-top-news__heading {
  text-decoration: underline;
}

.p-top-news__icon {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  color: var(--color-pink01);
}

@media (any-hover: hover) {
  a.p-top-news__link:hover {
    background-color: var(--color-pink03);
  }
}
.p-top-recruit {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    margin-top: 5rem;
  }
}

.p-top-recruit__container {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 2.5rem;
  background-color: var(--color-beige02);
}
@media screen and (max-width: 767px) {
  .p-top-recruit__container {
    flex-direction: column;
    border-radius: 1.875rem;
  }
}

.p-top-recruit__image {
  width: 36.875rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__image {
    width: 100%;
  }
}

.p-top-recruit__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-top-recruit__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.125rem;
  padding-block: 8.875rem 8.8125rem;
  padding-left: 3.375rem;
  padding-right: 3.4375rem;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__body {
    align-items: center;
    gap: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-top-recruit__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__title {
    align-items: center;
    gap: 0.625rem;
  }
}

.p-top-recruit__title-en {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-pink01);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__title-en {
    font-size: 1rem;
  }
}

.p-top-recruit__title-ja {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-top-recruit__title-ja {
    font-size: 1.875rem;
  }
}

.p-top-recruit__text {
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

.p-top-recruit__text p {
  margin: 0;
}

.p-top-recruit__text p + p {
  margin-top: 1em;
}

.p-top-recruit__text a {
  font-weight: 700;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (any-hover: hover) {
  .p-top-recruit__body:has(.p-top-recruit__text a:hover) {
    background-color: var(--color-orange-light);
  }
}
.p-privacy {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    margin-top: 3.75rem;
  }
}

.p-privacy__container {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__container {
    gap: 2.5rem;
  }
}

.p-privacy__lead {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-text);
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  .p-privacy__lead {
    font-size: 1rem;
  }
}

.p-privacy__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-privacy__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.p-privacy__heading {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-text);
}

.p-privacy__body {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
  white-space: pre-wrap;
}

.p-privacy__note {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text);
}

.p-404 {
  padding-block: 11.25rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding-block: 6.25rem 0;
  }
}

.p-404__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-404__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-404__heading {
    gap: 1.25rem;
  }
}

.p-404__heading-en {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-pink01);
  text-transform: capitalize;
}

.p-404__heading-ja {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-404__heading-ja {
    font-size: 1.125rem;
    line-height: 1.6;
    white-space: normal;
  }
}

.p-404__lead {
  margin-top: 3.75rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404__lead {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.p-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20.625rem;
  max-width: 100%;
  height: 3.75rem;
  margin-top: 3.75rem;
  padding-inline: 1.25rem;
  background-color: var(--color-pink01);
  border: 0.0625rem solid var(--color-pink01);
  border-radius: 0.625rem;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--color-white);
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-404__btn {
    width: 100%;
    margin-top: 2.5rem;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
  }
}

@media (any-hover: hover) {
  .p-404__btn:hover {
    background-color: var(--color-white);
    color: var(--color-pink01);
  }
}
.p-contact {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 6.25rem;
  }
}

.p-contact__container {
  padding: 4.375rem;
  padding-block: 4.375rem;
  padding-inline: clamp(0.625rem, -4.24rem + 10.14vw, 4.375rem); /* 20 ~ 70 | 768 ~ 1360 */
  background-color: var(--color-pink03);
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__container {
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
    border-radius: 1.25rem;
  }
}

.p-contact__title {
  display: flex;
  align-items: flex-end;
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    flex-direction: column;
    align-items: center;
  }
}

.p-contact__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__heading {
    align-items: center;
    gap: 0.625rem;
  }
}

.p-contact__heading-en {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-pink01);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-contact__heading-en {
    font-size: 1rem;
  }
}

.p-contact__heading-ja {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact__heading-ja {
    font-size: 1.875rem;
  }
}

.p-contact__lead {
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    white-space: normal;
    text-align: center;
  }
}

.p-contact__buttons {
  margin-top: 1.25rem;
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__buttons {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-contact__buttons-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__buttons-group {
    gap: 1.25rem;
  }
}

.p-contact__btn {
  display: flex;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  color: var(--color-text);
  transition: background-color 0.3s ease;
}

@media (any-hover: hover) {
  .p-contact__btn--mail:hover {
    background-color: var(--color-beige02);
  }
}
.p-contact__btn--tel {
  flex: 1;
  min-width: 0;
  max-width: clamp(6.25rem, -37.652rem + 91.46vw, 34.375rem); /* 100 ~ 550 | 768 ~ 1260 */
  min-height: 17.625rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn--tel {
    gap: 1rem;
    padding-block: 1.875rem;
    padding-inline: 1.1875rem;
    max-width: 100%;
    min-height: initial;
  }
}

.p-contact__btn--fax {
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  gap: clamp(0.313rem, -1.045rem + 2.83vw, 1.5rem); /* 5 ~ 24 | 768 ~ 1440 */
  padding: 1.25rem;
  padding-block: 1.25rem;
  padding-inline: 3.875rem 1.25rem;
  min-height: 7.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn--fax {
    flex-direction: column;
    gap: 0.75rem;
    padding-block: 1.25rem;
    padding-inline: 1.1875rem;
  }
}

.p-contact__btn--mail {
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  gap: clamp(0.313rem, -1.045rem + 2.83vw, 1.5rem); /* 5 ~ 24 | 768 ~ 1440 */
  padding: 1.25rem;
  padding-block: 1.25rem;
  padding-inline: 3.875rem 1.25rem;
  min-height: 7.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn--mail {
    flex-direction: column;
    gap: 0.75rem;
    padding-block: 1.25rem;
    padding-inline: 1.1875rem;
  }
}

.p-contact__btn-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-contact__btn--fax .p-contact__btn-head,
.p-contact__btn--mail .p-contact__btn-head {
  width: 17.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn--fax .p-contact__btn-head,
  .p-contact__btn--mail .p-contact__btn-head {
    width: auto;
    justify-content: flex-start;
  }
}

.p-contact__btn-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn-icon {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.p-contact__btn-label {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1;
  color: var(--color-pink01);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact__btn-label {
    font-size: 1.25rem;
  }
}

.p-contact__btn--fax .p-contact__btn-label,
.p-contact__btn--mail .p-contact__btn-label {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn--fax .p-contact__btn-label,
  .p-contact__btn--mail .p-contact__btn-label {
    font-size: 1.125rem;
  }
}

.p-contact__btn-divider {
  display: block;
  width: 25rem;
  height: 0;
  border-top: 0.0625rem dashed var(--color-pink01);
}
@media screen and (max-width: 767px) {
  .p-contact__btn-divider {
    width: 100%;
  }
}

.p-contact__btn--fax .p-contact__btn-divider,
.p-contact__btn--mail .p-contact__btn-divider {
  width: 0;
  height: 4.375rem;
  border-top: none;
  border-left: 0.0625rem dashed var(--color-pink01);
}
@media screen and (max-width: 767px) {
  .p-contact__btn--fax .p-contact__btn-divider,
  .p-contact__btn--mail .p-contact__btn-divider {
    width: 100%;
    height: 0;
    border-top: 0.0625rem dashed var(--color-pink01);
    border-left: none;
  }
}

.p-contact__btn-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn-body {
    gap: 0.25rem;
  }
}

.p-contact__btn-tel {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact__btn-tel {
    font-size: 2.5rem;
  }
}

.p-contact__btn-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-contact__btn-info {
    gap: 0.625rem;
  }
}

.p-contact__btn-fax {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
}

.p-contact__btn-fax-number {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-text);
  white-space: nowrap;
}

.p-contact__btn-fax-link {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text);
  text-decoration: underline;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .p-contact__btn--fax:hover .p-contact__btn-fax-link {
    color: var(--color-pink01);
  }
}
.p-contact__btn-note {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.4;
  color: var(--color-text);
  white-space: nowrap;
}

.p-footer {
  padding-block: 3.75rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 5.75rem 2.5rem;
  }
}

.p-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.p-footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__left {
    width: 100%;
  }
}

.p-footer__logo {
  display: block;
  width: 11rem;
}

.p-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-footer__address {
  font-style: normal;
}

.p-footer__address-text {
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.p-footer__map-link {
  margin-top: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text);
  white-space: nowrap;
}

.p-footer__map-link-text {
  position: relative;
}
.p-footer__map-link-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.p-footer__map-link-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}
@media (any-hover: hover) {
  .p-footer__map-link:hover .p-footer__map-link-text::before {
    opacity: 0;
  }
  .p-footer__map-link:hover .p-footer__map-link-text::after {
    transform: scaleX(1);
    transition: transform 0.3s ease;
  }
}

.p-footer__map-link-icon {
  display: block;
  width: 1.125rem;
  height: 1.1875rem;
}

.p-footer__nav {
  padding-right: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
}

.p-footer__nav-link {
  position: relative;
  display: inline-block;
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
  white-space: nowrap;
}
.p-footer__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link {
    font-size: 1.125rem;
  }
}

.p-footer__nav-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-group {
    gap: 0.5rem;
  }
}

.p-footer__nav-head {
  font-family: var(--zen-maru-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-head {
    font-size: 1.125rem;
  }
}

.p-footer__nav-sub-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.p-footer__nav-sub-link {
  position: relative;
  display: inline-block;
  font-family: var(--zen-maru-font);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-text);
  white-space: nowrap;
}
.p-footer__nav-sub-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__nav-sub-link:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sub-link {
    font-size: 1rem;
  }
}

.p-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.4375rem;
  padding-top: 0.625rem;
  border-top: 0.0625rem solid var(--color-pink01);
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
  }
}

.p-footer__copy {
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 0.9375rem;
  }
}

.p-footer__policy {
  position: relative;
  display: inline-block;
  font-family: var(--zen-maru-font);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-text);
  white-space: nowrap;
}
.p-footer__policy::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.p-footer__policy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}
@media (any-hover: hover) {
  .p-footer__policy:hover::before {
    opacity: 0;
  }
  .p-footer__policy:hover::after {
    transform: scaleX(1);
    transition: transform 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__policy {
    font-size: 0.9375rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (min-width: 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

[data-fade] {
  opacity: 0;
  translate: 0 1.875rem;
  transition: opacity 0.6s ease-out, translate 0.6s ease-out;
  will-change: opacity, translate;
}

[data-fade].is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-fade] {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }
}

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