@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  background: url(../img/common/bg.webp) repeat;
  overflow-x: hidden;
  color: #222;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  width: 100%;
  background-color: #fcfdfe;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  display: block;
}

a:hover {
  opacity: 0.6;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main,
picture {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.sp{
  display: none;
}

.pc{
  display: block;
}

@media (max-width: 900px) {
  .sp{
    display: block;
  }
  
  .pc{
    display: none;
  }
}

.nav-sp{
  display: none;
}

.nav-pc{
  display: block;
}

@media (max-width: 900px) {
.nav-sp{
  display: block;
}
  
.nav-pc{
  display: none;
}
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/***************************

layout/_header.scss

***************************/

.main-header {
  width: 200px;
  position: fixed;
  padding: 2%;
}

@media (min-width: 1200px) {
  .main-header {
      width: 150px;
  }
}

.header__name{
    font-size: 62px;
    writing-mode: vertical-lr;
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: 0.05em;
    margin-top: 30px;
}

.main-header__menu-item--contact .main-header__link{
  border: 1px solid #222 !important;
  background-color: #222;
  border-radius: 50px;
  color: #fff;
  padding: 18px 35px !important;
  max-width: 200px;
  width: 100%;
}

.main-header__menu {
  padding-left: 8px;
}

@media (min-width: 1200px) {
  .main-header__menu {
      padding-left: 0;
  }
}

@media (max-width: 900px) {
  .main-header__menu {
      display: flex;
      flex-grow: 0;
      justify-content: flex-start;
      flex-wrap: wrap;
      padding-left: 0;
  }
}

.main-header__menu-item {
  font-size: 1.6rem;
}

@media (max-width: 1080px) {
  .main-header__menu-item {
    font-size: 1.4rem;
  }
}

@media (max-width: 900px) {
  .main-header__menu-item {
      font-size: 1.8rem;
      padding-left: 5px;
      margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .main-header__menu-item {
      width: 80%;
      overflow: hidden;
  }
}

@media (min-width: 769px) {
  .main-header__menu-item:last-of-type {
      margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .main-header__menu-item:nth-child(even) {
      padding-left: 0;
  }
}

.main-header__menu-item span {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .main-header__menu-item--contact {
      margin-top: -10px;
      margin-left: -6px;
      padding-top: 5px;
      padding-left: 6px;
  }
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 7;
}

.header-overlay.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.navi-wrap{
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100% - 200px);
  text-align: right;
  padding: 20px 2%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}

.is-active .navi-wrap{
  width: calc(100% - 202px);
  background: rgba(0, 0, 0,0.4);
}

.navi-wrap .main-header__other{
  display: flex;
  margin-bottom: 5px;
  justify-content: flex-end;
}

.navi-wrap .main-header__other a{
  padding: 0 5px;
}

.navi-wrap .main-header__menu{
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.navi-wrap .main-header__menu li a{
  border-left: 2px solid #222;
  font-family: "Red Hat Display", sans-serif;
  padding: 0 15px;
}

.navi-wrap .main-header__menu li.main-header__menu-item--contact a:hover{
  border: 1px solid #222 !important;
  background: #fff;
  color: #222;
}

.is-active .navi-wrap .main-header__menu li a{
  color: #fff;
  border-left: 2px solid #fff;
}

.navi-wrap .main-header__menu li:first-child a{
  border-left: 0;
}

.navi-wrap.sp .main-header__menu li a{
  color: #fff;
  border-left: 2px solid #fff;
}

/*-----------------------------
  /#header
-----------------------------*/

.hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  position: absolute;
  z-index: 1000;
  right: 2.5%;
  top: 26px;
}
@media screen and (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}

.hamburger__line {
  display: block;
  width: 30px;
  height: 1px;
  background-color: #222;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.header.hidden .hamburger__line {
  background-color: #fff;
}

.header.fixed .hamburger__line {
  background-color: #fff;
}

.hamburger.openNav .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(10px, -2px);
}

.hamburger.openNav .hamburger__line:nth-child(2) {
  transform: rotate(-45deg) translate(6px, 6px);
}

.hamburger.openNav .hamburger__line:nth-child(3) {
  display: none;
}

.hamburger.openNav .hamburger__line {
  background-color: #fff;
}

.menu-overlay {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #222;
  transition: top 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.menu-overlay.openNav {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

.header__nav-logo {
  text-align: center;
  max-width: 280px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.menu-overlay ul {
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  grid-row-gap: clamp(10px, 7vh, 27px);
  margin: 20px 0 0;
}

@media screen and (max-width: 900px) {
  .menu-overlay ul {
    grid-row-gap: 20px;
    margin: 0;
  }
}

.menu-overlay ul li {
  line-height: 1;
  border: 0;
  background: transparent;
}

.menu-overlay ul li a {
  text-decoration: none;
  color: #fff;
}
.menu-overlay ul li a .ja {
  font-size: clamp(1.4rem, 7vh, 1.6rem);
  font-weight: 400;
}



@media screen and (max-width: 900px) {
  .menu-overlay ul li a .ja {
    font-size: 15px;
  }

.main-header__other{
  color: #ccc;
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  padding: 5px 20px;
}
  
}


/*-----------------------------
  /#footer
-----------------------------*/

#footer {
  border-top: 2px solid #222;
  padding: 60px 0;
  text-align: center;
}

.footer__bottom-copy{
  font-size: 1.2rem;
}

@media screen and (max-width: 900px) {

}
@media screen and (max-width: 580px) {

}
@media screen and (max-width: 472px) {

}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: 700;
}

.fwsb {
  font-weight: 600;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.fwbl {
  font-weight: 900;
}

.f12 {
  font-size: 1.2rem;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}

.f16 {
  font-size: 1.6rem;
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f20 {
  font-size: 2rem;
}
@media screen and (max-width: 900px) {
  .f20 {
    font-size: 1.6rem;
  }
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 900px) {
  .f21 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 450px) {
  .f21 {
    font-size: 4.7vw;
  }
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 900px) {
  .f24 {
    font-size: clamp(1.8rem, 2.9vw, 4.5rem);
  }
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 450px) {
  .f28 {
    font-size: 6vw;
  }
}

.f30 {
  font-size: 3rem;
}
@media screen and (max-width: 600px) {
  .f30 {
    font-size: 5vw;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 550px) {
  .f32 {
    font-size: 5.4vw;
  }
}

.f36 {
  font-size: 3.6rem;
}
@media screen and (max-width: 900px) {
  .f36 {
    font-size: 4.8vw;
  }
}

.f38 {
  font-size: 3.8rem;
}
@media screen and (max-width: 900px) {
  .f38 {
    font-size: 4vw;
  }
}

.f40 {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .f40 {
    font-size: 6.6vw;
  }
}

.f42 {
  font-size: 4.2rem;
}
@media screen and (max-width: 900px) {
  .f42 {
    font-size: 5.1vw;
  }
}

.f43 {
  font-size: 4.3rem;
}
@media screen and (max-width: 450px) {
  .f43 {
    font-size: 10vw;
  }
}

.f46 {
  font-size: 4.6rem;
}

.f48 {
  font-size: 4.8rem;
}
@media screen and (max-width: 500px) {
  .f48 {
    font-size: 7vw;
  }
}

.f50 {
  font-size: 5rem;
}
@media screen and (max-width: 900px) {
  .f50 {
    font-size: 5.5vw;
  }
}

.f52 {
  font-size: 5.2rem;
}
@media screen and (max-width: 600px) {
  .f52 {
    font-size: 8.7vw;
  }
}

.f56 {
  font-size: 5.6rem;
}
@media screen and (max-width: 900px) {
  .f56 {
    font-size: 6.6vw;
  }
}

.f58 {
  font-size: 5.8rem;
}
@media screen and (max-width: 450px) {
  .f58 {
    font-size: 14vw;
  }
}

.f80 {
  font-size: 8rem;
}
@media screen and (max-width: 500px) {
  .f80 {
    font-size: 16vw;
  }
}

.f120 {
  font-size: 12rem;
}
@media screen and (max-width: 900px) {
  .f120 {
    font-size: 14.4vw;
  }
}

.txt-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}

.w-50em {
  display: inline-block;
  width: 0.5em;
}

.wm-rl {
  writing-mode: vertical-rl;
}

.en {
  font-family: "Red Hat Display", sans-serif;
}

.main-header {
  width: 200px;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 33px;
  z-index: 10;
}

.wrapper {
  width: calc(100% - 200px);
  margin-left: auto;
  margin-right: 0;
  border-left: 2px solid #222;
}

.box-wrap{
  padding: 0 3%;
}

.cm-ttl{
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
  line-height: 1;
  padding: 30px 3%;
}

.line {
  font-family: "Red Hat Display", sans-serif;
  -webkit-text-stroke: 2px #222;
  color: rgba(255, 255, 255, 0);
}  

html {
  scroll-padding-top: 135.39px;
}

.illu{
    transform-origin: center bottom;
    animation: yurayura 3.5s linear infinite;
    -webkit-filter: drop-shadow(2px -1px 5px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px -1px 5px rgba(0, 0, 0, 0.2));
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(5deg);
  }
  50%{
      transform: rotate(-5deg);
  }
}

/*-----------------------------
  .mv
-----------------------------*/

.mv{
  padding: 12% 0 10%;
}

.mv-img__left{
  overflow: hidden;
  width: 35%;
}

.mv-img__left img{
  border-radius: 0 300px 300px 0;
}

.mv__flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -200px;
}

.mv-img__right{
  width: 57%;
  position: relative;
}

.mv-img__right .illu{
  position: absolute;
  left: 0;
  bottom: 0;
}

.mv-txt{
  margin-bottom: 5%;
  margin-left: 5%;
  width: 35%;
  z-index: 2;
}

.mv-txt__h2{
  margin-bottom: 20px;
  text-shadow: 2px 3px 12px rgba(255, 255, 255, 0.7);
}

/*-----------------------------
  .top-about
-----------------------------*/

.top-about{
  border-top: 2px solid #222;
}

.top-about__flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-about__h3{
    font-size: clamp(24px, 2.3rem + 4vw, 90px);
    padding: 6% 5%;
    width: 40%;
    line-height: 1;
}

.top-about__cont{
  border-left: 2px solid #222;
  padding: 6%;
  width: 60%;
  box-sizing: border-box;
}


/*-----------------------------
  .top-floor
-----------------------------*/

.top-floor .box-wrap{
  padding: 6%;
}

.top-floor__flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-floor__flex-left{
  
  width: 50%;
}

.top-floor__flex-right{
  position: relative;
  width: 45%;
}

.top-floor__flex-right .illu{
  position: absolute;
  right: 0;
  top: 100%;
  width: 80px;
}

.top-floor__flex-right table th{
    border-bottom: 1px dashed #222;  
    padding: 10px 10px;
    width: 20%;
    font-size: 30px;
}

.top-floor__flex-right table td{
    border-bottom: 1px dashed #222;
    padding: 10px 10px;
    width: 80%;
}

.top-floor__flex-right table th.first,
.top-floor__flex-right table td.first{
  border-top: 1px dashed #222; 
}

/*-----------------------------
  .top-interior
-----------------------------*/

.top-interior{
  margin-bottom: 6%;
}

.top-interior .slider{
  margin: 6% 0 80px;
}

.top-interior .slick-slide{
  margin: 0 15px;
}

.top-interior .slider div img{
  border-radius: 10px;
}

.top-interior .box-wrap{
  position: relative;
}

.top-interior .box-wrap .illu{
  position: absolute;
  left: 62%;
  top: -5%;
  width: 60px;
}

.top-interior__ttl {
  display: flex;
  align-items: center; 
  gap: 15px;
  margin-bottom: 70px;
}

.top-interior__ttl .line {
  -webkit-text-stroke: 1px #222;
  white-space: nowrap; 
}

.top-interior__ttl .decor {
  position: relative;
  flex-grow: 1;
  height: 1px; 
}

.top-interior__ttl .decor:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0; 
  width: 100%; 
  height: 1px;
  background-color: #222;
  transform: translateY(-50%); 
}

.amenity__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity__list li{
  flex-basis: calc(20% - 10px);
  text-align: center;
}

.amenity__list li p{
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 10px 10px;
}

/*-----------------------------
  .top-access
-----------------------------*/

.top-access .box-wrap{
  padding: 6% 3%;
}

.top-access iframe{
  border-radius: 10px;
  margin-bottom: 40px;
}

.top-access__cont{
  padding-left: 50%;
  position: relative;
}

.top-access__cont .illu{
  position: absolute;
  left: 8%;
  bottom: 20px;
  width: 130px;
}

.top-access__cont dl{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.top-access__cont dt{
  font-family: "Red Hat Display", sans-serif;
  padding: 10px 0;
  width: 150px;
}

.google-map{
  color: #fff;
  border-radius: 3px;
  background-color: #222;
  font-size: 13px;
  padding: 0px 10px 1px;
  margin-left: 5px;
  display: inline-block;
}

.top-access__cont dd{
  padding: 10px 0;
  width: calc(100% - 150px);
}

/*-----------------------------
  .top-booking
-----------------------------*/

.top-booking .cm-ttl .f42{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.top-booking .cm-ttl .f18{
  margin-left: 10px;
}

.top-booking .box-wrap{
  padding: 6% 2%;
}

.top-booking__list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.top-booking__list li{
  flex-basis: calc(32% - 15px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-booking__list li a img{
  height: 50px;
  width: 100%;
}

/*-----------------------------
  .top-checkin
-----------------------------*/

.top-checkin .box-wrap{
  padding: 6% 2%;
}

.top-checkin__flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-checkin__flex-img{
  width: 50%;
}

.top-checkin__flex-img img{
  border-radius: 10px;
}

.top-checkin__flex-cont{
  margin-left: 2%;
  width: 45%;
}

.top-checkin__flex-cont .f30{
  margin-bottom: 40px;
}

.top-checkin__flex-cont table{
  width: 100%;
}

.top-checkin__flex-cont table th{
  padding: 15px;
  border: 1px solid #222;
  width: 30%;
}

.top-checkin__flex-cont table td{
  padding: 15px;
  border: 1px solid #222;
  width: 70%;
}

/*-----------------------------
  .top-inquiries
-----------------------------*/

.top-inquiries{
  border-top: 2px solid #222;
  padding: 6% 2%;
}

.top-inquiries__flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-inquiries__flex-cont{
  width: 60%;
}

.top-inquiries__h4{
  font-size: 78px;
  margin-bottom: 10px;
}

.top-inquiries__btn {
  font-family: "Red Hat Display", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  position: relative;
  background: #222;
  border: 1px solid #222;
  border-radius: 50px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  max-width: 300px;
}
.top-inquiries__btn:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
.top-inquiries__btn:hover {
  background: #fff;
  color: #222;
}
.top-inquiries__btn:hover:before {
  border-top: 2px solid #222;
  border-right: 2px solid #222;
}

@media (max-width: 1300px) {
.main-header {
    width: 160px;
}

.wrapper {
    width: calc(100% - 160px);
}

.header__name {
  font-size: 55px;
  margin-top: 20px;
}

.navi-wrap {
  width: calc(100% - 160px);
}

.navi-wrap .main-header__menu li a {
  padding: 0 10px;
}

.is-active .navi-wrap {
  width: calc(100% - 162px);
}

.mv-txt__h2 {
  font-size: 3.6rem;
}

.top-about__h3 {
  font-size: clamp(24px, 1.8rem + 4vw, 90px);
  padding: 6% 6%;
}

.cm-ttl {
  padding: 25px 3%;
}

.cm-ttl .f42 {
  font-size: 3rem;
}

.top-floor__flex-right table th {
  font-size: 22px;
}

.top-access__cont {
  padding-left: 38%;
}

.top-checkin__flex-cont {
  margin-left: 3%;
}

.top-checkin__flex-cont .f30 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.top-checkin__flex-cont table th {
  width: 44%;
}

.top-checkin__flex-cont table td {
  width: 56%;
}

.top-inquiries__h4 {
  font-size: 60px;
  margin-bottom: 0;
}
}

@media (max-width: 1250px) {

.mv-txt__h2 {
    font-size: 3.2rem;
}
  
.mv-txt .f20{
  font-size: 1.7rem;
}

.mv-img__left {
  width: 32%;
}

.top-about__h3 {
  padding: 6% 5%;
}

}

.no-br-1080{
  display: block;
}

@media (max-width: 1080px) {

html {
  scroll-padding-top: 119.99px;
}

.no-br-1080{
  display: none;
}

.main-header {
  padding: 20px;
  width: 130px;
}

.wrapper {
  width: calc(100% - 130px);
}

.navi-wrap {
  width: calc(100% - 130px);
}

.is-active .navi-wrap {
  width: calc(100% - 132px);
}

.main-header__menu-item--contact .main-header__link {
  padding: 12px 22px !important;
}

.navi-wrap .main-header__other a{
  font-size: 13px;
}

.header__name {
  font-size: 38px;
  margin-top: 15px;
}

#footer {
  padding: 30px 0;
}

.mv-txt {
  margin-bottom: -2%;
}

.mv-txt__h2 {
  margin-bottom: 10px;
}

.top-about__flex {
  display: block;
}

.top-about__h3 {
  padding: 6% 4%;
  width: 100%;
}

.top-about__cont {
  border-left: 0;
  border-top: 2px solid #222;
  width: 100%;
}

.top-floor__flex-left {
  width: 100%;
  margin-bottom: 30px;
}

.top-floor__flex {
  display: block;
}  

.top-floor__flex-right {
  width: 100%;
}

.top-interior__ttl {
  margin-bottom: 25px;
}

.amenity__list li {
  flex-basis: calc(25% - 10px);
}

.amenity__list li p{
  font-size: 1.3rem;
}

.top-access iframe {
  margin-bottom: 20px;
  height: 300px;
}

.top-access__cont dt,
.top-access__cont dd {
  padding: 5px 0;
}

.top-booking .cm-ttl .f18 {
  font-size: 1.6rem;
}

.top-checkin__flex-cont .f30 {
  font-size: 2rem;
}

.top-inquiries__h4 {
  font-size: 48px;
}
}

@media (max-width: 900px) {
  
html {
    scroll-padding-top: 70px;
}

  .wrapper {
    border-left: none;
    width: 100%;
  }

  .main-header {
    height: 70px;
    width: 100%;
    padding: 0;
    transition: all 0.3s ease;
  }
  
  .main-header.is-active {
    transition: all 0.3s ease;
  }
  
  .header__logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    border-bottom: 2px solid #222;
    padding: 0 0 0 2.5%;
    transition: all 0.3s ease;
  }

  .is-active .header__logo{
    background: rgba(0,0,0,0.3);
    color: #fff;
    border-bottom: none;
  }

  .is-active .hamburger__line {
    background-color: #fff;
  }

  .header__logo img{
    width: 60px;
  }
  
  .header__name{
    font-size: 15px;
    margin: 0 0 0 10px;
    writing-mode: horizontal-tb;
  }

.main-header__menu-item--contact .main-header__link {
    background-color: #fff;
    color: #222;
    border: 1px solid #fff !important;
    margin: 0 auto;
}  

.line {
    -webkit-text-stroke: 1px #222;
}  

.mv-img__left {
    width: 42%;
}

.mv__flex {
    margin-top: -60px;
}

.mv-txt__h2 {
  font-size: 2.6rem;
}

.top-about__h3 {
  padding: 3% 5%;
  width: 100%;
  font-size: 4rem;
  text-align: center;
}

.top-about__cont {
  padding: 5%;
}

.cm-ttl {
  padding: 3% 5%;
}

.cm-ttl .f42 {
  font-size: 2.2rem;
}

.top-floor .box-wrap {
  padding: 5%;
}

.top-interior .slider {
  margin: 5% 0 3%;
}

.top-interior__ttl .line {
  -webkit-text-stroke: 0;
  font-size: 2rem;
  color: #222;
  font-weight: 400;
}

.amenity__list li {
  flex-basis: calc(33.33% - 10px);
}

.top-access__cont {
  padding-left: 0%;
}

.top-booking .cm-ttl .f42 {
  display: block;
}

.top-booking .cm-ttl .f18 {
  font-size: 1.4rem;
  display: block;
  margin: 10px 0 0;
  font-weight: 100;
}

.top-booking__list li {
  flex-basis: calc(50% - 15px);
}

.top-checkin__flex {
  display: block;
}

.top-checkin__flex-img {
  margin-bottom: 20px;
  width: 100%;
}

.top-checkin__flex-img img{
  width: 100%;
}

.top-checkin__flex-cont {
  margin: 0;
  width: 100%;
}

.top-checkin__flex-cont .f30{
  text-align: center;
}

.top-checkin__flex-cont table td {
  text-align: center;
}

.top-inquiries {
  padding: 5%;
}

.top-inquiries .box-wrap {
  padding: 0;
}

.top-inquiries__flex {
  display: block;
}

.top-inquiries__flex-cont {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.top-inquiries__h4 {
  font-size: 32px;
  text-align: center;
}

.top-inquiries__btn {
  margin: 0 auto;
}

.top-floor__flex-right table td,
.top-floor__flex-right table td,
.top-checkin__flex-cont table th,
.top-checkin__flex-cont table td {
  font-size: 1.5rem;
}

}

@media (max-width: 660px) {
.mv__flex {
  display: block;
  margin-top: 60px;
}

.mv-txt {
  margin-bottom: 3%;
  width: 68%;
}

.mv-txt .f20 {
  font-size: 1.4rem;
}

.mv-img__left{
  display: none;
}

.mv-img__right {
  width: 85%;
  margin-left: 15%;
}

.mv-img__right .illu {
    width: 50px;
}

.cm-ttl {
  border: 0;
  padding: 4% 5%;
  background: rgba(115, 65, 55, 0.4);
  color: #fff;
}

.top-about__h3 {
  font-size: 3.8rem;
}

.box-wrap {
  padding: 0 5%;
}

.top-about__cont,
.top-floor .box-wrap,
.top-access .box-wrap,
.top-booking .box-wrap,
.top-checkin .box-wrap{
  padding: 8% 5% 15%;
}

.top-floor__flex-right .illu {
    top: 90%;
    width: 47px;
}

.top-interior .slider {
  margin: 8% 0 5%;
}

.top-interior {
  margin-bottom: 15%;
}

.top-interior .box-wrap .illu {
    left: 12%;
    top: -5%;
    width: 32px;
}

.amenity__list li {
  flex-basis: calc(51% - 10px);
}

.top-access__cont dt {
  width: 90px;
}

.top-access__cont dd {
  width: calc(100% - 90px);
}

.top-access__cont .illu {
    left: 0;
    bottom: -20px;
    width: 60px;
}

.top-checkin__flex-cont .f30 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.top-checkin__flex-cont table th {
  background: rgba(0, 0, 0, 0.1);
}

.top-inquiries {
  padding: 8% 5%;
}

}