@keyframes gradientMove {
  0% {
    background-position: 0% 200%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes scaleAnim {
  0% {
    scale: 0;
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    scale: 1.4;
    opacity: 0;
  }
}
@property --glow {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
@property --color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #efefbc;
}
@property --color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #cbdab2;
}
@property --btn-color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #747576;
}
@property --btn-color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #e6e6e6;
}
@property --btn-position {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 10%;
}
@property --wrap-bg-color-1 {
  syntax: "<color>";
  inherits: true;
  initial-value: #fff;
}
@property --wrap-bg-color-2 {
  syntax: "<color>";
  inherits: true;
  initial-value: #e6e9d8;
}
@property --wrap-bg-color-3 {
  syntax: "<color>";
  inherits: true;
  initial-value: #ccdcc4;
}
@property --wrap-bg-color-4 {
  syntax: "<color>";
  inherits: true;
  initial-value: #ebecdc;
}
@layer page {
  .l-footer .l-footer__nav {
    opacity: 0.1;
    transition: 1.5s opacity;
  }
  .l-footer.is-fire .l-footer__nav {
    opacity: 1;
  }
  .is-visited .home-fv__overlay {
    --duration: 0s;
  }
  .is-ready .home-fv__overlay {
    opacity: 0;
  }
  .is-ready .home-fv__overlay svg {
    transform: translateY(4px);
  }
  .home-wrap {
    --sp-pad: 6.8376068376vw;
    --wrap-bg-color-1: #000;
    --wrap-bg-color-2: #000;
    --wrap-bg-color-3: #000;
    --wrap-bg-color-4: #000;
    transition-duration: 1.4s;
    transition-property: --wrap-bg-color-1, --wrap-bg-color-2, --wrap-bg-color-3, --wrap-bg-color-4;
    background: linear-gradient(to bottom, var(--wrap-bg-color-1) 0%, var(--wrap-bg-color-2) 50%, var(--wrap-bg-color-3) 75%, var(--wrap-bg-color-4) 100%);
  }
  .home-wrap[data-state=quiet] {
    --wrap-bg-color-1: #fff;
    --wrap-bg-color-2: #fff;
    --wrap-bg-color-3: #fff;
    --wrap-bg-color-4: #fff;
  }
  .home-wrap[data-state=feeling] {
    --wrap-bg-color-1: #fff;
    --wrap-bg-color-2: #e6e9d8;
    --wrap-bg-color-3: #ccdcc4;
    --wrap-bg-color-4: #ebecdc;
  }
  .home-wrap .home-main {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, var(--wrap-bg-color-1) 0%, var(--wrap-bg-color-2) 50%, var(--wrap-bg-color-3) 75%, var(--wrap-bg-color-4) 100%);
  }
  body.is-home-zoom-open {
    overflow: hidden;
  }
  .home-zoom {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
  }
  .home-zoom.is-active {
    pointer-events: auto;
  }
  .home-zoom__preview, .home-zoom__cover {
    position: absolute;
    inset: 0;
  }
  .home-zoom__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    opacity: 0;
    transition: 0.2s opacity;
  }
  .home-zoom.is-preview-ready .home-zoom__preview {
    opacity: 1;
  }
  .home-zoom__img {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 420/630;
    transform: translateY(10px);
    transition: 1s cubic-bezier(0.83, 0, 0.17, 1);
    transition-property: opacity, transform;
    opacity: 0;
    will-change: transform;
  }
  @media screen and (min-width: 768px) {
    .home-zoom__img {
      height: 100vh;
    }
  }
  .home-zoom__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 1s transform cubic-bezier(0.83, 0, 0.17, 1);
    will-change: transform;
    user-select: none;
  }
  .home-zoom.is-revealed .home-zoom__img, .home-zoom.is-revealed .home-zoom__img img {
    opacity: 1;
    transform: translateY(0);
  }
  .home-zoom__close {
    position: absolute;
    top: 2rem;
    right: 2.25rem;
    z-index: 3;
    width: 3.375rem;
    height: 3.375rem;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    transition: 0.3s background, 0.3s border-color;
  }
  .home-zoom__close:focus-visible {
    outline: none;
  }
  @media screen and (max-width: 767px) {
    .home-zoom__close {
      top: 3.5897435897vw;
      right: var(--sp-pad);
      width: 8.547008547vw;
      height: 8.547008547vw;
    }
  }
  .home-zoom__close::before, .home-zoom__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: #fff;
  }
  @media screen and (max-width: 767px) {
    .home-zoom__close::before, .home-zoom__close::after {
      width: 3.0769230769vw;
    }
  }
  .home-zoom__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .home-zoom__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  @media (hover: hover) {
    .home-zoom__close:hover {
      background: rgba(17, 17, 17, 0.08);
      border-color: #111;
    }
  }
  .home-zoom__cover {
    z-index: 4;
    display: grid;
    grid-template-rows: 1fr 1fr;
    pointer-events: none;
  }
  .home-zoom__cover-row {
    background: #000;
    transform: scaleY(0);
    transition: 0.85s transform cubic-bezier(0.83, 0, 0.17, 1);
    will-change: transform;
  }
  .home-zoom__cover-row:first-child {
    transform-origin: 50% 0;
  }
  .home-zoom__cover-row:last-child {
    transform-origin: 50% 100%;
  }
  .home-zoom.is-covering .home-zoom__cover-row {
    transform: scaleY(1);
  }
  .is-fv-stay .home-fv__text-line {
    opacity: 1;
    transform: translateY(0);
    rotate: 0;
  }
  .is-fv-stay .home-fv__img-wrap {
    transition-duration: 1.2s;
  }
  .is-scrolled .home-fv__img-wrap {
    opacity: 0.3;
  }
  .home-first {
    min-height: 100vh;
    min-height: 100svh;
  }
  .home-first__inner {
    position: sticky;
    top: 0;
  }
  .home-fv {
    color: #fff;
    height: 100vh;
    height: 100svh;
    height: calc(100vh - 0rem);
  }
  .home-fv__overlay {
    --duration: 2s;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    z-index: 100;
    transition: var(--duration) opacity;
  }
  .home-fv__overlay svg {
    width: 18.75rem;
    transition: var(--duration) transform;
  }
  @media screen and (max-width: 767px) {
    .home-fv__overlay svg {
      width: 34.188034188vw;
    }
  }
  .home-fv__overlay svg {
    aspect-ratio: 199.99/16.98;
    fill: var(--header-fill);
  }
  .home-fv__img-wrap {
    position: fixed;
    z-index: 1;
    top: 6.25rem;
    left: 0;
    width: 100%;
    min-height: 500px;
    height: calc(100% - 10.625rem);
    overflow: hidden;
    opacity: 0.8;
    background: #000 url("../../../img/page/home/fv.webp") 0/auto 100% repeat-x;
    transition: 3.6s;
    transition-property: background, opacity;
    transition-timing-function: ease-in-outcubic-bezier(0.677, 0, 0, 1.003);
    will-change: background-position;
  }
  @media screen and (max-width: 767px) {
    .home-fv__img-wrap {
      background-image: url("../../../img/page/home/fv_sp.webp");
      background-size: 1700vw auto;
    }
  }
  .home-fv__img-wrap img {
    height: 100%;
    max-width: none;
  }
  .home-fv__img-wrap::before, .home-fv__img-wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    pointer-events: none;
    z-index: 10;
    height: 100%;
  }
  .home-fv__img-wrap::before {
    width: 10vw;
    background: linear-gradient(to right, #000 10%, rgba(0, 0, 0, 0) 100%);
    left: 0;
  }
  .home-fv__img-wrap::after {
    width: 10vw;
    background: linear-gradient(to left, #000 10%, rgba(0, 0, 0, 0) 100%);
    right: 0;
  }
  .home-fv__controls {
    position: fixed;
    right: 2.25rem;
    bottom: 2.375rem;
    z-index: 10;
    display: flex;
    gap: 0.75rem;
  }
  @media screen and (max-width: 767px) {
    .home-fv__controls {
      right: var(--sp-pad);
      bottom: 3.9316239316vw;
      gap: 2.5641025641vw;
    }
  }
  .home-fv__control {
    position: relative;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    transition: 0.3s background, 0.3s border-color;
  }
  @media screen and (max-width: 767px) {
    .home-fv__control {
      width: 10.2564102564vw;
      height: 10.2564102564vw;
    }
  }
  .home-fv__control[disabled] {
    opacity: 0.4;
  }
  .home-fv__control::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.6875rem;
    height: 0.6875rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  @media screen and (max-width: 767px) {
    .home-fv__control::before {
      width: 1.5384615385vw;
      height: 1.5384615385vw;
    }
  }
  .home-fv__control--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }
  .home-fv__control--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
  }
  @media (hover: hover) {
    .home-fv__control:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: #fff;
    }
  }
  .home-fv__main {
    position: relative;
    z-index: 2;
    min-height: 500px;
    height: calc(100% - 10.625rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
  }
  @media screen and (min-width: 768px) {
    .home-fv__main {
      align-items: center;
    }
  }
  @media screen and (max-width: 767px) {
    .home-fv__main {
      padding: 17.9487179487vw var(--sp-pad) 0 var(--sp-pad);
    }
  }
  .home-fv__text-wrap {
    pointer-events: none;
    position: relative;
    z-index: 2;
  }
  .home-fv__text-line {
    transform: translateY(10px);
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 3.6s;
    will-change: opacity, transform;
    rotate: 0.1deg;
  }
  .home-fv__ttl {
    letter-spacing: 0.4em;
    font-size: var(--base-ttl-font-size);
    line-height: 1.8;
  }
  @media screen and (max-width: 767px) {
    .home-fv__ttl {
      font-size: 5.2991452991vw;
    }
  }
  .home-fv__ttl span {
    display: inline-block;
  }
  .home-fv__en {
    margin: 3.125rem 0 3.4375rem 0;
  }
  .home-fv__en img {
    width: 11.25rem;
  }
  @media screen and (max-width: 767px) {
    .home-fv__en {
      margin: 7.6923076923vw 0;
    }
    .home-fv__en img {
      width: 32.4786324786vw;
    }
  }
  .home-fv__text {
    letter-spacing: 0.04em;
    line-height: var(--base-text-line-height);
  }
  @media screen and (max-width: 767px) {
    .home-fv__text {
      font-size: var(--sp-text-size-a);
    }
  }
  .home-fv__text p + p {
    margin-top: 2.5rem;
  }
  .home-fv__text span {
    display: inline-block;
  }
  .home-fv__scroll {
    pointer-events: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.4375rem;
    padding-left: 2.6875rem;
    height: 4.375rem;
    transition: 1s opacity;
  }
  .home-fv__scroll-bar {
    width: 3px;
    background: linear-gradient(to bottom, black, white, black);
    background-size: 100% 200%;
    animation: gradientMove 3s linear infinite;
  }
  .home-fv__scroll-text img {
    resize: 2.6875rem;
  }
  .home-ttl {
    font-size: var(--base-ttl-font-size);
    line-height: 1.8;
  }
  @media screen and (max-width: 767px) {
    .home-ttl {
      font-size: 5.2991452991vw;
      white-space: nowrap;
    }
  }
  .home-ttl-tran {
    opacity: 0;
    translate: 0 10px;
    transition: 3.2s;
    transition-property: opacity, translate;
    rotate: 0.1deg;
  }
  .home-ttl-tran.is-fire {
    translate: 0 0;
    opacity: 1;
    rotate: 0;
  }
  .home-move {
    color: #fff;
  }
  @media screen and (min-width: 768px) {
    .home-move {
      padding-bottom: 5.375rem;
      padding-top: 3.125rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-move {
      padding-bottom: 19.6581196581vw;
    }
  }
  .home-move::before {
    content: "";
    width: 91.7664670659vw;
    height: 32.5rem;
    background: #002218;
    position: absolute;
  }
  @media screen and (min-width: 768px) {
    .home-move::before {
      left: 0;
      transform: translateY(2.5rem);
    }
  }
  @media screen and (max-width: 767px) {
    .home-move::before {
      right: 0;
      width: 69.2307692308vw;
      height: 101.7094017094vw;
    }
  }
  .home-move > * {
    position: relative;
    z-index: 2;
  }
  @media screen and (min-width: 768px) {
    .home-move__row-1 {
      display: grid;
      grid-template-columns: 1fr 29.25rem;
      gap: 4.25rem;
      text-align: right;
    }
  }
  @media screen and (max-width: 767px) {
    .home-move__row-1 {
      display: flex;
      flex-direction: column-reverse;
      gap: 10.2564102564vw;
      padding-top: 14.5299145299vw;
      padding-left: 47.8632478632vw;
    }
  }
  @media screen and (max-width: 767px) {
    .home-move__text-wrap-1 {
      height: 32.4786324786vw;
      padding-top: 6.8376068376vw;
    }
  }
  .home-move__ttl {
    letter-spacing: 0.4em;
  }
  @media screen and (min-width: 768px) {
    .home-move__ttl {
      margin-top: 7.5rem;
    }
  }
  @media screen and (min-width: 768px) {
    .home-move__en {
      margin-top: 2.5rem;
    }
    .home-move__en img {
      width: 20.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-move__en img {
      width: 43.4188034188vw;
    }
  }
  .home-move__img-1 {
    aspect-ratio: 480/416;
  }
  @media screen and (max-width: 767px) {
    .home-move__img-1 {
      aspect-ratio: 614/440;
      width: 51.2820512821vw;
    }
  }
  .home-move__img-2 {
    aspect-ratio: 1107/667;
  }
  @media screen and (min-width: 768px) {
    .home-move__img-2 {
      width: 34.5625rem;
    }
  }
  .home-quiet {
    position: relative;
  }
  @media screen and (min-width: 768px) {
    .home-quiet {
      padding-bottom: 7.5rem;
    }
  }
  .home-quiet__text-wrap-1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  @media screen and (min-width: 768px) {
    .home-quiet__text-wrap-1 {
      gap: 3.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__text-wrap-1 {
      position: relative;
    }
  }
  @media screen and (min-width: 768px) {
    .home-quiet__photo {
      margin-bottom: 1.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__photo {
      padding: 0 var(--sp-pad);
    }
  }
  .home-quiet__ttl {
    letter-spacing: 0.4em;
    writing-mode: vertical-lr;
  }
  @media screen and (min-width: 768px) {
    .home-quiet__ttl {
      padding: 1.875rem 0 0 9.375rem;
    }
  }
  @media screen and (min-width: 768px) {
    .home-quiet__en {
      padding-bottom: 1.875rem;
      width: 11.4375rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__en {
      position: absolute;
      bottom: 0.8547008547vw;
      right: -11.9658119658vw;
      font-size: 10px;
    }
    .home-quiet__en img {
      width: 24.358974359vw;
    }
  }
  .home-quiet__row-1 {
    display: grid;
  }
  @media screen and (min-width: 768px) {
    .home-quiet__row-1 {
      grid-template-columns: 1fr 34.5625rem;
      margin-top: 6.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__row-1 {
      grid-template-columns: 1fr 61.5384615385vw;
      padding-right: var(--sp-pad);
      padding-left: calc(var(--sp-pad) * 1.3);
      margin-top: 6.8376068376vw;
    }
  }
  @media screen and (min-width: 768px) {
    .home-quiet__row-4 {
      display: grid;
      align-items: center;
      grid-template-columns: 11.625rem 1fr;
      margin-top: 1.375rem;
      gap: 4rem;
    }
  }
  .home-quiet__row-4 img {
    width: 100%;
  }
  .home-quiet__pagination-wrap {
    position: relative;
  }
  @media screen and (min-width: 768px) {
    .home-quiet__pagination-wrap {
      width: 30.625rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__pagination-wrap {
      width: 51.2820512821vw;
      margin: 0 auto;
    }
  }
  .home-quiet__slider-wrap {
    position: relative;
    overflow: hidden;
    --swiper-theme-color: #fff;
    --quiet-slider-image-height: 26.25rem;
    --quiet-slider-slide-width: 17.5rem;
  }
  @media screen and (min-width: 768px) {
    .home-quiet__slider-wrap {
      margin-top: 5.625rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap {
      margin-top: 35.8974358974vw;
      --quiet-slider-image-height: 30.7692307692vw;
      --quiet-slider-slide-width: 20.5128205128vw;
    }
  }
  .home-quiet__slider-wrap [class^=swiper-button-] {
    transition: all 0.3s ease;
  }
  .home-quiet__slider-wrap *, .home-quiet__slider-wrap *:before, .home-quiet__slider-wrap *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .home-quiet__slider-wrap .swiper-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    transition: opacity 0.6s ease;
  }
  @media screen and (min-width: 768px) {
    .home-quiet__slider-wrap .swiper-container {
      padding-bottom: 1.125rem;
    }
  }
  .home-quiet__slider-wrap .swiper-container.is-resetting .swiper-slide {
    transition: none;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap .swiper-container {
      margin-top: 5.1282051282vw;
    }
  }
  .home-quiet__slider-wrap .swiper-container .swiper-button-prev,
  .home-quiet__slider-wrap .swiper-container .swiper-button-next {
    position: absolute;
    bottom: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 0;
    border: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 100rem;
    color: #fff;
    cursor: pointer;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap .swiper-container .swiper-button-prev,
    .home-quiet__slider-wrap .swiper-container .swiper-button-next {
      width: 8.547008547vw;
      height: 8.547008547vw;
      --swiper-navigation-size: 20px;
    }
  }
  .home-quiet__slider-wrap .swiper-container .swiper-button-prev::after,
  .home-quiet__slider-wrap .swiper-container .swiper-button-next::after {
    color: #fff;
  }
  .home-quiet__slider-wrap .swiper-container .swiper-button-prev::before,
  .home-quiet__slider-wrap .swiper-container .swiper-button-next::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap .swiper-container .swiper-button-prev::before,
    .home-quiet__slider-wrap .swiper-container .swiper-button-next::before {
      width: 1.5384615385vw;
      height: 1.5384615385vw;
    }
  }
  .home-quiet__slider-wrap .swiper-container .swiper-button-prev::before {
    translate: 0rem;
  }
  .home-quiet__slider-wrap .swiper-container .swiper-button-next::before {
    translate: 0rem;
  }
  @media (hover: hover) {
    .home-quiet__slider-wrap .swiper-container:hover .swiper-button-prev,
    .home-quiet__slider-wrap .swiper-container:hover .swiper-button-next {
      opacity: 0.72;
    }
  }
  .home-quiet__slider-wrap .swiper-wrapper {
    position: relative;
    height: var(--quiet-slider-image-height);
    transition-timing-function: ease-in-out;
  }
  .home-quiet__slider-wrap .swiper-slide {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: var(--quiet-slider-z);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--quiet-slider-slide-width);
    height: var(--quiet-slider-image-height);
    opacity: var(--quiet-slider-opacity);
    transform: translateX(-50%) translateX(var(--quiet-slider-x)) scale(var(--quiet-slider-scale));
    transform-origin: center bottom;
    transition: var(--quiet-slider-transition-duration, 0.8s) var(--quiet-slider-transition-easing, cubic-bezier(0.83, 0, 0.17, 1));
    transition-property: transform, opacity;
    will-change: transform, opacity;
  }
  .home-quiet__slider-wrap .swiper-slide.is-active {
    pointer-events: auto;
  }
  .home-quiet__slider-wrap .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
  }
  .home-quiet__slider-wrap .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.875rem;
    margin-top: 4.6875rem;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap .swiper-pagination {
      margin-top: 5.1282051282vw;
      padding-top: 3.4188034188vw;
      padding-bottom: 2.905982906vw;
      gap: 1.5384615385vw;
    }
  }
  .home-quiet__slider-wrap .swiper-pagination-bullet {
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    margin: 0 !important;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #dcdddd;
    opacity: 1;
    cursor: pointer;
    transition: 0.3s background, 0.3s transform;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap .swiper-pagination-bullet {
      width: 2.5641025641vw;
      height: 2.5641025641vw;
    }
  }
  .home-quiet__slider-wrap .swiper-pagination-bullet-active {
    background: #b5b5b6;
  }
  .home-quiet__slider-wrap [class^=swiper-button-] {
    width: 44px;
  }
  .home-quiet__slider-wrap .swiper-button-prev {
    left: 1.75rem;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap .swiper-button-prev {
      left: 5.1282051282vw;
    }
  }
  .home-quiet__slider-wrap .swiper-button-prev::before {
    transform: rotate(-135deg);
  }
  .home-quiet__slider-wrap .swiper-button-next {
    right: 1.75rem;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap .swiper-button-next {
      right: 5.1282051282vw;
    }
  }
  .home-quiet__slider-wrap .swiper-button-next::before {
    transform: rotate(45deg);
  }
  .home-quiet__slider-wrap::before, .home-quiet__slider-wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    pointer-events: none;
    z-index: 10;
    height: 100%;
  }
  .home-quiet__slider-wrap::before {
    width: 3.75rem;
    background: linear-gradient(to right, var(--wrap-bg-color-1) 10%, var(--wrap-bg-color-1) 20%, rgba(0, 0, 0, 0) 100%);
    left: 0;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap::before {
      width: 5.1282051282vw;
    }
  }
  .home-quiet__slider-wrap::after {
    width: 7.5rem;
    background: linear-gradient(to left, var(--wrap-bg-color-1) 10%, var(--wrap-bg-color-1) 30%, rgba(0, 0, 0, 0) 100%);
    right: 0;
  }
  @media screen and (max-width: 767px) {
    .home-quiet__slider-wrap::after {
      width: 10.2564102564vw;
    }
  }
  @media screen and (min-width: 768px) {
    .home-quiet__row-2 {
      margin-top: 10rem;
      display: grid;
      align-items: flex-end;
      grid-template-columns: 27.375rem 1fr;
      gap: 2.375rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__row-2 {
      margin-top: 22.2222222222vw;
      padding: 0 var(--sp-pad2);
      display: flex;
      flex-direction: column;
      gap: 4.2735042735vw;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__img-2 {
      width: 48.7179487179vw;
    }
  }
  .home-quiet__row-3 {
    display: grid;
  }
  @media screen and (min-width: 768px) {
    .home-quiet__row-3 {
      grid-template-columns: 15rem 1fr;
      gap: 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__row-3 {
      direction: rtl;
      grid-template-columns: 26.9230769231vw 1fr;
      gap: 0.8547008547vw;
      margin-top: 8.547008547vw;
    }
  }
  .home-quiet__img-wrap-3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .home-quiet__img-3 img {
    max-width: 103%;
  }
  .home-quiet__text-3 {
    line-height: 2.4;
  }
  @media screen and (min-width: 768px) {
    .home-quiet__text-3 {
      white-space: nowrap;
      margin-top: -0.625rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-quiet__text-3 {
      direction: ltr;
      font-size: 3.2478632479vw;
    }
  }
  .home-quiet__text-3 p + p {
    margin-top: 2.5rem;
  }
  @media screen and (min-width: 768px) {
    .home-feeling {
      padding-top: 12.5rem;
      padding-bottom: 3.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-feeling {
      padding: 20.5128205128vw var(--sp-pad2) 8.547008547vw var(--sp-pad2);
    }
  }
  .home-feeling__ttl {
    letter-spacing: 0.3em;
  }
  @media screen and (max-width: 767px) {
    .home-feeling__ttl {
      letter-spacing: 0.42em;
      writing-mode: vertical-rl;
      padding-right: 5.9829059829vw;
      margin-top: 7.6923076923vw;
    }
  }
  .home-feeling__row-1 {
    display: grid;
    align-items: flex-end;
  }
  @media screen and (min-width: 768px) {
    .home-feeling__row-1 {
      grid-template-columns: 46.875rem 1fr;
      gap: 0.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-feeling__row-1 {
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-start;
      grid-template-columns: 57.264957265vw 1fr;
      gap: 8vw;
    }
  }
  .home-feeling__img-1-1 {
    aspect-ratio: 1522/1059;
  }
  @media screen and (max-width: 767px) {
    .home-feeling__img-1-1 {
      aspect-ratio: 670/470;
      width: 80%;
    }
  }
  .home-feeling__img-1-2 {
    aspect-ratio: 469/505;
  }
  @media screen and (max-width: 767px) {
    .home-feeling__img-1-2 {
      aspect-ratio: 1/1;
      width: 50%;
      margin: 0 auto 0 22.2222222222vw;
    }
  }
  .home-feeling__row-2 {
    display: grid;
  }
  @media screen and (min-width: 768px) {
    .home-feeling__row-2 {
      align-items: center;
      grid-template-columns: 1fr 31.0625rem;
      margin-top: 0.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-feeling__row-2 {
      margin-top: 1.2820512821vw;
      grid-template-columns: 1fr 38.4615384615vw;
    }
  }
  .home-feeling__text-2 {
    display: flex;
    flex-direction: column;
  }
  @media screen and (min-width: 768px) {
    .home-feeling__text-2 {
      gap: 12.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .home-feeling__text-2 {
      padding: 5.1282051282vw 0 0 0;
      align-items: center;
      transform: translateX(-4.2735042735vw);
    }
  }
  .home-feeling__en-2 {
    width: 13.875rem;
    margin-top: 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .home-feeling__en-2 {
      width: 28.3760683761vw;
      margin: 2.5641025641vw auto 0 auto;
      font-size: 10px;
    }
  }
  .home-feeling__en-2 img {
    width: 100%;
  }
  .home-feeling__img-2 {
    aspect-ratio: 994/1390;
  }
  @media screen and (max-width: 767px) {
    .home-feeling__img-2 {
      aspect-ratio: 440/660;
    }
  }
  .home-feeling__row-3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .home-feeling__row-3 {
      margin-top: 19.6581196581vw;
      margin-bottom: 8.547008547vw;
      margin-left: -5.1282051282vw;
      margin-right: -5.1282051282vw;
    }
  }
  .home-circle-btn {
    position: relative;
    width: 10.375rem;
    height: 10.375rem;
    border-radius: 100rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #68a568;
  }
  @media screen and (max-width: 767px) {
    .home-circle-btn {
      width: 24.7863247863vw;
      height: 24.7863247863vw;
    }
  }
  .home-circle-btn::before {
    pointer-events: none;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    content: "";
    display: block;
    background-image: radial-gradient(var(--color-1), var(--color-2) 47%, transparent 70%);
    cursor: pointer;
    transition-duration: 0.4s;
    transition: 0.4s ease;
    transition-property: --color-1, --color-2;
    animation: scaleAnim 4s linear infinite;
    animation-timing-function: cubic-bezier(0.72, 0, 0.31, 0.98);
  }
  @media screen and (max-width: 767px) {
    .home-circle-btn {
      border-width: 1px;
    }
  }
  .home-circle-btn__label {
    position: relative;
    z-index: 2;
    color: #39804a;
    font-size: 1.3125rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: center;
    line-height: 1.6;
  }
  @media screen and (max-width: 767px) {
    .home-circle-btn__label {
      font-size: 3.0769230769vw;
    }
  }
  .home-circle-btn__label.is-insta {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .home-circle-btn__insta {
    fill: #39804a;
    width: 2.875rem;
    aspect-ratio: 1/1;
    margin: 0 auto;
    margin-bottom: 0.25rem;
  }
  @media screen and (max-width: 767px) {
    .home-circle-btn__insta {
      width: 6.8376068376vw;
    }
  }
  @media (hover: hover) {
    .home-circle-btn:hover {
      --color-1: #f3f3e2;
      --color-2: #e7efc8;
    }
  }
  .home-img {
    overflow: hidden;
  }
  .home-img img {
    object-fit: cover;
    width: 112%;
    height: 112%;
  }
  @media screen and (max-width: 767px) {
    .home-img img {
      width: 108%;
      height: 108%;
    }
  }
  .home-footer-nav {
    position: relative;
    z-index: 3;
  }
  .home-footer-nav .p-nav {
    height: 85.25rem;
    background-position: 50% 100%;
  }
  @media screen and (max-width: 767px) {
    .home-footer-nav .p-nav {
      height: 200.8547008547vw;
    }
  }
  .home-footer-nav .p-nav__light {
    animation: scaleAnim 2.6s linear infinite;
    animation-timing-function: cubic-bezier(0.72, 0, 0.31, 0.98);
  }
  .home-tran {
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
    transition-duration: 1.5s;
  }
  .home-tran.is-fire {
    opacity: 1;
    transform: translateY(0);
  }
}