@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #53514f;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}

a {
  color: #000;
  text-decoration: none;
}
a.linkText {
  color: #a790c4;
  text-decoration: underline;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

table {
  width: 100%;
  margin: 0 auto 60px;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 1em;
}

th {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  background-color: #eaedf5;
}

td {
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px solid #eee;
}

/* ////////////////// グーグルマップ用 ////////////////// */
/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:1099px) {
  .pc {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #container {
    max-width: 100%;
    overflow: hidden;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    height: 100px;
    background-color: #fff;
  }
  #header #logo {
    display: grid;
    place-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
  }
  #header #logo img {
    width: 100%;
    max-height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #header.fixed {
    -webkit-animation: show 0.5s ease 0s;
            animation: show 0.5s ease 0s;
    position: fixed;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  #header .language {
    position: relative;
    z-index: 100;
    height: 40px;
    margin: 0;
  }
  #header .language.active {
    display: block;
  }
  #header .language h2 {
    padding: 0 15px 0 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 40px;
    font-weight: bold;
    color: #777;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .language h2:hover {
    opacity: 0.8;
  }
  #header .language h2::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header .language .lang-list {
    display: none;
    list-style: none;
    position: absolute;
    top: 50px;
    right: -95px;
    z-index: 100;
    width: 100vw;
    max-width: 600px;
    background-color: #F8F9FA;
    -webkit-box-shadow: 0 2px 5px rgba(51, 51, 51, 0.3);
            box-shadow: 0 2px 5px rgba(51, 51, 51, 0.3);
  }
  #header .language .lang-list li:not(:last-child) {
    border-bottom: 1px solid #53514f;
  }
  #header .language .lang-list li a {
    display: block;
    padding: 1em;
    font-size: 12px;
    color: #53514f;
    line-height: 26px;
    text-align: center;
  }
  #header .header-rev {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 30px;
    padding: 1.125em;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    background-color: #4E3869;
    color: #fff;
    border: 1px solid #4E3869;
  }
  #header .header-rev::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .header-link-dp {
    display: grid;
    place-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 10px 25px 10px 30px;
    font-size: 16px;
    text-align: center;
    color: #a790c4;
    text-decoration: none;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-dp-p.svg), url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-blank-p.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px, 16px 12px;
    background-position: left center, right center;
  }
  #header .header-link-dp span {
    border-bottom: 1px solid #a790c4;
  }
  #headerTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 40px;
    padding: 0;
    background-color: #F5F7F8;
  }
  #headerTop .site-title {
    width: 100%;
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #777777;
    text-align: center;
    line-height: 40px;
  }
  #headerTop .language {
    display: none;
  }
  #headerTop .language.active {
    display: none;
  }
  #headerTop .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #headerTop .right .link {
    display: none;
  }
  #headerTop .sns {
    display: none;
  }
  #headerBottom {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 80px 0 4vw;
    height: 60px;
    background-color: #fff;
  }
  #headerBottom.fixed {
    -webkit-animation: show 0.5s ease 0s;
            animation: show 0.5s ease 0s;
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  #headerBottom > nav {
    display: none;
  }
  #headerRevSP {
    position: absolute;
    top: 0;
    right: 60px;
    width: 60px;
    height: 60px;
    font-size: 10px;
    line-height: 60px;
    text-align: center;
    background-color: #999999;
    color: #fff;
  }
  #hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #a790c4;
    color: #fff;
  }
  #hamburger div {
    position: relative;
    width: 25px;
    height: 16px;
    margin: 0 auto;
  }
  #hamburger i {
    position: relative;
    top: 0;
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #fff;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 2px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
  }
  #hamburger i:before {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
  #hamburger i:after {
    -webkit-transform: translate(0, 14px);
            transform: translate(0, 14px);
  }
  #hamburger span {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 100%;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 9px;
    font-weight: 600;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
  #hamburger.active {
    background-color: #fff;
  }
  #hamburger.active i {
    height: 0;
    background-color: #010037;
  }
  #hamburger.active i:before, #hamburger.active i:after {
    width: 34px;
    background-color: #010037;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-45deg) translate(-4px, -4px);
            transform: rotate(-45deg) translate(-4px, -4px);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(45deg) translate(-5px, 3px);
            transform: rotate(45deg) translate(-5px, 3px);
  }
  #hamburger.active span {
    color: #010037;
    bottom: 12px;
  }
  #hamburgerClose {
    background-color: #fff;
    cursor: pointer;
  }
  #hamburgerClose > div {
    position: relative;
    height: 40px;
  }
  #hamburgerClose i {
    top: 2px;
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #fff;
  }
  #hamburgerClose i:before, #hamburgerClose i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 2px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #a790c4;
  }
  #hamburgerClose i:before {
    -webkit-transform: rotate(-45deg) translate(-25px, 18px);
            transform: rotate(-45deg) translate(-25px, 18px);
  }
  #hamburgerClose i:after {
    -webkit-transform: rotate(45deg) translate(19px, 25px);
            transform: rotate(45deg) translate(19px, 25px);
  }
  #hamburgerClose span {
    width: 100%;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #a790c4;
    text-align: center;
  }
  #headerNav {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 500;
    width: 100vw;
    max-width: 600px;
    height: calc(100vh - 40px);
    padding: 0 4vw 35px;
    overflow-y: auto;
    background-color: #fff;
  }
  #headerNav.fixed {
    position: fixed;
    top: 0;
    z-index: 500;
    height: 100vh;
  }
  #headerNav.active {
    display: block;
  }
  #headerNav .nav-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 15px;
    margin-bottom: 30px;
  }
  #headerNav .nav-top .language {
    position: relative;
    margin-right: 80px;
  }
  #headerNav .nav-top #hamburgerClose {
    position: absolute;
    top: 0;
    right: 0;
  }
  #headerNav ul {
    list-style: none;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    color: #333333;
  }
  #headerNav ul a {
    display: block;
    color: #333333;
  }
  #headerNav .nav-main {
    background-color: #fff;
  }
  #headerNav .nav-main > li {
    border-bottom: 1px solid #cccccc;
  }
  #headerNav .nav-main > li:first-child {
    border-top: 1px solid #cccccc;
  }
  #headerNav .nav-main > li > a,
  #headerNav .nav-main > li > span {
    display: block;
    padding: 1em 0;
    font-weight: 500;
    cursor: pointer;
  }
  #headerNav .nav-main .parent {
    position: relative;
  }
  #headerNav .nav-main .parent > span {
    position: relative;
  }
  #headerNav .nav-main .parent > span::before, #headerNav .nav-main .parent > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 12px;
    height: 2px;
    background-color: #333;
  }
  #headerNav .nav-main .parent > span::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  #headerNav .nav-main .parent.active > span::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  #headerNav .nav-main .children {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    background-color: #F8F9FA;
    opacity: 0;
    border-top: 1px solid #cccccc;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #headerNav .nav-main .children.active {
    left: -480px;
    height: auto;
    padding: 15px 0;
    opacity: 1;
  }
  #headerNav .nav-main .children li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #headerNav .nav-main .children li a img {
    display: none;
  }
  #headerNav .nav-main .children li a span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 15px 1em;
  }
  #headerNav .nav-sub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - 1em), 1fr));
    gap: 1.5em 1em;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
  }
  #headerNav .nav-sub a[target=_blank] span {
    display: inline-block;
    padding-right: 18px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-blank.svg);
    background-repeat: no-repeat;
    background-size: 12px 10px;
    background-position: bottom 2px right;
  }
  #headerNav .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
  #headerNav .sns li:not(:last-child) {
    margin-right: 12px;
  }
  #floatReservation {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-calendar.png);
  }
  #frontReservation {
    max-width: 100%;
    margin-bottom: 120px;
    padding: 0;
  }
  #modalReservation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    place-items: center;
    width: 100vw;
    height: 100vh;
    padding: 30px 4vw;
    background-color: rgba(0, 0, 0, 0.3);
  }
  #modalReservation .wrapper {
    width: 100%;
    max-height: 100%;
    overflow: visible;
  }
  #modalReservation .modal-close {
    position: absolute;
    top: -20px;
    right: -4vw;
    display: block;
    width: 35px;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    pointer-events: none;
  }
  #modalReservation .modal-close::before, #modalReservation .modal-close::after {
    content: "";
    position: absolute;
    display: block;
    width: 45px;
    height: 3px;
    background-color: #fff;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  #modalReservation .modal-close:before {
    -webkit-transform: rotate(-45deg) translate(12px, -20px);
            transform: rotate(-45deg) translate(12px, -20px);
  }
  #modalReservation .modal-close:after {
    -webkit-transform: rotate(45deg) translate(-30px, -22px);
            transform: rotate(45deg) translate(-30px, -22px);
  }
  .reservation-form .wrapper {
    width: 92vw;
    max-height: 100%;
    overflow-y: auto;
    margin: 0 auto;
    padding: 0 4vw 30px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
    background-color: #4E3869;
  }
  .reservation-form .inner {
    position: relative;
    color: #fff;
  }
  .reservation-form .mega-menu {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 0;
    border-top: 1px solid #dfceb0;
  }
  .reservation-form .mega-menu ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 12px), 1fr));
    gap: 30px 12px;
  }
  .reservation-form .mega-menu ul li a {
    display: block;
    color: #fff;
  }
  .reservation-form .mega-menu ul li a span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
  }
  .reservation-form .mega-menu ul li a .img {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .reservation-form .mega-menu ul li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .reservation-form .mega-menu ul li a:hover {
    opacity: 0.8;
  }
  .reservation-form .rev-title {
    width: 100%;
    height: 70px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 70px;
    color: #fff;
    font-size: 0.875rem;
    border-bottom: 1px solid #fff;
  }
  .reservation-form .title {
    display: block;
    margin-bottom: 0.25em;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 2em;
  }
  .reservation-form input {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    padding: 10px 0.4rem;
  }
  .reservation-form input::-webkit-input-placeholder {
    color: #999999;
  }
  .reservation-form input::-moz-placeholder {
    color: #999999;
  }
  .reservation-form input:-ms-input-placeholder {
    color: #999999;
  }
  .reservation-form input::-ms-input-placeholder {
    color: #999999;
  }
  .reservation-form input::placeholder {
    color: #999999;
  }
  .reservation-form input:focus {
    outline: none;
  }
  .reservation-form .callendar,
  .reservation-form .guests {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }
  .reservation-form .callendar input,
  .reservation-form .guests input {
    width: 100%;
    background-color: #fff;
    color: #6E6E6E;
    border: none;
  }
  .reservation-form .callendar::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: inline-block;
    width: 18px;
    height: 18px;
    -webkit-mask-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-calendar.png);
            mask-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-calendar.png);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 15px auto;
            mask-size: 15px auto;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #6e6e6e;
    pointer-events: none;
  }
  .reservation-form .guests::after {
    content: "";
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: inline-block;
    width: 15px;
    height: 15px;
    -webkit-mask-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-guests.png);
            mask-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-guests.png);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 12px auto;
            mask-size: 12px auto;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #6e6e6e;
    pointer-events: none;
  }
  .reservation-form #modalGuestsModal,
  .reservation-form #frontGuestsModal {
    display: none;
    position: absolute;
    top: 71px;
    width: 100%;
    padding: 20px 15px;
    font-size: 14px;
    background-color: #fff;
    color: #53514f;
    border: 1px solid #cccccc;
  }
  .reservation-form #modalGuestsModal .num-select > div,
  .reservation-form #frontGuestsModal .num-select > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0 15px;
  }
  .reservation-form #modalGuestsModal .num-select dt span,
  .reservation-form #frontGuestsModal .num-select dt span {
    display: inline-block;
    margin-left: 12px;
  }
  .reservation-form #modalGuestsModal .num-select .btns,
  .reservation-form #frontGuestsModal .num-select .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 70px;
    padding-right: 10px;
  }
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusChild,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusChild,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusChild,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusChild,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusChild,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusChild,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusChild,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusChild {
    width: 25px;
    height: 25px;
    padding: 5px;
    background-repeat: no-repeat;
    background-position: top;
    cursor: pointer;
  }
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusAdult.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusAdult.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusChild.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusChild.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusAdult.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusAdult.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusChild.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusChild.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusAdult.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusAdult.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusChild.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusChild.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusAdult.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusAdult.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusChild.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusChild.disactive {
    background-position: center -25px;
  }
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusChild,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusChild,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusChild,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusChild {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-plus.png);
  }
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusChild,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusChild,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusChild,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusChild {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-minus.png);
  }
  .reservation-form #modalGuestsModal .modalAgeSelect,
  .reservation-form #modalGuestsModal .frontAgeSelect,
  .reservation-form #frontGuestsModal .modalAgeSelect,
  .reservation-form #frontGuestsModal .frontAgeSelect {
    padding: 20px 0 0;
    border-top: 1px solid #cccccc;
  }
  .reservation-form #modalGuestsModal .modalAgeSelect .age,
  .reservation-form #modalGuestsModal .frontAgeSelect .age,
  .reservation-form #frontGuestsModal .modalAgeSelect .age,
  .reservation-form #frontGuestsModal .frontAgeSelect .age {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 10px;
  }
  .reservation-form #modalGuestsModal .modalAgeSelect .select,
  .reservation-form #modalGuestsModal .frontAgeSelect .select,
  .reservation-form #frontGuestsModal .modalAgeSelect .select,
  .reservation-form #frontGuestsModal .frontAgeSelect .select {
    position: relative;
  }
  .reservation-form #modalGuestsModal .modalAgeSelect .select::after,
  .reservation-form #modalGuestsModal .frontAgeSelect .select::after,
  .reservation-form #frontGuestsModal .modalAgeSelect .select::after,
  .reservation-form #frontGuestsModal .frontAgeSelect .select::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 10px;
    border-top: 5px solid #53514f;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }
  .reservation-form #modalGuestsModal .modalAgeSelect .select select,
  .reservation-form #modalGuestsModal .frontAgeSelect .select select,
  .reservation-form #frontGuestsModal .modalAgeSelect .select select,
  .reservation-form #frontGuestsModal .frontAgeSelect .select select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    padding: 0.5em 42px 0.5em 0.4em;
    width: 100%;
    background-color: #eeeeee;
    border: 1px solid #cccccc;
    border-radius: 2px;
    font-size: 14px;
  }
  .reservation-form .btn-area #modalBtnReservation,
  .reservation-form .btn-area #frontBtnReservation {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 10px;
    font-size: 14px;
    text-align: center;
    background-color: #a790c4;
    color: #fff;
  }
  .reservation-form .btn-area .link-login {
    display: block;
    font-size: 0.75rem;
    color: #fff;
    text-align: center;
  }
  .reservation-form .btn-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    margin-top: 15px;
  }
  .reservation-form .btn-bottom .btn-dp {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    background-color: #999999;
    color: #fff;
  }
  .reservation-form .btn-bottom .btn-dp span {
    display: inline-block;
    padding: 15px 40px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-dp.svg), url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-blank-w.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px, 12px 10px;
    background-position: left 15px center, right 15px center;
  }
  /* カレンダー */
  .flatpickr-current-month span.cur-month,
  .flatpickr-current-month input.cur-year {
    font-size: 14px;
    font-weight: normal;
  }
  .flatpickr-current-month span.cur-month {
    margin-right: 10px;
  }
  span.flatpickr-weekday {
    font-size: 14px;
    font-weight: normal;
  }
  .flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
    border-radius: 10px 0 0 10px;
  }
  .flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
    border-radius: 0 10px 10px 0;
  }
  #footer {
    margin-top: 60px;
  }
  #footer .footer-top {
    max-width: 100%;
    margin: 0 auto;
  }
  #footer .footer-banner {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, 165px);
    gap: 13px 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 4vw;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
  }
  #footer .footer-banner li a {
    display: block;
  }
  #footer .footer-nav {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 65px 2vw 30px;
  }
  #footer .footer-nav li {
    width: 50%;
    margin-bottom: 1.5em;
    font-size: 12px;
    font-weight: 200;
    font-family: "Noto Serif JP", serif;
    line-height: 1em;
  }
  #footer .footer-nav li:nth-child(odd) a {
    border-right: 1px solid #cccccc;
  }
  #footer .footer-nav li a {
    display: block;
    padding: 0.35em 0.25em;
    text-align: center;
  }
  #footer .footer-bottom {
    padding: 30px 4vw 70px;
    background-color: #53524F;
  }
  #footer .footer-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }
  #footer .footer-title img {
    width: 65px;
  }
  #footer .blands {
    margin-bottom: 35px;
  }
  #footer .blands h2:not(:last-child) {
    margin-bottom: 25px;
  }
  #footer .blands h2.grand img {
    width: 170px;
  }
  #footer .blands h2.mercure img {
    width: 105px;
  }
  #footer .footer-acrd {
    display: block;
    margin-bottom: 0;
    padding: 0.75em;
    font-size: 12px;
    color: #fff;
    text-align: center;
    border: 1px solid #fff;
    font-family: "Noto Serif JP", serif;
  }
  #footer .footer-acrd.active {
    color: #010037;
    background-color: #eaedf5;
  }
  #footer .footer-hotels {
    display: none;
    width: 100%;
    padding-top: 30px;
    margin: 0 auto;
  }
  #footer .footer-hotels .area {
    padding: 0 0 30px;
  }
  #footer .footer-hotels .area:last-child {
    padding-bottom: 0;
  }
  #footer .footer-hotels .area .area-title {
    margin-bottom: 1.25em;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }
  #footer .footer-hotels .area ul {
    list-style: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
  }
  #footer .footer-hotels .area ul li {
    display: block;
    margin: 5px 0 15px;
    padding: 0 20px 0 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5em;
  }
  #footer .footer-hotels .area ul li a {
    color: #fff;
  }
  #footer .footer-hotels .area ul li a:hover {
    opacity: 0.8;
  }
  #footer .footer-sns {
    padding: 30px 4vw;
    background-color: #010037;
  }
  #footer .footer-sns a {
    display: inline-block;
    width: 25px;
    margin: 0 8px;
  }
  #footer .copyright {
    margin: 0;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    color: #53514f;
    text-align: center;
    line-height: 1em;
  }
  #footer .copyright small {
    font-size: 11px;
  }
  .wysiwyg {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4vw;
    word-break: break-all;
    overflow-wrap: break-word;
  }
  .wysiwyg .post-title {
    margin-bottom: 10px;
    padding: 0 0 0.5em;
    font-size: 20px;
    line-height: 1.5em;
    border-bottom: 1px solid #010037;
  }
  .wysiwyg .date {
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #a790c4;
    text-align: right;
    letter-spacing: 0.1em;
  }
  .wysiwyg h2 {
    margin-bottom: 1em;
    font-size: 18px;
  }
  .wysiwyg h2.title-block {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .wysiwyg h3 {
    margin-bottom: 1em;
    font-size: 16px;
  }
  .wysiwyg p {
    font-size: 13px;
  }
  .wysiwyg ol,
  .wysiwyg ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
  }
  .wysiwyg ol li,
  .wysiwyg ul li {
    margin-bottom: 0.5em;
  }
  .wysiwyg ol li ol,
  .wysiwyg ol li ul,
  .wysiwyg ul li ol,
  .wysiwyg ul li ul {
    margin: 1em 0;
    padding-left: 1.5em;
  }
  .wysiwyg .col2,
  .wysiwyg .col2-rev,
  .wysiwyg .col2-half,
  .wysiwyg .only-text {
    margin-bottom: 60px;
    padding: 0 4vw;
  }
  .wysiwyg .col2:first-child,
  .wysiwyg .col2-rev:first-child,
  .wysiwyg .col2-half:first-child,
  .wysiwyg .only-text:first-child {
    margin-top: 0;
  }
  .wysiwyg .col2:last-child,
  .wysiwyg .col2-rev:last-child,
  .wysiwyg .col2-half:last-child,
  .wysiwyg .only-text:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2 p:last-child,
  .wysiwyg .col2-rev p:last-child,
  .wysiwyg .col2-half p:last-child,
  .wysiwyg .only-text p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2 .inner .img,
  .wysiwyg .col2-rev .inner .img {
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .wysiwyg .col2 .inner .text,
  .wysiwyg .col2-rev .inner .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .wysiwyg .col2-half > div {
    margin-bottom: 1.5em;
  }
  .wysiwyg .col2-half > div:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2-half > div p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2-half > div.img {
    text-align: center;
  }
  /* -------- Swiper ページタイトル --------*/
  .page-header #swiper-pagetitle {
    position: relative;
  }
  .page-header #swiper-pagetitle::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    height: 66vw;
    max-height: 400px;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .page-header #swiper-pagetitle .swiper-wrapper {
    height: 66vw;
    max-height: 400px;
    overflow: hidden;
  }
  .page-header #swiper-pagetitle .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .page-header #swiper-pagetitle .pt-pagination {
    position: absolute;
    z-index: 99;
    bottom: 10px;
    left: 0;
    text-align: center;
  }
  .page-header #swiper-pagetitle .pt-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-radius: 0;
  }
  .page-header #swiper-pagetitle .pt-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .page-header #swiper-pagetitle .page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    margin: 0 auto;
    padding: 100px 4vw;
    line-height: 20px;
    color: #fff;
  }
  .page-header #swiper-pagetitle .page-title b {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(24px, 8.5vw, 36px);
    font-weight: 600;
    line-height: 1.25em;
    letter-spacing: 0.05em;
  }
  .page-header #swiper-pagetitle .page-title b.mb2 {
    margin-bottom: 20px;
  }
  .page-header #swiper-pagetitle .page-title small {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  .section-restaurant-plan,
  .section-room-plan,
  .section-sightseeing-plan {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
    margin: 0 auto 60px;
    padding: 60px 4vw;
    background-color: #fcfaf7;
  }
  .section-restaurant-plan #restaurant-plan,
  .section-room-plan #restaurant-plan,
  .section-sightseeing-plan #restaurant-plan {
    width: 100%;
    height: auto;
    padding-right: 20px;
    overflow-x: hidden;
  }
  .section-restaurant-plan .inner,
  .section-room-plan .inner,
  .section-sightseeing-plan .inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  .section-restaurant-plan .text .section-title,
  .section-room-plan .text .section-title,
  .section-sightseeing-plan .text .section-title {
    margin-bottom: 30px;
  }
  .section-restaurant-plan .slider-nav,
  .section-room-plan .slider-nav,
  .section-sightseeing-plan .slider-nav {
    width: 115px;
    margin: 30px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-restaurant-plan .slider-nav .button-prev,
  .section-restaurant-plan .slider-nav .button-next,
  .section-room-plan .slider-nav .button-prev,
  .section-room-plan .slider-nav .button-next,
  .section-sightseeing-plan .slider-nav .button-prev,
  .section-sightseeing-plan .slider-nav .button-next {
    position: relative;
    width: 25px;
    height: 25px;
    border: 2px solid #a790c4;
    border-radius: 50%;
  }
  .section-restaurant-plan .slider-nav .button-prev::before,
  .section-restaurant-plan .slider-nav .button-next::before,
  .section-room-plan .slider-nav .button-prev::before,
  .section-room-plan .slider-nav .button-next::before,
  .section-sightseeing-plan .slider-nav .button-prev::before,
  .section-sightseeing-plan .slider-nav .button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #a790c4;
    border-bottom: 2px solid #a790c4;
  }
  .section-restaurant-plan .slider-nav .button-prev::before,
  .section-room-plan .slider-nav .button-prev::before,
  .section-sightseeing-plan .slider-nav .button-prev::before {
    -webkit-transform: translate(calc(-50% + 2px), -50%) rotate(135deg);
            transform: translate(calc(-50% + 2px), -50%) rotate(135deg);
  }
  .section-restaurant-plan .slider-nav .button-next::before,
  .section-room-plan .slider-nav .button-next::before,
  .section-sightseeing-plan .slider-nav .button-next::before {
    -webkit-transform: translate(calc(-50% - 1px), -50%) rotate(-45deg);
            transform: translate(calc(-50% - 1px), -50%) rotate(-45deg);
  }
  .section-restaurant-plan .swiper-wrapper .swiper-slide,
  .section-room-plan .swiper-wrapper .swiper-slide,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide {
    width: 300px;
    margin-right: 15px;
  }
  .section-restaurant-plan .swiper-wrapper .swiper-slide img,
  .section-room-plan .swiper-wrapper .swiper-slide img,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 20px;
  }
  .section-restaurant-plan .swiper-wrapper .swiper-slide ul,
  .section-room-plan .swiper-wrapper .swiper-slide ul,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide ul {
    list-style: none;
    margin-bottom: 10px;
  }
  .section-restaurant-plan .swiper-wrapper .swiper-slide ul li,
  .section-room-plan .swiper-wrapper .swiper-slide ul li,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide ul li {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 30px;
    font-size: 10px;
    color: #a790c4;
    border: 1px solid #a790c4;
  }
  .section-restaurant-plan .swiper-wrapper .swiper-slide h3,
  .section-room-plan .swiper-wrapper .swiper-slide h3,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide h3 {
    font-size: 14px;
    font-weight: normal;
    color: #53514f;
    line-height: 1.75em;
  }
  .page-header .inner {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
  .page-header .inner.with-bg {
    padding: 20px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    border-top: none;
  }
  .page-header .inner .page-title {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 85px 4vw 75px;
    font-size: 45px;
    line-height: 20px;
  }
  .page-header .inner .page-title b {
    display: block;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .page-header .inner .page-title small {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.1em;
  }
  /* -------- 宿泊プラン --------*/
  .archive-plan {
    width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
  }
  #plan-tab {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow-x: auto;
    margin: 0 auto 10px;
    padding-bottom: 10px;
  }
  #plan-tab li {
    min-width: 120px;
    margin-right: 10px;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #010037;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    cursor: pointer;
  }
  #plan-tab li.active, #plan-tab li:hover {
    background-color: #010037;
    color: #fff;
  }
  .plan-tab-memo {
    font-size: 0.75rem;
    color: #53514f;
  }
  .plan-wrapper {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, 48%);
    gap: 30px 4%;
    margin: 30px auto 60px;
    font-size: 14px;
  }
  .plan-wrapper .card a {
    display: block;
  }
  .plan-wrapper .card img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 10px;
  }
  .plan-wrapper .card .cats {
    list-style: none;
    margin-bottom: 10px;
    color: #53514f;
    border: 1px solid #cccccc;
    text-align: center;
  }
  .plan-wrapper .card .cats li {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 300;
  }
  .plan-wrapper .card .plan-name {
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.5em;
  }
  .single-plan {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .single-plan .plan-title {
    margin-bottom: 50px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .single-plan .plan-mv {
    margin-bottom: 40px;
    text-align: center;
  }
  .single-plan .plan-intro {
    margin-bottom: 60px;
    color: #53514f;
  }
  .single-plan .plan-intro .subtitle {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: normal;
  }
  .single-plan .plan-intro p:last-child {
    margin-bottom: 0;
  }
  .single-plan .plan-sectitle {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-plan .plan-data {
    margin-bottom: 80px;
    color: #53514f;
    font-size: 14px;
  }
  .single-plan .plan-data dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #cccccc;
    padding: 20px 0;
  }
  .single-plan .plan-data dl dt {
    width: 100px;
  }
  .single-plan .plan-data dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .single-plan .plan-col2 {
    margin-bottom: 60px;
  }
  .single-plan .plan-col2.border {
    margin: 40px auto;
    padding: 40px 0;
    border-bottom: 3px solid #cccccc;
  }
  .single-plan .plan-col2.border:first-of-type {
    border-top: 3px solid #cccccc;
  }
  .single-plan .plan-col2.border > h3 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    text-align: center;
  }
  .single-plan .plan-col2.border > h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #a790c4;
  }
  .single-plan .plan-col2.border .item:not(:last-child) {
    margin-bottom: 40px;
  }
  .single-plan .plan-col2.border .btn {
    margin-top: 30px;
  }
  .single-plan .plan-col2 .inner {
    padding-top: 20px;
    margin-bottom: 50px;
  }
  .single-plan .plan-col2 .item {
    max-width: 400px;
    margin: 0 auto 30px;
    color: #53514f;
  }
  .single-plan .plan-col2 .item img {
    width: 400px;
  }
  .single-plan .plan-col2 .item .text {
    padding: 20px 0 0;
  }
  .single-plan .plan-col2 .item .text h4 {
    margin-bottom: 1em;
    font-size: 1rem;
    font-weight: normal;
  }
  .single-plan .plan-col2 .item .text p {
    font-size: 14px;
  }
  .single-plan .plan-wysiwyg {
    padding: 30px 0 0;
    color: #53514f;
    border-top: 1px solid #cccccc;
  }
  .single-plan .plan-note {
    padding: 20px;
    border-top: 1px solid #cccccc;
    color: #53514f;
  }
  .single-plan .plan-note p {
    font-size: 0.75rem;
  }
  #planModal,
  #sightseeingModal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    place-items: center;
    height: 100%;
    padding: 50px 5vw;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
  }
  #planModal img,
  #sightseeingModal img {
    width: 100%;
    max-width: 800px;
  }
  #planModal .close,
  #sightseeingModal .close {
    position: absolute;
    top: 80px;
    right: 4vw;
    z-index: 100;
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
  }
  #planModal .close::before, #planModal .close::after,
  #sightseeingModal .close::before,
  #sightseeingModal .close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 25px;
    height: 1px;
    background-color: #fff;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  #planModal .close::before,
  #sightseeingModal .close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #planModal .close::after,
  #sightseeingModal .close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /* -------- アクセス --------*/
  .page-access .access-intro {
    width: 100%;
    margin: 0 auto 100px;
    color: #53514f;
  }
  .page-access .access-intro > .text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 0 4vw;
  }
  .page-access .access-intro > .text p {
    font-size: 0.875rem;
  }
  .page-access .access-intro .gmap {
    margin-bottom: 60px;
  }
  .page-access .access-intro .gmap iframe {
    width: 100%;
    height: 250px;
  }
  .page-access .access-intro .address {
    margin-bottom: 50px;
  }
  .page-access .access-intro .address .img {
    margin-bottom: 30px;
    padding: 0 12vw;
    text-align: center;
  }
  .page-access .access-intro .address .text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0 4vw;
    font-size: 0.875rem;
    line-height: 1.875em;
  }
  .page-access .access-route {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto;
    color: #53514f;
  }
  .page-access .access-route #access-tab {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    margin-bottom: 45px;
    font-size: 0.75rem;
    border-top: 1px solid #010037;
    border-left: 1px solid #010037;
    letter-spacing: -0.1em;
  }
  .page-access .access-route #access-tab li {
    padding: 15px 2vw;
    text-align: center;
    color: #010037;
    border-right: 1px solid #010037;
    border-bottom: 1px solid #010037;
  }
  .page-access .access-route #access-tab li.active {
    background-color: #010037;
    color: #fff;
  }
  .page-access .access-route .route-wrapper .route-info {
    display: none;
  }
  .page-access .access-route .route-wrapper .route-info.active {
    display: block;
  }
  .page-access .access-route .route-wrapper h2,
  .page-access .access-route .route-wrapper h3 {
    font-weight: 400;
    color: #a790c4;
  }
  .page-access .access-route .route-wrapper h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-access .access-route .route-wrapper h3 {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .page-access .access-route .route-wrapper h3::before {
    content: "◯";
  }
  .page-access .access-route .route-wrapper a {
    color: #a790c4;
    text-decoration: underline;
  }
  .page-access .access-route .route-wrapper .inner {
    margin-bottom: 50px;
  }
  .page-access .access-route .route-wrapper .inner .img {
    text-align: center;
  }
  .page-access .access-route .route-wrapper .inner .img img {
    width: 580px;
    margin-bottom: 40px;
  }
  .page-access .access-route .route-wrapper .inner .text {
    margin-bottom: 30px;
  }
  .page-access .access-route .route-wrapper .inner dl {
    border-top: 1px solid #cccccc;
    font-size: 0.875rem;
  }
  .page-access .access-route .route-wrapper .inner dl > div {
    border-bottom: 1px solid #cccccc;
  }
  .page-access .access-route .route-wrapper .inner dl dt {
    padding: 10px 15px;
    font-size: 0.875rem;
    font-weight: 400;
    background-color: #f9f5ef;
  }
  .page-access .access-route .route-wrapper .inner dl dt small {
    font-size: 0.75rem;
  }
  .page-access .access-route .route-wrapper .inner dl dd {
    padding: 20px 0 30px;
  }
  .page-access .access-route .route-wrapper .inner dl dd p {
    margin-bottom: 1em;
    font-size: 0.875rem;
  }
  .page-access .access-route .route-wrapper .inner dl dd p:last-child {
    margin-bottom: 0;
  }
  .page-access .access-route .route-wrapper .inner dl dd p small {
    font-size: 0.75rem;
  }
  .page-access .access-route .route-wrapper .inner .col2 table {
    margin: 0 auto 60px;
  }
  .page-access .access-route .route-wrapper .inner .col2 table th,
  .page-access .access-route .route-wrapper .inner .col2 table td {
    text-align: center;
    padding: 0.75em 2em;
  }
  .page-access .access-route .route-wrapper .memo {
    margin: 0 auto;
    font-size: 14px;
  }
  .page-access .access-route .route-wrapper .memo p {
    font-size: 0.875rem;
  }
  /* -------- 客室 --------*/
  .page-rooms {
    color: #53514f;
  }
  .page-rooms .rooms-intro {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto 50px;
  }
  .page-rooms .rooms-intro p {
    font-size: 0.875rem;
  }
  .page-rooms #rooms-tab {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    width: 90%;
    margin: 0 auto 45px;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    border: 1px solid #a790c4;
  }
  .page-rooms #rooms-tab li {
    padding: 10px;
    text-align: center;
    color: #a790c4;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
  }
  .page-rooms #rooms-tab li:not(:last-child) {
    border-right: 1px solid #a790c4;
  }
  .page-rooms #rooms-tab li.active {
    background-color: #a790c4;
    color: #fff;
  }
  .page-rooms .rooms-wrapper {
    display: none;
    width: 100%;
    margin: 0 auto;
  }
  .page-rooms .rooms-wrapper.active {
    display: block;
  }
  .page-rooms .rooms-wrapper .wysiwyg-rooms {
    width: 100%;
    margin-top: 80px;
    padding: 0 4vw;
  }
  .page-rooms .rooms-wrapper .wysiwyg-rooms h3 {
    font-size: 1rem;
  }
  .page-rooms .rooms-wrapper .wysiwyg-rooms p {
    font-size: 0.875rem;
  }
  .page-rooms .rooms-wrapper .wysiwyg-rooms .col2,
  .page-rooms .rooms-wrapper .wysiwyg-rooms .col2-rev,
  .page-rooms .rooms-wrapper .wysiwyg-rooms .only-text,
  .page-rooms .rooms-wrapper .wysiwyg-rooms .col2-half {
    padding: 0;
  }
  .page-rooms .rooms-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 310px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px 23px;
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto;
  }
  .page-rooms .rooms-posts .card {
    background-color: #fff;
    color: #53514f;
  }
  .page-rooms .rooms-posts .card img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
  }
  .page-rooms .rooms-posts .card h3 {
    margin-bottom: 0.75em;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.75em;
  }
  .page-rooms .rooms-posts .card p {
    margin-bottom: 10px;
    font-size: 0.75rem;
  }
  .page-rooms .section-info {
    margin-top: 70px;
  }
  .section-facility {
    margin-top: 90px;
    padding: 0 4vw;
  }
  .section-facility .section-title {
    margin-bottom: 40px;
  }
  .section-facility .col2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 365px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px 15px;
    width: 100%;
    margin: 0 auto;
  }
  .section-facility .col2 .item img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    margin-bottom: 15px;
  }
  .section-facility .col2 .item .name {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #a790c4;
  }
  .section-facility .col2 .item p {
    font-size: 14px;
  }
  /* -------- プール・アクティビティ --------*/
  .page-activity {
    color: #53514f;
  }
  .page-activity .section-pool {
    padding: 60px 4vw 0;
    border-bottom: 1px solid #cccccc;
  }
  .page-activity .section-pool .section-title {
    margin-bottom: 30px;
  }
  .page-activity .section-pool .main-img {
    width: 100vw;
    margin: 0 0 30px -4vw;
    text-align: center;
  }
  .page-activity .section-pool .main-img img {
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-activity .section-pool .facility-data {
    margin-top: 0;
  }
  .page-activity .section-activity {
    width: 100%;
    margin: 0 auto 90px;
    padding: 80px 4vw 0;
  }
  .page-activity .section-activity .section-title {
    margin-bottom: 30px;
  }
  .page-activity .pool-intro {
    padding: 0;
  }
  .page-activity .pool-intro .subtitle {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5em;
    color: #a790c4;
    text-align: center;
  }
  .page-activity .pool-intro p {
    font-size: 14px;
  }
  .page-activity .pool-col2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 360px));
    gap: 40px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 80px;
  }
  .page-activity .pool-col2 figure img {
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .page-activity .pool-col2 figcaption {
    padding-top: 15px;
  }
  .page-activity .pool-col2 figcaption h3 {
    margin-bottom: 0.5em;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5em;
    color: #a790c4;
  }
  .page-activity .pool-col2 figcaption p {
    font-size: 14px;
  }
  .page-activity .pool-col2 figcaption p:last-child {
    margin-bottom: 0;
  }
  .page-activity .pool-col2 figcaption p.subtitle {
    font-size: 16px;
    margin-bottom: 0.5em;
  }
  /* Youtube 表示用 */
  .js-modal-video-open {
    position: relative;
    display: block;
    cursor: pointer;
  }
  .js-modal-video-open:hover {
    opacity: 0.8;
  }
  .js-modal-video-open::before, .js-modal-video-open::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    opacity: 1 !important;
  }
  .js-modal-video-open::before {
    width: 15px;
    height: 17.3205080757px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #f8d67e;
    margin-left: 2px;
  }
  .js-modal-video-open::after {
    width: 60px;
    height: 60px;
    border: 3px solid #f8d67e;
    border-radius: 50%;
  }
  #modal-video {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #modal-video.close {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    visibility: hidden;
  }
  #modal-video.open {
    -webkit-filter: opacity(1);
            filter: opacity(1);
    visibility: visible;
  }
  #modal-video iframe {
    width: 92vw;
    max-width: 800px;
  }
  .activity-archive {
    width: 100%;
    padding-top: 20px;
    margin: 0 auto 40px;
  }
  .activity-archive > h3 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .activity-archive .activity-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 360px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px 20px;
  }
  .activity-archive .card > img {
    width: 390px;
    height: 263px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 20px;
  }
  .activity-archive .card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
  }
  .activity-archive .card > p {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .activity-archive .card dl {
    margin: 25px 0 5px;
    font-size: 14px;
    border-bottom: 1px solid #cccccc;
  }
  .activity-archive .card dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 10px;
    border-top: 1px solid #cccccc;
  }
  .activity-archive .card dl dt {
    min-width: 60px;
    max-width: 50%;
  }
  .activity-archive .card dl dd {
    padding-left: 15px;
  }
  .activity-archive .tag,
  .activity-option .tag {
    list-style: none;
    text-align: center;
  }
  .activity-archive .tag li,
  .activity-option .tag li {
    display: inline-block;
    margin-right: 0.5em;
    font-size: 12px;
    color: #a790c4;
  }
  .activity-archive .tag li::before,
  .activity-option .tag li::before {
    content: "#";
  }
  .activity-option {
    width: 100%;
    margin: 0 auto;
    padding: 30px 4vw;
    background-color: #fdfbf7;
  }
  .activity-option > h2 {
    margin-bottom: 10px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .activity-option .option-wrapper {
    text-align: center;
  }
  .activity-option .option-wrapper .card {
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .activity-option .option-wrapper .card > img {
    width: 200px;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 15px;
  }
  .activity-option .option-wrapper .card figcaption {
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .activity-option .option-wrapper .card figcaption p {
    font-size: 14px;
  }
  .activity-option .option-wrapper .card figcaption .name {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
  }
  .activity-option .option-wrapper .card figcaption dl {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.75em;
  }
  .activity-option .option-wrapper .card figcaption dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 5px 0;
  }
  .activity-option .option-wrapper .card figcaption dl dt {
    width: 60px;
  }
  .activity-option .option-wrapper .card figcaption dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 10px;
  }
  .facility-data {
    margin: 30px auto 60px;
    padding: 30px 4vw;
    background-color: #f9f9f9;
    color: #53514f;
  }
  .facility-data h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .facility-data dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .facility-data dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .facility-data dl dt {
    width: 90px;
    font-size: 14px;
  }
  .facility-data dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .facility-data dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .facility-data dl dd small {
    font-size: 12px;
  }
  .restaurant-intro,
  .buffet-intro,
  .lounge-intro,
  .lounge-intro2,
  .pool-intro {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    padding: 0 4vw;
    margin: 0 auto 50px;
  }
  .restaurant-intro .section-title,
  .buffet-intro .section-title,
  .lounge-intro .section-title,
  .lounge-intro2 .section-title,
  .pool-intro .section-title {
    margin-bottom: 40px;
  }
  .restaurant-intro p,
  .buffet-intro p,
  .lounge-intro p,
  .lounge-intro2 p,
  .pool-intro p {
    font-size: 0.875rem;
  }
  .restaurant-nav,
  .buffet-nav,
  .lounge-nav,
  .activity-nav,
  .wellness-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    padding: 0 4vw;
    margin: 0 auto 30px;
    font-size: 0.875rem;
  }
  .restaurant-nav li,
  .buffet-nav li,
  .lounge-nav li,
  .activity-nav li,
  .wellness-nav li {
    margin-bottom: 10px;
    text-align: center;
    border-right: 1px solid #cccccc;
  }
  .restaurant-nav li:nth-child(odd),
  .buffet-nav li:nth-child(odd),
  .lounge-nav li:nth-child(odd),
  .activity-nav li:nth-child(odd),
  .wellness-nav li:nth-child(odd) {
    border-left: 1px solid #cccccc;
  }
  .restaurant-nav li a,
  .buffet-nav li a,
  .lounge-nav li a,
  .activity-nav li a,
  .wellness-nav li a {
    display: block;
    padding: 10px;
    color: #53514f;
  }
  /* -------- 観光情報 --------*/
  .page-sightseeing {
    color: #53514f;
  }
  .page-sightseeing .sightseeing-intro {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto 55px;
  }
  .page-sightseeing .sightseeing-intro p {
    font-size: 0.875rem;
  }
  .page-sightseeing .exp-movie-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 4vw;
  }
  .page-sightseeing .exp-movie-text {
    width: 100%;
    margin: 40px auto 20px;
  }
  .page-sightseeing .exp-movie-text p {
    font-size: 0.875rem;
  }
  .page-sightseeing .exp-movie-text p:last-child {
    margin-bottom: 0;
  }
  .page-sightseeing .exp-movie {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-sightseeing #sightseeing-tab {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
    overflow-x: auto;
    font-size: 0.75rem;
  }
  .page-sightseeing #sightseeing-tab li {
    margin-right: 10px;
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #53514f;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    white-space: nowrap;
  }
  .page-sightseeing #sightseeing-tab li.active {
    background-color: #a790c4;
    border: 1px solid #a790c4;
    color: #fff;
  }
  .page-sightseeing .sightseeing-tab-memo {
    font-size: 0.75rem;
  }
  .single-sightseeing {
    padding-bottom: 100px;
    color: #53514f;
  }
  .single-sightseeing h1 {
    margin-bottom: 50px;
    padding: 0 4vw;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    text-align: center;
  }
  .single-sightseeing .wysiwyg-sightseeing,
  .single-sightseeing .sightseeing-detail {
    max-width: 1000px;
    margin: 0 auto 60px;
  }
  .single-sightseeing .wysiwyg-sightseeing h2,
  .single-sightseeing .sightseeing-detail h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-sightseeing .sightseeing-detail {
    padding: 30px 4vw;
    background-color: #f9f9f9;
  }
  .single-sightseeing .sightseeing-detail dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .single-sightseeing .sightseeing-detail dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .single-sightseeing .sightseeing-detail dl dt {
    width: 90px;
    font-size: 14px;
  }
  .single-sightseeing .sightseeing-detail dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-sightseeing .sightseeing-detail dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .single-sightseeing .sightseeing-detail dl dd small {
    font-size: 12px;
  }
  .single-sightseeing .sightseeing-btnarea .btn:not(:first-child) {
    margin-top: 20px;
  }
  .single-sightseeing .gmap {
    width: 100%;
    margin: 60px auto 80px;
  }
  .single-sightseeing .gmap iframe {
    width: 100%;
    height: 400px;
  }
  .wysiwyg-rooms,
  .wysiwyg-sightseeing {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }
  .wysiwyg-rooms .img img,
  .wysiwyg-sightseeing .img img {
    width: 100%;
  }
  .wysiwyg-rooms h3,
  .wysiwyg-sightseeing h3 {
    margin-bottom: 0.75em;
    font-size: 18px;
    font-weight: 500;
    color: #53514f;
    line-height: 1.5em;
  }
  .wysiwyg-rooms .text p:last-child,
  .wysiwyg-sightseeing .text p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg-rooms .col1,
  .wysiwyg-sightseeing .col1 {
    margin-bottom: 60px;
  }
  .wysiwyg-rooms .col1 .img,
  .wysiwyg-sightseeing .col1 .img {
    margin-bottom: 25px;
  }
  .wysiwyg-rooms .col1 .text,
  .wysiwyg-sightseeing .col1 .text {
    padding: 0 4vw;
  }
  .wysiwyg-rooms .col2,
  .wysiwyg-rooms .col2-rev,
  .wysiwyg-rooms .col2-half,
  .wysiwyg-rooms .only-text,
  .wysiwyg-sightseeing .col2,
  .wysiwyg-sightseeing .col2-rev,
  .wysiwyg-sightseeing .col2-half,
  .wysiwyg-sightseeing .only-text {
    margin-bottom: 60px;
    padding: 0 4vw;
  }
  .wysiwyg-rooms .col2 .inner .img,
  .wysiwyg-rooms .col2-rev .inner .img,
  .wysiwyg-sightseeing .col2 .inner .img,
  .wysiwyg-sightseeing .col2-rev .inner .img {
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .wysiwyg-rooms .col2 .inner .text,
  .wysiwyg-rooms .col2-rev .inner .text,
  .wysiwyg-sightseeing .col2 .inner .text,
  .wysiwyg-sightseeing .col2-rev .inner .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .wysiwyg-rooms .col2-half > div,
  .wysiwyg-sightseeing .col2-half > div {
    margin-bottom: 1.5em;
  }
  .wysiwyg-rooms .col2-half > div:last-child,
  .wysiwyg-sightseeing .col2-half > div:last-child {
    margin-bottom: 0;
  }
  .wysiwyg-rooms .col2-half > div p:last-child,
  .wysiwyg-sightseeing .col2-half > div p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg-rooms .col2-half > div.img,
  .wysiwyg-sightseeing .col2-half > div.img {
    text-align: center;
  }
  .wysiwyg-sightseeing.border {
    padding: 0 4vw;
  }
  .wysiwyg-sightseeing.border .col2 {
    margin: 40px auto;
    padding: 0 0 40px;
    border-bottom: 3px solid #cccccc;
  }
  .wysiwyg-sightseeing.border .col2:first-of-type {
    padding-top: 40px;
    border-top: 3px solid #cccccc;
  }
  .wysiwyg-sightseeing.border .col2 > h2 {
    position: relative;
    margin-bottom: 30px;
    padding: 0 0 20px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    text-align: center;
    border: none;
  }
  .wysiwyg-sightseeing.border .col2 > h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #a790c4;
  }
  .wysiwyg-sightseeing.border .col2 .inner:not(:last-child) {
    margin-bottom: 40px;
  }
  .wysiwyg-sightseeing.border .col2 .btn {
    margin-top: 30px;
  }
  /* ----------- veltra ここから ----------- */
  .veltra-wrapper {
    width: 94vw;
    margin: 0 auto 100px;
    padding: 40px 0 0;
    background-color: #EDF2F6;
  }
  .veltra-wrapper .wysiwyg-sightseeing,
  .veltra-wrapper .sightseeing-detail,
  .veltra-wrapper .veltra-overview,
  .veltra-wrapper .veltra-flow,
  .veltra-wrapper .veltra-about {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 80px;
  }
  .veltra-wrapper .wysiwyg-sightseeing h2,
  .veltra-wrapper .sightseeing-detail h2,
  .veltra-wrapper .veltra-overview h2,
  .veltra-wrapper .veltra-flow h2,
  .veltra-wrapper .veltra-about h2 {
    margin-bottom: 30px;
    padding: 15px 15px 15px;
    font-size: 18px;
    font-weight: 500;
    color: #53514f;
    line-height: 1.5em;
    border-left: 8px solid #7CA0BF;
  }
  .veltra-wrapper .wysiwyg-sightseeing h2.title-block,
  .veltra-wrapper .sightseeing-detail h2.title-block,
  .veltra-wrapper .veltra-overview h2.title-block,
  .veltra-wrapper .veltra-flow h2.title-block,
  .veltra-wrapper .veltra-about h2.title-block {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .veltra-wrapper .wysiwyg-sightseeing h3,
  .veltra-wrapper .sightseeing-detail h3,
  .veltra-wrapper .veltra-overview h3,
  .veltra-wrapper .veltra-flow h3,
  .veltra-wrapper .veltra-about h3 {
    font-weight: 500;
    color: #7CA0BF;
  }
  .veltra-wrapper .sightseeing-detail:last-child,
  .veltra-wrapper .gmap:last-child {
    margin-bottom: 0;
  }
  .veltra-btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 300px;
    margin-top: 30px;
    padding: 27px 15px;
    line-height: 1em;
    background-color: #7CA0BF;
    color: #fff;
    text-align: center;
  }
  .veltra-btn[target=_blank] span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .veltra-btn[target=_blank] span::after {
    content: "";
    width: 15px;
    height: 13px;
    margin-left: 7px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/sightseeing/ico-veltra-blank-w.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .veltra-top,
  .veltra-intro,
  .veltra-coupon,
  .veltra-overview,
  .veltra-flow,
  .veltra-about {
    max-width: 100%;
    margin: 0 auto 50px;
    padding: 0 4vw;
  }
  .veltra-top:last-child,
  .veltra-intro:last-child,
  .veltra-coupon:last-child,
  .veltra-overview:last-child,
  .veltra-flow:last-child,
  .veltra-about:last-child {
    margin-bottom: 0;
  }
  .veltra-top p,
  .veltra-intro p,
  .veltra-coupon p,
  .veltra-overview p,
  .veltra-flow p,
  .veltra-about p {
    line-height: 2.25em;
  }
  .veltra-title {
    margin: 0 auto 50px;
    color: #7CA0BF;
    text-align: center;
  }
  .veltra-title span {
    display: block;
    margin-bottom: 0.5em;
    font-size: clamp(15px, 4vw, 18px);
  }
  .veltra-title img {
    width: clamp(130px, 40vw, 200px);
    margin-left: 10px;
  }
  .veltra-top h1,
  .veltra-top .veltra-subtitle {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-weight: normal;
    color: #6E6E6E;
    line-height: 1.5em;
    text-align: center;
  }
  .veltra-top h1 {
    font-size: clamp(18px, 4.8vw, 21px);
  }
  .veltra-top .veltra-subtitle {
    margin-top: 1em;
    font-size: clamp(16px, 4.2vw, 18px);
  }
  .veltra-intro .img {
    margin-bottom: 30px;
  }
  .veltra-intro .img img {
    width: 100%;
  }
  .veltra-intro .text h2 {
    margin-bottom: 1em;
    font-size: clamp(18px, 4.8vw, 22px);
    font-weight: 400;
    line-height: 1.75em;
  }
  .veltra-intro .text p {
    line-height: 2em;
  }
  .veltra-coupon {
    margin-bottom: 60px;
    padding: 30px 3vw;
    background-color: #7CA0BF;
    color: #fff;
  }
  .veltra-coupon p {
    text-align: center;
  }
  .veltra-coupon .veltra-btn-w {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px auto 0;
    padding: 27px 15px;
    line-height: 1em;
    background-color: #fff;
    color: #7CA0BF;
    text-align: center;
  }
  .veltra-coupon .veltra-btn-w[target=_blank] span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .veltra-coupon .veltra-btn-w[target=_blank] span::after {
    content: "";
    width: 15px;
    height: 13px;
    margin-left: 7px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/sightseeing/ico-veltra-blank-b.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .veltra-overview .img {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    margin-bottom: 30px;
  }
  .veltra-flow .veltra-flow-list > div {
    margin: 0 0 40px;
  }
  .veltra-flow .veltra-flow-list dt {
    margin-bottom: 1em;
    padding: 0 0 7px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(17px, 4.5vw, 20px);
    font-weight: 600;
    color: #7CA0BF;
    border-bottom: 1px solid #7CA0BF;
  }
  .veltra-flow .veltra-flow-list dd {
    line-height: 2em;
    padding: 0.5em;
  }
  .veltra-flow .veltra-flow-list dd small {
    font-size: 0.75em;
  }
  .veltra-flow .veltra-btn {
    width: 100%;
    max-width: 590px;
    margin-top: 35px;
  }
  .veltra-about {
    width: 92% !important;
    padding: 20px 4vw;
    background-color: #fff;
  }
  .veltra-about .veltra-title {
    margin: 30px auto;
  }
  .veltra-about .memo p {
    padding-left: 2em;
    font-size: 0.75em;
    text-indent: -1.5em;
  }
  .veltra-about .memo p::before {
    content: "※";
    margin-right: 0.5em;
  }
  .veltra-about .links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
    margin-top: 40px;
  }
  .veltra-about .links .veltra-btn {
    width: 100%;
    margin-top: 0;
    font-size: 14px;
  }
  /* ----------- veltra ここまで ----------- */
  /* -------- 温泉・大浴場 --------*/
  .page-wellness {
    color: #53514f;
  }
  .page-wellness .wellness-intro {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto 50px;
  }
  .page-wellness .wellness-intro p {
    font-size: 0.875rem;
  }
  .page-wellness .wellness-mv-wrapper {
    position: relative;
    width: 800px;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto 70px;
    padding: 0 4vw 20px;
  }
  .page-wellness .wellness-mv-wrapper .swiper-slide {
    width: 800px;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
  }
  .page-wellness .wellness-mv-wrapper .swiper-slide img {
    width: 800px;
    max-width: 100%;
    aspect-ratio: 16/10;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
  }
  .page-wellness .wellness-mv-wrapper .swiper-slide figcaption {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 0.875rem;
    font-weight: 300;
  }
  .page-wellness .wellness-mv-wrapper .wn-pagination {
    position: absolute;
    z-index: 99;
    bottom: 0;
    left: 0;
    padding: 0 15px;
    text-align: center;
  }
  .page-wellness .wellness-mv-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: rgba(204, 204, 204, 0.8);
    opacity: 1;
  }
  .page-wellness .wellness-mv-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(167, 144, 196, 0.8);
  }
  .page-wellness .wellness-col2 {
    max-width: 660px;
    margin: 0 auto 30px;
    padding: 20px 4vw;
    background-color: #f9f9f9;
  }
  .page-wellness .wellness-col2 .img {
    margin-bottom: 10px;
  }
  .page-wellness .wellness-col2 .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .page-wellness .wellness-col2 .text {
    padding: 20px 0;
  }
  .page-wellness .wellness-col2 .text .excerpt {
    margin-bottom: 30px;
  }
  .page-wellness .wellness-col2 .text .excerpt h2 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 400;
    color: #a790c4;
  }
  .page-wellness .wellness-col2 .text .excerpt h3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
  }
  .page-wellness .wellness-col2 .text .excerpt p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .page-wellness .wellness-col2 .text dl {
    border-top: 1px solid #cccccc;
    line-height: 1.35em;
  }
  .page-wellness .wellness-col2 .text dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #cccccc;
  }
  .page-wellness .wellness-col2 .text dl dt {
    width: 90px;
    font-size: 14px;
  }
  .page-wellness .wellness-col2 .text dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .page-wellness .wellness-col2 .text dl dd small {
    font-size: 12px;
  }
  .page-wellness .wellness-col2 .text .btn-modal {
    margin-top: 20px;
    text-align: right;
  }
  .page-wellness .wellness-col2 .text .btn-modal span {
    position: relative;
    display: inline-block;
    width: 250px;
    padding: 5px;
    font-size: 12px;
    color: #a790c4;
    text-align: center;
    border: 1px solid #a790c4;
  }
  .page-wellness .wellness-col2 .text .btn-modal span::after {
    position: absolute;
    top: 4px;
    right: 20px;
    content: ">";
  }
  .page-wellness .wellness-col2 .text .modal-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .page-wellness .wellness-col2 .text .modal-bg .modal-inner {
    width: 1000px;
    max-width: 90%;
    padding: 30px 4vw;
    background-color: #fff;
  }
  .page-wellness .wellness-col2 .text .modal-bg .modal-inner h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-wellness .wellness-col2 .text .modal-bg .modal-inner p {
    font-size: 14px;
  }
  .page-wellness .wellness-col2 .text .modal-bg .modal-inner p:last-child {
    margin-bottom: 0;
  }
  .page-wellness .wellness-detail {
    max-width: 660px;
    margin: 100px auto 0;
    padding: 30px 4vw;
    background-color: #f9f9f9;
  }
  .page-wellness .wellness-detail > section:not(:last-child) {
    margin-bottom: 50px;
  }
  .page-wellness .wellness-detail > section h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-wellness .wellness-detail > section dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .page-wellness .wellness-detail > section dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .page-wellness .wellness-detail > section dl dt {
    width: 90px;
    font-size: 14px;
  }
  .page-wellness .wellness-detail > section dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .page-wellness .wellness-detail > section dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .page-wellness .wellness-detail > section dl dd small {
    font-size: 12px;
  }
  .single-rooms {
    color: #53514f;
  }
  .single-rooms h1 {
    margin-bottom: 30px;
    color: #a790c4;
    font-weight: normal;
  }
  .single-rooms h1 small {
    display: block;
    font-size: 14px;
  }
  .single-rooms h1 b {
    font-size: 20px;
    font-weight: normal;
  }
  .single-rooms .single-rooms-intro {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 60px;
    padding: 0 4vw;
  }
  .single-rooms .single-rooms-intro .subtitle {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 300;
    color: #010037;
  }
  .single-rooms .single-rooms-intro p {
    text-align: left;
  }
  .single-rooms .single-rooms-intro p:last-child {
    margin-bottom: 0;
  }
  .single-rooms #single-rooms-swiper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
  }
  .single-rooms #single-rooms-swiper .swiper-wrapper {
    overflow: hidden;
  }
  .single-rooms #single-rooms-swiper .swiper-slide {
    text-align: center;
  }
  .single-rooms #single-rooms-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 25/14;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 40px;
  }
  .single-rooms #single-rooms-swiper .swiper-slide figcaption {
    padding: 0 4vw;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
  }
  .single-rooms #single-rooms-swiper .swiper-slide.swiper-slide-active figcaption {
    opacity: 1;
  }
  .single-rooms #single-rooms-swiper .sr-pagination {
    position: absolute;
    top: calc(56vw + 10px);
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
  }
  .single-rooms #single-rooms-swiper .sr-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(204, 204, 204, 0.8);
    opacity: 1;
    border-radius: 50%;
  }
  .single-rooms #single-rooms-swiper .sr-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .single-rooms #single-rooms-swiper .sr-prev,
  .single-rooms #single-rooms-swiper .sr-next {
    position: absolute;
    top: calc(28vw - 15px);
    z-index: 100;
    width: 30px;
    height: 30px;
    background-color: #a790c4;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px auto;
    cursor: pointer;
  }
  .single-rooms #single-rooms-swiper .sr-prev {
    left: 10px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-arrow-l.png);
  }
  .single-rooms #single-rooms-swiper .sr-next {
    right: 10px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-arrow-r.png);
  }
  .single-rooms .rooms-data-wrapper {
    margin-bottom: 80px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 4vw;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl {
    margin-bottom: 15px;
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl dt {
    width: 150px;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl dd small {
    font-size: 12px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text .memo {
    font-size: 12px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .img {
    margin-bottom: 30px;
    padding: 0 20px;
    text-align: center;
    font-size: 12px;
  }
  .single-rooms .rooms-section,
  .single-rooms .rooms-point {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 4vw;
  }
  .single-rooms .rooms-section h2,
  .single-rooms .rooms-point h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-rooms .rooms-section .col3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 320px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
    gap: 30px 2%;
    max-width: calc(640px + 2%);
    margin: 0 auto 40px;
  }
  .single-rooms .rooms-section .col3 .item {
    max-width: 320px;
  }
  .single-rooms .rooms-section .col3 .item img {
    margin-bottom: 10px;
  }
  .single-rooms .rooms-section .col3 .item figcaption {
    font-size: 14px;
  }
  .single-rooms .rooms-section p {
    font-size: 14px;
  }
  .single-rooms .btn-modal {
    margin-top: 40px;
  }
  .single-rooms .btn-modal span {
    position: relative;
    display: inline-block;
    padding: 10px 40px;
    font-size: 12px;
    color: #a790c4;
    text-align: center;
    border: 2px solid #a790c4;
    cursor: pointer;
  }
  .single-rooms .btn-modal span:hover {
    opacity: 0.8;
  }
  .single-rooms .btn-modal span::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .single-rooms .modal-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .single-rooms .modal-bg .modal-inner {
    width: 1000px;
    max-width: 90%;
    padding: 30px 4vw;
    background-color: #fff;
  }
  .single-rooms .modal-bg .modal-inner h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-rooms .modal-bg .modal-inner p {
    font-size: 14px;
  }
  .single-rooms .modal-bg .modal-inner p:last-child {
    margin-bottom: 0;
  }
  .single-rooms .rooms-point .item {
    max-width: 350px;
    margin: 0 auto 40px;
  }
  .single-rooms .rooms-point .item .img {
    width: 350px;
    margin-bottom: 20px;
  }
  .single-rooms .rooms-point .item .img img {
    width: 100%;
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .single-rooms .rooms-point .item .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .single-rooms .rooms-point .item .text .point {
    margin-bottom: 8px;
    font-family: "Spectral", "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    color: #a790c4;
  }
  .single-rooms .rooms-point .item .text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: normal;
    color: #010037;
    line-height: 1.25em;
  }
  .single-rooms .rooms-point .item .text p:last-child {
    margin-bottom: 0;
  }
  .single-rooms .rooms-point .btn-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
    margin-top: 80px;
  }
  .single-rooms .rooms-point .btn-area .btn {
    width: 250px;
  }
  /* -------- レストラン --------*/
  .page-restaurant .restaurant-intro {
    color: #53514f;
  }
  .page-restaurant .restaurant-buffet {
    margin-bottom: 90px;
    background-color: #a790c4;
  }
  .page-restaurant .restaurant-buffet .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-restaurant .restaurant-buffet .section-title {
    margin-bottom: 40px;
  }
  .page-restaurant .restaurant-buffet .section-title b,
  .page-restaurant .restaurant-buffet .section-title small {
    color: #fff;
  }
  .page-restaurant .restaurant-buffet .section-title b::after {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .page-restaurant .restaurant-buffet img {
    width: 50%;
    max-width: 400px;
    aspect-ratio: 1/1.1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-restaurant .restaurant-buffet .text {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    padding: 60px 4vw;
    color: #fff;
    font-weight: 300;
  }
  .page-restaurant .restaurant-buffet .text p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .page-restaurant .restaurant-buffet .text .btn {
    margin-top: 50px;
  }
  .page-restaurant .restaurant-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
  .page-restaurant .restaurant-slider .swiper-wrapper {
    height: 66vw;
    max-height: 400px;
    overflow: hidden;
  }
  .page-restaurant .restaurant-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .page-restaurant .restaurant-slider .rs-pagination {
    position: relative;
    top: -30px;
    height: 25px;
    z-index: 99;
    text-align: center;
  }
  .page-restaurant .restaurant-slider .rs-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-radius: 50%;
  }
  .page-restaurant .restaurant-slider .rs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .page-restaurant .restaurant-slider .text {
    position: relative;
    top: -25px;
    z-index: 99;
    padding: 30px 4vw 30px;
    color: #fff;
    text-align: center;
    background-color: #a790c4;
  }
  .page-restaurant .restaurant-slider .text h2 {
    margin-bottom: 0.75em;
    font-size: 24px;
    font-family: "Spectral", "Noto Sans JP", serif;
  }
  .page-restaurant .restaurant-slider .text p {
    font-size: 14px;
  }
  .page-restaurant .section-info {
    margin-top: 80px;
  }
  .page-restaurant .section-info .inner {
    width: 100%;
  }
  .page-restaurant .restaurant-banner {
    margin: 0 auto 60px;
    padding: 0 4vw;
    text-align: center;
  }
  .page-restaurant .restaurant-banner a {
    display: inline-block;
    margin: 0 auto;
  }
  /* -------- ビュッフェについて --------*/
  .page-buffet {
    color: #53514f;
  }
  .page-buffet .section-buffet {
    margin-bottom: 60px;
    padding-top: 50px;
  }
  .page-buffet .section-buffet .section-title {
    margin-bottom: 40px;
  }
  .buffet-point {
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 60px;
    padding: 0;
  }
  .buffet-point .card {
    width: 100%;
    margin: 0 auto;
  }
  .buffet-point .card > img {
    width: 100%;
    height: 66vw;
    max-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .buffet-point .card .text {
    margin: 0 auto;
    padding: 30px 4vw;
    background-color: #f1edf8;
  }
  .buffet-point .card .text .point {
    display: block;
    margin-bottom: 8px;
    font-family: "Spectral", "Noto Sans JP", serif;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    line-height: 1em;
    color: #a790c4;
  }
  .buffet-point .card .text .title {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: normal;
  }
  .buffet-point .card .text p {
    font-size: 0.875rem;
    line-height: 2.25em;
  }
  .buffet-point .card .text p:last-child {
    margin-bottom: 0;
  }
  .dish-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    width: 100%;
    max-width: 790px;
    margin: 0 auto 60px;
    padding: 0 4vw;
    font-size: 14px;
  }
  .dish-nav li {
    text-align: center;
  }
  .dish-nav li span {
    display: block;
    padding: 10px;
    color: #53514f;
    border: 1px solid #010037;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    cursor: pointer;
  }
  .dish-nav li span.active, .dish-nav li span:hover {
    background-color: #010037;
    color: #fff;
  }
  .dish-nav li span.active {
    cursor: default;
  }
  .buffet-ex-wrapper {
    display: none;
    margin: 0 auto 60px;
  }
  .buffet-ex-wrapper.active {
    display: block;
  }
  .buffet-ex-wrapper .btn-w {
    margin-top: 60px;
  }
  .buffet-ex-wrapper .btn-w a {
    cursor: pointer;
  }
  .buffet-ex {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px 15px;
    justify-items: center;
    width: 100%;
    max-width: 790px;
    margin: 0 auto 60px;
    padding: 0 4vw;
    font-size: 14px;
    line-height: 1.875em;
  }
  .buffet-ex.more-load {
    display: none;
  }
  .buffet-ex figure {
    max-width: 385px;
  }
  .buffet-ex figure img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
  }
  .buffet-other {
    width: 100%;
    margin: 0 auto 60px;
    padding: 0 4vw;
    font-size: 0.875rem;
  }
  .buffet-other .title {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .buffet-other ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 360px));
    gap: 20px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .buffet-other ul li {
    padding-left: 1em;
    line-height: 1.5em;
    text-indent: -1em;
  }
  .buffet-other ul li::before {
    content: "・";
  }
  .buffet-info,
  .lounge-info {
    width: 100%;
    margin: 65px auto 0;
    padding: 30px 4vw;
    background-color: #f9f9f9;
  }
  .buffet-info .title,
  .lounge-info .title {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .buffet-info dl,
  .lounge-info dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .buffet-info dl > div,
  .lounge-info dl > div {
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .buffet-info dl dt,
  .lounge-info dl dt {
    margin-bottom: 1em;
    font-size: 14px;
    font-weight: bold;
  }
  .buffet-info dl dd,
  .lounge-info dl dd {
    font-size: 14px;
  }
  .buffet-info dl dd b,
  .lounge-info dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .buffet-info dl dd small,
  .lounge-info dl dd small {
    font-size: 12px;
  }
  /* -------- ラウンジについて --------*/
  .page-lounge {
    color: #53514f;
  }
  .page-lounge .lounge-section {
    width: 100%;
    margin: 0 auto 60px;
    padding-top: 50px;
  }
  .page-lounge .lounge-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
  .page-lounge .lounge-slider .swiper-wrapper {
    height: 66vw;
    max-height: 400px;
    overflow: hidden;
  }
  .page-lounge .lounge-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .page-lounge .lounge-slider .rs-pagination {
    position: relative;
    top: -30px;
    height: 25px;
    z-index: 99;
    text-align: center;
  }
  .page-lounge .lounge-slider .rs-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-radius: 50%;
  }
  .page-lounge .lounge-slider .rs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  /* -------- オールインクルーシブ --------*/
  .allic-intro {
    margin-bottom: 50px;
    padding: 0 4vw;
  }
  .allic-intro h2 {
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.75em;
    color: #a790c4;
  }
  .allic-intro p {
    margin-bottom: 1.5em;
    font-size: 14px;
    color: #53514f;
  }
  .allic-intro p.memo {
    font-size: 12px;
  }
  .allic-points {
    width: 100%;
    margin: 0 auto;
  }
  .allic-points .point {
    max-width: 570px;
    margin: 0 auto 60px;
  }
  .allic-points .point .img {
    margin: 0 auto 30px;
  }
  .allic-points .point .img > img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .allic-points .point .img .subimg {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: -10px auto 0;
  }
  .allic-points .point .img .subimg img {
    width: 200px;
    max-width: 45%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 5px;
  }
  .allic-points .point .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 4vw;
  }
  .allic-points .point .text > b {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: normal;
    color: #a790c4;
  }
  .allic-points .point .text h2 {
    margin-bottom: 14px;
  }
  .allic-points .point .text h2 b {
    display: block;
    font-family: "Spectral", "Noto Sans JP", serif;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
  }
  .allic-points .point .text h2 small {
    font-size: 12px;
    font-weight: normal;
  }
  .allic-points .point .text p {
    font-size: 14px;
    font-weight: 300;
    color: #53514f;
    line-height: 2.25em;
  }
  .allic-points .point .text p:last-child {
    margin-bottom: 0;
  }
  /* -------- 施設案内 --------*/
  .page-facilities {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto;
    color: #53514f;
  }
  .page-facilities .facilities-intro {
    margin-bottom: 55px;
  }
  .page-facilities .facilities-intro p {
    font-size: 0.875rem;
  }
  .page-facilities .facilities-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    font-size: 14px;
  }
  .page-facilities .facilities-nav li {
    margin-bottom: 10px;
    text-align: center;
    border-right: 1px solid #cccccc;
  }
  .page-facilities .facilities-nav li:nth-child(odd) {
    border-left: 1px solid #cccccc;
  }
  .page-facilities .facilities-nav li a {
    display: block;
    padding: 10px;
    color: #53514f;
  }
  .page-facilities .facility-feature > img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 25px;
  }
  .page-facilities .facility-feature h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.75em;
    color: #53514f;
  }
  .page-facilities .facility-feature p {
    font-size: 14px;
  }
  .page-facilities .facilities-archive {
    padding-top: 60px;
    margin-bottom: 40px;
  }
  .page-facilities .facilities-archive .facility-cat {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-facilities .facilities-archive .posts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 365px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px 15px;
  }
  .page-facilities .facilities-archive .card > img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 15px;
  }
  .page-facilities .facilities-archive .card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
  }
  .page-facilities .facilities-archive .card > p {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .page-facilities .facilities-archive .card dl {
    margin: 25px 0 20px;
    font-size: 14px;
    border-bottom: 1px solid #cccccc;
  }
  .page-facilities .facilities-archive .card dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 10px;
    border-top: 1px solid #cccccc;
  }
  .page-facilities .facilities-archive .card dl dt {
    width: 60px;
  }
  .page-facilities .facilities-archive .card dl dd {
    padding-left: 10px;
  }
  .page-facilities .facilities-archive .card .btn-w {
    margin-top: 40px;
  }
  .page-facilities .facilities-archive .card .btn-w.blank a::after {
    content: "";
    position: relative;
    top: 2px;
    left: 8px;
    z-index: 10;
    display: inline-block;
    width: 15px;
    height: 11px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/access/blank.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .page-facilities .facilities-archive .card .btn-modal {
    text-align: right;
  }
  .page-facilities .facilities-archive .card .btn-modal span {
    position: relative;
    display: inline-block;
    width: 250px;
    padding: 5px;
    font-size: 12px;
    color: #624687;
    text-align: center;
    border: 1px solid #624687;
  }
  .page-facilities .facilities-archive .card .btn-modal span::after {
    position: absolute;
    top: 4px;
    right: 20px;
    content: "+";
  }
  .page-facilities .modal-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .page-facilities .modal-bg .modal-inner {
    width: 1000px;
    max-width: 90%;
    padding: 30px 4vw;
    background-color: #fff;
  }
  .page-facilities .modal-bg .modal-inner h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-facilities .modal-bg .modal-inner p {
    font-size: 14px;
  }
  .page-facilities .modal-bg .modal-inner p:last-child {
    margin-bottom: 0;
  }
  /* -------- アメニティ --------*/
  .page-amenities {
    font-weight: 300;
    color: #53514f;
  }
  .page-amenities .amenity-ttl {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .amenity-intro,
  .amenity-items,
  .amenity-free {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .amenity-intro .inner .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .amenity-intro .inner .text h2 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #a790c4;
  }
  .amenity-intro #amenity_swiper {
    position: relative;
    width: 700px;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto 20px;
  }
  .amenity-intro #amenity_swiper .am-pagination {
    position: absolute;
    z-index: 99;
    bottom: 5px;
    left: 0;
    padding: 0 30px;
  }
  .amenity-intro #amenity_swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: #cccccc;
    opacity: 1;
  }
  .amenity-intro #amenity_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .amenity-items {
    margin-top: 60px;
  }
  .amenity-items .amenity-col3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 365px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px 15px;
    justify-content: center;
    margin-bottom: 30px;
  }
  .amenity-items .amenity-col3 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .amenity-items .amenity-col3 .item img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .amenity-items .amenity-col3 .item figcaption {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 0 0;
  }
  .amenity-items .amenity-col3 .item figcaption p {
    margin: 0 0 15px;
    font-size: 0.875rem;
  }
  .amenity-items .amenity-col3 .item figcaption p:last-child {
    margin-bottom: 0;
  }
  .amenity-items .amenity-col3 .item figcaption p.price {
    margin-bottom: 0;
    text-align: right;
  }
  .amenity-items .amenity-other {
    margin-top: 50px;
    padding: 30px 4vw;
    background-color: #f9f9f9;
  }
  .amenity-items .amenity-other h3 {
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
  }
  .amenity-items .amenity-other ul {
    list-style: none;
    font-size: 0.875rem;
  }
  .amenity-items .amenity-other ul li {
    padding: 1em 0;
    border-bottom: 1px solid #cccccc;
  }
  .amenity-items .amenity-other ul li:first-child {
    border-top: 1px solid #cccccc;
  }
  .amenity-free {
    margin-top: 60px;
  }
  .amenity-free .inner {
    margin-top: 30px;
    padding: 30px 4vw;
    background-color: #f9f9f9;
  }
  .amenity-free .inner > div {
    padding: 25px 0;
    border-bottom: 1px solid #cccccc;
  }
  .amenity-free .inner > div:first-child {
    padding-top: 0;
  }
  .amenity-free .inner > div:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .amenity-free .inner dt {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
  }
  .amenity-free .inner dd {
    font-size: 0.875rem;
  }
  /* -------- ギャラリー --------*/
  #gallery-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 10px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 60px;
    padding: 0 4vw;
    font-size: 14px;
  }
  #gallery-nav li {
    text-align: center;
  }
  #gallery-nav li span {
    display: block;
    padding: 10px;
    color: #010037;
    border: 1px solid #010037;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    white-space: nowrap;
    cursor: pointer;
  }
  #gallery-nav li span.active, #gallery-nav li span:hover {
    background-color: #010037;
    color: #fff;
  }
  #gallery-nav li span.active {
    cursor: default;
  }
  .archive-gallery-wrapper {
    width: 1215px;
    max-width: 100%;
    margin: 0 auto;
  }
  .archive-gallery-wrapper .btn-w {
    width: 100%;
    margin: 60px auto;
  }
  .archive-gallery-wrapper .gallery-load {
    cursor: pointer;
  }
  .archive-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(31%, 1fr));
    gap: clamp(5px, 2vw, 15px);
    padding: 0 4vw;
  }
  .archive-gallery a {
    display: block;
    aspect-ratio: 1/1;
  }
  .archive-gallery a.hidden {
    display: none;
  }
  .archive-gallery img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .faq-nav ul {
    list-style: none;
    margin-bottom: 60px;
  }
  .faq-nav ul li a {
    position: relative;
    display: block;
    margin-bottom: 0.5em;
    padding: 1em 0 0.75em;
    font-size: 12px;
    font-weight: normal;
    border-bottom: 1px solid #53514f;
  }
  .faq-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 1.25em;
    right: 0;
    width: 7px;
    height: 7px;
    border-right: 1px solid #53514f;
    border-bottom: 1px solid #53514f;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .faq-section {
    margin-bottom: 80px;
  }
  .faq-section .faq-title {
    margin-bottom: 20px;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    color: #a790c4;
    border-left: 5px solid #a790c4;
  }
  .faq-section .faq-list {
    color: #777;
    line-height: 2em;
    border-top: 1px solid #eee;
  }
  .faq-section .faq-list > div {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }
  .faq-section .faq-list dt {
    position: relative;
    display: block;
    padding: 0 0 0 24px;
    font-size: 13px;
    font-weight: normal;
    cursor: pointer;
  }
  .faq-section .faq-list dt::before {
    content: "Q";
    position: absolute;
    top: 3px;
    left: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1em;
    color: #53514f;
  }
  .faq-section .faq-list dt.open::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .faq-section .faq-list dd {
    position: relative;
    padding: 15px 0 15px 40px;
    font-size: 13px;
  }
  .faq-section .faq-list dd p:last-child {
    margin-bottom: 0;
  }
  .faq-section .faq-list dd a {
    color: #a790c4;
    text-decoration: underline;
  }
  .faq-section .faq-list dd::before {
    content: "A";
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #a790c4;
  }
  .faq-section .back {
    font-size: 0.75rem;
    text-align: right;
    margin: 10px 0 0;
  }
  .faq-section .back a {
    color: #53514f;
  }
  .page-events {
    color: #53514f;
  }
  .page-events .events-intro {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 4vw;
  }
  .page-events .events-intro p:last-child {
    margin-bottom: 0;
  }
  .page-events .events-intro .btn-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    gap: 30px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px;
    text-align: center;
  }
  .page-events .events-intro .btn-area .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .page-events .events-intro .btn-area .btn a {
    width: clamp(250px, 90vw, 350px);
    max-width: 100%;
  }
  .page-events .events-intro .btn-area .btn small {
    display: block;
    margin-top: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
  }
  .page-events .events-rooms {
    max-width: 580px;
    margin: 0 auto 80px;
  }
  .page-events .events-rooms .item {
    margin: 0 auto 40px;
  }
  .page-events .events-rooms .item img {
    width: 100%;
    aspect-ratio: 29/17;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 20px;
  }
  .page-events .events-rooms .item .text h2 {
    margin-bottom: 20px;
    font-weight: normal;
    color: #a790c4;
    line-height: 1em;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .page-events .events-rooms .item .text h2 small {
    display: block;
    font-size: 14px;
  }
  .page-events .events-rooms .item .text h2 b {
    font-size: 18px;
    font-weight: normal;
  }
  .page-events .events-rooms .item .text .btn-w a {
    width: 250px;
    height: 50px;
    line-height: 50px;
  }
  .page-events .events-mice .description-wrapper {
    padding: 0 4vw;
  }
  .page-events .events-mice .description {
    margin: 40px auto 60px;
    padding: 30px 4vw 10px;
    background-color: #fff;
    border: 1px solid #cccccc;
  }
  .page-events .events-mice .description ul {
    list-style: none;
    margin-top: 30px;
    color: #a790c4;
  }
  .page-events .events-mice .description ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 250px;
    height: 70px;
    margin: 0 auto 40px;
    border: 1px solid #a790c4;
  }
  .page-events .events-mice .description ul li:not(:last-child)::before, .page-events .events-mice .description ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #a790c4;
  }
  .page-events .events-mice .description ul li:not(:last-child)::before {
    bottom: -30px;
    -webkit-transform: rotate(45deg) translateX(-50%);
            transform: rotate(45deg) translateX(-50%);
  }
  .page-events .events-mice .description ul li:not(:last-child)::after {
    bottom: -13px;
    -webkit-transform: rotate(-45deg) translateX(-50%);
            transform: rotate(-45deg) translateX(-50%);
  }
  .page-events .events-mice .description ul li small {
    display: block;
    font-size: 12px;
  }
  .page-events .events-mice .description ul li b {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: normal;
  }
  .page-events .events-mice .mice-wrapper .mice-item.bg-gray {
    background-color: #ececec;
  }
  .page-events .events-mice .mice-wrapper .col2,
  .page-events .events-mice .mice-wrapper .col2-rev {
    padding: 30px 4vw;
  }
  .page-events .events-mice .mice-wrapper .col2 .img,
  .page-events .events-mice .mice-wrapper .col2-rev .img {
    max-width: 390px;
    margin: 0 auto 20px;
  }
  .page-events .events-mice .mice-wrapper .col2 .img img,
  .page-events .events-mice .mice-wrapper .col2-rev .img img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-events .events-mice .mice-wrapper .col2 .text h3,
  .page-events .events-mice .mice-wrapper .col2-rev .text h3 {
    margin-bottom: 15px;
    font-weight: normal;
    color: #a790c4;
    line-height: 1.5em;
    text-align: center;
  }
  .page-events .events-mice .mice-wrapper .col2 .text h3 small,
  .page-events .events-mice .mice-wrapper .col2-rev .text h3 small {
    display: block;
    font-size: 16px;
  }
  .page-events .events-mice .mice-wrapper .col2 .text h3 b,
  .page-events .events-mice .mice-wrapper .col2-rev .text h3 b {
    font-size: 20px;
    font-weight: normal;
  }
  .page-events .events-mice .mice-wrapper .col2 .text p,
  .page-events .events-mice .mice-wrapper .col2-rev .text p {
    font-size: 14px;
  }
  .page-events .events-mice .mice-wrapper .col2 .text p:last-child,
  .page-events .events-mice .mice-wrapper .col2-rev .text p:last-child {
    margin-bottom: 0;
  }
  .single-events {
    color: #53514f;
  }
  .single-events h1 {
    margin-bottom: 75px;
    color: #a790c4;
    font-weight: 300;
    text-align: center;
  }
  .single-events h1 small {
    display: block;
    font-size: 15px;
  }
  .single-events h1 b {
    font-size: 24px;
    font-weight: 300;
  }
  .single-events #single-events-swiper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    overflow-x: hidden;
    padding-bottom: 40px;
    margin: 0 auto 50px;
  }
  .single-events #single-events-swiper .swiper-wrapper {
    width: 100%;
  }
  .single-events #single-events-swiper .swiper-slide {
    width: 100%;
    margin: 0 50px;
  }
  .single-events #single-events-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 25/14;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .single-events #single-events-swiper .se-prev,
  .single-events #single-events-swiper .se-next {
    position: absolute;
    top: 0;
    z-index: 100;
    width: calc((100% - 1200px) / 2);
    height: 560px;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
  }
  .single-events #single-events-swiper .se-prev {
    left: 0;
  }
  .single-events #single-events-swiper .se-next {
    right: 0;
  }
  .single-events .single-events-intro {
    margin-bottom: 70px;
    padding: 0 4vw;
  }
  .single-events .se-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
  }
  .single-events .se-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(204, 204, 204, 0.8);
    opacity: 1;
    border-radius: 50%;
  }
  .single-events .se-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .single-events .events-table,
  .single-events .events-layout,
  .single-events .events-data {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 4vw;
  }
  .single-events .events-table h2,
  .single-events .events-layout h2,
  .single-events .events-data h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-events .events-table .events-table-memo {
    font-size: 0.75rem;
  }
  .single-events .events-table table {
    margin-bottom: 20px;
  }
  .single-events .events-table table th,
  .single-events .events-table table td {
    padding: 0.75em 0.5em;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    color: #53514f;
    border: 1px solid #cccccc;
  }
  .single-events .events-table table th small,
  .single-events .events-table table td small {
    font-size: 12px;
  }
  .single-events .events-table table th {
    background-color: #eeeeee;
  }
  .single-events .events-table table .purple {
    text-align: center;
    background-color: #a790c4;
    color: #fff;
    border: 1px solid #fff;
  }
  .single-events .events-table table .center {
    text-align: center;
  }
  .single-events .events-layout {
    padding: 0 4vw;
  }
  .single-events .events-layout #events-layout-swiper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 40px;
  }
  .single-events .events-layout #events-layout-swiper .swiper-wrapper {
    width: 100%;
  }
  .single-events .events-layout #events-layout-swiper .swiper-slide {
    margin: 0 auto;
    text-align: center;
  }
  .single-events .events-layout #events-layout-swiper .se-prev,
  .single-events .events-layout #events-layout-swiper .se-next {
    position: absolute;
    top: calc(50% - 40px);
    z-index: 100;
    width: 30px;
    height: 30px;
    background-color: #a790c4;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px auto;
    cursor: pointer;
  }
  .single-events .events-layout #events-layout-swiper .se-prev {
    left: 0;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-arrow-l.png);
  }
  .single-events .events-layout #events-layout-swiper .se-next {
    right: 0;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-arrow-r.png);
  }
  .single-events .events-data {
    padding: 30px 4vw;
    background-color: #f9f9f9;
  }
  .single-events .events-data dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .single-events .events-data dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .single-events .events-data dl dt {
    width: 130px;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-events .events-data dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-events .events-data dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .single-events .events-data dl dd small {
    font-size: 12px;
  }
  .single-events .events-footer {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 4vw 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  .single-events .events-footer h2 {
    margin-bottom: 1em;
    font-size: 18px;
    font-weight: 300;
  }
  .single-events .events-footer > p {
    font-size: 14px;
  }
  .single-events .events-footer .btn-area {
    margin-top: 45px;
  }
  .single-events .events-footer .btn-area .tel,
  .single-events .events-footer .btn-area .mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 460px;
    max-width: 100%;
    height: 60px;
    margin: 0 auto 20px;
  }
  .single-events .events-footer .btn-area .tel span,
  .single-events .events-footer .btn-area .mail span {
    display: inline-block;
    padding: 5px 0 5px 35px;
    background-repeat: no-repeat;
    background-position: left center;
  }
  .single-events .events-footer .btn-area .tel {
    font-size: 18px;
    background-color: #eeeeee;
    color: #53514f;
  }
  .single-events .events-footer .btn-area .tel span {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/events/ico-tel.png);
  }
  .single-events .events-footer .btn-area .mail {
    font-size: 14px;
    font-weight: 500;
    background-color: #a790c4;
    color: #fff;
  }
  .single-events .events-footer .btn-area .mail span {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/events/ico-mail.png);
  }
  .wp-pagenavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
    font-size: 12px;
    font-weight: normal;
  }
  .wp-pagenavi > a,
  .wp-pagenavi > span {
    display: inline-block;
    min-width: 40px;
    margin: 0 2px;
    line-height: 40px;
    text-align: center;
  }
  .wp-pagenavi .current {
    background-color: #010037;
    color: #fff;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  .sp {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #container {
    max-width: 100%;
    overflow: hidden;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    height: 120px;
    background-color: #fff;
  }
  #header #logo {
    width: 120px;
  }
  #header .language {
    position: relative;
    height: 40px;
    margin: 0 20px 0 0;
  }
  #header .language.active {
    position: absolute;
    top: 20px;
    right: 70px;
  }
  #header .language h2 {
    padding: 0 15px 0 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 40px;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .language h2::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .language h2:hover {
    opacity: 0.8;
  }
  #header .language h2.active::after {
    top: 17px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  #header .language .lang-list {
    display: none;
    list-style: none;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 100;
    width: 110px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 5px rgba(51, 51, 51, 0.3);
            box-shadow: 0 2px 5px rgba(51, 51, 51, 0.3);
  }
  #header .language .lang-list li:not(:last-child) {
    border-bottom: 1px solid #53514f;
  }
  #header .language .lang-list li a {
    display: block;
    font-size: 12px;
    color: #53514f;
    line-height: 26px;
    text-align: center;
  }
  #header .header-rev {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 20px;
    padding: 1.125em;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    background-color: #4E3869;
    color: #fff;
    border: 1px solid #4E3869;
    cursor: pointer;
  }
  #header .header-rev::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .header-rev:hover {
    color: #4E3869;
  }
  #header .header-rev:hover::before {
    width: 100%;
  }
  #header .header-link-dp {
    display: grid;
    place-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 10px 25px 10px 30px;
    font-size: 18px;
    text-align: center;
    color: #a790c4;
    text-decoration: none;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-dp-p.svg), url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-blank-p.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px, 16px 12px;
    background-position: left center, right center;
  }
  #header .header-link-dp:hover span {
    border-bottom: 1px solid transparent;
  }
  #header .header-link-dp span {
    border-bottom: 1px solid #a790c4;
  }
  #headerTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 40px;
    padding: 0 0 0 30px;
    background-color: #F5F7F8;
  }
  #headerTop .site-title {
    margin: 0;
    font-size: clamp(14px, 1.27vw, 16px);
    font-weight: 500;
    color: #777777;
    line-height: 40px;
  }
  #headerTop .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #headerTop .link {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #headerTop .link li {
    margin-left: 10px;
  }
  #headerTop .link li a {
    display: block;
    padding-right: 18px;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 500;
    color: #777;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #headerTop .link li a[target=_blank] {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-blank.svg);
    background-repeat: no-repeat;
    background-size: 12px 10px;
    background-position: bottom 4px right;
  }
  #headerTop .link li a:hover {
    opacity: 0.8;
  }
  #headerTop .sns {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 20px;
  }
  #headerTop .sns li {
    width: 20px;
  }
  #headerTop .sns li:not(:last-child) {
    margin-right: 12px;
  }
  #headerBottom {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 80px 0 80px;
    height: 80px;
    background-color: #fff;
  }
  #headerBottom.fixed {
    -webkit-animation: show 0.5s ease 0s;
            animation: show 0.5s ease 0s;
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  #headerBottom nav {
    margin-left: auto;
  }
  #headerBottom .header-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    font-size: clamp(11px, 1vw, 14px);
  }
  #headerBottom .header-list > li {
    position: relative;
    height: 80px;
    margin-right: clamp(15px, 1.36vw, 40px);
    font-weight: 600;
    line-height: 80px;
    text-align: center;
  }
  #headerBottom .header-list > li.nav-room {
    width: 4.5em;
  }
  #headerBottom .header-list > li.nav-dining {
    width: 11em;
  }
  #headerBottom .header-list > li.nav-activity {
    width: 6.75em;
  }
  #headerBottom .header-list > li.nav-kids {
    width: 7.4em;
  }
  #headerBottom .header-list > li.nav-spa {
    width: 8em;
  }
  #headerBottom .header-list > li.nav-facility {
    width: 6.5em;
  }
  #headerBottom .header-list > li.nav-meeting {
    width: 6.25em;
  }
  #headerBottom .header-list > li.nav-experience {
    width: 8em;
  }
  #headerBottom .header-list > li.nav-offer {
    width: 4.5em;
  }
  #headerBottom .header-list > li.nav-access {
    width: 4.75em;
  }
  #headerBottom .header-list > li > a,
  #headerBottom .header-list > li > span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #333333;
    white-space: nowrap;
    letter-spacing: 0.05em;
  }
  #headerBottom .header-list > li > a::after,
  #headerBottom .header-list > li > span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 5px;
    background-color: #a790c4;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #headerBottom .header-list > li > a b,
  #headerBottom .header-list > li > span b {
    display: block;
    width: 100%;
    margin: 0 auto;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #headerBottom .header-list > li > a b.en,
  #headerBottom .header-list > li > span b.en {
    font-family: "Montserrat", sans-serif;
    line-height: 80px;
  }
  #headerBottom .header-list > li > a b.ja,
  #headerBottom .header-list > li > span b.ja {
    display: none;
    color: #a790c4;
    line-height: 76px;
  }
  #headerBottom .header-list > li > a:hover::after, #headerBottom .header-list > li > a.current::after,
  #headerBottom .header-list > li > span:hover::after,
  #headerBottom .header-list > li > span.current::after {
    width: 100%;
  }
  #headerBottom .header-list > li > a:hover .en, #headerBottom .header-list > li > a.current .en,
  #headerBottom .header-list > li > span:hover .en,
  #headerBottom .header-list > li > span.current .en {
    display: none;
  }
  #headerBottom .header-list > li > a:hover .ja, #headerBottom .header-list > li > a.current .ja,
  #headerBottom .header-list > li > span:hover .ja,
  #headerBottom .header-list > li > span.current .ja {
    position: absolute;
    top: 0;
    display: block;
  }
  #headerBottom .header-list > li > span {
    cursor: pointer;
  }
  #hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-color: #a790c4;
    color: #fff;
    cursor: pointer;
  }
  #hamburger div {
    position: relative;
    width: 40px;
    height: 30px;
    margin: 0 auto;
  }
  #hamburger i {
    position: relative;
    top: 2px;
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #fff;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 2px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
  }
  #hamburger i:before {
    -webkit-transform: translate(0, 13px);
            transform: translate(0, 13px);
  }
  #hamburger i:after {
    -webkit-transform: translate(0, 24px);
            transform: translate(0, 24px);
  }
  #hamburger span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 100%;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 600;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
  #hamburger.active {
    background-color: #fff;
  }
  #hamburger.active i {
    height: 0;
    background-color: #010037;
  }
  #hamburger.active i:before, #hamburger.active i:after {
    width: 34px;
    background-color: #010037;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-45deg) translate(-10px, 12px);
            transform: rotate(-45deg) translate(-10px, 12px);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(45deg) translate(11px, 8px);
            transform: rotate(45deg) translate(11px, 8px);
  }
  #hamburger.active span {
    color: #010037;
    bottom: 12px;
  }
  #hamburgerClose {
    background-color: #fff;
    cursor: pointer;
  }
  #hamburgerClose > div {
    position: relative;
    height: 40px;
  }
  #hamburgerClose i {
    top: 2px;
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #fff;
  }
  #hamburgerClose i:before, #hamburgerClose i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 2px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #a790c4;
  }
  #hamburgerClose i:before {
    -webkit-transform: rotate(-45deg) translate(-25px, 18px);
            transform: rotate(-45deg) translate(-25px, 18px);
  }
  #hamburgerClose i:after {
    -webkit-transform: rotate(45deg) translate(19px, 25px);
            transform: rotate(45deg) translate(19px, 25px);
  }
  #hamburgerClose span {
    width: 100%;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #a790c4;
    text-align: center;
  }
  #headerNav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 500;
    width: 600px;
    height: 100vh;
    overflow-y: auto;
    padding: 10px 40px 35px;
    background-color: #fff;
  }
  #headerNav.fixed {
    position: fixed;
    z-index: 500;
  }
  #headerNav::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -5;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
  #headerNav.active {
    display: block;
  }
  #headerNav .nav-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 5px;
    margin-bottom: 30px;
  }
  #headerNav .nav-top .language {
    position: relative;
    margin-right: 50px;
  }
  #headerNav .nav-top #hamburgerClose {
    position: absolute;
    top: 0;
    right: 15px;
  }
  #headerNav ul {
    list-style: none;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    color: #333333;
  }
  #headerNav ul a {
    display: block;
    color: #333333;
  }
  #headerNav ul a:hover span {
    text-decoration: underline;
    color: #a790c4;
  }
  #headerNav ul span:hover {
    text-decoration: underline;
    color: #a790c4;
  }
  #headerNav .nav-main {
    background-color: #fff;
  }
  #headerNav .nav-main > li {
    border-bottom: 1px solid #cccccc;
  }
  #headerNav .nav-main > li:first-child {
    border-top: 1px solid #cccccc;
  }
  #headerNav .nav-main > li > a,
  #headerNav .nav-main > li > span {
    display: block;
    padding: 1em 0;
    font-weight: 500;
    cursor: pointer;
  }
  #headerNav .nav-main .parent {
    position: relative;
  }
  #headerNav .nav-main .parent > span {
    position: relative;
  }
  #headerNav .nav-main .parent > span::before, #headerNav .nav-main .parent > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 12px;
    height: 2px;
    background-color: #333;
  }
  #headerNav .nav-main .parent > span::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  #headerNav .nav-main .parent.active > span::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  #headerNav .nav-main .children {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: -10;
    width: 440px;
    font-size: 14px;
    font-weight: 500;
    background-color: #F8F9FA;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #headerNav .nav-main .children.active {
    left: -480px;
    opacity: 1;
  }
  #headerNav .nav-main .children li:not(:last-child) {
    border-bottom: 1px solid #cccccc;
  }
  #headerNav .nav-main .children li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #headerNav .nav-main .children li a img {
    width: 180px;
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #headerNav .nav-main .children li a span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 15px 30px;
  }
  #headerNav .nav-sub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(33% - 1em), 1fr));
    gap: 1.5em 1em;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
  }
  #headerNav .nav-sub a[target=_blank] span {
    display: inline-block;
    padding-right: 18px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-blank.svg);
    background-repeat: no-repeat;
    background-size: 12px 10px;
    background-position: bottom 2px right;
  }
  #headerNav .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
  #headerNav .sns li:not(:last-child) {
    margin-right: 12px;
  }
  #floatReservation {
    position: fixed;
    top: clamp(130px, 50% - 130px, 1000px);
    right: 0;
    z-index: 900;
    width: 80px;
    height: 200px;
    padding: 5px;
    color: #fff;
    background-color: #4E3869;
    cursor: pointer;
  }
  #floatReservation span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  #floatReservation span::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 17px;
    margin-bottom: 7px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-calendar.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  #frontReservation {
    max-width: 100%;
    margin-bottom: 120px;
    padding: 0 50px;
  }
  #modalReservation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.3);
    place-items: center;
    width: 100%;
    height: 100vh;
  }
  #modalReservation .modal-close {
    position: absolute;
    top: -55px;
    right: -35px;
    display: block;
    width: 35px;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    pointer-events: none;
    cursor: pointer;
  }
  #modalReservation .modal-close::before, #modalReservation .modal-close::after {
    content: "";
    position: absolute;
    display: block;
    width: 45px;
    height: 3px;
    background-color: #fff;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  #modalReservation .modal-close:before {
    -webkit-transform: rotate(-45deg) translate(12px, -20px);
            transform: rotate(-45deg) translate(12px, -20px);
  }
  #modalReservation .modal-close:after {
    -webkit-transform: rotate(45deg) translate(-30px, -22px);
            transform: rotate(45deg) translate(-30px, -22px);
  }
  .reservation-form .wrapper {
    width: 1600px;
    max-width: calc(100vw - 160px);
    margin: 0 auto;
    padding: 30px 40px 35px;
    color: #fff;
    background-color: #4E3869;
  }
  .reservation-form .inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .reservation-form .mega-menu {
    max-width: 100%;
    margin: 40px auto 0;
    padding: 40px clamp(30px, 3vw, 100px) 0;
    border-top: 1px solid #fff;
  }
  .reservation-form .mega-menu ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, calc(33% - 30px));
    gap: clamp(15px, 1.5vw, 30px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reservation-form .mega-menu ul li a {
    display: block;
    color: #fff;
  }
  .reservation-form .mega-menu ul li a span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
  }
  .reservation-form .mega-menu ul li a .img {
    width: 100%;
    aspect-ratio: 3/2;
  }
  .reservation-form .mega-menu ul li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .reservation-form .mega-menu ul li a:hover {
    opacity: 0.8;
  }
  .reservation-form .title {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 2em;
  }
  .reservation-form input {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    padding: 10px 0.4rem;
  }
  .reservation-form input::-webkit-input-placeholder {
    color: #999999;
  }
  .reservation-form input::-moz-placeholder {
    color: #999999;
  }
  .reservation-form input:-ms-input-placeholder {
    color: #999999;
  }
  .reservation-form input::-ms-input-placeholder {
    color: #999999;
  }
  .reservation-form input::placeholder {
    color: #999999;
  }
  .reservation-form input:focus {
    outline: none;
  }
  .reservation-form .callendar,
  .reservation-form .guests {
    width: calc((100% - 270px) / 2);
    padding-right: 10px;
  }
  .reservation-form .callendar input,
  .reservation-form .guests input {
    width: 100%;
    background-color: #fff;
    color: #6e6e6e;
    border: none;
  }
  .reservation-form .callendar {
    position: relative;
  }
  .reservation-form .callendar::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: inline-block;
    width: 18px;
    height: 18px;
    -webkit-mask-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-calendar.png);
            mask-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-calendar.png);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 15px auto;
            mask-size: 15px auto;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #6e6e6e;
    pointer-events: none;
  }
  .reservation-form .guests {
    position: relative;
  }
  .reservation-form .guests::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: inline-block;
    width: 15px;
    height: 15px;
    -webkit-mask-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-guests.png);
            mask-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-guests.png);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 12px auto;
            mask-size: 12px auto;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #6e6e6e;
    pointer-events: none;
  }
  .reservation-form #modalGuestsModal,
  .reservation-form #frontGuestsModal {
    display: none;
    position: absolute;
    top: 62px;
    width: 280px;
    padding: 20px 15px;
    font-size: 14px;
    background-color: #fff;
    color: #53514f;
    border: 1px solid #cccccc;
  }
  .reservation-form #modalGuestsModal .num-select > div,
  .reservation-form #frontGuestsModal .num-select > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0 15px;
  }
  .reservation-form #modalGuestsModal .num-select dt span,
  .reservation-form #frontGuestsModal .num-select dt span {
    display: inline-block;
    margin-left: 12px;
  }
  .reservation-form #modalGuestsModal .num-select .btns,
  .reservation-form #frontGuestsModal .num-select .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 70px;
    padding-right: 10px;
  }
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusChild,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusChild,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusChild,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusChild,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusChild,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusChild,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusChild,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusChild {
    width: 25px;
    height: 25px;
    padding: 5px;
    background-repeat: no-repeat;
    background-position: top;
    cursor: pointer;
  }
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusAdult.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusAdult.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusChild.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusChild.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusAdult.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusAdult.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusChild.disactive,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusChild.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusAdult.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusAdult.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusChild.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusChild.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusAdult.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusAdult.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusChild.disactive,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusChild.disactive {
    background-position: center -25px;
  }
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .modalPlusChild,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .frontPlusChild,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .modalPlusChild,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .frontPlusChild {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-plus.png);
  }
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .modalMinusChild,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusAdult,
  .reservation-form #modalGuestsModal .num-select .btns .frontMinusChild,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .modalMinusChild,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusAdult,
  .reservation-form #frontGuestsModal .num-select .btns .frontMinusChild {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/rev-minus.png);
  }
  .reservation-form #modalGuestsModal .modalAgeSelect,
  .reservation-form #modalGuestsModal .frontAgeSelect,
  .reservation-form #frontGuestsModal .modalAgeSelect,
  .reservation-form #frontGuestsModal .frontAgeSelect {
    padding: 20px 0 0;
    border-top: 1px solid #cccccc;
  }
  .reservation-form #modalGuestsModal .modalAgeSelect .age,
  .reservation-form #modalGuestsModal .frontAgeSelect .age,
  .reservation-form #frontGuestsModal .modalAgeSelect .age,
  .reservation-form #frontGuestsModal .frontAgeSelect .age {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 10px;
  }
  .reservation-form #modalGuestsModal .modalAgeSelect .select,
  .reservation-form #modalGuestsModal .frontAgeSelect .select,
  .reservation-form #frontGuestsModal .modalAgeSelect .select,
  .reservation-form #frontGuestsModal .frontAgeSelect .select {
    position: relative;
  }
  .reservation-form #modalGuestsModal .modalAgeSelect .select::after,
  .reservation-form #modalGuestsModal .frontAgeSelect .select::after,
  .reservation-form #frontGuestsModal .modalAgeSelect .select::after,
  .reservation-form #frontGuestsModal .frontAgeSelect .select::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 10px;
    border-top: 5px solid #53514f;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }
  .reservation-form #modalGuestsModal .modalAgeSelect .select select,
  .reservation-form #modalGuestsModal .frontAgeSelect .select select,
  .reservation-form #frontGuestsModal .modalAgeSelect .select select,
  .reservation-form #frontGuestsModal .frontAgeSelect .select select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    padding: 0.5em 42px 0.5em 0.4em;
    width: 100%;
    background-color: #eeeeee;
    border: 1px solid #cccccc;
    border-radius: 2px;
    font-size: 14px;
  }
  .reservation-form .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 300px;
    margin-left: auto;
  }
  .reservation-form .btn-area #modalBtnReservation,
  .reservation-form .btn-area #frontBtnReservation {
    display: block;
    width: 300px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    background-color: #a790c4;
    color: #fff;
  }
  .reservation-form .btn-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    margin-top: 15px;
  }
  .reservation-form .btn-bottom .btn-dp {
    display: block;
    width: 300px;
    font-size: 14px;
    text-align: center;
    background-color: #999999;
    color: #fff;
  }
  .reservation-form .btn-bottom .btn-dp span {
    display: inline-block;
    padding: 10px 40px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-dp.svg), url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-blank-w.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px, 12px 10px;
    background-position: left 15px center, right 15px center;
  }
  /* カレンダー */
  .flatpickr-current-month span.cur-month,
  .flatpickr-current-month input.cur-year {
    font-size: 14px;
    font-weight: normal;
  }
  .flatpickr-current-month span.cur-month {
    margin-right: 10px;
  }
  span.flatpickr-weekday {
    font-size: 14px;
    font-weight: normal;
  }
  .flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
    border-radius: 10px 0 0 10px;
  }
  .flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
    border-radius: 0 10px 10px 0;
  }
  #footer {
    margin-top: 80px;
  }
  #footer .footer-top {
    width: 1700px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
  }
  #footer .footer-banner {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, 180px);
    gap: 15px 22px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
  }
  #footer .footer-banner li a {
    display: block;
  }
  #footer .footer-nav {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em 0;
    padding: 40px 0 30px;
  }
  #footer .footer-nav li {
    padding: 0 23px;
    font-size: 13px;
    line-height: 1em;
  }
  #footer .footer-nav li:not(:last-child) {
    border-right: 1px solid #555555;
  }
  #footer .footer-nav li a {
    color: #53514f;
  }
  #footer .footer-nav li a:hover {
    color: #a790c4;
  }
  #footer .footer-bottom {
    padding: 100px 50px;
    background-color: #53524F;
  }
  #footer .blands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 80px;
  }
  #footer .blands h2:not(:last-child) {
    margin-right: 60px;
  }
  #footer .blands h2 a {
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .blands h2 a:hover {
    opacity: 0.8;
  }
  #footer .blands h2.grand img {
    width: 341px;
  }
  #footer .blands h2.mercure img {
    width: 211px;
  }
  #footer .footer-hotels {
    width: 1400px;
    max-width: 100%;
    padding: 0 100px 0 0;
    margin: 0 auto;
  }
  #footer .footer-hotels .area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 25px;
  }
  #footer .footer-hotels .area:last-child {
    padding-bottom: 0;
  }
  #footer .footer-hotels .area .area-title {
    width: 135px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
  }
  #footer .footer-hotels .area ul {
    list-style: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer .footer-hotels .area ul li {
    display: block;
    margin: 5px 0 15px;
    padding: 0 15px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
  }
  #footer .footer-hotels .area ul li:not(:last-child) {
    margin-right: 15px;
  }
  #footer .footer-hotels .area ul li a {
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .footer-hotels .area ul li a:hover {
    opacity: 0.8;
  }
  #footer .footer-sns-wrapper {
    padding: 40px 0 40px 10px;
    background-color: #050033;
  }
  #footer .footer-sns-wrapper .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  #footer .footer-tel-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #footer .footer-tel {
    margin: 0 100px 0 0;
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
  }
  #footer .footer-tel h2 {
    margin-bottom: 0.125em;
    font-size: 18px;
    font-weight: normal;
  }
  #footer .footer-tel a {
    color: #fff;
  }
  #footer .footer-sns {
    width: 50%;
    padding: 0 5px;
  }
  #footer .footer-sns a {
    display: inline-block;
    width: 25px;
    margin: 0 30px 0 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .footer-sns a:hover {
    opacity: 0.8;
  }
  #footer .copyright {
    margin: 0 auto;
    padding: 25px;
    font-family: "Montserrat", sans-serif;
    color: #53514f;
    text-align: center;
    line-height: 1em;
  }
  #footer .copyright small {
    font-size: 12px;
  }
  .wysiwyg {
    width: 1000px;
    margin: 0 auto;
    word-break: break-all;
    overflow-wrap: break-word;
  }
  .wysiwyg .post-title {
    margin-bottom: 10px;
    padding: 0 0 0.5em;
    font-size: 36px;
    line-height: 1.5em;
    border-bottom: 1px solid #010037;
  }
  .wysiwyg .date {
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #a790c4;
    text-align: right;
    letter-spacing: 0.1em;
  }
  .wysiwyg h2 {
    margin-bottom: 1em;
    font-size: 24px;
  }
  .wysiwyg h2.title-block {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .wysiwyg h3 {
    margin-bottom: 1em;
    font-size: 20px;
  }
  .wysiwyg ol,
  .wysiwyg ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
  }
  .wysiwyg ol li,
  .wysiwyg ul li {
    margin-bottom: 0.5em;
  }
  .wysiwyg ol li ol,
  .wysiwyg ol li ul,
  .wysiwyg ul li ol,
  .wysiwyg ul li ul {
    margin: 1em 0;
    padding-left: 1.5em;
  }
  .wysiwyg .col2,
  .wysiwyg .col2-rev,
  .wysiwyg .col2-half,
  .wysiwyg .only-text {
    margin: 60px auto;
  }
  .wysiwyg .col2:first-child,
  .wysiwyg .col2-rev:first-child,
  .wysiwyg .col2-half:first-child,
  .wysiwyg .only-text:first-child {
    margin-top: 0;
  }
  .wysiwyg .col2:last-child,
  .wysiwyg .col2-rev:last-child,
  .wysiwyg .col2-half:last-child,
  .wysiwyg .only-text:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2 p:last-child,
  .wysiwyg .col2-rev p:last-child,
  .wysiwyg .col2-half p:last-child,
  .wysiwyg .only-text p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2 .inner,
  .wysiwyg .col2-rev .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wysiwyg .col2 .inner .img,
  .wysiwyg .col2-rev .inner .img {
    width: 500px;
  }
  .wysiwyg .col2 .inner .text,
  .wysiwyg .col2-rev .inner .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .wysiwyg .col2 .img {
    margin-right: 20px;
  }
  .wysiwyg .col2-rev .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .wysiwyg .col2-rev .inner .img {
    margin-left: 20px;
  }
  .wysiwyg .col2-half {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - 30px), 1fr));
    gap: 20px 30px;
  }
  .wysiwyg .col2-half > div p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2-half > div.img {
    text-align: center;
  }
  /* -------- Swiper ページタイトル --------*/
  .page-header #swiper-pagetitle {
    position: relative;
  }
  .page-header #swiper-pagetitle::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .page-header #swiper-pagetitle .swiper-wrapper {
    height: 500px;
    overflow: hidden;
  }
  .page-header #swiper-pagetitle .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .page-header #swiper-pagetitle .pt-pagination {
    position: absolute;
    z-index: 99;
    bottom: 20px;
    left: 0;
    text-align: center;
  }
  .page-header #swiper-pagetitle .pt-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 2px;
    margin: 0 10px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-radius: 0;
  }
  .page-header #swiper-pagetitle .pt-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .page-header #swiper-pagetitle .page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    font-size: 32px;
    line-height: 40px;
    color: #fff;
  }
  .page-header #swiper-pagetitle .page-title b {
    display: block;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .page-header #swiper-pagetitle .page-title b.mb2 {
    margin-bottom: 20px;
  }
  .page-header #swiper-pagetitle .page-title small {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  .page-header .inner {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
  .page-header .inner.with-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    border-top: none;
  }
  .page-header .inner .page-title {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    font-size: 32px;
    line-height: 40px;
  }
  .page-header .inner .page-title b {
    display: block;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .page-header .inner .page-title b.mb2 {
    margin-bottom: 20px;
  }
  .page-header .inner .page-title small {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  .section-front-plan,
  .section-restaurant-plan,
  .section-room-plan,
  .section-sightseeing-plan {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    margin: 0 auto 160px;
    padding: 95px 0 50px;
    background-color: #f6f4f9;
  }
  .section-front-plan .inner,
  .section-restaurant-plan .inner,
  .section-room-plan .inner,
  .section-sightseeing-plan .inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    padding: 0 10px 0 clamp(30px, (100% - 1400px) / 2, 50%);
  }
  .section-front-plan .text,
  .section-restaurant-plan .text,
  .section-room-plan .text,
  .section-sightseeing-plan .text {
    width: clamp(250px, 30%, 350px);
    margin-right: 40px;
  }
  .section-front-plan .text .section-title,
  .section-restaurant-plan .text .section-title,
  .section-room-plan .text .section-title,
  .section-sightseeing-plan .text .section-title {
    margin-bottom: 110px;
    text-align: left;
  }
  .section-front-plan .text .section-title b::after,
  .section-restaurant-plan .text .section-title b::after,
  .section-room-plan .text .section-title b::after,
  .section-sightseeing-plan .text .section-title b::after {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .section-front-plan #restaurant-plan,
  .section-restaurant-plan #restaurant-plan,
  .section-room-plan #restaurant-plan,
  .section-sightseeing-plan #restaurant-plan {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
  }
  .section-front-plan .swiper-wrapper,
  .section-restaurant-plan .swiper-wrapper,
  .section-room-plan .swiper-wrapper,
  .section-sightseeing-plan .swiper-wrapper {
    width: 100%;
  }
  .section-front-plan .swiper-wrapper .swiper-slide,
  .section-restaurant-plan .swiper-wrapper .swiper-slide,
  .section-room-plan .swiper-wrapper .swiper-slide,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide {
    width: calc((100% - 40px) / 3);
    max-width: 500px;
    margin: 0 10px;
  }
  .section-front-plan .swiper-wrapper .swiper-slide img,
  .section-restaurant-plan .swiper-wrapper .swiper-slide img,
  .section-room-plan .swiper-wrapper .swiper-slide img,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 20px;
  }
  .section-front-plan .swiper-wrapper .swiper-slide ul,
  .section-restaurant-plan .swiper-wrapper .swiper-slide ul,
  .section-room-plan .swiper-wrapper .swiper-slide ul,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide ul {
    list-style: none;
  }
  .section-front-plan .swiper-wrapper .swiper-slide ul li,
  .section-restaurant-plan .swiper-wrapper .swiper-slide ul li,
  .section-room-plan .swiper-wrapper .swiper-slide ul li,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide ul li {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 20px;
    font-size: 10px;
    color: #a790c4;
    border: 1px solid #a790c4;
  }
  .section-front-plan .swiper-wrapper .swiper-slide h3,
  .section-restaurant-plan .swiper-wrapper .swiper-slide h3,
  .section-room-plan .swiper-wrapper .swiper-slide h3,
  .section-sightseeing-plan .swiper-wrapper .swiper-slide h3 {
    font-size: 14px;
    font-weight: normal;
    color: #53514f;
    line-height: 1.75em;
  }
  .section-front-plan .slider-nav,
  .section-restaurant-plan .slider-nav,
  .section-room-plan .slider-nav,
  .section-sightseeing-plan .slider-nav {
    position: absolute;
    top: 110px;
    left: clamp(30px, (100% - 1400px) / 2, 50%);
    z-index: 999;
    width: 115px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-front-plan .slider-nav .button-prev,
  .section-front-plan .slider-nav .button-next,
  .section-restaurant-plan .slider-nav .button-prev,
  .section-restaurant-plan .slider-nav .button-next,
  .section-room-plan .slider-nav .button-prev,
  .section-room-plan .slider-nav .button-next,
  .section-sightseeing-plan .slider-nav .button-prev,
  .section-sightseeing-plan .slider-nav .button-next {
    position: relative;
    width: 25px;
    height: 25px;
    border: 2px solid #a790c4;
    border-radius: 50%;
    cursor: pointer;
  }
  .section-front-plan .slider-nav .button-prev::before,
  .section-front-plan .slider-nav .button-next::before,
  .section-restaurant-plan .slider-nav .button-prev::before,
  .section-restaurant-plan .slider-nav .button-next::before,
  .section-room-plan .slider-nav .button-prev::before,
  .section-room-plan .slider-nav .button-next::before,
  .section-sightseeing-plan .slider-nav .button-prev::before,
  .section-sightseeing-plan .slider-nav .button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #a790c4;
    border-bottom: 2px solid #a790c4;
  }
  .section-front-plan .slider-nav .button-prev::before,
  .section-restaurant-plan .slider-nav .button-prev::before,
  .section-room-plan .slider-nav .button-prev::before,
  .section-sightseeing-plan .slider-nav .button-prev::before {
    -webkit-transform: translate(calc(-50% + 2px), -50%) rotate(135deg);
            transform: translate(calc(-50% + 2px), -50%) rotate(135deg);
  }
  .section-front-plan .slider-nav .button-next::before,
  .section-restaurant-plan .slider-nav .button-next::before,
  .section-room-plan .slider-nav .button-next::before,
  .section-sightseeing-plan .slider-nav .button-next::before {
    -webkit-transform: translate(calc(-50% - 1px), -50%) rotate(-45deg);
            transform: translate(calc(-50% - 1px), -50%) rotate(-45deg);
  }
  /* -------- 宿泊プラン --------*/
  .archive-plan {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  #plan-tab {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 40px;
  }
  #plan-tab li {
    min-width: 150px;
    margin-right: 10px;
    padding: 5px 20px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #010037;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    cursor: pointer;
  }
  #plan-tab li.active, #plan-tab li:hover {
    background-color: #010037;
    color: #fff;
  }
  .plan-wrapper {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(22%, 300px));
    width: 1200px;
    max-width: 100%;
    gap: 40px 2%;
    margin: 0 auto 60px;
    font-size: 14px;
  }
  .plan-wrapper .card a {
    display: block;
  }
  .plan-wrapper .card img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 10px;
  }
  .plan-wrapper .card .cats {
    list-style: none;
    margin-bottom: 10px;
    color: #53514f;
    border: 1px solid #cccccc;
    text-align: center;
  }
  .plan-wrapper .card .cats li {
    padding: 10px;
    font-size: 12px;
    font-weight: 300;
  }
  .plan-wrapper .card .plan-name {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.75em;
  }
  .single-plan {
    width: 1000px;
    margin: 0 auto;
  }
  .single-plan .plan-title {
    margin-bottom: 50px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 36px;
    font-weight: normal;
    text-align: center;
  }
  .single-plan .plan-mv {
    margin-bottom: 40px;
    text-align: center;
  }
  .single-plan .plan-intro {
    margin-bottom: 60px;
    text-align: center;
    color: #53514f;
  }
  .single-plan .plan-intro .subtitle {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: normal;
  }
  .single-plan .plan-intro p:last-child {
    margin-bottom: 0;
  }
  .single-plan .plan-sectitle {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-plan .plan-data {
    margin-bottom: 80px;
    color: #53514f;
    font-size: 14px;
  }
  .single-plan .plan-data dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #cccccc;
    padding: 20px 0;
  }
  .single-plan .plan-data dl dt {
    width: 100px;
    text-align: center;
  }
  .single-plan .plan-data dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 10px;
  }
  .single-plan .plan-col2 {
    margin-bottom: 80px;
  }
  .single-plan .plan-col2.border {
    margin: 60px auto;
    padding: 60px 0;
    border-bottom: 3px solid #cccccc;
  }
  .single-plan .plan-col2.border:first-of-type {
    border-top: 3px solid #cccccc;
  }
  .single-plan .plan-col2.border > h3 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    text-align: center;
  }
  .single-plan .plan-col2.border > h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #a790c4;
  }
  .single-plan .plan-col2.border .item:not(:last-child) {
    margin-bottom: 60px;
  }
  .single-plan .plan-col2.border .item .open-modal {
    cursor: pointer;
  }
  .single-plan .plan-col2.border .btn {
    margin-top: 40px;
  }
  .single-plan .plan-col2 .inner {
    padding-top: 20px;
    margin-bottom: 50px;
  }
  .single-plan .plan-col2 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
    color: #53514f;
  }
  .single-plan .plan-col2 .item img {
    width: 400px;
  }
  .single-plan .plan-col2 .item .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
  }
  .single-plan .plan-col2 .item .text h4 {
    margin-bottom: 1em;
    font-size: 18px;
    font-weight: normal;
  }
  .single-plan .plan-col2 .item .text p {
    font-size: 14px;
  }
  .single-plan .plan-wysiwyg {
    padding: 30px 0 0;
    color: #53514f;
    border-top: 1px solid #cccccc;
  }
  .single-plan .plan-note {
    padding: 20px;
    border-top: 1px solid #cccccc;
    color: #53514f;
  }
  .single-plan .plan-note p {
    font-size: 14px;
  }
  #planModal,
  #sightseeingModal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    place-items: center;
    height: 100%;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
  }
  #planModal img,
  #sightseeingModal img {
    width: 100%;
    max-width: 1100px;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #planModal .close,
  #sightseeingModal .close {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
  }
  #planModal .close::before, #planModal .close::after,
  #sightseeingModal .close::before,
  #sightseeingModal .close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 25px;
    height: 1px;
    background-color: #fff;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  #planModal .close::before,
  #sightseeingModal .close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #planModal .close::after,
  #sightseeingModal .close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /* -------- アクセス --------*/
  .page-access .access-intro {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 140px;
    color: #53514f;
  }
  .page-access .access-intro > .text {
    text-align: center;
    margin-bottom: 60px;
  }
  .page-access .access-intro .gmap {
    margin-bottom: 60px;
  }
  .page-access .access-intro .gmap iframe {
    width: 100%;
    height: 400px;
  }
  .page-access .access-intro .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 50px;
  }
  .page-access .access-intro .address .img {
    width: 340px;
    margin-right: 40px;
    text-align: center;
  }
  .page-access .access-intro .address .img img {
    width: 100%;
  }
  .page-access .access-intro .address .text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1.875em;
  }
  .page-access .access-route {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    color: #53514f;
  }
  .page-access .access-route #access-tab {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    margin-bottom: 45px;
    font-size: 14px;
    border: 1px solid #a790c4;
  }
  .page-access .access-route #access-tab li {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    color: #a790c4;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
  }
  .page-access .access-route #access-tab li:not(:last-child) {
    border-right: 1px solid #a790c4;
  }
  .page-access .access-route #access-tab li.active, .page-access .access-route #access-tab li:hover {
    background-color: #a790c4;
    color: #fff;
  }
  .page-access .access-route .route-wrapper .route-info {
    display: none;
  }
  .page-access .access-route .route-wrapper .route-info.active {
    display: block;
  }
  .page-access .access-route .route-wrapper h2,
  .page-access .access-route .route-wrapper h3 {
    font-weight: 400;
    color: #a790c4;
  }
  .page-access .access-route .route-wrapper h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-access .access-route .route-wrapper h3 {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .page-access .access-route .route-wrapper h3::before {
    content: "◯";
  }
  .page-access .access-route .route-wrapper a {
    color: #a790c4;
    text-decoration: underline;
  }
  .page-access .access-route .route-wrapper a:hover {
    opacity: 0.8;
  }
  .page-access .access-route .route-wrapper .inner {
    margin-bottom: 50px;
  }
  .page-access .access-route .route-wrapper .inner .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 15px;
  }
  .page-access .access-route .route-wrapper .inner .img img {
    width: 580px;
  }
  .page-access .access-route .route-wrapper .inner .text {
    margin-bottom: 30px;
  }
  .page-access .access-route .route-wrapper .inner dl {
    border-top: 1px solid #cccccc;
    font-size: 14px;
  }
  .page-access .access-route .route-wrapper .inner dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #cccccc;
  }
  .page-access .access-route .route-wrapper .inner dl dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 300px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    background-color: #f9f5ef;
  }
  .page-access .access-route .route-wrapper .inner dl dt small {
    font-size: 12px;
  }
  .page-access .access-route .route-wrapper .inner dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
    font-size: 14px;
  }
  .page-access .access-route .route-wrapper .inner dl dd p {
    margin-bottom: 1em;
    font-size: 14px;
  }
  .page-access .access-route .route-wrapper .inner dl dd p:last-child {
    margin-bottom: 0;
  }
  .page-access .access-route .route-wrapper .inner .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-access .access-route .route-wrapper .inner .col2 table {
    width: 580px;
    margin: 0;
  }
  .page-access .access-route .route-wrapper .inner .col2 table th,
  .page-access .access-route .route-wrapper .inner .col2 table td {
    text-align: center;
    padding: 0.75em 2em;
  }
  .page-access .access-route .route-wrapper .memo {
    font-size: 14px;
  }
  .page-access .access-route .route-wrapper .memo p {
    font-size: 14px;
  }
  /* -------- 客室 --------*/
  .page-rooms {
    color: #53514f;
  }
  .page-rooms .rooms-intro {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 80px;
    text-align: center;
  }
  .page-rooms #rooms-tab {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 45px;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    border: 1px solid #a790c4;
  }
  .page-rooms #rooms-tab li {
    padding: 17px 10px;
    text-align: center;
    cursor: pointer;
    color: #a790c4;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
  }
  .page-rooms #rooms-tab li:not(:last-child) {
    border-right: 1px solid #a790c4;
  }
  .page-rooms #rooms-tab li.active, .page-rooms #rooms-tab li:hover {
    background-color: #a790c4;
    color: #fff;
  }
  .page-rooms .rooms-wrapper {
    display: none;
    width: 1200px;
    margin: 0 auto;
  }
  .page-rooms .rooms-wrapper.active {
    display: block;
  }
  .page-rooms .rooms-wrapper .wysiwyg-rooms {
    width: 1200px;
    margin-top: 100px;
  }
  .page-rooms .rooms-wrapper .wysiwyg-rooms h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-rooms .rooms-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 23px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .page-rooms .rooms-posts .card {
    background-color: #fff;
    color: #53514f;
  }
  .page-rooms .rooms-posts .card img {
    width: 100%;
    height: 290px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
  }
  .page-rooms .rooms-posts .card h3 {
    margin-bottom: 0.75em;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
  }
  .page-rooms .rooms-posts .card p {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .page-rooms .section-info {
    margin-top: 140px;
  }
  .section-facility {
    margin-top: 150px;
  }
  .section-facility .section-title {
    margin-bottom: 40px;
  }
  .section-facility .col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .section-facility .col2 .item {
    width: 590px;
  }
  .section-facility .col2 .item img {
    width: 100%;
    height: 345px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    margin-bottom: 15px;
  }
  .section-facility .col2 .item .name {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #a790c4;
  }
  .section-facility .col2 .item p {
    font-size: 14px;
  }
  /* -------- プール・アクティビティ --------*/
  .page-activity {
    color: #53514f;
  }
  .page-activity .section-pool,
  .page-activity .section-field {
    padding-top: 60px;
    border-bottom: 1px solid #cccccc;
  }
  .page-activity .section-pool .section-title,
  .page-activity .section-field .section-title {
    margin-bottom: 30px;
  }
  .page-activity .section-pool .main-img,
  .page-activity .section-field .main-img {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }
  .page-activity .section-pool .facility-data,
  .page-activity .section-field .facility-data {
    margin-top: 0;
  }
  .page-activity .section-activity {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 100px;
  }
  .page-activity .section-activity .section-title {
    margin-bottom: 30px;
  }
  .page-activity .section-field {
    padding-top: 100px;
    border-bottom: none;
    border-top: 1px solid #cccccc;
  }
  .page-activity .pool-intro {
    margin-bottom: 100px;
  }
  .page-activity .pool-intro .subtitle {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5em;
    color: #a790c4;
  }
  .page-activity .pool-intro p {
    font-size: 14px;
  }
  .page-activity .pool-col2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, 590px);
    gap: 60px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
  }
  .page-activity .pool-col2 figure.full {
    grid-column: 1/3;
  }
  .page-activity .pool-col2 figure img {
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .page-activity .pool-col2 figcaption {
    padding-top: 15px;
  }
  .page-activity .pool-col2 figcaption h3 {
    margin-bottom: 0.5em;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5em;
    color: #a790c4;
  }
  .page-activity .pool-col2 figcaption p {
    font-size: 14px;
  }
  .page-activity .pool-col2 figcaption p:last-child {
    margin-bottom: 0;
  }
  .page-activity .pool-col2 figcaption p.subtitle {
    font-size: 16px;
    margin-bottom: 0.5em;
  }
  /* Youtube 表示用 */
  .js-modal-video-open {
    position: relative;
    display: block;
    cursor: pointer;
  }
  .js-modal-video-open:hover {
    opacity: 0.8;
  }
  .js-modal-video-open::before, .js-modal-video-open::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    opacity: 1 !important;
  }
  .js-modal-video-open::before {
    width: 15px;
    height: 17.3205080757px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #f8d67e;
    margin-left: 2px;
  }
  .js-modal-video-open::after {
    width: 60px;
    height: 60px;
    border: 3px solid #f8d67e;
    border-radius: 50%;
  }
  #modal-video {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #modal-video.close {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    visibility: hidden;
  }
  #modal-video.open {
    -webkit-filter: opacity(1);
            filter: opacity(1);
    visibility: visible;
  }
  #modal-video iframe {
    width: 64vw;
    height: 36vw;
  }
  .activity-archive {
    width: 1200px;
    max-width: 100%;
    padding-top: 20px;
    margin: 0 auto 40px;
  }
  .activity-archive > h3 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .activity-archive .activity-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 15px;
  }
  .activity-archive .card > img,
  .activity-archive .card .js-modal-video-open img {
    width: 390px;
    height: 263px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 15px;
  }
  .activity-archive .card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
  }
  .activity-archive .card > p {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .activity-archive .card dl {
    margin: 25px 0 5px;
    font-size: 14px;
    border-bottom: 1px solid #cccccc;
  }
  .activity-archive .card dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 10px;
    border-top: 1px solid #cccccc;
  }
  .activity-archive .card dl dt {
    min-width: 60px;
    max-width: 50%;
  }
  .activity-archive .card dl dd {
    padding-left: 15px;
  }
  .activity-archive .tag,
  .activity-option .tag {
    list-style: none;
  }
  .activity-archive .tag li,
  .activity-option .tag li {
    display: inline-block;
    margin-right: 0.5em;
    font-size: 12px;
    color: #a790c4;
  }
  .activity-archive .tag li::before,
  .activity-option .tag li::before {
    content: "#";
  }
  .activity-option {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 100px;
    padding: 30px;
    background-color: #fdfbf7;
  }
  .activity-option > h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .activity-option .option-wrapper .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #cccccc;
  }
  .activity-option .option-wrapper .card > img {
    width: 200px;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 25px;
  }
  .activity-option .option-wrapper .card figcaption {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .activity-option .option-wrapper .card figcaption p {
    font-size: 14px;
  }
  .activity-option .option-wrapper .card figcaption .name {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 300;
  }
  .activity-option .option-wrapper .card figcaption dl {
    margin: 20px 0 0;
    font-size: 14px;
  }
  .activity-option .option-wrapper .card figcaption dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 5px 0;
  }
  .activity-option .option-wrapper .card figcaption dl dt {
    width: 60px;
  }
  .activity-option .option-wrapper .card figcaption dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 10px;
  }
  .facility-data {
    width: 1200px;
    max-width: 100%;
    margin: 35px auto 80px;
    padding: 30px;
    background-color: #f9f9f9;
    color: #53514f;
  }
  .facility-data h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .facility-data dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .facility-data dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .facility-data dl dt {
    width: 90px;
    font-size: 14px;
  }
  .facility-data dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .facility-data dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .facility-data dl dd small {
    font-size: 12px;
  }
  .restaurant-intro,
  .buffet-intro,
  .lounge-intro,
  .lounge-intro2,
  .pool-intro {
    margin-bottom: 60px;
    text-align: center;
  }
  .restaurant-intro .section-title,
  .buffet-intro .section-title,
  .lounge-intro .section-title,
  .lounge-intro2 .section-title,
  .pool-intro .section-title {
    margin-bottom: 40px;
  }
  .restaurant-intro p,
  .buffet-intro p,
  .lounge-intro p,
  .lounge-intro2 p,
  .pool-intro p {
    font-size: 16px;
    color: #53514f;
  }
  .restaurant-nav,
  .buffet-nav,
  .lounge-nav,
  .activity-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 30px;
    font-size: 14px;
  }
  .restaurant-nav li,
  .buffet-nav li,
  .lounge-nav li,
  .activity-nav li {
    text-align: center;
    border-right: 1px solid #cccccc;
  }
  .restaurant-nav li:first-child,
  .buffet-nav li:first-child,
  .lounge-nav li:first-child,
  .activity-nav li:first-child {
    border-left: 1px solid #cccccc;
  }
  .restaurant-nav li a,
  .buffet-nav li a,
  .lounge-nav li a,
  .activity-nav li a {
    display: block;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    color: #53514f;
  }
  .restaurant-nav li a:hover,
  .buffet-nav li a:hover,
  .lounge-nav li a:hover,
  .activity-nav li a:hover {
    color: #a790c4;
  }
  /* -------- 観光情報一覧 --------*/
  .page-sightseeing {
    color: #53514f;
  }
  .page-sightseeing .sightseeing-intro {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 55px;
    text-align: center;
  }
  .page-sightseeing .exp-movie-wrapper {
    width: 800px;
    margin: 40px auto;
  }
  .page-sightseeing .exp-movie-text {
    width: 100%;
    margin: 0 auto 20px;
  }
  .page-sightseeing .exp-movie-text p:last-child {
    margin-bottom: 0;
  }
  .page-sightseeing .exp-movie {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-sightseeing #sightseeing-tab {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .page-sightseeing #sightseeing-tab li {
    min-width: 150px;
    margin-right: 10px;
    padding: 5px 20px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #53514f;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    cursor: pointer;
  }
  .page-sightseeing #sightseeing-tab li.active, .page-sightseeing #sightseeing-tab li:hover {
    background-color: #a790c4;
    border: 1px solid #a790c4;
    color: #fff;
  }
  .single-sightseeing {
    padding-bottom: 120px;
    color: #53514f;
  }
  .single-sightseeing h1 {
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: normal;
    color: #a790c4;
    text-align: center;
  }
  .single-sightseeing .wysiwyg-sightseeing,
  .single-sightseeing .sightseeing-detail {
    width: 1000px;
    margin: 0 auto 80px;
  }
  .single-sightseeing .wysiwyg-sightseeing h2,
  .single-sightseeing .sightseeing-detail h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-sightseeing .sightseeing-detail {
    padding: 30px;
    background-color: #f9f9f9;
  }
  .single-sightseeing .sightseeing-detail dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .single-sightseeing .sightseeing-detail dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .single-sightseeing .sightseeing-detail dl dt {
    width: 150px;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-sightseeing .sightseeing-detail dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-sightseeing .sightseeing-detail dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .single-sightseeing .sightseeing-detail dl dd small {
    font-size: 12px;
  }
  .single-sightseeing .sightseeing-btnarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .single-sightseeing .sightseeing-btnarea .btn {
    margin: 0 40px;
  }
  .single-sightseeing .gmap {
    width: 1400px;
    max-width: 100%;
    margin: 80px auto 100px;
  }
  .single-sightseeing .gmap iframe {
    width: 100%;
    height: 400px;
  }
  .wysiwyg-rooms,
  .wysiwyg-sightseeing {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }
  .wysiwyg-rooms .img img,
  .wysiwyg-sightseeing .img img {
    width: 100%;
  }
  .wysiwyg-rooms h3,
  .wysiwyg-sightseeing h3 {
    margin-bottom: 0.75em;
    font-size: 18px;
    font-weight: 500;
    color: #53514f;
    line-height: 1.5em;
  }
  .wysiwyg-rooms .text p:last-child,
  .wysiwyg-sightseeing .text p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg-rooms .col1,
  .wysiwyg-sightseeing .col1 {
    margin-bottom: 80px;
  }
  .wysiwyg-rooms .col1 .img,
  .wysiwyg-sightseeing .col1 .img {
    margin-bottom: 25px;
  }
  .wysiwyg-rooms .col2,
  .wysiwyg-rooms .col2-rev,
  .wysiwyg-rooms .only-text,
  .wysiwyg-rooms .col2-half,
  .wysiwyg-sightseeing .col2,
  .wysiwyg-sightseeing .col2-rev,
  .wysiwyg-sightseeing .only-text,
  .wysiwyg-sightseeing .col2-half {
    margin-bottom: 60px;
  }
  .wysiwyg-rooms .col2 .inner,
  .wysiwyg-rooms .col2-rev .inner,
  .wysiwyg-sightseeing .col2 .inner,
  .wysiwyg-sightseeing .col2-rev .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wysiwyg-rooms .col2 .inner .img,
  .wysiwyg-rooms .col2-rev .inner .img,
  .wysiwyg-sightseeing .col2 .inner .img,
  .wysiwyg-sightseeing .col2-rev .inner .img {
    width: 500px;
  }
  .wysiwyg-rooms .col2 .inner .text,
  .wysiwyg-rooms .col2-rev .inner .text,
  .wysiwyg-sightseeing .col2 .inner .text,
  .wysiwyg-sightseeing .col2-rev .inner .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .wysiwyg-rooms .col2 .img,
  .wysiwyg-sightseeing .col2 .img {
    margin-right: 20px;
  }
  .wysiwyg-rooms .col2-rev .inner,
  .wysiwyg-sightseeing .col2-rev .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .wysiwyg-rooms .col2-rev .inner .img,
  .wysiwyg-sightseeing .col2-rev .inner .img {
    margin-left: 20px;
  }
  .wysiwyg-rooms .col2-half,
  .wysiwyg-sightseeing .col2-half {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - 30px), 1fr));
    gap: 20px 30px;
  }
  .wysiwyg-rooms .col2-half > div p:last-child,
  .wysiwyg-sightseeing .col2-half > div p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg-rooms .col2-half > div.img,
  .wysiwyg-sightseeing .col2-half > div.img {
    text-align: center;
  }
  .wysiwyg-sightseeing.border .col2 {
    margin: 60px auto;
    padding: 0 0 60px;
    border-bottom: 3px solid #cccccc;
  }
  .wysiwyg-sightseeing.border .col2:first-of-type {
    padding-top: 60px;
    border-top: 3px solid #cccccc;
  }
  .wysiwyg-sightseeing.border .col2 > h2 {
    position: relative;
    margin-bottom: 30px;
    padding: 0 0 20px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    text-align: center;
    border: none;
  }
  .wysiwyg-sightseeing.border .col2 > h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #a790c4;
  }
  .wysiwyg-sightseeing.border .col2 .inner:not(:last-child) {
    margin-bottom: 60px;
  }
  .wysiwyg-sightseeing.border .col2 .inner .img {
    width: 400px;
  }
  .wysiwyg-sightseeing.border .col2 .inner .open-modal {
    cursor: pointer;
  }
  .wysiwyg-sightseeing.border .col2 .btn {
    margin-top: 40px;
  }
  /* ----------- veltra ここから ----------- */
  .veltra-wrapper {
    width: calc(100% - 100px);
    margin: 0 auto 120px;
    padding: 120px 50px 0;
    background-color: #EDF2F6;
  }
  .veltra-wrapper .wysiwyg-sightseeing,
  .veltra-wrapper .sightseeing-detail,
  .veltra-wrapper .veltra-overview,
  .veltra-wrapper .veltra-flow,
  .veltra-wrapper .veltra-about {
    width: 1000px;
    margin: 0 auto 80px;
  }
  .veltra-wrapper .wysiwyg-sightseeing h2,
  .veltra-wrapper .sightseeing-detail h2,
  .veltra-wrapper .veltra-overview h2,
  .veltra-wrapper .veltra-flow h2,
  .veltra-wrapper .veltra-about h2 {
    margin-bottom: 30px;
    padding: 15px 15px 15px;
    font-size: 20px;
    font-weight: 500;
    color: #53514f;
    line-height: 1.5em;
    border-left: 8px solid #7CA0BF;
  }
  .veltra-wrapper .wysiwyg-sightseeing h3,
  .veltra-wrapper .sightseeing-detail h3,
  .veltra-wrapper .veltra-overview h3,
  .veltra-wrapper .veltra-flow h3,
  .veltra-wrapper .veltra-about h3 {
    font-size: clamp(22px, 2.2vw, 24px);
    font-weight: 500;
    color: #7CA0BF;
  }
  .veltra-wrapper .sightseeing-detail:last-child,
  .veltra-wrapper .gmap:last-child {
    margin-bottom: 0;
  }
  .veltra-btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 300px;
    margin-top: 30px;
    padding: 27px 30px;
    line-height: 1em;
    background-color: #7CA0BF;
    color: #fff;
    text-align: center;
  }
  .veltra-btn[target=_blank] span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .veltra-btn[target=_blank] span::after {
    content: "";
    width: 15px;
    height: 13px;
    margin-left: 7px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/sightseeing/ico-veltra-blank-w.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .veltra-btn:hover {
    opacity: 0.8;
  }
  .veltra-top,
  .veltra-intro,
  .veltra-coupon,
  .veltra-overview,
  .veltra-flow,
  .veltra-about {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 50px;
  }
  .veltra-top:last-child,
  .veltra-intro:last-child,
  .veltra-coupon:last-child,
  .veltra-overview:last-child,
  .veltra-flow:last-child,
  .veltra-about:last-child {
    margin-bottom: 0;
  }
  .veltra-top p,
  .veltra-intro p,
  .veltra-coupon p,
  .veltra-overview p,
  .veltra-flow p,
  .veltra-about p {
    line-height: 2.25em;
  }
  .veltra-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 50px;
    color: #7CA0BF;
  }
  .veltra-title span {
    font-size: clamp(18px, 2vw, 22px);
  }
  .veltra-title img {
    width: 200px;
    margin-left: 10px;
  }
  .veltra-top h1,
  .veltra-top .veltra-subtitle {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-weight: normal;
    color: #6E6E6E;
    line-height: 1.5em;
    text-align: center;
  }
  .veltra-top h1 {
    font-size: clamp(28px, 2.8vw, 38px);
  }
  .veltra-top .veltra-subtitle {
    margin-top: 0.75em;
    font-size: clamp(20px, 2vw, 28px);
  }
  .veltra-intro .img {
    margin-bottom: 60px;
  }
  .veltra-intro .img img {
    width: 100%;
  }
  .veltra-intro .text h2 {
    margin-bottom: 1em;
    font-size: clamp(17px, 1.7vw, 24px);
    font-weight: 400;
    line-height: 1.75em;
  }
  .veltra-intro .text p {
    line-height: 2.25em;
  }
  .veltra-coupon {
    margin-bottom: 100px;
    padding: 40px;
    background-color: #7CA0BF;
    color: #fff;
  }
  .veltra-coupon p {
    text-align: center;
  }
  .veltra-coupon .veltra-btn-w {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px auto 0;
    padding: 27px 30px;
    line-height: 1em;
    background-color: #fff;
    color: #7CA0BF;
    text-align: center;
  }
  .veltra-coupon .veltra-btn-w[target=_blank] span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .veltra-coupon .veltra-btn-w[target=_blank] span::after {
    content: "";
    width: 15px;
    height: 13px;
    margin-left: 7px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/sightseeing/ico-veltra-blank-b.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .veltra-overview .img {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    margin-bottom: 30px;
  }
  .veltra-flow .veltra-flow-list > div {
    margin: 0 0 50px;
  }
  .veltra-flow .veltra-flow-list dt {
    margin-bottom: 1em;
    padding: 0 0 7px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(18px, 1.8vw, 20px);
    font-weight: 600;
    color: #7CA0BF;
    border-bottom: 1px solid #7CA0BF;
  }
  .veltra-flow .veltra-flow-list dd {
    line-height: 2em;
    padding: 0.5em;
  }
  .veltra-flow .veltra-flow-list dd small {
    font-size: 0.75em;
  }
  .veltra-flow .veltra-btn {
    min-width: 590px;
    margin-top: 35px;
  }
  .veltra-about {
    padding: 35px 40px;
    background-color: #fff;
  }
  .veltra-about .veltra-title {
    margin: 30px auto;
  }
  .veltra-about .memo p {
    padding-left: 2em;
    font-size: 0.75em;
    text-indent: -1.5em;
  }
  .veltra-about .memo p::before {
    content: "※";
    margin-right: 0.5em;
  }
  .veltra-about .links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 40px), 1fr));
    gap: 20px 40px;
  }
  .veltra-about .links .veltra-btn {
    width: 100%;
  }
  /* ----------- veltra ここまで ----------- */
  /* -------- 温泉・大浴場 --------*/
  .page-wellness {
    color: #53514f;
  }
  .page-wellness .wellness-intro {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 50px;
    text-align: center;
  }
  .page-wellness .wellness-mv-wrapper {
    position: relative;
    width: 800px;
    overflow: hidden;
    margin: 0 auto 130px;
    padding-bottom: 30px;
  }
  .page-wellness .wellness-mv-wrapper .swiper-slide {
    width: 800px;
    height: 100%;
    text-align: center;
    background-color: #fff;
  }
  .page-wellness .wellness-mv-wrapper .swiper-slide img {
    width: 800px;
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
  }
  .page-wellness .wellness-mv-wrapper .swiper-slide figcaption {
    font-size: 14px;
    font-weight: 300;
  }
  .page-wellness .wellness-mv-wrapper .wn-pagination {
    position: absolute;
    z-index: 99;
    bottom: 0;
    left: 0;
    padding: 0 15px;
    text-align: center;
  }
  .page-wellness .wellness-mv-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: rgba(204, 204, 204, 0.8);
    opacity: 1;
  }
  .page-wellness .wellness-mv-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(167, 144, 196, 0.8);
  }
  .page-wellness .wellness-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 60px;
    font-size: 14px;
  }
  .page-wellness .wellness-nav li {
    text-align: center;
    border-right: 1px solid #cccccc;
  }
  .page-wellness .wellness-nav li:first-child {
    border-left: 1px solid #cccccc;
  }
  .page-wellness .wellness-nav li a {
    display: block;
    padding: 10px;
    color: #53514f;
  }
  .page-wellness .wellness-nav li a:hover {
    color: #a790c4;
  }
  .page-wellness .wellness-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #f9f9f9;
  }
  .page-wellness .wellness-col2:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .page-wellness .wellness-col2:nth-of-type(even) .text {
    padding: 20px 40px 20px 20px;
  }
  .page-wellness .wellness-col2 .img {
    width: 50%;
    height: 535px;
  }
  .page-wellness .wellness-col2 .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .page-wellness .wellness-col2 .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 660px;
    padding: 20px 20px 20px 40px;
  }
  .page-wellness .wellness-col2 .text .excerpt {
    margin-bottom: 30px;
  }
  .page-wellness .wellness-col2 .text .excerpt h2 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
  }
  .page-wellness .wellness-col2 .text .excerpt h3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
  }
  .page-wellness .wellness-col2 .text .excerpt p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .page-wellness .wellness-col2 .text dl {
    border-top: 1px solid #cccccc;
    line-height: 1.35em;
  }
  .page-wellness .wellness-col2 .text dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #cccccc;
  }
  .page-wellness .wellness-col2 .text dl dt {
    width: 90px;
    font-size: 14px;
  }
  .page-wellness .wellness-col2 .text dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .page-wellness .wellness-col2 .text dl dd small {
    font-size: 12px;
  }
  .page-wellness .wellness-col2 .text .btn-modal {
    margin-top: 20px;
    text-align: right;
  }
  .page-wellness .wellness-col2 .text .btn-modal span {
    position: relative;
    display: inline-block;
    width: 250px;
    padding: 5px;
    font-size: 12px;
    color: #a790c4;
    text-align: center;
    border: 1px solid #a790c4;
    cursor: pointer;
  }
  .page-wellness .wellness-col2 .text .btn-modal span:hover {
    opacity: 0.8;
  }
  .page-wellness .wellness-col2 .text .btn-modal span::after {
    position: absolute;
    top: 4px;
    right: 20px;
    content: ">";
  }
  .page-wellness .wellness-col2 .text .modal-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .page-wellness .wellness-col2 .text .modal-bg .modal-inner {
    width: 1000px;
    max-width: 90%;
    padding: 50px;
    background-color: #fff;
  }
  .page-wellness .wellness-col2 .text .modal-bg .modal-inner h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-wellness .wellness-col2 .text .modal-bg .modal-inner p {
    font-size: 14px;
  }
  .page-wellness .wellness-col2 .text .modal-bg .modal-inner p:last-child {
    margin-bottom: 0;
  }
  .page-wellness .wellness-detail {
    width: 1200px;
    max-width: 100%;
    margin: 150px auto 0;
    padding: 30px;
    background-color: #f9f9f9;
  }
  .page-wellness .wellness-detail > section:not(:last-child) {
    margin-bottom: 50px;
  }
  .page-wellness .wellness-detail > section h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-wellness .wellness-detail > section dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .page-wellness .wellness-detail > section dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .page-wellness .wellness-detail > section dl dt {
    width: 90px;
    font-size: 14px;
  }
  .page-wellness .wellness-detail > section dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .page-wellness .wellness-detail > section dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .page-wellness .wellness-detail > section dl dd small {
    font-size: 12px;
  }
  /* -------- 客室詳細 --------*/
  .single-rooms {
    color: #53514f;
  }
  .single-rooms h1 {
    margin-bottom: 30px;
    color: #a790c4;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
  }
  .single-rooms h1 small {
    display: block;
    font-size: 16px;
  }
  .single-rooms h1 b {
    font-size: 26px;
    font-weight: 600;
  }
  .single-rooms .single-rooms-intro {
    margin-bottom: 80px;
    text-align: center;
  }
  .single-rooms .single-rooms-intro .subtitle {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 300;
    color: #53514f;
  }
  .single-rooms .single-rooms-intro p:last-child {
    margin-bottom: 0;
  }
  .single-rooms #single-rooms-swiper {
    position: relative;
    width: 1000px;
    margin: 0 auto 80px;
  }
  .single-rooms #single-rooms-swiper .swiper-wrapper {
    overflow: hidden;
  }
  .single-rooms #single-rooms-swiper .swiper-slide {
    text-align: center;
  }
  .single-rooms #single-rooms-swiper .swiper-slide img {
    width: 100%;
    height: 560px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 80px;
  }
  .single-rooms #single-rooms-swiper .swiper-slide figcaption {
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .single-rooms #single-rooms-swiper .swiper-slide.swiper-slide-active figcaption {
    opacity: 1;
  }
  .single-rooms #single-rooms-swiper .sr-pagination {
    position: absolute;
    top: 570px;
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
  }
  .single-rooms #single-rooms-swiper .sr-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(204, 204, 204, 0.8);
    opacity: 1;
    border-radius: 50%;
  }
  .single-rooms #single-rooms-swiper .sr-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .single-rooms #single-rooms-swiper .sr-prev,
  .single-rooms #single-rooms-swiper .sr-next {
    position: absolute;
    top: 280px;
    z-index: 100;
    width: 70px;
    height: 70px;
    background-color: #a790c4;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
  }
  .single-rooms #single-rooms-swiper .sr-prev {
    left: -35px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-arrow-l.png);
  }
  .single-rooms #single-rooms-swiper .sr-next {
    right: -35px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-arrow-r.png);
  }
  .single-rooms .rooms-data-wrapper {
    margin-bottom: 140px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1000px;
    margin: 0 auto 65px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text {
    width: 500px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl {
    margin-bottom: 15px;
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl dt {
    width: 150px;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text dl dd small {
    font-size: 12px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .text .memo {
    font-size: 12px;
  }
  .single-rooms .rooms-data-wrapper .rooms-data .img {
    padding: 0 20px;
    text-align: center;
    font-size: 12px;
  }
  .single-rooms .rooms-section,
  .single-rooms .rooms-point {
    width: 1000px;
    margin: 0 auto 80px;
  }
  .single-rooms .rooms-section h2,
  .single-rooms .rooms-point h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-rooms .rooms-section .col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-bottom: 50px;
  }
  .single-rooms .rooms-section .col3 .item img {
    margin-bottom: 10px;
  }
  .single-rooms .rooms-section .col3 .item figcaption {
    font-size: 14px;
  }
  .single-rooms .rooms-section p {
    font-size: 14px;
  }
  .single-rooms .btn-modal {
    margin-top: 40px;
  }
  .single-rooms .btn-modal span {
    position: relative;
    display: inline-block;
    padding: 10px 40px;
    font-size: 12px;
    color: #a790c4;
    text-align: center;
    border: 2px solid #a790c4;
    cursor: pointer;
  }
  .single-rooms .btn-modal span:hover {
    opacity: 0.8;
  }
  .single-rooms .btn-modal span::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .single-rooms .modal-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .single-rooms .modal-bg .modal-inner {
    width: 1000px;
    max-width: 90%;
    padding: 50px;
    background-color: #fff;
  }
  .single-rooms .modal-bg .modal-inner h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-rooms .modal-bg .modal-inner p {
    font-size: 14px;
  }
  .single-rooms .modal-bg .modal-inner p:last-child {
    margin-bottom: 0;
  }
  .single-rooms .rooms-point .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .single-rooms .rooms-point .item .img {
    width: 350px;
    margin-right: 20px;
  }
  .single-rooms .rooms-point .item .img img {
    width: 100%;
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .single-rooms .rooms-point .item .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .single-rooms .rooms-point .item .text .point {
    margin-bottom: 8px;
    font-family: "Spectral", "Noto Sans JP", serif;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    color: #a790c4;
  }
  .single-rooms .rooms-point .item .text h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: normal;
    color: #010037;
    line-height: 1.25em;
  }
  .single-rooms .rooms-point .item .text p:last-child {
    margin-bottom: 0;
  }
  .single-rooms .rooms-point .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 80px;
  }
  .single-rooms .rooms-point .btn-area .btn {
    margin: 0 10px;
  }
  /* -------- レストラン --------*/
  .page-restaurant .restaurant-buffet {
    margin-bottom: 110px;
    padding: 5px 0;
    background-color: #a790c4;
    text-align: center;
  }
  .page-restaurant .restaurant-buffet .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
  }
  .page-restaurant .restaurant-buffet .section-title {
    margin-bottom: 40px;
  }
  .page-restaurant .restaurant-buffet .section-title b,
  .page-restaurant .restaurant-buffet .section-title small {
    color: #fff;
  }
  .page-restaurant .restaurant-buffet .section-title b::after {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .page-restaurant .restaurant-buffet .text {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 80px 20px;
    color: #fff;
    font-weight: 300;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/restaurant/bg-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .page-restaurant .restaurant-buffet .text p {
    width: 490px;
    margin: 0 auto;
  }
  .page-restaurant .restaurant-buffet .text .btn {
    margin-top: 50px;
  }
  .page-restaurant .restaurant-slider {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 1400px;
    max-width: 100%;
    height: 500px;
    overflow: hidden;
    padding-top: 30px;
    margin: 0 auto 15px;
  }
  .page-restaurant .restaurant-slider .swiper-wrapper {
    position: absolute;
    top: 30px;
  }
  .page-restaurant .restaurant-slider .swiper-slide {
    width: 1400px;
    max-width: 100%;
    height: 500px;
  }
  .page-restaurant .restaurant-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .page-restaurant .restaurant-slider .rs-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
  }
  .page-restaurant .restaurant-slider .rs-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-radius: 50%;
  }
  .page-restaurant .restaurant-slider .rs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .page-restaurant .restaurant-slider .text {
    position: relative;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    padding: 80px 35px 35px;
    color: #fff;
    text-align: center;
  }
  .page-restaurant .restaurant-slider .text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
  }
  .page-restaurant .restaurant-slider .text h2 {
    margin-bottom: 0.75em;
    font-size: 24px;
    font-family: "Spectral", "Noto Sans JP", serif;
  }
  .page-restaurant .restaurant-slider .text p {
    font-size: 14px;
  }
  .page-restaurant .restaurant-slider .text .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
  .page-restaurant .restaurant-slider .text .btn-area .btn {
    margin: 0 18px;
  }
  .page-restaurant .section-info {
    margin-top: 130px;
  }
  .page-restaurant .section-info .inner {
    width: 1400px;
    max-width: 100%;
  }
  .page-restaurant .section-restaurant-plan {
    margin-bottom: 100px;
  }
  .page-restaurant .restaurant-banner {
    margin: 0 auto 100px;
    text-align: center;
  }
  .page-restaurant .restaurant-banner a {
    display: inline-block;
    margin: 0 auto;
  }
  .page-restaurant .restaurant-banner a:hover {
    opacity: 0.8;
  }
  .restaurant-nav {
    width: 1400px;
    max-width: 100%;
  }
  /* -------- ビュッフェについて --------*/
  .page-buffet {
    color: #53514f;
  }
  .page-buffet .section-buffet {
    margin-bottom: 60px;
    padding-top: 70px;
  }
  .page-buffet .section-buffet .section-title {
    margin-bottom: 40px;
  }
  .buffet-point {
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 100px;
    padding: 70px 0;
    background-color: #f6f4f9;
  }
  .buffet-point .card {
    position: relative;
    z-index: 1;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .buffet-point .card::after {
    content: "";
    position: absolute;
    top: 170px;
    left: 200px;
    z-index: -1;
    width: 100vw;
    height: 400px;
    background-color: #f1edf8;
  }
  .buffet-point .card > img {
    width: 1200px;
    aspect-ratio: 3/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 45px;
  }
  .buffet-point .card .text {
    width: 940px;
    margin-left: 260px;
    margin-bottom: 70px;
  }
  .buffet-point .card .text .point {
    display: block;
    margin-bottom: 8px;
    font-family: "Spectral", "Noto Sans JP", serif;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    line-height: 1em;
    color: #a790c4;
  }
  .buffet-point .card .text .title {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: normal;
  }
  .buffet-point .card .text p {
    font-size: 14px;
    line-height: 2.25em;
  }
  .buffet-point .card:nth-child(even)::after {
    left: auto;
    right: 200px;
  }
  .buffet-point .card:nth-child(even) .text {
    margin-left: 0;
    margin-right: 260px;
  }
  .dish-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 20px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 60px;
    font-size: 14px;
  }
  .dish-nav li {
    text-align: center;
  }
  .dish-nav li span {
    display: block;
    padding: 10px;
    color: #53514f;
    border: 1px solid #010037;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    cursor: pointer;
  }
  .dish-nav li span.active, .dish-nav li span:hover {
    background-color: #010037;
    color: #fff;
  }
  .dish-nav li span.active {
    cursor: default;
  }
  .buffet-ex-wrapper {
    display: none;
    margin: 0 auto 60px;
  }
  .buffet-ex-wrapper.active {
    display: block;
  }
  .buffet-ex-wrapper .btn-w {
    margin-top: 60px;
  }
  .buffet-ex-wrapper .btn-w a {
    cursor: pointer;
  }
  .buffet-ex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 45px 22.5px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.875em;
  }
  .buffet-ex.more-load {
    display: none;
  }
  .buffet-ex figure {
    width: 385px;
  }
  .buffet-ex figure img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
  }
  .buffet-other {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 60px;
    padding-top: 50px;
  }
  .buffet-other .title {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .buffet-other ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    gap: 8px 25px;
  }
  .buffet-other ul li {
    padding-left: 1em;
    line-height: 1.5em;
    text-indent: -1em;
  }
  .buffet-other ul li::before {
    content: "・";
  }
  .buffet-info,
  .lounge-info {
    width: 1200px;
    max-width: 100%;
    margin: 65px auto 0;
    padding: 30px;
    background-color: #f9f9f9;
  }
  .buffet-info .title,
  .lounge-info .title {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .buffet-info dl,
  .lounge-info dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .buffet-info dl > div,
  .lounge-info dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .buffet-info dl dt,
  .lounge-info dl dt {
    width: 90px;
    font-size: 14px;
  }
  .buffet-info dl dd,
  .lounge-info dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .buffet-info dl dd b,
  .lounge-info dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .buffet-info dl dd small,
  .lounge-info dl dd small {
    font-size: 12px;
  }
  /* -------- ラウンジについて --------*/
  .page-lounge {
    color: #53514f;
  }
  .page-lounge .lounge-section {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 60px;
    padding-top: 70px;
  }
  .page-lounge .lounge-section .lounge-col3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, 385px);
    gap: 22.5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
    text-align: center;
  }
  .page-lounge .lounge-section .lounge-col3 img {
    width: 385px;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  /* -------- オールインクルーシブ --------*/
  .allic-intro {
    margin-bottom: 60px;
    text-align: center;
  }
  .allic-intro h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.75em;
    color: #a790c4;
  }
  .allic-intro p {
    margin-bottom: 1.5em;
    font-weight: 300;
    color: #53514f;
  }
  .allic-intro p.memo {
    font-size: 14px;
  }
  .allic-points {
    position: relative;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .allic-points::after {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
    width: 1100px;
    background-color: #f6f4f9;
  }
  .allic-points .point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .allic-points .point:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .allic-points .point:nth-child(even) .img {
    margin-left: 50px;
    margin-right: 0;
  }
  .allic-points .point .img {
    width: 570px;
    margin-right: 50px;
  }
  .allic-points .point .img > img {
    width: 570px;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .allic-points .point .img .subimg {
    position: relative;
    margin-top: -20px;
    padding-left: 20px;
  }
  .allic-points .point .img .subimg img {
    width: 200px;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 12px;
  }
  .allic-points .point .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-bottom: 90px;
  }
  .allic-points .point .text > b {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: normal;
    color: #a790c4;
  }
  .allic-points .point .text h2 {
    margin-bottom: 14px;
  }
  .allic-points .point .text h2 b {
    margin-right: 20px;
    font-family: "Spectral", "Noto Sans JP", serif;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
  }
  .allic-points .point .text h2 small {
    font-size: 12px;
    font-weight: normal;
  }
  .allic-points .point .text p {
    font-size: 14px;
    font-weight: 300;
    color: #53514f;
    line-height: 2.25em;
  }
  .allic-points .point .text p:last-child {
    margin-bottom: 0;
  }
  /* -------- 施設案内 --------*/
  .page-facilities {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    color: #53514f;
  }
  .page-facilities .facilities-intro {
    margin-bottom: 55px;
    text-align: center;
  }
  .page-facilities .facilities-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    font-size: 14px;
  }
  .page-facilities .facilities-nav li {
    text-align: center;
    border-right: 1px solid #cccccc;
  }
  .page-facilities .facilities-nav li:first-child {
    border-left: 1px solid #cccccc;
  }
  .page-facilities .facilities-nav li a {
    display: block;
    padding: 10px;
    color: #53514f;
  }
  .page-facilities .facilities-nav li a:hover {
    color: #a790c4;
  }
  .page-facilities .facility-feature > img {
    margin-bottom: 25px;
  }
  .page-facilities .facility-feature h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.75em;
    color: #53514f;
  }
  .page-facilities .facility-feature p {
    font-size: 14px;
  }
  .page-facilities .facilities-archive {
    padding-top: 55px;
    margin-bottom: 40px;
  }
  .page-facilities .facilities-archive .facility-cat {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-facilities .facilities-archive .posts-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 15px;
  }
  .page-facilities .facilities-archive .card > img {
    width: 390px;
    height: 263px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 15px;
  }
  .page-facilities .facilities-archive .card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
  }
  .page-facilities .facilities-archive .card > p {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .page-facilities .facilities-archive .card dl {
    margin: 25px 0 20px;
    font-size: 14px;
    border-bottom: 1px solid #cccccc;
  }
  .page-facilities .facilities-archive .card dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 10px;
    border-top: 1px solid #cccccc;
  }
  .page-facilities .facilities-archive .card dl dt {
    width: 60px;
  }
  .page-facilities .facilities-archive .card dl dd {
    padding-left: 10px;
  }
  .page-facilities .facilities-archive .card .btn-w {
    margin-top: 30px;
  }
  .page-facilities .facilities-archive .card .btn-w.blank a::after {
    content: "";
    position: relative;
    top: 2px;
    left: 8px;
    z-index: 10;
    display: inline-block;
    width: 15px;
    height: 11px;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/access/blank.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .page-facilities .facilities-archive .card .btn-modal {
    text-align: right;
  }
  .page-facilities .facilities-archive .card .btn-modal span {
    position: relative;
    display: inline-block;
    width: 250px;
    padding: 5px;
    font-size: 12px;
    color: #624687;
    text-align: center;
    border: 1px solid #624687;
    cursor: pointer;
  }
  .page-facilities .facilities-archive .card .btn-modal span:hover {
    opacity: 0.8;
  }
  .page-facilities .facilities-archive .card .btn-modal span::after {
    position: absolute;
    top: 4px;
    right: 20px;
    content: "+";
  }
  .page-facilities .modal-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .page-facilities .modal-bg .modal-inner {
    width: 1000px;
    max-width: 90%;
    padding: 50px;
    background-color: #fff;
  }
  .page-facilities .modal-bg .modal-inner h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .page-facilities .modal-bg .modal-inner p {
    font-size: 14px;
  }
  .page-facilities .modal-bg .modal-inner p:last-child {
    margin-bottom: 0;
  }
  /* -------- アメニティ --------*/
  .page-amenities {
    font-weight: 300;
    color: #53514f;
  }
  .page-amenities .amenity-ttl {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .amenity-intro,
  .amenity-items,
  .amenity-free {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
  }
  .amenity-intro .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .amenity-intro .inner .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .amenity-intro .inner .text h2 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 500;
    color: #a790c4;
  }
  .amenity-intro #amenity_swiper {
    position: relative;
    width: 700px;
    max-width: 50%;
    overflow: hidden;
    margin: 0 40px 0 0;
  }
  .amenity-intro #amenity_swiper .am-pagination {
    position: absolute;
    z-index: 99;
    bottom: 5px;
    left: 0;
    padding: 0 30px;
  }
  .amenity-intro #amenity_swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: #cccccc;
    opacity: 1;
  }
  .amenity-intro #amenity_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .amenity-items {
    margin-top: 100px;
  }
  .amenity-items .amenity-col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22.5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
  .amenity-items .amenity-col3 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .amenity-items .amenity-col3 .item img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .amenity-items .amenity-col3 .item figcaption {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 0 0;
  }
  .amenity-items .amenity-col3 .item figcaption p {
    margin: 0 0 15px;
  }
  .amenity-items .amenity-col3 .item figcaption p:last-child {
    margin-bottom: 0;
  }
  .amenity-items .amenity-col3 .item figcaption p.price {
    margin-top: auto;
    margin-bottom: 0;
    text-align: right;
  }
  .amenity-items .amenity-other {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
  }
  .amenity-items .amenity-other h3 {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
  }
  .amenity-items .amenity-other ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
  .amenity-items .amenity-other ul li {
    padding: 1em 0;
    border-bottom: 1px solid #cccccc;
  }
  .amenity-items .amenity-other ul li:nth-child(-n+2) {
    border-top: 1px solid #cccccc;
  }
  .amenity-free {
    margin-top: 100px;
  }
  .amenity-free .inner {
    margin-top: 30px;
    padding: 30px;
    background-color: #f9f9f9;
  }
  .amenity-free .inner > div {
    padding: 25px 0;
    border-bottom: 1px solid #cccccc;
  }
  .amenity-free .inner > div:first-child {
    padding-top: 0;
  }
  .amenity-free .inner > div:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .amenity-free .inner dt {
    margin-bottom: 10px;
    font-weight: 500;
  }
  /* -------- ギャラリー --------*/
  #gallery-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
    gap: 10px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 60px;
    font-size: 14px;
  }
  #gallery-nav li {
    text-align: center;
  }
  #gallery-nav li span {
    display: block;
    padding: 10px;
    color: #010037;
    border: 1px solid #010037;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    white-space: nowrap;
    cursor: pointer;
  }
  #gallery-nav li span.active, #gallery-nav li span:hover {
    background-color: #010037;
    color: #fff;
  }
  #gallery-nav li span.active {
    cursor: default;
  }
  .archive-gallery-wrapper {
    width: 1215px;
    max-width: 100%;
    margin: 0 auto;
  }
  .archive-gallery-wrapper .btn-w {
    width: 100%;
    margin: 60px auto;
  }
  .archive-gallery-wrapper .gallery-load {
    cursor: pointer;
  }
  .archive-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .archive-gallery .hidden {
    display: none;
  }
  .archive-gallery img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 390px;
    height: 260px;
    margin: 7.5px;
  }
  .faq-nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .faq-nav ul li {
    width: 285px;
    margin-right: 15px;
  }
  .faq-nav ul li a {
    position: relative;
    display: block;
    padding: 0.6em 0;
    font-weight: 300;
    border-bottom: 2px solid #53514f;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .faq-nav ul li a:hover {
    opacity: 0.7;
  }
  .faq-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 1.25em;
    right: 0;
    width: 9px;
    height: 9px;
    border-right: 1px solid #53514f;
    border-bottom: 1px solid #53514f;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .faq-section {
    padding-top: 100px;
  }
  .faq-section .faq-title {
    margin-bottom: 20px;
    padding-left: 16px;
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    color: #a790c4;
    border-left: 5px solid #a790c4;
  }
  .faq-section:first-of-type {
    padding-top: 60px;
  }
  .faq-section:last-of-type {
    margin-bottom: 100px;
  }
  .faq-section .faq-list {
    color: #777;
    line-height: 2em;
  }
  .faq-section .faq-list > div {
    padding: 20px 20px 20px;
    border-bottom: 1px solid #eee;
  }
  .faq-section .faq-list dt {
    position: relative;
    display: block;
    padding: 5px 0 0 40px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
  }
  .faq-section .faq-list dt::before {
    content: "Q";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1em;
    color: #53514f;
  }
  .faq-section .faq-list dt.open::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .faq-section .faq-list dd {
    position: relative;
    padding: 30px 0 30px 78px;
  }
  .faq-section .faq-list dd p:last-child {
    margin-bottom: 0;
  }
  .faq-section .faq-list dd a {
    color: #a790c4;
    text-decoration: underline;
  }
  .faq-section .faq-list dd::before {
    content: "A";
    position: absolute;
    top: 30px;
    left: 38px;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #a790c4;
  }
  .faq-section .back {
    font-size: 14px;
    text-align: right;
    margin: 10px 0 0;
  }
  .faq-section .back a {
    color: #53514f;
  }
  .faq-section .back a:hover {
    opacity: 0.8;
  }
  .page-events {
    color: #53514f;
  }
  .page-events .events-intro {
    width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
  }
  .page-events .events-intro p:last-child {
    margin-bottom: 0;
  }
  .page-events .events-intro .btn-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    gap: 30px 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
  .page-events .events-intro .btn-area .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  .page-events .events-intro .btn-area .btn small {
    display: block;
    margin-top: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
  }
  .page-events .events-rooms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 40px;
    width: 1200px;
    margin: 0 auto 140px;
  }
  .page-events .events-rooms .item img {
    width: 100%;
    aspect-ratio: 29/17;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 25px;
  }
  .page-events .events-rooms .item .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-events .events-rooms .item .text h2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 30px;
    font-weight: normal;
    color: #a790c4;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
  .page-events .events-rooms .item .text h2 small {
    display: block;
    font-size: 16px;
  }
  .page-events .events-rooms .item .text h2 b {
    font-size: 20px;
    font-weight: normal;
  }
  .page-events .events-rooms .item .text .btn-w a {
    width: 250px;
    height: 50px;
    line-height: 50px;
  }
  .single-events {
    color: #53514f;
  }
  .single-events h1 {
    margin-bottom: 75px;
    color: #a790c4;
    font-weight: 300;
    text-align: center;
  }
  .single-events h1 small {
    display: block;
    font-size: 16px;
  }
  .single-events h1 b {
    font-size: 26px;
    font-weight: 300;
  }
  .single-events #single-events-swiper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 40px;
    margin-bottom: 50px;
  }
  .single-events #single-events-swiper .swiper-wrapper {
    width: 100%;
  }
  .single-events #single-events-swiper .swiper-slide {
    width: 1000px;
    margin: 0 50px;
  }
  .single-events #single-events-swiper .swiper-slide img {
    width: 100%;
    height: 560px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .single-events #single-events-swiper .se-prev,
  .single-events #single-events-swiper .se-next {
    position: absolute;
    top: 0;
    z-index: 100;
    width: calc((100% - 1200px) / 2);
    height: 560px;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
  }
  .single-events #single-events-swiper .se-prev {
    left: 0;
  }
  .single-events #single-events-swiper .se-next {
    right: 0;
  }
  .single-events .single-events-intro {
    text-align: center;
    margin-bottom: 70px;
  }
  .single-events .se-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
  }
  .single-events .se-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(204, 204, 204, 0.8);
    opacity: 1;
    border-radius: 50%;
  }
  .single-events .se-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a790c4;
  }
  .single-events .events-table,
  .single-events .events-layout,
  .single-events .events-data {
    width: 1000px;
    margin: 0 auto 80px;
  }
  .single-events .events-table h2,
  .single-events .events-layout h2,
  .single-events .events-data h2 {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #a790c4;
    line-height: 1.5em;
    border-left: 5px solid #a790c4;
  }
  .single-events .events-table table th,
  .single-events .events-table table td {
    padding: 0.75em 0.5em;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    color: #53514f;
    border: 1px solid #cccccc;
  }
  .single-events .events-table table th small,
  .single-events .events-table table td small {
    font-size: 12px;
  }
  .single-events .events-table table th {
    background-color: #eeeeee;
  }
  .single-events .events-table table .purple {
    text-align: center;
    background-color: #a790c4;
    color: #fff;
    border: 1px solid #fff;
  }
  .single-events .events-table table .center {
    text-align: center;
  }
  .single-events .events-layout {
    padding: 40px;
    border: 1px solid #cccccc;
  }
  .single-events .events-layout #events-layout-swiper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 40px;
  }
  .single-events .events-layout #events-layout-swiper .swiper-wrapper {
    width: 100%;
  }
  .single-events .events-layout #events-layout-swiper .swiper-slide {
    margin: 0 auto;
    text-align: center;
  }
  .single-events .events-layout #events-layout-swiper .se-prev,
  .single-events .events-layout #events-layout-swiper .se-next {
    position: absolute;
    top: calc(50% - 40px);
    z-index: 100;
    width: 40px;
    height: 40px;
    background-color: #a790c4;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px auto;
    cursor: pointer;
  }
  .single-events .events-layout #events-layout-swiper .se-prev {
    left: 0;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-arrow-l.png);
  }
  .single-events .events-layout #events-layout-swiper .se-next {
    right: 0;
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/common/ico-arrow-r.png);
  }
  .single-events .events-data {
    padding: 30px;
    background-color: #f9f9f9;
  }
  .single-events .events-data dl {
    border-top: 1px solid #cccccc;
    line-height: 1.75em;
  }
  .single-events .events-data dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  .single-events .events-data dl dt {
    width: 150px;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-events .events-data dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 14px;
  }
  .single-events .events-data dl dd b {
    color: #a790c4;
    font-weight: 400;
  }
  .single-events .events-data dl dd small {
    font-size: 12px;
  }
  .single-events .events-footer {
    width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  .single-events .events-footer h2 {
    margin-bottom: 1em;
    font-size: 22px;
    font-weight: 300;
  }
  .single-events .events-footer > p {
    font-size: 14px;
  }
  .single-events .events-footer .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
  .single-events .events-footer .btn-area .tel,
  .single-events .events-footer .btn-area .mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 460px;
    height: 60px;
    margin: 0 10px;
  }
  .single-events .events-footer .btn-area .tel:hover,
  .single-events .events-footer .btn-area .mail:hover {
    opacity: 0.8;
  }
  .single-events .events-footer .btn-area .tel span,
  .single-events .events-footer .btn-area .mail span {
    display: inline-block;
    padding: 5px 0 5px 35px;
    background-repeat: no-repeat;
    background-position: left center;
  }
  .single-events .events-footer .btn-area .tel {
    font-size: 20px;
    background-color: #eeeeee;
    color: #53514f;
  }
  .single-events .events-footer .btn-area .tel span {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/events/ico-tel.png);
  }
  .single-events .events-footer .btn-area .mail {
    font-size: 14px;
    font-weight: 500;
    background-color: #a790c4;
    color: #fff;
  }
  .single-events .events-footer .btn-area .mail span {
    background-image: url(https://mercure-wakayamakushimoto-resortandspa.jp/tw/en/wp/wp-content/themes/mercure/assets/images/events/ico-mail.png);
  }
  .wp-pagenavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1200px;
    max-width: 100%;
    margin: 80px auto 0;
    font-size: 19px;
    font-weight: normal;
  }
  .wp-pagenavi > a,
  .wp-pagenavi > span {
    display: inline-block;
    min-width: 40px;
    margin: 0 10px;
    line-height: 40px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wp-pagenavi > a:hover,
  .wp-pagenavi > span:hover {
    background-color: #010037;
    color: #fff;
  }
  .wp-pagenavi .current {
    background-color: #010037;
    color: #fff;
  }
}