@charset "UTF-8";

/*--------------------------------
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{
    --color-gold: #c8bb9b;
    --color-gold2: #cbad79;
    --color-wh: #fff;
    --color-bk: #000;
    --color-brown: #231815;
    --color-gray: #717071;
}

/*--------------------------------
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;
}
.caption.is-out{
  position: static;
}
@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;
  }
}

.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: calc(100% - 48px);
  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, 120px) 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: 32px 0;
  }
  .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);
}

.caption-sec .caption{
  color: #727171;
}

@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-primary-heading.mb-wide{
  margin-bottom: 1.2em;
}
.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: 12px;
  line-height: 1.5;
}

[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: 350px;
  aspect-ratio: 300 / 29;
  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 16px;
    height: 48px;
  }
  .header .logo {
    width: 226px;
  }
}
.header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(255, 255, 255, 0) 100%);
  /* 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%;
}
.drawer-menu .nav-link.new{
  padding-right: 2.5rem;
  position: relative;
}
.drawer-menu .nav-link.new::after {
  content: "NEW";
  position: absolute;
  top: 4px;
  right: 0;
  content: "NEW";
  font-size: 12px;
  color: #c63021;
}
.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;
  }
}
@media (max-width: 767px) {
  .drawer-menu .nav-link.new{
    padding-right: 1.8rem;
  }
  .drawer-menu .nav-link.new::after{
    font-size: 10px;
  }
}
.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: 36px;
  height: 36px;
  display: flex;
  position: fixed;
  right: 32px;
  top: 40px;
  z-index: 12;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  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: #fff;
  transition: all 0.3s cubic-bezier(0.59, -0.1, 0.58, 0.96);
}
.is-open .hamburger i {
  background: #000;
}
/* .hamburger i:last-child {
  width: 22px;
} */
.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: 30px;
    height: 30px;
    top: 22px;
    right: 10px;
    gap: 4px;
  }
  .header::before{
    height: 50px;
  }
  .is-open .hamburger i:nth-of-type(1){
    transform: translate(0, 6px) rotate(225deg)
  }
}

@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 {
  max-width: 432px;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  z-index: 11;
  /* transform: scale(0.8); */
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  padding-top: 0;
  padding-bottom: 16px;
  transform: translateX(100%);
}
.header-ctn-wrap{
  margin: 0 0 0 auto;
  position: fixed;
  top: 32px;
  right: 100px;
  z-index: 10;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}
.header-ctn-wrap .nav-list a{
  padding: 8px 32px;
  border-radius: 20px;
  font-size: 14px;
}
.header-ctn-wrap .nav-list .request-btn{
  border: 1px solid var(--color-gold2);
}
.header-ctn-wrap .nav-list .reserve-btn{
  border: 1px solid var(--color-brown);
}
.header-ctn-wrap .nav-list a:hover{
  color: var(--color-wh);
  opacity: .7;
}
body.limited .header-ctn-wrap .request-btn{
  display: none;
}
body.limited .nav-ctn-wrap .request-btn{
  display: none;
}
@media (min-width: 992px) {
  .drawer-menu.bukken-drawer {
    justify-content: center;
  }
}
@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%;
  }
  .header-ctn-wrap{
    width: 100%;
    gap: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }
  .header-ctn-wrap .nav-list{
    flex: 1;
  }
  .header-ctn-wrap .nav-list a{
    padding: 16px 8px;
    width: 100%;
    display: block;
    border-radius: 0;
    display: grid;
    place-items: center;
    text-align: center;
  }
  body.limited .footer-container{
    padding-bottom: 0;
  }
}
.drawer-menu .nav-item {
  /* flex: 1; */
  width: calc(100% - 80px);
}
.drawer-menu .nav-item:first-child {
  /* flex: 0.5; */
  margin-bottom: 40px;
  padding-top: 80px;
  position: relative;
}
.drawer-menu .nav-item:nth-child(2) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .drawer-menu .nav-item {
    width: calc(100% - 64px);
    flex: auto;
  }
  .drawer-menu .nav-item:first-child {
    padding-top: 0;
    padding-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;
}
.nav-contact-container{
  font-size: 16px;
}
.drawer-menu .footer-meta .logo{
  width: 80%;
}
.nav-contact-wrap{
  margin: 14px 0 0;
}
.nav-contact-wrap .tel-txt{
  font-size: 16px;
  line-height: .1em;
}
.nav-contact-wrap .tel-link{
  font-size: clamp(2.35rem, 3vw, 2.8rem);
}
.nav-contact-wrap .salon-status{
  margin-top: 14px;
  font-size: 16px;
  text-align: left;
}
.global-info-text{
  font-size: 14px;
  margin-top: 1.2em;
  margin-bottom: .8em;
}
.global-info-tel{
  font-size: 36px;
}
.tel-txt{
  margin-right: 8px;
}
.tel-link{
  color: #000;
  font-size: clamp(2.85rem, 4.7vw, 4.2rem);
}
.tel-link:hover{
  color: #000;
}
@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;
  }
}
@media (max-width: 767px) {
  .nav-contact-wrap .salon-status{
    font-size: 14px;
  }
  .tel-link{
    letter-spacing: .05rem;
  }
}
/* .drawer-menu .global-wrap .global-nav{
  flex: 1;
} */
.drawer-menu .nav-link .detail-text{
  /* font-size: 65%; */
  display: flex;
  gap: 12px;
  align-items: center;
}
.drawer-menu a.nav-link:hover{
  color: var(--primary);
}
/* .drawer-menu .global-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-.5px);
  left: 50%;
  background: #000;
} */
@media (max-width: 991px) {
  .drawer-menu .global-wrap::before {
    content: none;
  }
  .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: 20px 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: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}
.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;
  visibility: visible;
  transform: translateX(0);
}
.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;
  }
}
.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%;
  }
}
.add-nav{
  align-items: center;
  gap: 16px;
}
.add-nav li{
  width: calc(50% - 8px);
  display: grid;
  place-items: center;
  border: 1px solid var(--color-bk);
}
.add-nav li a{
  padding: 10px 4px;
  width: 100%;
  display: block;
  color: var(--color-bk);
  text-align: center;
  font-size: 14px;
  transition: all .3s ease-out;
}
.add-nav li a:hover{
  background: var(--color-bk);
  color: var(--color-wh);
}
.nav-ctn-wrap li{
  width: 100%;
}
.nav-ctn-wrap li a{
  padding: 20px 10px;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  transition: all .3s ease-out;
}
.nav-ctn-wrap li a:hover{
  opacity: .7;
  color: var(--color-wh);
}
/*--------------------------------
footer
--------------------------------*/
.footer-container {
  position: relative;
}
.footer-container .inner {
  padding: 32px 0 40px;
  max-width: calc(1680 / 1920 * 100%);
}
@media (max-width: 767px) {
  .footer-container {
    padding-bottom: 48px;
  }
  .footer-container .inner {
    padding-top: 0;
    max-width: 100%;
  }
}

.footer-menu {
  position: relative;
}
/* @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: 400;
  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: "";
  display: block;
  position: absolute;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background: #f8ee91;
  transition: transform 0.4s;
} */
.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;
  padding: 20px 0;
  font-size: 2.2vw;
  background: #efefef;
}
@media (min-width: 768px) {
  .copyright {
    font-size: 10px;
    text-align: right;
  }
}

.footer-contact-container,
.developer-container{
  margin-bottom: 2em;
  padding-bottom: 2em;
  font-size: clamp(16px, 2vw, 20px);
  border-bottom: 1px solid var(--color-bk);
}
.footer-contact-wrap{
  margin: 1em 0 0;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer-meta .logo {
  margin: 1.5em auto 8px;
  max-width: 348px;
  width: 100%;
  aspect-ratio: 300 / 77;
  background: url(../images/common/kintetsu-logo.svg) no-repeat left top;
  background-size: 90%;
}
.footer-meta .logo a {
  height: 100%;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.footer-meta .address {
  font-size: clamp(.95rem, 1.56vw, 1.4rem);
  line-height: .5em;
}
.salon-status{
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.5;
}
.developer-links{
  margin: 0 auto;
  max-width: 348px;
}
.developer-links li{
  margin-bottom: 14px;
}
.developer-links li:last-child{
  margin-bottom: 0;
}
.developer-link{
  padding-left: 1rem;
  display: block;
  color: var(--color-bk);
  font-size: 14px;
  position: relative;
}
.developer-link::before{
  content: "＞";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 12px;
}
.developer-link:hover{
  color: var(--color-bk);
  opacity: .7;
}
.insta-link{
  width: 40px;
  display: block;
}
.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;
  flex-direction: column;
  gap: 20px;
}
.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) {
  .developer-container{
    margin-bottom: 2.5em;
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer-wrapper{
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .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; */
    height: 128px;
    position: absolute;
    gap: 16px;
    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;
  }
  .salon-status{
    text-align: center;
  }
  .footer-meta .logo,
  .developer-links{
    width: 80%;
  }
  .developer-links li{
    margin-bottom: 10px;
  }
  .developer-link{
    padding-left: .8rem;
    font-size: 12px;
  }
  .developer-link::before{
    font-size: 10px;
  }
}

.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;
}

.is-gold{
    color: var(--color-gold);
}

.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;
}

@media (max-width: 767px) {
  .sp-text-center {
    text-align: center;
  }

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

  .sp-text-left {
    text-align: left;
  }
  .sp-block{
    display: block;
  }
}

.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%;
}
.middle-text {
  font-size: 90%;
}
.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;
}
.hoverNone:hover{
  color: #000;
  opacity: 1;
}
.flex-column{
  flex-direction: column;
}
.reserve-btn{
  background: var(--color-brown);
}
.request-btn{
  background: var(--color-gold2);
}
.limited-btn{
  background: var(--color-gray);
}
.page-link-btn{
  background: var(--color-gold2);
}
.blurIn {
    animation: blurIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform: translateZ(0);
    will-change: filter, opacity;
}
@keyframes blurIn {
    0% {
        opacity: 0;
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

/* 物件共通エリア --------------------------------------------------*/
.property-info-sec .inner{
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
}
.property-info-sec .inner:has(.seo),
.property-info-sec .inner:has(.clm){
  padding: 0 20px;
}
.seo{
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  font-size: .75rem;
  font-weight: 500;
}
.ftr_pankuzu{
  font-size: .75rem;
}
.clm {
  display: flex;
  gap: .3em;
  flex-wrap: wrap;
}
.ftr_other {
  margin: 2em auto 0;
  padding: 10px 20px 6px;
  max-width: 1024px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #e6e6e6;
  font-size: .75rem;
}
.ftr_other dl {
  display: flex;
  gap: 3em;
}
.ftr_other dt {
  margin-bottom: .3em;
}
.ftr_other dd {
  display: flex;
  flex-wrap: wrap;
  gap: .7em;
}
.property-info-sec a{
  color: var(--color-bk);
  transition: opacity .2s;
}
.ftr-bnr-wrap{
  justify-content: center;
  gap: 20px 32px;
}
@media screen and (max-width: 767px) {
  .property-info-sec .inner{
    width: 100%;
  }
  .seo{
    display: none;
  }
  .ftr_pankuzu{
    display: none;
  }
  .ftr_other {
    margin: 0 calc(50% - 50vw) 4%;
    padding: 16px;
    width: 100vw;
  }
  .ftr_other dl{
    display: block;
  }
  .ftr_other dl dt{
    margin: 0 0 8px;
  }
  .ftr_other dl dd{
    margin: 0;
  }
  .ftr_other dl dd a {
      display: inline-block;
  }
}