@charset "UTF-8";
.primary-button {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transition: all 0.3s;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
  width: 100%;
  padding: 1.7rem 1rem;
  border: 0.2rem solid #7b3539;
  border-radius: 0.8rem;
  background-image: url(../images/common/icon-button.svg);
  background-position: center right 1.1rem;
  background-size: 2.4rem;
  background-repeat: no-repeat;
  background-color: #7b3539;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s;
}

.back-to-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transition: all 0.3s;
  display: -webkit-box;
  display: flex;
  z-index: 10;
  position: fixed;
  right: 0;
          flex-direction: column;
          align-items: center;
          justify-content: center;
  border-radius: 1.2rem 0 0 1.2rem;
  background-color: #7b3539;
  color: #ffffff;
  line-height: 1;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.08em;
  text-align: center;
  transition: all 0.3s;
}
.back-to-top .img {
  display: block;
}

.animete-inview-blur {
  -webkit-transform: translateY(1rem);
  -webkit-transition: -webkit-transform 0.8s linear, opacity 0.8s linear;
  -webkit-transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          transform: translateY(1rem);
  animation-duration: 0.8s;
  animation-fill-mode: both;
  opacity: 0;
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  transition: transform 0.8s linear, opacity 0.8s linear;
  transition: transform 0.8s linear, opacity 0.8s linear, -webkit-transform 0.8s linear;
}
.animete-inview-blur.in-view {
  -webkit-animation-name: inviewBlur;
  -webkit-transition: 0.8s;
  animation-name: inviewBlur;
  opacity: 1;
  transition: 0.8s;
}

/* キーフレームの修正：下からの動きを追加 */
@-webkit-keyframes inviewBlur {
  from {
    -webkit-transform: translateY(1rem);
    -webkit-filter: blur(1.5rem);
    transform: translateY(1rem);
    filter: blur(1.5rem);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    -webkit-filter: blur(0px);
    transform: translateY(0);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes inviewBlur {
  from {
    -webkit-transform: translateY(1rem);
    -webkit-filter: blur(1.5rem);
            transform: translateY(1rem);
            filter: blur(1.5rem);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    -webkit-filter: blur(0px);
            transform: translateY(0);
            filter: blur(0px);
    opacity: 1;
  }
}
/* ふわっと表示 */
.animete-inview-opacity {
  -webkit-transition: opacity 0.5s ease-in-out;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.animete-inview-opacity.in-view {
  -webkit-transition-delay: 0.5s;
  opacity: 1;
          transition-delay: 0.5s;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  -webkit-text-size-adjust: 100%; /* 2 */
  line-height: 1.15; /* 1 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 2 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  font-family: inherit; /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible; /* 1 */
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none; /* 1 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: inherit;
  margin: 0;
  font-family: "Noto Sans JP", serif;
}
*::before,
* ::after {
  box-sizing: inherit;
  margin: 0;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
input,
textarea,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  -webkit-font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
  background-color: #ffffff;
  color: #5a5a5a;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.15;
  font-family: "Noto Sans JP", serif;
          font-kerning: normal;
  letter-spacing: 0.1em;
  counter-reset: number 0;
}

h1 {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

img,
iframe,
video {
  max-width: 100%;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

ol li,
ul li {
  list-style: none;
}

a {
  -webkit-transition: 0.5s;
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

.js-focus-visible:focus:not(.focus-visible) {
  outline: 0;
}

*:focus-visible {
  outline: none;
}

.wrap {
  display: none;
}
.footer .list-item {
  line-height: 1.75em;
  list-style-type: disc;
}
.footer .list-item a {
  text-decoration: underline;
}
.footer .link {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
}
.footer .link .link-item {
  border-left: 0.1rem solid #5a5a5a;
}
.footer .link .link-item:last-child {
  border-right: 0.1rem solid #5a5a5a;
}
.footer small {
  display: block;
  color: #888;
  line-height: 1.5em;
  text-align: center;
}

.about-essential-trabel {
  background-color: #e7e6e4;
}
.about-essential-trabel .heading {
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
  text-align: center;
}
.about-essential-trabel .text {
  line-height: 1.75em;
}
.about-essential-trabel .blank-link {
  display: inline-block;
  padding-right: 2.4rem;
  background-image: url(../images/common/icon-blank-dark-red.svg);
  background-position: center right;
  background-repeat: no-repeat;
  color: #7b3539;
  line-height: 1.75em;
  text-decoration: underline;
}

.about-hanro {
  padding: 12rem 0;
  background-color: #2a2a2a;
}
.about-hanro .heading {
  color: #c9a67b;
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
  text-align: center;
}
.about-hanro .text {
  color: #ffffff;
  line-height: 1.75em;
}
.about-hanro .blank-link {
  display: inline-block;
  padding-right: 2.4rem;
  background-image: url(../images/common/icon-blank-white.svg);
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  line-height: 1.75em;
  text-decoration: underline;
}

.hanro .bg {
  position: relative;
}
.hanro .bg::before {
  z-index: -1;
  position: absolute;
  width: 100vw;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.hanro .wrapper {
  position: relative;
}
.hanro .layout + .layout {
  margin-top: 9.6rem;
}
.hanro .amenity {
  background-color: #f3f2f0;
}
.hanro .amenity .main-heading {
  text-align: center;
}
.hanro .amenity .main-heading .decoration {
  display: block;
  position: relative;
}
.hanro .amenity .main-heading .decoration::before, .hanro .amenity .main-heading .decoration::after {
  -webkit-transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 0.1rem;
          transform: translateY(-50%);
  background-color: #aca497;
  content: "";
}
.hanro .amenity .main-heading .decoration::before {
  left: 0;
}
.hanro .amenity .main-heading .decoration::after {
  right: 0;
}
.hanro .amenity .main-heading .heading {
  display: inline-block;
  color: #aca497;
  font-family: "Crimson Text", serif;
}
.hanro .amenity .sub-text {
  color: #aca497;
  line-height: 1.75em;
  text-align: center;
}
.hanro .amenity .img-block {
  margin-bottom: 1.6rem;
}
.hanro .amenity .sub-hgroup {
  margin-bottom: 1.6rem;
}
.hanro .amenity .sub-heading-en {
  color: #7b3539;
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
}
.hanro .amenity .sub-heading-ja {
  color: #999999;
  line-height: 1.75em;
  letter-spacing: 0.05em;
}
.hanro .amenity .text {
  font-size: 1.3rem;
  line-height: 1.75em;
}
.hanro .amenity .sub-content .block {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-areas: "image heading-group" "image text-area";
}
.hanro .amenity .sub-content .img {
  grid-area: image;
}
.hanro .amenity .sub-content .heading-group {
  grid-area: heading-group;
}
.hanro .amenity .sub-content .text {
  grid-area: text-area;
  line-height: 1.75em;
}
.hanro .about {
  background-color: #f3f2f0;
}
.hanro .about .main-heading {
  text-align: center;
}
.hanro .about .main-heading .decoration {
  display: block;
  position: relative;
}
.hanro .about .main-heading .decoration::before, .hanro .about .main-heading .decoration::after {
  -webkit-transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 0.1rem;
          transform: translateY(-50%);
  background-color: #aca497;
  content: "";
}
.hanro .about .main-heading .decoration::before {
  left: 0;
}
.hanro .about .main-heading .decoration::after {
  right: 0;
}
.hanro .about .main-heading .heading {
  display: inline-block;
  color: #aca497;
  font-family: "Crimson Text", serif;
}
.hanro .about .about-content-robe .sub-heading-en,
.hanro .about .about-content-inner-wear .sub-heading-en {
  color: #7b3539;
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.05em;
}
.hanro .about .about-content-robe .sub-heading-ja,
.hanro .about .about-content-inner-wear .sub-heading-ja {
  color: #999999;
  line-height: 1.75em;
  letter-spacing: 0.05em;
}
.hanro .about .about-content-robe .text,
.hanro .about .about-content-inner-wear .text {
  grid-area: text-area;
  font-size: 1.3rem;
  line-height: 1.75em;
}
.hanro .about .about-content-robe {
  display: grid;
}
.hanro .about .about-content-robe .img-block {
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
  grid-area: image-block;
          align-items: center;
}
.hanro .about .about-content-robe .heading-group {
  grid-area: heading-group;
}
.hanro .slider-wrapper {
  z-index: 2;
  position: absolute;
  right: 0;
  left: 0;
}

.intro {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.intro .img {
  grid-area: image;
}
.intro .heading {
  grid-area: heading;
  color: #7b3539;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.intro .text {
  grid-area: text-area;
  line-height: 1.75em;
}
.intro .slider-wrapper {
  position: absolute;
  right: 0;
  left: 0;
}

.kv {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  position: relative;
          flex-direction: column;
          align-items: center;
          justify-content: center;
  width: 100vw;
  height: 100svh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.kv .filter-overlay {
  -webkit-transition: opacity 1s ease-in-out;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.kv .content {
  -webkit-transition: opacity 1s ease-in-out;
  z-index: 2;
  position: relative;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.kv .content hgroup {
  margin-bottom: 5rem;
  text-align: center;
}
.kv .heading {
  -webkit-box-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  display: -webkit-box;
  display: flex;
          flex-direction: column-reverse;
          align-items: center;
}
.kv .title {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  text-align: center;
}
.kv .sub-title {
  color: #ffffff;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  text-align: center;
}
.kv .logo {
  margin-bottom: 5rem;
}
.kv .datetime {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
  margin-bottom: 4.8rem;
  color: #ffffff;
}
.kv .datetime time {
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
}
.kv .datetime span {
  display: inline-block;
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
}
.kv .datetime .week {
  font-size: 0.6em;
}
.kv .primary-button {
  margin: 0 auto;
}

.is-loaded .filter-overlay {
  -webkit-transition-delay: 0.8s;
  opacity: 1;
          transition-delay: 0.8s;
}
.is-loaded .content {
  -webkit-transition-delay: 1.5s;
  opacity: 1;
          transition-delay: 1.5s;
}

.logo-area {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: grid;
          align-items: center;
          justify-content: center;
}

.reservation {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reservation .datetime .week {
  font-size: 0.6em !important;
}

.reservation .fixed-content {
  -webkit-clip-path: inset(0);
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  clip-path: inset(0);
}
.reservation .fixed-content::before {
  -webkit-transform: translate(0, 0);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100 + var(--offset-height));
          transform: translate(0, 0);
  background-image: url(../images/kv/bg-image.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.reservation .reservation-plan {
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}
.reservation .reservation-plan .title {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
}
.reservation .reservation-plan .sub-title {
  color: #ffffff;
  line-height: 1.75em;
  text-align: center;
}
.reservation .reservation-plan .logo {
  margin: 0 auto 2.4rem;
}
.reservation .reservation-plan .datetime {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
  color: #ffffff;
}
.reservation .reservation-plan .datetime time {
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
}
.reservation .reservation-plan .datetime span {
  display: inline-block;
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
}
.reservation .reservation-plan .plan-block + .plan-block {
  margin-top: 6.4rem;
}
.plan-block .heading-ja a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.3s ease;
  font-size: 0.8em;
}
.plan-block .heading-ja a:hover {
  opacity: 0.7;
}
.reservation .reservation-plan .layout > .content {
  background-color: #ffffff;
}
.reservation .reservation-plan .layout > .content .heading-en {
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.05em;
}
.reservation .reservation-plan .layout > .content .heading-ja {
  line-height: 1.75em;
  letter-spacing: 0.05em;
}
.reservation .reservation-plan .layout > .content .description .inner {
  border-radius: 0.8rem;
  background-color: #f3f2f0;
}
.reservation .reservation-plan .layout > .content .description .list {
  display: -webkit-box;
  display: flex;
}
.reservation .reservation-plan .layout > .content .description .list + .list {
  margin-top: 1.6rem;
}
.reservation .reservation-plan .layout > .content .description .list dt {
  color: #aca497;
  font-weight: bold;
  line-height: 1.75em;
  letter-spacing: 0.05em;
}
.reservation .reservation-plan .layout > .content .description .list dd {
  line-height: 1.75em;
  letter-spacing: 0.05em;
}
.reservation .reservation-plan .layout > .content .reservation-block .cta {
  line-height: 1.5em;
}
.reservation .reservation-plan .layout > .content .reservation-block .cta .spacing {
  letter-spacing: 0.05em;
}
.reservation .reservation-plan .layout > .content .reservation-block .cta .bold {
  font-weight: bold;
}
.reservation .reservation-plan .layout > .content .reservation-block .cta .middle {
  line-height: 1.75em;
}
.reservation .reservation-plan .layout > .content .reservation-block .cta-notes {
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1.75em;
  word-break: keep-all;
}
.reservation .reservation-plan .layout > .content .reservation-block .primary-button {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
}
.reservation .reservation-plan .layout > .content .reservation-block .primary-button + .primary-button {
  margin-top: 0.8rem;
}
.reservation .reservation-plan .layout > .content .reservation-block .primary-button > span {
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.reservation .reservation-plan .layout > .content .slider-wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.reservation .reservation-plan .layout > .content .fade-filter {
  z-index: 10;
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
}
.reservation .reservation-plan .layout > .content .fade-left {
  left: 0;
  background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}
.reservation .reservation-plan .layout > .content .fade-right {
  right: 0;
  background: -webkit-linear-gradient(right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}
.reservation .reservation-plan .layout > .content .slider-inner {
  margin: 0 0.8rem;
  overflow: hidden;
  border-radius: 0.8rem;
}
.reservation .reservation-plan .layout > .content .slick-arrow {
  -webkit-transform: translateY(-50%);
  z-index: 20;
  top: 50%;
          transform: translateY(-50%);
}
.reservation .reservation-plan .layout > .content .slick-arrow::before {
  -webkit-transform: rotate(180deg);
  display: inline-block;
          transform: rotate(180deg);
  border: 0.1rem solid #7b3539;
  border-radius: 50%;
  background-image: url(../images/reservation/slider-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  content: "";
  opacity: 1;
}
.reservation .reservation-plan .layout > .content .slick-arrow.slick-next::before {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.reservation .reservation-plan .layout > .content .dots-wrap {
  -webkit-box-pack: center;
  -webkit-transform: translateX(-50%);
  display: -webkit-box;
  display: flex;
  position: absolute;
  left: 50%;
          justify-content: center;
  padding: 1.6rem 0 0;
          transform: translateX(-50%);
}
.reservation .reservation-plan .layout > .content .dots-wrap li {
  margin: 0 0.8rem;
  border-radius: 50%;
  background: #c0a9aa;
  cursor: pointer;
}
.reservation .reservation-plan .layout > .content .dots-wrap li:hover, .reservation .reservation-plan .layout > .content .dots-wrap li.slick-active {
  background: #7b3539;
}
.reservation .reservation-plan .layout > .content .dots-wrap li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
}
.reservation .reservation-plan .layout > .content .slick-dotted .slick-slider {
  position: relative;
  margin-bottom: 0;
}
.reservation .reservations-clerk {
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}
.reservation .reservations-clerk .head .en {
  color: #ffffff;
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
  text-align: center;
}
.reservation .reservations-clerk .head .ja {
  display: block;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
}
.reservation .reservations-clerk .text {
  display: block;
  margin-bottom: 0.8rem;
  color: #ffffff;
  line-height: 1.5em;
  text-align: center;
}
.reservation .reservations-clerk .tel {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.5em;
  font-family: "Inter", serif;
  letter-spacing: 0.05em;
}
.reservation .reservations-clerk .tel a {
  display: block;
  font-weight: bold;
  line-height: 1.5em;
  font-family: "Inter", serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.reservation .reservations-clerk .tel a:hover {
  opacity: 0.7;
}
.reservation .reservations-clerk .business-hours {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.75em;
  text-align: center;
}
.stay-plan .main-heading {
  color: #aca497;
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
  text-align: center;
}
.stay-plan .plan {
  position: relative;
}
.stay-plan .decoration-text {
  z-index: 1;
  color: #2a2a2a;
  font-family: "Crimson Text", serif;
}
.stay-plan .plan-content > .container {
  grid-area: container;
}
.stay-plan .plan-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #aca497;
  line-height: 1;
  font-family: "Inter", serif;
}
.stay-plan .sub-heading {
  color: #2a2a2a;
  line-height: 1.5em;
  font-family: "Crimson Text", serif;
}
.stay-plan .sub-text {
  line-height: 1.75em;
  letter-spacing: 0.05em;
}
.stay-plan .description {
  margin-bottom: 2.4rem;
  line-height: 1.75em;
}
.stay-plan .description-list dt {
  color: #aca497;
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.stay-plan .description-list dd {
  line-height: 1.75em;
  letter-spacing: 0.05em;
}
.stay-plan .introducing-product {
  background-color: #f3f2f0;
}
.stay-plan .introducing-product > .heading {
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.stay-plan .introducing-product .text {
  line-height: 1.75em;
}
.stay-plan .introducing-product .block-container {
  display: -webkit-box;
  display: flex;
}
.stay-plan .introducing-product .block > .img {
  margin-bottom: 0.8rem;
}
.stay-plan .introducing-product .block > .detail dt {
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.stay-plan .introducing-product .block > .detail dd {
  line-height: 1.75em;
}
.stay-plan .introducing-product .detail-block-pc {
  display: -webkit-box;
  display: flex;
  gap: 0 2.4rem;
}
.stay-plan .introducing-product .detail dt {
  color: #aca497;
}
.stay-plan .introducing-product .notes {
  display: block;
  margin-top: 1.6rem;
  color: #999999;
  font-size: 1rem;
  line-height: 1.75em;
  letter-spacing: 0.05em;
}
.stay-plan .primary-button {
  font-size: 1.4rem;
}

.u-only-sp {
  display: block;
}

.u-only-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .primary-button {
    font-size: 1.6rem;
  }
  .back-to-top {
    bottom: 1.6rem;
    width: 5.6rem;
    height: 6.4rem;
    font-size: 1.6rem;
  }
  .back-to-top .img {
    width: 2rem;
  }
  .footer {
    padding: 5.6rem 2rem 0;
  }
  .footer .list {
    padding-left: 2rem;
  }
  .footer .list-item {
    font-size: 1.2rem;
  }
  /* .footer .link {
    padding: 4rem 0 1.6rem;
    font-size: 1rem;
  }
  .footer .link .link-item {
    line-height: 1.5em;
  } */

  .footer .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 4rem 0 1.6rem;
  font-size: 0.8rem;
}

.footer .link .link-item {
  line-height: 1.5em;
  text-align: center;
  padding: 0 1rem;
  border-right: 0.1rem solid #5a5a5a;
}

  .footer .link a {
    padding: 0rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  .footer small {
    padding: 1.6rem 0;
    font-size: 0.8rem;
  }
  .about-essential-trabel {
    padding: 9.6rem 3.2rem;
  }
  .about-essential-trabel .heading {
    margin-bottom: 3.2rem;
    font-size: 3.2rem;
  }
  .about-essential-trabel .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    display: -webkit-box;
    display: flex;
            flex-direction: column-reverse;
  }
  .about-essential-trabel .text {
    font-size: 1.4rem;
  }
  .about-essential-trabel .blank-link-wrap {
    margin-top: 4rem;
    text-align: center;
  }
  .about-essential-trabel .blank-link {
    font-size: 1.4rem;
  }
  .about-essential-trabel .img {
    margin-bottom: 4rem;
  }
  .about-hanro {
    padding: 9.6rem 3.2rem;
  }
  .about-hanro .heading {
    margin-bottom: 3.2rem;
    font-size: 3.2rem;
  }
  .about-hanro .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    display: -webkit-box;
    display: flex;
            flex-direction: column-reverse;
  }
  .about-hanro .text {
    font-size: 1.4rem;
  }
  .about-hanro .blank-link-wrap {
    margin-top: 4rem;
    text-align: center;
  }
  .about-hanro .blank-link {
    font-size: 1.4rem;
  }
  .about-hanro .img {
    margin-bottom: 4rem;
  }
  .hanro .bg::before {
    height: 30rem;
    background-image: url("../images/hanro/bg-amenity-sp.jpg");
  }
  .hanro .wrapper {
    padding: 20rem 2rem 9.6rem;
  }
  .hanro .amenity {
    margin: 0 0 4.8rem;
    padding: 4rem 2rem;
    border-radius: 1.6rem;
  }
  .hanro .amenity .amenity-content {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "main-hgroup" "sub-hgroup" "image-block" "text-area";
  }
  .hanro .amenity .main-hgroup {
    grid-area: main-hgroup;
    margin-bottom: 2.4rem;
  }
  .hanro .amenity .main-heading .decoration::before, .hanro .amenity .main-heading .decoration::after {
    max-width: 5.4rem;
  }
  .hanro .amenity .main-heading .heading {
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
    line-height: 1.1em;
    letter-spacing: 0.05em;
  }
  .hanro .amenity .sub-text {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .hanro .amenity .img-block {
    grid-area: image-block;
  }
  .hanro .amenity .img-block .img + .img {
    margin-top: 1.6rem;
  }
  .hanro .amenity .sub-hgroup {
    grid-area: sub-hgroup;
  }
  .hanro .amenity .sub-heading-en {
    margin-bottom: 0.4rem;
    font-size: 2rem;
  }

 .hanro .amenity .heading-group .sub-heading-en.champagne {
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  letter-spacing: 0rem;
  line-height: 1.2em;
}

  .hanro .amenity .sub-heading-ja {
    font-size: 1rem;
  }
  .hanro .amenity .text {
    grid-area: text-area;
  }
  .hanro .amenity .sub-content {
    margin-top: 2.4rem;
  }
  .hanro .amenity .sub-content .block {
    grid-template-columns: min(100%, 10rem) 1fr;
    gap: 1.2rem;
  }
  .hanro .amenity .sub-content .block + .block {
    margin-top: 3.2rem;
  }
  .hanro .amenity .sub-content .text {
    font-size: 1.2rem;
  }
  .hanro .about {
    padding: 4rem 2rem;
    border-radius: 1.6rem;
  }
  .hanro .about .main-heading {
    margin-bottom: 2.4rem;
  }
  .hanro .about .main-heading .decoration::before, .hanro .about .main-heading .decoration::after {
    max-width: 4.4rem;
  }
  .hanro .about .main-heading .heading {
    font-size: 2.4rem;
    line-height: 1.1em;
    letter-spacing: 0.05em;
  }
  .hanro .about .about-content-robe .sub-heading-en,
  .hanro .about .about-content-inner-wear .sub-heading-en {
    margin-bottom: 0.4rem;
    font-size: 2rem;
  }
  .hanro .about .about-content-robe .sub-heading-ja,
  .hanro .about .about-content-inner-wear .sub-heading-ja {
    font-size: 1rem;
  }
  .hanro .about .about-content-robe {
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "heading-group" "image-block" "text-area";
    margin-bottom: 4rem;
    gap: 1.6rem;
  }
  .hanro .about .about-content-robe .img-block {
    -webkit-box-pack: center;
            justify-content: center;
    gap: 0.8rem;
  }
  .hanro .about .about-content-inner-wear .img-block + .img-block {
    margin-top: 4rem;
  }
  .hanro .about .about-content-inner-wear .heading-group {
    margin-bottom: 1.6rem;
  }
  .hanro .about .about-content-inner-wear .img {
    max-width: 14.8rem;
    margin: 0 auto 1.6rem;
  }
  .hanro .slider-wrapper {
    bottom: -6rem;
  }
  .hanro .slider-inner {
    max-width: 18rem;
    margin: 0 1.2rem;
  }
  .intro {
    padding: 0 0 11.6rem;
    background-image: url(../images/intro/bg-image-sp.jpg);
  }
  .intro .img {
    margin-bottom: 3.2rem;
  }
  .intro .heading {
    margin-bottom: 3.2rem;
    padding: 0 1.6rem;
    font-size: 2rem;
  }
  .intro .text {
    padding: 0 1.6rem;
    font-size: 1.3rem;
  }
  .intro .slider-wrapper {
    bottom: -6rem;
  }
  .intro .slider-inner {
    max-width: 18rem;
    margin: 0 1.2rem;
  }
  .kv {
    background-image: url(../images/kv/bg-image-sp.jpg);
  }
  .kv .content img {
    max-width: 29.5rem;
  }
  .kv .title {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    text-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
  }
  .kv .sub-title {
    font-size: 1.2rem;
    text-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
  }
  .kv .datetime time {
    font-size: 3.2rem;
    text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  }
  .kv .datetime span {
    font-size: 3.2rem;
  }
  .kv .primary-button {
    min-width: 34.5rem;
    max-width: 34.5rem;
    font-size: 1.6rem;
  }
  .logo-area {
    grid-template-columns: 5.6rem 1.3rem 6.6rem 1.3rem 9.6rem;
    margin: 3.2rem 0;
    gap: 0 2.2rem;
  }
  .reservation .reservation-plan {
    padding-top: 9.6rem;
  }
  .reservation .reservation-plan hgroup {
    margin-bottom: 4.8rem;
  }
  .reservation .reservation-plan .title {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .reservation .reservation-plan .sub-title {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .reservation .reservation-plan .logo {
    max-width: 28.3rem;
  }
  .reservation .reservation-plan .datetime {
    margin-bottom: 2.4rem;
  }
  .reservation .reservation-plan .datetime time {
    font-size: 3.2rem;
  }
  .reservation .reservation-plan .datetime span {
    font-size: 3.2rem;
  }
  .reservation .reservation-plan .layout {
    margin: 0 1.5rem;
  }
  .reservation .reservation-plan .layout > .content {
    border-radius: 1.6rem;
  }
  .reservation .reservation-plan .layout > .content .heading-group {
    padding: 4rem 2.4rem 2.4rem 0;
  }
  .reservation .reservation-plan .layout > .content .heading-group .inner {
    padding-left: 1.6rem;
    border-left: 0.8rem #aca497 solid;
  }
  .reservation .reservation-plan .layout > .content .heading-en {
    font-size: 2.4rem;
  }
  .reservation .reservation-plan .layout > .content .heading-ja {
    font-size: 1.2rem;
  }
  .reservation .reservation-plan .layout > .content .description {
    padding: 1.4rem 2rem 0;
  }
  .reservation .reservation-plan .layout > .content .description .inner {
    padding: 2rem;
  }
  .reservation .reservation-plan .layout > .content .description .list dt {
    min-width: 4rem;
    font-size: 1.2rem;
  }
  .reservation .reservation-plan .layout > .content .description .list dd {
    font-size: 1.2rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block {
    padding: 3.2rem 2rem 4rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .block + .block {
    margin-top: 2.4rem;
    padding-top: 2.4rem;
    border-top: 0.1rem solid #d1ccc8;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .cta {
    font-size: 1.4rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .cta .price {
    font-size: 1.8rem;
    line-height: 1.75em;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .cta .middle {
    font-size: 1.4rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .cta-notes {
    font-size: 1rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .primary-button {
    padding: 1.2rem 1rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .primary-button + .primary-button {
    font-size: 1.6rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .primary-button > span {
    font-size: 1.2rem;
  }
  .reservation .reservation-plan .layout > .content .fade-filter {
    width: 2.4rem;
  }
  .reservation .reservation-plan .layout > .content .slider-inner {
    max-width: 28rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow::before {
    width: 3.2rem;
    height: 3.2rem;
    background-size: 2.4rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow.slick-prev {
    left: 1.7rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow.slick-next {
    right: 1.7rem;
  }
  .reservation .reservation-plan .layout > .content .dots-wrap li {
    width: 0.6rem;
    height: 0.6rem;
  }
  .reservation .reservations-clerk {
    padding: 6.4rem 1.6rem 9.6rem;
  }
  .reservation .reservations-clerk .head {
    margin-bottom: 2.4rem;
  }
  .reservation .reservations-clerk .head .en {
    font-size: 3.2rem;
  }
  .reservation .reservations-clerk .head .ja {
    font-size: 1.6rem;
  }
  .reservation .reservations-clerk .text {
    font-size: 1.4rem;
  }
  .reservation .reservations-clerk .tel {
    font-size: 2.8rem;
  }
  .reservation .reservations-clerk .tel a {
    font-size: 2.8rem;
  }
  .stay-plan {
    padding: 9.6rem 1.5rem;
  }
  .stay-plan .main-heading {
    margin-bottom: 3.2rem;
    font-size: 3.2rem;
  }
  .stay-plan .plan + .plan {
    margin-top: 6.4rem;
  }
  .stay-plan .plan.premier .decoration {
    display: none;
  }
  .stay-plan .plan.essential .decoration {
    display: none;
  }
  .stay-plan .decoration-text {
    font-size: 3.2rem;
  }
  .stay-plan .plan-content {
    position: relative;
  }
  .stay-plan .plan-number {
    font-size: 1.2rem;
  }
  .stay-plan .text-content {
    padding: 3.2rem 2rem 0;
    background-color: #e7e6e4;
  }
  .stay-plan .text-content > .img {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 2.4rem;
    overflow: hidden;
    border-radius: 0 3.2rem 0 3.2rem;
  }
  .stay-plan .sub-heading {
    font-size: 3.2rem;
  }
  .stay-plan .sub-text {
    font-size: 1.2rem;
  }
  .stay-plan .description {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }
  .stay-plan .description-list + .description-list {
    margin-top: 0.8rem;
  }
  .stay-plan .description-list dt {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
  .stay-plan .description-list dd {
    font-size: 1.2rem;
  }
  .stay-plan .product-container {
    padding: 2.4rem 2rem 3.2rem;
    background-color: #e7e6e4;
  }
  .stay-plan .introducing-product {
    margin-bottom: 2.4rem;
    padding: 2.4rem;
    border-radius: 0.8rem;
  }
  .stay-plan .introducing-product > .heading {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
  }
  .stay-plan .introducing-product .text-area {
    margin-bottom: 2.4rem;
  }
  .stay-plan .introducing-product .text {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .stay-plan .introducing-product .block-container {
    -webkit-box-pack: center;
            justify-content: center;
    gap: 0 1.6rem;
  }
  .stay-plan .introducing-product .block > .detail dt {
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
  }
  .stay-plan .introducing-product .block > .detail dd {
    font-size: 1rem;
  }
  .u-only-tablet-sp {
    display: block;
  }
  .u-only-tablet-pc {
    display: none;
  }
  .u-only-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .primary-button {
    font-size: 1.8rem;
  }
  .back-to-top {
    bottom: 3.4rem;
    width: 8rem;
    height: 8rem;
    font-size: 1.8rem;
  }
  .back-to-top .img {
    width: 2.4rem;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  *:focus-visible {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
  }
  .wrap {
    overflow: hidden;
  }
  .footer {
    padding-top: 8rem;
  }
  .footer .list {
    max-width: 96rem;
    margin: 0 auto 4rem;
    padding-left: 3rem;
  }
  .footer .list-item {
    font-size: 1.4rem;
  }
  .footer .link {
    padding: 4rem 0 2.4rem;
    font-size: 1.2rem;
  }
  .footer .link .link-item {
    line-height: 1.75em;
  }
  .footer .link a {
    padding: 0 1.6rem;
    line-height: 1.75em;
  }
  .footer small {
    padding: 2.4rem 0;
    font-size: 1.4rem;
  }
  .about-essential-trabel .heading {
    margin-bottom: 6.4rem;
    font-size: 4.8rem;
  }
  .about-essential-trabel .text {
    margin-bottom: 5.6rem;
    font-size: 1.6rem;
  }
  .about-essential-trabel .blank-link {
    font-size: 1.6rem;
  }
  .about-hanro .heading {
    margin-bottom: 6.4rem;
    font-size: 4.8rem;
  }
  .about-hanro .text {
    margin-bottom: 5.6rem;
    font-size: 1.6rem;
  }
  .about-hanro .blank-link {
    font-size: 1.6rem;
  }
  .hanro .bg::before {
    height: 60rem;
    background-image: url("../images/hanro/bg-amenity.jpg");
  }
  .hanro .wrapper {
    padding: 40rem 0 16rem;
  }
  .hanro .layout {
    padding: 0 1.5rem;
  }
  .hanro .amenity {
    border-radius: 4rem;
  }
  .hanro .amenity .main-hgroup {
    margin-bottom: 2.4rem;
  }
  .hanro .amenity .main-heading .decoration::before, .hanro .amenity .main-heading .decoration::after {
    max-width: min(13vw, 19rem);
  }
  .hanro .amenity .main-heading .heading {
    font-size: 4.8rem;
    line-height: 1.5em;
  }
  .hanro .amenity .sub-text {
    font-size: 1.4rem;
  }
  .hanro .amenity .sub-heading-en {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
  .hanro .amenity .sub-heading-ja {
    font-size: 1.2rem;
  }
  .hanro .amenity .sub-content .block {
    grid-template-columns: min(100%, 17.6rem) 1fr;
    gap: 1.6rem;
  }
  .hanro .amenity .sub-content .text {
    font-size: 1.4rem;
  }
  .hanro .about {
    border-radius: 4rem;
  }
  .hanro .about .main-heading .decoration::before, .hanro .about .main-heading .decoration::after {
    max-width: min(13vw, 23rem);
  }
  .hanro .about .main-heading .heading {
    font-size: 4.8rem;
    line-height: 1.5em;
  }
  .hanro .about .about-content-robe .sub-heading-en,
  .hanro .about .about-content-inner-wear .sub-heading-en {
    font-size: 2.4rem;
  }
  .hanro .about .about-content-robe .sub-heading-ja,
  .hanro .about .about-content-inner-wear .sub-heading-ja {
    font-size: 1.2rem;
  }
  .hanro .about .about-content-inner-wear .text {
    grid-area: text-area;
  }
  .hanro .slider-wrapper {
    bottom: -10rem;
  }
  .hanro .slider-inner {
    max-width: 30rem;
    margin: 0 3.2rem;
  }
  .intro {
    background-image: url(../images/intro/bg-image.jpg);
  }
  .intro .heading {
    font-size: 2.5rem;
  }
  .intro .text {
    font-size: 1.5rem;
  }
  .intro .slider-wrapper {
    bottom: -10rem;
  }
  .intro .slider-inner {
    max-width: 30rem;
    margin: 0 3.2rem;
  }
  .kv {
    background-image: url(../images/kv/bg-image.jpg);
  }
  .kv .content img {
    max-width: 100%;
  }
  .kv .title {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
    text-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.2509803922);
  }
  .kv .sub-title {
    font-size: 1.6rem;
    text-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.2509803922);
  }
  .kv .datetime time {
    font-size: 4rem;
    text-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
  }
  .kv .datetime span {
    font-size: 4rem;
  }
  .kv .primary-button {
    max-width: 32rem;
    font-size: 1.8rem;
  }
  .logo-area {
    grid-template-columns: 8.7rem 2.8rem 11.6rem 2.8rem 18rem;
    margin: 3.4rem;
    gap: 0 4.8rem;
  }
  .reservation .reservation-plan {
    padding-top: 20rem;
  }
  .reservation .reservation-plan hgroup {
    margin-bottom: 6.4rem;
  }
  .reservation .reservation-plan .title {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
  }
  .reservation .reservation-plan .sub-title {
    font-size: 1.6rem;
  }
  .reservation .reservation-plan .logo {
    max-width: 43.4rem;
  }
  .reservation .reservation-plan .datetime {
    margin-bottom: 4.8rem;
  }
  .reservation .reservation-plan .datetime time {
    font-size: 4rem;
  }
  .reservation .reservation-plan .datetime span {
    font-size: 4rem;
  }
  .reservation .reservation-plan .layout {
    max-width: 111rem;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .reservation .reservation-plan .layout > .content {
    border-radius: 2.4rem;
  }
  .reservation .reservation-plan .layout > .content .heading-group {
    padding: 6.4rem 6.4rem 2.4rem;
  }
  .reservation .reservation-plan .layout > .content .heading-group .inner {
    padding-left: 2rem;
    border-left: 0.4rem #aca497 solid;
  }
  .reservation .reservation-plan .layout > .content .heading-en {
    font-size: 4rem;
  }
  .reservation .reservation-plan .layout > .content .heading-ja {
    font-size: 1.6rem;
  }
  .reservation .reservation-plan .layout > .content .description {
    padding: 2.4rem 6.4rem 4rem;
  }
  .reservation .reservation-plan .layout > .content .description .inner {
    padding: 2.4rem 4rem;
  }
  .reservation .reservation-plan .layout > .content .description .list dt {
    min-width: 7.3rem;
    font-size: 1.6rem;
  }
  .reservation .reservation-plan .layout > .content .description .list dd {
    font-size: 1.6rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .cta {
    font-size: 1.6rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .cta .middle {
    font-size: 1.6rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .cta-notes {
    font-size: 1.2rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .primary-button + .primary-button {
    font-size: 1.8rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .primary-button > span {
    margin-bottom: 0.4rem;
    font-size: 1.4rem;
  }
  .reservation .reservation-plan .layout > .content .fade-filter {
    width: 12.4rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow {
    width: 4.8rem;
    height: 4.8rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow::before {
    width: 4.8rem;
    height: 4.8rem;
    background-size: 3.2rem;
  }
  .reservation .reservation-plan .layout > .content .dots-wrap li {
    bottom: -4rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .reservation .reservations-clerk {
    padding: 12rem 0;
  }
  .reservation .reservations-clerk .head {
    margin-bottom: 3.8rem;
  }
  .reservation .reservations-clerk .head .en {
    font-size: 4.8rem;
  }
  .reservation .reservations-clerk .head .ja {
    font-size: 2.4rem;
  }
  .reservation .reservations-clerk .text {
    font-size: 1.8rem;
  }
  .reservation .reservations-clerk .tel {
    font-size: 4rem;
  }
  .reservation .reservations-clerk .tel a {
    font-size: 4rem;
  }
  .stay-plan .plan + .plan {
    margin-top: 8rem;
  }
  .stay-plan .decoration-text {
    font-size: 5.6rem;
  }
  .stay-plan .plan-number {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
  }
  .stay-plan .sub-heading {
    font-size: 4rem;
  }
  .stay-plan .sub-text {
    font-size: 1.2rem;
  }
  .stay-plan .description {
    font-size: 1.6rem;
  }
  .stay-plan .description-list + .description-list {
    margin-top: 2.4rem;
  }
  .stay-plan .description-list dt {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
  }
  .stay-plan .description-list dd {
    font-size: 1.6rem;
  }
  .stay-plan .primary-button {
    max-width: 40rem;
    margin: 2.4rem auto 0;
  }
  .stay-plan .introducing-product .block > .detail dt {
    font-size: 1.4rem;
  }
  .stay-plan .introducing-product .block > .detail dd {
    font-size: 1.2rem;
  }
  .stay-plan .introducing-product .detail-block-pc > .detail dt {
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  .stay-plan .introducing-product .detail-block-pc > .detail dd {
    font-size: 1.2rem;
    line-height: 1.75em;
    letter-spacing: 0.05em;
  }
  .stay-plan .introducing-product .notes {
    grid-area: notes;
  }
  .u-only-sp {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .primary-button:hover, .primary-button:active {
    background-image: url(../images/common/icon-button-hover.svg);
    background-position: center right 0.5rem;
    background-color: #ffffff;
    color: #7b3539;
  }
  .back-to-top:hover, .back-to-top:active {
    background-color: #8e5054;
  }
  .footer .list-item a:hover, .footer .list-item a:active {
    opacity: 0.7;
  }
  .footer .link a:hover, .footer .link a:active {
    text-decoration: underline;
  }
  .about-essential-trabel .blank-link:hover, .about-essential-trabel .blank-link:active {
    opacity: 0.7;
  }
  .about-hanro .blank-link:hover, .about-hanro .blank-link:active {
    opacity: 0.7;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow:hover::before, .reservation .reservation-plan .layout > .content .slick-arrow:active::before {
    background-image: url(../images/reservation/slider-arrow-white.svg);
    background-color: #7b3539;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-essential-trabel {
    padding: 9.6rem 3.2rem;
  }
  .about-essential-trabel .heading {
    margin-bottom: 3.2rem;
  }
  .about-essential-trabel .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    display: -webkit-box;
    display: flex;
            flex-direction: column-reverse;
  }
  .about-essential-trabel .blank-link-wrap {
    text-align: center;
  }
  .about-essential-trabel .img {
    max-width: 36rem;
    margin: 0 auto 4rem;
  }
  .about-hanro {
    padding: 9.6rem 3.2rem;
  }
  .about-hanro .heading {
    margin-bottom: 3.2rem;
  }
  .about-hanro .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    display: -webkit-box;
    display: flex;
            flex-direction: column-reverse;
  }
  .about-hanro .blank-link-wrap {
    text-align: center;
  }
  .about-hanro .img {
    max-width: 36rem;
    margin: 0 auto 4rem;
  }
  .hanro .amenity {
    padding: 4rem 2rem;
  }
  .hanro .amenity .amenity-content {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "main-hgroup" "sub-hgroup" "image-block" "text-area";
  }
  .hanro .amenity .img-block .img + .img {
    margin-top: 1.6rem;
  }
  .hanro .amenity .sub-content {
    margin-top: 2.4rem;
  }
  .hanro .amenity .sub-content .block + .block {
    margin-top: 3.2rem;
  }
  .hanro .about {
    padding: 4rem 2rem;
  }
  .hanro .about .main-heading {
    margin-bottom: 2.4rem;
  }
  .hanro .about .about-content-robe {
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "heading-group" "image-block" "text-area";
    margin-bottom: 4rem;
    gap: 1.6rem;
  }
  .hanro .about .about-content-robe .img-block {
    -webkit-box-pack: center;
            justify-content: center;
    gap: 0.8rem;
  }
  .hanro .about .about-content-inner-wear .img-block + .img-block {
    margin-top: 4rem;
  }
  .hanro .about .about-content-inner-wear .heading-group {
    margin-bottom: 1.6rem;
  }
  .hanro .about .about-content-inner-wear .img {
    max-width: 24rem;
    margin: 0 auto 1.6rem;
  }
  .intro .content {
    padding: 0 0 18rem;
  }
  .intro .img {
    margin-bottom: 3.2rem;
  }
  .intro .heading {
    margin-bottom: 3.2rem;
    padding: 0 1.6rem;
  }
  .intro .text {
    padding: 0 1.6rem;
  }
  .kv {
    background-image: url(../images/kv/bg-image-tab.jpg);
  }
  .reservation .reservation-plan .layout > .content .heading-group {
    padding: 4rem 2.4rem 2.4rem 0;
  }
  .reservation .reservation-plan .layout > .content .description {
    padding: 1.4rem 2rem 0;
  }
  .reservation .reservation-plan .layout > .content .reservation-block {
    padding: 3.2rem 2rem 4rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .block + .block {
    margin-top: 2.4rem;
    padding-top: 2.4rem;
    border-top: 0.1rem solid #d1ccc8;
  }
  .reservation .reservation-plan .layout > .content .slider-inner {
    max-width: 70rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow.slick-prev {
    left: 1.7rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow.slick-next {
    right: 1.7rem;
  }
  .stay-plan {
    padding: 20rem 1.5rem 9.6rem;
  }
  .stay-plan .main-heading {
    margin-bottom: 3.2rem;
    font-size: 5.6rem;
  }
  .stay-plan .plan + .plan {
    margin-top: 6.4rem;
  }
  .stay-plan .plan.premier .decoration {
    display: none;
  }
  .stay-plan .plan.essential .decoration {
    display: none;
  }
  .stay-plan .plan-content {
    position: relative;
  }
  .stay-plan .text-content {
    padding: 3.2rem 2rem 0;
    background-color: #e7e6e4;
  }
  .stay-plan .text-content > .img {
    width: 100%;
    margin: 0 auto 2.4rem;
    overflow: hidden;
    border-radius: 0 3.2rem 0 3.2rem;
  }
  .stay-plan .description {
    margin-top: 1.6rem;
  }
  .stay-plan .product-container {
    padding: 2.4rem 2rem 3.2rem;
    background-color: #e7e6e4;
  }
  .stay-plan .introducing-product {
    margin-bottom: 2.4rem;
    padding: 2.4rem;
    border-radius: 0.8rem;
  }
  .stay-plan .introducing-product > .heading {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
  }
  .stay-plan .introducing-product .text-area {
    margin-bottom: 2.4rem;
  }
  .stay-plan .introducing-product .text {
    font-size: 1.4rem;
  }
  .stay-plan .introducing-product .block-container {
    -webkit-box-pack: center;
            justify-content: center;
    gap: 0 1.6rem;
  }
  .u-only-tablet-sp {
    display: block;
  }
  .u-only-tablet-pc {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .about-essential-trabel {
    padding: 12rem 0;
  }
  .about-essential-trabel .block {
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    display: -webkit-box;
    display: flex;
            flex-direction: row-reverse;
            align-items: center;
            justify-content: center;
    gap: 0 8rem;
  }
  .about-essential-trabel .img {
    max-width: 36rem;
  }
  .about-hanro {
    padding: 12rem 0;
  }
  .about-hanro .block {
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
            align-items: center;
            justify-content: center;
    gap: 0 8rem;
  }
  .about-hanro .img {
    max-width: 36rem;
  }
  .hanro .layout {
    max-width: 123rem;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .hanro .amenity {
    padding: 8rem 0;
  }
  .hanro .amenity .amenity-content {
    width: min(80%, 96rem);
    margin: 0 auto;
  }
  .hanro .amenity .main-hgroup {
    margin-bottom: 3.2rem;
  }
  .hanro .amenity .main-heading {
    margin-bottom: 0.8rem;
  }
  .hanro .amenity .img-block {
    display: -webkit-box;
    display: flex;
    gap: 4rem;
  }
  .hanro .amenity .sub-content {
    display: grid;
    grid-template-columns: repeat(2, auto);
    width: min(80%, 96rem);
    margin: 5.6rem auto 0;
    gap: 0 3.2rem;
  }
  .hanro .about {
    padding: 8rem 0;
  }
  .hanro .about .main-heading {
    margin-bottom: 4rem;
  }
  .hanro .about .about-content {
    width: min(80%, 96rem);
    margin: 0 auto;
  }
  .hanro .about .about-content-robe {
    grid-template-rows: auto 1fr;
    grid-template-columns: minmax(0, 38.4rem) 1fr;
    grid-template-areas: "heading-group image-block" "text-area image-block";
    margin-bottom: 6.4rem;
    gap: 2.4rem 8rem;
  }
  .hanro .about .about-content-robe .img-block {
    -webkit-box-pack: justify;
            justify-content: space-between;
    max-width: 49.6rem;
    gap: 0 1.6rem;
  }
  .hanro .about .about-content-inner-wear {
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
            justify-content: center;
    gap: 8rem;
  }
  .hanro .about .about-content-inner-wear .img-block {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "image" "heading-group" "text-area";
    width: min(39.1%, 37.6rem);
  }
  .hanro .about .about-content-inner-wear .heading-group {
    grid-area: heading-group;
    margin-bottom: 2.4rem;
    text-align: center;
  }
  .hanro .about .about-content-inner-wear .img {
    grid-area: image;
    max-width: 24rem;
    margin: 0 auto;
    margin-bottom: 3.2rem;
  }
  .intro .content {
    -webkit-box-pack: center;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 48rem 1fr;
    grid-template-areas: "image heading" "image text-area";
            justify-content: center;
    max-width: 117rem;
    margin: 0 auto;
    padding: 13rem 1.6rem 18rem;
    gap: 3.2rem 7rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block {
    display: -webkit-box;
    display: flex;
    padding: 0 6.4rem 6.4rem;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .block {
    -webkit-box-flex: 1;
            flex: 1 0 0;
  }
  .reservation .reservation-plan .layout > .content .reservation-block .block + .block {
    margin-left: 4rem;
    padding-left: 4rem;
    border-left: 0.1rem solid #d1ccc8;
  }
  .reservation .reservation-plan .layout > .content .slider-inner {
    max-width: 80rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow.slick-prev {
    left: 11.7rem;
  }
  .reservation .reservation-plan .layout > .content .slick-arrow.slick-next {
    right: 11.7rem;
  }
  .stay-plan {
    padding: 20rem 0 16rem;
  }
  .stay-plan .main-heading {
    margin-bottom: 5.6rem;
    font-size: 5.6rem;
  }
  .stay-plan .plan.premier .inner {
    margin: -39.2rem 5.6rem 0;
  }
  .stay-plan .plan.premier .plan-content {
    grid-template-columns: 1fr min(50%, 46rem);
    grid-template-areas: "container image";
    gap: 3.2rem 5.6rem;
  }
  .stay-plan .plan.premier .decoration-position {
    height: 39.2rem;
    padding-right: 1.6rem;
  }
  .stay-plan .plan.essential .inner {
    margin: -44rem 5.6rem 0;
  }
  .stay-plan .plan.essential .plan-content {
    grid-template-columns: min(50%, 46rem) 1fr;
    grid-template-areas: "image container";
    gap: 3.2rem 5.6rem;
  }
  .stay-plan .plan.essential .decoration-position {
    height: 44rem;
    padding-right: 1.6rem;
  }
  .stay-plan .wrapper {
    max-width: 131rem;
    margin: 0 auto;
  }
  .stay-plan .decoration-position {
    -webkit-transform: rotate(-90deg);
    display: inline-block;
    z-index: 1;
    position: sticky;
    top: 0;
    left: 0;
    height: 5rem;
            transform: rotate(-90deg);
  }
  .stay-plan .inner {
    position: relative;
    max-width: 120rem;
    margin: 0 auto;
    padding: 8rem 0;
    border-radius: 0 10rem 0 10rem;
    background-color: #e7e6e4;
  }
  .stay-plan .plan-content {
    display: grid;
    max-width: min(86.6%, 104rem);
    margin: 0 auto 5.6rem;
  }
  .stay-plan .plan-content > .img {
    grid-area: image;
  }
  .stay-plan .plan-content > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: column;
            justify-content: space-between;
  }
  .stay-plan .text-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: column;
            justify-content: space-between;
  }
  .stay-plan .heading-group {
    margin-bottom: 2.4rem;
  }
  .stay-plan .primary-button {
    margin: 2.4rem 0 0;
  }
  .stay-plan .product-container {
    display: grid;
    max-width: min(86.6%, 104rem);
    margin: 0 auto;
  }
  .stay-plan .introducing-product {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "heading image" "text-area image" "notes image";
    padding: 5.6rem 6.4rem;
    gap: 0 4.8rem;
    border-radius: 4rem;
  }
  .stay-plan .introducing-product > .heading {
    grid-area: heading;
    margin-bottom: 1.4rem;
    font-size: 2rem;
  }
  .stay-plan .introducing-product .text-area {
    grid-area: text-area;
  }
  .stay-plan .introducing-product .text {
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  .stay-plan .introducing-product .block-container {
    grid-area: image;
    padding: 2rem 0;
    gap: 0 2.4rem;
  }
  .u-only-tablet-sp {
    display: none;
  }
  .u-only-tablet-pc {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */