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

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

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

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

ul,
ol {
  list-style: none;
}

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

@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Thin.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Light.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Regular.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Medium.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Bold.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Black.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --p-color: #000;
  --s-color: #000;
  --section-gap-pc: 12rem;
  --section-gap-sp: 6rem;
  --padding-pc: 4rem;
  --padding-sp: 2rem;
  --z-base: 0;
  --z-float: 10;
  --z-sticky: 100;
  --z-modal: 200;
  --z-toast: 300;
  --easing: cubic-bezier(.4, .4, 0, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-weight: normal;
  background-color: #fff;
  line-height: 180%;
  letter-spacing: 0;
  min-width: 1100px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 959px) {
  body {
    min-width: auto;
  }
}

body.is-fixed {
  overflow: hidden;
}

a {
  transition: opacity 0.6s var(--easing);
}
@media (min-width: 959.11px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  height: auto;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 959px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 959px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 959px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 959px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 959px) {
  h5 {
    font-size: 1.6rem;
  }
}

[data-anime] {
  opacity: 0;
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
  will-change: opacity, transform;
}

[data-anime=fadeUp] {
  transform: translateY(30px);
}

[data-anime=fadeIn] {
  transform: none;
}

[data-anime=blur] {
  filter: blur(10px);
  transition: opacity 0.8s var(--easing), filter 0.8s var(--easing);
}

[data-anime].is-active {
  opacity: 1;
  transform: none;
  filter: none;
}

.c-inner {
  width: min(90%, 1120px);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 959px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media (max-width: 959px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-tab-only {
  display: none !important;
}
@media (min-width: 959.11px) and (max-width: 1399px) {
  .u-tab-only {
    display: block !important;
  }
}

.u-tab-sp-only {
  display: none !important;
}
@media (max-width: 1399px) {
  .u-tab-sp-only {
    display: block !important;
  }
}

.u-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.u-pd-0 {
  padding: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-mg-0 {
  margin: 0px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-pd-8 {
  padding: 8px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-mg-8 {
  margin: 8px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-pd-16 {
  padding: 16px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-mg-16 {
  margin: 16px !important;
}

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

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-pd-24 {
  padding: 24px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-mg-24 {
  margin: 24px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-pd-32 {
  padding: 32px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-mg-32 {
  margin: 32px !important;
}

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

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-pd-40 {
  padding: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-mg-40 {
  margin: 40px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-pd-48 {
  padding: 48px !important;
}

.u-pt-48 {
  padding-top: 48px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-mg-48 {
  margin: 48px !important;
}

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

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-pd-56 {
  padding: 56px !important;
}

.u-pt-56 {
  padding-top: 56px !important;
}

.u-pb-56 {
  padding-bottom: 56px !important;
}

.u-pl-56 {
  padding-left: 56px !important;
}

.u-pr-56 {
  padding-right: 56px !important;
}

.u-mg-56 {
  margin: 56px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-pd-64 {
  padding: 64px !important;
}

.u-pt-64 {
  padding-top: 64px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

.u-mg-64 {
  margin: 64px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-pd-72 {
  padding: 72px !important;
}

.u-pt-72 {
  padding-top: 72px !important;
}

.u-pb-72 {
  padding-bottom: 72px !important;
}

.u-pl-72 {
  padding-left: 72px !important;
}

.u-pr-72 {
  padding-right: 72px !important;
}

.u-mg-72 {
  margin: 72px !important;
}

.u-mt-72 {
  margin-top: 72px !important;
}

.u-mb-72 {
  margin-bottom: 72px !important;
}

.u-ml-72 {
  margin-left: 72px !important;
}

.u-mr-72 {
  margin-right: 72px !important;
}

.u-pd-80 {
  padding: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-mg-80 {
  margin: 80px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-pd-88 {
  padding: 88px !important;
}

.u-pt-88 {
  padding-top: 88px !important;
}

.u-pb-88 {
  padding-bottom: 88px !important;
}

.u-pl-88 {
  padding-left: 88px !important;
}

.u-pr-88 {
  padding-right: 88px !important;
}

.u-mg-88 {
  margin: 88px !important;
}

.u-mt-88 {
  margin-top: 88px !important;
}

.u-mb-88 {
  margin-bottom: 88px !important;
}

.u-ml-88 {
  margin-left: 88px !important;
}

.u-mr-88 {
  margin-right: 88px !important;
}

.u-pd-96 {
  padding: 96px !important;
}

.u-pt-96 {
  padding-top: 96px !important;
}

.u-pb-96 {
  padding-bottom: 96px !important;
}

.u-pl-96 {
  padding-left: 96px !important;
}

.u-pr-96 {
  padding-right: 96px !important;
}

.u-mg-96 {
  margin: 96px !important;
}

.u-mt-96 {
  margin-top: 96px !important;
}

.u-mb-96 {
  margin-bottom: 96px !important;
}

.u-ml-96 {
  margin-left: 96px !important;
}

.u-mr-96 {
  margin-right: 96px !important;
}

.u-pd-104 {
  padding: 104px !important;
}

.u-pt-104 {
  padding-top: 104px !important;
}

.u-pb-104 {
  padding-bottom: 104px !important;
}

.u-pl-104 {
  padding-left: 104px !important;
}

.u-pr-104 {
  padding-right: 104px !important;
}

.u-mg-104 {
  margin: 104px !important;
}

.u-mt-104 {
  margin-top: 104px !important;
}

.u-mb-104 {
  margin-bottom: 104px !important;
}

.u-ml-104 {
  margin-left: 104px !important;
}

.u-mr-104 {
  margin-right: 104px !important;
}

.u-pd-112 {
  padding: 112px !important;
}

.u-pt-112 {
  padding-top: 112px !important;
}

.u-pb-112 {
  padding-bottom: 112px !important;
}

.u-pl-112 {
  padding-left: 112px !important;
}

.u-pr-112 {
  padding-right: 112px !important;
}

.u-mg-112 {
  margin: 112px !important;
}

.u-mt-112 {
  margin-top: 112px !important;
}

.u-mb-112 {
  margin-bottom: 112px !important;
}

.u-ml-112 {
  margin-left: 112px !important;
}

.u-mr-112 {
  margin-right: 112px !important;
}

.u-pd-120 {
  padding: 120px !important;
}

.u-pt-120 {
  padding-top: 120px !important;
}

.u-pb-120 {
  padding-bottom: 120px !important;
}

.u-pl-120 {
  padding-left: 120px !important;
}

.u-pr-120 {
  padding-right: 120px !important;
}

.u-mg-120 {
  margin: 120px !important;
}

.u-mt-120 {
  margin-top: 120px !important;
}

.u-mb-120 {
  margin-bottom: 120px !important;
}

.u-ml-120 {
  margin-left: 120px !important;
}

.u-mr-120 {
  margin-right: 120px !important;
}

.u-pd-128 {
  padding: 128px !important;
}

.u-pt-128 {
  padding-top: 128px !important;
}

.u-pb-128 {
  padding-bottom: 128px !important;
}

.u-pl-128 {
  padding-left: 128px !important;
}

.u-pr-128 {
  padding-right: 128px !important;
}

.u-mg-128 {
  margin: 128px !important;
}

.u-mt-128 {
  margin-top: 128px !important;
}

.u-mb-128 {
  margin-bottom: 128px !important;
}

.u-ml-128 {
  margin-left: 128px !important;
}

.u-mr-128 {
  margin-right: 128px !important;
}

.u-pd-136 {
  padding: 136px !important;
}

.u-pt-136 {
  padding-top: 136px !important;
}

.u-pb-136 {
  padding-bottom: 136px !important;
}

.u-pl-136 {
  padding-left: 136px !important;
}

.u-pr-136 {
  padding-right: 136px !important;
}

.u-mg-136 {
  margin: 136px !important;
}

.u-mt-136 {
  margin-top: 136px !important;
}

.u-mb-136 {
  margin-bottom: 136px !important;
}

.u-ml-136 {
  margin-left: 136px !important;
}

.u-mr-136 {
  margin-right: 136px !important;
}

.u-pd-144 {
  padding: 144px !important;
}

.u-pt-144 {
  padding-top: 144px !important;
}

.u-pb-144 {
  padding-bottom: 144px !important;
}

.u-pl-144 {
  padding-left: 144px !important;
}

.u-pr-144 {
  padding-right: 144px !important;
}

.u-mg-144 {
  margin: 144px !important;
}

.u-mt-144 {
  margin-top: 144px !important;
}

.u-mb-144 {
  margin-bottom: 144px !important;
}

.u-ml-144 {
  margin-left: 144px !important;
}

.u-mr-144 {
  margin-right: 144px !important;
}

.u-pd-152 {
  padding: 152px !important;
}

.u-pt-152 {
  padding-top: 152px !important;
}

.u-pb-152 {
  padding-bottom: 152px !important;
}

.u-pl-152 {
  padding-left: 152px !important;
}

.u-pr-152 {
  padding-right: 152px !important;
}

.u-mg-152 {
  margin: 152px !important;
}

.u-mt-152 {
  margin-top: 152px !important;
}

.u-mb-152 {
  margin-bottom: 152px !important;
}

.u-ml-152 {
  margin-left: 152px !important;
}

.u-mr-152 {
  margin-right: 152px !important;
}

.u-pd-160 {
  padding: 160px !important;
}

.u-pt-160 {
  padding-top: 160px !important;
}

.u-pb-160 {
  padding-bottom: 160px !important;
}

.u-pl-160 {
  padding-left: 160px !important;
}

.u-pr-160 {
  padding-right: 160px !important;
}

.u-mg-160 {
  margin: 160px !important;
}

.u-mt-160 {
  margin-top: 160px !important;
}

.u-mb-160 {
  margin-bottom: 160px !important;
}

.u-ml-160 {
  margin-left: 160px !important;
}

.u-mr-160 {
  margin-right: 160px !important;
}

.u-pd-168 {
  padding: 168px !important;
}

.u-pt-168 {
  padding-top: 168px !important;
}

.u-pb-168 {
  padding-bottom: 168px !important;
}

.u-pl-168 {
  padding-left: 168px !important;
}

.u-pr-168 {
  padding-right: 168px !important;
}

.u-mg-168 {
  margin: 168px !important;
}

.u-mt-168 {
  margin-top: 168px !important;
}

.u-mb-168 {
  margin-bottom: 168px !important;
}

.u-ml-168 {
  margin-left: 168px !important;
}

.u-mr-168 {
  margin-right: 168px !important;
}

.u-pd-176 {
  padding: 176px !important;
}

.u-pt-176 {
  padding-top: 176px !important;
}

.u-pb-176 {
  padding-bottom: 176px !important;
}

.u-pl-176 {
  padding-left: 176px !important;
}

.u-pr-176 {
  padding-right: 176px !important;
}

.u-mg-176 {
  margin: 176px !important;
}

.u-mt-176 {
  margin-top: 176px !important;
}

.u-mb-176 {
  margin-bottom: 176px !important;
}

.u-ml-176 {
  margin-left: 176px !important;
}

.u-mr-176 {
  margin-right: 176px !important;
}

.u-pd-184 {
  padding: 184px !important;
}

.u-pt-184 {
  padding-top: 184px !important;
}

.u-pb-184 {
  padding-bottom: 184px !important;
}

.u-pl-184 {
  padding-left: 184px !important;
}

.u-pr-184 {
  padding-right: 184px !important;
}

.u-mg-184 {
  margin: 184px !important;
}

.u-mt-184 {
  margin-top: 184px !important;
}

.u-mb-184 {
  margin-bottom: 184px !important;
}

.u-ml-184 {
  margin-left: 184px !important;
}

.u-mr-184 {
  margin-right: 184px !important;
}

.u-pd-192 {
  padding: 192px !important;
}

.u-pt-192 {
  padding-top: 192px !important;
}

.u-pb-192 {
  padding-bottom: 192px !important;
}

.u-pl-192 {
  padding-left: 192px !important;
}

.u-pr-192 {
  padding-right: 192px !important;
}

.u-mg-192 {
  margin: 192px !important;
}

.u-mt-192 {
  margin-top: 192px !important;
}

.u-mb-192 {
  margin-bottom: 192px !important;
}

.u-ml-192 {
  margin-left: 192px !important;
}

.u-mr-192 {
  margin-right: 192px !important;
}

.u-pd-200 {
  padding: 200px !important;
}

.u-pt-200 {
  padding-top: 200px !important;
}

.u-pb-200 {
  padding-bottom: 200px !important;
}

.u-pl-200 {
  padding-left: 200px !important;
}

.u-pr-200 {
  padding-right: 200px !important;
}

.u-mg-200 {
  margin: 200px !important;
}

.u-mt-200 {
  margin-top: 200px !important;
}

.u-mb-200 {
  margin-bottom: 200px !important;
}

.u-ml-200 {
  margin-left: 200px !important;
}

.u-mr-200 {
  margin-right: 200px !important;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  transition: background-color 0.6s var(--easing);
}

.l-header__hamburger {
  display: none;
}
@media (max-width: 959px) {
  .l-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: calc(var(--z-modal) + 1);
  }
}

.l-header__hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: background-color 0.3s;
}

.l-header__hamburger__line::before,
.l-header__hamburger__line::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.l-header__hamburger__line::before {
  top: -8px;
}

.l-header__hamburger__line::after {
  bottom: -8px;
}

.l-header__hamburger.is-active .l-header__hamburger__line {
  background-color: transparent;
}

.l-header__hamburger.is-active .l-header__hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (max-width: 959px) {
  .l-header__sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
}

@media (max-width: 959px) {
  .l-header__sp-nav.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.l-lp-frame {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background-color: #d5cab8;
}
@media (max-width: 1080px) {
  .l-lp-frame {
    justify-content: flex-start;
    padding-left: 40px;
  }
}
@media (max-width: 959px) {
  .l-lp-frame {
    display: block;
    background-color: #eae1d2;
    padding-left: 0;
  }
}

.l-lp-frame__side-left {
  flex: 1;
  min-width: 0;
  position: relative;
}
@media (max-width: 1080px) {
  .l-lp-frame__side-left {
    display: none;
  }
}

.l-lp-frame__side-right {
  flex: 1;
  min-width: 0;
  position: relative;
}
@media (max-width: 959px) {
  .l-lp-frame__side-right {
    display: none;
  }
}

.l-lp-frame__center {
  width: 420px;
  min-width: 420px;
  max-width: 420px;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #eae1d2;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow-x: clip;
}
@media (max-width: 959px) {
  .l-lp-frame__center {
    width: 100%;
    min-width: auto;
    max-width: none;
    box-shadow: none;
  }
}

body.is-lp {
  min-width: auto;
  background-color: #d5cab8;
}
@media (max-width: 959px) {
  body.is-lp {
    background-color: #eae1d2;
  }
}

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

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

.p-lp-ch01 {
  position: relative;
  overflow: hidden;
}
.p-lp-ch01__bg {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 500px;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.p-lp-ch01__bg img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch01 > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch01__slider {
  padding: 0 20px;
  margin-bottom: 40px;
  position: relative;
}
.p-lp-ch01__slider .slick-list {
  overflow: visible;
  clip-path: inset(0 -100vw);
}
.p-lp-ch01__slide {
  padding: 0 5px;
}
.p-lp-ch01__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch01 .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-lp-ch01 .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.p-lp-ch01 .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.p-lp-ch01 .slick-dots li button::before {
  display: none;
}
.p-lp-ch01 .slick-dots li.slick-active button {
  background-color: rgba(0, 0, 0, 0.6);
}

.p-lp-ch02 {
  position: relative;
  overflow: hidden;
  margin-top: -20px;
}
.p-lp-ch02__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.p-lp-ch02__bg img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch02 > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch02__slider {
  padding: 0 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.p-lp-ch02__slider .slick-list {
  overflow: visible;
  clip-path: inset(0 -100vw);
}
.p-lp-ch02__slide {
  padding: 0 5px;
}
.p-lp-ch02__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch02 .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-lp-ch02 .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.p-lp-ch02 .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.p-lp-ch02 .slick-dots li button::before {
  display: none;
}
.p-lp-ch02 .slick-dots li.slick-active button {
  background-color: rgba(0, 0, 0, 0.6);
}

.p-lp-ch03 {
  position: relative;
  overflow: hidden;
  margin-top: -20px;
}
.p-lp-ch03__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.p-lp-ch03__bg img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch03 > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch03__slider {
  padding: 0 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.p-lp-ch03__slider .slick-list {
  overflow: visible;
  clip-path: inset(0 -100vw);
}
.p-lp-ch03__slide {
  padding: 0 5px;
}
.p-lp-ch03__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch03 .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-lp-ch03 .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.p-lp-ch03 .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.p-lp-ch03 .slick-dots li button::before {
  display: none;
}
.p-lp-ch03 .slick-dots li.slick-active button {
  background-color: rgba(0, 0, 0, 0.6);
}

.p-lp-ch04 {
  position: relative;
  overflow: hidden;
  margin-top: -20px;
}
.p-lp-ch04__bg {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 500px;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.p-lp-ch04__bg img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch04 > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch04__slider {
  padding: 0 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.p-lp-ch04__slider .slick-list {
  overflow: visible;
  clip-path: inset(0 -100vw);
}
.p-lp-ch04__slide {
  padding: 0 5px;
}
.p-lp-ch04__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-ch04 .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-lp-ch04 .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.p-lp-ch04 .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.p-lp-ch04 .slick-dots li button::before {
  display: none;
}
.p-lp-ch04 .slick-dots li.slick-active button {
  background-color: rgba(0, 0, 0, 0.6);
}

.p-lp-cta-wrap {
  padding-top: 40px;
}

.p-lp-cta-label {
  text-align: center;
  padding: 20px 0 0px;
}
.p-lp-cta-label img {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.p-lp-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
}
.p-lp-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-lp-pagetop:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.p-lp-hamburger {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  padding: 8px 8px 0;
  margin-bottom: -52px;
}

.p-lp-hamburger__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  background-color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.p-lp-hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: background-color 0.3s;
}

.p-lp-hamburger__line::before,
.p-lp-hamburger__line::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.p-lp-hamburger__line::before {
  top: -8px;
}

.p-lp-hamburger__line::after {
  bottom: -8px;
}

.p-lp-hamburger__btn.is-active .p-lp-hamburger__line {
  background-color: transparent;
}

.p-lp-hamburger__btn.is-active .p-lp-hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.p-lp-hamburger__btn.is-active .p-lp-hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.p-lp-hamburger__nav {
  position: absolute;
  top: 56px;
  right: 8px;
  width: auto;
  min-width: 200px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.p-lp-hamburger__nav.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-lp-hamburger__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-lp-hamburger__list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.p-lp-hamburger__list li:last-child {
  border-bottom: none;
}

.p-lp-hamburger__list li a {
  display: block;
  padding: 12px 20px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.p-lp-hamburger__list li a:hover {
  background-color: rgba(201, 22, 35, 0.08);
}

.p-lp-side-left-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 20px;
}
@media (max-width: 959px) {
  .p-lp-side-left-inner {
    display: none;
  }
}
.p-lp-side-left-inner .p-lp-nav__block {
  padding-right: clamp(40px, 8vw, 120px);
}

.p-lp-company {
  width: 100%;
  margin-bottom: 15px;
  color: #3d3528;
}
.p-lp-company p {
  margin: 0;
  line-height: 1.8;
}
.p-lp-company__name {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-lp-company__address {
  font-size: 1.2rem;
}
.p-lp-company__address a {
  color: #3d3528;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.p-lp-company__address a:hover {
  opacity: 0.7;
}
.p-lp-company__tel {
  font-size: 1.2rem;
  margin-top: 5px;
}
.p-lp-company__tel a {
  color: #3d3528;
  text-decoration: none;
}
.p-lp-company__hours {
  font-size: 1.2rem;
}

.p-lp-sns {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

.p-lp-sns__icon {
  display: block;
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}
.p-lp-sns__icon:hover {
  opacity: 0.7;
}
.p-lp-sns__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-lp-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 300px;
  margin: 0 auto;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 959px) {
  .p-lp-nav {
    display: none;
  }
}

.p-lp-nav__block {
  width: 100%;
  margin: 0 0 30px 0;
  color: #3d3528;
}

.p-lp-nav__block.--contents .p-lp-nav__link span {
  position: relative;
  padding-left: 18px;
}

.p-lp-nav__block.--contents .p-lp-nav__link span i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: color 0.3s ease;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}

.p-lp-nav__block.--contents .p-lp-nav__link.is-active span i {
  color: #c91623;
}

.p-lp-nav__md {
  text-align: left;
  color: #3d3528;
  font-size: 1.9rem;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  margin: 0 0 0 0;
}

.p-lp-nav__md span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 20px;
}

.p-lp-nav__md span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 4px;
  background-color: #c91623;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-lp-nav__link {
  border-bottom: 1px solid rgba(61, 53, 40, 0.2);
  padding: 10px 0;
}

.p-lp-nav__link.--no-border {
  border: none;
}

.p-lp-nav__link span {
  color: #3d3528;
  display: block;
}

.p-lp-nav__link small {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  margin: 3px 0 0 0;
  color: #8c7e6d;
  font-family: "din-2014", sans-serif;
}

.p-lp-nav__lineup {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 1300px) {
  .p-lp-nav__lineup {
    grid-template-columns: 1fr;
  }
}

.p-lp-nav__item {
  width: 100%;
  aspect-ratio: 4/5;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 1300px) {
  .p-lp-nav__item {
    aspect-ratio: auto;
    height: 120px;
  }
}

.p-lp-nav__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.p-lp-nav__item-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.p-lp-nav__item-inn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 90%;
  z-index: 3;
  text-align: center;
  color: #fff;
}

.p-lp-nav__item-inn h3 {
  font-size: clamp(10px, 1.2vw, 14px);
  margin: 0 0 8% 0;
  color: #fff;
}
@media (max-width: 1300px) {
  .p-lp-nav__item-inn h3 {
    font-size: 13px;
    margin: 0 0 8px 0;
  }
  .p-lp-nav__item-inn h3 br {
    display: none;
  }
}

.p-lp-nav__item-mrk {
  text-align: center;
}

.p-lp-nav__item-mrk img {
  width: 70%;
  height: auto;
  margin: auto;
}
@media (max-width: 1300px) {
  .p-lp-nav__item-mrk img {
    width: auto;
    height: 40px;
  }
}

.p-lp-nav__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.p-lp-nav__btn-group {
  margin: 0px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.p-lp-nav__btn {
  text-align: center;
  width: 100%;
  margin: 10px 0;
}

.p-lp-nav__btn span {
  display: block;
  background-color: #c91623;
  border: 1px solid #c91623;
  color: #fff;
  padding: 10px 0;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.p-lp-nav__btn span i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 959.11px) {
  .p-lp-nav__btn span:hover {
    background-color: #fff;
    color: #c91623;
  }
}
.p-lp-nav__img-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-lp-nav__img-group a:first-child {
  margin-left: -15px;
  margin-right: -15px;
}
.p-lp-nav__img-group a {
  display: block;
  transition: opacity 0.3s ease;
}
.p-lp-nav__img-group a:hover {
  opacity: 0.7;
}
.p-lp-nav__img-group img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.p-lp-copyright {
  position: fixed;
  bottom: 15px;
  right: 15px;
  font-size: 1.3rem;
  margin: 0;
}
@media (max-width: 959px) {
  .p-lp-copyright {
    display: none;
  }
}

.p-lp-global-logo {
  margin-bottom: 20px;
}
@media (max-width: 959px) {
  .p-lp-global-logo {
    display: none;
  }
}

.p-lp-global-logo img {
  width: 250px;
  height: auto;
}

.p-lp-gallery {
  background-color: #1a5eb1;
  padding: 60px 20px;
}
@media (max-width: 959px) {
  .p-lp-gallery {
    padding: 40px 16px;
  }
}
.p-lp-gallery__title {
  text-align: center;
}
.p-lp-gallery__title img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.p-lp-gallery__item {
  margin-top: 30px;
}
.p-lp-gallery__item + .p-lp-gallery__item {
  margin-top: 40px;
}
.p-lp-gallery__slider {
  position: relative;
}
.p-lp-gallery__slider .slick-list {
  overflow: visible;
  clip-path: inset(0 -100vw);
}
.p-lp-gallery__slide {
  padding: 0 5px;
}
.p-lp-gallery__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-gallery .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-lp-gallery .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.p-lp-gallery .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.p-lp-gallery .slick-dots li button::before {
  display: none;
}
.p-lp-gallery .slick-dots li.slick-active button {
  background-color: rgba(255, 255, 255, 0.9);
}
.p-lp-gallery__info {
  margin-top: 20px;
  text-align: center;
}
.p-lp-gallery__location {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-lp-gallery__name {
  color: #f5d93a;
  font-size: 25px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.p-lp-gallery__btn {
  display: inline-block;
  font-size: 17px;
  margin-top: 12px;
  padding: 4px 12px 2px;
  color: #1a5eb1;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid #1a5eb1;
  background-color: #fff;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-lp-gallery__btn:hover {
  opacity: 0.7;
}
.p-lp-gallery__btn i {
  font-size: 20px;
}

.p-lp-footer {
  text-align: center;
  padding: 30px 20px 20px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}
.p-lp-footer__logo img {
  width: 60%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 20px;
}
.p-lp-footer__company {
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.p-lp-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.p-lp-footer__sns a {
  display: block;
  width: 36px;
  height: 36px;
}
.p-lp-footer__sns a img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lp-footer__address {
  margin-top: 14px;
  letter-spacing: 0.03em;
}
.p-lp-footer__tel {
  margin-top: 4px;
}
.p-lp-footer__tel a {
  color: inherit;
  text-decoration: none;
}
.p-lp-footer__hours {
  margin-top: 2px;
}
.p-lp-footer__copyright {
  font-size: 15px;
  margin-top: 10px;
}
