@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: #050033;
}

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;
}

video {
  -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;
}

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;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #container {
    width: 100vw;
    overflow: hidden;
  }
  #hamburger {
    position: absolute;
    top: 0;
    right: 70px;
    display: inline-block;
    width: 40px;
    height: 60px;
  }
  #hamburger div {
    width: 100%;
    height: 100%;
    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;
  }
  #hamburger i {
    display: inline-block;
    width: 50%;
    height: 2px;
    border-radius: 2px;
    background-color: #050033;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 2px;
    border-radius: 3px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #050033;
  }
  #hamburger i:before {
    -webkit-transform: translate(0px, -7px);
            transform: translate(0px, -7px);
  }
  #hamburger i:after {
    -webkit-transform: translate(0px, 5px);
            transform: translate(0px, 5px);
  }
  #hamburger.active i {
    height: 0;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(45deg) translate(-1px, -2px);
            transform: rotate(45deg) translate(-1px, -2px);
  }
  #header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    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;
    height: 60px;
    padding: 0 0 0 4vw;
    font-family: "Noto Serif JP", serif;
    background-color: rgba(255, 255, 255, 0.65);
  }
  #header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  #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 #logo {
    width: clamp(220px, 58vw, 300px);
    margin-right: 50px;
  }
  #header #logo a {
    display: grid;
    place-items: center;
  }
  #header .header-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100dvh - 60px);
    padding-bottom: 70px;
    background-color: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    overflow-y: auto;
  }
  #header .inner .header-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 4vw;
  }
  #header .inner .header-sns {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    list-style: none;
    width: 100%;
    margin: 0 auto;
    padding: 25px 0 0;
    text-align: center;
    border-top: 1px solid #d3a86a;
  }
  #header .inner .header-sns li {
    margin: 0 10px 0 0;
  }
  #header .inner .header-sns li a {
    display: block;
    width: 26px;
    height: 26px;
    margin: 0 auto;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #444444;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .header-sns li a.instagram {
    -webkit-mask-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-sns-insta.svg);
            mask-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-sns-insta.svg);
  }
  #header .inner .header-tel {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 25px 0 0;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.5em;
  }
  #header .inner .header-tel a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 35px;
    padding-left: 40px;
    background-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/footer-tel.svg);
    background-repeat: no-repeat;
    background-size: 26px 35px;
    background-position: center left;
  }
  #header .inner .header-tel a span,
  #header .inner .header-tel a b {
    display: block;
  }
  #header .inner .header-tel a span {
    font-weight: 400;
  }
  #header .inner .header-tel a b {
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #header .inner .language {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    position: relative;
  }
  #header .inner .language h2 {
    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: 275px;
    height: 45px;
    padding: 0 20px;
    margin: 0 auto;
    font-size: clamp(13px, 0.75vw, 14px);
    line-height: 22px;
    font-weight: normal;
    color: #444444;
    text-align: center;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
  }
  #header .inner .language h2 span {
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    background-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-lang.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center left;
  }
  #header .inner .language h2 span::after {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 0;
    width: 4.5px;
    height: 6px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: #222222;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .language .lang-list {
    display: none;
    list-style: none;
    position: absolute;
    bottom: 45px;
    left: 50%;
    z-index: 999;
    width: 275px;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  #header .inner .language .lang-list li {
    margin: 0 0 2px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.5);
  }
  #header .inner .language .lang-list li a {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1em 0;
    font-size: 13px;
    font-weight: 500;
    color: #6e6e6e;
    line-height: 1em;
    text-align: center;
  }
  #header .inner .language .lang-list li a::after {
    content: "";
    position: absolute;
    top: calc(50% + 1.25em);
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #d3a86a;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .header-list {
    list-style: none;
    width: 400px;
    max-width: 100%;
    padding: 40px 10vw;
    font-size: clamp(13px, 0.75vw, 14px);
  }
  #header .inner .header-list > li {
    position: relative;
    margin-bottom: 1em;
    font-weight: 600;
  }
  #header .inner .header-list > li:not(.parent)::before, #header .inner .header-list > li:not(.parent)::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 5px);
    right: 20px;
    display: block;
    height: 1px;
    background-color: #444444;
  }
  #header .inner .header-list > li:not(.parent)::before {
    width: 20px;
  }
  #header .inner .header-list > li:not(.parent)::after {
    width: 10px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
  #header .inner .header-list > li > a,
  #header .inner .header-list > li > span {
    position: relative;
    display: block;
    height: 100%;
    padding: 0.5em 0;
    color: #444444;
    white-space: nowrap;
    letter-spacing: 0.05em;
  }
  #header .inner .header-list > li > a::after,
  #header .inner .header-list > li > span::after {
    content: "";
    position: absolute;
    top: calc(50% + 1.25em);
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #d3a86a;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .header-list > li > a .ja,
  #header .inner .header-list > li > span .ja {
    display: none;
  }
  #header .inner .header-list > li > a b,
  #header .inner .header-list > li > span b {
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .header-list > li > a.current::after,
  #header .inner .header-list > li > span.current::after {
    width: 100%;
  }
  #header .inner .header-list > li > a.current .en,
  #header .inner .header-list > li > span.current .en {
    opacity: 0;
  }
  #header .inner .header-list > li > a.current .ja,
  #header .inner .header-list > li > span.current .ja {
    position: absolute;
    top: 0;
    display: block;
  }
  #header .inner .header-list > li > span {
    cursor: pointer;
  }
  #header .inner .header-list .children {
    display: none;
    list-style: none;
    padding: 1em 0;
    white-space: nowrap;
  }
  #header .inner .header-list .children li:not(:last-child) {
    margin-bottom: 1em;
  }
  #header .inner .header-list .children li a {
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.5em 0 0.5em 20px;
    color: #6e6e6e;
    line-height: 1em;
  }
  #header .inner .header-list .children li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 4px;
    -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
            clip-path: polygon(100% 50%, 0 0, 0 100%);
    background-color: #222222;
  }
  #header .inner .header-list .children li {
    white-space: nowrap;
  }
  #header .inner .sp-sub-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0 35px;
  }
  #header .inner .sp-sub-nav li {
    margin: 0 0 15px;
    font-size: clamp(11px, 2.9vw, 13px);
    font-weight: 600;
    line-height: 1em;
  }
  #header .inner .sp-sub-nav li:nth-child(odd) {
    border-right: 1px solid #888888;
  }
  #header .inner .sp-sub-nav li a {
    display: block;
    padding: 0.5em 0.25em;
    color: #444444;
    line-height: 1.5em;
    text-align: center;
  }
  .header-rev a {
    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: 60px;
    height: 60px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    background-color: #050033;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-rev a::before {
    content: "";
    display: block;
    width: 22px;
    height: 16px;
    margin: 0 auto 2px;
    -webkit-mask-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-reserve.svg);
            mask-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-reserve.svg);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #cookie-notice, #cookie-notice .cn-button:not(.cn-button-custom) {
    font-family: "Noto Sans JP", sans-serif !important;
  }
  #footer {
    padding: 100px 3.35vw 20px;
    font-family: "Noto Sans JP", sans-serif;
    color: #444444;
  }
  #footer a {
    color: #444444;
  }
  #footer .pankz {
    display: none;
  }
  #footer .inner {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
  }
  #footer .footer-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    padding: 0 0 35px;
    font-family: "Noto Sans JP", sans-serif;
    border-bottom: 1px solid #d3a86a;
  }
  #footer .footer-nav li {
    margin: 0 0 15px;
    font-size: clamp(11px, 2.9vw, 13px);
    font-weight: 600;
    line-height: 1em;
  }
  #footer .footer-nav li:nth-child(odd) {
    border-right: 1px solid #888888;
  }
  #footer .footer-nav li a {
    display: block;
    padding: 0.5em 0.25em;
    color: #444444;
    line-height: 1.5em;
    text-align: center;
  }
  #footer .footer-bottom {
    padding-top: 100px;
  }
  #footer .footer-logos {
    margin-bottom: 60px;
    text-align: center;
  }
  #footer .footer-logos .grand {
    margin-bottom: 30px;
  }
  #footer .footer-catch {
    margin-bottom: 70px;
    text-align: center;
    color: #d3a86a;
  }
  #footer .footer-catch h3 {
    margin-right: -0.65em;
    margin-bottom: 15px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(26px, 6.4vw, 40px);
    letter-spacing: 0.1em;
  }
  #footer .footer-catch p {
    margin-right: -0.1em;
    margin-bottom: 0;
    font-family: "Marcellus", serif;
    font-size: clamp(12px, 3.2vw, 14px);
    letter-spacing: 0.1em;
  }
  #footer .footer-acrd {
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 275px;
    max-width: 100%;
    margin: 0 auto 50px;
    padding: 1em;
    font-size: clamp(14px, 3.7vw, 16px);
    color: #fff;
    text-align: center;
    background-color: #d3a86a;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  #footer .footer-acrd::before, #footer .footer-acrd::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 10px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .footer-acrd::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #footer .footer-acrd.active::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  #footer .footer-hotels {
    display: none;
    margin: 0 auto;
    padding: 0 3.35vw;
  }
  #footer .footer-hotels .area {
    padding: 30px 0;
    border-bottom: 1px solid #222222;
  }
  #footer .footer-hotels .area:first-child {
    border-top: 1px solid #222222;
  }
  #footer .footer-hotels .area .area-title {
    margin-bottom: 30px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
  }
  #footer .footer-hotels .area .area-title span {
    margin-left: 0.5em;
  }
  #footer .footer-hotels .area ul {
    list-style: none;
  }
  #footer .footer-hotels .area ul li {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: 1em;
  }
  #footer .footer-hotels .area ul li:not(:last-child) {
    margin-bottom: 2em;
    border-right: 1px solid #fff;
  }
  #footer .footer-hotels .area ul li a {
    position: relative;
    display: block;
    padding-left: 22px;
  }
  #footer .footer-hotels .area ul li a::before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    width: 8px;
    height: 6px;
    -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
            clip-path: polygon(100% 50%, 0 0, 0 100%);
    background-color: #050033;
  }
  #footer .footer-sns {
    margin: 40px auto 0;
    text-align: center;
  }
  #footer .footer-sns a img {
    width: 35px;
  }
  #footer .footer-tel {
    margin: 40px 0 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.5em;
    letter-spacing: 0.1em;
  }
  #footer .footer-tel a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 35px;
    padding-left: 40px;
    background-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/footer-tel.svg);
    background-repeat: no-repeat;
    background-size: 26px 35px;
    background-position: center left;
  }
  #footer .footer-tel a span,
  #footer .footer-tel a b {
    display: block;
  }
  #footer .footer-tel a span {
    font-weight: 400;
  }
  #footer .footer-tel a b {
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #footer .copyright {
    margin: 0;
    padding-top: 20px;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    line-height: 1em;
    border-top: 1px solid #d3a86a;
  }
  #footer .copyright small {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  .sp {
    display: none !important;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #hamburger {
    display: none;
  }
  #header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    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;
    height: 100px;
    padding: 0 0 0 30px;
    font-family: "Noto Serif JP", serif;
    background-color: rgba(255, 255, 255, 0.7);
  }
  #header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  #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 #logo {
    width: clamp(300px, 23.5vw, 448px);
    margin-right: 50px;
  }
  #header #logo a {
    display: grid;
    place-items: center;
  }
  #header .header-nav {
    margin-left: auto;
  }
  #header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .inner .header-sns {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: clamp(25px, 2.3vw, 50px);
  }
  #header .inner .header-sns li {
    margin: 0 10px 0 0;
  }
  #header .inner .header-sns li a {
    display: block;
    width: 26px;
    height: 26px;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #444444;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .header-sns li a.instagram {
    -webkit-mask-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-sns-insta.svg);
            mask-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-sns-insta.svg);
  }
  #header .inner .header-sns li a:hover {
    background-color: #d3a86a;
  }
  #header .inner .header-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
  }
  #header .inner .header-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    font-size: clamp(13px, 0.75vw, 14px);
  }
  #header .inner .header-list > li {
    position: relative;
    height: 100px;
    margin-right: clamp(25px, 2.3vw, 50px);
    font-weight: 600;
    line-height: 100px;
    text-align: center;
  }
  #header .inner .header-list > li.nav-hotels, #header .inner .header-list > li.nav-concept, #header .inner .header-list > li.nav-ideas {
    display: block;
    width: 5.25em;
  }
  #header .inner .header-list > li.nav-ideas {
    width: 7.25em;
  }
  #header .inner .header-list > li.nav-news {
    width: 4.25em;
  }
  #header .inner .header-list > li > a,
  #header .inner .header-list > li > span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #444444;
    white-space: nowrap;
    letter-spacing: 0.05em;
  }
  #header .inner .header-list > li > a::after,
  #header .inner .header-list > li > span::after {
    content: "";
    position: absolute;
    top: calc(50% + 1.25em);
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #d3a86a;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .header-list > li > a b,
  #header .inner .header-list > li > span b {
    display: block;
    width: 100%;
    margin: 0 auto;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .header-list > li > a b.ja,
  #header .inner .header-list > li > span b.ja {
    display: none;
  }
  #header .inner .header-list > li > a:hover::after, #header .inner .header-list > li > a.current::after,
  #header .inner .header-list > li > span:hover::after,
  #header .inner .header-list > li > span.current::after {
    width: 100%;
  }
  #header .inner .header-list > li > a:hover .en, #header .inner .header-list > li > a.current .en,
  #header .inner .header-list > li > span:hover .en,
  #header .inner .header-list > li > span.current .en {
    display: none;
  }
  #header .inner .header-list > li > a:hover .ja, #header .inner .header-list > li > a.current .ja,
  #header .inner .header-list > li > span:hover .ja,
  #header .inner .header-list > li > span.current .ja {
    position: absolute;
    top: 0;
    display: block;
  }
  #header .inner .header-list > li > span {
    cursor: pointer;
  }
  #header .inner .header-list > li .children {
    display: none;
    list-style: none;
    position: absolute;
    top: 100px;
    left: 0;
    padding: calc(40px - 1em) 50px;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  #header .inner .header-list > li .children li a {
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1em 0;
    color: #6e6e6e;
    line-height: 1em;
  }
  #header .inner .header-list > li .children li a::after {
    content: "";
    position: absolute;
    top: calc(50% + 1.25em);
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #d3a86a;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .header-list > li .children li a:hover::after {
    width: 100%;
  }
  #header .inner .header-list > li .children li {
    white-space: nowrap;
  }
  #header .inner .language {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    margin-right: clamp(25px, 2.3vw, 50px);
  }
  #header .inner .language h2 {
    padding: 0 0 0 clamp(22px, 2.15vw, 30px);
    font-size: clamp(13px, 0.75vw, 14px);
    line-height: 22px;
    font-weight: normal;
    color: #444444;
    background-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-lang.svg);
    background-repeat: no-repeat;
    background-size: clamp(16px, 1.15vw, 22px);
    background-position: center left;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
  }
  #header .inner .language h2::after {
    content: "";
    position: absolute;
    top: calc(50% + 1.25em);
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #d3a86a;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .language h2:hover::after {
    width: 100%;
  }
  #header .inner .language .lang-list {
    display: none;
    list-style: none;
    position: absolute;
    top: 100px;
    left: 0;
    padding: calc(40px - 1em) 50px;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  #header .inner .language .lang-list li a {
    position: relative;
    display: inline-block;
    padding: 1em 0;
    font-size: 14px;
    font-weight: 600;
    color: #6e6e6e;
    line-height: 1em;
    letter-spacing: 0.1em;
  }
  #header .inner .language .lang-list li a::after {
    content: "";
    position: absolute;
    top: calc(50% + 1.25em);
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #d3a86a;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .inner .language .lang-list li a:hover::after {
    width: 100%;
  }
  .header-rev a {
    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: clamp(120px, 10.1vw, 130px);
    height: 100px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: #050033;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-rev a::before {
    content: "";
    display: block;
    width: 37px;
    height: 26px;
    margin: 0 auto 2px;
    -webkit-mask-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-reserve.svg);
            mask-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/header-reserve.svg);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-rev a:hover {
    color: #d3a86a;
    background-color: #18115A;
  }
  .header-rev a:hover::before {
    background-color: #d3a86a;
  }
  #cookie-notice, #cookie-notice .cn-button:not(.cn-button-custom) {
    font-family: "Noto Sans JP", sans-serif !important;
  }
  #footer {
    padding: 200px 0 50px;
    font-family: "Noto Sans JP", sans-serif;
    color: #444444;
  }
  #footer a {
    color: #444444;
  }
  #footer .pankz {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 13px;
    font-family: "Noto Serif JP", serif;
    color: #222222;
    background-color: #F7F7F7;
  }
  #footer .pankz li {
    position: relative;
    display: block;
    margin-right: 25px;
    padding-right: 44px;
  }
  #footer .pankz li::before, #footer .pankz li::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 5px);
    right: 0;
    display: block;
    height: 1px;
    background-color: #222222;
  }
  #footer .pankz li::before {
    width: 20px;
  }
  #footer .pankz li::after {
    width: 10px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
  #footer .pankz li:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  #footer .pankz li:last-child::before, #footer .pankz li:last-child::after {
    display: none;
  }
  #footer .pankz li a {
    text-decoration: underline;
  }
  #footer .pankz li a:hover {
    text-decoration: none;
  }
  #footer .pankz li a span {
    font-size: 15px;
  }
  #footer .pankz li > span {
    font-size: 14px;
  }
  #footer .inner {
    width: 1500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
  }
  #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;
    margin-top: 100px;
    padding: 0 10px 35px;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #d3a86a;
  }
  #footer .footer-nav li {
    margin: 0 12px 15px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1em;
  }
  #footer .footer-nav li a {
    color: #444444;
    white-space: nowrap;
  }
  #footer .footer-nav li a:hover {
    text-decoration: underline;
  }
  #footer .footer-bottom {
    padding-top: 100px;
  }
  #footer .footer-logos {
    margin-bottom: 60px;
    text-align: center;
  }
  #footer .footer-logos .grand {
    margin-bottom: 20px;
  }
  #footer .footer-catch {
    margin-bottom: 100px;
    text-align: center;
    color: #d3a86a;
  }
  #footer .footer-catch h3 {
    margin-right: -0.4em;
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    letter-spacing: 0.1em;
  }
  #footer .footer-catch p {
    margin-right: -0.1em;
    margin-bottom: 0;
    font-family: "Marcellus", serif;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  #footer .footer-hotels {
    margin: 0 auto;
    border-bottom: 1px solid #fff;
  }
  #footer .footer-hotels .area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 25px;
  }
  #footer .footer-hotels .area .area-title {
    width: 150px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #footer .footer-hotels .area .area-title span {
    display: none;
  }
  #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-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.1em;
  }
  #footer .footer-hotels .area ul li:not(:last-child) {
    margin-right: 20px;
    border-right: 1px solid #fff;
  }
  #footer .footer-hotels .area ul li a:hover {
    text-decoration: underline;
  }
  #footer .footer-tel {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0.1em;
  }
  #footer .footer-tel a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 35px;
    padding-left: 30px;
    background-image: url(https://accor-resorts-japan.jp/tw/en/cn/ko/wp/wp-content/themes/bland2025/assets/images25/common/footer-tel.svg);
    background-repeat: no-repeat;
    background-size: 21px 27.5px;
    background-position: center left;
  }
  #footer .footer-tel a:hover {
    text-decoration: underline;
  }
  #footer .footer-tel a span,
  #footer .footer-tel a b {
    display: block;
  }
  #footer .footer-tel a span {
    font-weight: 400;
  }
  #footer .footer-tel a b {
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #footer .copyright {
    margin: 0;
    padding-top: 50px;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    line-height: 1em;
    border-top: 1px solid #d3a86a;
  }
  #footer .copyright small {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
}




/* accor-resorts-japan.jp リニューアル タイトル重複 @ 250508 */
html[lang="en"] :is(.page-header, .info-mv, .hotels-mv) .text hgroup p{
	display: none;
}
html[lang="en"] :is(.page-header, .info-mv, .hotels-mv) .text hgroup :is(.page-title, h1){
	letter-spacing: 0.1em;
	font-size: clamp(36px, 3.27vw, 50px);
	font-family: "Marcellus", serif;
	font-weight: normal;
  text-transform: uppercase;
	
	position: relative;
	left: -20px;
	z-index: 1;
	
	margin-top: 0;
	padding-left: 20px;
}
html[lang="en"] :is(.page-header, .info-mv, .hotels-mv) .text hgroup :is(.page-title, h1)::before{
	content: "";
	position: absolute;
	inset: 0 100% 0 0;
	z-index: -1;
	display: block;
	margin-block: auto;
	height: 1px;
	border-bottom: 1px solid;
	border-image: linear-gradient(#d3a86a 0 0) 1 / 1 / 0 0 0 100vw;
}
@media screen and (max-width: 1099px) {
	html[lang="en"] :is(.page-header, .info-mv, .hotels-mv) .text hgroup :is(.page-title, h1){
		font-size: clamp(24px, 6.6vw, 40px);
		padding-left: 3.35vw;
		left: -10px;
	}
	html[lang="en"] :is(.page-header, .info-mv, .hotels-mv) .text hgroup :is(.page-title, h1)::before{
		top: 0.65em;
		bottom: auto;
	}
}

/* .info-mv .text hgroup p
.info-mv .text hgroup .page-title */

/* .hotels-mv .text hgroup p
.hotels-mv .text hgroup h1 */

/* .hotels-mv .text hgroup p
.hotels-mv .text hgroup h1 */

html[lang="en"] .concept-mv .title p{
  display: none;
}

html[lang="en"] .plan-mv .text hgroup small,
html[lang="en"] .sightseeing-mv .text hgroup small{
  display: none;
}

html[lang="en"] #footer .footer-catch p {
  display: none;
}
