@charset "UTF-8";
/*! ========================================
※※※※※※※※※※※※※※※※※※※※※※※※※※※
  このCSSファイルはSassから生成されていますので、
  編集しないようご注意ください。 by omukai
※※※※※※※※※※※※※※※※※※※※※※※※※※※
========================================= */
/*--------------------------------
reset
--------------------------------*/
html, body, div, p, img, iframe, a, span, blockquote, q, address, cite,
pre, code, em, small, strong, b, i,
header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer, time,
h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
table, tbody, thead, tfoot, th, tr, td,
form, fieldset, legend, label, select, input, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer {
  display: block;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

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

select, option, input:not([type=checkbox]):not([type=radio]), textarea, button {
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

[type=submit], [type=button], [type=reset], [type=file], button {
  cursor: pointer;
}

:focus {
  outline: none;
}

:root {
  --primary: #967865;
  --secondary: #A98C6F; 
  --tertiary: #ffffff; 
}

/*--------------------------------
common
--------------------------------*/
body {
  margin: 0;
  padding: 0;
  background: #fff;
  
  font-family: "Noto Sans JP", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  /* font-family: "Shippori Mincho", serif; */
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

a {
  color: #efc100;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: #efe272;
}
a.is-inherit:hover {
  color: inherit;
}

button,
[type=submit],
[type=reset] {
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

strong {
  color: #efc100;
  font-weight: inherit;
}

sup,
sub {
  font-weight: normal;
  font-size: 0.625rem;
}

.vertical-text {
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

.fit-img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.has-max {
  height: auto;
  max-width: 100%;
}

.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.align-item-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.img-wrapper {
  position: relative;
}
.img-wrapper .caption {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  z-index: 1;
}
@media (min-width: 768px) {
  .img-wrapper .caption.up {
    bottom: auto;
    top: 0;
  }
}

.inline-block {
  display: inline-block;
}

.grid-wrapper {
  display: grid;
}

.place-center {
  place-items: center;
}

.svg-symbol {
  display: none;
}

.layout-stack > * + * {
    margin-top: 32px;
}
.layout-stack-wide > * + * {
    margin-top: 60px;
}
.layout-stack-narrow > * + * {
    margin-top: 16px;
}
.layout-stack-min > * + * {
    margin-top: 8px;
}
/*--------------------------------
layout
--------------------------------*/
.wrapper {
  overflow: hidden;
}

.container {
  position: relative;
}
body.has-header {
  padding-top: 85px;
}
body.has-header .header{
  transform: none;
}
body.has-header .page-heading-wrap{
  border-top: 1px solid #CBCBCB;
}
body.has-header .page-heading-wrap{
  border-top: 1px solid #CBCBCB;
}

.fix-content {
  position: relative;
}
@media (min-width: 768px) {
  .fix-content {
    width: 50vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
  }
  .fix-content.is-end {
    position: absolute;
    top: auto;
    bottom: 0;
  }
}

.grid-col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .grid-col2 {
    grid-template-columns: 1fr;
  }
  body.has-header {
    padding-top: 50px;
  }
}

@media (min-width: 768px) {
  .home .main-content {
    margin-left: 50vw;
    width: 50vw;
    min-height: 100vh;
  }
}

.is-screen {
  min-height: 100vh;
  overflow: hidden;
}

.is-sticky {
  max-height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .is-sticky {
    position: relative;
  }
}

.inner {
  margin: 0 auto;
  width: min(100% - 48px, 93%);
  max-width: 1200px;
}
.new-inner{
  margin: 0 auto;
  width: calc(100% - 48px);
  max-width: 1200px;
}
.inner-narrow {
  max-width: 878px;
}

.inner-half {
  max-width: 600px;
}

.inner-mid {
  max-width: 1400px;
}
.inner-wide {
  max-width: 1500px;
}

.inner-fit {
  width: 100%;
  max-width: none;
}

.inner-full {
  max-width: none;
}

.general-section {
  position: relative;
}
.general-section .new-inner {
  padding: 80px 0;
}
.general-section .new-inner.pd-wide {
  padding: 160px 0;
}
.general-section .inner {
  padding: clamp(40px, 12vw, 160px) 0;
}
.general-section .inner + .inner {
  padding-top: 0;
}
.general-section .new-inner + .new-inner {
  padding-top: 0;
}
.general-section .inner.mb-0 {
  padding-bottom: 0;
}
.general-section .inner-min {
  padding: clamp(16px, 3vw, 40px) 0;
}

.general-parts {
  margin-bottom: clamp(16px, 6vw, 40px);
}

.btn-space {
  margin: clamp(16px, 3vw, 40px) 0;
  text-align: center;
}

.has-gap {
  gap: 32px;
}
@media (max-width: 991px) {
  .has-gap {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .general-section .inner {
    padding: 40px 0;
  }
  .general-section .new-inner.pd-wide {
    padding: 60px 0;
  }
  .new-inner{
    width: calc(100% - 32px);
  }
  .new-inner.inner-fit{
    width: 100%;
  }
  .general-section .new-inner {
    padding: 40px 0;
  }
}

.col-2 {
  width: 50%;
}
.has-gap > .col-2 {
  width: calc(50% - 16px);
}

.col-3 {
  width: 33.3333333333%;
}
.has-gap > .col-3 {
  width: calc(33.3333333333% - 22px);
}

.col-4 {
  width: 25%;
}
.has-gap > .col-4 {
  width: calc(25% - 24px);
}

@media (max-width: 767px) {
  .col-2,
  .has-gap > .col-2 {
    width: 100%;
  }
  .col-3,
  .has-gap > .col-3 {
    width: 100%;
  }
  .sp-col-2 {
    width: 50%;
  }
  .has-gap > .sp-col-2 {
    width: calc(50% - 8px);
  }
}
@media (max-width: 991px) {
  .has-gap > .col-4 {
    width: calc(25% - 12px);
  }
}
/*--------------------------------
component
--------------------------------*/
.primary-heading {
  margin-bottom: 0.8em;
  font-size: 3.125rem;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .primary-heading {
    font-size: 2rem;
  }
}

.secondary-heading {
  margin-bottom: 0.8em;
  font-size: 2.625rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .secondary-heading {
    font-size: 1.875rem;
  }
}

.tertiary-heading {
  margin-bottom: 0.8em;
  font-size: 2.375rem;
  line-height: 1.5;
}
.page-primary-heading {
  margin-bottom: 0.8em;
  font-size: clamp(  24px , 2.2vw , 36px);
  line-height: 1.5;
}
.page-tertiary-heading {
  margin-bottom: 0.8em;
  font-size: clamp( 16px , 1.4vw , 24px);
  line-height: 1.5;
}
@media (max-width: 991px) {
  .tertiary-heading {
    font-size: 1.75rem;
  }
}

.quaternary-heading {
  margin-bottom: 0.8em;
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .quaternary-heading {
    font-size: 1.375rem;
  }
}

.page-title {
  margin-bottom: 0.8em;
  font-size: 3.5rem;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .page-title {
    font-size: 2.5rem;
  }
}
.page-heading-wrap{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.page-heading-wrap.static{
  height: 13.8496vw;
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: none;
}
@media (max-width: 767px) {
  .page-heading-wrap.static{
    height: 32.801vw;
  }
}
.page-heading{
  max-width: 1400px;
  width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.page-heading .en{
  font-size: clamp( 36px , 3.6vw,  50px);
  margin-bottom: .3em;
  letter-spacing: 0.015em;
}
.page-heading .jp{
  font-size: clamp( 12px , 1.2vw,  18px);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .lead {
    font-size: 1rem;
  }
}

.note {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 2;
}
.page-lead {
  margin-bottom: 1em;
  font-size: clamp( 14px , 1.2vw , 18px);
  line-height: 2;
}
.page-note {
  margin-bottom: 1em;
  font-size: clamp( 12px , 1vw , 16px);
  line-height: 2;
}
@media (max-width: 991px) {
  .note {
    font-size: 0.875rem;
  }
}

.small-note {
  margin-bottom: 1em;
  font-size: 0.875rem;
  line-height: 2;
}
@media (max-width: 991px) {
  .small-note {
    font-size: 0.75rem;
  }
}

.caption {
  margin: 0.4em 0;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .caption {
    font-size: 0.625rem;
  }
}

[type=text],
[type=search],
[type=password],
[type=tel],
[type=email],
[type=num],
[type=date],
select,
textarea {
  margin-right: 4px;
  padding: 12px 8px;
  max-width: 100%;
  background: #f8f8f8;
  font-size: 1.125rem;
  font-weight: inherit;
  color: inherit;
  line-height: 1.3;
  border: 0;
  vertical-align: middle;
}
[type=text]:last-child,
[type=search]:last-child,
[type=password]:last-child,
[type=tel]:last-child,
[type=email]:last-child,
[type=num]:last-child,
[type=date]:last-child,
select:last-child,
textarea:last-child {
  margin-right: 0;
}
[type=text]:focus,
[type=search]:focus,
[type=password]:focus,
[type=tel]:focus,
[type=email]:focus,
[type=num]:focus,
[type=date]:focus,
select:focus,
textarea:focus {
  background-color: #fff;
}

select {
  padding: 6px 32px 6px 12px;
  background: url(images/select_arrow.png) no-repeat right 8px center #fff;
  background-size: 14px auto;
  text-indent: 0.01px;
  text-overflow: "";
  border: 1px solid #cecece;
  border-radius: 10px;
}

textarea {
  min-height: 100px;
}

.text-150 {
  width: 150px;
}

.text-fit {
  width: 100%;
}

.arrow {
  width: 0;
  height: 0;
  display: block;
  content: "";
  border-style: solid;
  border-width: 3.5px 0 3.5px 11px;
  border-color: transparent transparent transparent #f0e87b;
  transition: all 0.3s ease;
}

.btn {
  padding: 8px 16px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.link-btn{
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 280px;
  width: 100%;
  padding-right: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555555 ;
  color:#333333;
  position: relative;
  transition: .4s;
}
.link-btn::before{
  content: '';
  display: block;
  width: 20%;
  height: 3px;
  position: absolute;
  bottom: -2px;
  background: var(--primary);
  transition: .4s;
}
.link-btn:hover::before{
  width: 100%;
}
.link-btn:hover{
  color: inherit;
}
.link-btn.is-light:hover{
  color: #fff;
}
a:hover p.link-btn::before{
  width: 100%;
}
.link-btn.is-light{
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) ;
}
.link-btn.is-light::before{
  background: #fff;
}
.link-btn.is-light svg path{
  stroke: #fff;
}
.general-btn {
  padding: 0 16px;
  min-width: 190px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
  background: #6cc24a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
}
.general-btn span {
  transition: transform 0.3s ease-out;
}
.general-btn::after {
  width: 6px;
  height: 6px;
  display: block;
  background: #52af2d;
  content: "";
  border-radius: 50%;
  transition: transform 0.3s ease-out;
}
.general-btn:hover {
  color: #fff;
}
.general-btn:hover span {
  transform: translateX(4px);
}
.general-btn:hover::after {
  transform: translateX(-8px);
}
.general-btn.has-icon::after {
  display: none;
}

.cta-btn {
  padding: 0 24px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  background: #6cc24a;
  color: #fff;
  font-weight: 700;
}
.cta-btn:hover {
  color: #fff;
  background-color: #52af2d;
}

.submit-btn {
  justify-content: center;
}
.submit-btn:disabled {
  opacity: 0.3;
}

.btn-min {
  padding: 0 10px;
  width: 76px;
  min-width: auto;
  height: 32px;
  font-size: 0.875rem;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  display: block;
  content: "";
}
.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.loading {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  content: "";
}

.bg-white {
  background: #fff;
}

.bg-light {
  background: #FAFAFA;
}


.bg-dark {
  background: #000;
  color: #fff;
}

.bg-lightgray {
  background: #f8f8f8;
}

.bg-gray {
  background: #9a9a9a;
}

.breadcrumbs {
  position: absolute;
  top: 16px;
  left: 32px;
  z-index: 2;
  display: flex;
  gap: 4px;
  font-size: 0.875rem;
}
.breadcrumbs a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .breadcrumbs {
    left: auto;
    right: 32px;
    gap: 16px;
    transform-origin: left top;
    transform: translate(100%, 0) rotate(90deg);
  }
}
.breadcrumbs .no-link {
  color: #656565;
}

.img-item {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .img-item {
    margin: 32px 0;
  }
}

/*--------------------------------
header
--------------------------------*/
.header {
  padding: 0 32px;
  height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  transform: translateY(-85px);
  transition: transform 0.3s ease-out, padding 0.3s ease-out;
}
.header .logo {
  width: 225px;
  height: 30px;
  background: url(../images/common/logo.svg) no-repeat left top;
  background-size: contain;
  transition: opacity 0.3s;
}

.header .logo a {
  height: 100%;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/* @media (min-width: 992px) {
  .is-conpact .header {
    height: 82px;
  }
} */
@media (max-width: 991px) {
  /* .header {
    padding: 0 24px;
    height: 80px;
    align-items: center;
  } */
  /* .header .logo {
    width: 133px;
    height: 40px;
  } */
}
@media (max-width: 767px) {
  .header {
    padding: 0 24px;
    height: 50px;
  }
  .header .logo {
    width: 133px;
    height: 18px;
  }
}
.header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent); */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
  transform: translateY(-120px);
  transition: transform 0.3s ease-out;
}
.is-conpact .header::before {
  transform: translateY(0);
}
.is-conpact .header {
  transform: translateY(0);
}

/* .is-scroll .header .logo {
  opacity: 0;
} */
 

.gnav {
  margin-right: 90px;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: center;
}
.gnav .nav-link {
  padding: 8px 0;
  position: relative;
  color: #000;
  font-weight: 500;
}
.gnav .nav-link:hover {
  color: #000;
}
.gnav .nav-link::after {
  margin: 0 auto;
  height: 1px;
  width: 0;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: #efc100;
}
.gnav .nav-link.is-current::after {
  width: 100%;
}
.nav-container{
  margin: 0 auto;
  width: calc(100% - 225px);
  padding-right: 225px;
}
.nav-container .global-nav{
  display: flex;
  gap: 32px;
  color: #fff;
  justify-content: center;
}
.nav-container .global-nav a:hover{
  color: var(--primary);
}
@media (max-width: 1260px) {
  .gnav {
    gap: 16px;
  }
  .nav-container .global-nav{
    display: none;
  }
}
@media (max-width: 1110px) {
  .gnav .nav-list:nth-child(3), .gnav .nav-list:nth-child(4), .gnav .nav-list:nth-child(5) {
    display: none;
  }
}
@media (max-width: 991px) {
  .gnav {
    margin-right: 0;
    position: fixed;
    right: 8px;
    bottom: 8px;
  }
}
.global-nav-icon{
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
@media (max-width: 991px) {
  .global-nav-icon{
    margin-top: 32px;
    justify-content: flex-start;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hamburger {
  padding: 0 0;
  width: 72px;
  height: 72px;
  display: flex;
  position: fixed;
  right: 32px;
  top: 42px;
  z-index: 12;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  transform: translateY(-50%);
  transition: top 0.3s ease-out;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* @media (min-width: 992px) {
  .is-conpact .hamburger {
    top: 40px;
  }
} */
.hamburger i {
  width: 100%;
  height: 1px;
  display: block;
  content: "";
  background: #000;
  transition: all 0.3s cubic-bezier(0.59, -0.1, 0.58, 0.96);
}
.hamburger i:last-child {
  width: 100%;
}
.hamburger .circle-line {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.hamburger .circle-bg,
.hamburger .circle-stroke {
  opacity: 0;
}
.hamburger .circle-bg {
  transition: opacity 1s ease-out;
}
.hamburger:hover .circle-bg {
  opacity: 1;
}
.hamburger:hover .circle-stroke {
  opacity: 1;
  stroke-dasharray: 246;
  stroke-dashoffset: 246;
  animation: strokeLineAnimation 1s ease-in-out reverse forwards;
}
.is-open .hamburger .circle-line {
  animation: strokeClose 0.3s cubic-bezier(0.51, 0.03, 0.58, 1.36) both 0.2s;
  background: #F2EADC;
}
.is-open .hamburger .circle-stroke {
  opacity: 1;
}
.is-open .hamburger i:nth-of-type(1) {
  transform: translate(0, 9px) rotate(225deg);
}
.is-open .hamburger i:nth-of-type(2) {
  transform: rotate(-225deg);
}
.is-open .hamburger i:last-child {
  transform: rotate(-180deg);
  opacity: 0;
}
/* @media (max-width: 991px) {
  .hamburger {
    padding: 0 11px;
    width: 50px;
    height: 50px;
    top: 38px;
    right: 8px;
  }
} */
@media (max-width: 767px) {
  .hamburger {
    padding: 0 0;
    width: 50px;
    height: 50px;
    top: 26px;
    right: 8px;
  }
  .header::before{
    height: 50px;
  }
}

@keyframes strokeClose {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes strokeLineAnimation {
  0% {
    stroke-dasharray: 246;
  }
  0% {
    stroke-dasharray: 492;
  }
}
.drawer-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 11;
  transform: scale(1);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (max-width: 991px) {
  .drawer-menu {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .drawer-menu .global-wrap-item{
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .drawer-menu {
    padding-bottom: 15%;
    padding-top: 60px;
    justify-content: flex-start;
  }
  .drawer-menu .global-wrap-item:first-child{
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 2px solid #F7F7F7;
  }
}
.drawer-menu .nav-item {
  flex: unset;
  max-width: 1200px;
  width: calc(100% - 64px);
}
.drawer-menu .nav-item:first-child {
  flex: unset;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 2px solid #F7F7F7;
  position: relative;
}
@media (max-width: 767px) {
  .drawer-menu .nav-item {
    flex: auto;
  }
  .drawer-menu .nav-item:first-child {
    margin-bottom: 0;
    flex: auto;
  }
}
.drawer-menu .global-wrap {
  display: flex;
  gap: 120px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.drawer-menu .global-wrap.jc-start {
  justify-content: flex-start;
}
.drawer-menu .global-wrap.jc-bw {
  justify-content: space-between;
}
.global-info-text{
  font-size: 14px;
  margin-top: 1.2em;
  margin-bottom: .8em;
}
.global-info-tel{
  font-size: 36px;
}
@media (max-width: 1250px) {
  .drawer-menu .global-wrap {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .drawer-menu .global-wrap {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.drawer-menu .global-wrap .global-nav{
  flex: unset;
}
.drawer-menu .nav-link .detail-text{
  font-size: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
}
.drawer-menu a.nav-link:hover{
  color: var(--primary);
}
.drawer-menu .global-wrap::before {
  content: none;
}
@media (max-width: 991px) {
  .drawer-menu .global-wrap::before {
    content: none;
  }
  .drawer-menu .global-wrap .global-nav:first-child {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #F7F7F7;
  }
  .drawer-menu .global-wrap .global-nav {
    max-width: 400px;
    width: 100%;
  }
}
.drawer-menu .nav-title {
  margin-bottom: 0.8em;
  font-size: 1rem;
}
.drawer-menu .nav-list {
  margin: 24px 0 0;
}
.drawer-menu .nav-list.mt-none {
  margin-top: 0;
}
.drawer-menu .nav-list.first {
  margin-top: 0;
}
.drawer-menu .nav-link {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}
/* @media screen and (min-width:992px) and (max-width: 1250px) {
  .drawer-menu .nav-link {
    font-size: 1.6rem;
  }
} */
.drawer-menu .nav-link .insta-icon{
  width: 40px;
}

@media (max-width: 991px) {
  .drawer-menu .nav-link {
    font-size: 16px;
    gap: 12px;
  }
  .drawer-menu .nav-list {
    margin: 16px 0 0;
  }
}
.drawer-menu .nav-link:hover {
  color: #000;
}
.drawer-menu .nav-link .small-text {
  display: inline-block;
  font-size: 50%;
  padding-left: 1em;
  border-left: 2px solid;
}
.is-open .drawer-menu {
  opacity: 1;
  transform: scale(1) ;
  visibility: visible;
}
.drawer-menu .footer-sub-menu {
  justify-content: center;
}
.drawer-menu .footer-sub-menu .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .drawer-menu .footer-sub-menu .nav-link {
    font-size: 14px;
  }
  .drawer-menu .footer-sub-menu {
    margin-bottom: 32px;
  }
}

/* .drawer-foot {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
@media (max-width: 991px) {
  .drawer-foot {
    position: static;
  }
} */
.nav-line-bnr{
  display: block;
  max-width: 400px;
  width: 40%;
  margin-top: 40px;
  transition: .4s;
}
@media (min-width: 992px) {
  .nav-line-bnr:hover{
    opacity: .7;
  }
}
@media (max-width: 991px) {
  .nav-line-bnr{
    width: 100%;
  }
}

/*--------------------------------
bukken header
--------------------------------*/
.header.bukken-header .logo{
  background: unset;
  height: auto;
  width: 165px;
}
.header.bukken-header .logo a{
  text-indent: unset;
}
.header.bukken-header .logo a .bukken-name{
  display: block;
  font-size: 10px;
  text-align: center;
  margin-top: 1em;
  color: #000;
}
.header.bukken-header .nav-container{
  width: calc(100% - 165px);
  padding-right: 165px;
} 
.header.bukken-header .nav-container .global-nav{
  gap: 0;
} 
.header.bukken-header .nav-container .global-nav .nav-list{
  padding: 0 16px;
} 
.header.bukken-header .nav-container .global-nav .nav-list:not(:first-child){
  border-left: 1px solid #000;
} 
.header.bukken-header .nav-container .global-nav .nav-list .nav-link{
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
} 
.header.bukken-header .nav-container .global-nav .nav-list .nav-link::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: #967865;
  transition: .4s;
} 
.outline .header.bukken-header .nav-container .global-nav .nav-list:nth-of-type(7) .nav-link::before,
.equipment .header.bukken-header .nav-container .global-nav .nav-list:nth-of-type(6) .nav-link::before,
.plan-page .header.bukken-header .nav-container .global-nav .nav-list:nth-of-type(5) .nav-link::before,
.plan-detail .header.bukken-header .nav-container .global-nav .nav-list:nth-of-type(5) .nav-link::before,
.access .header.bukken-header .nav-container .global-nav .nav-list:nth-of-type(4) .nav-link::before,
.gallery .header.bukken-header .nav-container .global-nav .nav-list:nth-of-type(3) .nav-link::before{
  width: 100%;
} 
.header.bukken-header .nav-container .global-nav .nav-list .nav-link:hover::before{
  width: 100%;
} 
.drawer-menu.bukken-drawer .global-wrap.jc-bw{
  /* flex-direction: column;
  align-items: flex-end;
  gap: 32px; */
}
.drawer-menu.bukken-drawer .global-wrap.jc-bw .global-info{
  margin-bottom: 32px;
  text-align: center;
}
.drawer-menu.bukken-drawer .global-wrap.jc-bw .global-info .bukken-name{
  display: block;
  color: #000;
  margin-top: .6em;
}
.bukken-line{
  position: fixed;
  top: 22.5px;
  right: 128px;
  z-index: 12;
  background: #fff;
  box-shadow: 0px 6px 15px -5px rgba(0, 0, 0, 0.35);
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s;
}
.bukken-line:hover{
  color: #fff;
  background: var(--primary);
}
@media (max-width: 1439px) {
  .bukken-line{
    display: none;
  }
}
@media (max-width: 767px) {
  .drawer-menu.bukken-drawer .nav-item:first-child {
    border-bottom: none;
    padding-bottom: 32px;
  }
  .drawer-menu.bukken-drawer .global-wrap-item:first-child{
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 16px;
  }
  .drawer-menu.bukken-drawer .line-check-btn{
    display: block;
  }
  .header.bukken-header .logo {
    width: 145px;
    padding-bottom: 6px;
  }
  .header.bukken-header .logo a .bukken-name {
    margin-top: .6em;
  }
  .drawer-menu.bukken-drawer .global-wrap .global-nav:first-child {
        padding-bottom: 0;
        margin-bottom: 16px;
        border-bottom: none;
    }
}

/*--------------------------------
footer
--------------------------------*/
.footer-container {
  padding-left: 60px;
  padding-bottom: 0;
  border-top: 2px solid #F7F7F7;
  position: relative;
  background: #fff;
}
@media (min-width: 768px) {
  .footer-container::after{
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 144px;
    background: #F7F7F7;
  }
}
.footer-container .inner {
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  .footer-container .inner {
    padding-top: 40px;
  }
}

.footer-menu {
  position: relative;
  margin-bottom: 0;
}
/* @media (max-width: 767px) {
  .footer-menu {
    margin-bottom: 64px;
  }
} */
.footer-menu .global-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 42px;
}
.footer-menu .global-nav .nav-list {
  width: calc(100% / 3 - 28px);
}
@media (max-width: 991px) {
  .footer-menu .global-nav {
    flex-wrap: wrap;
    max-width: 600px;
  }
  .footer-menu .global-nav .nav-list {
    width: calc(100% );
  }
  .footer-menu .global-nav {
    gap: 24px;
  }
  
}
@media (max-width: 767px) {
  .footer-menu .global-nav {
    flex-direction: column;
    gap: 24px;
  }
}
.footer-menu .nav-link {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  line-height: 1.5;
  display: inline-block;
}
.footer-menu a.nav-link:hover {
  color: var(--primary);
}
@media (max-width: 991px) {
  .footer-menu .nav-link {
    display: inline-block;
  }
}
.footer-menu .nav-link::before {
  content: none;
}
.footer-menu .nav-link:hover {
  color: #000;
  text-underline-offset: 8px;
}
.footer-menu .nav-link:hover::before {
  transform: translateY(-4px);
}
.footer-menu .nav-link .small-text {
  display: inline-block;
  padding-left: 1em;
  margin-left: 1em;
  border-left: 1px solid;
}
@media (max-width: 991px) {
  .footer-menu .nav-link .small-text {
    vertical-align: middle;
  }
}

.footer-sub-menu {
  justify-content: center;
}
.footer-sub-menu .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}
.footer-sub-menu a.nav-link:hover {
  color: var(--primary);
}
/* @media (max-width: 991px) {
  .footer-sub-menu .nav-link {
    font-size: 1.125rem;
  }
} */

.copyright {
  padding: 0;
  font-style: normal;
  font-size: 10PX;
  padding: 32px 0 20px;
}
@media (min-width: 768px) {
  .copyright {
    text-align: right;
  }
}

.footer-meta {
  margin-bottom: 0;
}
/* @media (max-width: 767px) {
  .footer-meta {
    margin-bottom: 40px;
  }
} */
.footer-meta .logo {
  margin-bottom: 8px;
  width: 172px;
  height: 60px;
  background: url(../images/common/logo-color.svg) no-repeat left top;
  background-size: contain;
}
.footer-meta .logo a {
  height: 100%;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 991px) {
  .footer-meta .logo {
    margin-bottom: 16px;
  }
}
.footer-meta .address {
  font-size: 0.75rem;
  line-height: 1.5;
}
/* .address .large-text{
  font-size: 140%;
} */
.insta-link{
  width: 40px;
  display: block;
  position: static;
}
.footer-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-wrapper .footer-item:first-child{
    padding-top: 60px;
  }
}
.footer-wrapper .footer-item:last-child{
  max-width: 1000px;
  width: 100%;
  position: relative;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1fr 144px;
}
.footer-grid-item:first-child{
  border-bottom: 2px solid #F7F7F7;
  /* border-right: 2px solid #F7F7F7; */
  padding-top: 48px;
  padding-bottom: 48px;
  padding-right: 48px;
}
.footer-grid-item:nth-of-type(2){
  border-bottom: 2px solid #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-grid-item:nth-of-type(3){
  padding-top: 32px;
  padding-bottom: 80px;
  /* border-right: 2px solid #F7F7F7; */
}
.footer-arrow{
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-arrow::before{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  border-top: 3px solid #967865;
  border-left: 3px solid #967865;
}
@media (max-width: 991px) {
  .footer-grid-item:first-child {
    border-bottom: 2px solid #F7F7F7;
    /* border-right: 2px solid #F7F7F7; */
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 48px;
  }
  .footer-grid-item:nth-of-type(3) {
    padding-top: 20px;
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper{
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .footer-container {
    padding: 32px 24px 16px;
  }
  .footer-grid{
    grid-template-columns: 1fr;
    position: relative;
  }

  .footer-grid-item:first-child {
    border-bottom: none;
    border-right: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .footer-menu .global-nav .nav-list{
    width: 100%;
  }
  .footer-grid-item:nth-of-type(2){
    width: 80px;
    height: 60px;
    position: absolute;
    top: 29px;
    right: -24px;
    border-right: 2px solid #F7F7F7;
    border-left: 2px solid #F7F7F7;
  }
  .footer-grid-item:nth-of-type(3){
    display: none;
  }
  .footer-grid-item:nth-of-type(4){
    width: 80px;
    height: 60px;
    position: absolute;
    top: -32px;
    right: -24px;
    border-bottom: 2px solid #F7F7F7;
    border-right: 2px solid #F7F7F7;
    border-left: 2px solid #F7F7F7;
  }
  .footer-sub-menu{
    margin-top: 32px;
  }
}
/*--------------------------------
bukken footer
--------------------------------*/
.bukken-footer-logo{
  margin-bottom: 40px;
  width: 280px;
  text-align: center;
}
.bukken-footer-logo .bukken-name{
  display: block;
  font-size: 14px;
  text-align: center;
  margin-top: 1em;
  color: #000;
}
.bukken-footer .footer-menu .global-nav .nav-list{
  width: auto;
}
.bukken-footer .footer-menu .global-nav .nav-list .detail-text{
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 767px) {
  .bukken-footer-logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    width: 200px;
  }
  .bukken-footer-logo .bukken-name {
    font-size: 12px;
  }
  .bukken-footer .footer-grid-item:nth-of-type(2){
    display: none;
  }
}
/*--------------------------------
top
--------------------------------*/
.contents-title{
  margin-bottom: 28px;
}
.contents-title .en{
  font-size: clamp(36px, 3.6vw , 50px);
  margin-bottom: .2em;
  letter-spacing: 0.015em;
}
.contents-title .jp{
  font-size: clamp(14px, 1.2vw ,18px);
}
.residence-item-name{
  font-size: clamp(16px, 1.6vw ,26px);
  margin-bottom: .8em;
  line-height: 1.3;
}
.residence-item-body{
  padding: 32px 48px;
}
.residence-item-body .page-note{
  min-height: 8em;
  font-weight: 600;
}
.residence-item-body .link-btn{
  margin-top: 48px;
}
.residence-item-body .rent-list{
  font-size: 14px;
}
.top-sustainability {
    display: grid;
    grid-template-columns: 50% 28%;
    align-items: center;
    gap: 22%;
}
.top-sustainability-section{
  position: relative;
  background: rgba(187, 179, 172, 0.05);
  overflow: hidden;
}
.top-sustainability-section::before{
  content: '';
  display: block;
  width: 42%;
  height: calc(100% - 240px);
  position: absolute;
  top: 80px;
  left:0;
  background: #FAEAE0;
}
.sustainability-item{
  display: block;
  width: 100%;
  height: calc(100% - 240px);
  position: absolute;
  bottom: 80px;
  right: 0;
  left: 0;
  /* padding: 0px 0 0px calc((100% - 1400px) / 2);
  background: #F8F4EE; */
  padding: 0px 0 0px calc((100% - 1400px) / 2);
  z-index: -1;
}
.sustainability-item-inner{
  display: block;
  width: 63%;
  max-width: 830px;
  background: #F8F4EE;
  height: 100%;
}
/* .top-sustainability-section::after{
  content: '';
  display: block;
  width: 100%;
  height: calc(100% - 240px);
  position: absolute;
  bottom: 80px;
  right: 0;
  padding: 0px 0 0px calc((100% - 1400px) / 2);
  background: #F8F4EE;
  z-index: -1;
} */
.top-residence-section{
  background: rgba(187, 179, 172, 0.05);
}
.top-contents{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.top-contents-wide{
  grid-column: 1 / 3;
}
.top-guide{
  background: url(../images/top/top-guide-bg.webp) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.top-rent{
  background: url(../images/top/top-rent-bg.webp) no-repeat center center;
  background-size: cover;
}
.top-product{
  background: url(../images/top/top-product-bg.webp) no-repeat center center;
  background-size: cover;
}
.top-contents-head{
  margin-right: 60px;
}
.top-contents-body{
  padding: 60px;
}
.top-guide-wrap{
  padding: 160px 0;
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: center;
}
.top-guide-wrap .top-contents-body{
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .top-contents{
    overflow: hidden;
  }
  .top-sustainability {
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
    gap: 48px;
  }
  .top-contents-body{
    padding: 16px;
  }
  .residence-container{
    margin: 0 auto;
    width: calc(100% - 32px);
  }
  .top-residence-section .residence-item + .residence-item{
    margin-top: 20px;
  }
  .top-residence-section .residence-item-body{
    padding: 24px 24px;
  }
  .top-sustainability:first-child{
    width: 80%;
    margin-left: 5%;
  }
  .top-sustainability-section::before {
    content: '';
    display: block;
    width: 62%;
    height: 86.9vw;
    top: 30px;
  }
  .sustainability-item {
    display: block;
    width: 100%;
    height: 85vw;
    position: absolute;
    bottom: auto;
    top: 60px;
    right: 0;
    left: 8.6%;
    padding: 0;
    z-index: -1;
  }
  .sustainability-item-inner {
    display: block;
    width: 83%;
    background: #F8F4EE;
    height: 100%;
  }
  .top-contents-head{
    margin-right: 16px;
  }
  .top-guide-wrap{
    padding: 40px 0;
    align-items: flex-start;
  }
  .top-guide-wrap .top-contents-body{
    padding-top: 0;
  }
  .residence-item-body .page-note{
  min-height: auto;
}
  .residence-item-body .link-btn{
    margin-top: 32px;
  }
  .residence-item-body .rent-list{
  font-size: 10px;
  }
  .top-contents-harf .page-note{
    min-height: 192px;
  }
}

.loading-full,
.loading-right {
  width: 100vw;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
  background: #000;
}
.loading-full .main-copy,
.loading-right .main-copy {
  font-size: clamp(1.125rem, 3vw, 2.125rem);
  font-weight: 500;
  color: #fff;
  opacity: 0;
}
@media (max-width: 767px) {
  .loading-full,
  .loading-right {
    width: 100%;
  }
}

.loading-right {
  width: 50vw;
  right: 0;
  left: auto;
}
@media (max-width: 767px) {
  .loading-right {
    width: 100%;
  }
}

.loading-layer {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
}

.hero .slick-item .fit-img {
  height: 100vh;
  object-fit: cover;
}

.hero-copy {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 3%;
  right: 3%;
  z-index: 4;
  color: #fff;
  transform: translate(0, -50%);
  text-align: center;
}

.progress {
  width: 0;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 30%;
  z-index: 1;
  content: "";
  background: #fff;
}
.is-loaded .slick-current .progress {
  animation: progressAni 6s linear 1;
}
@media (max-width: 767px) {
  .progress {
    height: 5px;
  }
}

@keyframes progressAni {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
    left: 0;
    right: 0;
  }
  51% {
    left: auto;
  }
  100% {
    width: 0;
    left: auto;
    right: 0;
  }
}
.large-logo {
  margin-bottom: 20px;
  font-size: clamp(3.4375rem, 8vw, 7.5rem);
}
.large-logo.logo-img {
  font-size: inherit;
}
.large-logo.logo-img.mb-none {
  margin-bottom: 0;
}
.large-logo .logo-heading {
  max-width: 940px;
  width: 30vw;
}
@media (max-width: 767px) {
  .large-logo .logo-heading {
    width: 62vw;
  }
}
.large-logo .logo-sub-heading {
  max-width: 500px;
  width: 32vw;
}
@media (max-width: 767px) {
  .large-logo .logo-sub-heading {
    width: 62vw;
  }
}

.scroll-hint {
  padding-top: 66px;
  height: 80px;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  font-size: 0.75rem;
  text-align: center;
}
.scroll-hint::before {
  margin: 0 auto 0;
  width: 1px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  content: "";
  animation: scrollAni 1s ease-in-out infinite;
}
.hero .scroll-hint {
  color: #fff;
}
.hero .scroll-hint::before {
  background: #fff;
}
.mv-copy{
  font-size: 2.6vw;
  line-height: 1.5;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
}
.mv-logo{
  width: 80vw;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .mv-copy{
    font-size: 6.2vw;
  }
  .mv-logo {
    bottom: 0;
      width: 97vw;
  }
}
@keyframes scrollAni {
  0% {
    height: 50px;
    top: 0;
  }
  50% {
    height: 0;
    top: 50px;
  }
  51% {
    top: 0;
  }
  100% {
    top: 0;
    height: 50px;
  }
}
.mv-line-bnr{
  max-width: 400px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  width: 50%;
  transition: .4s;
}
@media (min-width: 992px) {
  .mv-line-bnr:hover{
    opacity: .7;
  }
}
.residence-card {
  margin: 0 auto;
  max-width: 625px;
  background: #fff;
  box-shadow: 1px 1px 16px rgba(0, 0, 0, 0.15);
}
.residence-card + .residence-card {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .residence-card + .residence-card {
    margin-top: 40px;
  }
  .mv-line-bnr{
    width: 83%;
    bottom: 3%;
  }
}
.residence-card .card-content {
  padding: 40px 0;
  color: #000;
}
.residence-card .property-name {
  margin-bottom: 0.4em;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 767px) {
  .residence-card .property-name {
    font-size: 1.125rem;
  }
}
.residence-card .property-name img {
  width: auto;
  height: 24px;
}
@media (max-width: 767px) {
  .residence-card .property-name img {
    height: 18px;
  }
}
.residence-card .meta-data {
  font-size: 0.75rem;
  grid-template-columns: 60px 1fr;
  gap: 8px;
}

.arrow-btn {
  padding: 8px 24px;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 3px solid #f0e87b;
  transition: padding 0.3s ease-out;
}
.arrow-btn:hover {
  padding-bottom: 2px;
}

.residence-card-thumb {
  overflow: hidden;
}
.residence-card-thumb .fit-img {
  transition: transform 0.3s ease-out;
}

.residence-card-link {
  display: block;
  transition: background 0.3s;
}
.residence-card-link:hover {
  background: #F2EADC;
}
.residence-card-link:hover .arrow-btn {
  padding-bottom: 2px;
}

.gallery-container .fit-img,
.gallery-container2 .fit-img {
  width: auto;
  height: 25vh;
  object-fit: contain;
}

.circle-box {
  width: 600px;
  height: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .circle-box {
    width: 400px;
    height: 400px;
  }
}
.circle-box .secondary-heading {
  margin-bottom: 0;
}

.circle-title {
  margin-bottom: 0.4em;
  font-size: clamp(2.875rem, 7.8vw, 4.75rem);
  font-weight: 300;
  line-height: 1.2;
}

.layer {
  width: 100%;
  min-height: 500px;
  pointer-events: none;
}

.grid-item {
  position: relative;
}

.layer1 .grid-wrapper {
  grid-template-columns: 40% 1fr 38%;
  grid-template-rows: 1fr 1fr;
  gap: 80px 40px;
  align-items: center;
}
.layer1 .grid-wrapper .grid-item:nth-child(2) {
  grid-column: 3;
  grid-row: 2;
  transform: translateX(50px);
}
@media (max-width: 767px) {
  .layer1 .grid-wrapper .grid-item:nth-child(2) {
    transform: translate(0, 70px);
  }
}
@media (max-width: 767px) {
  .layer1 .grid-wrapper {
    rid-template-columns: 45% 1fr 43%;
    gap: 80px 9px;
  }
}

.layer2 .grid-wrapper {
  grid-template-columns: 32% 35%;
  grid-template-rows: 1fr 0.8fr 1fr;
  gap: 40px 120px;
  justify-content: center;
  align-items: center;
}
.layer2 .grid-wrapper .grid-item:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
  transform: translateX(40px);
}
@media (max-width: 767px) {
  .layer2 .grid-wrapper .grid-item:nth-child(1) {
    transform: translateX(-30px);
  }
}
.layer2 .grid-wrapper .grid-item:nth-child(2) {
  grid-column: 1;
  grid-row: 3;
}
.layer2 .grid-wrapper .grid-item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  transform: translate(-20px, 10px);
}
@media (max-width: 767px) {
  .layer2 .grid-wrapper {
    grid-template-columns: 48% 37%;
    grid-template-rows: 1fr 0.1fr 1fr;
  }
}

.layer3 .grid-wrapper {
  grid-template-columns: 35%;
  grid-template-rows: 1fr 1fr;
  gap: 48px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .layer3 .grid-wrapper {
    gap: 0;
  }
}
.layer3 .grid-wrapper .grid-item:nth-child(1) {
  margin-top: 32px;
  margin-right: 60px;
}
@media (max-width: 767px) {
  .layer3 .grid-wrapper .grid-item:nth-child(1) {
    margin-top: 70px;
    margin-right: 10px;
  }
}
.layer3 .grid-wrapper .grid-item:nth-child(2) {
  margin: 0 0 0 70px;
}
@media (max-width: 767px) {
  .layer3 .grid-wrapper .grid-item:nth-child(2) {
    margin: 0;
    transform: translate(30px, -13px);
  }
}
@media (max-width: 767px) {
  .layer3 .grid-wrapper .grid-item:nth-child(3) {
    transform: translate(30px, -13px);
  }
}

.gallery-title {
  display: grid;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.grid-item a {
  pointer-events: visible;
}
.grid-item a:hover .gallery-title {
  opacity: 1;
}

/*--------------------------------
business
--------------------------------*/
.business-container .rent-list:nth-of-type(2){
  display: none;
}
.business-container a.is-dark:hover{
  color: #000;
}
.business-container .residence-item-name {
    font-size: clamp(14px, 1.2vw, 20px);
    margin-bottom: .8em;
    line-height: 1.3;
    margin-bottom: 0;
    height: 3.2em;
}
.business-container .rent-lists {
  margin-top: 0;
}
.business-container .rent-list {
    font-size: clamp(12px, .8vw, 14px);
}
.visual-item {
  position: relative;
}
.business-thumb-cs{
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #D9D9D9;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(16px, 3vw, 36px);
}
@media (max-width: 767px) {
  .visual-item {
    height: 40vh;
    min-height: 40vh;
  }
  .visual-item + .general-section {
    height: 60vh;
    min-height: 60vh;
  }
  .business-container.has-gap {
    gap: 32px 16px;
  }
  .business-container.has-gap > .col-4 {
      width: calc(50% - 8px);
  }
  .business-container .residence-item-name {
    margin-top: 20px;
  }
  .business-container .rent-lists {
    min-height: 5.8em;
  }
  .business-container .link-btn {
    margin-top: 24px;
  }
}

.main-visual {
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 767px) {
  .main-visual {
    height: 40vh;
  }
}

.main-visual-res {
  height: 100vh;
  object-fit: cover;
}

.property-wrap {
  grid-template-columns: 1fr 1fr;
}

.property-item .meta-data {
  font-size: 0.75rem;
  line-height: 1.3;
  grid-template-columns: 60px 1fr;
  gap: 8px;
}
@media (max-width: 767px) {
  .property-item .meta-data {
    grid-template-columns: 38px 1fr;
  }
}
.property-item-btn {
  color: #000;
  margin-top: 1.8em;
  padding-bottom: 0.6em;
  display: inline-block;
  font-size: 1rem;
  border-bottom: 3px solid #f0e87b;
  transition: padding 0.3s ease-out;
}
@media (max-width: 767px) {
  .property-item-btn {
    font-size: 0.875rem;
  }
}
.property-item-btn::after {
  content: "";
  margin-left: 32px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/rent/arrow.png) no-repeat center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .property-item-btn::after {
    margin-left: 20px;
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 767px) {
  .property-item {
    margin-bottom: 32px;
  }
}

.property-thumb {
  margin-bottom: 16px;
}

.property-name {
  margin-bottom: 0.8em;
  font-size: 1.25rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .property-name {
    font-size: 1.0625rem;
    min-height: 45px;
  }
}

/*--------------------------------
about
--------------------------------*/
.about-bg {
  background: url(../images/about/concept-bg.webp) no-repeat center top;
  background-size: cover;
  color: #fff;
}

.page-nav {
  display: grid;
  gap: 8px;
}

.page-nav-list {
  margin: 0 auto;
  width: 100%;
  max-width: 270px;
}

.page-nav-link {
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000;
  border: 1px solid #c3c3c3;
}
.page-nav-link:hover {
  color: inherit;
}

.heading-group {
  margin-bottom: 40px;
  padding-left: 40px;
  position: relative;
}
.heading-group::before {
  width: 7px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: #f0e87b;
  transform: skewY(-45deg);
}
.heading-group .secondary-heading {
  margin-bottom: 0.2em;
}
@media (max-width: 767px) {
  .heading-group .secondary-heading {
    font-size: 1.5rem;
  }
}
.heading-group .note:first-child {
  margin-bottom: 0;
}

.toggle-list {
  border-bottom: 1px solid #cecece;
      font-family: "Shippori Mincho", serif;
    font-weight: 400;
}
.toggle-list:first-child {
  border-top: 1px solid #cecece;
}

.list-body {
  padding-bottom: 32px;
}

.list-title {
  padding: 0 16px;
  height: 80px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  /* background: url(../images/common/icon-plus.svg) no-repeat right center; */
  /* background-size: 35px; */
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
}
.list-title .en-font {
  flex-shrink: 0;
  font-size: 1.375rem;
}
/* .list-title.is-close {
  background-image: url(../images/common/icon-minus.svg);
} */
@media (max-width: 767px) {
  .list-title {
    font-size: 1rem;
  }
  .list-title .en-font {
    font-size: 1.25rem;
  }
}
.list-title.kanaeru {
  gap: 16px;
  align-items: center;
}
.list-title.kanaeru img {
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .list-title.kanaeru img {
    width: auto;
    height: 14px;
  }
}

.kanaeru-trademark {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1150px) {
  .kanaeru-trademark {
    max-width: 316px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .kanaeru-trademark {
    text-align: center;
    align-items: center;
    gap: 12px;
  }
}
.kanaeru-trademark .note {
  margin-bottom: 0;
}

.body-title {
  margin-bottom: 16px;
  padding: 16px 0;
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-weight: 400;
  line-height: 1.4;
  border-top: 1px dashed #9a9a9a;
  border-bottom: 1px dashed #9a9a9a;
}
.body-title .en-font {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.body-title em {
  font-style: normal;
}

.float-left {
  width: 30%;
}
.float-left + * {
  flex: 1;
}
.float-left.icon {
  width: 60px;
  margin-top: 4px;
}

.about-btn {
  margin: 0 auto 60px;
  max-width: 400px;
  width: 90%;
  display: block;
  padding: 0.8em 0;
  font-size: 1.4rem;
  text-align: center;
  color: #000;
  background: inherit;
  border: 1px solid;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-btn::before {
  content: "";
  display: block;
  background: linear-gradient(90deg, #000, #000 50%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 200%;
  z-index: -1;
  transform: translateX(-100%);
  transition: 0.8s;
  border-color: #000;
}
.about-btn:hover {
  color: #fff;
}
.about-btn:hover::before {
  transform: translateX(0%);
}


/*--------------------------------
rent
--------------------------------*/
.tab-btns{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tab-btn{
  padding: 0 24px;
  height: 50px;
  background: #fff;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
.tab-btn.js-tab{
  cursor: pointer;
  transition: .4s;
  color: #000;
}
.tab-btn.js-tab:hover{
  background: var(--primary);
  color: #fff;
}
.tab-btn.js-tab.is-active{
  background: var(--primary);
  color: #fff;
}
.rent-lists > * + *{
  margin-top: .4em;
}
.rent-list{
  font-size: clamp( 12px , 1vw , 16px);
  line-height: 1.3;
}
.rent-list dl{
  display: flex;
  gap: 4px;
}
.rent-list dl dt{
  width: 6em;
}
.rent-list dl dd{
  width: calc(100% - 6em - 4px);
}
.rent-container a.is-dark:hover{
  color: #000;
}
.rent-container.has-gap{
  gap: 56px 48px;
}
.rent-container.has-gap > .col-3 {
    width: calc(100% / 3 - 32px);;
}
.rent-container .residence-item-name {
  margin-top: 1em;
  margin-bottom: 0;
  height: 3.2em;
  line-height: 1.3;
}
.rent-container .link-btn {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .tab-btns{
    gap: 8px;
  }
  .tab-btn{
    padding: 0 12px;
    height: 40px;
    border-radius: 25px;
    font-size: 12px;
  }
  .rent-container.has-gap{
    gap: 56px 16px;
  }
  .rent-container.has-gap > .col-3 {
    width: calc(100% / 2 - 8px);;
  }
  .rent-container .rent-list dl {
    font-size: 10px;
    line-height: 1.3;
  }
  .rent-container .residence-item-name {
    font-size: 14px;
  }
  .rent-container .rent-lists{
    min-height: 6em;
  }
}

/*--------------------------------
resident
--------------------------------*/
.accordion-lists{
  min-height: 649px;
}
.accordion-list{
  border-top: 1px solid #CBCBCB;
  padding: 0 16px;
  cursor: pointer;
}
.accordion-list-head{
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-list-btn{
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.accordion-list-btn::before{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  width: 2px;
  height: 16px;
  background: #707070;
  transition: .2s;
}
.accordion-list-btn::after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  width: 16px;
  height: 2px;
  background: #707070;
}
.is-close .accordion-list-btn::before{
  transform: translate(-50% ,-50%) rotate(90deg);
}
.accordion-list-text{
  font-size: 18px;
  line-height: 1.5;
}
.accordion-list-content dl{
  font-size: 16px;
  line-height: 1.3;
  display: flex;
  gap: 8px;
}
.accordion-list-content dl + dl{
  margin-top: .2em;
}
.accordion-list-content dl dt{
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  margin-top: 10px;
}
.infomation-title{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: clamp( 20px, 3vw,36px) ;
  margin-bottom: .8em;
}
.infomation-title .infomation-title-en{
  font-size: clamp(12px, 1vw ,16px);
  color: var(--primary);
}
@media (max-width: 767px) {
  .infomation-title{
    flex-direction: column;
    gap: 12px;
  }
  .accordion-list-btn{
    width: 48px;
    height: 48px;
  }
}
/*--------------------------------
sustainability
--------------------------------*/
.sustainability-mv{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.6vw;
}
.sustainability-mv .fit-img{
  width: 19%;
}
.sustainability-mv-copy{
  font-size: 3.2vw;
}
.sustainability-bg{
  background: url(../images/sustainability/bg-01.webp) no-repeat top center;
  background-size: cover;
}
.sustainability-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-right: 10%;
}
.sustainability-column:first-child{
  width: 40%;
}
.sustainability-btns-wrap{
  margin: -50px 0;
  position: relative;
  z-index: 1;
}
.sustainability-btns{
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 32px);
  display: flex;
  justify-content: center;
  gap: 32px;
}
.sustainability-btn a{
  padding: 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  opacity: .4;
  color: #000;
  pointer-events: none;
}
.sustainability-btn a.is-active{
  opacity: 1;
  pointer-events: all;
}

/*--------------------------------
residence
--------------------------------*/
@media (max-width: 992px) {
  .residence .grid-col2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .residence .is-sticky {
    position: relative;
  }
}
.residence .hero-copy {
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.7));
}
.residence .scroll-hint::before {
  background: #fff;
}
.residence .secondary-heading span:after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #333;
  margin: 10px auto;
}
.residence .secondary-heading span.detail-head-item{
  display: block;
  margin-bottom: .8em;
}
.residence .secondary-heading span.detail-head-item:after {
  content: none;
}

.residence .name img {
  height: 28px;
}
@media (max-width: 767px) {
  .residence .name img {
    height: 15px;
  }
}
.residence .general-section {
  overflow: hidden;
}
@media (max-width: 992px) {
  .residence .general-section.lead-area.is-screen{
    min-height: auto;
    padding: 48px 0;
  }
  .residence .general-section.lead-area.is-screen .inner{
    padding: 0;
  }
  .residence .general-section.lead-area.is-screen .ps-btn {
    margin-top: 1.6em;
    position: static;
  }
}
.residence .slide {
  position: relative;
}
@media (max-width: 1460px) {
  .residence .slide .arr {
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 1460px) {
  .residence .slide .arr .slick-prev,
  .residence .slide .arr .slick-next {
    position: static;
    width: 40px;
    height: 40px;
    margin-right: 5%;
    margin-top: -50px;
  }
}
@media (max-width: 767px) {
  .residence .slide .arr .slick-prev,
  .residence .slide .arr .slick-next {
    margin-top: 2.5%;
  }
}
.residence .slick-prev,
.residence .slick-next {
  width: 54px;
  height: 54px;
  background: none;
}
.residence .slick-prev:before,
.residence .slick-next:before {
  content: "";
  display: block;
  background-image: url(../images/common/icon-prev.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.residence .slick-next {
  right: calc((100% - 690px) / 2 - 27px);
}
.residence .slick-next:before {
  background-image: url(../images/common/icon-next.svg);
}
.residence .slick-prev {
  left: calc((100% - 690px) / 2 - 27px);
}
@media (max-width: 767px) {
  .residence .lead-area .lead {
    font-size: 1.125rem;
    line-height: 2.5;
  }
  .residence .lead-area .lead .large-text{
    line-height: 1.5;
  }
}
.residence .mv-sub figure {
  overflow: hidden;
}
@media (max-width: 767px) {
  .residence .mv-sub figure img {
    width: 120%;
    margin-left: -10%;
  }
}
.residence .gallery h3 {
  background-color: #000;
  padding: 12px 25px;
}
.residence .gallery .inner-min {
  overflow: hidden;
  max-width: 690px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.residence .gallery .slide-gall {
  width: 50vw;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .residence .gallery .slide-gall {
    width: 90vw;
    padding-left: 0vw;
    margin-bottom: 0;
  }
}
.residence .gallery .slide-gall .slick-list {
  overflow: visible;
}
.residence .gallery .slick-track {
  display: flex;
  align-items: center;
}
.residence .gallery .slick-img {
  max-width: 690px;
  width: 45vw;
}
@media (max-width: 767px) {
  .residence .gallery .slick-img {
    width: 80vw;
    max-width: none;
  }
}
.residence .gallery .slick-img a {
  display: block;
  position: relative;
  transition: 0.5s;
}
.residence .gallery .slick-img a:hover {
  opacity: 0.6;
}
.residence .gallery .slick-img a:after {
  content: "";
  width: 35px;
  height: 35px;
  background-color: #fff;
  background-image: url(../images/common/icon-zoom.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .residence .gallery .slick-img a:after {
    width: 24px;
    height: 24px;
    background-size: 16px;
  }
}
.residence .gallery .slick-img figure {
  height: auto;
  transform: scale(0.85);
  transition: opacity 0.5s, transform 0.5s;
  width: 100%;
}
.residence .gallery .slick-img figure .note {
  margin-top: 0.4em;
  line-height: 1.5;
}
.residence .gallery .slick-center figure {
  transform: scale(1);
}
.residence .feature .inner {
  max-width: 640px;
}
.residence .feature dl {
  margin: 30px 0;
}
.residence .feature dl dt {
  margin-bottom: 5px;
}
.residence .feature h3 {
  color: #c3c3c3;
  font-size: 0.9375rem;
  margin-bottom: 12px;
}
.residence .feature ul {
  border-top: 1px solid #ddd;
}
.residence .feature ul li {
  font-size: 1.125rem;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  list-style: circle;
  list-style-position: inside;
  text-indent: -1.4em;
  padding-left: 1.4em;
}
.residence .plan .secondary-heading {
  margin-bottom: 0;
}
.residence .plan .inner-min {
  overflow: hidden;
  max-width: 690px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.residence .plan .slide-plan {
  width: 50vw;
  padding-left: calc((100% - 690px) / 2);
  padding-bottom: 5%;
}
@media (max-width: 1460px) {
  .residence .plan .slide-plan {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  .residence .plan .slide-plan {
    width: 90vw;
    margin: 0 auto;
    padding-left: 0;
  }
}
.residence .plan .slide-plan .slick-list .slick-img {
  background-color: #fff;
  padding: 10px;
  max-width: 400px;
  width: 45vw;
  margin: 0 20px;
}
@media (max-width: 767px) {
  .residence .plan .slide-plan .slick-list .slick-img {
    width: 90vw;
    max-width: none;
    margin: 0;
  }
}
.residence .plan .slide-plan .slick-list .slick-img a {
  display: block;
  position: relative;
}
.residence .plan .slide-plan .slick-list .slick-img dl {
  background-color: #F4F4F4;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 1.75rem;
  padding: 5px 20px;
  height: 70px;
}
@media (max-width: 767px) {
  .residence .plan .slide-plan .slick-list .slick-img dl {
    font-size: 1.375rem;
  }
}
.residence .plan .slide-plan .slick-list .slick-img dl dt span {
  font-size: 0.9375rem;
  font-weight: normal;
  display: inline-block;
  margin: 0 0.5em;
}
.residence .plan .slide-plan .slick-list .slick-img dl dt span.unit {
  margin-left: 0;
}
.residence .plan .slide-plan .slick-list .slick-img dl em {
  font-style: normal;
  display: block;
}
.residence .plan .slide-plan .slick-list .slick-img figure {
  text-align: center;
}
.residence .plan .slide-plan .slick-list .slick-img figure img {
  max-height: 320px;
  width: auto;
  margin: 15px auto;
}
.residence .plan .slide-plan .slick-list .slick-img p {
  position: absolute;
  right: 20px;
  bottom: 0;
  color: #333;
  font-size: 0.9375rem;
  border-bottom: 3px solid #FFF534;
}
@media (max-width: 1460px) {
  .residence .plan .slide .arr .slick-prev,
  .residence .plan .slide .arr .slick-next {
    margin-top: 2.5%;
  }
}
@media (max-width: 767px) {
  .residence .plan .slide .arr .slick-prev,
  .residence .plan .slide .arr .slick-next {
    margin-top: 2.5%;
  }
}
.residence .plan .multi-plan-num {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0.8em;
}
@media (max-width: 991px) {
  .residence .plan .multi-plan-num {
    font-size: 1.25rem;
  }
}
.residence .plan .multi-plan-layout {
  display: grid;
  grid-template-columns: 26vw 15.6vw;
  grid-template-rows: 1fr 1fr 1fr;
  justify-content: center;
  gap: 0 2.5vw;
}
@media (max-width: 1000px) {
  .residence .plan .multi-plan-layout {
    grid-template-columns: 48vw;
    grid-template-rows: auto;
  }
}
@media (max-width: 991px) {
  .residence .plan .multi-plan-layout {
    grid-template-columns: 90vw;
    justify-content: center;
    gap: 4vw;
  }
}
.residence .plan .multi-plan-layout .multi-plans {
  width: 100%;
  margin-bottom: 0;
}
.residence .plan .multi-plan-layout .multi-plans:last-child {
  margin-bottom: 0;
}
.residence .plan .multi-plan-layout .multi-plans-plan.has-copy {
  justify-content: flex-start;
}
@media (max-width: 1000px) {
  .residence .plan .multi-plan-layout .multi-plans-plan.has-copy {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1vw;
  }
}
@media (max-width: 991px) {
  .residence .plan .multi-plan-layout .multi-plans-plan.has-copy {
    flex-direction: unset;
    gap: 1vw;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .residence .plan .multi-plan-layout .multi-plans-plan.has-copy .plan-copy {
    width: 10em;
  }
}
@media (max-width: 1000px) {
  .residence .plan .multi-plan-layout .multi-plan-box .multi-plans {
    margin-bottom: 2vw;
  }
}
.residence .plan .multi-plan-layout .multi-plan-box:first-child {
  grid-column: 1/2;
  grid-row: 1/4;
}
.residence .plan .multi-plan-layout .multi-plan-box:first-child .multi-plans {
  height: auto;
  gap: 2.61vw;
}
@media (max-width: 1000px) {
  .residence .plan .multi-plan-layout .multi-plan-box:first-child .multi-plans {
    gap: 2vw;
  }
}
@media (max-width: 1000px) {
  .residence .plan .multi-plan-layout .multi-plan-box:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.residence .plan .multi-plan-layout .multi-plan-box:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media (max-width: 1000px) {
  .residence .plan .multi-plan-layout .multi-plan-box:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.residence .plan .multi-plan-layout .multi-plan-box:nth-of-type(3) {
  grid-column: 2/3;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .residence .plan .multi-plan-layout .multi-plan-box:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.residence .plan .multi-plan-layout .multi-plan-box:nth-of-type(4) {
  grid-column: 2/3;
  grid-row: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .residence .plan .multi-plan-layout .multi-plan-box:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.residence .plan .multi-plans {
  margin: 0 auto;
  width: 48vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6vw;
}
.residence .plan .multi-plans:last-child {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .residence .plan .multi-plans {
    width: 90vw;
    gap: 2vw;
  }
}
.residence .plan .multi-plans + .multi-plan-num {
  margin-top: 32px;
}
.residence .plan .multi-plans-plan {
  width: 15.6vw;
  position: relative;
}
@media (max-width: 991px) {
  .residence .plan .multi-plans-plan {
    width: 44vw;
  }
}
.multi-plans-plan .caption {
  font-size: .7rem;
  position: absolute;
  bottom: 0;
}
@media (max-width: 991px) {
  .multi-plans-plan .caption {
    font-size: .5rem;
  }
}
.residence .plan .multi-plans-plan:last-child {
  margin: 0 auto 0 0;
}
.residence .plan .multi-plans-plan:first-child {
  margin: 0;
}
.residence .plan .multi-plans-center .multi-plans-plan:last-child {
  margin: 0;
}
.residence .plan .multi-plans-center .multi-plans-plan:first-child {
  margin: 0;
}
.residence .plan .multi-plans-plan.has-copy {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
}
@media (max-width: 991px) {
  .residence .plan .multi-plans-plan.has-copy {
    gap: 3vw;
  }
}
.residence .plan .multi-plans-plan.has-copy a {
  width: 15.6vw;
}
@media (max-width: 991px) {
  .residence .plan .multi-plans-plan.has-copy a {
    width: 44vw;
  }
}
.residence .plan .multi-plans-plan a {
  padding: 0.8em;
  display: block;
  background: #fff;
  border: 1px solid #c7c7c7;
  font-size: 1.2vw;
  color: #000;
}
@media (max-width: 991px) {
  .residence .plan .multi-plans-plan a {
    font-size: 3.4vw;
  }
}
.residence .plan .multi-plans-plan a dl {
  display: flex;
  justify-content: center;
  gap: 0.8vw;
}
.residence .plan .multi-plans-plan .plan-copy {
  margin-top: 0.6em;
  font-size: 1vw;
  text-align: center;
}
@media (max-width: 991px) {
  .residence .plan .multi-plans-plan .plan-copy {
    font-size: 3.2vw;
  }
}
.residence .layout.more-layout .inner {
  max-width: 100%;
  width: 50vw;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .residence .layout.more-layout .inner {
    width: 100%;
  }
}
.residence .layout.more-layout .inner .slide-site {
  margin: 0 auto;
  width: 39vw;
}
@media (max-width: 991px) {
  .residence .layout.more-layout .inner .slide-site {
    width: 100vw;
  }
}
.residence .layout.more-layout .inner .slide-site .slick-slide {
  margin: 0 1vw;
}
.residence .layout.more-layout .inner .slide-site .slick-list {
  overflow: visible;
}
@media (max-width: 991px) {
  .residence .layout.more-layout .inner .slide-site .slick-list {
    padding: 0 32px !important;
  }
}
.residence .layout .inner {
  max-width: 690px;
}
.residence .layout figure a {
  display: block;
  position: relative;
  border: 1px solid #C7C7C7;
  background-color: #fff;
  padding: 30px;
  transition: 0.5s;
}
.residence .layout figure a:after {
  content: "";
  width: 35px;
  height: 35px;
  background-color: #fff;
  background-image: url(../images/common/icon-zoom.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px;
  position: absolute;
  right: -1px;
  bottom: -1px;
  border: 1px solid #C7C7C7;
}
@media (max-width: 767px) {
  .residence .layout figure a:after {
    width: 24px;
    height: 24px;
    background-size: 16px;
  }
}
.residence .layout figure a .floor-cap {
  top: 16px;
  left: 16px;
  position: absolute;
  color: #000;
  font-size: 1.4vw;
}
@media (max-width: 991px) {
  .residence .layout figure a .floor-cap {
    font-size: 4vw;
  }
}
.residence .layout figure a:hover {
  opacity: 0.6;
}
.residence .equipments .inner {
  max-width: 770px;
}
.residence .equipments .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
.residence .equipments .flex.eqt-lists {
  margin-bottom: 48px;
  justify-content: center;
}
.residence .equipments .flex.eqt-lists::after {
  content: none;
}
.residence .equipments .flex.eqt-lists dl {
  display: flex;
  width: 80%;
  align-items: center;
  gap: 48px;
}
.residence .equipments .flex.eqt-lists dl dt {
  display: flex;
  width: 40.5%;
  flex-shrink: 0;
}
.residence .equipments .flex.eqt-lists dl span{
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    margin: 10px 0;
}
.residence .equipments .flex.eqt-lists dl span::before{
      content: "";
    width: 17px;
    height: 1px;
    background-color: #333;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: 0.7em;
}
.residence .equipments .flex.eqt-lists2 {
  margin: clamp(12px, 5vw, 50px) 0 clamp(48px, 6vw, 60px);
}
.residence .equipments .flex.eqt-lists2 dl {
  justify-content: center;
}
.residence .equipments .flex.eqt-lists2 dl dt {
  display: block;
  width: 22%;
}
@media (max-width: 767px) {
  .residence .equipments .flex.eqt-lists dl {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
  }
  .residence .equipments .flex.eqt-lists dl dt {
    display: flex;
    width: 48%;
    flex-shrink: 0;
  }
  .residence .equipments .flex {
    row-gap: 15px;
  }
  .residence .equipments .flex.eqt-lists2 dl dt {
    width: 30%;
    display: block;
  }
}
.residence .equipments .flex:after {
  content: "";
  width: 32%;
}
.residence .equipments .flex dl {
  width: 32%;
}
@media (max-width: 767px) {
  .residence .equipments .flex dl {
    width: 48%;
  }
}
.residence .equipments .flex dl dt span {
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .residence .equipments .flex dl dt span {
    font-size: 0.875rem;
  }
}
.residence .equipments .flex dl dt span:before {
  content: "";
  width: 17px;
  height: 1px;
  background-color: #333;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: 0.5em;
}
.residence .equipments .flex dl dd {
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .residence .equipments .flex dl dd {
    font-size: 0.625rem;
  }
}
.residence .equipments ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .residence .equipments ul {
    flex-direction: column;
    row-gap: 20px;
  }
}
.residence .equipments ul:after {
  content: "";
  width: 32%;
}
.residence .equipments ul.only-text {
  justify-content: center;
  gap: 2%;
}
@media (max-width: 767px) {
  .residence .equipments ul.only-text {
    row-gap: 20px;
  }
}
.residence .equipments ul.only-text:after {
  content: none;
}
.residence .equipments ul li {
  width: 32%;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #CECAC5;
  margin-bottom: 2%;
  text-align: center;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .residence .equipments ul li {
    width: 70%;
    margin: auto;
  }
}
.residence .lifeinfo .inner {
  max-width: 690px;
}
.residence .detail-section.lifeinfo .inner {
  max-width: 100%;
}
.residence .detail-section.lifeinfo .inner .flex{
  max-width: 690px;
}
.residence .lifeinfo iframe {
  width: 100%;
  height: 315px;
}
@media (max-width: 767px) {
  .residence .lifeinfo iframe {
    height: 160px;
  }
}
.residence .lifeinfo .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 40px;
  margin: 50px auto;
}
@media (max-width: 767px) {
  .residence .lifeinfo .flex {
    margin: 5% auto;
  }
}
.residence .lifeinfo .flex:after {
  content: "";
  width: 30%;
}
.residence .lifeinfo .flex dl {
  width: 30%;
}
@media (max-width: 767px) {
  .residence .lifeinfo .flex dl {
    width: 48%;
  }
}
.residence .lifeinfo .flex dl dt span {
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 10px 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .residence .lifeinfo .flex dl dt span {
    font-size: 0.875rem;
  }
}
.residence .lifeinfo .flex dl dt span:before {
  content: "";
  width: 17px;
  height: 1px;
  background-color: #333;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: 0.5em;
}
.residence .lifeinfo .flex dl dd {
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .residence .lifeinfo .flex dl dd {
    text-align: left;
  }
}
.residence .lifeinfo .flex dl dd span {
  display: inline-block;
}
@media (max-width: 767px) {
  .residence .details {
    padding-bottom: 30px;
  }
}
.residence .details .inner {
  max-width: 690px;
}
.residence .details h2 {
  font-size: 1.8125rem;
}
@media (max-width: 767px) {
  .residence .details h2 {
    margin-bottom: 0.25em;
    font-size: 1.4rem;
  }
}
.residence .details h2 span:after {
  display: none;
}
.residence .details .detail {
  border-top: 1px solid #656565;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0 0 0;
}
.residence .details .detail ul {
  width: 32%;
  border-right: 1px dashed #333;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .residence .details .detail ul {
    width: 80%;
    padding: 0;
    margin-bottom: 5%;
  }
}
.residence .details .detail ul li {
  margin-bottom: 0.4em;
  padding-left: 1.4em;
  text-indent: -1.4em;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  list-style: circle;
  list-style-position: inside;
}
.residence .details .detail ul li:last-child {
  margin-bottom: 0;
}
.residence .details .detail dl.rent {
  width: 65%;
}
@media (max-width: 767px) {
  .residence .details .detail dl.rent {
    width: 100%;
    margin-bottom: 5%;
  }
}
.residence .details .detail dl.rent dt {
  font-size: 1.3125rem;
  font-weight: 700;
}
.residence .details .detail dl.rent dd dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.residence .details .detail dl.rent dd dl dt {
  font-weight: 400;
  font-size: 0.875rem;
  width: 80px;
  margin: 6px 0;
}
.residence .details .detail dl.rent dd dl dd {
  width: calc(100% - 80px);
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 6px 0;
}
.residence .details .detail dl.outline {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
  border-bottom: 1px solid #C7C7C7;
  padding: 12px 0;
}
.residence .details .detail dl.outline:nth-of-type(2) {
  border-top: 1px solid #C7C7C7;
}
.residence .details .detail dl.outline dt {
  width: 80px;
}
.residence .details .detail dl.outline dd {
  width: calc(100% - 80px);
  font-weight: 700;
  line-height: 1.3;
}
.residence .details .detail p.txt {
  font-size: 0.75rem;
  line-height: 1.3;
  margin-top: 15px;
}
.residence .details .detail dl.outline.borderTop-none{
  border-top: none;
}
@media (max-width: 767px) {
  .residence .details .detail p.txt {
    margin-top: 5%;
  }
}
.residence .details .text-links {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .residence .details .text-links {
    margin-top: 40px;
    gap: 20px;
  }
}
.residence.plan .mv figure {
  position: relative;
}
.residence.plan .mv figure:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
}
.residence.plan .hero-copy .lead .small-text br {
  display: none;
}
.residence.plan .hero-copy .lead .small-text em {
  font-style: normal;
  display: inline-block;
}
.residence.plan .titles .title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 2px solid #000;
  margin-top: 60px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .residence.plan .titles .title {
    display: block;
    margin-top: 40px;
  }
}
.residence.plan .titles .title h2 {
  font-size: 2.0625rem;
  font-weight: 400;
}
.residence.plan .titles .title h2 span {
  font-size: 4.125rem;
}
.residence.plan .titles .title dl {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .residence.plan .titles .title dl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.residence.plan .titles .title dl dt {
  font-size: 1.9375rem;
  border-left: 1px solid #EBEAEA;
  border-right: 1px solid #EBEAEA;
  padding: 0 20px;
  margin: 0 20px;
}
@media (max-width: 767px) {
  .residence.plan .titles .title dl dt {
    border: none;
    padding: 10px 0;
    margin: 10px 0;
    border-top: 1px solid #EBEAEA;
    border-bottom: 1px solid #EBEAEA;
    width: 100%;
  }
}
.residence.plan .titles .title dl dt span {
  font-size: 3.0625rem;
}
.residence.plan .titles .title dl dt em {
  font-style: normal;
  display: block;
}
.residence.plan .titles .title dl dd {
  font-size: 1.6875rem;
}
@media (max-width: 767px) {
  .residence.plan .titles .title dl dd {
    padding: 10px 0;
  }
}
.residence.plan .titles .total-unit {
  margin-top: 60px;
}
.residence.plan .titles .total-unit .inline-block {
  padding: 0.4em 1em;
  font-size: 1.25rem;
  background: #F7EF9D;
}
.residence.plan .titles .total-unit + .title {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .residence.plan .titles .total-unit {
    padding: 10px 0;
  }
}
.residence.plan .titles .total-unit .en-font {
  font-size: 2.25rem;
}
.residence.plan .titles .menseki {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D0D0D0;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .residence.plan .titles .menseki {
    display: block;
  }
}
.residence.plan .titles .menseki + figure {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .residence.plan .titles .menseki + figure {
    margin-top: 30px;
  }
}
.residence.plan .titles .menseki + .js-tab-field {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .residence.plan .titles .menseki + .js-tab-field {
    margin-top: 30px;
  }
}
.residence.plan .titles .menseki dl {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .residence.plan .titles .menseki dl {
    border: none;
    padding: 0;
    margin: 0;
  }
}
.residence.plan .titles .menseki dl dt {
  font-size: 1rem;
  margin-right: 5px;
}
.residence.plan .titles .menseki dl dd {
  font-size: 1.5rem;
}
.residence.plan .titles .menseki dl dd span {
  font-size: 2.5rem;
  font-weight: 700;
}
.residence.plan .titles .menseki dl dd em {
  font-size: 0.75rem;
  font-style: normal;
  display: block;
}
.residence.plan .titles .menseki p {
  margin: 0;
}
.residence.plan .titles .menseki p.caption {
  margin-left: 10px;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 1190px) {
  .residence.plan .titles .menseki dl dt {
    font-size: .8rem;
}
.residence.plan .titles .menseki dl dd {
  font-size: 1.3rem;
}
.residence.plan .titles .menseki dl dd span {
  font-size: 1.8rem;
}
  .residence.plan .titles .menseki p {
    font-size: .65rem;
  }
}
@media (max-width: 767px) {
  .residence.plan .titles .menseki p {
    margin-top: 10px;
    font-size: 1rem;
  }
  .residence.plan .titles .menseki p.caption {
    margin-left: 0;
  }
}
.residence.plan .titles .plan-copy {
  margin-top: 24px;
  font-size: 1.5rem;
}
.residence.plan .titles .price {
  border-bottom: 1px solid #D0D0D0;
  padding: 20px 0;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .residence.plan .titles .price {
    margin-bottom: 30px;
  }
}
.residence.plan .titles .price dl {
  font-size: 1rem;
}
.residence.plan .titles .price dl dt {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .residence.plan .titles .price dl dt {
    align-items: stretch;
  }
}
.residence.plan .titles .price dl dt em {
  font-style: normal;
}
@media (max-width: 767px) {
  .residence.plan .titles .price dl dt em {
    white-space: nowrap;
    margin-top: 1em;
    display: inline-block;
  }
}
.residence.plan .titles .price dl dt p {
  font-size: 1.625rem;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .residence.plan .titles .price dl dt p em {
    margin: 0;
    white-space: normal;
  }
}
.residence.plan .titles .price dl dt p span {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .residence.plan .titles .price dl dt p span {
    white-space: wrap;
  }
}
.residence.plan .titles .price dl dd {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .residence.plan .titles .price dl dd {
    margin-top: 20px;
  }
}
.residence.plan .titles figure {
  max-width: 510px;
  margin: auto;
}
.residence.plan .titles figure a {
  display: block;
  text-align: center;
  position: relative;
  border: 1px solid #C7C7C7;
  background-color: #fff;
  padding: 30px;
  transition: 0.5s;
}
.residence.plan .titles figure a:after {
  content: "";
  width: 35px;
  height: 35px;
  background-color: #fff;
  background-image: url(../images/common/icon-zoom.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px;
  position: absolute;
  right: -1px;
  bottom: -1px;
  border: 1px solid #C7C7C7;
}
@media (max-width: 767px) {
  .residence.plan .titles figure a:after {
    width: 24px;
    height: 24px;
    background-size: 16px;
  }
}
.residence.plan .titles figure a:hover {
  opacity: 0.6;
}
.residence.plan .titles figure a img {
  max-height: 540px;
  width: auto;
}
.residence.plan .titles2 figure a img {
  max-height: 500px;
}
@media (max-width: 767px) {
  .residence.plan .titles figure a img {
    max-height: inherit;
    max-width: 100%;
  }
}
.residence.plan .equipments h2 p {
  font-weight: 400;
  max-width: 370px;
  margin: auto;
}
.residence.plan .equipments .grid-col2 {
  margin-top: 55px;
}
@media (max-width: 767px) {
  .residence.plan .equipments .grid-col2 {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 55px;
  }
}
.residence.plan .equipments .grid-col2 p a svg.right {
  margin: 0 0 0 8px;
}
.residence.plan .resemble-lead {
  margin-top: -6%;
}
.residence.plan .resemble-lead + .multi-plans {
  margin-top: 16px;
}
.residence.plan .multi-plans {
  margin: -6% auto 140px;
  width: 48vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6vw;
}
@media (max-width: 991px) {
  .residence.plan .multi-plans {
    width: 90vw;
    gap: 2vw;
  }
}
.residence.plan .multi-plans + .multi-plan-num {
  margin-top: 32px;
}
.residence.plan .multi-plans-plan {
  width: 15.6vw;
}
@media (max-width: 991px) {
  .residence.plan .multi-plans-plan {
    width: 44vw;
  }
}
.residence.plan .multi-plans-plan.has-copy {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
}
@media (max-width: 991px) {
  .residence.plan .multi-plans-plan.has-copy {
    gap: 3vw;
  }
}
.residence.plan .multi-plans-plan.has-copy a {
  width: 15.6vw;
}
@media (max-width: 991px) {
  .residence.plan .multi-plans-plan.has-copy a {
    width: 44vw;
  }
}
.residence.plan .multi-plans-plan a {
  padding: 0.8em;
  display: block;
  background: #fff;
  border: 1px solid #c7c7c7;
  font-size: 1.2vw;
  color: #000;
}
@media (max-width: 991px) {
  .residence.plan .multi-plans-plan a {
    font-size: 3.4vw;
  }
}
.residence.plan .multi-plans-plan a dl {
  display: flex;
  justify-content: center;
  gap: 0.8vw;
}
.residence.plan .multi-plans-plan .plan-copy {
  margin-top: 0.6em;
  font-size: 1vw;
  text-align: center;
}
@media (max-width: 991px) {
  .residence.plan .multi-plans-plan .plan-copy {
    font-size: 3.2vw;
  }
}
.residence .ps-btn {
  position: absolute;
  bottom: 80px;
  color: #000;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .residence .ps-btn {
    font-size: 1.4rem;
    bottom: 40px;
  }
}
.residence .ps-btn::after {
  content: "";
  display: block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(45deg);
  width: 180px;
  height: 8px;
}
.residence .imaike-vr-wrap:last-child {
  margin-bottom: 60px;
}
.residence .vr-mr.imaike_vr_mr a {
  margin-bottom: 20px;
  max-width: 480px;
  background: #F7EF9D;
  border: 1px solid #F7EF9D;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .residence .vr-mr.imaike_vr_mr a {
    font-size: 0.8rem;
    padding: 1.4em 0;
  }
}
.residence .vr-mr.imaike_vr_mr + .multi-plans {
  margin-top: 0;
}
.residence .vr-mr.imaike_vr_mr.imaike_vr_detail {
  margin-top: -6%;
}
@media (max-width: 767px) {
  .residence .vr-mr.imaike_vr_mr.imaike_vr_detail {
    margin-top: 0;
  }
}
.residence .vr-mr a {
  margin: 0 auto 60px;
  display: block;
  background: inherit;
  border: 1px solid #000;
  padding: 1em 0;
  max-width: 400px;
  font-size: 1.2rem;
  width: 90%;
  text-align: center;
  color: #000;
  position: relative;
}
.residence .vr-mr a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  width: 27px;
  height: 27px;
  background: url(../images/common/arrow.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.residence .vr-mr iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.residence .vr-link {
  margin: -6% auto 140px;
  max-width: 690px;
  width: 45.9vw;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .residence .vr-link {
    margin-top: 0;
    width: 90vw;
    margin-bottom: 32px;
  }
}
.residence .vr-link iframe {
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 4/3;
}
.residence .dimensional-img {
  margin: 0 auto;
  max-width: 690px;
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}
.residence .dimensional-img iframe {
  margin: 0 auto;
  width: 100%;
  height: 320px;
}
.residence .dimensional-img .a-enter-vr-button {
  display: none;
}
.residence .dimensional-img .dimensional-icon {
  position: absolute;
  top: 4%;
  right: 2%;
  width: 8%;
}
.residence .feature-lists {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.residence .feature-lists .note {
  margin-top: 0.6em;
  line-height: 1.5;
}
.residence .detail-fix {
  position: fixed;
  bottom: 80px;
  left: auto;
  right: 0;
  width: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 11px;
}
@media (max-width: 992px) {
  .residence .detail-fix {
    right: 0;
    left: 0;
    gap: 0;
    bottom: 0;
    width: 100%;
  }
  .residence .detail-fix.sp-none {
    display: none;
  }
}
@media (min-width: 991px) {
  .residence .detail-fix.pc-none {
    display: none;
  }
}
.residence .detail-fix-btn {
  max-width: 250px;
  width: 100%;
  padding: 1em .6em 1em 0;
  display: block;
  font-size: 1.275rem;
  background: #06C755;
  text-align: center;
  color: #fff;
  font-weight: 500;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 8px;
}
.residence .detail-fix-btn.bg-yl {
  padding: 0.93em 0;
  font-size: 1.125rem;
  background: #f8ee91;
  color: #000;
}
@media (max-width: 992px) {
  .residence .detail-fix-btn {
    max-width: inherit;
    flex: 1;
    box-shadow: none;
    border-radius: 0;
  }
}
.residence .detail-fix-btn::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/common/line-arrow.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.residence .detail-fix-btn.bg-yl::after {
  width: 27px;
  height: 27px;
  background: url(../images/common/arrow.png) no-repeat center center;
  background-size: contain;
  right: 20px;
}
@media (max-width: 767px) {
  .residence .detail-fix-btn::after {
    content: none;
  }
}
.residence .detail-cv-section {
  background: linear-gradient(0deg, #fff 0, #fff 50%, #F2EADC 50%, #F2EADC 100%);
}
.residence .detail-cv-section.first {
  margin-bottom: 20px;
}
.residence .detail-cv-section.second {
  padding: 20px 0;
}
.residence .detail-cv-section.third {
  margin-bottom: 40px;
}
.residence .detail-cv-section.plan-first {
  padding: 20px 0;
  margin-top: -80px;
  background: linear-gradient(0deg, #F2EADC 0, #F2EADC 50%, #fff 50%, #fff 100%);
}
@media (max-width: 767px) {
  .residence .detail-cv-section.plan-first {
    margin-top: 0;
  }
}
.residence .detail-cv-section.plan-second {
  padding: 20px 0;
}
@media (max-width: 767px) {
  .residence .detail-cv-section.plan-second {
    padding: 0;
    margin-bottom: 32px;
  }
}
.residence .detail-cv {
  margin: 0 auto;
  max-width: 512px;
  width: min(100% - 48px, 93%);
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}
@media (max-width: 767px) {
  .residence .detail-cv {
    gap: 16px;
  }
}
.residence .detail-cv.mrg-top {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .residence .detail-cv.mrg-top {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .residence .detail-cv.mrg-top.sp {
    margin-top: 0;
  }
}
.residence .detail-cv.mrg-btm {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .residence .detail-cv.mrg-btm {
    margin-bottom: 16px;
  }
}
.residence .detail-cv-btn {
  display: block;
  max-width: 250px;
  width: 100%;
  padding: 0.93em 0;
  display: block;
  font-size: 1.125rem;
  background: #FFD138;
  text-align: center;
  color: #000;
  font-weight: 500;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  .residence .detail-cv-btn {
    box-shadow: none;
    max-width: inherit;
    width: 100%;
  }
}
.residence .detail-cv-btn::after {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background: url(../images/common/arrow.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.residence .detail-cv-btn:first-child {
  background: #F7EF9D;
}
.residence .img-wrapper .caption.is-bk {
  color: #000;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}

.a-enter-vr.fullscreen .a-enter-vr-button {
  background-image: url(../images/property/itabashi-hommachi/dimensional-icon.webp);
}

.a-enter-vr-button {
  background: url(../images/property/itabashi-hommachi/dimensional-icon.webp) no-repeat center center !important;
  background-size: contain !important;
  width: 8%;
  aspect-ratio: 1/1;
  position: static !important;
}

.a-enter-ar, .a-enter-vr {
  top: 4% !important;
  right: 2% !important;
  left: auto !important;
  width: auto !important;
  bottom: auto !important;
  display: block;
}

.plan-btns {
  display: flex;
  border: 1px solid #C7C7C7;
  border-bottom: none;
  max-width: 510px;
  margin: 40px auto 0;
}
.plan-btns-btn {
  cursor: pointer;
  height: 52px;
  line-height: 1.3;
  flex: 1;
  text-align: center;
  border-left: 1px solid #C7C7C7;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .plan-btns-btn {
    font-size: 0.7rem;
  }
}
.plan-btns-btn:first-child {
  border-left: none;
}
.plan-btns-btn.is-active {
  background: #F7EF9D;
}

.plan-note {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #000;
}
@media (max-width: 767px) {
  .plan-note {
    top: 24px;
    left: 24px;
  }
}

.page-up-container {
  width: 50vw;
  height: 50vh;
}
@media (max-width: 992px) {
  .page-up-container {
    width: 100vw;
  }
}
.page-up-container .slick-list {
  padding: 0 !important;
}
.page-up-container .page-mv-slide {
  background-position: bottom center;
}

.page-down-container {
  width: 50vw;
  height: 50vh;
}
@media (max-width: 992px) {
  .page-down-container {
    width: 100vw;
  }
}
.page-down-container .slick-list {
  padding: 0 !important;
}
.page-down-container .page-mv-slide {
  background-position: top center;
}

.page-mv-slide {
  height: 50vh;
  background-size: cover;
  position: relative;
}

.modal {
    width: calc(100% - 32px);
    max-width: 500px;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 121;
}
.modal-inner {
    max-height: 75vh;
    overflow: auto;
}
.modal-inner .fit-img{
  border: 1px solid #3E3A39;
}
.modal-close {
    width: 30px;
    fill: #fff;
    position: absolute;
    top: -30px;
    right: 0;
    cursor: pointer;
    z-index: 1;
}
.modal-close .cls-1 {
  fill: none;
  stroke: #3e3a39;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}

.modal-close .cls-2 {
  fill: #c8c9ca;
  stroke-width: 0px;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 13;
}
.qr-items{
  position: relative;
}
.line-qr{
  position: absolute;
  display: none;
}
.line-qr.show{
  display: block;
  animation: fadeIn .4s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0; /* 初期状態は透明 */
  }
  to {
    opacity: 1; /* 完全に表示された状態 */
  }
}

@media (min-width: 768px) {
  .qr-item a {
    pointer-events: none;
  }
}

/*トップナビ内バナー*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.nav-modal-container,
.qr-modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
  background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    z-index: 13;
}
/*モーダル本体の擬似要素の指定*/
.nav-modal-container:before,
.qr-modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.nav-modal-container.active,
.qr-modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: 90%;
}

/*--------------------------------
state
--------------------------------*/
.is-none {
  display: none;
}

.disabled {
  opacity: 0.1;
  cursor: default;
  pointer-events: none;
}

.unscrollable {
  height: 100%;
  overflow: hidden;
}

.coming-soon {
  opacity: 0.8;
  pointer-events: none;
}

.none {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.is-fv {
  opacity: 0;
  animation-fill-mode: both;
  visibility: hidden;
}

.is-light {
  color: #fff;
}

.is-dark {
  color: #000;
}

.gray-text {
  color: #656565;
}
.is-key {
  color: #efc100;
}
.is-key2 {
  color: var(--primary);
}
.is-key3 {
  color: var(--secondary);
}

.is-accent {
  color: #6cc24a;
}

.is-shadow {
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}

.is-marker {
  background: linear-gradient(transparent 50%, #f8ee91 50%);
}

.is-radius {
  border-radius: 10px;
  overflow: hidden;
}

.is-alert {
  color: #ff1c1c;
}


.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-color: #f0e87b;
  text-decoration-thickness: 3px;
}
.text-link:hover {
  letter-spacing: 0.15em;
  text-underline-offset: 8px;
}
.text-link svg {
  margin-right: 8px;
  width: 18px;
  display: inline-block;
  vertical-align: middle;
}

.small-text {
  font-size: 70%;
}

.large-text {
  font-size: 150%;
}

.line-wide {
  line-height: 2.4;
}
.en-font {
  font-family: "futura-pt", sans-serif;
}
.garamond-font {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.gothic-font {
  font-family: "Noto Sans JP", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.shippori{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.hoo-serif {
  font-family: "Times New Roman", Times, serif;
  font-weight: 300;
}

.is-semibold {
  font-weight: 600;
}

.is-bold {
  font-weight: 800;
}

.is-thin {
  font-weight: 300;
}
.is-reg{
  font-weight: 400;
}

.has-line {
  padding-bottom: 0.2em;
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #cecece;
}

.has-border-top {
  border-top: 1px solid #cecece;
}

.has-border-bottom {
  padding-bottom: 0.4em;
  border-bottom: 1px solid #656565;
}

@media (min-width: 992px) {
  .pc-order-2 {
    order: 2;
  }
}
@media (max-width: 767px) {
  .sp-text-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .pc-none {
    display: none;
  }
}
@media (max-width: 991px) {
  .sp-none {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile-none {
    display: none;
  }
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

.marginTop-40{
  margin-top: clamp(8px, 2vw, 40px);
}
.hoverNone:hover{
  color: #000;
  opacity: 1;
}
.flex-column{
  flex-direction: column;
}
.residence .equipments ul li.flex-column{
  padding-top: 10px;
}
.cs{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
}