@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]) {
  -webkit-text-decoration-skip: ink;
          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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
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;
  }
}

html {
  scrollbar-gutter: stable;
  scroll-padding-top: var(--scroll-offset);
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: var(--color-black);
  /* 収まらない場合に折り返す */
  word-break: normal;
  overflow-wrap: anywhere;
  text-rendering: optimizespeed;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
}

html:has(body.is-fixed),
body.is-fixed {
  overflow: hidden;
}

main {
  flex: 1;
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  transition: opacity 0.3s;
}

img,
svg {
  vertical-align: middle;
}

:where(:-moz-any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  color: inherit;
}

address,
em {
  font-style: normal;
}

:root {
  /* inner */
  --inner: min(1200px, 100%);
  --inner-sp: min(600px, 100%);
  --padding-inner: 25px;
  --padding-inner-sp: 20px;
  --sub-main-space-block: 120px;
  --sub-main-space-block-sp: 80px;
  /* z-index */
  --z-index-header: 1001;
  --z-index-hamburger: 999;
  --z-index-drawer: 900;
  --z-index-pagetop: 800;
  /* font-family */
  --base-font-family: "Zen Maru Gothic", sans-serif;
  --secondary-font-family: "Noto Sans JP", sans-serif;
  --en-font-family: "Comfortaa", sans-serif;
  /* font-weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* color */
  --color-black: #333;
  --color-white: #FFF;
  --color-blue: #82C5FF;
  --color-blue2: #5896CB;
  --color-blue-light: #D9EEFF;
  --color-orange: #FF902F;
  --color-access-bg: #FFFBE9;
  --color-contact-button-bg: #A7D3FF;
  --color-header-bg: #F5F5F5;
  --color-contact-bg: #F2F9FF;
  --color-footer-bg: #D5EBFF;
  --color-gradation: 17, 17, 17;
  --color-header-bg-rgb: 255, 255, 255;
  /* header height */
  --header-height: 90px;
  /* fixed header actual offset (JS may override) */
  --scroll-offset: 0px;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 80px;
    --scroll-offset: var(--header-height);
  }
}
:root {
  /* transition */
  --duration: 0.3s;
  /* easing */
  --ease-base: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-soft: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-strong: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-aggressive: cubic-bezier(0.77, 0, 0.175, 1);
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}
@media screen and (max-width: 767px) {
  .l-header {
    position: static;
  }
}

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

.l-main {
  margin-block-start: 0;
}

.l-sub-inner {
  max-width: 57.5rem;
  margin-inline: auto;
}

.l-sub-main {
  padding-block: var(--sub-main-space-block);
}
@media screen and (max-width: 767px) {
  .l-sub-main {
    padding-block: var(--sub-main-space-block-sp);
  }
}

.c-contact-fixed-button {
  position: fixed;
  right: 2.5rem;
  top: 1.875rem;
  z-index: var(--z-index-pagetop);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.25rem 0.875rem rgba(51, 51, 51, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity var(--duration) var(--ease-base), visibility var(--duration) var(--ease-base), transform var(--duration) var(--ease-base), background-color var(--duration) var(--ease-base);
}
@media screen and (max-width: 767px) {
  .c-contact-fixed-button {
    display: none;
  }
}

.c-contact-fixed-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.c-contact-fixed-button__icon {
  width: 3.125rem;
  aspect-ratio: 44/34;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (any-hover: hover) {
  .c-contact-fixed-button:hover {
    background-color: rgba(255, 248, 193, 0.8);
    opacity: 1;
  }
}
.c-page-top-button {
  position: fixed;
  right: 2.5rem;
  bottom: 5rem;
  z-index: var(--z-index-pagetop);
  max-width: 7.1875rem;
  width: 100%;
  cursor: pointer;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-base), visibility var(--duration) var(--ease-base), transform var(--duration) var(--ease-base);
  transform-origin: center bottom;
}
@media screen and (max-width: 767px) {
  .c-page-top-button {
    max-width: 5rem;
    right: 1rem;
    bottom: 1rem;
  }
}

.c-page-top-button img {
  width: 100%;
  height: auto;
  aspect-ratio: 115/146;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-page-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (any-hover: hover) {
  .c-page-top-button.is-visible:hover {
    animation: page-top-button-bounce 0.6s var(--ease-soft);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-page-top-button.is-visible:hover {
    animation: none;
  }
}
@keyframes page-top-button-bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-0.625rem) scale(1.05);
  }
  55% {
    transform: translateY(0) scale(0.97);
  }
  75% {
    transform: translateY(-0.25rem) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.p-access {
  padding-block: 3.125rem 6.25rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-block: 2.1875rem 4.375rem;
  }
}

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

.p-access__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.p-access__title-icon {
  width: 1.875rem;
  aspect-ratio: 30/29;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-access__title-icon {
    max-width: 1.25rem;
  }
}

.p-access__title {
  font-family: var(--en-font-family);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    font-size: 1.5rem;
  }
}

.p-access__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.875rem;
  width: 100%;
  max-width: 52.5rem;
}
@media screen and (max-width: 767px) {
  .p-access__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 26.25rem;
  }
}

.p-access__card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.875rem 1.25rem;
  border-radius: 0.625rem;
  background-color: var(--color-access-bg);
  opacity: 0;
  transition: opacity 1s var(--ease-soft);
}
@media screen and (max-width: 767px) {
  .p-access__card {
    padding: 1.5rem 1rem;
  }
}

.p-access__card.is-visible {
  opacity: 1;
}

.p-access__card:nth-child(2) {
  transition-delay: 0.4s;
}

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

.p-access__card-icon {
  width: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-access__card-icon--home {
  aspect-ratio: 1/1;
}

.p-access__card-icon--parking {
  aspect-ratio: 30/24;
}

.p-access__card-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access__card-title {
    font-size: 1rem;
  }
}

.p-access__note {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  align-items: start;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access__note {
    font-size: 0.875rem;
  }
}

.p-access__note-marker {
  margin-top: 0.0625rem;
}

@media (prefers-reduced-motion: reduce) {
  .p-access__card {
    opacity: 1;
    transition: none;
  }
}
.p-concept {
  padding-block: 6.25rem 3.125rem;
  background-color: var(--color-white);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-concept {
    padding-block: 4.375rem 2.1875rem;
  }
}

.p-concept__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-concept__inner {
    gap: 2rem;
  }
}

.p-concept__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.p-concept__title-icon {
  width: 1.875rem;
  aspect-ratio: 30/29;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-concept__title {
  font-family: var(--en-font-family);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-concept__title {
    font-size: 1.5rem;
  }
}

.p-concept__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 1.2s var(--ease-soft), transform 1.2s var(--ease-soft);
}
@media screen and (max-width: 767px) {
  .p-concept__body {
    width: 100%;
    max-width: 21.875rem;
    font-size: 0.875rem;
    text-align: left;
    align-items: flex-start;
  }
}

.p-concept__body.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.p-concept__decor {
  position: absolute;
  pointer-events: none;
}

.p-concept__decor--left {
  left: 13%;
  bottom: 0.75rem;
  width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept__decor--left {
    display: none;
  }
}

.p-concept__decor--right {
  top: -4.5625rem;
  right: 6.25rem;
  width: 9.1875rem;
}
@media screen and (max-width: 767px) {
  .p-concept__decor--right {
    top: -5rem;
    right: 0;
    width: 4.375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-concept__body {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.p-contact {
  position: relative;
  isolation: isolate;
  padding-block: 6.25rem;
  background: url("../images/common/contact-bg.jpg") no-repeat center/cover;
}
.p-contact::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: rgb(222, 239, 255);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 4.375rem;
    background: url("../images/common/contact-bg-sp.jpg") no-repeat 15% center/cover;
  }
}

.p-contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    gap: 2rem;
  }
}

.p-contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.p-contact__title-icon {
  width: 1.875rem;
  aspect-ratio: 30/29;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-contact__title-icon {
    max-width: 1.25rem;
  }
}

.p-contact__title {
  font-family: var(--en-font-family);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 1.5rem;
  }
}

.p-contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 52.5rem;
}

.p-contact__message {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-contact__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.25rem 1.875rem;
  border-radius: 1.875rem;
  box-shadow: 0 0.25rem 0.875rem rgba(51, 51, 51, 0.25);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  transition: background-color var(--duration) var(--ease-base);
}

.p-contact__contact-icon {
  width: 2rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-contact__contact-link {
  background-color: rgba(167, 211, 255, 0.8);
}

@media (any-hover: hover) {
  .p-contact__contact-link:hover {
    background-color: rgba(255, 248, 193, 0.8);
    opacity: 1;
  }
  .p-contact__secondary-link:hover {
    border-color: #C1E2FE;
    opacity: 1;
  }
}
.p-contact__links {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  width: 100%;
  margin-top: 3.75rem;
}

.p-contact__secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
  gap: 0.875rem;
  padding: 1.25rem;
  border: 0.125rem solid transparent;
  border-radius: 0.625rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.25rem 0.875rem rgba(51, 51, 51, 0.25);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: border-color var(--duration) var(--ease-base);
}
@media screen and (max-width: 767px) {
  .p-contact__secondary-link {
    padding: 1rem;
  }
}

.p-contact__secondary-icon {
  width: 2rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-contact__contact-link,
  .p-contact__links {
    width: 100%;
    max-width: 22.5rem;
  }
}

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

@media screen and (max-width: 767px) {
  .p-contact__secondary-link {
    width: 100%;
    max-width: 15.625rem;
    min-width: 0;
  }
}

.p-footer {
  padding-block: 3.75rem;
  background-color: var(--color-footer-bg);
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 1.875rem;
  }
}

.p-footer__copyright {
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-header {
  width: 17.5rem;
  height: 100svh;
  background-color: rgba(255, 255, 255, 0.8);
  animation: header-slide-in 1.4s var(--ease-soft) both;
}
@media screen and (max-width: 767px) {
  .p-header {
    position: fixed;
    z-index: var(--z-index-header);
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    animation: none;
    transition: background-color var(--duration) var(--ease-base);
  }
}

@media screen and (max-width: 767px) {
  .p-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

@media screen and (max-width: 767px) {
  .p-header.is-drawer-open {
    background-color: transparent;
  }
}

.p-header__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding: 4rem 2.5rem 2.5rem;
  overflow: hidden;
}
.p-header__inner::before, .p-header__inner::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.2;
  pointer-events: none;
}
.p-header__inner::before {
  bottom: 9.5rem;
  left: -3.625rem;
  width: 8.25rem;
  height: 8.25rem;
}
.p-header__inner::after {
  bottom: -2.75rem;
  left: 5rem;
  width: 11.25rem;
  height: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0.625rem 1.25rem;
    transition: padding var(--duration) var(--ease-base);
  }
  .p-header__inner::before, .p-header__inner::after {
    display: none;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: auto;
    height: calc(var(--header-height) - 1.25rem);
    max-width: none;
    transition: height var(--duration) var(--ease-base);
    z-index: 2;
  }
}

.p-header__logo a {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    height: inherit;
  }
}

.p-header__logo img {
  width: 100%;
  aspect-ratio: 200/151;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    width: auto;
    height: 100%;
  }
}

.p-header__nav {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  flex-direction: column;
}

.p-header__nav-item {
  text-align: center;
}

.p-header__nav-item > a {
  display: inline-block;
  font-family: var(--en-font-family);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-black);
  transition: color var(--duration) var(--ease-base), opacity var(--duration) var(--ease-base);
  padding: 0.9375rem 0;
}

.p-header__nav-item > a:hover {
  color: var(--color-blue2);
  opacity: 1;
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.375rem;
    width: 1.875rem;
    height: 1.875rem;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger span {
    width: 100%;
    height: 0.0625rem;
    background-color: var(--color-black);
    transition: rotate var(--duration) var(--ease-base), translate var(--duration) var(--ease-base), opacity var(--duration) var(--ease-base);
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-open span:nth-of-type(1) {
    rotate: 45deg;
    translate: 0 0.375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-open span:nth-of-type(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-open span:nth-of-type(3) {
    rotate: -45deg;
    translate: 0 -0.5rem;
  }
}

.p-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background-color: rgba(255, 255, 255, 0.8);
    overflow-y: auto;
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-header__drawer-inner {
    padding: 6.25rem 1.25rem;
  }
}

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

@media screen and (max-width: 767px) {
  .p-header__drawer-link {
    display: inline-block;
    font-family: var(--en-font-family);
    font-size: 1rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--color-black);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-header {
    animation: none;
  }
}
@keyframes header-slide-in {
  from {
    opacity: 0;
    transform: translateX(-2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-menu {
  padding-block: 6.25rem;
  background-color: #FFFBE9;
}
@media screen and (max-width: 767px) {
  .p-menu {
    padding-block: 4.375rem;
  }
}

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

.p-menu__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.p-menu__title-icon {
  width: 1.875rem;
  aspect-ratio: 30/29;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-menu__title-icon {
    max-width: 1.25rem;
  }
}

.p-menu__title {
  font-family: var(--en-font-family);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-menu__title {
    font-size: 1.5rem;
  }
}

.p-menu__body {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 1.25rem;
  padding: 3.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-menu__body {
    gap: 2.5rem;
    padding: 1.875rem 1rem;
  }
}

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

.p-menu__group-title {
  color: var(--color-orange);
  padding-bottom: 0.625rem;
  border-bottom: 0.0625rem solid #FFD8B5;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-menu__group-title {
    font-size: 1rem;
  }
}

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

.p-menu__item {
  display: grid;
  grid-template-columns: minmax(8.375rem, max-content) max-content;
  justify-content: flex-start;
  -moz-column-gap: 6.25rem;
       column-gap: 6.25rem;
  align-items: center;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-menu__item {
    grid-template-columns: minmax(0, 1fr) max-content;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-menu__item-name {
  min-width: 0;
}

.p-menu__item-price {
  margin-left: 0;
}

.p-menu__description {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-menu__description {
    font-size: 0.875rem;
  }
}

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

.p-menu__note {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-menu__note {
    font-size: 0.875rem;
  }
}

.p-menu__attention {
  border: 0.125rem solid #FFD8B5;
  border-radius: 0.625rem;
  padding: 1.875rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-menu__attention {
    padding: 1.875rem 1rem;
    gap: 1.5rem;
  }
}

.p-menu__attention-head {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.p-menu__attention-icon {
  width: 1.25rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-menu__attention-title {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-menu__attention-title {
    font-size: 1rem;
  }
}

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

.p-menu__attention-item {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-menu__attention-item {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}

.p-menu__attention-marker,
.p-menu__attention-text {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-menu__attention-marker,
  .p-menu__attention-text {
    font-size: 0.875rem;
  }
}

.p-mv {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.p-mv__image-wrap {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  animation: mv-fade-in 1.8s var(--ease-soft) both;
}

.p-mv__image {
  width: 100%;
  height: 100vh;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .p-mv__image-wrap {
    animation: none;
  }
}
@keyframes mv-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-profile {
  padding-block: 6.25rem 3.125rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-profile {
    padding-block: 4.375rem 2.1875rem;
  }
}

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

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

.p-profile__title-icon {
  width: 1.25rem;
  aspect-ratio: 20/21;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-profile__title {
  font-family: var(--en-font-family);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-profile__title {
    font-size: 1.5rem;
  }
}

.p-profile__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-profile__content {
    flex-direction: column;
    gap: 3.125rem;
    max-width: 26.25rem;
  }
}

.p-profile__image-wrap {
  position: relative;
  flex: 0 1 18.75rem;
  width: 100%;
  max-width: 18.75rem;
  opacity: 0;
  transition: opacity 1.2s var(--ease-soft);
}
@media screen and (max-width: 767px) {
  .p-profile__image-wrap {
    margin-inline: auto;
  }
}

.p-profile__image-wrap.is-visible {
  opacity: 1;
}

.p-profile__image {
  width: 100%;
}

.p-profile__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  aspect-ratio: 3/4;
}
@media screen and (max-width: 767px) {
  .p-profile__image img {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
}

.p-profile__image-icon {
  position: absolute;
  left: -2.1875rem;
  bottom: -2.5rem;
  width: 3.9375rem;
  aspect-ratio: 63/98;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  transform-origin: center bottom;
  animation: profile-flower-sway 4.8s var(--ease-soft) infinite;
}
@media screen and (max-width: 767px) {
  .p-profile__image-icon {
    width: 2.5rem;
    left: 0;
    bottom: -2.25rem;
  }
}

.p-profile__body {
  display: flex;
  flex-direction: column;
  flex: 0 1 31.25rem;
  gap: 1.875rem;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-profile__body {
    gap: 1.5rem;
  }
}

.p-profile__name-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.p-profile__name-wrap img {
  transform-origin: center bottom;
  animation: profile-flower-sway 4.8s var(--ease-soft) infinite;
}

.p-profile__name-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-profile__name-ja {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-profile__name-ja {
    font-size: 1.25rem;
  }
}

.p-profile__name-en {
  display: flex;
  gap: 0.625rem;
  padding-inline: 0.375rem;
  font-family: var(--en-font-family);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-profile__name-en {
    font-size: 0.75rem;
    padding-left: 0;
  }
}

.p-profile__message {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-profile__message {
    font-size: 0.875rem;
  }
}

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

.p-profile__qualification-title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-profile__qualification-title {
    font-size: 1rem;
  }
}

.p-profile__qualification-text {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-profile__qualification-text {
    font-size: 0.9375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-profile__image-wrap {
    opacity: 1;
    transition: none;
  }
  .p-profile__name-wrap img {
    animation: none;
  }
  .p-profile__image-icon {
    animation: none;
  }
}
@keyframes profile-flower-sway {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.p-works {
  padding-block: 3.125rem 6.25rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-works {
    padding-block: 2.1875rem 4.375rem;
  }
}

.p-works__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-works__inner {
    gap: 2rem;
  }
}

.p-works__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.p-works__title-icon {
  width: 1.875rem;
  aspect-ratio: 30/29;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-works__title-icon {
    max-width: 1.25rem;
  }
}

.p-works__title {
  font-family: var(--en-font-family);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-works__title {
    font-size: 1.5rem;
  }
}

.p-works__slider {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-works__slider {
    width: 100%;
    margin-inline: 0;
  }
}

.p-works__slide {
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-works__slide {
    width: 13.75rem;
  }
}

.p-works__slide img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-works__slide img {
    width: 100%;
    aspect-ratio: 3/2;
  }
}

.p-works__slider .splide__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.p-works__slider .splide__pagination__page {
  width: 0.9375rem;
  min-width: 0.9375rem;
  height: 0.9375rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: var(--color-blue-light);
  -webkit-mask-image: url("../images/common/slide-dot.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../images/common/slide-dot.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  opacity: 1;
  transition: background-color var(--duration) var(--ease-base);
}

.p-works__slider .splide__pagination__page.is-active {
  transform: none;
  background-color: var(--color-blue);
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
