@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "ryo-gothic-plusn", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.9s;
  background-color: #f3f3ed;
}
body.rooms {
  background-color: #f3f3ed;
}
body.active {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  position: relative;
  top: 60px;
  transition: top 1s, opacity 1s;
  opacity: 0;
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
}

#whole {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#whole > main {
  width: 800px;
}
@media only screen and (max-width: 800px) {
  #whole > main {
    width: 100%;
  }
}

body.top .fixed-area {
  display: block;
  position: sticky;
  opacity: 1;
}

.fixed-area {
  width: calc(100% - 800px);
  height: 100vh;
  position: fixed;
  top: 0;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
  z-index: 2;
}
.fixed-area.active {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 800px) {
  .fixed-area {
    display: none;
  }
}
.fixed-area__inner {
  height: 100%;
}
.fixed-area__image {
  height: 100%;
}
.fixed-area__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 801px) {
  body.top .header__menu-toggle__cv-link {
    display: none;
  }
}

.header__logo {
  width: 122px;
  position: fixed;
  left: 0;
  top: 0;
  padding-left: 32px;
  padding-top: 40px;
  z-index: 100;
}
@media only screen and (min-width: 801px) {
  .header__logo {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .header__logo:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 800px) {
  .header__logo {
    width: 80px;
    padding-left: 20px;
    padding-top: 30px;
  }
}
.header__menu-toggle {
  position: fixed;
  padding-top: 40px;
  padding-right: 32px;
  z-index: 100;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 800px) {
  .header__menu-toggle {
    padding-top: 30px;
    padding-right: 20px;
  }
}
.header__menu-toggle__button {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (min-width: 801px) {
  .header__menu-toggle__button:hover > div span:first-child {
    top: 2px;
  }
  .header__menu-toggle__button:hover > div span:last-child {
    bottom: 2px;
  }
}
.header__menu-toggle__button.active > span {
  opacity: 0;
}
.header__menu-toggle__button.active > div span {
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) rotate(10deg) !important;
}
.header__menu-toggle__button.active + .header__menu-toggle__cv-link {
  opacity: 0;
}
.header__menu-toggle__button > span {
  font-size: 14px;
  color: #000;
  font-family: "Instrument Sans", sans-serif;
  opacity: 1;
  transition: opacity 0.3s;
}
.header__menu-toggle__button > div {
  width: 52px;
  height: 8px;
  position: relative;
}
.header__menu-toggle__button > div span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.3s, bottom 0.3s, transform 0.3s;
}
.header__menu-toggle__button > div span:first-child {
  top: 0;
}
.header__menu-toggle__button > div span:last-child {
  bottom: 0;
}
.header__menu-toggle__cv-link {
  display: none;
  transition: opacity 0.3s;
  display: block;
  position: absolute;
  top: 58px;
  right: 14px;
}
@media only screen and (min-width: 801px) {
  .header__menu-toggle__cv-link {
    top: 78px;
    right: 24px;
  }
}
.header__menu-toggle__cv-link span {
  font-size: 18px;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 0 14px 2px;
  letter-spacing: -0.05em;
}
@media only screen and (min-width: 801px) {
  .header__menu-toggle__cv-link span {
    font-size: 23px;
    padding: 0 40px 2px;
    letter-spacing: 0em;
  }
}
.header__mega-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f3ed;
  width: 800px;
  z-index: 99;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.8s, filter 0.8s;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu {
    width: 100%;
  }
}
.header__mega-menu.active {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
}
.header__mega-menu__inner {
  padding: 40px 80px;
  padding-top: 170px;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__inner {
    padding: 30px 20px;
  }
}
.header__mega-menu__logo {
  width: 270px;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__logo {
    display: none;
  }
}
.header__mega-menu__menu {
  margin-top: 120px;
  position: relative;
  left: -6px;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__menu {
    margin-top: 160px;
  }
}
.header__mega-menu__menu ul {
  display: flex;
  gap: 20px;
  flex-direction: column;
  gap: 48px 0;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__menu ul {
    gap: 24px 0;
  }
}
.header__mega-menu__menu ul li a span {
  font-size: 52px;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__menu ul li a span {
    font-size: 42px;
  }
}
.header__mega-menu__instagram {
  margin-top: 50px;
}
.header__mega-menu__instagram a span {
  font-size: 29px;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__instagram a span {
    font-size: 22px;
  }
}
.header__mega-menu__cv {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__cv {
    bottom: 30px;
    right: 20px;
  }
}
.header__mega-menu__cv a {
  display: block;
  width: 240px;
  padding: 2px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #000;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__cv a {
    width: 180px;
  }
}
.header__mega-menu__cv a span {
  font-size: 21px;
  line-height: 1.5;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 800px) {
  .header__mega-menu__cv a span {
    font-size: 18px;
  }
}

.footer {
  padding-bottom: 60px;
  padding-top: 200px;
}
@media only screen and (max-width: 800px) {
  .footer {
    padding-top: 120px;
    padding-bottom: 26px;
  }
}
.footer__inner {
  padding: 0 40px;
}
@media only screen and (max-width: 800px) {
  .footer__inner {
    padding: 0 20px;
  }
}
.footer__logo {
  width: 300px;
}
@media only screen and (max-width: 800px) {
  .footer__logo {
    width: 200px;
  }
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}
@media only screen and (max-width: 800px) {
  .footer__row {
    margin-top: 32px;
  }
}
.footer__address p {
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width: 800px) {
  .footer__address p {
    font-size: 12px;
    line-height: 1.75;
  }
}
.footer__menu ul {
  display: flex;
  gap: 2px 20px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 800px) {
  .footer__menu ul {
    gap: 10px 20px;
    padding-left: 60px;
  }
}
.footer__menu ul li {
  width: calc(50% - 10px);
}
.footer__menu ul li a span {
  font-size: 17px;
  line-height: 1.8;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 800px) {
  .footer__menu ul li a span {
    font-size: 15px;
    line-height: 1.75;
  }
}
.footer__map {
  margin-top: 10px;
}
.footer__map a {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Instrument Sans", sans-serif;
}
@media only screen and (max-width: 800px) {
  .footer__map a {
    font-size: 12px;
    line-height: 1.75;
  }
}
.footer__copyright {
  margin-top: 100px;
  width: 130px;
}
@media only screen and (max-width: 800px) {
  .footer__copyright {
    width: 100px;
  }
}

.page-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 800px) {
  .page-top {
    right: 20px;
    bottom: 20px;
  }
}
.page-top.active {
  opacity: 1;
  pointer-events: auto;
}
.page-top a {
  width: 40px;
  height: 40px;
  display: block;
}
@media only screen and (max-width: 800px) {
  .page-top a {
    width: 30px;
    height: 30px;
  }
}
.page-top a img {
  width: 100%;
  height: 100%;
}

body.faq .inner {
  max-width: 960px;
  padding-top: 180px;
}
@media only screen and (max-width: 800px) {
  body.faq .inner {
    max-width: 100%;
    padding: 0 20px;
    padding-top: 160px;
  }
}
body.faq .faq__title h2 {
  font-size: 60px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.75;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__title h2 {
    font-size: 42px;
  }
}
body.faq .faq__items {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__items {
    margin-top: 40px;
    gap: 40px;
    padding-bottom: 40px;
  }
}
body.faq .faq__item {
  padding-top: 120px;
  border-top: 1px solid #ddd;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__item {
    padding-top: 40px;
  }
}
body.faq .faq__item:first-child {
  padding-top: 0;
  border-top: none;
}
body.faq .faq__sub-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
body.faq .faq__sub-title strong {
  font-size: 46px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.75;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__sub-title strong {
    font-size: 32px;
  }
}
body.faq .faq__sub-title small {
  font-size: 17px;
  line-height: 1.75;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__sub-title small {
    font-size: 14px;
    line-height: 1.75;
  }
}
body.faq .faq__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__content {
    margin-top: 40px;
    gap: 32px;
  }
}
body.faq .faq__content__box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__content__box {
    gap: 4px;
  }
}
body.faq .faq__content__q p {
  font-size: 17px;
  line-height: 1.8;
  font-weight: bold;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__content__q p {
    font-size: 14px;
    line-height: 1.8;
  }
}
body.faq .faq__content__a p {
  font-size: 17px;
  line-height: 1.8;
}
@media only screen and (max-width: 800px) {
  body.faq .faq__content__a p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "ryo-gothic-plusn", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.9s;
  background-color: #f3f3ed;
}
body.rooms {
  background-color: #f3f3ed;
}
body.active {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  position: relative;
  top: 60px;
  transition: top 1s, opacity 1s;
  opacity: 0;
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
}

#whole {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#whole > main {
  width: 800px;
}
@media only screen and (max-width: 800px) {
  #whole > main {
    width: 100%;
  }
}

body.top .fixed-area {
  display: block;
  position: sticky;
  opacity: 1;
}

.fixed-area {
  width: calc(100% - 800px);
  height: 100vh;
  position: fixed;
  top: 0;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
  z-index: 2;
}
.fixed-area.active {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 800px) {
  .fixed-area {
    display: none;
  }
}
.fixed-area__inner {
  height: 100%;
}
.fixed-area__image {
  height: 100%;
}
.fixed-area__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

body.rooms main,
body.rentalSpace main {
  overflow: hidden;
}
body.rooms main > .inner,
body.rentalSpace main > .inner {
  max-width: 960px;
}
@media only screen and (max-width: 800px) {
  body.rooms main > .inner,
  body.rentalSpace main > .inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
body.rooms .rooms__boxes,
body.rentalSpace .rooms__boxes {
  display: flex;
  flex-direction: column;
  gap: 240px;
  padding-top: 220px;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__boxes,
  body.rentalSpace .rooms__boxes {
    gap: 180px;
    padding-top: 180px;
  }
}
body.rooms .rooms__title,
body.rentalSpace .rooms__title {
  margin-bottom: 12px;
}
body.rooms .rooms__title h2,
body.rentalSpace .rooms__title h2 {
  font-size: 58px;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__title h2,
  body.rentalSpace .rooms__title h2 {
    font-size: 42px;
  }
}
body.rooms .rooms__main-image,
body.rentalSpace .rooms__main-image {
  width: 100%;
}
body.rooms .rooms__main-image img,
body.rentalSpace .rooms__main-image img {
  width: 100%;
  height: auto;
  display: block;
}
body.rooms .rooms__description,
body.rentalSpace .rooms__description {
  padding-top: 32px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__description,
  body.rentalSpace .rooms__description {
    padding-top: 24px;
    padding-bottom: 40px;
  }
}
body.rooms .rooms__description h3,
body.rentalSpace .rooms__description h3 {
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__description h3,
  body.rentalSpace .rooms__description h3 {
    font-size: 32px;
  }
}
body.rooms .rooms__description p span,
body.rentalSpace .rooms__description p span {
  display: block;
  font-size: 17px;
  line-height: 1.8;
  margin: 16px 0;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__description p span,
  body.rentalSpace .rooms__description p span {
    font-size: 14px;
    line-height: 1.75;
  }
}
body.rooms .rooms__spec,
body.rentalSpace .rooms__spec {
  padding-top: 60px;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__spec,
  body.rentalSpace .rooms__spec {
    padding-top: 40px;
  }
}
body.rooms .rooms__spec table,
body.rentalSpace .rooms__spec table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
body.rooms .rooms__spec table th,
body.rentalSpace .rooms__spec table th {
  font-size: 17px;
  line-height: 1.8;
  width: 200px;
  padding: 4px 0;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__spec table th,
  body.rentalSpace .rooms__spec table th {
    font-size: 14px;
    line-height: 1.75;
    width: 120px;
  }
}
body.rooms .rooms__spec table td,
body.rentalSpace .rooms__spec table td {
  font-size: 17px;
  line-height: 1.8;
  padding: 4px 0;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__spec table td,
  body.rentalSpace .rooms__spec table td {
    font-size: 14px;
    line-height: 1.75;
  }
}
body.rooms .rooms__rental-space-spec,
body.rentalSpace .rooms__rental-space-spec {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__rental-space-spec,
  body.rentalSpace .rooms__rental-space-spec {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
body.rooms .rooms__rental-space-spec__item,
body.rentalSpace .rooms__rental-space-spec__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__rental-space-spec__item,
  body.rentalSpace .rooms__rental-space-spec__item {
    width: 100%;
    gap: 24px;
  }
}
body.rooms .rooms__rental-space-spec__item p,
body.rentalSpace .rooms__rental-space-spec__item p {
  display: flex;
  flex-direction: column;
  font-family: "ryo-gothic-plusn", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
body.rooms .rooms__rental-space-spec__item p strong,
body.rentalSpace .rooms__rental-space-spec__item p strong {
  font-size: 17px;
  display: block;
  font-weight: bold;
  padding-bottom: 12px;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__rental-space-spec__item p strong,
  body.rentalSpace .rooms__rental-space-spec__item p strong {
    padding-bottom: 8px;
    display: block;
  }
}
body.rooms .rooms__rental-space-spec__item p span,
body.rentalSpace .rooms__rental-space-spec__item p span {
  font-size: 15px;
  line-height: 1.5;
  display: block;
  margin-top: 8px;
}
@media only screen and (max-width: 800px) {
  body.rooms .rooms__rental-space-spec__item p span,
  body.rentalSpace .rooms__rental-space-spec__item p span {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 0;
  }
}
body.rooms .rooms__rental-space-spec__item p a,
body.rentalSpace .rooms__rental-space-spec__item p a {
  text-decoration: underline;
}
body.rooms .rooms__rental-space-spec__item p small,
body.rentalSpace .rooms__rental-space-spec__item p small {
  font-size: 14px;
  line-height: 1.75;
  display: block;
  margin-top: 8px;
}
body.rooms .rooms__image-slider,
body.rentalSpace .rooms__image-slider {
  padding-top: 60px;
  position: relative;
}
body.rooms .rooms__image-slider.rooms__image-slider--rental-space,
body.rentalSpace .rooms__image-slider.rooms__image-slider--rental-space {
  padding-top: 0;
}
body.rooms .rooms__image-slider.rooms__image-slider--rental-space .rooms__image-slider__pagination,
body.rentalSpace .rooms__image-slider.rooms__image-slider--rental-space .rooms__image-slider__pagination {
  top: -34px;
}
body.rooms .rooms__image-slider__pagination,
body.rentalSpace .rooms__image-slider__pagination {
  position: absolute;
  right: 0;
  top: 26px;
  display: flex;
  align-items: center;
  gap: 24px;
}
body.rooms .rooms__image-slider__pagination ul,
body.rentalSpace .rooms__image-slider__pagination ul {
  display: flex;
  gap: 24px;
}
body.rooms .rooms__image-slider__pagination ul li:first-child,
body.rentalSpace .rooms__image-slider__pagination ul li:first-child {
  position: relative;
}
body.rooms .rooms__image-slider__pagination ul li:first-child::before,
body.rentalSpace .rooms__image-slider__pagination ul li:first-child::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 2px;
  width: 1px;
  height: 100%;
  background-color: #000;
  transform: rotate(45deg);
}
body.rooms .rooms__image-slider__pagination ul li span,
body.rentalSpace .rooms__image-slider__pagination ul li span {
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
}
body.rooms .rooms__image-slider__arrow,
body.rentalSpace .rooms__image-slider__arrow {
  width: 21px;
  height: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
body.rooms .rooms__image-slider__arrow:hover,
body.rentalSpace .rooms__image-slider__arrow:hover {
  opacity: 0.7;
}
body.rooms .rooms__image-slider__swiper,
body.rentalSpace .rooms__image-slider__swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
body.rooms .rooms__image-slider__swiper .swiper-wrapper,
body.rentalSpace .rooms__image-slider__swiper .swiper-wrapper {
  overflow: visible;
}
body.rooms .rooms__image-slider__swiper .swiper-slide,
body.rentalSpace .rooms__image-slider__swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
body.rooms .rooms__image-slider__swiper .swiper-slide img,
body.rentalSpace .rooms__image-slider__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "ryo-gothic-plusn", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.9s;
  background-color: #f3f3ed;
}
body.rooms {
  background-color: #f3f3ed;
}
body.active {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  position: relative;
  top: 60px;
  transition: top 1s, opacity 1s;
  opacity: 0;
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
}

#whole {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#whole > main {
  width: 800px;
}
@media only screen and (max-width: 800px) {
  #whole > main {
    width: 100%;
  }
}

body.top .fixed-area {
  display: block;
  position: sticky;
  opacity: 1;
}

.fixed-area {
  width: calc(100% - 800px);
  height: 100vh;
  position: fixed;
  top: 0;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
  z-index: 2;
}
.fixed-area.active {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 800px) {
  .fixed-area {
    display: none;
  }
}
.fixed-area__inner {
  height: 100%;
}
.fixed-area__image {
  height: 100%;
}
.fixed-area__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

main.top-page .introduction__inner {
  height: 100vh;
  padding: 0 32px;
  padding-top: 120px;
  position: relative;
  min-height: 880px;
}
@media only screen and (max-width: 800px) {
  main.top-page .introduction__inner {
    height: auto;
    padding: 0 20px;
    padding-top: 80px;
    min-height: 0;
  }
}
@media only screen and (max-width: 800px) {
  main.top-page .introduction__inner h1 {
    display: none;
  }
}
main.top-page .introduction__inner h1 span img {
  display: block;
  width: 80%;
  max-width: 700px;
}
main.top-page .introduction__inner h2 {
  margin-top: 60px;
}
main.top-page .introduction__inner h2 span {
  font-size: 20px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
main.top-page .introduction__inner p {
  margin-top: 32px;
}
main.top-page .introduction__inner p span {
  display: block;
  font-size: 17px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  line-height: 1.8;
}
@media only screen and (max-width: 800px) {
  main.top-page .introduction__inner p span {
    font-size: 14px;
    line-height: 2.2;
  }
}
main.top-page .introduction__bottom {
  width: 100%;
  padding: 0 32px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 801px) {
  main.top-page .introduction__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media only screen and (max-width: 800px) {
  main.top-page .introduction__bottom {
    display: none;
  }
}
main.top-page .introduction__bottom span {
  font-size: 17px;
  font-family: "Cormorant Garamond", serif;
}
main.top-page .introduction__bottom div a {
  display: inline-block;
  vertical-align: middle;
  padding: 7px 50px;
  border: 1px solid #000;
  border-radius: 100px;
}
@media only screen and (min-width: 801px) {
  main.top-page .introduction__bottom div a {
    transition: all 0.3s;
  }
  main.top-page .introduction__bottom div a:hover {
    background-color: #000;
    color: #fff;
  }
}
main.top-page .introduction__bottom div a span {
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
}
main.top-page .introduction__sp-header {
  display: none;
}
@media only screen and (max-width: 800px) {
  main.top-page .introduction__sp-header {
    display: block;
    padding: 0 20px;
    padding-top: 180px;
  }
  main.top-page .introduction__sp-header img {
    display: block;
    width: 100%;
    height: auto;
  }
  main.top-page .introduction__sp-header span {
    display: block;
    text-align: center;
    font-size: 17px;
    font-family: "Cormorant Garamond", serif;
    margin-top: 24px;
  }
}
main.top-page .rooms__inner {
  padding: 0 40px;
  padding-top: 120px;
}
@media only screen and (max-width: 800px) {
  main.top-page .rooms__inner {
    padding: 0 20px;
    padding-top: 120px;
  }
}
main.top-page .rooms__title h2 {
  font-size: 58px;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 800px) {
  main.top-page .rooms__title h2 {
    font-size: 42px;
  }
}
main.top-page .rooms__item {
  position: relative;
  margin-top: 12px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 800px) {
  main.top-page .rooms__item {
    margin-bottom: 120px;
  }
}
main.top-page .rooms__slider {
  height: 510px;
}
@media only screen and (max-width: 800px) {
  main.top-page .rooms__slider {
    height: 264px;
  }
}
main.top-page .rooms__slider .swiper-slide {
  width: 100%;
  height: 100%;
}
main.top-page .rooms__slider .rooms__image {
  width: 100%;
  height: 100%;
}
main.top-page .rooms__slider .rooms__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.top-page .rooms__slider__pagination {
  position: absolute;
  right: 0;
  top: -34px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 800px) {
  main.top-page .rooms__slider__pagination {
    top: -42px;
  }
}
main.top-page .rooms__slider__pagination ul {
  display: flex;
  gap: 24px;
}
main.top-page .rooms__slider__pagination ul li:first-child {
  position: relative;
}
main.top-page .rooms__slider__pagination ul li:first-child::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 2px;
  width: 1px;
  height: 100%;
  background-color: #000;
  transform: rotate(45deg);
}
main.top-page .rooms__slider__pagination ul li span {
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
}
main.top-page .rooms__slider__arrow {
  width: 21px;
  height: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
main.top-page .rooms__slider__arrow:hover {
  opacity: 0.7;
}
main.top-page .rooms__slider__arrow img {
  width: 100%;
  height: 100%;
}
main.top-page .rooms__description {
  padding-top: 32px;
}
main.top-page .rooms__description h3 {
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  padding-bottom: 16px;
}
@media only screen and (max-width: 800px) {
  main.top-page .rooms__description h3 {
    font-size: 32px;
  }
}
main.top-page .rooms__description p {
  font-size: 17px;
  line-height: 1.8;
}
@media only screen and (max-width: 800px) {
  main.top-page .rooms__description p {
    font-size: 14px;
    line-height: 1.75;
  }
}
main.top-page .rooms__description div {
  margin-top: 32px;
}
main.top-page .rooms__description div a {
  display: block;
  width: 300px;
  text-align: center;
  margin: 0 auto;
  padding: 21px 50px;
  border: 1px solid #000;
  border-radius: 100px;
}
@media only screen and (max-width: 800px) {
  main.top-page .rooms__description div a {
    width: 80%;
    padding: 12px 0;
  }
}
@media only screen and (min-width: 801px) {
  main.top-page .rooms__description div a {
    transition: all 0.3s;
  }
  main.top-page .rooms__description div a:hover {
    background-color: #000;
    color: #fff;
  }
}
main.top-page .rooms__description div a span {
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
}
main.top-page .access__inner {
  padding: 0 40px;
  padding-top: 60px;
}
@media only screen and (max-width: 800px) {
  main.top-page .access__inner {
    padding: 0 20px;
    padding-top: 0px;
  }
}
main.top-page .access__box h2 {
  font-size: 58px;
  font-family: "Cormorant Garamond", serif;
  padding-bottom: 16px;
}
@media only screen and (max-width: 800px) {
  main.top-page .access__box h2 {
    font-size: 42px;
  }
}
main.top-page .access__map {
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 800px) {
  main.top-page .access__map {
    height: 264px;
  }
}
main.top-page .access__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
main.top-page .access__description {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 12px;
}
main.top-page .access__description p {
  font-size: 17px;
  line-height: 1.8;
}
@media only screen and (max-width: 800px) {
  main.top-page .access__description p {
    font-size: 14px;
    line-height: 1.75;
  }
}
main.top-page .access__description p small {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  font-family: "Instrument Sans", sans-serif;
  opacity: 0.7;
}
main.top-page .access__description a {
  font-size: 17px;
  line-height: 1.8;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: underline;
}
@media only screen and (max-width: 800px) {
  main.top-page .access__description a {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media only screen and (min-width: 801px) {
  main.top-page .access__description a {
    transition: all 0.3s;
  }
  main.top-page .access__description a:hover {
    background-color: #000;
    color: #fff;
  }
}
main.top-page .access__caution {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}
main.top-page .access__caution blockquote {
  font-size: 17px;
  line-height: 1.8;
  font-family: "Instrument Sans", sans-serif;
}
@media only screen and (max-width: 800px) {
  main.top-page .access__caution blockquote {
    font-size: 14px;
    line-height: 1.75;
  }
}

.section {
  width: 100px;
  height: auto;
}