@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
address {
  margin: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --primary-color: #445d5c;
  --secondary-color: #e6d4d2;
  --accent-color: #d9d9d9;
  --goods-white: #dfd3c5;
  --goods-pink: #ffdde1;
  --goods-blue: #161928;
  --goods-darkBlue: #3a404e;
  --font-size: 1rem;
  --noise-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  --font-en: mixta-didone, serif;
  --font-ja: a-otf-ryumin-pr6n, serif;
  --font-ja-sans: noto-sans-cjk-jp, sans-serif;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 10000;
  background-color: var(--primary-color);
}

.debug-monitor {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  color: #00ffcc;
  padding: 10px 15px;
  font-family: monospace;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  pointer-events: none;
}

.guid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100000;
  pointer-events: none;
}
.guid::after, .guid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: red;
}
.guid::after {
  width: 100%;
  height: 2px;
}
.guid::before {
  width: 2px;
  height: 100%;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 600;
  color: #fff;
  background-color: var(--primary-color);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
}
.menu .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  opacity: 0;
}
.menu .inner-left {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .menu .inner-left {
    display: none;
  }
}
.menu .inner-left .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.menu .inner-left .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.menu .inner-left .symbol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.menu .inner-left .symbol .logo {
  width: 180px;
  margin-bottom: 1rem;
}
.menu .inner-left .symbol .icon {
  width: 180px;
  margin-bottom: 0.5rem;
}
.menu .inner-left .symbol .txt {
  font-family: var(--font-ja);
  font-size: 1rem;
}
.menu .inner-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  width: 50%;
}
@media screen and (max-width: 650px) {
  .menu .inner-right {
    width: 100%;
  }
}
.menu .inner-right .list {
  display: flex;
  gap: 10rem;
  font-family: var(--font-ja-sans);
  font-weight: 200;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  line-height: 1;
}
@media screen and (max-width: 650px) {
  .menu .inner-right .list {
    gap: 4rem;
  }
}
.menu .inner-right .list .left .label {
  margin-bottom: 1.5rem;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.menu .inner-right .list .left .item {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.menu .inner-right .list .right .item {
  margin-bottom: 1.5rem;
  line-height: 1;
}
.menu .inner-right .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
}
.op .symbol {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 600;
  mix-blend-mode: difference;
  opacity: 0;
  visibility: hidden;
}
.op .symbol .logo {
  position: relative;
  z-index: 1000;
  width: 250px;
  margin-bottom: 2rem;
  transform-origin: center top;
}
@media screen and (max-width: 650px) {
  .op .symbol .logo {
    width: 160px;
    margin-bottom: 1rem;
  }
}
.op .symbol .icon {
  width: 250px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 650px) {
  .op .symbol .icon {
    width: 160px;
    margin-bottom: 0.5rem;
  }
}
.op .symbol .txt {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 650px) {
  .op .symbol .txt {
    font-size: 1rem;
  }
}
.op .flash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header .logo {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 650px) {
  .header .logo {
    width: 40px;
  }
}
.header .other-logo {
  opacity: 1;
  visibility: visible;
}
.header .btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-bottom-left-radius: 10px;
  border-left: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
@media screen and (max-width: 650px) {
  .header .btn {
    width: 60px;
    height: 60px;
  }
}
.header .btn {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}
.header .btn .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header .btn .inner .lines {
  position: relative;
  width: 48px;
  height: 20px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 650px) {
  .header .btn .inner .lines {
    width: 36px;
    height: 15px;
    margin-bottom: 0.375rem;
  }
}
.header .btn .inner .lines .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background-color: var(--primary-color);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .btn .inner .lines .line:nth-child(1) {
  transform: translateY(-8px);
}
@media screen and (max-width: 650px) {
  .header .btn .inner .lines .line:nth-child(1) {
    transform: translateY(-6px);
  }
}
.header .btn .inner .lines .line:nth-child(2) {
  transform: translateY(8px);
}
@media screen and (max-width: 650px) {
  .header .btn .inner .lines .line:nth-child(2) {
    transform: translateY(6px);
  }
}
.header .btn .inner .txt {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (max-width: 650px) {
  .header .btn .inner .txt {
    font-size: 0.875rem;
  }
}
.header .btn.is-active .inner .lines .line:nth-child(1) {
  transform: translateY(0) rotate(30deg);
}
.header .btn.is-active .inner .lines .line:nth-child(2) {
  transform: translateY(0) rotate(-30deg);
}

.wrapper {
  display: grid;
  grid-template-columns: 100%;
}

.sec01 {
  height: 100vh;
}
.sec01 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.sec01 .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.sec01 .symbol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 500;
}
.sec01 .symbol .logo {
  position: relative;
  z-index: 1000;
  width: 250px;
  margin-bottom: 2rem;
  transform-origin: center top;
}
@media screen and (max-width: 650px) {
  .sec01 .symbol .logo {
    width: 160px;
    margin-bottom: 1rem;
  }
}
.sec01 .symbol .icon {
  width: 250px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 650px) {
  .sec01 .symbol .icon {
    width: 160px;
    margin-bottom: 0.5rem;
  }
}
.sec01 .symbol .txt {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 650px) {
  .sec01 .symbol .txt {
    font-size: 1rem;
  }
}

.wrapper {
  display: grid;
  grid-template-columns: 100%;
}
.sec02-container {
  grid-area: 1/1;
  position: relative;
  height: 100vh;
  overflow-y: hidden;
  pointer-events: none;
}

.sec02 {
  grid-area: 1/1;
  position: relative;
  height: 100vh;
  z-index: 2;
  overflow: hidden;
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .sec02 {
    padding: 4rem 2rem 3rem;
  }
}
.sec02 {
  color: #fff;
  background-color: var(--primary-color);
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
}
@media screen and (max-width: 650px) {
  .sec02 {
    height: auto;
    padding: 8rem 0 6rem;
  }
}
@media screen and (min-width:1920px) {
  .sec02 {
    font-size: 0.5208333333vw;
  }
}
.sec02 .heading {
  font-family: var(--font-ja);
  font-size: clamp(2.5rem, calc(1.1538461538rem + 5.3846153846vw), 6rem);
}
@media screen and (max-width: 650px) {
  .sec02 .heading {
    margin-bottom: 5rem;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 650px) and (max-width: 650px) {
  .sec02 .heading {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width:1920px) {
  .sec02 .heading {
    font-size: 9.6em;
  }
}
.sec02 .heading .line02 {
  margin-left: 1em;
}
.sec02 .desc {
  position: absolute;
  right: 4rem;
  bottom: 6rem;
  width: 400px;
  z-index: 10;
}
@media screen and (max-width: 650px) {
  .sec02 .desc {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 2rem;
  }
}
@media screen and (min-width:1920px) {
  .sec02 .desc {
    width: 40em;
  }
}
.sec02 .desc .area {
  position: relative;
  height: 15rem;
}
@media screen and (max-width: 650px) {
  .sec02 .desc .area {
    height: auto;
    margin-bottom: 0;
  }
}
@media screen and (min-width:1920px) {
  .sec02 .desc .area {
    height: 30em;
  }
}
.sec02 .desc .area .txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  gap: 2rem;
  font-family: var(--font-ja-sans);
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  line-height: 2;
}
@media screen and (max-width: 650px) {
  .sec02 .desc .area .txt {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .sec02 .desc .area .txt-no1 {
    margin-bottom: 500px;
  }
  .sec02 .desc .area .txt-no2 {
    margin-bottom: 150px;
  }
}
@media screen and (min-width:1920px) {
  .sec02 .desc .area .txt {
    font-size: 1.6em;
  }
}
.sec02 .desc .area .txt .block {
  margin: 0;
}
@media screen and (max-width: 650px) {
  .sec02 .desc .area .txt .block-no1 {
    margin-bottom: 2em;
  }
  .sec02 .desc .area .txt .block-no3 {
    margin-bottom: 10em;
  }
  .sec02 .desc .area .txt .block-no4 {
    margin-left: 9.5em;
  }
  .sec02 .desc .area .txt .block-no5 {
    margin-bottom: 8em;
  }
  .sec02 .desc .area .txt .block-no6 {
    margin-right: 7.5em;
  }
}
.sec02 .desc .progress {
  display: flex;
  align-items: center;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (max-width: 650px) {
  .sec02 .desc .progress {
    display: none;
  }
}
.sec02 .desc .progress .count {
  min-width: 3rem;
}
.sec02 .desc .progress .line {
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 2px;
  background-color: #aaa;
}
.sec02 .desc .progress .line .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}
.sec02 .container {
  position: absolute;
  inset: 0;
  filter: brightness(75%);
}
.sec02 .container .gal {
  position: absolute;
  overflow: hidden;
  top: 100%;
  font-size: 0.6944444444vw;
}
.sec02 .container .gal .window {
  position: relative;
  width: 100%;
  height: 100%;
}
.sec02 .container .gal .window > img {
  position: absolute;
  top: -20%;
  height: 120%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
@media screen and (max-width: 650px) {
  .sec02 .container .gal {
    top: 0;
  }
}
.sec02 .container .gal--1 {
  aspect-ratio: 3/4;
  left: 6.4em;
  width: clamp(10rem, calc(-0.5769230769rem + 42.3076923077vw), 37.5rem);
  margin-top: 20vh;
}
@media screen and (max-width: 650px) {
  .sec02 .container .gal--1 {
    left: 2rem;
    width: 280px;
    margin-top: 550px;
  }
}
.sec02 .container .gal--2 {
  aspect-ratio: 1/1;
  left: 76.8em;
  width: clamp(10rem, calc(-0.5769230769rem + 42.3076923077vw), 37.5rem);
  margin-top: 40vh;
  z-index: 3;
  display: none;
}
@media screen and (max-width: 650px) {
  .sec02 .container .gal--2 {
    left: auto;
    right: 2rem;
    width: 200px;
    margin-top: 800px;
    display: block;
  }
}
.sec02 .container .gal--3 {
  aspect-ratio: 2/3;
  left: 76.8em;
  width: clamp(5rem, calc(-2.6923076923rem + 30.7692307692vw), 25rem);
  margin-top: 80vh;
}
@media screen and (max-width: 650px) {
  .sec02 .container .gal--3 {
    left: -15px;
    width: 170px;
    margin-top: 1200px;
  }
}
.sec02 .container .gal--4 {
  aspect-ratio: 3/4;
  left: 19.2em;
  width: clamp(8rem, calc(-0.4615384615rem + 33.8461538462vw), 30rem);
  margin-top: 100vh;
}
@media screen and (max-width: 650px) {
  .sec02 .container .gal--4 {
    left: 0;
    width: 200px;
    display: none;
  }
}
.sec02 .container .gal--5 {
  aspect-ratio: 1/1;
  left: 25.6em;
  width: clamp(9rem, calc(0.9230769231rem + 32.3076923077vw), 30rem);
  margin-top: 100vh;
}
@media screen and (max-width: 650px) {
  .sec02 .container .gal--5 {
    left: auto;
    right: -80px;
    width: 200px;
    margin-top: 1630px;
  }
}
.sec02 .container .gal--6 {
  aspect-ratio: 2/3;
  left: 12.8em;
  width: clamp(8.5rem, calc(2.1538461538rem + 25.3846153846vw), 25rem);
  margin-top: 120vh;
}
@media screen and (max-width: 650px) {
  .sec02 .container .gal--6 {
    left: 0;
    width: 200px;
    display: none;
  }
}

.sec03 {
  grid-area: 1/1;
  align-self: flex-end;
  position: relative;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  color: #fff;
}
.sec03 .bgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sec03 .bgs .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
}
.sec03 .bgs .bg:first-child {
  opacity: 1;
}
.sec03 .content {
  position: relative;
  height: 100%;
  z-index: 2;
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .sec03 .content {
    padding: 4rem 2rem 3rem;
  }
}
@media screen and (min-width:1920px) {
  .sec03 .content {
    font-size: 0.5208333333vw;
  }
}
.sec03 .content .title .ja {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  line-height: 1;
}
@media screen and (min-width:1920px) {
  .sec03 .content .title .ja {
    font-size: 2em;
  }
}
.sec03 .content .title .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(2.75rem, calc(-0.0384615385rem + 11.1538461538vw), 10rem);
  line-height: 1;
}
@media screen and (min-width:1920px) {
  .sec03 .content .title .en {
    font-size: 16em;
  }
}
.sec03 .content .title .lead {
  width: 50vw;
  max-width: 600px;
  display: block;
  margin-top: 2rem;
  font-family: var(--font-ja-sans);
  font-weight: 200;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  line-height: 1.8;
}
@media screen and (max-width: 650px) {
  .sec03 .content .title .lead {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 650px) {
  .sec03 .content .title .lead {
    width: 100%;
  }
}
@media screen and (min-width:1920px) {
  .sec03 .content .title .lead {
    max-width: 40em;
    font-size: 1.6em;
  }
}
.sec03 .visit {
  z-index: 4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 650px) {
  .sec03 .visit {
    width: 100px;
    height: 100px;
  }
}
.sec03 .visit .btn {
  width: 100%;
  height: 100%;
}
.sec03 .visit .btn .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .sec03 .visit .btn .txt {
    font-size: 0.5rem;
  }
}
.sec03 .visit .btn .ring {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform-origin: center;
}
.sec03 .visit .btn .ring .svg .c-txt {
  font-family: var(--font-en);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  fill: white;
}
@media screen and (max-width: 650px) {
  .sec03 .visit {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 2rem;
    transform: translate(0, 0);
  }
}
.sec03 .next {
  position: absolute;
  right: 4rem;
  bottom: 6rem;
  display: flex;
  flex-direction: column;
  width: 15rem;
  z-index: 3;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .sec03 .next {
    right: 2rem;
    bottom: 3rem;
    width: 10rem;
  }
}
.sec03 .next .txt {
  margin-bottom: 0.5rem;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  text-align: right;
}
.sec03 .next .bgs {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
  filter: brightness(50%);
}
.sec03 .next .bgs .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.sec03 .next .bgs .bg:first-child {
  opacity: 1;
}
.sec03 .progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  z-index: 4;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}
@media screen and (max-width: 650px) {
  .sec03 .progress {
    top: 0;
    left: 0;
    bottom: auto;
    width: 6px;
    height: 100%;
    transform: scaleX(1) scaleY(0);
    transform-origin: center top;
  }
}
.sec03 .box {
  position: absolute;
  left: 4rem;
  bottom: 6rem;
  z-index: 10;
  font-family: var(--font-en);
  font-weight: 4000;
  font-size: clamp(3.5rem, calc(2.9230769231rem + 2.3076923077vw), 5rem);
  line-height: 1;
  text-align: right;
  transform: translateY(0.75rem);
}
@media screen and (max-width: 650px) {
  .sec03 .box {
    left: 2rem;
    bottom: 3rem;
    font-size: 2rem;
  }
}
.sec03 .box .num {
  font-size: 2em;
}

.sec04 {
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .sec04 {
    padding: 4rem 2rem 3rem;
  }
}
.sec04 {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
}
.sec04 .inner {
  display: flex;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 650px) {
  .sec04 .inner {
    flex-direction: column;
  }
}
.sec04 .inner .container .title .ja {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  line-height: 1;
}
.sec04 .inner .container .title .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(2.75rem, calc(-0.0384615385rem + 11.1538461538vw), 10rem);
  line-height: 1;
}
.sec04 .inner .container .title .lead {
  width: 40vw;
  max-width: 600px;
  display: block;
  margin-top: 2rem;
  font-family: var(--font-ja-sans);
  font-weight: 200;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  line-height: 1.8;
}
@media screen and (max-width: 650px) {
  .sec04 .inner .container .title .lead {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 650px) {
  .sec04 .inner .container .title .lead {
    width: 100%;
  }
}
.sec04 .inner .container .visit {
  position: relative;
  z-index: 4;
  margin: 0 auto;
  margin-top: 5rem;
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 650px) {
  .sec04 .inner .container .visit {
    width: 100px;
    height: 100px;
  }
}
.sec04 .inner .container .visit .btn {
  width: 100%;
  height: 100%;
}
.sec04 .inner .container .visit .btn .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .sec04 .inner .container .visit .btn .txt {
    font-size: 0.5rem;
  }
}
.sec04 .inner .container .visit .btn .ring {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform-origin: center;
}
.sec04 .inner .container .visit .btn .ring .svg .c-txt {
  font-family: var(--font-en);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  fill: white;
}
.sec04 .inner .container .visit .btn .ring .svg .c-txt {
  fill: var(--primary-color);
}
@media screen and (max-width: 650px) {
  .sec04 .inner .container .visit {
    margin-top: 2rem;
    margin-left: 0;
    margin-right: auto;
  }
}
.sec04 .inner .canvas {
  align-self: center;
  height: 100%;
  width: 50%;
  max-width: 600px;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .sec04 .inner .canvas {
    width: 100%;
    margin: 0 auto;
    margin-top: 5rem;
    transform: translateY(-100px);
  }
}
.sec04 .inner .canvas .canvas-inner {
  position: relative;
  padding-bottom: 130%;
}
.sec04 .inner .canvas .canvas-inner .img {
  position: absolute;
  aspect-ratio: 3/4;
  margin: auto 0;
  border-radius: 10px;
  overflow: hidden;
}
.sec04 .inner .canvas .canvas-inner .img-no1 {
  top: 0;
  right: 0;
  width: 60%;
  max-width: 450px;
}
.sec04 .inner .canvas .canvas-inner .img-no2 {
  left: 0;
  bottom: 0;
  width: 50%;
  max-width: 300px;
}
.sec04 .inner .canvas .canvas-inner .img .window {
  position: relative;
  width: 100%;
  height: 100%;
}
.sec04 .inner .canvas .canvas-inner .img .window > img {
  position: absolute;
  top: -20%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

.sec05 {
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .sec05 {
    padding: 4rem 2rem 3rem;
  }
}
.sec05 {
  color: #fff;
  background-color: var(--primary-color);
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
}
.sec05 .title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 650px) {
  .sec05 .title {
    margin-bottom: 2.5rem;
  }
}
.sec05 .title .ja {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  line-height: 1;
  text-align: center;
}
.sec05 .title .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(2.75rem, calc(-0.0384615385rem + 11.1538461538vw), 10rem);
  line-height: 1;
  text-align: center;
}
.sec05 .grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: flex-start;
  gap: 10rem;
}
@media screen and (max-width: 650px) {
  .sec05 .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.sec05 .grid .map {
  min-width: 250px;
}
.sec05 .grid .map .img {
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 10px;
}
.sec05 .grid .map .img > iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 650px) {
  .sec05 .grid .map .img {
    aspect-ratio: 16/9;
  }
}
.sec05 .grid .map .desc {
  font-family: var(--font-ja-sans);
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  line-height: 1.5;
  letter-spacing: 0.2rem;
}
.sec05 .grid .detail .section {
  margin-bottom: 3rem;
}
.sec05 .grid .detail .section .head {
  padding-bottom: 1rem;
  font-family: var(--font-ja);
  font-size: 1.25rem;
  line-height: 1;
  border-bottom: 1px solid #fff;
}
.sec05 .grid .detail .section .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
.sec05 .grid .detail .section .row .item {
  font-family: var(--font-ja-sans);
  font-weight: 200;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  line-height: 1;
}
.sec05 .grid .detail .section .row .item .price {
  margin-right: 0.5rem;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.5em;
}
.sec05 .grid .detail .section .divide {
  margin: 0;
  border: none;
  border-top: 1px dashed #fff;
}
.sec05 .grid .detail .section .list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}
.sec05 .grid .detail .section .list .item {
  font-family: var(--font-ja-sans);
  font-weight: 200;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  line-height: 1;
}
.sec05 .grid .visit {
  position: relative;
  z-index: 4;
  margin-left: auto;
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 650px) {
  .sec05 .grid .visit {
    width: 100px;
    height: 100px;
  }
}
.sec05 .grid .visit .btn {
  width: 100%;
  height: 100%;
}
.sec05 .grid .visit .btn .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .sec05 .grid .visit .btn .txt {
    font-size: 0.5rem;
  }
}
.sec05 .grid .visit .btn .ring {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform-origin: center;
}
.sec05 .grid .visit .btn .ring .svg .c-txt {
  font-family: var(--font-en);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  fill: white;
}
@media screen and (max-width: 650px) {
  .sec05 .grid .visit {
    margin-left: 0;
    margin-right: auto;
  }
}

.sec06 {
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .sec06 {
    padding: 4rem 2rem 3rem;
  }
}
.sec06 {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
}
.sec06 .title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 650px) {
  .sec06 .title {
    margin-bottom: 2.5rem;
  }
}
.sec06 .title .ja {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  line-height: 1;
  text-align: center;
}
.sec06 .title .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(2.75rem, calc(-0.0384615385rem + 11.1538461538vw), 10rem);
  line-height: 1;
  text-align: center;
}
.sec06 .list {
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--primary-color);
}
.sec06 .list .accordion {
  padding: clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem) 0;
  font-family: var(--font-ja-sans);
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  border-bottom: 1px solid var(--primary-color);
}
.sec06 .list .accordion .question .btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.sec06 .list .accordion .question .btn .plus {
  --scale-v: 1;
  --rotate-h: 0deg;
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 1rem;
}
@media screen and (max-width: 650px) {
  .sec06 .list .accordion .question .btn .plus {
    width: 19px;
    height: 19px;
  }
}
.sec06 .list .accordion .question .btn .plus::before, .sec06 .list .accordion .question .btn .plus::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--primary-color);
}
.sec06 .list .accordion .question .btn .plus::before {
  width: 100%;
  height: 1px;
  transform: scaleX(var(--scale-v));
}
.sec06 .list .accordion .question .btn .plus::after {
  width: 1px;
  height: 100%;
  transform: rotate(var(--rotate-h));
}
.sec06 .list .answer {
  height: 0;
  overflow: hidden;
}
.sec06 .list .answer .inner {
  padding: clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem) clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem) 0;
  line-height: 1.5;
}
.sec06 .box {
  max-width: 1440px;
  margin: 0 auto;
}
.sec06 .box .visit {
  position: relative;
  z-index: 4;
  margin-left: auto;
  margin-top: 2rem;
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 650px) {
  .sec06 .box .visit {
    width: 100px;
    height: 100px;
  }
}
.sec06 .box .visit .btn {
  width: 100%;
  height: 100%;
}
.sec06 .box .visit .btn .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .sec06 .box .visit .btn .txt {
    font-size: 0.5rem;
  }
}
.sec06 .box .visit .btn .ring {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform-origin: center;
}
.sec06 .box .visit .btn .ring .svg .c-txt {
  font-family: var(--font-en);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  fill: white;
}
@media screen and (max-width: 650px) {
  .sec06 .box .visit {
    margin-left: 0;
    margin-right: auto;
  }
}
.sec06 .box .visit .btn .ring .svg .c-txt {
  fill: var(--primary-color);
}

.sec07 {
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .sec07 {
    padding: 4rem 2rem 3rem;
  }
}
.sec07 {
  color: #fff;
  background-color: var(--primary-color);
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
}
.sec07 .title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 650px) {
  .sec07 .title {
    margin-bottom: 2.5rem;
  }
}
.sec07 .title .ja {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  line-height: 1;
  text-align: center;
}
.sec07 .title .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(2.75rem, calc(-0.0384615385rem + 11.1538461538vw), 10rem);
  line-height: 1;
  text-align: center;
}
.sec07 .grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 650px) {
  .sec07 .grid {
    grid-template-columns: 1fr;
  }
}
.sec07 .grid .card {
  overflow: hidden;
  background-color: var(--accent-color);
  border-radius: 10px;
  transition: opacity 0.2s ease;
}
.sec07 .grid .card .link {
  display: flex;
  gap: 2rem;
  color: var(--primary-color);
}
@media screen and (max-width: 650px) {
  .sec07 .grid .card .link {
    gap: 1rem;
  }
}
.sec07 .grid .card .link .img {
  width: 45%;
}
.sec07 .grid .card .link .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec07 .grid .card .link .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 1.25em 1.25em 1em 0;
  font-family: var(--font-ja-sans);
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
}
.sec07 .grid .card .link .content .badge {
  margin-bottom: 0.5rem;
  padding: 0.5em 1em;
  color: var(--accent-color);
  font-size: clamp(0.75rem, calc(0.7019230769rem + 0.1923076923vw), 0.875rem);
  line-height: 1;
  background-color: var(--primary-color);
  border-radius: 1000px;
}
.sec07 .grid .card .link .content .txt {
  margin-bottom: 0.5em;
  font-family: var(--font-ja-sans);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.sec07 .grid .card .link .content .date {
  align-self: flex-end;
  margin-top: auto;
  font-family: var(--font-en);
}
.sec07 .grid .card:hover {
  opacity: 0.7;
}
.sec07 .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.sec07 .inner .visit {
  position: relative;
  z-index: 4;
  margin-top: 2rem;
  margin-left: auto;
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 650px) {
  .sec07 .inner .visit {
    width: 100px;
    height: 100px;
  }
}
.sec07 .inner .visit .btn {
  width: 100%;
  height: 100%;
}
.sec07 .inner .visit .btn .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .sec07 .inner .visit .btn .txt {
    font-size: 0.5rem;
  }
}
.sec07 .inner .visit .btn .ring {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform-origin: center;
}
.sec07 .inner .visit .btn .ring .svg .c-txt {
  font-family: var(--font-en);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  fill: white;
}
@media screen and (max-width: 650px) {
  .sec07 .inner .visit {
    margin-left: 0;
    margin-right: auto;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15rem;
  padding: 5rem 0;
  border-top: 1px solid #fff;
  color: #fff;
  background-color: var(--primary-color);
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
}
@media screen and (max-width: 650px) {
  .footer {
    padding: 4rem 0;
  }
}
.footer .symbol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .footer .symbol {
    display: none;
  }
}
.footer .symbol .logo {
  width: 180px;
  margin-bottom: 1rem;
}
.footer .symbol .icon {
  width: 180px;
  margin-bottom: 0.5rem;
}
.footer .symbol .txt {
  font-family: var(--font-ja);
  font-size: 1rem;
}
.footer .list {
  align-self: baseline;
  display: flex;
  gap: 3rem;
  font-family: var(--font-ja-sans);
  font-weight: 200;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  line-height: 1;
}
.footer .list .left .label {
  margin-bottom: 1.5rem;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.footer .list .left .item {
  position: relative;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 650px) {
  .footer .list .left .item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -0.8rem;
    width: 0.5rem;
    height: 1px;
    background-color: #fff;
  }
}
.footer .list .right .item {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.facilities {
  width: 100%;
  color: #fff;
  background-color: var(--primary-color);
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .facilities {
    padding: 4rem 2rem 3rem;
  }
}
.facilities {
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
  padding-left: 0;
  padding-right: 0;
  line-height: 1;
  overflow: hidden;
}
.facilities .bread {
  width: 100%;
  margin-bottom: 2.5rem;
}
.facilities .bread .list {
  display: flex;
  align-items: center;
  font-family: var(--font-ja);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  white-space: nowrap;
}
.facilities .bread .list .item {
  display: flex;
  align-items: center;
}
.facilities .bread .list .item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
}
.facilities .bread .list .item .link {
  transition: opacity 0.2s ease;
}
.facilities .bread .list .item .link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.facilities .bread {
  margin-left: 4rem;
}
@media screen and (max-width: 650px) {
  .facilities .bread {
    margin-left: 2rem;
  }
}
.facilities .inner {
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 5rem;
  padding: 0 1rem;
}
@media screen and (max-width: 650px) {
  .facilities .inner {
    margin-bottom: 3.5rem;
    padding: 0 1.3333333333rem;
  }
}
.facilities .inner .title {
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 650px) {
  .facilities .inner .title {
    margin-bottom: 5rem;
  }
}
.facilities .inner .title .ja {
  display: block;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  text-align: center;
}
.facilities .inner .title .en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3.5rem, calc(1.7692307692rem + 6.9230769231vw), 8rem);
  font-weight: 400;
  text-align: center;
}
.facilities .inner .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 650px) {
  .facilities .inner .txt {
    flex-direction: column;
    gap: 3.5rem;
  }
}
.facilities .inner .txt .head {
  flex: 1;
  font-family: var(--font-ja);
  font-size: clamp(1.125rem, calc(0.9807692308rem + 0.5769230769vw), 1.5rem);
  letter-spacing: 0.14em;
}
.facilities .inner .txt .head .big {
  display: block;
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, calc(1.7307692308rem + 3.0769230769vw), 4.5rem);
  line-height: 1.25;
  letter-spacing: 0.08em;
}
.facilities .inner .txt .desc {
  flex: 1;
  font-family: var(--font-ja-sans);
  font-size: clamp(0.875rem, calc(0.7307692308rem + 0.5769230769vw), 1.25rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 2.4;
}
.facilities .content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(10rem, calc(7.6923076923rem + 9.2307692308vw), 16rem);
  width: 100%;
}
@media screen and (max-width: 650px) {
  .facilities .content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(10rem, calc(8.0769230769rem + 7.6923076923vw), 15rem);
  }
}
.facilities .content .item {
  position: relative;
  padding: 2.5rem;
  overflow-wrap: break-word;
  background-size: cover;
  background-position: center;
}
.facilities .content .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
}
@media screen and (max-width: 650px) {
  .facilities .content .item {
    padding: 2rem 1rem;
  }
}
.facilities .content .item .label {
  position: relative;
  z-index: 3;
}
.facilities .content .item .label .ja {
  display: block;
  font-family: var(--font-ja);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
}
.facilities .content .item .label .en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3rem, calc(2.4230769231rem + 2.3076923077vw), 4.5rem);
  font-weight: 400;
}
.facilities .content .ofuro {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media screen and (max-width: 650px) {
  .facilities .content .ofuro {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.facilities .content .sauna {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media screen and (max-width: 650px) {
  .facilities .content .sauna {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 5;
  }
}
.facilities .content .gaikiyoku {
  grid-column-start: 9;
  grid-column-end: 13;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media screen and (max-width: 650px) {
  .facilities .content .gaikiyoku {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 5;
  }
}
.facilities .content .cold {
  grid-column-start: 1;
  grid-column-end: 7;
  grid-row-start: 3;
  grid-row-end: 4;
}
@media screen and (max-width: 650px) {
  .facilities .content .cold {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 6;
  }
}
.facilities .content .work {
  grid-column-start: 1;
  grid-column-end: 7;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media screen and (max-width: 650px) {
  .facilities .content .work {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 6;
    grid-row-end: 7;
  }
}
.facilities .content .restaurant {
  grid-column-start: 7;
  grid-column-end: 10;
  grid-row-start: 3;
  grid-row-end: 5;
}
@media screen and (max-width: 650px) {
  .facilities .content .restaurant {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 7;
    grid-row-end: 9;
  }
}
.facilities .content .relaxation {
  grid-column-start: 10;
  grid-column-end: 13;
  grid-row-start: 3;
  grid-row-end: 5;
}
@media screen and (max-width: 650px) {
  .facilities .content .relaxation {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 7;
    grid-row-end: 9;
  }
}

.faci-sub {
  width: 100%;
  color: #fff;
  background-color: var(--primary-color);
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .faci-sub {
    padding: 4rem 2rem 3rem;
  }
}
.faci-sub {
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
  padding-left: 0;
  padding-right: 0;
  line-height: 1;
  overflow: hidden;
}
.faci-sub .bread {
  width: 100%;
  margin-bottom: 2.5rem;
}
.faci-sub .bread .list {
  display: flex;
  align-items: center;
  font-family: var(--font-ja);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  white-space: nowrap;
}
.faci-sub .bread .list .item {
  display: flex;
  align-items: center;
}
.faci-sub .bread .list .item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
}
.faci-sub .bread .list .item .link {
  transition: opacity 0.2s ease;
}
.faci-sub .bread .list .item .link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.faci-sub .bread {
  margin-left: 4rem;
  margin-bottom: 9rem;
}
@media screen and (max-width: 650px) {
  .faci-sub .bread {
    margin-left: 1rem;
    margin-bottom: 5rem;
  }
}
.faci-sub .content .heading {
  margin-bottom: 2.5rem;
  font-family: var(--font-ja);
  font-size: clamp(2.5rem, calc(2.1153846154rem + 1.5384615385vw), 3.5rem);
  text-align: center;
  line-height: 1.25;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .heading {
    text-align: left;
    padding: 0 1.3333333333rem;
  }
}
.faci-sub .content .desc {
  margin-bottom: 5rem;
  font-family: var(--font-ja-sans);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  font-weight: 400;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .desc {
    text-align: left;
    padding: 0 1.3333333333rem;
    margin-bottom: 2.5rem;
  }
}
.faci-sub .content .bar-img {
  height: 100%;
  aspect-ratio: 16/6;
  margin: 0 2.5rem;
  margin-bottom: 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .bar-img {
    margin: 0 0 5rem;
  }
}
.faci-sub .content .bar-img .window {
  position: relative;
  width: 100%;
  height: 100%;
}
.faci-sub .content .bar-img .window > img {
  position: absolute;
  top: -20%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.faci-sub .content .cols-img-txt {
  display: flex;
  gap: 2rem;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5rem;
  padding-right: clamp(0.25rem, calc(-3.5rem + 15vw), 10rem);
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-img-txt {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.faci-sub .content .cols-img-txt .col .txt {
  font-family: var(--font-ja-sans);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  font-weight: 400;
  line-height: 2.2;
}
.faci-sub .content .cols-img-txt .col-01 {
  align-self: center;
  padding-bottom: 12rem;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-img-txt .col-01 {
    margin-bottom: 2rem;
    padding: 0 1.3333333333rem;
  }
}
.faci-sub .content .cols-img-txt .col-01 .caption {
  margin-bottom: 1.5rem;
  font-family: var(--font-ja);
  font-size: clamp(2rem, calc(1.6153846154rem + 1.5384615385vw), 3rem);
  line-height: 1.5;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-img-txt .col-01 .caption {
    margin-bottom: 1rem;
  }
}
.faci-sub .content .cols-img-txt .col-01 .txt {
  width: 90%;
  max-width: 35rem;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-img-txt .col-01 .txt {
    width: 100%;
  }
}
.faci-sub .content .cols-img-txt .col-01 .txt .line {
  display: block;
}
.faci-sub .content .cols-img-txt .col-01 .txt .line-01 {
  margin-bottom: 2em;
}
.faci-sub .content .cols-img-txt .col-02 {
  order: -1;
  width: calc(100% - 400px);
  max-width: 580px;
  min-width: 300px;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-img-txt .col-02 {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0;
  }
}
.faci-sub .content .cols-img-txt .col-02 .img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1rem;
}
.faci-sub .content .cols-img-txt .col-02 .img .window {
  position: relative;
  width: 100%;
  height: 100%;
}
.faci-sub .content .cols-img-txt .col-02 .img .window > img {
  position: absolute;
  top: -20%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.faci-sub .content .cols-img-txt .col-02 .txt {
  width: 75%;
  margin-left: auto;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-img-txt .col-02 .txt {
    width: 100%;
    padding: 0 1.3333333333rem;
  }
}
.faci-sub .content .row-img {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 14rem;
}
.faci-sub .content .row-img .img {
  width: auto;
}
.faci-sub .content .row-img .img-001 {
  align-self: flex-end;
  height: 20rem;
  aspect-ratio: 3/4;
  transform: translateY(7rem);
}
.faci-sub .content .row-img .img-002 {
  align-self: center;
  height: 15rem;
  aspect-ratio: 3/2;
  transform: translateY(2rem);
}
.faci-sub .content .row-img .img-003 {
  align-self: flex-end;
  height: 20rem;
  aspect-ratio: 2/3;
  transform: translateY(4rem);
}
.faci-sub .content .row-img .img-004 {
  height: 35rem;
  aspect-ratio: 1/1;
}
.faci-sub .content .row-img .img {
  overflow: hidden;
}
.faci-sub .content .row-img .img .window {
  position: relative;
  width: 100%;
  height: 100%;
}
.faci-sub .content .row-img .img .window > img {
  position: absolute;
  top: -20%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.faci-sub .content .cols-txt-img {
  display: flex;
  gap: 2rem;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5rem;
  padding-left: clamp(0.25rem, calc(-3.5rem + 15vw), 10rem);
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-txt-img {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.faci-sub .content .cols-txt-img .col .txt {
  font-family: var(--font-ja-sans);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  font-weight: 400;
  line-height: 2.2;
}
.faci-sub .content .cols-txt-img .col-01 {
  align-self: center;
  padding-bottom: 12rem;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-txt-img .col-01 {
    margin-bottom: 2rem;
    padding: 0 1.3333333333rem;
  }
}
.faci-sub .content .cols-txt-img .col-01 .caption {
  margin-bottom: 1.5rem;
  font-family: var(--font-ja);
  font-size: clamp(2rem, calc(1.6153846154rem + 1.5384615385vw), 3rem);
  line-height: 1.5;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-txt-img .col-01 .caption {
    margin-bottom: 1rem;
  }
}
.faci-sub .content .cols-txt-img .col-01 .txt {
  width: 90%;
  max-width: 35rem;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-txt-img .col-01 .txt {
    width: 100%;
  }
}
.faci-sub .content .cols-txt-img .col-01 .txt .line {
  display: block;
}
.faci-sub .content .cols-txt-img .col-01 .txt .line-01 {
  margin-bottom: 2em;
}
.faci-sub .content .cols-txt-img .col-02 {
  width: calc(100% - 400px);
  max-width: 580px;
  min-width: 300px;
  margin-left: auto;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-txt-img .col-02 {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0;
  }
}
.faci-sub .content .cols-txt-img .col-02 .img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1rem;
}
.faci-sub .content .cols-txt-img .col-02 .img .window {
  position: relative;
  width: 100%;
  height: 100%;
}
.faci-sub .content .cols-txt-img .col-02 .img .window > img {
  position: absolute;
  top: -20%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.faci-sub .content .cols-txt-img .col-02 .txt {
  width: 75%;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .faci-sub .content .cols-txt-img .col-02 .txt {
    width: 100%;
    padding: 0 1.3333333333rem;
  }
}
.faci-sub .grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(10rem, calc(7.6923076923rem + 9.2307692308vw), 16rem);
  width: 100%;
}
@media screen and (max-width: 650px) {
  .faci-sub .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 12.5rem;
  }
}
.faci-sub .grid .item {
  position: relative;
  padding: 2.5rem;
  overflow-wrap: break-word;
  background-size: cover;
  background-position: center;
}
.faci-sub .grid .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
}
@media screen and (max-width: 650px) {
  .faci-sub .grid .item {
    padding: 2rem 1rem;
  }
}
.faci-sub .grid .item .label {
  position: relative;
  z-index: 3;
}
.faci-sub .grid .item .label .ja {
  display: block;
  font-family: var(--font-ja);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
}
.faci-sub .grid .item .label .en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3rem, calc(2.4230769231rem + 2.3076923077vw), 4.5rem);
  font-weight: 400;
}
.faci-sub .grid .ofuro {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
  background-color: red;
}
@media screen and (max-width: 650px) {
  .faci-sub .grid .ofuro {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.faci-sub .grid .sauna {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 3;
  background-color: blue;
}
@media screen and (max-width: 650px) {
  .faci-sub .grid .sauna {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 5;
  }
}
.faci-sub .grid .gaikiyoku {
  grid-column-start: 9;
  grid-column-end: 13;
  grid-row-start: 1;
  grid-row-end: 3;
  background-color: yellow;
}
@media screen and (max-width: 650px) {
  .faci-sub .grid .gaikiyoku {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 5;
  }
}
.faci-sub .grid .cold {
  grid-column-start: 1;
  grid-column-end: 7;
  grid-row-start: 3;
  grid-row-end: 4;
  background-color: green;
}
@media screen and (max-width: 650px) {
  .faci-sub .grid .cold {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 6;
  }
}
.faci-sub .grid .work {
  grid-column-start: 1;
  grid-column-end: 7;
  grid-row-start: 4;
  grid-row-end: 5;
  background-color: purple;
}
@media screen and (max-width: 650px) {
  .faci-sub .grid .work {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 6;
    grid-row-end: 7;
  }
}
.faci-sub .grid .restaurant {
  grid-column-start: 7;
  grid-column-end: 10;
  grid-row-start: 3;
  grid-row-end: 5;
  background-color: pink;
}
@media screen and (max-width: 650px) {
  .faci-sub .grid .restaurant {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 7;
    grid-row-end: 9;
  }
}
.faci-sub .grid .relaxation {
  grid-column-start: 10;
  grid-column-end: 13;
  grid-row-start: 3;
  grid-row-end: 5;
  background-color: orange;
}
@media screen and (max-width: 650px) {
  .faci-sub .grid .relaxation {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 7;
    grid-row-end: 9;
  }
}

.relax {
  width: 100%;
  color: #fff;
  background-color: var(--primary-color);
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .relax {
    padding: 4rem 2rem 3rem;
  }
}
.relax {
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
  padding-left: 0;
  padding-right: 0;
  line-height: 1;
  overflow: hidden;
}
.relax .bread {
  width: 100%;
  margin-bottom: 2.5rem;
}
.relax .bread .list {
  display: flex;
  align-items: center;
  font-family: var(--font-ja);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  white-space: nowrap;
}
.relax .bread .list .item {
  display: flex;
  align-items: center;
}
.relax .bread .list .item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
}
.relax .bread .list .item .link {
  transition: opacity 0.2s ease;
}
.relax .bread .list .item .link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.relax .bread {
  margin-left: 4rem;
  margin-bottom: 9rem;
}
@media screen and (max-width: 650px) {
  .relax .bread {
    margin-left: 1rem;
    margin-bottom: 5rem;
  }
}
.relax .content .heading {
  margin-bottom: 2.5rem;
  font-family: var(--font-ja);
  font-size: clamp(2.5rem, calc(2.1153846154rem + 1.5384615385vw), 3.5rem);
  text-align: center;
  line-height: 1.25;
}
@media screen and (max-width: 650px) {
  .relax .content .heading {
    text-align: left;
    padding: 0 1.3333333333rem;
  }
}
.relax .content .desc {
  margin-bottom: 5rem;
  font-family: var(--font-ja-sans);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  font-weight: 400;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 650px) {
  .relax .content .desc {
    text-align: left;
    padding: 0 2rem;
    margin-bottom: 2.5rem;
  }
}
.relax .content .inner {
  max-width: 895px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (max-width: 650px) {
  .relax .content .inner {
    padding: 0 2rem;
  }
}
.relax .content .inner .article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.relax .content .inner .article .flex {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 650px) {
  .relax .content .inner .article .flex {
    flex-direction: column;
  }
}
.relax .content .inner .article .flex .detail {
  flex: 1;
}
.relax .content .inner .article .flex .detail .title {
  font-family: var(--font-ja);
  font-size: clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem);
}
.relax .content .inner .article .flex .detail .divide {
  margin: clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem) 0;
  border: none;
  border-bottom: 1px solid #fff;
}
.relax .content .inner .article .flex .detail .letter {
  font-family: var(--font-ja-sans);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  font-weight: 400;
  line-height: 2;
}
.relax .content .inner .article .flex .detail .letter .txt {
  margin-bottom: 2rem;
}
.relax .content .inner .article .flex .detail .letter .list {
  list-style: inside;
}
.relax .content .inner .article .flex .img {
  flex: 1;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
.relax .content .inner .article .flex .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 650px) {
  .relax .content .inner .article .flex .img {
    order: -1;
  }
}
.relax .content .inner .btn {
  display: inline-flex;
  align-items: center;
  justify-items: center;
  gap: 1em;
  padding: 1.75rem 4em;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.8076923077rem + 0.7692307692vw), 1.5rem);
  border: 1px solid #fff;
  border-radius: 999px;
}
.relax .content .inner .btn::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-top: 0.1em;
}
@media screen and (max-width: 650px) {
  .relax .content .inner .btn::before {
    margin-top: 0.2em;
  }
}
.relax .content .inner .btn .txt {
  line-height: 1;
}

.goods {
  width: 100%;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .goods {
    padding: 4rem 2rem 3rem;
  }
}
.goods {
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
  line-height: 1;
}
.goods .bread {
  width: 100%;
  margin-bottom: 2.5rem;
}
.goods .bread .list {
  display: flex;
  align-items: center;
  font-family: var(--font-ja);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  white-space: nowrap;
}
.goods .bread .list .item {
  display: flex;
  align-items: center;
}
.goods .bread .list .item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
}
.goods .bread .list .item .link {
  transition: opacity 0.2s ease;
}
.goods .bread .list .item .link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.goods .inner {
  max-width: 1126px;
  margin: 0 auto;
}
.goods .inner .title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 650px) {
  .goods .inner .title {
    margin-bottom: 2.5rem;
  }
}
.goods .inner .title .ja {
  display: block;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  text-align: center;
}
.goods .inner .title .en {
  display: block;
  margin-bottom: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  font-family: var(--font-en);
  font-size: clamp(3.5rem, calc(1.7692307692rem + 6.9230769231vw), 8rem);
  font-weight: 400;
  text-align: center;
}
.goods .inner .title .desc {
  display: block;
  width: 60%;
  margin: 0 auto;
  font-family: var(--font-ja-sans);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 650px) {
  .goods .inner .title .desc {
    width: 100%;
    text-align: left;
  }
}
.goods .inner .container .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  gap: clamp(1rem, calc(0.6153846154rem + 1.5384615385vw), 2rem);
  row-gap: clamp(2rem, calc(1.2307692308rem + 3.0769230769vw), 4rem);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 650px) {
  .goods .inner .container .grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }
}
.goods .inner .container .grid .item .img {
  display: grid;
  position: relative;
  aspect-ratio: 3/4;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .goods .inner .container .grid .item .img {
    margin-bottom: 1rem;
  }
}
.goods .inner .container .grid .item .img > img {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goods .inner .container .grid .item .img .imgs {
  grid-area: 1/1;
}
.goods .inner .container .grid .item .img .imgs .hover {
  display: grid;
}
.goods .inner .container .grid .item .img .imgs .hover > img {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.5s ease;
}
.goods .inner .container .grid .item .img .imgs .hover:hover > img:last-child {
  opacity: 0;
}
.goods .inner .container .grid .item .img .btn {
  position: absolute;
  width: clamp(0.75rem, calc(0.4615384615rem + 1.1538461538vw), 1.5rem);
  height: clamp(0.75rem, calc(0.4615384615rem + 1.1538461538vw), 1.5rem);
  border-radius: 10px;
  bottom: clamp(0.5rem, calc(0.3076923077rem + 0.7692307692vw), 1rem);
}
@media screen and (max-width: 650px) {
  .goods .inner .container .grid .item .img .btn {
    border-radius: 5px;
  }
}
.goods .inner .container .grid .item .img .btn-L {
  right: clamp(1.75rem, calc(1.0769230769rem + 2.6923076923vw), 3.5rem);
}
.goods .inner .container .grid .item .img .btn-R {
  right: clamp(0.5rem, calc(0.3076923077rem + 0.7692307692vw), 1rem);
}
.goods .inner .container .grid .item .img .btn-white {
  background-color: var(--goods-white);
}
.goods .inner .container .grid .item .img .btn-pink {
  background-color: var(--goods-pink);
}
.goods .inner .container .grid .item .img .btn-blue {
  background-color: var(--goods-blue);
}
.goods .inner .container .grid .item .img .btn-black {
  background-color: var(--goods-darkBlue);
}
.goods .inner .container .grid .item .label {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
  font-family: var(--font-en);
  font-size: clamp(0.75rem, calc(0.7019230769rem + 0.1923076923vw), 0.875rem);
  font-weight: 400;
  background-color: var(--accent-color);
  border-radius: 999px;
}
.goods .inner .container .grid .item .name {
  margin-bottom: 1rem;
  font-family: var(--font-ja-sans);
  font-size: clamp(1rem, calc(0.8076923077rem + 0.7692307692vw), 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}
.goods .inner .container .grid .item .desc {
  margin-bottom: 1rem;
  font-family: var(--font-ja-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
.goods .inner .container .grid .item .line {
  margin: 0;
  margin-bottom: 1rem;
  border: none;
  border-bottom: 1px solid var(--primary-color);
}
.goods .inner .container .grid .item .price {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem);
  font-weight: 400;
}
.goods .inner .container .grid .item .price .tax {
  font-family: var(--font-ja);
  font-size: clamp(0.375rem, calc(0.2307692308rem + 0.5769230769vw), 0.75rem);
}
.goods .inner .container .pagination {
  position: relative;
  z-index: 1;
}
.goods .inner .container .pagination .list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.goods .inner .container .pagination .list .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}
.goods .inner .container .pagination .list .btn-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
  transform: translate(-30%, -50%) rotate(-45deg);
  transition: border-color 0.3s;
}
.goods .inner .container .pagination .list .btn-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: translate(-70%, -50%) rotate(45deg);
  transition: border-color 0.3s;
}
.goods .inner .container .pagination .list .btn-number.is-active {
  color: var(--secondary-color);
}
.goods .inner .container .pagination .list .btn-number.is-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-color);
  border-radius: 999px;
}

.news {
  width: 100%;
  color: #fff;
  background-color: var(--primary-color);
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .news {
    padding: 4rem 2rem 3rem;
  }
}
.news {
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
  line-height: 1;
}
.news .bread {
  width: 100%;
  margin-bottom: 2.5rem;
}
.news .bread .list {
  display: flex;
  align-items: center;
  font-family: var(--font-ja);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  white-space: nowrap;
}
.news .bread .list .item {
  display: flex;
  align-items: center;
}
.news .bread .list .item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
}
.news .bread .list .item .link {
  transition: opacity 0.2s ease;
}
.news .bread .list .item .link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.news .inner {
  max-width: 1126px;
  margin: 0 auto;
}
.news .inner .title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 650px) {
  .news .inner .title {
    margin-bottom: 2.5rem;
  }
}
.news .inner .title .ja {
  display: block;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  text-align: center;
}
.news .inner .title .en {
  display: block;
  margin-bottom: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  font-family: var(--font-en);
  font-size: clamp(3.5rem, calc(1.7692307692rem + 6.9230769231vw), 8rem);
  font-weight: 400;
  text-align: center;
}
.news .inner .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media screen and (max-width: 650px) {
  .news .inner .grid {
    grid-template-columns: 1fr;
  }
}
.news .inner .grid .card {
  overflow: hidden;
  background-color: var(--accent-color);
  border-radius: 10px;
  transition: opacity 0.2s ease;
}
.news .inner .grid .card .link {
  display: flex;
  gap: 2rem;
  color: var(--primary-color);
}
@media screen and (max-width: 650px) {
  .news .inner .grid .card .link {
    gap: 1rem;
  }
}
.news .inner .grid .card .link .img {
  width: 45%;
}
.news .inner .grid .card .link .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .inner .grid .card .link .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 1.25em 1.25em 1em 0;
  font-family: var(--font-ja-sans);
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
}
.news .inner .grid .card .link .content .badge {
  margin-bottom: 0.5rem;
  padding: 0.5em 1em;
  color: var(--accent-color);
  font-size: clamp(0.75rem, calc(0.7019230769rem + 0.1923076923vw), 0.875rem);
  line-height: 1;
  background-color: var(--primary-color);
  border-radius: 1000px;
}
.news .inner .grid .card .link .content .txt {
  margin-bottom: 0.5em;
  font-family: var(--font-ja-sans);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.news .inner .grid .card .link .content .date {
  align-self: flex-end;
  margin-top: auto;
  font-family: var(--font-en);
}

.faq {
  width: 100%;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 8rem 4rem 6rem;
}
@media screen and (max-width: 650px) {
  .faq {
    padding: 4rem 2rem 3rem;
  }
}
.faq {
  background-image: var(--noise-pattern);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 150px;
  background-blend-mode: overlay;
  line-height: 1;
}
.faq .bread {
  width: 100%;
  margin-bottom: 2.5rem;
}
.faq .bread .list {
  display: flex;
  align-items: center;
  font-family: var(--font-ja);
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  white-space: nowrap;
}
.faq .bread .list .item {
  display: flex;
  align-items: center;
}
.faq .bread .list .item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
}
.faq .bread .list .item .link {
  transition: opacity 0.2s ease;
}
.faq .bread .list .item .link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.faq .inner {
  max-width: 894px;
  margin: 0 auto;
}
.faq .inner .title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 650px) {
  .faq .inner .title {
    margin-bottom: 2.5rem;
  }
}
.faq .inner .title .ja {
  display: block;
  font-family: var(--font-ja);
  font-size: clamp(1rem, calc(0.9038461538rem + 0.3846153846vw), 1.25rem);
  text-align: center;
}
.faq .inner .title .en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3.5rem, calc(1.7692307692rem + 6.9230769231vw), 8rem);
  font-weight: 400;
  text-align: center;
}
.faq .content {
  border-top: 1px solid var(--primary-color);
}
.faq .content .accordion {
  padding: clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem) 0;
  font-family: var(--font-ja-sans);
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.8269230769rem + 0.1923076923vw), 1rem);
  border-bottom: 1px solid var(--primary-color);
}
.faq .content .accordion .question .btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
  text-align: left;
}
.faq .content .accordion .question .btn .plus {
  --scale-v: 1;
  --rotate-h: 0deg;
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 1rem;
}
@media screen and (max-width: 650px) {
  .faq .content .accordion .question .btn .plus {
    width: 19px;
    height: 19px;
  }
}
.faq .content .accordion .question .btn .plus::before, .faq .content .accordion .question .btn .plus::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--primary-color);
}
.faq .content .accordion .question .btn .plus::before {
  width: 100%;
  height: 1px;
  transform: scaleX(var(--scale-v));
}
.faq .content .accordion .question .btn .plus::after {
  width: 1px;
  height: 100%;
  transform: rotate(var(--rotate-h));
}
.faq .content .answer {
  height: 0;
  overflow: hidden;
}
.faq .content .answer .inner {
  padding: clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem) clamp(1.5rem, calc(1.3076923077rem + 0.7692307692vw), 2rem) 0;
  line-height: 1.5;
}

.teaser {
  width: 100%;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 650px) {
  .teaser {
    font-size: 3.8095238095vw;
  }
}
@media screen and (min-width: 1440px) {
  .teaser {
    font-size: 16px;
  }
}
.teaser .inner {
  display: flex;
  justify-content: center;
  max-width: 1460px;
  height: 100%;
  margin: 0 auto;
  padding-inline: 10px;
}
@media screen and (max-width: 650px) {
  .teaser .inner {
    flex-direction: column;
    height: 100%;
  }
}
.teaser .inner-left {
  width: 50%;
  padding-left: 8em;
}
@media screen and (max-width: 650px) {
  .teaser .inner-left {
    position: relative;
    top: 0;
    justify-content: center;
    width: 100%;
    height: auto;
    overflow: visible;
    margin-bottom: 40px;
    padding-top: 60px;
    padding-left: 0;
  }
}
.teaser .inner-left .symbol {
  position: sticky;
  top: 6em;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.teaser .inner-left .symbol .logo {
  width: 11.5em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 650px) {
  .teaser .inner-left .symbol .logo {
    width: 6em;
    margin-bottom: 0.5em;
  }
}
.teaser .inner-left .symbol .icon {
  width: 11.5em;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 650px) {
  .teaser .inner-left .symbol .icon {
    width: 6em;
    margin-bottom: 0.25em;
  }
}
.teaser .inner-left .symbol .txt {
  display: block;
  margin-bottom: 2em;
  font-family: var(--font-ja);
  font-size: 1.5em;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .teaser .inner-left .symbol .txt {
    margin-bottom: 1.5em;
    font-size: 0.875em;
  }
}
.teaser .inner-left .symbol .txt .copy {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.teaser .inner-left .symbol .icon-box {
  display: flex;
  align-items: center;
  gap: 2em;
}
.teaser .inner-left .symbol .icon-box .insta,
.teaser .inner-left .symbol .icon-box .twitter {
  width: 2em;
}
@media screen and (max-width: 650px) {
  .teaser .inner-left .symbol .icon-box .insta,
  .teaser .inner-left .symbol .icon-box .twitter {
    width: 1.5em;
  }
}
.teaser .inner-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 5rem 7em 5rem 0;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right {
    width: 100%;
    margin-bottom: 5rem;
    padding: 0;
  }
}
.teaser .inner-right .title {
  margin-bottom: 1em;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .title {
    margin-bottom: 0.6em;
  }
}
.teaser .inner-right .title .date {
  display: block;
  margin-bottom: 0.75em;
  font-family: var(--font-ja);
  font-size: 1.5em;
  letter-spacing: 0.4em;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .title .date {
    margin-bottom: 0.2em;
    font-size: 1.375em;
    letter-spacing: 0.4em;
  }
}
.teaser .inner-right .title .open {
  display: block;
  font-family: var(--font-en);
  font-size: 5em;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .title .open {
    font-size: 3.75em;
  }
}
.teaser .inner-right .info {
  display: flex;
  width: 90%;
  margin: 0 auto;
  margin-left: 2em;
  margin-bottom: 1.5em;
  font-family: var(--font-ja);
  font-size: 1.5em;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .info {
    justify-content: center;
    gap: 16px;
    margin-left: 2em;
    margin-bottom: 1.5em;
    font-size: 1em;
  }
}
.teaser .inner-right .info .txt {
  position: relative;
  display: block;
  width: 25%;
  margin-right: 0.75em;
}
.teaser .inner-right .info .txt::after {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .info .txt {
    width: 25%;
    margin: 0;
  }
}
.teaser .inner-right .info .detail {
  display: block;
  width: 75%;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .info .detail {
    width: 75%;
  }
}
.teaser .inner-right .caution {
  width: 90%;
  margin: 0 auto;
  margin-left: 3.25em;
  margin-bottom: 1.5em;
  font-family: var(--font-ja);
  font-size: 0.8em;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .caution {
    justify-content: center;
    gap: 16px;
    margin-left: 2.5em;
    margin-bottom: 1.5em;
    font-size: 0.625em;
  }
}
.teaser .inner-right .caution .txt {
  display: inline-block;
  margin-bottom: 0.5em;
}
.teaser .inner-right .caution .detail {
  display: block;
  width: 97%;
  margin: 0 auto;
  line-height: 1.5;
}
.teaser .inner-right .divide {
  width: 100%;
  margin: 0;
  margin-bottom: 1.5rem;
  border: none;
  border-bottom: 1px solid #fff;
}
.teaser .inner-right .map {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .map {
    flex-direction: column;
  }
}
.teaser .inner-right .map .img {
  width: 15em;
  aspect-ratio: 8/9;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .teaser .inner-right .map .img {
    width: 100%;
  }
}
.teaser .inner-right .map .img > iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teaser .inner-right .map .txt {
  font-family: var(--font-ja);
  font-size: 1em;
  line-height: 1.5;
}
.teaser .inner-right .priceImg {
  width: 100%;
  aspect-ratio: 893/516;
  margin-bottom: 2rem;
}
.teaser .inner-right .priceImg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */