@charset "UTF-8";
@media print {
  .global-nav,
  .side-bar,
  .breadcrumbs,
  .anchor-link,
  .print,
  .header__navigation,
  .btn__small,
  .btn__midium,
  .btn__large,
  .pdf-download,
  .footer {
    display: none;
  }
  .content__main {
    width: 1200px;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  width: 100%;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: var(--bg-color, #FFF);
  color: var(--base-font-color, #36363B);
  word-break: break-all;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.6;
  color: #36363B;
  letter-spacing: 0.05rem;
  overflow-x: hidden;
}
body.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  overflow: hidden;
}

a {
  color: #36363B;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  cursor: pointer;
}

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

svg {
  vertical-align: bottom;
}

p {
  line-height: 2;
}
p:not(:last-of-type) {
  margin-bottom: 1em;
}

@media screen and (max-width: 575px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .tb-only {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .sp-only {
    display: none;
  }
}
header {
  position: relative;
  z-index: 3;
  width: 100%;
  top: 0;
}
header .header {
  position: absolute;
  width: 100%;
  height: 80px;
  margin: 1rem auto 0 auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header .header::after {
  position: relative;
}
header .header.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
header .header__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 96vw;
  margin: auto;
  padding-bottom: 1rem;
  border-bottom: 0.075em #fff solid;
}
header .header__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header__nav ul li {
  font-size: 0.875rem;
}
header .header__nav ul li a {
  position: relative;
  color: #fff;
  display: inline-block;
}
header .header__nav ul li a::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 0;
}
header .header__nav ul li a:hover::after {
  width: 100%;
}
header .header__nav ul li.logo {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 64px;
}
header .header__nav ul li.logo:hover {
  opacity: 0.7;
}
header .header__nav ul li.logo img {
  width: 64px;
}
header .header__nav ul li.logo a::after {
  display: none;
}
header .header__link ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
header .header__link ul li a {
  padding: 0.5rem 1rem;
  border: 0.075em #fff solid;
  color: #fff;
  font-weight: 400;
  border-radius: 80px;
}
header .header__link ul li a:hover {
  background: #fff;
  color: #36363B;
}
header .header__link ul li.wc a {
  background: #e88d5f;
  border: 0.075em #e88d5f solid;
}
header .header__link ul li.wc a:hover {
  background: #fff;
  color: #e88d5f;
}
header .header__link ul li.annex a {
  background: #ff5757;
  border: 0.075em #ff5757 solid;
}
header .header__link ul li.annex a:hover {
  background: #fff;
  color: #ff5757;
}
header .header__link ul li.okinawa-chatan a {
  border: 0.075em #fff solid;
}
header .header__link ul li.okinawa-chatan a:hover {
  background: #fff;
  color: #36363B;
}
header .header__link ul li.okinawa-annex a {
  background: #ff5757;
  border: 0.075em #ff5757 solid;
}
header .header__link ul li.okinawa-annex a:hover {
  background: #fff;
  color: #ff5757;
}
header .header__link ul li.okinawa-wc a {
  border: 0.075em #fff solid;
}
header .header__link ul li.okinawa-wc a:hover {
  background: #fff;
  color: #e88d5f;
  border: 0.075em #e88d5f solid;
}
header .header__link ul li.tel {
  color: #fff;
  font-size: 1.25rem;
  margin-right: 1.5rem;
}
header .header__logo {
  width: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .header__logo:hover {
  opacity: 0.7;
}

.header-fix {
  position: fixed;
  top: -120px;
  width: 100%;
  height: 80px;
  margin: 1rem auto 0 auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header-fix::after {
  position: relative;
}
.header-fix.hide {
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
}
.header-fix__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  margin: auto;
  background: #fff;
  padding: 1.5vw 2vw;
}
.header-fix__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-fix__nav ul li {
  font-size: 0.875rem;
}
.header-fix__nav ul li a {
  position: relative;
  color: #36363B;
  display: inline-block;
}
.header-fix__nav ul li a::after {
  background-color: #36363B;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 0;
}
.header-fix__nav ul li a:hover::after {
  width: 100%;
}
.header-fix__nav ul li.logo {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 64px;
}
.header-fix__nav ul li.logo:hover {
  opacity: 0.7;
}
.header-fix__nav ul li.logo img {
  width: 64px;
}
.header-fix__nav ul li.logo a::after {
  display: none;
}
.header-fix__link ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.header-fix__link ul li a {
  padding: 0.5rem 1rem;
  border: 0.075em #36363B solid;
  font-weight: 400;
  border-radius: 80px;
}
.header-fix__link ul li a:hover {
  background: #36363B;
  color: #fff;
}
.header-fix__link ul li.wc a {
  background: #e88d5f;
  border: 0.075em #e88d5f solid;
  color: #fff;
}
.header-fix__link ul li.wc a:hover {
  background: #fff;
  color: #e88d5f;
}
.header-fix__link ul li.annex a {
  background: #ff5757;
  border: 0.075em #ff5757 solid;
  color: #fff;
}
.header-fix__link ul li.annex a:hover {
  background: #fff;
  color: #ff5757;
}
.header-fix__link ul li.okinawa-annex a {
  background: #ff5757;
  border: 0.075em #ff5757 solid;
  color: #fff;
}
.header-fix__link ul li.okinawa-annex a:hover {
  background: #fff;
  color: #ff5757;
}
.header-fix__link ul li.okinawa-wc a {
  border: 0.075em #e88d5f solid;
  color: #e88d5f;
}
.header-fix__link ul li.okinawa-wc a:hover {
  background: #e88d5f;
  color: #fff;
  border: 0.075em #e88d5f solid;
}
.header-fix__link ul li.tel {
  font-size: 1.25rem;
  margin-right: 1.5rem;
}
.header-fix__logo {
  width: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-fix__logo:hover {
  opacity: 0.7;
}
.header-fix__logo-wc {
  width: 80px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-fix__logo-wc:hover {
  opacity: 0.7;
}
.header-fix__logo-annex {
  width: 80px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-fix__logo-annex:hover {
  opacity: 0.7;
}

.sp-btn {
  display: none;
}

.sp-menu {
  visibility: hidden;
  opacity: 0;
  display: none;
}

footer {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  background: url(/_assets/img/common/bg_black.png);
}
footer.wc {
  background: #e88d5f;
}
footer.annex {
  background: #ff5757;
}

.footer {
  width: 1280px;
  margin: 0 auto;
}
.footer__nav {
  position: relative;
  margin-bottom: 4rem;
}
.footer__nav p {
  position: absolute;
  top: -0.5rem;
}
.footer__nav p img {
  width: 110px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer__nav p img:hover {
  opacity: 0.7;
}
.footer__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding-left: 12.5rem;
}
.footer__nav li {
  font-size: 0.875rem;
}
.footer__nav li a {
  color: #fff;
}
.footer__nav li a:hover {
  opacity: 0.7;
}
.footer p {
  color: #fff;
  font-size: 0.75rem;
}
.footer__service {
  border-top: 0.075em #fff solid;
  border-bottom: 0.075em #fff solid;
}
.footer__service ul {
  width: 960px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  padding: 1.5rem 0;
}
.footer__service ul img {
  width: 120px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer__service ul img.instagram {
  width: 100%;
}
.footer__service ul img.art-hotels {
  width: 200px;
}
.footer__service ul img:hover {
  opacity: 0.7;
}
.footer__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-bottom: 2.5rem;
}
.footer__contact div a {
  color: #fff;
  border: 0.075em #fff solid;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 80px;
}
.footer__contact div a:hover {
  background: #fff;
  color: #36363B;
}
.footer__contact div a.wc {
  background: #fff;
  color: #e88d5f;
  border: 0.075em #e88d5f solid;
}
.footer__contact div a.wc:hover {
  background: #e88d5f;
  border: 0.075em #fff solid;
  color: #fff;
}
.footer__contact div a.annex {
  background: #fff;
  color: #ff5757;
  border: 0.075em #ff5757 solid;
}
.footer__contact div a.annex:hover {
  background: #ff5757;
  border: 0.075em #fff solid;
  color: #fff;
}
.footer small {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  padding: 1.5rem;
}

.side-bar {
  width: 300px;
}
.side-bar nav {
  margin-bottom: 20px;
}
.side-bar li {
  border-bottom: 1px #d9d9d9 solid;
  background: #f5f5f5;
}
.side-bar li a {
  display: block;
  padding: 20px;
}
.side-bar li a:hover {
  background: #EAEAEA;
  text-decoration: underline;
}
.side-bar li.category {
  color: #fff;
  background: #e6001b;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 1.5rem;
}
.side-bar li.active {
  background: #EAEAEA;
  pointer-events: none;
}
.side-bar li.active a {
  color: #e6001b;
}
.side-bar li.active a:hover {
  text-decoration: underline;
}
.side-bar ul.child li {
  color: initial;
  background: #fff;
  font-size: 0.825rem;
  color: #e6001b;
}
.side-bar ul.child li.active {
  pointer-events: none;
}
.side-bar ul.child li.active a {
  color: #e6001b;
}
.side-bar .parent {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 1.5rem;
}
.side-bar .parent:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #e6001b;
}
.side-bar .child {
  display: none;
}
.side-bar .open {
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
}
.side-bar .open:before,
.side-bar .open:after {
  display: block;
  content: "";
  background-color: #e6001b;
  position: absolute;
  width: 16px;
  height: 2px;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}
.side-bar .open:before {
  width: 2px;
  height: 16px;
}
.side-bar .parent.selected {
  background: #EAEAEA;
}
.side-bar .parent.selected .open:before {
  -webkit-transform: translate(50%, 50%) rotate(90deg);
          transform: translate(50%, 50%) rotate(90deg);
}

.breakThrough-right {
  margin-right: calc(50% - 50vw);
}
.breakThrough-right.keep-child {
  padding-right: calc(50vw - 50%);
}
.breakThrough-left {
  margin-left: calc(50% - 50vw);
}
.breakThrough-left.keep-child {
  padding-left: calc(50vw - 50%);
}

.l-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.l-column.col-2 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-column.col-2 > * {
  width: var(--col-width, 48.5%);
  margin-bottom: var(--col-margin, 3%);
}
.l-column.col-3 {
  margin-bottom: calc(var(--col-margin, 4.15%) * -1);
}
.l-column.col-3 > * {
  width: var(--col-width, 30.564%);
  margin-right: var(--col-margin, 4.15%);
  margin-bottom: var(--col-margin, 4.15%);
}
.l-column.col-3 > *:last-child, .l-column.col-3 > *:nth-child(3n) {
  margin-right: 0;
}
.l-column.col-4 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
}
.l-column.col-4 > * {
  width: var(--col-width, 22.75%);
  margin-right: var(--col-margin, 3%);
  margin-bottom: var(--col-margin, 3%);
}
.l-column.col-4 > *:last-child, .l-column.col-4 > *:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 833px) {
  .l-column.col-1-tab > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-2-tab {
    margin-bottom: calc(var(--col-tab-margin, 3%) * -1);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col-2-tab > * {
    width: var(--col-tab-width, 48.5%);
    margin-right: 0;
    margin-bottom: var(--col-tab-margin, 3%);
  }
}
@media screen and (max-width: 575px) {
  .l-column.col-1-sp > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-2-sp {
    margin-bottom: calc(var(--col-sp-margin, 6.44%) * -1);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col-2-sp > * {
    width: var(--col-sp-width, 46.78%);
    margin-right: 0;
    margin-bottom: var(--col-sp-margin, 6.44%);
  }
}
.l-column.x-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-column.y-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.l-column.x-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-column.y-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.card {
  overflow: hidden;
}
.card .c-image {
  position: relative;
}
.card .c-image figcaption {
  position: absolute;
  right: 1.2em;
  bottom: 1em;
  font-size: 1.2rem;
  color: #FFF;
}
.card .c-body {
  padding: 2rem;
  background-color: #FFF;
}
.card .c-title {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
}
.card .c-date {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
}
.card .c-date + * {
  margin-top: 0.5rem;
}
.card p {
  font-size: 1.4rem;
  text-align: justify;
}

:root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}

*:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

.form-select {
  width: 100%;
  padding: 0.8em 1.2em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22select_arr%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2011.4%206.2%22%20style%3D%22enable-background%3Anew%200%200%2011.4%206.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23BFBFBF%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22path01%22%20class%3D%22st0%22%20d%3D%22M10.7%2C0.6l-5%2C5l-5-5%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 1.6rem;
}
.form-select::-ms-expand {
  display: none;
}

.radio-wrap.horizon {
  margin-bottom: -2rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.radio-wrap.horizon .radio {
  margin-bottom: 2rem;
}
.radio-wrap.horizon .radio:not(:last-of-type) {
  margin-right: 2rem;
}
.radio-wrap.vertical .radio + .radio {
  margin-top: 1.2rem;
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  border-radius: 100%;
  border: 1px solid #CCC;
  background-color: #FFF;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  top: 0;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--primary-color, #000);
  -webkit-box-shadow: inset 0 0 0 4px #FFF;
          box-shadow: inset 0 0 0 4px #FFF;
  border-color: var(--primary-color, #000);
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--primary-color, #000);
}
.radio input[type=radio]:disabled + .radio-label:before {
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.checkbox-wrap.horizon {
  margin-bottom: -2rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.checkbox-wrap.horizon .checkbox {
  margin-bottom: 2rem;
}
.checkbox-wrap.horizon .checkbox:not(:last-of-type) {
  margin-right: 2rem;
}
.checkbox-wrap.vertical .checkbox + .checkbox {
  margin-top: 1.2rem;
}

.checkbox {
  line-height: 1;
}

.checkbox-input {
  display: none;
}
.checkbox-input:checked + .checkbox-parts:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 0.8rem;
  height: 1.2rem;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 3px solid var(--primary-color, #000);
  border-right: 3px solid var(--primary-color, #000);
  margin-top: -0.8rem;
}

.checkbox-parts {
  padding-left: 2.5rem;
  position: relative;
}
.checkbox-parts:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #CCC;
  background-color: #FFF;
  border-radius: 0.5rem;
  margin-top: -0.9rem;
}

.form-vertical .form-box {
  border-bottom: 1px solid #000;
}
.form-vertical .form-box dt {
  font-size: 16px;
  font-weight: 400;
}

.form-box + .form-box {
  margin-top: 50px;
}
.form-box dt {
  margin-bottom: 1em;
  font-weight: 600;
  line-height: 1;
}
.form-box .required {
  display: inline-block;
  padding: 0.2em 0.5em;
  margin-left: 0.8rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #e6001b;
}
.form-box .required::before {
  content: "必須";
}
.form-box .form-error {
  display: none;
  margin-top: 0.5em;
  font-size: 1.3rem;
  color: #e6001b;
}

.form-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.form-column .inner {
  width: 100%;
}
.form-column .inner + .inner {
  margin-left: 1em;
}

.form-control {
  width: 100%;
  background-color: unset;
  border: none;
}

textarea.form-control {
  height: 20rem;
  padding: 1.2em;
}

.form-submit {
  --button-width: 20.0rem;
}

.main {
  max-width: 1320px;
  margin: 0 auto 10rem auto;
  padding: 0 20px;
}

.title {
  width: 100%;
  height: 480px;
  margin-bottom: 5rem;
}
.title.rooms {
  background: url(/_assets/img/rooms/pic_mv.jpg) no-repeat;
  background-size: cover;
}
.title.rooms-detail {
  height: 240px;
  background: url(/_assets/img/common/bg_black.png);
  background-size: cover;
  margin-bottom: 0;
}
.title.food {
  background: url(/_assets/img/food/pic_mv.jpg) no-repeat;
  background-size: cover;
}
.title.news {
  background: url(/_assets/img/news/pic_mv.jpg) no-repeat;
  background-size: cover;
}
.title.news-detail {
  height: 320px;
  background: url(/_assets/img/common/bg_black.png);
  background-size: cover;
}
.title.contact {
  height: 320px;
  background: url(/_assets/img/common/bg_black.png);
  background-size: cover;
}
.title.wc__gallery {
  background: url(/west_coast/img/gallery/mv_gallery.jpg);
  background-size: cover;
}
.title.wc__rent {
  background: url(/west_coast/img/rent/mv_rent.jpg);
  background-size: cover;
}
.title.wc__rooms {
  background: url(/west_coast/img/rooms/mv_rooms.jpg) no-repeat center;
  background-size: cover;
}
.title.annex__rooms {
  background: url(/annex/img/rooms/mv_rooms.jpg);
  background-size: cover;
}
.title.annex__location {
  background: url(/annex/img/location/mv_location.jpg);
  background-size: cover;
}
.title.annex__furniture {
  background: url(/annex/img/furniture/mv_furniture.jpg);
  background-size: cover;
}
.title.annex__art {
  background: url(/annex/img/art/mv_art.jpg);
  background-size: cover;
}
.title.annex__concept {
  background: url(/annex/img/concept/mv_concept.jpg);
  background-size: cover;
}
.title.chatan__location {
  background: url(/_assets/img/location/mv_location.jpg);
  background-size: cover;
}
.title.chatan__rooms {
  background: url(/_assets/img/rooms/mv_rooms.jpg);
  background-size: cover;
}
.title.chatan__cafe {
  background: url(/_assets/img/cafe/mv_cafe.jpg);
  background-size: cover;
}
.title__content {
  width: 1280px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 480px;
}
.title__content h1 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}
.title__content h1 span {
  display: block;
  margin-top: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
}
.title__content h1 span.date {
  font-size: 0.875rem;
}

.booking {
  width: 100%;
  position: fixed;
  bottom: -100px;
  z-index: 999;
  height: 100px;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.booking.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.booking__content {
  width: 980px;
  height: 100px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  font-size: 0.875rem;
}
.booking__content fieldset {
  border: none;
}
.booking__content input.check {
  border: none;
  background: #ede8e8;
  border-radius: 4px;
  width: 12vw;
  line-height: 40px;
  padding: 0 1rem;
}
.booking__content select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: #ede8e8;
  border-radius: 4px;
  width: 8vw;
  line-height: 40px;
  padding: 0 1rem;
}
.booking__btn {
  display: block;
  background: #36363B;
  color: #fff;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: none;
  border-radius: 80px;
  border: 1px #36363B solid;
}
.booking__btn:hover {
  background: #fff;
  color: #36363B;
  border: 1px #36363B solid;
}

.space {
  margin-bottom: 5rem;
}

h1,
h2,
h3 {
  overflow: hidden;
}

h1 span,
h2 span,
h3 span {
  display: block;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

h1 span.fadeUp,
h2 span.fadeUp,
h3 span.fadeUp {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

h1 span.fade,
h2 span.fade,
h3 span.fade {
  display: block;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

h1 span.fade.scroll-in,
h2 span.fade.scroll-in,
h3 span.fade.scroll-in {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.kv {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
}
.kv__visual {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.kv img {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv__logo {
  width: 320px;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.kv__logo img {
  -o-object-fit: initial;
     object-fit: initial;
  overflow: hidden;
}

.concept {
  position: relative;
  margin-bottom: 7.5rem;
}
.concept__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: url(/_assets/img/common/bg_gray.png);
  background-size: cover;
}
.concept__content h2 {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2;
  font-weight: 500;
}
.concept__content p {
  width: 800px;
  margin: 0 auto 1rem auto;
  font-family: "Noto Serif JP", serif;
  line-height: 2.4;
}
.concept__content-wc {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #e88d5f;
}
.concept__content-wc h2 {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2;
  color: #fff;
  font-weight: 500;
}
.concept__content-wc p {
  width: 800px;
  margin: 0 auto 1rem auto;
  font-family: "Noto Serif JP", serif;
  line-height: 2.4;
  color: #fff;
}
.concept__content-annex {
  background: #ff5757;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.concept__content-annex h2 {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2;
  color: #fff;
  font-weight: 500;
}
.concept__content-annex p {
  width: 800px;
  margin: 0 auto 1rem auto;
  font-family: "Noto Serif JP", serif;
  line-height: 2.4;
  color: #fff;
}

.rooms-top {
  margin-bottom: 7.5rem;
}
.rooms-top__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-bottom: 5rem;
}
.rooms-top__title p {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}
.rooms-top__photo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin: 2.5rem 0 4rem 0;
}
.rooms-top__photo div:first-child {
  width: 840px;
}
.rooms-top__photo div:first-child img {
  width: 840px;
  border-radius: 8px;
}
.rooms-top__photo div:nth-child(2) {
  width: 360px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.rooms-top__photo div:nth-child(2) img {
  height: 230px;
  border-radius: 8px;
}
.rooms-top__detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.rooms-top__detail p {
  width: 1000px;
}
.rooms-top__detail div a {
  border: 0.075em #36363B solid;
  padding: 1rem 2.5rem;
  border-radius: 80px;
}
.rooms-top__detail div a:hover {
  background: #36363B;
  color: #fff;
}
.rooms-top__detail-wc {
  margin-bottom: 4rem;
}
.rooms-top__detail-wc p {
  width: 800px;
  margin: 0 auto 1.5rem auto;
}

.food-top {
  margin-bottom: 7.5rem;
}
.food-top__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-bottom: 5rem;
}
.food-top__title p {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}
.food-top__break-fast-photo {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin: 2.5rem 0 4rem 0;
}
.food-top__break-fast-photo img {
  width: 840px;
  border-radius: 8px;
}
.food-top__break-fast-photo img:first-child {
  width: 360px;
}
.food-top__hot-dog-photo {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2.5rem 0 2.5rem 0;
}
.food-top__hot-dog-photo img {
  width: 400px;
  border-radius: 8px;
}
.food-top__detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.food-top__detail p {
  width: 1000px;
}
.food-top__detail div a {
  border: 0.075em #36363B solid;
  padding: 1rem 2.5rem;
  border-radius: 80px;
}
.food-top__detail div a:hover {
  background: #36363B;
  color: #fff;
}

.access-top {
  position: relative;
}
.access-top h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 5rem;
  padding-top: 7.5rem;
}
.access-top__bg {
  position: absolute;
  z-index: 0;
  width: 100vw;
  height: 800px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: url(/_assets/img/top/bg_access.jpg);
  background-size: cover;
}
.access-top__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.access-top__content img {
  display: block;
  width: 800px;
  margin-top: -10rem;
}
.access-top__wc-img {
  margin-right: 10rem;
}
.access-top__wc-img img {
  width: 480px;
}

.nolink {
  pointer-events: none;
}

.rooms__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.rooms__content div {
  position: relative;
  width: 620px;
  margin-bottom: 5rem;
}
.rooms__content div a {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.rooms__content div img {
  border-radius: 8px;
}
.rooms__content div h2 {
  padding: 2.5rem 2.5rem 1rem 2.5rem;
}
.rooms__content div h2 span {
  display: block;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}
.rooms__content div h2 img {
  border-radius: 0;
}
.rooms__content div p {
  padding: 0 2.5rem;
  font-size: 0.875rem;
}
.rooms__photo img {
  width: 100%;
}
.rooms__txt {
  background: url(/_assets/img/common/bg_black.png);
}
.rooms__txt div {
  max-width: 1280px;
  min-height: 160px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.rooms__txt div p {
  color: #fff;
  margin: 0;
}
.rooms__txt div p a {
  border: 0.075em #fff solid;
  padding: 1rem 2rem;
  color: #fff;
}
.rooms__txt div p:first-child {
  width: 1000px;
}
.rooms__facilities {
  width: 1080px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.rooms__facilities ul {
  width: 510px;
  border-top: 0.075em #000 solid;
  padding: 2.5rem 0;
}
.rooms__facilities ul li {
  line-height: 2;
  font-size: 0.875rem;
}
.rooms__facilities ul li:first-child {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.rooms__layout {
  margin: 5rem 0;
}
.rooms__layout img {
  width: 640px;
  margin: auto;
}
.rooms__layout p {
  text-align: center;
  font-size: 1.125rem;
}
.rooms__btn {
  margin: 5rem 0 8rem 0;
}
.rooms__btn ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.rooms__btn ul li a {
  padding: 0.5rem 1rem;
  border: 0.075em #36363B solid;
  font-weight: 400;
  border-radius: 80px;
}
.rooms__btn ul li a:hover {
  background: #36363B;
  color: #fff;
}

.food__content section {
  position: relative;
  z-index: 2;
  margin-bottom: 15rem;
}
.food__content h2 {
  margin-bottom: 2.5rem;
}
.food__break-fast-photo {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin: 2.5rem 0 4rem 0;
}
.food__break-fast-photo img {
  width: 840px;
  border-radius: 8px;
}
.food__break-fast-photo img:first-child {
  width: 360px;
}
.food__hot-dog-photo {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2.5rem 0 4rem 0;
}
.food__hot-dog-photo img {
  width: 400px;
  border-radius: 8px;
}
.food__menu {
  position: relative;
}
.food__menu h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}
.food__menu ul {
  position: relative;
  z-index: 2;
}
.food__menu-bg {
  position: absolute;
  z-index: 0;
  top: -340px;
  width: 100vw;
  height: 1600px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: url(/_assets/img/common/bg_gray.png);
  background-size: cover;
}
.food__menu img {
  position: relative;
  z-index: 9999;
  width: 800px;
  margin: auto;
  border-radius: 16px;
}

.news__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
}
.news__content div {
  position: relative;
  width: 400px;
  margin-bottom: 2.5rem;
}
.news__content div a {
  position: absolute;
  width: 100%;
  height: 100%;
}
.news__content div p {
  padding: 1.5rem 1.5rem 0 1.5rem;
  font-family: "Noto Serif JP", serif;
}
.news__content div p span {
  display: block;
  padding-top: 1rem;
  font-size: 0.75rem;
}
.news__detail-content {
  width: 840px;
  margin: 0 auto 5rem auto;
}
.news__detail-content img {
  width: 100%;
  margin-bottom: 4rem;
}
.news__back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__back a {
  padding: 0.5rem 1.5rem;
  border: 0.075em #000 solid;
}

.contact__content {
  width: 1280px;
  margin: auto;
}
.contact__content p {
  margin-bottom: 2.5rem;
}
.contact__content dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__content dt {
  width: 24%;
  line-height: 4;
  padding: 0.5rem;
}
.contact__content dt span {
  font-size: 0.75rem;
}
.contact__content .type01 {
  width: 400px;
  border: none;
  border-bottom: 1px #36363B solid;
  line-height: 4;
  padding: 0.5rem;
}
.contact__content textarea {
  padding: 0.5rem;
}
.contact__content .submit {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: none;
  color: #36363B;
  border: 1px #36363B solid;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact__content .submit:hover {
  background: #36363B;
  color: #fff;
}
.contact__submit {
  text-align: center;
  margin-bottom: 10rem;
}

.rooms__annex {
  margin-bottom: 8rem;
}
.rooms__annex img {
  border-radius: 8px;
  width: 800px;
  margin: auto;
}

.wc-okinawa-link {
  margin-top: 240px;
  margin-bottom: 80px;
  z-index: 9;
}
.wc-okinawa-link div {
  width: 320px;
  margin: auto;
  text-align: center;
}
.wc-okinawa-link a {
  display: block;
  border: 0.075em #e88d5f solid;
  border-radius: 999px;
  text-align: center;
  padding: 1rem 2rem;
  color: #e88d5f;
}
.wc-okinawa-link a:hover {
  background: #e88d5f;
  color: #fff;
}

.annex-okinawa-link {
  margin-top: 160px;
  margin-bottom: 80px;
  z-index: 9;
}
.annex-okinawa-link div {
  width: 320px;
  margin: auto;
  text-align: center;
}
.annex-okinawa-link a {
  display: block;
  border: 0.075em #ff5757 solid;
  border-radius: 999px;
  text-align: center;
  padding: 1rem 2rem;
  color: #ff5757;
}
.annex-okinawa-link a:hover {
  background: #ff5757;
  color: #fff;
}

.okinawa-link {
  margin-top: 160px;
  margin-bottom: 80px;
  z-index: 9;
}
.okinawa-link div {
  width: 320px;
  margin: auto;
  text-align: center;
}
.okinawa-link a {
  display: block;
  border: 0.075em #000 solid;
  border-radius: 999px;
  text-align: center;
  padding: 1rem 2rem;
  color: #000;
}
.okinawa-link a:hover {
  background: #000;
  color: #fff;
}

.wc__top-content {
  margin: 7.5rem 0;
}
.wc__top-content h2 {
  margin-bottom: 3.5rem;
}
.wc__top-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.wc__top-content-text {
  margin-bottom: 4rem;
}
.wc__top-content-block {
  margin-bottom: 5rem;
}
.wc__top-content-concept {
  width: 960px;
  margin: 0 auto 5rem auto;
}
.wc__top-content-concept img {
  border-radius: 8px;
}
.wc__top-content-main {
  position: relative;
  width: 1280px;
  height: 640px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.wc__top-content-main img {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
}
.wc__top-content-main div {
  text-align: center;
  z-index: 2;
}
.wc__top-content-main div p {
  color: #fff;
  font-size: 2.5rem;
}
.wc__top-content-main div h3 {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.wc__gallery-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 5rem;
}
.wc__gallery-content img {
  width: 620px;
  margin-bottom: 2rem;
  border-radius: 8px;
}
.wc__rent-text {
  margin-bottom: 5rem;
}
.wc__rooms-content {
  margin-bottom: 7.5rem;
}
.wc__rooms-content h2 {
  margin-bottom: 3.5rem;
}
.wc__btn a {
  padding: 0.5rem 1rem;
  font-weight: 400;
  border-radius: 80px;
  background: #e88d5f;
  border: 0.075em #e88d5f solid;
  color: #fff;
}
.wc__btn a:hover {
  background: #fff;
  color: #e88d5f;
}

.annex__top-content {
  margin: 7.5rem 0;
}
.annex__top-content h2 {
  margin-bottom: 3.5rem;
}
.annex__top-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.annex__top-content-text {
  margin-bottom: 4rem;
}
.annex__top-content-block {
  margin-bottom: 5rem;
}
.annex__top-content-concept {
  width: 960px;
  margin: 0 auto 2.5rem auto;
}
.annex__top-content-concept img {
  border-radius: 8px;
}
.annex__top-content-main {
  position: relative;
  width: 1280px;
  height: 640px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.annex__top-content-main img {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
}
.annex__top-content-main div {
  text-align: center;
  z-index: 2;
}
.annex__top-content-main div p {
  font-size: 2.5rem;
  color: #fff;
  line-height: 4;
}
.annex__top-content-main div h3 {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.annex__location-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 5rem;
}
.annex__location-content img {
  width: 620px;
  margin-bottom: 2rem;
  border-radius: 8px;
}
.annex__furniture-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 5rem;
}
.annex__furniture-content img {
  width: 620px;
  margin-bottom: 2rem;
  border-radius: 8px;
}
.annex__art-content {
  margin-bottom: 5rem;
}
.annex__art-content h2 {
  color: #ff5757;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.annex__art-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 2.5rem;
}
.annex__art-profile img {
  width: 320px;
  border-radius: 8px;
}
.annex__rent-text {
  margin-bottom: 5rem;
}
.annex__rooms-content {
  margin-bottom: 7.5rem;
}
.annex__rooms-content h2 {
  margin-bottom: 3.5rem;
  color: #ff5757;
  font-size: 2rem;
}
.annex__rooms-content p {
  margin-bottom: 2rem;
}
.annex__concept-content h2 {
  color: #ff5757;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.annex__concept-text {
  margin-bottom: 5rem;
}
.annex__concept-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3.5rem;
}
.annex__concept-photo {
  position: relative;
  width: 620px;
  height: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.annex__concept-photo img {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
}
.annex__concept-photo div {
  text-align: center;
  z-index: 2;
}
.annex__concept-photo div p {
  font-size: 2.5rem;
  color: #fff;
  line-height: 4;
}
.annex__concept-photo div h3 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.annex__concept-photo div h3.after {
  color: #ff5757;
}
.annex__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.annex__btn a {
  padding: 0.5rem 1rem;
  font-weight: 400;
  border-radius: 80px;
  background: #ff5757;
  border: 0.075em #ff5757 solid;
  color: #fff;
}
.annex__btn a:hover {
  background: #fff;
  color: #ff5757;
}

.chatan__top-content {
  margin: 7.5rem 0;
}
.chatan__top-content h2 {
  margin-bottom: 3.5rem;
}
.chatan__top-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.chatan__top-content-text {
  margin-bottom: 4rem;
}
.chatan__top-content-block {
  margin-bottom: 5rem;
}
.chatan__top-content-concept {
  width: 960px;
  margin: 0 auto;
}
.chatan__top-content-concept img {
  border-radius: 8px;
}
.chatan__top-content-main {
  position: relative;
  width: 1280px;
  height: 640px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.chatan__top-content-main img {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
}
.chatan__top-content-main div {
  text-align: center;
  z-index: 2;
}
.chatan__top-content-main div p {
  font-size: 2.5rem;
  color: #fff;
  line-height: 4;
}
.chatan__top-content-main div h3 {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.chatan__location-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 5rem;
}
.chatan__location-content img {
  width: 620px;
  margin-bottom: 2rem;
  border-radius: 8px;
}
.chatan__cafe-text {
  margin-bottom: 5rem;
}
.chatan__cafe-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 5rem;
}
.chatan__cafe-content img {
  width: 620px;
  margin-bottom: 2rem;
  border-radius: 8px;
}
.chatan__rooms-text {
  margin-bottom: 5rem;
}
.chatan__rooms-content {
  margin-bottom: 7.5rem;
}
.chatan__rooms-content h2 {
  margin-bottom: 3.5rem;
  color: #36363b;
  font-size: 2rem;
}
.chatan__rooms-content p {
  margin-bottom: 2rem;
}
.chatan__concept-content h2 {
  color: #36363b;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.chatan__concept-text {
  margin-bottom: 5rem;
}
.chatan__concept-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3.5rem;
}
.chatan__concept-photo {
  position: relative;
  width: 620px;
  height: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.chatan__concept-photo img {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
}
.chatan__concept-photo div {
  text-align: center;
  z-index: 2;
}
.chatan__concept-photo div p {
  font-size: 2.5rem;
  color: #fff;
  line-height: 4;
}
.chatan__concept-photo div h3 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.chatan__concept-photo div h3.after {
  color: #36363b;
}
.chatan__btn a {
  padding: 0.5rem 1rem;
  font-weight: 400;
  border-radius: 80px;
  background: #36363b;
  border: 0.075em #36363b solid;
  color: #fff;
}
.chatan__btn a:hover {
  background: #fff;
  color: #36363b;
}

@media screen and (max-width: 575px) {
  .main {
    max-width: 92vw;
    margin: 0 auto 5rem auto;
    padding: 0;
  }
  h2 {
    margin-bottom: 2.5rem;
  }
  h2 img {
    height: 10vw;
  }
  h3 img {
    height: 6.5vw;
  }
  .title {
    width: 100%;
    height: 360px;
    margin-bottom: 4.5rem;
  }
  .title.rooms {
    background: url(/_assets/img/rooms/pic_rooms10.jpg) no-repeat center;
    background-size: cover;
  }
  .title.rooms-detail {
    height: 240px;
    background: url(/_assets/img/common/bg_black.png);
    background-size: cover;
    margin-bottom: 0;
  }
  .title.food {
    background: url(/_assets/img/food/pic_mv.jpg) no-repeat;
    background-size: cover;
  }
  .title.news {
    background: url(/_assets/img/news/pic_mv.jpg) no-repeat;
    background-size: cover;
  }
  .title.news-detail {
    height: 320px;
    background: url(/_assets/img/common/bg_black.png);
    background-size: cover;
  }
  .title.contact {
    height: 320px;
    background: url(/_assets/img/common/bg_black.png);
    background-size: cover;
  }
  .title.chatan__rooms {
    background: url(/_assets/img/rooms/mv_rooms.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
  }
  .title__content {
    width: 92vw;
    margin: auto;
  }
  .title__content h1 {
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 300;
  }
  .title__content h1 img {
    height: 8vw;
  }
  .title__content h1.rooms img {
    height: 6vw;
  }
  .title__content h1 span {
    display: block;
    margin-top: 1.5rem;
    font-family: "Noto Serif JP", serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
  }
  .title__content h1 span.date {
    font-size: 0.875rem;
  }
  .space {
    margin-bottom: 5rem;
  }
  header .info {
    height: 60px;
  }
  header .info p {
    padding-right: 2.5rem;
  }
  header .header {
    position: absolute;
    width: 100%;
    height: 60px;
    margin: 1rem auto 0 auto;
  }
  header .header__content {
    width: 96vw;
    margin: auto;
  }
  header .header__nav {
    display: none;
  }
  header .header__link {
    display: none;
  }
  header .header__logo {
    width: 24vw;
    padding-left: 2vw;
  }
  header .header .sp-btn {
    display: block;
    position: relative;
    z-index: 9999;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  header .header .sp-btn span {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    right: 6vw;
    height: 2px;
    background-color: #fff;
  }
  header .header .sp-btn span:nth-of-type(1) {
    top: 26px;
    width: 50%;
  }
  header .header .sp-btn span:nth-of-type(2) {
    top: 38px;
    width: 50%;
  }
  header .header .sp-btn.active span:nth-of-type(1) {
    top: 24px;
    right: 7vw;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 35%;
    background-color: #36363B;
  }
  header .header .sp-btn.active span:nth-of-type(2) {
    top: 36px;
    right: 7vw;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 35%;
    background-color: #36363B;
  }
  header .tel {
    text-align: center;
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
  .header-fix {
    top: -80px;
    height: 80px;
    margin: 0;
    z-index: 9999;
  }
  .header-fix.hide {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .header-fix__content {
    margin: auto;
    padding: 4vw 4vw;
  }
  .header-fix__nav {
    display: none;
  }
  .header-fix__link {
    display: none;
  }
  .header-fix__logo {
    width: 20vw;
  }
  .header-fix .sp-btn {
    display: block;
    position: absolute;
    z-index: 9999;
    width: 60px;
    height: 60px;
    right: 2vw;
    cursor: pointer;
  }
  .header-fix .sp-btn span {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    right: 2vw;
    height: 2px;
    background-color: #36363B;
  }
  .header-fix .sp-btn span:nth-of-type(1) {
    top: 26px;
    width: 50%;
  }
  .header-fix .sp-btn span:nth-of-type(2) {
    top: 38px;
    width: 50%;
  }
  .header-fix .sp-btn.active span:nth-of-type(1) {
    top: 24px;
    right: 2vw;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 35%;
    background-color: #36363B;
  }
  .header-fix .sp-btn.active span:nth-of-type(2) {
    top: 36px;
    right: 2vw;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 35%;
    background-color: #36363B;
  }
  .sp-menu {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    color: #36363B;
    background: url(/_assets/img/common/bg_gray.png) #fff;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    display: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .sp-menu.wc {
    background: #fff;
  }
  .sp-menu.annex {
    background: #fff;
  }
  .sp-menu__content {
    position: relative;
    z-index: 9;
    padding-top: 16vh;
    text-align: center;
  }
  .sp-menu.active {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .sp-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8vw;
    margin-bottom: 3.5rem;
  }
  .sp-logo img {
    width: 20vw;
  }
  .sp-nav {
    padding-top: 12vh;
    font-size: 1rem;
    margin-bottom: 3.5rem;
  }
  .sp-nav li {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.25rem;
  }
  .sp-nav li.last {
    margin-bottom: 3.5rem;
  }
  .sp-nav li.logo {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 20vw;
    margin: 0 auto 2rem auto;
  }
  .sp-nav li.logo:hover {
    opacity: 0.7;
  }
  .sp-nav li.logo img {
    width: 24vw;
  }
  .sp-nav li.logo a::after {
    display: none;
  }
  .sp-nav a {
    color: #36363B;
  }
  .sp-link li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    margin-bottom: 1rem;
  }
  .sp-link li a {
    padding: 0.5rem 1rem;
    border: 0.075em #36363B solid;
    font-weight: 400;
    border-radius: 999px;
  }
  .sp-link-wc li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    margin-bottom: 1rem;
  }
  .sp-link-wc li a {
    padding: 0.5rem 1rem;
    border: 0.075em #e88d5f solid;
    font-weight: 400;
    border-radius: 999px;
    background: #e88d5f;
    color: #fff;
  }
  .sp-link-wc li.okinawa a {
    padding: 0.5rem 1rem;
    border: 0.075em #e88d5f solid;
    font-weight: 400;
    border-radius: 999px;
    background: #fff;
    color: #e88d5f;
  }
  .sp-link-annex li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    margin-bottom: 1rem;
  }
  .sp-link-annex li a {
    padding: 0.5rem 1rem;
    border: 0.075em #ff5757 solid;
    font-weight: 400;
    border-radius: 999px;
    background: #ff5757;
    color: #fff;
  }
  .sp-link-annex li.okinawa a {
    padding: 0.5rem 1rem;
    border: 0.075em #ff5757 solid;
    font-weight: 400;
    border-radius: 999px;
    background: #fff;
    color: #ff5757;
  }
  footer {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .footer {
    width: 92vw;
    margin: auto;
  }
  .footer__nav {
    margin-bottom: 4rem;
  }
  .footer__nav p {
    position: relative;
    top: 0;
    margin-bottom: 2.5rem;
  }
  .footer__nav p img {
    width: 32vw;
    margin: auto;
  }
  .footer__nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem;
    padding-left: 0;
  }
  .footer__nav li {
    font-size: 0.65rem;
  }
  .footer p {
    font-size: 0.75rem;
  }
  .footer__service {
    width: 92vw;
    margin: auto;
    border-top: 0.075em #fff solid;
    border-bottom: 0.075em #fff solid;
  }
  .footer__service ul {
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2.5rem 0;
  }
  .footer__service ul li {
    width: 22vw;
  }
  .footer__service ul img {
    width: 20vw;
  }
  .footer__service ul img.instagram {
    width: 10vw;
    margin: auto;
  }
  .footer__contact {
    display: block;
    margin-bottom: 4.5rem;
    text-align: center;
  }
  .footer__contact p {
    margin-bottom: 1.5rem;
  }
  .footer__contact div a {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
  .footer small {
    font-size: 0.75rem;
    padding: 2.5rem;
  }
  .kv {
    height: 64vh;
  }
  .kv__logo {
    width: 40vw;
  }
  .kv__visual {
    height: 64vh;
  }
  .kv img {
    height: 64vh !important;
    -o-object-fit: initial;
       object-fit: initial;
  }
  .concept {
    position: relative;
    margin-bottom: 7.5rem;
  }
  .concept h2 {
    font-size: 1.175rem;
  }
  .concept.annex {
    margin-bottom: 5rem;
  }
  .concept__content-wc {
    padding: 4rem 4vw;
  }
  .concept__content-wc p {
    width: 100%;
  }
  .concept__content-annex {
    padding: 4rem 4vw;
  }
  .concept__content-annex p {
    width: 100%;
  }
  .concept__content {
    display: block;
    min-height: auto;
    padding: 5rem 4vw;
  }
  .concept__content p {
    line-height: 2.4;
    width: 100%;
  }
  .concept__bg {
    min-height: 760px;
  }
  .rooms-top {
    margin-bottom: 7.5rem;
  }
  .rooms-top__title {
    display: block;
    margin-bottom: 5rem;
  }
  .rooms-top__title p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .rooms-top__photo {
    display: block;
    margin: 2.5rem 0 4rem 0;
  }
  .rooms-top__photo div:first-child {
    width: 100%;
  }
  .rooms-top__photo div:first-child img {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .rooms-top__photo div:nth-child(2) {
    width: 100%;
    display: block;
  }
  .rooms-top__photo div:nth-child(2) img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }
  .rooms-top__detail {
    display: block;
  }
  .rooms-top__detail p {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .rooms-top__detail div a {
    text-align: center;
    display: block;
    width: 64vw;
    margin: auto;
    padding: 1rem 2.5rem;
  }
  .rooms-top__detail-wc p {
    width: auto;
    margin: 0 auto 1.5rem auto;
  }
  .rooms-top__detail-annex p {
    width: auto;
    margin: 0 auto 1.5rem auto;
  }
  .food-top {
    margin-bottom: 7.5rem;
  }
  .food-top__title {
    display: block;
    margin-bottom: 5rem;
  }
  .food-top__title p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
  }
  .food-top__break-fast-photo {
    display: block;
    margin: 2.5rem 0 4rem 0;
  }
  .food-top__break-fast-photo img {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .food-top__break-fast-photo img:first-child {
    width: 100%;
  }
  .food-top__hot-dog-photo {
    display: block;
    margin: 2.5rem 0 2.5rem 0;
  }
  .food-top__hot-dog-photo img {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .food-top__detail {
    display: block;
  }
  .food-top__detail p {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .food-top__detail div a {
    text-align: center;
    display: block;
    width: 64vw;
    margin: auto;
    padding: 1rem 2.5rem;
  }
  .access-top h2 {
    margin-bottom: 2.5rem;
    padding-top: 5rem;
  }
  .access-top h2 img {
    height: 6vw;
  }
  .access-top__bg {
    height: 1080px;
  }
  .access-top__bg.annex {
    height: 900px;
  }
  .access-top__bg.wc {
    height: 960px;
  }
  .access-top__content {
    display: block;
  }
  .access-top__content p {
    margin-bottom: 2.5rem;
  }
  .access-top__content img {
    display: block;
    width: 100%;
    margin-top: 0;
  }
  .access-top__wc-img {
    margin-right: 0;
  }
  .access-top__wc-img img {
    width: 80vw;
  }
  .rooms__content {
    display: block;
  }
  .rooms__content div {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .rooms__content div h2 {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem 0 1.5rem;
  }
  .rooms__content div h2 img {
    height: 4.5vw;
    margin: 0;
  }
  .rooms__content div h2 span {
    font-size: 0.875rem;
  }
  .rooms__content div p {
    padding: 0 1.5rem;
    font-size: 0.875rem;
  }
  .rooms__photo img {
    width: 100%;
  }
  .rooms__txt div {
    max-width: auto;
    min-height: auto;
    display: block;
    width: 92vw;
    padding: 2.5rem 0;
    margin: 0 auto 2.5rem auto;
  }
  .rooms__txt div p {
    margin-bottom: 2.5rem;
  }
  .rooms__txt div p a {
    display: block;
    border: 0.075em #fff solid;
    padding: 1rem 2rem;
    width: 64vw;
    margin: auto;
    text-align: center;
  }
  .rooms__txt div p:first-child {
    width: auto;
  }
  .rooms__facilities {
    width: 100%;
  }
  .rooms__facilities ul {
    width: 40vw;
    padding: 2.5rem 0;
  }
  .rooms__facilities ul:last-child {
    border-bottom: 0.075em #000 solid;
  }
  .rooms__facilities ul li {
    line-height: 2;
    font-size: 0.875rem;
  }
  .rooms__facilities ul li:first-child {
    font-family: "Noto Serif JP", serif;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
  .rooms__layout {
    margin: 5rem 0;
  }
  .rooms__layout img {
    width: 100%;
    margin: auto;
  }
  .food__content section {
    position: relative;
    margin-bottom: 5rem;
  }
  .food__content h2 {
    margin-bottom: 2.5rem;
  }
  .food__content h2 img {
    height: 6.5vw;
  }
  .food__break-fast-photo {
    display: block;
    margin: 2.5rem 0 4rem 0;
  }
  .food__break-fast-photo img {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .food__break-fast-photo img:first-child {
    width: 100%;
  }
  .food__hot-dog-photo {
    display: block;
    margin: 2.5rem 0 4rem 0;
  }
  .food__hot-dog-photo img {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .food__menu h3 img {
    height: 5vw;
  }
  .food__menu-bg {
    top: -340px;
    width: 100vw;
    height: 560px;
  }
  .news__content {
    display: block;
  }
  .news__content div {
    position: relative;
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .news__content div p {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
  .news__content div p span {
    display: block;
    padding-top: 1rem;
    font-size: 0.75rem;
  }
  .news__detail-content {
    width: 100%;
    margin: 0 auto 5rem auto;
  }
  .news__detail-content img {
    width: 100%;
    margin-bottom: 4rem;
  }
  .news__back {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news__back a {
    padding: 0.5rem 1.5rem;
    border: 0.075em #000 solid;
  }
  .contact__content {
    width: auto;
  }
  .contact__content p {
    margin-bottom: 2.5rem;
  }
  .contact__content dl {
    display: block;
    margin-bottom: 4rem;
  }
  .contact__content dt {
    width: auto;
    line-height: 2;
  }
  .contact__content .type01 {
    width: 100%;
  }
  .contact__content textarea {
    width: 100%;
  }
  .contact__submit {
    margin-bottom: 8rem;
  }
  .booking {
    width: 100%;
    height: 90px;
  }
  .booking__content {
    width: 92vw;
    height: 90px;
    gap: 8px;
    font-size: 0.75rem;
  }
  .booking__content input.check {
    width: 16vw;
    line-height: 24px;
    padding: 0 1rem;
  }
  .booking__content select {
    border-radius: 4px;
    width: 8vw;
    line-height: 24px;
    padding: 0 1rem;
  }
  .booking__btn {
    display: block;
    background: #36363B;
    color: #fff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border: none;
  }
  .booking__btn:hover {
    background: #fff;
    color: #36363B;
  }
  .annex-okinawa-link {
    margin-top: 140px;
    margin-bottom: 80px;
  }
  .annex-okinawa-link div {
    width: 80vw;
  }
  .wc-okinawa-link {
    margin-top: 140px;
    margin-bottom: 80px;
  }
  .wc-okinawa-link div {
    width: 80vw;
  }
  .okinawa-link {
    margin-top: 140px;
    margin-bottom: 80px;
  }
  .okinawa-link div {
    width: 80vw;
  }
  .chatan__top-content {
    margin: 5rem 0;
  }
  .chatan__top-content h2 {
    margin-bottom: 3.5rem;
  }
  .chatan__top-content h2 img {
    height: 6vw;
  }
  .chatan__top-content h3 {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }
  .chatan__top-content-text {
    margin-bottom: 4rem;
  }
  .chatan__top-content-block {
    margin-bottom: 3.5rem;
  }
  .chatan__top-content-concept {
    width: 100%;
    margin: 0 auto 2.5rem auto;
  }
  .chatan__top-content-main {
    position: relative;
    width: 92vw;
    height: 140px;
    margin-bottom: 2rem;
  }
  .chatan__top-content-main img {
    position: absolute;
    z-index: 1;
    border-radius: 8px;
  }
  .chatan__top-content-main div p {
    font-size: 1.25rem;
    color: #fff;
    line-height: 4;
  }
  .chatan__top-content-main div h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .chatan__location-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 5rem;
  }
  .chatan__location-content img {
    width: 620px;
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  .chatan__cafe-text {
    margin-bottom: 2.5rem;
  }
  .chatan__cafe-content {
    display: block;
    margin-top: 5rem;
  }
  .chatan__cafe-content img {
    width: 100%;
  }
  .chatan__rooms-text {
    margin-bottom: 3.5rem;
  }
  .chatan__rooms-content {
    margin-bottom: 5rem;
  }
  .chatan__rooms-content h2 {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
  }
  .chatan__rooms-content p {
    margin-bottom: 2rem;
  }
  .chatan__concept-content h2 {
    color: #36363b;
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  .chatan__concept-text {
    margin-bottom: 5rem;
  }
  .chatan__concept-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3.5rem;
  }
  .chatan__concept-photo {
    position: relative;
    width: 620px;
    height: 400px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
  .chatan__concept-photo img {
    position: absolute;
    z-index: 1;
    border-radius: 8px;
  }
  .chatan__concept-photo div {
    text-align: center;
    z-index: 2;
  }
  .chatan__concept-photo div p {
    font-size: 2.5rem;
    color: #fff;
    line-height: 4;
  }
  .chatan__concept-photo div h3 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .chatan__concept-photo div h3.after {
    color: #36363b;
  }
  .chatan__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .chatan__btn a {
    padding: 0.5rem 1rem;
    font-weight: 400;
    border-radius: 80px;
    background: #36363b;
    border: 0.075em #36363b solid;
    color: #fff;
  }
  .chatan__btn a:hover {
    background: #fff;
    color: #36363b;
  }
  .wc__top-content {
    margin: 5rem 0;
  }
  .wc__top-content h2 {
    margin-bottom: 3.5rem;
  }
  .wc__top-content h2 img {
    height: 6vw;
  }
  .wc__top-content h3 {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }
  .wc__top-content-text {
    margin-bottom: 4rem;
  }
  .wc__top-content-block {
    margin-bottom: 3.5rem;
  }
  .wc__top-content-concept {
    width: 100%;
    margin: 0 auto 2.5rem auto;
  }
  .wc__top-content-main {
    position: relative;
    width: 92vw;
    height: 140px;
    margin-bottom: 2rem;
  }
  .wc__top-content-main img {
    position: absolute;
    z-index: 1;
    border-radius: 8px;
  }
  .wc__top-content-main div p {
    font-size: 1.25rem;
    color: #fff;
    line-height: 4;
  }
  .wc__top-content-main div h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .wc__location-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 5rem;
  }
  .wc__location-content img {
    width: 620px;
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  .wc__rooms-text {
    margin-bottom: 3.5rem;
  }
  .wc__rooms-content {
    margin-bottom: 5rem;
  }
  .wc__rooms-content h2 {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
  }
  .wc__rooms-content h2 img {
    height: 6vw;
  }
  .wc__rooms-content p {
    margin-bottom: 2rem;
  }
  .wc__concept-content h2 {
    color: #e88d5f;
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  .wc__concept-text {
    margin-bottom: 5rem;
  }
  .wc__concept-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3.5rem;
  }
  .wc__concept-photo {
    position: relative;
    width: 620px;
    height: 400px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
  .wc__concept-photo img {
    position: absolute;
    z-index: 1;
    border-radius: 8px;
  }
  .wc__concept-photo div {
    text-align: center;
    z-index: 2;
  }
  .wc__concept-photo div p {
    font-size: 2.5rem;
    color: #fff;
    line-height: 4;
  }
  .wc__concept-photo div h3 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .wc__concept-photo div h3.after {
    color: #e88d5f;
  }
  .wc__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wc__btn a {
    padding: 0.5rem 1rem;
    font-weight: 400;
    border-radius: 80px;
    background: #e88d5f;
    border: 0.075em #e88d5f solid;
    color: #fff;
  }
  .wc__btn a:hover {
    background: #fff;
    color: #e88d5f;
  }
  .annex__top-content {
    margin: 5rem 0;
  }
  .annex__top-content h2 {
    margin-bottom: 3.5rem;
  }
  .annex__top-content h2 img {
    height: 6vw;
  }
  .annex__top-content h3 {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }
  .annex__top-content-text {
    margin-bottom: 4rem;
  }
  .annex__top-content-block {
    margin-bottom: 3.5rem;
  }
  .annex__top-content-concept {
    width: 100%;
    margin: 0 auto 2.5rem auto;
  }
  .annex__top-content-main {
    position: relative;
    width: 92vw;
    height: 140px;
    margin-bottom: 2rem;
  }
  .annex__top-content-main img {
    position: absolute;
    z-index: 1;
    border-radius: 8px;
  }
  .annex__top-content-main div p {
    font-size: 1.25rem;
    color: #fff;
    line-height: 4;
  }
  .annex__top-content-main div h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .annex__art-content {
    margin-bottom: 3.5rem;
  }
  .annex__art-content h2 {
    color: #ff5757;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .annex__art-profile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8vw;
    margin-bottom: 2.5rem;
  }
  .annex__art-profile img {
    width: 32vw;
    border-radius: 8px;
  }
  .annex__location-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 5rem;
  }
  .annex__location-content img {
    width: 620px;
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  .annex__rooms-text {
    margin-bottom: 3.5rem;
  }
  .annex__rooms-content {
    margin-bottom: 5rem;
  }
  .annex__rooms-content h2 {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
  }
  .annex__rooms-content h2 img {
    height: 6vw;
  }
  .annex__rooms-content p {
    margin-bottom: 2rem;
  }
  .annex__concept-content h2 {
    color: #ff5757;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .annex__concept-text {
    margin-bottom: 5rem;
  }
  .annex__concept-block {
    display: block;
    margin-bottom: 3.5rem;
  }
  .annex__concept-photo {
    width: 100%;
    height: 220px;
    margin-bottom: 2rem;
  }
  .annex__concept-photo img {
    position: absolute;
    z-index: 1;
    border-radius: 8px;
  }
  .annex__concept-photo div {
    text-align: center;
    z-index: 2;
  }
  .annex__concept-photo div p {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
  }
  .annex__concept-photo div h3 {
    font-size: 1.5rem;
  }
  .annex__concept-photo div h3.after {
    color: #ff5757;
  }
  .annex__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .annex__btn a {
    padding: 0.5rem 1rem;
    font-weight: 400;
    border-radius: 80px;
    background: #ff5757;
    border: 0.075em #ff5757 solid;
    color: #fff;
  }
  .annex__btn a:hover {
    background: #fff;
    color: #ff5757;
  }
}/*# sourceMappingURL=style.css.map */