html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
table,
input,
textarea,
select,
option {
  line-height: 1.1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
img {
  vertical-align: top;
}
a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}
html * {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: Shippori Mincho, serif;
  font-size: 1.5625vh;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  background-color: #f8fbf8;
  --header-height: vh(180);
}
.wrap{
  width: 100%;
  overflow: hidden;
}
body.is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
.container {
  width: min(1280px, 100% - 160px);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    width: min(1280px, 100% - 80px);
  }
}
@media (max-width: 767px) {
  .container {
    width: min(1280px, 100% - 32px);
  }
}
.container--960 {
  width: min(960px, 100% - 160px);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container--960 {
    width: min(960px, 100% - 80px);
  }
}
@media (max-width: 767px) {
  .container--960 {
    width: min(960px, 100% - 32px);
  }
}
.container--section-head {
  width: 100%;
  padding-left: calc((100% - 1280px) / 2);
}
@media (max-width: 1399px) {
  .container--section-head {
    padding-left: 80px;
  }
}
@media (max-width: 1024px) {
  .container--section-head {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .container--section-head {
    padding-left: 16px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 40px 50px 40px 40px;
  z-index: 999;
}
.header .header__logo {
  width: 27.24609375vh;
  height: 9.765625vh;
  position: relative;
  z-index: 999;
}
.header .header__logo.is-light svg {
  color: #f8fbf8;
}
.header .header__logo img,
.header .header__logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.header .header__logo svg {
  color: #1c1c1c;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .hamburger {
  z-index: 999;
  position: absolute;
  top: 3.90625vh;
  right: 4.8828125vh;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 100;
}
.header .hamburger.is-light {
  color: #f8fbf8;
}
.header .hamburger.is-light .hamburger__icon span,
.header .hamburger.is-light .hamburger__icon:before,
.header .hamburger.is-light .hamburger__icon:after {
  background-color: currentColor;
}
.header .hamburger .hamburger__text {
  font-family: EB Garamond, serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .hamburger .hamburger__icon {
  position: relative;
  width: 60px;
  height: 15px;
  margin-top: 10px;
}
.header .hamburger .hamburger__icon span,
.header .hamburger .hamburger__icon:before,
.header .hamburger .hamburger__icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
}
.header .hamburger .hamburger__icon:before {
  top: 0;
}
.header .hamburger .hamburger__icon span {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header .hamburger .hamburger__icon:after {
  bottom: 0;
}
.header .hamburger.is-open .hamburger__text {
  opacity: 0;
  visibility: hidden;
}
.header .hamburger.is-open .hamburger__icon:before {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
  background-color: #f8fbf8;
}
.header .hamburger.is-open .hamburger__icon span {
  opacity: 0;
}
.header .hamburger.is-open .hamburger__icon:after {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
  background-color: #f8fbf8;
}
.header .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9;
  background-color: #1c1c1c;
  color: #ecebe7;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header .nav.is-open {
  opacity: 1;
  visibility: visible;
}
.header .nav ul {
  width: min(100%, 600px);
  margin: 0 auto;
  margin-top: 20vh;
}
.header .nav ul li {
  font-size: 2rem;
  text-align: center;
}
.header .nav ul li + li {
  margin-top: 8px;
}
.footer {
  background: url(../../assets/images/top/bg.jpg) repeat;
  color: #ecebe7;
}
.footer .footer__inner {
  width: 100%;
  border-top-left-radius: 200px;
  background-color: #1c1c1c;
  overflow: hidden;
  padding-block: 5.859375vh;
}
.footer .footer__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.footer .footer__logo {
  width: 125px;
  display: block;
  margin-inline: auto;
}
.footer .footer__text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 1.953125vh;
}
.sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
.tablet {
  display: none !important;
}
@media (max-width: 1024px) {
  .tablet {
    display: block !important;
  }
}
.is-lock {
  overflow: hidden !important;
}
.contact__button {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  left: 0.05em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #1c1c1c;
  padding: 16px 24px;
  min-width: 320px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__button:after {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  background: url(../../assets/images/common/arrow_right.svg) no-repeat
    center/contain;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact__button:hover {
  background-color: #1c1c1c;
  color: #fff;
}
.contact__button:hover:after {
  -webkit-transform: translateX(4px);
  transform: translate(4px);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.section-head .section-head__title--en {
  display: block;
  font-family: EB Garamond, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ecebe7;
}
@media (max-width: 1024px) {
  .section-head .section-head__title--en {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .section-head .section-head__title--en {
    font-size: 1.2rem;
  }
}
.section-head .section-head__title--ja {
  font-size: 3.2rem;
  font-weight: 500;
  color: #ecebe7;
  margin-top: 8px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .section-head .section-head__title--ja {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-head .section-head__title--ja {
    font-size: 2.4rem;
  }
}
.section-head svg {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
@media (max-width: 767px) {
  .section-head svg {
    width: 269px;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
.section-head.section-head--white .section-head__title--en {
  color: #f8fbf8;
}
.section-head.section-head--white .section-head__title--ja {
  color: #d1d1d1;
}
.section-head02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3.125vh;
  position: relative;
}
.section-head02:after {
  content: "";
  position: relative;
  height: 1px;
  background-color: #1c1c1c;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.section-head02 .section-head02__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.section-head02 .section-head02__title--en {
  font-family: EB Garamond, serif;
  font-size: 5.859375vh;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.section-head02 .section-head02__title--ja {
  display: block;
  font-size: 1.953125vh;
  font-weight: 600;
  margin-top: 1.5625vh;
}
.section-block {
  -ms-flex-item-align: center;
  align-self: center;
}
.section-block .section-block__title--en {
  display: block;
  font-family: EB Garamond, serif;
  font-size: 1.953125vh;
  font-weight: 400;
  line-height: 1;
}
.section-block .section-block__title--ja {
  font-size: 4.1015625vh;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.78125vh;
}
.section-block .section-block__text {
  font-size: 1.7578125vh;
  line-height: 2.5;
  margin-top: 6.25vh;
}
.g-fade{
  opacity: 0;
  transition: opacity 1.2s ease-out 0.1s;
}
.g-fade.fade-in.is-show{
  opacity: 1;
}
/* .fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out 0.1s;
  transition: opacity 0.8s ease-out 0.1s;
}
.fade-in.active {
  opacity: 1;
}
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease-out,
    -webkit-transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0);
  transition: opacity 0.7s ease-out,
    -webkit-transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0);
  transition: transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0),
    opacity 0.7s ease-out;
  transition: transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0),
    opacity 0.7s ease-out,
    -webkit-transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0);
}
.fade-up.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
} */
@media (max-width: 767px) {
  .fade-up {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
  }
}
.fade-left {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translate(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out,
    -webkit-transform 0.8s ease-out;
}
.fade-left.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translate(0);
}
@media (max-width: 767px) {
  .fade-left {
    -webkit-transform: translateX(0);
    transform: translate(0);
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
  }
}
.fade-right {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translate(-30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out,
    -webkit-transform 0.8s ease-out;
}
.fade-right.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translate(0);
}
@media (max-width: 767px) {
  .fade-right {
    -webkit-transform: translateX(0);
    transform: translate(0);
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
  }
}
.page-top .layout-horizontal {
  position: relative;
  overflow: hidden;
  width: 100vw;
}
.page-top .layout-horizontal__inner {
  display: flex;
  flex-wrap: nowrap;
  will-change: auto;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100vh;
  will-change: transform; */
}
.page-top .layout-horizontal__inner > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.page-top .layout-horizontal__inner .panel{
  min-width: 100vw;
}
.page-top .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.7578125vh 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 17.6vh 4vh;
  position: relative;
  width: 140.625vh;
  background: url(../../assets/images/top/bg.jpg) repeat;
  height: 100vh;
  max-width: 100vw;
}
.page-top .mv:before {
  content: "";
  position: absolute;
  bottom: 3.90625vh;
  right: 4.8828125vh;
  width: 7.91015625vh;
  height: 5.859375vh;
  background: url(../../assets/images/top/key_icon.svg) no-repeat top/contain;
}
.page-top .mv .mv__bg {
  width: 91.30859375vh;
  max-width: 72vw;
  overflow: hidden;
  -webkit-transform: translateX(1.7578125vh);
  transform: translate(1.7578125vh);
  margin-top: 0.87890625vh;
}
.page-top .mv .mv__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-top .mv .mv__content .mv__title {
  font-size: 3.515625vh;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.page-top .mv .mv__content .mv__text {
  font-family: EB Garamond, serif;
  font-size: 1.5625vh;
  font-weight: 400;
  margin-top: 1.953125vh;
}
.page-top .mv .mv-scroll {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.9765625vh;
}
.page-top .mv .mv-scroll .mv-scroll__text {
  display: block;
  font-family: EB Garamond, serif;
  font-size: 1.5625vh;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.page-top .mv .mv-scroll .mv-scroll__line {
  display: block;
  width: 12.109375vh;
  height: 1px;
  background-color: #1c1c1c33;
  overflow: hidden;
  position: relative;
}
.page-top .mv .mv-scroll .mv-scroll__line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #1c1c1c;
  width: 30%;
  -webkit-animation: scrollAnimation 1.5s linear infinite;
  animation: scrollAnimation 1.5s linear infinite;
}
@-webkit-keyframes scrollAnimation {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  to {
    -webkit-transform: translate(300%);
    transform: translate(300%);
  }
}
@keyframes scrollAnimation {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  to {
    -webkit-transform: translate(300%);
    transform: translate(300%);
  }
}
.page-top .intro {
  background: url(../../assets/images/top/bg.jpg) repeat;
  height: 100vh;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.page-top .intro .intro__inner {
  border-top-left-radius: 200px;
  background-color: #1c1c1c;
  color: #ecebe7;
  width: 100%;
  height: 100%;
}
.page-top .intro .intro__wrap {
  padding-block: 19.53125vh 2.734375vh;
  padding-inline: 24.609375vh 19.140625vh;
  display: grid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12.5vh;
  width: 100%;
  height: 100%;
}
.page-top .intro .intro__content {
  margin-top: 12.40234375vh;
  width: 52.5390625vh;
}
.page-top .intro .intro__title {
  font-size: 3.125vh;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.page-top .intro .intro__text {
  font-size: 1.7578125vh;
  line-height: 2.5;
  margin-right: 7.8125vh;
  margin-top: 6.25vh;
}
.page-top .intro .intro__imgs {
  position: relative;
  width: 78.125vh;
}
.page-top .intro .intro__clothing {
  width: 53.7109375vh;
}
.page-top .intro .intro__housing {
  width: 29.296875vh;
  position: absolute;
  top: 32.2265625vh;
  right: 0;
}
.page-top .intro .intro-presented-by {
  width: 42.28515625vh;
  margin-top: 10.64453125vh;
}
.page-top .intro .intro-presented-by__text {
  font-family: EB Garamond, serif;
  font-size: 1.5625vh;
  text-align: center;
}
.page-top .intro .intro-presented-by__logo {
  width: 42.28515625vh;
  margin-top: 3.125vh;
}
.page-top .artisan {
  background: url(../../assets/images/top/bg.jpg) repeat;
  height: 100vh;
  width: 158.69140625vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.page-top .artisan .artisan__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20.01953125vh;
}
.page-top .artisan .artisan__title {
  font-size: 4.1015625vh;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.page-top .artisan .artisan__text {
  font-size: 1.7578125vh;
  font-weight: 400;
  line-height: 2.5;
  margin-top: 6.25vh;
}
.page-top .artisan .artisan__img {
  position: absolute;
  bottom: 0;
  right: 0;
  mix-blend-mode: multiply;
  width: 97.55859375vh;
  overflow-y: hidden;
  margin-bottom: -2.5390625vh;
}
.page-top .design {
  background: #1C1C1C;
  height: 100vh;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.page-top .design .design__inner {
  border-top-left-radius: 200px;
  overflow: hidden;
  background-color: #1c1c1c;
  height: 100%;
  color: #ecebe7;
  padding-right: 29.296875vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 19.53125vh;
}
.page-top .design .design__bg {
  width: 56.640625vh;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-top .design .design__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-top .design .section-block {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-top .design .design-intro {
  margin-top: 33.0078125vh;
  width: 95.703125vh;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-top .design .design-intro .design-intro__detail {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-top .design .design-intro .design-intro__content {
  width: 51.7578125vh;
}
.page-top .design .design-intro .design-intro__title {
  font-size: 1.953125vh;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.page-top .design .design-intro .design-intro__text {
  font-size: 1.3671875vh;
  font-weight: 600;
  line-height: 2;
  margin-top: 2.34375vh;
}
.page-top .design .design-intro .design-intro__text span {
  font-weight: 400;
}
.page-top .design .design-intro .design-intro__img {
  width: 32.71484375vh;
}
.page-top .design .design-intro__showcase {
  margin-top: 2.83203125vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.953125vh;
}
.page-top .design .design-intro__showcase .showcase-block__title {
  font-size: 1.46484375vh;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-bottom: 0.9765625vh;
  border-bottom: 1px solid #ecebe7;
}
.page-top .design .design-intro__showcase .showcase-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.953125vh;
  margin-top: 0.9765625vh;
}
.page-top .design .design-intro__showcase .showcase-block-item {
  width: 17.578125vh;
}
.page-top .design .design-intro__showcase .showcase-block-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-top .design .design-intro__showcase .showcase-block-item__title {
  font-size: 1.171875vh;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 0.78125vh;
}
.page-top .illustration {
  background-color: #1c1c1c;
  height: 100vh;
  width: 120.1171875vh;
  border: solid 1px #1C1C1C;
}
.page-top .illustration .illustration__inner {
  width: 120.1171875vh;
  height: 120.1171875vh;
  background-color: #d9d9d9;
  border-radius: 50%;
  margin-block: -11.328125vh -8.7890625vh;
  position: relative;
  overflow: hidden;
}
.page-top .illustration .illustration__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: EB Garamond, serif;
  font-size: 1.5625vh;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000;
  display: block;
  padding: 10px;
  background-color: #fff;
}
.page-top .illustration .illustration__img {
  width: 100%;
  height: 100%;
}
.page-top .illustration .illustration__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-top .interior {
  background-color: #1c1c1c;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100vh;
}
.page-top .interior .interior__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 9.5703125vh;
  color: #ecebe7;
  padding-inline: 19.53125vh 21.38671875vh;
  width: 100%;
  height: 100%;
}
.page-top .interior .section-block {
  -ms-flex-item-align: center;
  align-self: center;
}
.page-top .interior .interior-showcase {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 97.65625vh;
  background-color: #ecebe7;
  border-top-left-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-block: 19.53125vh 6.640625vh;
  padding-inline: 6.25vh;
}
.page-top .interior .interior-showcase__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.25vh 3.515625vh;
}
.page-top .interior .interior-showcase__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-top .landplan {
  background: url(../../assets/images/top/bg.jpg) repeat;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100vh;
}
.page-top .landplan .landplan__inner {
  width: 100%;
  height: 100%;
  padding-inline: 19.53125vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-top .landplan .landplan__intro {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-top .landplan .landplan__intro-img {
  width: 63.37890625vh;
  margin-left: 19.53125vh;
}
.page-top .landplan .landplan__list {
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.page-top .landplan .landplan__list .landplan-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-inline: 9.765625vh 19.53125vh;
  width: 78.125vh;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.page-top .landplan .landplan__list .landplan-item__wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3.90625vh;
}
.page-top .landplan .landplan__list .landplan-item__content {
  width: min(100%, 34.66796875vh);
  padding-bottom: 6.25vh;
}
.page-top .landplan .landplan__list .landplan-item__title {
  font-size: 2.734375vh;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.page-top .landplan .landplan__list .landplan-item__title .landplan-item__number-box{
  display: none;
}
.page-top .landplan .landplan__list .landplan-item__text--lg {
  font-size: 1.953125vh;
  font-weight: 600;
  line-height: 2;
  margin-top: 2.34375vh;
}
.page-top .landplan .landplan__list .landplan-item__item {
  font-size: 1.46484375vh;
  line-height: 2;
}
.page-top .landplan .landplan__list .landplan-item__text {
  font-size: 1.46484375vh;
  line-height: 2;
  margin-top: 2.34375vh;
}
.page-top .landplan .landplan__list .landplan-item__img {
  width: 15.8203125vh;
  aspect-ratio: 162/120;
  overflow: hidden;
  margin-top: 2.34375vh;
}
.page-top .landplan .landplan__list .landplan-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-top .landplan .landplan__list .landplan-item__number-box {
  position: relative;
  padding-bottom: 6.25vh;
}
.page-top .landplan .landplan__list .landplan-item__number-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.3203125vh;
  height: 2.44140625vh;
  background: url(../../assets/images/top/landplan_icon.svg) no-repeat
    top/contain;
}
.page-top .landplan .landplan__list .landplan-item__number {
  font-family: EB Garamond, serif;
  font-size: 10.7421875vh;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.page-top .landplan .landplan__img {
  width: 40.0390625vh;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 19.53125vh;
}
.page-top .landplan .landplan-plan {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-item-align: center;
  align-self: center;
  padding-inline: 9.765625vh 0;
  width: 70.1171875vh;
}
.page-top .landplan .landplan-plan .landplan-plan__head {
  margin-bottom: 2.34375vh;
}
.page-top .landplan .landplan-plan .landplan-plan__title--en {
  font-family: EB Garamond, serif;
  font-size: 1.953125vh;
  font-weight: 400;
  line-height: 1;
  display: block;
}
.page-top .landplan .landplan-plan .landplan-plan__title--ja {
  font-size: 4.1015625vh;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.78125vh;
}
.page-top .landplan .landplan-plan .landplan-plan__text--lg {
  font-size: 2.34375vh;
  font-weight: 600;
  line-height: 2;
}
.page-top .landplan .landplan-plan .landplan-plan__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.page-top .landplan .landplan-plan .landplan-plan__item {
  font-size: 1.46484375vh;
  line-height: 2;
}
.page-top .landplan .landplan-plan .landplan-plan-block {
  margin-top: 4.6875vh;
}
.page-top .landplan .landplan-plan .landplan-plan-block__title {
  font-size: 1.953125vh;
  font-weight: 400;
  line-height: 1;
}
.page-top .landplan .landplan-plan .landplan-plan-block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.34375vh;
  margin-top: 2.34375vh;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-top .landplan .landplan-plan .landplan-plan-block__text {
  font-size: 1.46484375vh;
  line-height: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-top .landplan .landplan-plan .landplan-plan-block__img {
  width: 15.8203125vh;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-top .landplan .landplan-plan .landplan-plan-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-top .equipment {
  background: url(../../assets/images/top/bg.jpg) repeat;
  height: 100vh;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-inline: 3.90625vh 40px;
}
.page-top .equipment .section-head02:after {
  /* margin-right: 19.53125vh; */
}
.page-top .equipment .equipment__inner {
  padding-top: 19.53125vh;
}
.page-top .equipment .equipment__body {
  margin-top: 8.7890625vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 11.71875vh;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-top .equipment .equipment__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4.296875vh 3.125vh;
  padding-left: 19.53125vh;
}
.page-top .equipment .equipment__gallery .equipment-gallery-item {
  width: 21.484375vh;
}
.page-top .equipment .equipment__gallery .equipment-gallery-item__img {
  width: 100%;
  aspect-ratio: 220/150;
}
.page-top .equipment .equipment__gallery .equipment-gallery-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-top .equipment .equipment__gallery .equipment-gallery-item__title {
  font-size: 1.46484375vh;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 0.78125vh;
}
.page-top .equipment .equipment-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 11.71875vh;
}
.page-top .equipment .equipment-block .equipment-block-item {
  width: 31.25vh;
  min-height: 47.94921875vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-top
  .equipment
  .equipment-block
  .equipment-block-item:nth-of-type(1)
  .equipment-block-item__img {
  width: 27.83203125vh;
}
.page-top
  .equipment
  .equipment-block
  .equipment-block-item:nth-of-type(2)
  .equipment-block-item__img {
  width: 15.625vh;
}
.page-top
  .equipment
  .equipment-block
  .equipment-block-item:nth-of-type(3)
  .equipment-block-item__img {
  width: 31.25vh;
}
.page-top .equipment .equipment-block .equipment-block-item__title {
  font-size: 1.953125vh;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.page-top .equipment .equipment-block .equipment-block-item__text {
  font-size: 1.46484375vh;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1.953125vh;
}
.page-top
  .equipment
  .equipment-block
  .equipment-block-item__text.line-height-2 {
  line-height: 2;
}
.page-top .layout-vertical {
  background: url(../../assets/images/top/bg_vertical.jpg) no-repeat top/cover;
}
.page-top .location {
  padding-top: 60px;
}
.page-top .location .location__body {
  margin-top: 80px;
}
.page-top .location .location-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 80px;
}
.page-top .location .location-intro__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-top .location .location-intro__title {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.page-top .location .location-intro__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 2.34375vh;
}
.page-top .location .location-intro__img {
  width: 500px;
}
.page-top .location .location-intro__img img {
  width: 100%;
}
.page-top .location .location__gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.page-top .location .location-gallery-item__content {
  margin-top: 8px;
}
.page-top .location .location-gallery-item__title {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.page-top .location .location-gallery-item__meta {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.page-top .location .location-detail {
  margin-top: 68px;
  padding: 60px 80px;
  background-color: #ffffff80;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}
.page-top .location .location-detail .location-detail__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.page-top .location .location-detail .location-detail__list {
  margin-top: 24px;
}
.page-top .location .location-detail .location-detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px 40px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}
.page-top .location .location-detail .location-detail-item__name {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-top .location .location-detail .location-detail-item__meta {
  width: clamp(166px, 32%, 280px);
  text-align: left;
}
.page-top .location .location__text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: 20px;
}
.page-top .outline {
  padding-top: 120px;
}
.page-top .outline .outline__body {
  margin-top: 80px;
}
.page-top .outline .outline__maps {
  width: 100%;
  aspect-ratio: 960/420;
  overflow: hidden;
}
.page-top .outline .outline__maps img,
.page-top .outline .outline__maps iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-top .outline .outline-table {
  margin-top: 80px;
  padding: 60px 80px;
  background-color: #ffffff80;
}
.page-top .outline .outline-table .outline-table__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.page-top .outline .outline-table .outline-table__subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 24px;
}
.page-top .outline .outline-table .outline-table__list {
  margin-top: 24px;
}
.page-top .outline .outline-table .outline-table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 20px 19px;
  border-bottom: 1px solid #c4c4c4;
}
.page-top .outline .outline-table .outline-table-item__title {
  width: 226px;
  padding-right: 8;
  padding-left: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.page-top .outline .outline-table .outline-table-item__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.page-top .contact {
  background: url(../../assets/images/top/bg.jpg) repeat;
  padding-block: 120px;
}
.page-top .contact .contact__title--en {
  display: block;
  font-family: EB Garamond, serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
.page-top .contact .contact__title--ja {
  display: block;
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
.page-top .contact .contact__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  margin-top: 40px;
}
.page-top .contact .contact__buttons {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
}

@media screen and (max-width:900px){
  .page-top .layout-horizontal__inner{
    flex-direction: column;
  }
  .page-top .mv .mv-scroll{
    top: auto;
    bottom: 40px;
    left: 50%;
    right: auto;
    flex-direction: column;
    transform: translateX(-50%);
  }
  .page-top .mv .mv-scroll .mv-scroll__line{
    width: 40px;
    height: 1px;
    transform: rotate(90deg) translateX(-16px);
    transform-origin: 0px 20px;
  }
  .header{
    padding: 32px 24px;
  }
  .header .header__logo {
    width: 160px;
    height: auto;
  }
  .header .hamburger .hamburger__text{
    font-size: 1.4rem;
  }
  .header .hamburger .hamburger__icon{
    width: 45px;
    margin-top: 8px;
  }
  .page-top .layout-horizontal__inner .panel.mv{
    padding-block: 104px 64px;
    height: auto;
    min-height: 100vh;
  }
  .page-top .layout-horizontal__inner .panel{
    width: 100%;
    min-width: 100%;
    padding-block: 0;
    justify-content: center;
  }
  .page-top .mv .mv__bg{
    width: 80%;
  }
  .page-top .mv .mv__content{
    flex: unset;
  }
  .page-top .mv .mv__content .mv__title span{
    display: inline-block;
  }
  .page-top .mv .mv__content .mv__title{
    font-size:2.4rem;
  }
  .page-top .mv .mv__content .mv__text{
    font-size: 1.4rem;
  }
  .page-top .mv:before{
    width: 48px;
    height: 36px;
  }
  .page-top .intro{
    height: auto;
  }
  .page-top .intro .intro__wrap{
    height: auto;
    padding: 24% 64px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  .page-top .intro .intro__inner{
    border-top-left-radius: 120px;
    height: auto;
  }
  .page-top .intro .intro__title{
    font-size: 2.4rem;
  }
  .page-top .intro .intro__content{
    width: 100%;
    margin-top: 0;
  }
  .page-top .intro .intro__text{
    font-size: 1.5rem;
    margin: 64px 0 0;
  }
  .page-top .intro .intro__imgs{
    width: min(640px, 100%);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
  }
  .page-top .intro .intro__clothing{
    width: 68%;
  }
  .page-top .intro .intro__housing {
    width: 37%;
    top: 54%;
  }
  .page-top .intro .intro-presented-by {
      width: 58%;
      margin-top: 10%;
  }
  .page-top .intro .intro-presented-by__logo {
    width: 100%
  }
  .page-top .layout-horizontal__inner .panel.artisan{
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-block: 60px;
  }
  .page-top .artisan .artisan__img{
    position: unset;
    overflow-y: unset;
    overflow: hidden;
    width: min(800px, 110%);
  }
  .page-top .artisan .artisan__img img{
    max-width: none;
    width: 100%;
    margin-inline: auto;
  }
  .page-top .artisan .artisan__content{
    margin: 0;
    width: calc(100% - 128px);
    margin-inline: auto;
  }
  .page-top .artisan .artisan__title{
    font-size: 2.2rem;
  }
  .page-top .artisan .artisan__title br{
    display: none;
  }
  .page-top .artisan .artisan__text{
    font-size: 1.5rem;
    margin-top: 64px;
  }
  .page-top .artisan .artisan__text br:nth-child(3){
    display: none;
  }
  .page-top .layout-horizontal__inner .panel.design{
    height: auto;
    background: url(../../assets/images/top/bg.jpg) repeat;
  }
  .page-top .design .design__bg{
    width: 100%;
  }
  .page-top .design .design__inner{
    border-top-left-radius: 120px;
    flex-direction: column;
    padding: 0;
  }
  .page-top .design .section-block{
    width: calc(100% - 128px);
    margin: 64px auto 0;
  }
  .section-block .section-block__title--en{
    font-size: 1.4rem;
  }
  .section-block .section-block__title--ja{
    font-size: 2.2rem;
  }
  .section-block .section-block__text {
    font-size: 1.4rem;
    margin-top: 64px;
  }
  .page-top .design .design-intro{
    width: calc(100% - 128px);
    margin: 64px auto 0;
  }
  .page-top .design .design-intro .design-intro__title{
    font-size: 1.8rem;
  }
  .page-top .design .design-intro .design-intro__text{
    font-size: 1.4rem;
    margin-top: 24px;
  }
  .page-top .design .design-intro .design-intro__detail{
    gap: 16px;
  }
  .page-top .design .design-intro__showcase{
    flex-wrap: wrap;
    gap: 24px 2%;
    margin-top: 40px;
  }
  .page-top .design .design-intro__showcase .showcase-block{
    width: 49%;
  }
  .page-top .design .design-intro__showcase .showcase-block-item{
    width: 49%;
  }
  .page-top .design .design-intro__showcase .showcase-block__title{
    font-size: 1.5rem;
  }
  .page-top .design .design-intro__showcase .showcase-block-item__title{
    font-size: 1.2rem;
  }
  .page-top .illustration .illustration__inner{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 64px 0 0;
    width: min(900px,120vw);
    height: min(900px,120vw);
    
  }
  .page-top .layout-horizontal__inner .panel.illustration{
    overflow: hidden;
    height: auto;
  }
  .page-top .interior .interior__inner{
    flex-direction: column;
    padding: 0;
  }
  .page-top .interior .section-block{
    padding: 60px 64px 0;
    width: 100%;
  }
  .page-top .interior .interior-showcase__list{
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
    padding-bottom: 40px;
  }
  .page-top .interior{
    height: auto;
  }
  .page-top .interior .interior-showcase{
    border-top-left-radius: 120px;
    padding: 120px 0 0;
    width: 100%;
  }
  .page-top .interior .interior-showcase__item{
    width: min(520px,calc(100% - 128px));
    margin-inline: auto;
  }
  .page-top .landplan{
    height: auto;
  }
  .page-top .landplan .landplan__inner{
    padding: 64px 64px 0;
    flex-direction: column;
  }
  .page-top .landplan .landplan__intro{
    flex-direction: column;
  }
  .page-top .landplan .landplan__list{
    overflow-y: unset;
  }
  .page-top .landplan .landplan__intro-img{
    width: min(480px,100%);
    margin-inline: auto;
    margin-top: 40px;
  }
  .page-top .landplan .landplan__list .landplan-item__wrap > .landplan-item__number-box{
    display: none;
  }
  .page-top .landplan .landplan__list .landplan-item__title .landplan-item__number-box{
    display: block;
    padding: 0;
  }
  .page-top .landplan .landplan__list .landplan-item__title{
    display: flex;
    align-items: center;
    font-size: 2.0rem;
    gap: 16px;
  }
  .page-top .landplan .landplan__list .landplan-item{
    width: min(640px,100%);
    margin-inline: auto;
    padding: 0;
    align-items: center;
  }
  .page-top .landplan .landplan__list .landplan-item__wrap{
    width: 100%;
  }
  .page-top .landplan .landplan__list .landplan-item__content{
    width: 100%;
    margin-top: 40px;
    padding-bottom: 0;
  }
  .page-top .landplan .landplan__list .landplan-item__number{
    font-size: 4.4rem;
    padding-left: 24px;
  }
  .page-top .landplan .landplan__list .landplan-item__number-box:before{
    width: 27px;
    height: 20px;
  }
  .page-top .landplan .landplan__list .landplan-item__text--lg{
    font-size: 1.8rem;
    margin-top: 12px;
  }
  .page-top .landplan .landplan__list .landplan-item__item{
    font-size: 1.4rem;
  }
  .page-top .landplan .landplan__list .landplan-item__text{
    font-size: 1.4rem;
  }
  .page-top .landplan .landplan__list .landplan-item__text br{
    display: none;    
  }
  .page-top .landplan .landplan__list .landplan-item__img{
    width: min(400px,50%);
    margin-top: 12px;
  }
  .page-top .landplan .landplan__img{
    width: min(480px,100%);
    margin-inline: auto;
    margin-bottom: 40px;
  }
  .page-top .landplan .landplan-plan{
    padding-left: 0;
    width: min(640px, 100%);
    margin-inline: auto;
  }
  .page-top .landplan .landplan-plan .landplan-plan__title--en{
    font-size: 1.4rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__title--ja{
    font-size: 2.2rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__text--lg{
    font-size: 2.0rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__item{
    font-size: 1.4rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block__title{
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block__text{
    font-size: 1.5rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block{
    margin-top: 40px;
  }
  .page-top .equipment .equipment__inner{
    padding-top: 64px;
  }
  .section-head02 .section-head02__title--en{
    font-size: 3.2rem;
  }
  .section-head02 .section-head02__title--ja{
    font-size: 1.4rem;
  }
  .page-top .equipment .equipment__gallery{
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
    width: 100%;
  }
  .page-top .equipment .equipment-block{
    padding: 0;
    flex-direction: column;
    width: 100%;
    margin-top: 64px;
  }
  .page-top .equipment .equipment__body{
    flex-wrap: wrap;
  }
  .page-top .layout-horizontal__inner .panel.equipment{
    height: auto;
  }
  .page-top .equipment .equipment__gallery .equipment-gallery-item{
    width: 100%;
  }
  .page-top .equipment .equipment__gallery .equipment-gallery-item__title{
    font-size: 1.4rem;
  }
  .page-top .equipment .equipment-block .equipment-block-item{
    width: 100%;
    gap: 24px;
    min-height:unset;
  }
  .page-top .equipment .equipment-block .equipment-block-item:nth-of-type(1) .equipment-block-item__img,
  .page-top .equipment .equipment-block .equipment-block-item:nth-of-type(3) .equipment-block-item__img{
    width: min(480px,100%);
    margin-inline: auto;
  }
  .page-top .equipment .equipment-block .equipment-block-item:nth-of-type(2) .equipment-block-item__img{
    width: min(320px, 64%);
    margin-inline: auto;
  }
  .page-top .equipment .equipment-block .equipment-block-item__title{
    font-size: 1.8rem;
    margin-top: 64px;
  }
  .page-top .equipment .equipment-block .equipment-block-item__text{
    font-size: 1.5rem;
    margin-top: 20px;
  }
  .page-top .location{
    padding-top: 120px;
  }
  .page-top .location .location-intro{
    width: calc(100% - 128px);
    margin-inline: auto;
    flex-direction: column;
  }
  .page-top .location .location-intro__img{
    width: min(560px,100%);
    margin-inline: auto;
    margin-top: 24px;
  }
  .container--section-head{
    padding: 0;
  }
  .section-head02{
    width: 100%;
    margin-inline: auto;
  }
  #location .section-head02{
    width: calc(100% - 80px);
    margin-inline: auto;
  }
  .page-top .location .location-intro__title{
    font-size: 2.2rem;
  }
  .page-top .location .location__gallery{
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
    width: calc(100% - 80px);
    margin-inline: auto;
  }
  .page-top .location .location-gallery-item__title{
    font-size: 1.4rem;
  }
  .page-top .location .container{
    margin: 0 auto;
    width: 100%;
  }
  .page-top .location .location-detail{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 64px 40px;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .page-top .location .location-detail .location-detail__list {
    margin-top: 20px;
  }
  .page-top .location .location-detail .location-detail__title{
    font-size: 1.8rem;
  }
  .page-top .location .location-detail .location-detail-item__name{
    font-size: 1.5rem;
  }
  .page-top .location .location-detail .location-detail-item__meta{
    font-size: 1.4rem;
  }
  .page-top .location .location__body {
    margin-top: 64px;
  }
  .page-top .location .location__text{
    width: calc(100% - 80px);
    margin-inline:auto;
  }
  #outline .section-head02 {
    width: calc(100% - 80px);
  }
  #outline .container--960{
    width: calc(100% - 80px);
    margin-inline: auto;
  }
  .page-top .outline .outline__body{
    margin-top: 80px;
  }
  .page-top .outline .outline-table{
    margin-top: 80px;
    padding: 40px 64px;
  }
  .page-top .outline .outline-table .outline-table__title{
    font-size: 1.8rem;
  }
  .page-top .outline .outline-table .outline-table__subtitle{
    font-size: 1.5rem;
  }
  .page-top .outline .outline-table .outline-table-item{
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    border: none;
  }
  .page-top .outline .outline-table .outline-table-item__title{
    width: 100%;
    background: #ECEBE7;
    padding: 12px;
  }
  .page-top .outline .outline-table .outline-table-item__text{
    padding: 12px 12px 20px;
    line-height: 1.5;
  }
  .page-top .contact .contact__title--en{
    font-size: 5.6rem;
  }
  .page-top .contact .contact__title--ja{
    font-size: 1.6rem;
    margin-top: 14px;
  }
  .page-top .contact .contact__text{
    font-size: 1.5rem;
  }
  .page-top .contact{
    padding-bottom: 80px;
  }
  .footer .footer__logo{
    
  }
  .footer .footer__logo {
    width: 116px;
  }
  .footer .footer__inner{
    border-top-left-radius: 120px;
  }
}

@media screen and (max-width:768px){
  .header{
    padding: 24px 16px;
  }
  .header .hamburger {
    top: 24px;
    right: 20px;
  }
  .header .header__logo {
    width: 138px;
    height: auto;
  }
  .header .hamburger .hamburger__text{
    font-size: 0.9rem;
  }
  .header .hamburger .hamburger__icon{
    width: 28px;
    margin-top: 6px;
  }
  .page-top .mv .mv__bg{
    width: 86%;
  }
  .page-top .mv .mv__content .mv__title{
    font-size:2.2rem;
    padding-inline: 12px;
  }
  .page-top .mv .mv__content .mv__text{
    font-size: 1.2rem;
  }
  .page-top .mv:before{
    width: 40px;
    height: 30px;
  }
  .page-top .intro .intro__title{
    font-size: 2.2rem;
  }
  .page-top .intro .intro__text{
    font-size: 1.4rem;
    margin: 56px 0 0;
  }
  .page-top .intro .intro__wrap{
    padding: 16% 40px 24%;
  }
  .page-top .intro .intro__inner {
    border-top-left-radius: 80px;
  }
  .page-top .artisan .artisan__title{
    font-size: 2.1rem;
  }
  .page-top .artisan .artisan__text{
    font-size: 1.4rem;
    margin-top: 56px;
  }
  .page-top .artisan .artisan__content{
    width: calc(100% - 112px);
  }
  .page-top .design .design__inner{
    border-top-left-radius: 80px;
  }
  .page-top .design .section-block{
    width: calc(100% - 112px);
    margin: 48px auto 0;
  }
  .section-block .section-block__title--en{
    font-size: 1.3rem;
  }
  .section-block .section-block__title--ja{
    font-size: 2.1rem;
  }
  .section-block .section-block__text {
    font-size: 1.4rem;
    margin-top: 56px;
  }
  .page-top .design .design-intro{
    width: calc(100% - 112px);
    margin: 48px auto 0;
  }
  .page-top .design .design-intro .design-intro__title{
    font-size: 1.7rem;
  }
  .page-top .design .design-intro .design-intro__content{
    order: 2;
    width: 100%;
    margin-top:32px
  }
  .page-top .design .design-intro .design-intro__img{
    order: 1;
    width: 100%;
  }
  .page-top .design .design-intro .design-intro__detail{
    flex-direction: column;
    gap:0
  }
  .page-top .interior .section-block{
    padding: 60px 56px 0;
  }
  .page-top .interior .interior-showcase{
    border-top-left-radius: 80px;
    padding-top: 80px;
  }
  .page-top .interior .interior-showcase__item{
    width: min(520px,calc(100% - 112px));
    margin-inline: auto;
  }
  .page-top .landplan .landplan__list .landplan-item__title{
    font-size: 1.9rem;
  }
  .page-top .landplan .landplan__list .landplan-item__title br{
    display: none;
  }
  .page-top .landplan .landplan__list .landplan-item__number{
    font-size: 4.2rem;
  }
  .page-top .landplan .landplan__list .landplan-item__text--lg{
    font-size: 1.7rem;
  }
  .page-top .landplan .landplan__list .landplan-item__item{
    font-size: 1.3rem;
  }
  .page-top .landplan .landplan__list .landplan-item__text{
    font-size: 1.3rem;
  }
  .page-top .landplan .landplan__inner {
    padding: 64px 56px 0;
  }
  .page-top .landplan .landplan-plan .landplan-plan__title--en{
    font-size: 1.3rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__title--ja{
    font-size: 2.1rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__text--lg{
    font-size: 1.9rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__item{
    font-size: 1.3rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block__title{
    font-size: 1.7rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block__text{
    font-size: 1.4rem;
  }
  .section-head02 .section-head02__title--en{
    font-size: 3.1rem;
  }
  .section-head02 .section-head02__title--ja{
    font-size: 1.3rem;
  }
  .page-top .equipment .equipment__gallery .equipment-gallery-item__title{
    font-size: 1.3rem;
  }
  .page-top .equipment .equipment-block .equipment-block-item__title{
    font-size: 1.7rem;
    margin-top: 40px;
  }
  .page-top .equipment .equipment-block .equipment-block-item__text{
    font-size: 1.4rem;
  }
  .page-top .location .location-intro{
    width: min(520px,calc(100% - 112px));
    margin-inline: auto;
  }
  .page-top .location .location__gallery{
    grid-template-columns: repeat(3, 1fr);
  }
  .page-top .location .location-gallery-item__title{
    font-size: 1.3rem;
  }
  .page-top .location .location__gallery{
    margin-top:40px;
    width: calc(100% - 112px);
    margin-inline: auto;
  }
  .page-top .location .location-detail{
    padding: 48px 32px;
   }
  .page-top .location .location-detail .location-detail__title{
    font-size: 1.7rem;
  }
  .page-top .location .location-detail .location-detail-item__name{
    font-size: 1.4rem;
  }
  .page-top .location .location-detail .location-detail-item__meta{
    font-size: 1.3rem;
  }
  .page-top .location .location__text{
    font-size: 1.1rem;
  }
  .page-top .location .location__body {
    margin-top: 56px;
  }
  .page-top .location .location__text{
    width: calc(100% - 112px);
  }
  .page-top .outline .outline__body{
    margin-top: 64px;
  }
  .page-top .outline .outline-table{
    margin-top: 64px;
    padding: 56px 32px;
  }
  .page-top .outline .outline-table .outline-table__title{
    font-size: 1.7rem;
  }
  .page-top .outline .outline-table .outline-table__subtitle{
    font-size: 1.4rem;
  }
  .page-top .outline .outline-table .outline-table-item__title{
    padding: 10px;
    font-size: 1.4rem;
  }
  .page-top .outline .outline-table .outline-table-item__text{
    padding: 10px 10px 18px;
    font-size: 1.4rem;
  }
  .page-top .outline .outline__maps {
    aspect-ratio: 960 / 480;
  }
  .page-top .contact .contact__title--en{
    font-size: 4.8rem;
  }
  .page-top .contact .contact__title--ja{
    font-size: 1.4rem;
    margin-top: 12px;
  }
  .page-top .contact .contact__text{
    font-size: 1.4rem;
  }
  .page-top .contact .contact__buttons{
    flex-direction: column;
    gap: 40px;
  }
  .page-top .contact{
    padding-bottom: 70px;
  }
  .footer .footer__logo {
    width: 108px;
  }
  .footer .footer__inner{
    border-top-left-radius: 80px;
  }
    .header .hamburger {
      top: 30px;
      right: 32px;
  }
}
@media screen and (max-width:640px){
  .page-top .design .design-intro__showcase .showcase-block{
    width: 100%;
  }
}
@media screen and (max-width:560px){
  .header .hamburger {
    top: 24px;
    right: 20px;
  }
  .page-top .mv:before{
    width: 32px;
    height: 24px;
  }
  .page-top .intro .intro__title{
    font-size: 2.0rem;
  }
  .page-top .intro .intro__text{
    font-size: 1.3rem;
    margin: 40px 0 0;
  }
  .page-top .intro .intro__inner {
    border-top-left-radius: 64px;
  }
  .page-top .artisan .artisan__title{
    font-size: 2.0rem;
  }
  .page-top .artisan .artisan__title br{
    display: block;
  }
  .page-top .artisan .artisan__text{
    font-size: 1.4rem;
    margin-top: 40px;
  }
  .page-top .artisan .artisan__content{
    width: calc(100% - 80px);
  }
  .page-top .artisan .artisan__text br:nth-child(1){
    display: none;
  }
  .page-top .design .design__inner{
    border-top-left-radius: 64px;
  }
  .page-top .artisan .artisan__text {
    font-size: 1.3rem;
    margin-top: 40px;
  }
  .page-top .design .section-block{
    width: calc(100% - 80px);
    margin: 40px auto 0;
  }
  .section-block .section-block__title--en{
    font-size: 1.2rem;
  }
  .section-block .section-block__title--ja{
    font-size: 2.0rem;
  }
  .section-block .section-block__text {
    font-size: 1.3rem;
    margin-top: 40px;
  }
  .page-top .design .design-intro{
    width: calc(100% - 80px);
    margin: 40px auto 0;
  }
  .page-top .design .design-intro .design-intro__title{
    font-size: 1.6rem;
  }
  .page-top .design .design-intro .design-intro__content{
    margin-top: 24px;
  }
  .page-top .design .design-intro .design-intro__text{
    font-size: 1.3rem;
  }
  .page-top .interior .section-block{
    padding: 60px 40px 0;
  }
  .page-top .interior .interior-showcase{
    border-top-left-radius: 64px;
    padding-top: 64px;
  }
  .page-top .interior .interior-showcase__item{
    width: min(520px,calc(100% - 80px));
    margin-inline: auto;
  }
  .page-top .landplan .landplan__list .landplan-item__title{
    font-size: 1.8rem;
  }
  .page-top .landplan .landplan__list .landplan-item__number{
    font-size: 4.0rem;
  }
  .page-top .landplan .landplan__list .landplan-item__text--lg{
    font-size: 1.6rem;
  }
  .page-top .landplan .landplan__list .landplan-item__item{
    font-size: 1.2rem;
  }
  .page-top .landplan .landplan__list .landplan-item__text{
    font-size: 1.2rem;
  }
   .page-top .landplan .landplan__inner {
    padding: 64px 40px 0;
  }
  .page-top .landplan .landplan-plan .landplan-plan__title--en{
    font-size: 1.2rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__title--ja{
    font-size: 2.0rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__text--lg{
    font-size: 1.8rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan__item{
    font-size: 1.2rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block__title{
    font-size: 1.6rem;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block__text{
    font-size: 1.3rem;
    order: 2;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block__img{
    width: min(420px,100%);
    margin-inline: auto;
    margin-bottom: 24px;
    order: 1;
  }
  .page-top .landplan .landplan-plan .landplan-plan-block__body{
    flex-direction: column;
  }
  .section-head02 .section-head02__title--en{
    font-size: 3.0rem;
  }
  .section-head02 .section-head02__title--ja{
    font-size: 1.2rem;
  }
  .page-top .equipment .equipment__gallery .equipment-gallery-item__title{
    font-size: 1.2rem;
  }
  .page-top .equipment .equipment__gallery{
    grid-template-columns: repeat(2, 1fr);
  }
  .page-top .equipment .equipment-block .equipment-block-item__title{
    font-size: 1.6rem;
    margin-top: 24px;
  }
  .page-top .equipment .equipment-block .equipment-block-item__text{
    font-size: 1.3rem;
  }
  .page-top .location .location-intro{
    width: min(520px,calc(100% - 80px));
    margin-inline: auto;
  }
  .page-top .location .location__gallery{
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 80px);
  }
  .page-top .location .location-gallery-item__title{
    font-size: 1.2rem;
  }
  .page-top .location .location-detail{
    padding: 40px 20px;
  }
  .page-top .location .location-detail .location-detail__title{
    font-size: 1.6rem;
  }
  .page-top .location .location-detail .location-detail-item__name{
    font-size: 1.3rem;
  }
  .page-top .location .location-detail .location-detail-item{
    gap: 8px;
  }
  .page-top .location .location-detail .location-detail-item__name{
    width: calc(100% - 140px);
  }
  .page-top .location .location-detail .location-detail-item__meta{
    font-size: 1.2rem;
    width: 132px;
  }
  .page-top .location .location__text{
    font-size: 1.0rem;
  }
  .page-top .location .location__body {
    margin-top: 40px;
  }
  .page-top .location .location__text{
    width: calc(100% - 80px);
  }
  .page-top .outline .outline__body{
    margin-top: 40px;
  }
  .page-top .outline .outline-table{
    margin-top: 40px;
    padding: 40px 20px;
  }
  .page-top .outline .outline-table .outline-table__title{
    font-size: 1.6rem;
  }
  .page-top .outline .outline-table .outline-table__subtitle{
    font-size: 1.3rem;
  }
  .page-top .outline .outline-table .outline-table-item__title{
    padding: 8px;
    font-size: 1.3rem;
  }
  .page-top .outline .outline-table .outline-table-item__text{
    padding: 8px 8px 16px;
    font-size: 1.3rem;
  }
  .page-top .outline .outline__maps {
    aspect-ratio: 960 / 560;
  }
  .page-top .contact .contact__title--en{
    font-size: 4.0rem;
  }
  .page-top .contact .contact__title--ja{
    font-size: 1.2rem;
    margin-top: 10px;
  }
  .page-top .contact .contact__text{
    font-size: 1.3rem;
  }
  .page-top .contact{
    padding-bottom: 60px;
  }
  .footer .footer__logo {
    width: 96px;
  }
  .footer .footer__inner{
    border-top-left-radius: 64px;
  }
}