@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;
  }
}
/* ***************************************************
 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;
  }
}