@charset "UTF-8";
*,
*::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: #fff;
}
@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: #fff;
    padding-left: 0;
  }
}

.l-lp-frame__side-left {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  justify-content: flex-start; /* ブラウザ左端に寄せる */
  padding: 20px;
}
@media (max-width: 1080px) {
  .l-lp-frame__side-left {
    display: none;
  }
}

.l-lp-frame__side-right {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  justify-content: flex-end; /* ブラウザ右端に寄せる */
  padding: 20px;
}
@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: #fff;
  box-shadow: none;
  position: relative;
}
@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: #fff;
}
@media (max-width: 959px) {
  body.is-lp {
    background-color: #fff;
  }
}

/* ==========================================================================
   Project: Left Side Card (左サイドバー用カード)
   ========================================================================== */
.p-side-card {
  position: sticky;
  top: 20px;
  width: 100%;
  height: calc(100vh - 40px);
  height: calc(100dvh - 40px); /* dvhを併記してブラウザ下部に厳密にフィットさせる */
  background-color: #EF7800; /* カンプ指定のオレンジ背景 */
  border-radius: 5px;
  padding: 40px 30px 30px; /* 縦幅に収めるためパディングを調整 */
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.p-side-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-side-card__logo {
  width: 80%;
  margin: auto auto;
  line-height: 1;
}

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

.p-side-card__footer {
  margin-top: auto;
}

.p-side-card__partner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.p-side-card__partner-logo {
  line-height: 1;
}

.p-side-card__partner-logo.--takahashi {
  width: 225px;
}

.p-side-card__partner-logo.--lixil {
  width: 155px;
}

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

.p-side-card__info {
  margin-bottom: 20px;
}

.p-side-card__info-row {
  display: flex;
  align-items: flex-start;
  line-height: 1.78;
}

.p-side-card__info-dt {
  width: 75px; /* 改行防止のため幅を拡張 */
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0; /* ラベルの不要な改行を防止 */
  white-space: nowrap; /* 強制改行防止 */
}

.p-side-card__info-dd {
  margin-left: 8px; /* 開始位置（83px）を維持するため調整 */
  font-size: 1.4rem;
}

.p-side-card__address {
  font-size: 1.3rem;
  line-height: 1.54;
  margin-bottom: 20px;
}

.p-side-card__map-link {
  color: #fff;
  text-decoration: none;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.p-side-card__map-icon {
  font-size: 1.2em;
}

.p-side-card__sns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.p-side-card__sns-item {
  line-height: 1;
}

.p-side-card__sns-link {
  display: block;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 959.11px) {
  .p-side-card__sns-link:hover {
    opacity: 0.7;
  }
}

.p-side-card__sns-img {
  width: 30px;
  height: 30px;
  display: block;
}

/* ==========================================================================
   Project: Right Side Card (右サイドバー用追加スタイル)
   ========================================================================== */
.p-side-card.--right {
  padding: 20px 20px 20px 11rem;
}

.p-side-card__body {
  margin-top: auto;
  margin-bottom: auto;
}

.p-side-card__links-group {
  margin-bottom: 27px; /* バナー画像との間隔 */
}

.p-side-card__links-title {
  position: relative;
  font-family: "Gen Interface JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.p-side-card__links-line {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  flex-shrink: 0;
}

.p-side-card__link-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-side-card__link-item {
  list-style: none;
}

.p-side-card__link {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 959.11px) {
  .p-side-card__link:hover {
    opacity: 0.7;
  }
}

.p-side-card__link-en {
  font-family: "Gen Interface JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.5;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 7px;
}

.p-side-card__link-ja {
  font-family: "Gen Interface JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.p-side-card__banner {
  width: 250px;
}

.p-side-card__banner-link {
  display: block;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 959.11px) {
  .p-side-card__banner-link:hover {
    opacity: 0.7;
  }
}

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

/* コピーライト */
.p-side-card__footer.--right {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
}

.p-side-card__copyright {
  font-size: 1.5rem;
  text-align: right;
  line-height: 1.5;
}

.p-fv {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding-bottom: 20px;
}

.p-fv__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 959px) {
  .p-fv__header {
    padding-top: 5px;
    padding-left: 0;
    padding-right: revert-layer;
  }
}

.p-fv__logo {
  width: 157px;
}

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

.p-fv__header-txt {
  font-size: 1.3rem;
  line-height: 1.54;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #000;
  padding-right: 20px;
  text-align: left;
}

.p-fv__body {
  position: relative;
  width: 100%;
}

.p-fv__period {
  position: absolute;
  left: 12.33%;
  top: 69.36%;
  width: 75.33%;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  z-index: 5;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 9px;
}

.p-fv__main-visual {
  width: 100%;
}

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

.p-fv__chara-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}

.p-fv__chara {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 45%;
}

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

.p-fv__badge-speed {
  position: absolute;
  left: 3.29%;
  top: 82.06%;
  width: 30.8%;
  animation: fv-float-speed 3s ease-in-out infinite;
}

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

.p-fv__badge-support {
  position: absolute;
  left: 68.18%;
  top: 76.38%;
  width: 29.28%;
  animation: fv-float-support 3.3s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes fv-float-speed {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes fv-float-support {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.p-floating-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 10px 10px;
  z-index: var(--z-sticky, 100);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1080px) {
  .p-floating-footer {
    left: 40px;
    transform: none;
  }
}
@media (max-width: 959px) {
  .p-floating-footer {
    left: 0;
    width: 100%;
    max-width: none;
    transform: none;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  }
}

.p-floating-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  position: relative;
}

.p-floating-footer__item {
  flex: 1;
  position: relative;
  display: flex;
}

.p-floating-footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media (min-width: 959.11px) {
  .p-floating-footer__btn:hover {
    opacity: 0.8;
  }
}

.p-floating-footer__item.--inquiry .p-floating-footer__btn {
  background-color: #EF7800;
}

.p-floating-footer__item.--tel .p-floating-footer__btn {
  background-color: #EF7800;
}

.p-floating-footer__item.--line .p-floating-footer__btn {
  background-color: #06C755;
}

.p-floating-footer__btn-txt {
  font-size: 1.5rem;
  font-family: "Gen Interface JP", sans-serif;
  color: #fff;
  line-height: 1.2;
}

.p-floating-footer__badge {
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%) translateY(4px);
  background-color: #fff;
  color: #06C755;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Gen Interface JP", sans-serif;
  padding: 0px 8px;
  list-style: 1;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  pointer-events: none;
  animation: badgeFloat 2.4s ease-in-out infinite;
}
.p-floating-footer__badge::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 5px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(4px);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}
.p-cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 224px;
  width: 100%;
  margin-top: 0px;
}

.p-cta__link {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}
@media (min-width: 959.11px) {
  .p-cta__link:hover {
    opacity: 0.85;
  }
}

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

.p-reason {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
  padding: 0 20px;
}

.p-reason__bubble {
  width: 100%;
}

.p-reason__bubble img {
  width: 100%;
  height: auto;
}

.p-reason__achievement {
  margin-top: 20px;
}

.p-reason__area {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.p-reason__count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 4px;
}

.p-reason__num {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.p-reason__cards {
  margin-top: 16px;
  width: 100%;
}

.p-reason__cards img {
  width: 100%;
  height: auto;
}

.p-subsidy {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
  margin-top: 30px;
}
@media (max-width: 959px) {
  .p-subsidy {
    padding: 0 20px;
  }
}

.p-subsidy__logo {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: -80px;
}

.p-subsidy__logo-img {
  width: 117px;
  height: auto;
}

.p-subsidy__intro {
  background-color: #E4FAED;
  border-radius: 6px;
  padding: 100px 20px 30px;
  text-align: center;
}

.p-subsidy__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  color: #09C340;
  line-height: 35px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.p-subsidy__lead {
  font-size: 1.6rem;
  line-height: 28px;
  letter-spacing: 0.03em;
  text-align: left;
}

.p-subsidy__card {
  margin-top: 20px;
}

.p-subsidy__card-header {
  background-color: #09C340;
  border-radius: 6px 6px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.p-subsidy__card-body {
  padding: 20px 10px 10px;
}
@media (max-width: 959px) {
  .p-subsidy__card-body {
    padding: 20px 0 10px;
  }
}

.p-subsidy__conditions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-subsidy__conditions-row {
  display: flex;
  gap: 10px;
}

.p-subsidy__conditions-dt {
  font-size: 1.6rem;
  line-height: 28px;
  flex-shrink: 0;
  width: 110px;
}

.p-subsidy__conditions-dd {
  font-size: 1.6rem;
  line-height: 28px;
}

.p-subsidy__usage {
  margin-top: 20px;
}

.p-subsidy__usage-ttl {
  font-size: 1.6rem;
  font-weight: 600;
  color: #09C340;
  text-align: center;
  padding: 10px 0;
  position: relative;
}

.p-subsidy__usage-ttl::before,
.p-subsidy__usage-ttl::after {
  content: "";
  display: block;
  width: 118px;
  height: 1px;
  background-color: #09C340;
  margin: 0 auto;
}

.p-subsidy__usage-ttl::before {
  margin-bottom: 10px;
}

.p-subsidy__usage-ttl::after {
  margin-top: 10px;
}

.p-subsidy__usage-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-subsidy__usage-item {
  font-size: 1.6rem;
  line-height: 28px;
  letter-spacing: 0.03em;
  padding-left: 1.2em;
  position: relative;
}

.p-subsidy__usage-item::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-subsidy__note {
  font-size: 1.3rem;
  line-height: 22px;
  letter-spacing: 0.03em;
  color: #7B7B7B;
  margin-top: 16px;
}
@media (max-width: 959px) {
  .p-subsidy__note {
    text-indent: -1em;
    padding-left: 1em;
  }
}

.p-reform {
  background-color: #EF7800;
  padding-top: 0;
  padding-bottom: 40px;
  position: relative;
  overflow: visible;
  contain-intrinsic-size: auto 700px;
}

.p-reform__chara {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.p-reform__chara-img {
  width: 113px;
  height: auto;
  margin-top: -20px;
}

.p-reform__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 18px;
  margin-bottom: 20px;
}

/* スライダー */
.p-reform__slider {
  overflow: hidden;
  padding-left: 10px;
  padding-bottom: 40px;
}

.p-reform__slide {
  padding: 0 10px;
}

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

.p-reform__slide-body {
  padding-top: 14px;
}

.p-reform__slide-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 959px) {
  .p-reform__slide-name {
    font-size: 1.6rem;
    letter-spacing: 0;
    gap: 5px;
  }
}

.p-reform__slide-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .p-reform__slide-badge {
    padding: 0 5px;
    font-size: 1rem;
  }
}

.p-reform__slide-years {
  font-size: 1.3rem;
  color: #fff;
}
@media (max-width: 959px) {
  .p-reform__slide-years {
    font-size: 1.11rem;
  }
}

.p-reform__slide-desc {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 6px;
}
@media (max-width: 959px) {
  .p-reform__slide-desc {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* Slick ドットカスタマイズ */
.p-reform__slider .slick-dots {
  bottom: 0;
}

.p-reform__slider .slick-dots li {
  margin: 0 2px;
}

.p-reform__slider .slick-dots li button::before {
  font-size: 18px;
  color: #fff;
  opacity: 0.5;
}

.p-reform__slider .slick-dots li.slick-active button::before {
  color: #fff;
  opacity: 1;
}

.p-shop {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}
@media (max-width: 959px) {
  .p-shop {
    padding: 60px 15px 40px;
  }
}

.p-shop__ttl {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.p-shop__sub-ttl {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

/* スライダー */
.p-shop__slider {
  margin-top: 20px;
  position: relative;
}

.p-shop__slide {
  padding: 0 6px;
}

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

/* キャラクター */
.p-shop__chara-row {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  left: 0;
  top: -120px;
}

.p-shop__chara-img {
  width: 81px;
  height: auto;
  display: block;
}

/* Slick ドットカスタマイズ */
.p-shop__slider .slick-dots {
  position: static;
  margin-top: 12px;
  text-align: center;
}

.p-shop__slider .slick-dots li {
  margin: 0 2px;
}

.p-shop__slider .slick-dots li button::before {
  font-size: 18px;
  color: #EF7800;
  opacity: 0.4;
}

.p-shop__slider .slick-dots li.slick-active button::before {
  color: #EF7800;
  opacity: 1;
}

/* 店舗情報テーブル */
.p-shop__info {
  margin-top: 24px;
  padding: 0 10px 30px;
  position: relative;
}

.p-shop__info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.p-shop__info-row:first-child {
  border-top: 1px solid #eee;
}

.p-shop__info-dt {
  flex-shrink: 0;
  width: 100px;
}

/* GoogleMapボタン */
.p-shop__map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 236px;
  height: 45px;
  background-color: #EF7800;
  border-radius: 100px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  margin: 30px auto 0;
}
@media (min-width: 959.11px) and (min-width: 959.11px) {
  .p-shop__map-btn:hover {
    opacity: 0.8;
  }
}

/* Googleマップ埋め込み */
.p-shop__map {
  margin-top: 20px;
  width: 100%;
  height: 335px;
}

.p-shop__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.p-footer {
  background-color: #fff;
  padding: 40px 20px 100px;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

.p-footer__inner {
  max-width: 335px;
  margin: 0 auto;
}

.p-footer__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

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

.p-footer__logo.--takahashi img {
  width: 225px;
}

.p-footer__logo.--lixil img {
  width: 130px;
}

.p-footer__address {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 24px;
  text-align: center;
  margin-bottom: 17px;
}

.p-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.p-footer__sns-item {
  width: 30px;
  height: 30px;
}

.p-footer__sns-link {
  display: block;
}
@media (min-width: 959.11px) {
  .p-footer__sns-link:hover {
    opacity: 0.7;
  }
}

.p-footer__sns-link img {
  width: 30px;
  height: 30px;
  display: block;
}

.p-footer__copyright {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  text-align: center;
}
.p-footer__copyright small {
  font-size: inherit;
}
