@charset "UTF-8";
/* CSS Document */
/* -------------------------------------------------

Reset.css

------------------------------------------------- */
@media print {
  html,
  body {
    zoom: 0.8;
  }
}
* {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
  line-height: 180%;
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  color: #222;
}
body * {
  font-family: "UD新ゴ M", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

a {
  color: #222;
  outline: none;
  text-decoration: none;
  transition: 0.3s;
}

a img {
  border-style: none;
  transition: 0.3s;
}

#wrapper img {
  width: 100%;
  vertical-align: middle;
}

/* media query */
@media all and (min-width: 669px) {
  .sp {
    display: none;
  }
}
@media all and (min-width: 801px) {
  .md {
    display: none;
  }
}
@media all and (min-width: 961px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .ns {
    display: none;
  }
}
@media all and (max-width: 1200px) {
  .np {
    display: none;
  }
}
.bx-wrapper {
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
}

#wrapper {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: 1s;
}
header > div.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 0 30px;
  height: 60px;
}
@media all and (max-width: 1200px) {
  header > div.header {
    border-bottom: 1px solid #055f8c;
  }
}
@media screen and (max-width: 668px) {
  header > div.header {
    align-items: center;
    padding: 0 20px;
  }
}
header > div.header h1 {
  flex-grow: 2;
}
@media screen and (max-width: 668px) {
  header > div.header h1 {
    margin-top: 0;
  }
}
header > div.header h1 span {
  display: block;
  width: 230px;
}
@media screen and (max-width: 668px) {
  header > div.header h1 span {
    width: 150px;
  }
}
header > div.header > ul {
  display: flex;
}
@media all and (max-width: 1200px) {
  header > div.header > ul {
    display: none;
  }
}
header > div.header > ul li {
  margin-right: 60px;
}
@media all and (max-width: 1367px) {
  header > div.header > ul li {
    margin-right: 20px;
  }
}
header > div.header > ul li > a,
header > div.header > ul li > span {
  font-weight: 600;
  transition: 0.5s;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  color: #055f8c;
  font-size: 1.62rem;
}
header > div.header > ul li > a::before,
header > div.header > ul li > span::before {
  content: "▼";
  color: #055f8c;
  margin-right: 5px;
  font-size: 1.5rem;
  transition: 0.5s;
  display: inline-block;
}
header > div.header > ul li > a:hover,
header > div.header > ul li > span:hover {
  border-bottom: 2px solid #055f8c;
}
header > div.header > ul li.lang {
  position: relative;
}
header > div.header > ul li.lang > span {
  cursor: pointer;
}
header > div.header > ul li.lang > span.on::before {
  transform: rotate(180deg);
}
header > div.header > ul li.lang > div {
  display: none;
  position: absolute;
  top: 2.3em;
  left: 0;
  background-color: #eee;
  min-width: 140px;
}
header > div.header > ul li.lang > div > p a {
  display: block;
  padding: 15px 20px;
  font-size: 1.7rem;
  line-height: 100%;
}
header > div.header > ul li.lang > div > p a:hover {
  background-color: #055f8c;
  color: #fff;
}
header > div.header > ul li.lang > div > p:not(:last-child) {
  border-bottom: 2px solid #fff;
}
header > div.header > p.reserved {
  margin-right: 50px;
  height: 100%;
}
@media all and (max-width: 1367px) {
  header > div.header > p.reserved {
    margin-right: 20px;
  }
}
@media screen and (max-width: 960px) {
  header > div.header > p.reserved {
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) {
  header > div.header > p.reserved {
    margin-right: 20px;
  }
}
header > div.header > p.reserved a {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: #055f8c;
  padding: 0 20px;
  text-align: center;
}
@media screen and (max-width: 668px) {
  header > div.header > p.reserved a {
    padding: 0 10px;
  }
}
header > div.header > p.reserved a span {
  font-size: 1.62rem;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 100%;
  transition: 0.5s;
  color: #fff;
}
@media screen and (max-width: 668px) {
  header > div.header > p.reserved a span {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
header > div.header > p.reserved a small {
  display: block;
  font-size: 1.2rem;
  margin-top: 5px;
  letter-spacing: -1px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  header > div.header > p.reserved a small {
    font-size: 0.9rem;
  }
}
header > div.header > p.reserved a:hover span {
  color: #f1c71d;
}
@media all and (max-width: 1200px) {
  header > div.header > p.members {
    display: none;
  }
}
header > div.header > p.members a {
  font-size: 1.62rem;
  font-weight: 600;
  color: #055f8c;
  transition: 0.5s;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
}
@media all and (max-width: 1367px) {
  header > div.header > p.members a {
    letter-spacing: -1px;
  }
}
header > div.header > p.members a:hover {
  border-bottom: 2px solid #055f8c;
}
header > div.header > p.spMenu {
  display: none;
}
@media all and (max-width: 1200px) {
  header > div.header > p.spMenu {
    display: block;
    width: 40px;
    line-height: 100%;
  }
  header > div.header > p.spMenu a {
    line-height: 100%;
  }
}
header > nav {
  background-color: #fff;
  border-bottom: 1px solid #055f8c;
  transition: 0.5s;
  position: relative;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
header > nav.hide {
  transform: translateY(-59px);
}
@media all and (max-width: 1200px) {
  header > nav {
    display: none;
  }
}
header > nav ul {
  display: flex;
  justify-content: center;
}
header > nav ul li:not(:last-child)::after {
  content: "│";
  margin: 0 16px;
}
@media screen and (max-width: 1600px) {
  header > nav ul li:not(:last-child)::after {
    margin: 0 10px;
  }
}
header > nav ul li a {
  font-size: 1.62rem;
  font-weight: 500;
  display: inline-block;
  transition: 0.5s;
  border-bottom: 2px solid #fff;
  color: #333;
}
@media screen and (max-width: 1600px) {
  header > nav ul li a {
    letter-spacing: -1px;
  }
}
header > nav ul li a:hover {
  border-bottom: 2px solid #000;
}
header > nav ul li .subMenu {
  background-color: #f2f2f2;
  border-top: 20px solid #fff;
  padding: 30px 40px;
  opacity: 0;
  transition: 1s;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media all and (max-width: 1367px) {
  header > nav ul li .subMenu {
    padding: 30px 20px;
  }
}
header > nav ul li .subMenu.on {
  opacity: 1;
  pointer-events: all;
}
header > nav ul li .subMenu > p {
  width: calc(16.6666666667% - 30px);
  margin: 0 15px;
}
@media all and (max-width: 1367px) {
  header > nav ul li .subMenu > p {
    width: calc(16.6666666667% - 20px);
    margin: 0 10px;
  }
}
header > nav ul li .subMenu > p a {
  display: block;
  border-bottom: 0;
}
header > nav ul li .subMenu > p a span {
  font-weight: 500;
  font-size: 1.5rem;
  display: inline-block;
  margin-top: 7px;
  line-height: 130%;
  border-bottom: 2px solid #f2f2f2;
  transition: 0.5s;
  padding-bottom: 5px;
}
header > nav ul li .subMenu > p a:hover span {
  border-bottom: 2px solid #000;
}

.menuCommon > section.menuHeader {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px solid #055f8c;
}
@media screen and (max-width: 668px) {
  .menuCommon > section.menuHeader {
    align-items: center;
    padding: 0 20px;
  }
}
.menuCommon > section.menuHeader h1 {
  flex-grow: 2;
}
.menuCommon > section.menuHeader h1 span {
  display: block;
  width: 230px;
}
@media screen and (max-width: 668px) {
  .menuCommon > section.menuHeader h1 span {
    width: 150px;
  }
}
.menuCommon > section.menuHeader > p.reserved {
  margin-right: 50px;
  height: 100%;
}
@media all and (max-width: 1367px) {
  .menuCommon > section.menuHeader > p.reserved {
    margin-right: 20px;
  }
}
@media screen and (max-width: 960px) {
  .menuCommon > section.menuHeader > p.reserved {
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) {
  .menuCommon > section.menuHeader > p.reserved {
    margin-right: 20px;
    line-height: 100%;
  }
}
.menuCommon > section.menuHeader > p.reserved a {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: #055f8c;
  padding: 0 35px;
}
@media screen and (max-width: 668px) {
  .menuCommon > section.menuHeader > p.reserved a {
    padding: 0 15px;
  }
}
.menuCommon > section.menuHeader > p.reserved a span {
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 100%;
  transition: 0.5s;
  color: #fff;
}
@media screen and (max-width: 668px) {
  .menuCommon > section.menuHeader > p.reserved a span {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
.menuCommon > section.menuHeader > p.reserved a:hover {
  transform: translateY(0);
}
.menuCommon > section.menuHeader > p.closeBtn {
  width: 40px;
  cursor: pointer;
}
.menuCommon > section.menuHeader > p.closeBtn:first-child {
  margin: 0 0 0 auto;
}
.menuCommon#hotel > section.menuHeader {
  border-bottom: 0;
}
.menuCommon > nav.mainMenu {
  padding: 0 30px 30px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuCommon > nav.mainMenu {
    padding: 0 30px 20px;
  }
}
.menuCommon > nav.mainMenu > ul > li > a,
.menuCommon > nav.mainMenu > ul > li > span {
  display: block;
  line-height: 130%;
  margin-top: 10px;
}
@media screen and (max-width: 668px) {
  .menuCommon > nav.mainMenu > ul > li > a,
  .menuCommon > nav.mainMenu > ul > li > span {
    font-size: 1.7rem;
  }
}
.menuCommon > nav.mainMenu > ul > li > a:before,
.menuCommon > nav.mainMenu > ul > li > span:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../images/icon_right.svg) no-repeat center/contain;
  margin-right: 8px;
}
.menuCommon > nav.mainMenu > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 5px 0 15px;
}
.menuCommon > nav.mainMenu > ul > li > ul li {
  width: 50%;
  padding-left: 20px;
}
@media screen and (max-width: 668px) {
  .menuCommon > nav.mainMenu > ul > li > ul li {
    width: 100%;
  }
}
.menuCommon > nav.mainMenu > ul > li > ul li a {
  font-size: 1.5rem;
  line-height: 130%;
  display: block;
  margin-top: 5px;
}
.menuCommon > nav.mainMenu > ul > li > ul li a:before {
  content: "－";
}
.menuCommon > nav.mainMenu > ul > li.lang span::before {
  transform: rotate(90deg);
  transition: 0.5s;
}
.menuCommon > nav.mainMenu > ul > li.lang span.on::before {
  transform: rotate(-90deg);
}
.menuCommon > nav.mainMenu > ul > li.lang div {
  display: none;
}
.menuCommon > nav.mainMenu > ul > li.lang div p {
  margin-left: 20px;
}
.menuCommon > nav.mainMenu > ul > li.lang div p a {
  font-size: 1.7rem;
  line-height: 130%;
}
.menuCommon > nav.mainMenu > ul > li.lang div p a:before {
  content: "－";
}
.menuCommon > nav.hotelList {
  padding: 0 30px 30px;
}
.menuCommon > nav.hotelList > div {
  display: flex;
  flex-wrap: wrap;
}
.menuCommon > nav.hotelList > div section {
  width: calc(20% - 20px);
}
.menuCommon > nav.hotelList > div section:not(:first-of-type) {
  margin-left: 25px;
}
@media screen and (max-width: 1650px) {
  .menuCommon > nav.hotelList > div section {
    width: calc(33.3333333333% - 20px);
  }
  .menuCommon > nav.hotelList > div section:not(:first-of-type) {
    margin-left: 0;
  }
  .menuCommon > nav.hotelList > div section:not(:nth-of-type(3n+1)) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 960px) {
  .menuCommon > nav.hotelList > div section {
    width: calc(50% - 10px);
  }
  .menuCommon > nav.hotelList > div section:not(:nth-of-type(3n+1)) {
    margin-left: 0;
  }
  .menuCommon > nav.hotelList > div section:not(:nth-of-type(2n+1)) {
    margin-left: 20px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuCommon > nav.hotelList > div section {
    width: 100%;
  }
  .menuCommon > nav.hotelList > div section:not(:nth-of-type(2n+1)) {
    margin-left: 0;
  }
}
.menuCommon > nav.hotelList > div.tokyo > section > h3 {
  background-color: #f2f2f2;
  padding: 12px;
  margin: 0 0 10px;
  width: 100%;
}
@media screen and (max-width: 668px) {
  .menuCommon > nav.hotelList > div.tokyo > section > h3 {
    padding: 10px;
  }
}
.menuCommon > nav.hotelList > div h2 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 0;
  margin: 20px 0;
  width: 100%;
}
@media screen and (max-width: 668px) {
  .menuCommon > nav.hotelList > div h2 {
    padding: 10px 0;
  }
}
.menuCommon > nav.hotelList > div > section {
  margin-bottom: 35px;
}
.menuCommon > nav.hotelList > div > section > ul li a {
  line-height: 130%;
  margin-top: 7px;
  display: block;
}
.menuCommon > nav.hotelList > div > section > ul li a:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../images/icon_right.svg) no-repeat center/contain;
  margin-right: 8px;
}
.menuCommon .members {
  background-color: #f2f2f2;
  padding: 20px 30px;
  color: #055f8c;
}
.menuCommon .members > h2 {
  font-size: 2.2rem;
  text-align: center;
  line-height: 130%;
  margin-bottom: 20px;
}
@media screen and (max-width: 668px) {
  .menuCommon .members > h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.menuCommon .members > ul {
  display: flex;
  justify-content: space-between;
}
.menuCommon .members > ul li {
  width: calc(50% - 5px);
}
.menuCommon .members > ul li a {
  display: block;
  text-align: center;
  font-weight: 700;
  border: 2px solid #055f8c;
  background-color: #fff;
  padding: 15px 10px;
  font-size: 1.6rem;
  color: #055f8c;
}
@media screen and (max-width: 668px) {
  .menuCommon .members > ul li a {
    padding: 5px;
    font-size: 1.4rem;
  }
}
.menuCommon .members > ul li:first-child a {
  background-color: #055f8c;
  color: #fff;
}
.menuCommon .app a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 20px 30px 0;
}
@media screen and (max-width: 668px) {
  .menuCommon .app a {
    flex-flow: column-reverse;
  }
}
.menuCommon .app a > p {
  width: 170px;
}
@media screen and (max-width: 668px) {
  .menuCommon .app a > p {
    margin: 0 auto;
  }
}
.menuCommon .app a > div {
  width: calc(100% - 190px);
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .menuCommon .app a > div {
    width: 100%;
    margin-bottom: 10px;
  }
}
.menuCommon .app a > div > h2 {
  font-size: 2.2rem;
  color: #055f8c;
  font-weight: 900;
  line-height: 130%;
  margin-bottom: 10px;
}
.menuCommon .app a > div > ul li {
  line-height: 130%;
}
@media screen and (max-width: 668px) {
  .menuCommon .app a > div > ul li {
    font-size: 1.6rem;
  }
}
.menuCommon .app a > div > ul li::before {
  content: "●";
  font-size: 1.2rem;
  color: #f1c71d;
  margin-right: 5px;
}
.menuCommon .sns {
  background-color: #055f8c;
  padding: 30px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuCommon .sns {
    padding: 20px;
  }
}
.menuCommon .sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menuCommon .sns ul li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuCommon .sns ul li {
    width: calc(50% - 5px);
  }
}
.menuCommon .sns ul li a {
  border: 1px solid #fff;
  color: #fff;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .menuCommon .sns ul li a {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuCommon .sns ul li a {
    height: 60px;
  }
}
.menuCommon .sns ul li a span {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 960px) {
  .menuCommon .sns ul li a span {
    text-align: left;
    margin-left: 100px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuCommon .sns ul li a span {
    font-weight: 500;
    margin-left: 55px;
    font-size: 1.4rem;
  }
}
.menuCommon .sns ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuCommon .sns ul li a::before {
    width: 35px;
    height: 35px;
    left: 10px;
  }
}
.menuCommon .sns ul li a.fb::before {
  background-image: url(../images/icon_facebook_w.svg);
}
.menuCommon .sns ul li a.is::before {
  background-image: url(../images/icon_instagram_w.svg);
}

#contents {
  transition: 1s;
}

.pageTitle {
  padding: 40px 30px;
  border-bottom: 1px solid #055f8c;
  background-color: #f2f2f2;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .pageTitle {
    padding: 30px 30px;
  }
}
.pageTitle > h2 {
  font-size: 3.5rem;
  line-height: 130%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 960px) {
  .pageTitle > h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 668px) {
  .pageTitle > h2 {
    font-size: 2.5rem;
  }
}
.pageTitle::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  border-left: 1px solid #055f8c;
  margin: 0 auto;
  bottom: 0;
  left: 50%;
}
@media screen and (max-width: 960px) {
  .pageTitle::after {
    height: 20px;
  }
}

.linkBtn {
  text-align: center;
}
.linkBtn a {
  display: inline-block;
  background-color: #055f8c;
  color: #fff !important;
  font-size: 2.5rem;
  line-height: 130%;
  padding: 10px 50px;
  letter-spacing: 3px;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .linkBtn a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .linkBtn a {
    border-radius: 15px;
  }
}
@media screen and (max-width: 668px) {
  .linkBtn a {
    display: block;
    padding: 10px;
  }
}
.linkBtn a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: 0.5s;
}
.linkBtn a:hover::after {
  background-color: #fff;
}
@media screen and (max-width: 668px) {
  .linkBtn a:hover::after {
    background-color: transparent;
  }
}

footer {
  background-color: #e6e6e6;
  padding: 70px 0 50px;
}
@media screen and (max-width: 960px) {
  footer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 668px) {
  footer {
    padding: 40px 0 30px;
  }
}
footer > div {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1260px) {
  footer > div {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  footer > div {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
footer > div > div.link ul.textBanner {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  footer > div > div.link ul.textBanner {
    margin-bottom: 30px;
  }
}
footer > div > div.link ul.textBanner li {
  width: calc(33.3333333333% - 28px);
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  footer > div > div.link ul.textBanner li {
    width: 100%;
    margin-bottom: 10px;
  }
}
footer > div > div.link ul.textBanner li:not(:nth-child(3n+1)) {
  margin-left: 42px;
}
@media screen and (max-width: 960px) {
  footer > div > div.link ul.textBanner li:not(:nth-child(3n+1)) {
    margin-left: 0px;
  }
}
footer > div > div.link ul.textBanner li a {
  background-color: #fff;
  border-radius: 15px;
  display: block;
  font-size: 2.5rem;
  line-height: 130%;
  letter-spacing: 1px;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #055f8c;
  color: #055f8c;
}
@media screen and (max-width: 960px) {
  footer > div > div.link ul.textBanner li a {
    font-size: 2rem;
  }
}
@media all and (max-width: 1200px) {
  footer > div > div.link ul.textBanner li a {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 960px) {
  footer > div > div.link ul.textBanner li a {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 668px) {
  footer > div > div.link ul.textBanner li a {
    padding: 15px 10px;
  }
}
footer > div > div.link ul.textBanner li a:hover {
  background-color: #055f8c;
  color: #fff;
}
footer > div > div.link ul.textLink {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  footer > div > div.link ul.textLink {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  footer > div > div.link ul.textLink li {
    width: 100%;
  }
}
footer > div > div.link ul.textLink li a {
  margin: 0 20px 15px;
  display: block;
  line-height: 100%;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
  color: #055f8c;
}
@media screen and (max-width: 960px) {
  footer > div > div.link ul.textLink li a {
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 668px) {
  footer > div > div.link ul.textLink li a {
    margin: 0 0 13px;
  }
}
footer > div > div.link ul.textLink li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 13px;
  margin-right: 5px;
  background: url(../images/icon_right.svg) no-repeat center/contain;
  filter: saturate(0);
}
footer > div > div.link ul.textLink li a:hover {
  border-bottom: 1px solid #055f8c;
}
footer > div > section > h5 {
  font-size: 2.5rem;
  line-height: 130%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 2px;
  color: #666;
  border-bottom: 1px solid #055f8c;
  margin-bottom: 20px;
  padding-bottom: 15px;
  color: #055f8c;
}
@media screen and (max-width: 960px) {
  footer > div > section > h5 {
    font-size: 2rem;
  }
}
footer > div > section.site {
  margin-bottom: 50px;
}
footer > div > section.site > ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 668px) {
  footer > div > section.site > ul li {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 668px) {
  footer > div > section.site > ul li:not(:first-child) {
    margin-top: 10px;
  }
}
footer > div > section.site > ul li:not(:first-child)::before {
  content: "/";
  margin: 0 30px;
  color: #055f8c;
}
@media screen and (max-width: 960px) {
  footer > div > section.site > ul li:not(:first-child)::before {
    margin: 0 20px;
  }
}
@media screen and (max-width: 668px) {
  footer > div > section.site > ul li:not(:first-child)::before {
    content: "";
    margin: 0;
  }
}
footer > div > section.site > ul li a {
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  color: #055f8c;
}
footer > div > section.site > ul li a:hover {
  border-bottom: 1px solid #055f8c;
}
@media screen and (max-width: 668px) {
  footer > div > section.site > ul li a::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 18px;
    margin-left: 8px;
    background: url(../images/icon_right.svg) no-repeat center/contain;
    transition: 0.2s;
  }
}
footer > div > section.banner .footerBanner {
  margin-bottom: 40px;
}
@media all and (max-width: 1367px) {
  footer > div > section.banner .footerBanner {
    padding: 0 40px;
  }
}
footer > div > section.banner .footerBanner a:hover img {
  transform: scale(1.03);
}
footer > div > section.banner .snsBanner {
  display: flex;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  footer > div > section.banner .snsBanner {
    margin-bottom: 60px;
  }
}
footer > div > section.banner .snsBanner li {
  width: 30px;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  footer > div > section.banner .snsBanner li {
    margin: 0 15px 0 0;
  }
}
footer > div .copy {
  text-align: center;
  line-height: 140%;
  color: #055f8c;
}
@media screen and (max-width: 668px) {
  footer > div .copy {
    text-align: left;
    padding-right: 50px;
  }
}

.pagetop {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 110px;
  line-height: 100%;
  z-index: 20;
}
.pagetop a {
  display: block;
  text-align: center;
  line-height: 100%;
  font-size: 1.4rem;
}
.pagetop a::before {
  content: "";
  margin: 0 auto 5px;
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/icon_left.svg) no-repeat center/contain;
  transform: rotate(90deg);
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .pagetop a::before {
    width: 20px;
    height: 20px;
  }
}
.pagetop a:hover {
  transform: translateY(-3px);
}

/* //店舗によって言語切り替えリンクを非表示にする
//簡体語リンク非表示 
body {
  &.GZ,// 東急ステイ銀座
	&.HIG,// 東急ステイ築地
	&.SHI,// 東急ステイ新橋
	&.AO,// 東急ステイ青山プレミア
	&.YU,// 東急ステイ目黒・祐天寺
	&.YO,// 東急ステイ用賀
  &.SE,// 東急ステイ新宿イーストサイド
	&.SJ,// 東急ステイ新宿
	&.YOT,// 東急ステイ四谷
	&.IKE,// 東急ステイ池袋
	&.TN,// 東急ステイ高輪
	&.GO,// 東急ステイ五反田
	&.KMT,// 東急ステイ蒲田
	&.SUI,// 東急ステイ水道橋
	&.NI,// 東急ステイ日本橋
	&.MON,// 東急ステイ門前仲町
	&.HAA,// 東急ステイ函館朝市　灯の湯
	&.HTM,// 東急ステイ飛騨高山 結の湯
	&.KZ,// 東急ステイ金沢
	&.KS,// 東急ステイ京都阪井座(四条河原町)
	&.KR,// 東急ステイ京都三条烏丸
	&.FT,// 東急ステイ福岡天神
	&.HT// 東急ステイ博多
  {
    //PC
    header > div.header > ul li.lang > div > p.chn_cn {
      display: none;
    }
    //SP
    .menuCommon > nav.mainMenu > ul > li.lang div p.chn_cn {
      display: none;
    }
  }
}
// 繁体語リンク非表示
body {
  &.GZ,// 東急ステイ銀座
	&.HIG,// 東急ステイ築地
	&.SHI,// 東急ステイ新橋
	&.AO,// 東急ステイ青山プレミア
	&.YU,// 東急ステイ目黒・祐天寺
	&.YO,// 東急ステイ用賀
  &.SE,// 東急ステイ新宿イーストサイド
	&.SJ,// 東急ステイ新宿
	&.YOT,// 東急ステイ四谷
	&.IKE,// 東急ステイ池袋
	&.TN,// 東急ステイ高輪
	&.GO,// 東急ステイ五反田
	&.KMT,// 東急ステイ蒲田
	&.SUI,// 東急ステイ水道橋
	&.NI,// 東急ステイ日本橋
	&.MON,// 東急ステイ門前仲町
	&.HAA,// 東急ステイ函館朝市　灯の湯
	&.HTM,// 東急ステイ飛騨高山 結の湯
	&.KZ,// 東急ステイ金沢
	&.KS,// 東急ステイ京都阪井座(四条河原町)
	&.KR,// 東急ステイ京都三条烏丸
	&.FT,// 東急ステイ福岡天神
	&.HT// 東急ステイ博多
  {
    //PC
    header > div.header > ul li.lang > div > p.chn_tc {
      display: none;
    }
    //SP
    .menuCommon > nav.mainMenu > ul > li.lang div p.chn_tc {
      display: none;
    }
  }
}
// 韓国語リンク非表示
body {
  &.GZ,// 東急ステイ銀座
	&.HIG,// 東急ステイ築地
	&.SHI,// 東急ステイ新橋
	&.AO,// 東急ステイ青山プレミア
	&.YU,// 東急ステイ目黒・祐天寺
	&.YO,// 東急ステイ用賀
  &.SE,// 東急ステイ新宿イーストサイド
	&.SJ,// 東急ステイ新宿
	&.YOT,// 東急ステイ四谷
	&.IKE,// 東急ステイ池袋
	&.TN,// 東急ステイ高輪
	&.GO,// 東急ステイ五反田
	&.KMT,// 東急ステイ蒲田
	&.SUI,// 東急ステイ水道橋
	&.NI,// 東急ステイ日本橋
	&.MON,// 東急ステイ門前仲町
	&.HAA,// 東急ステイ函館朝市　灯の湯
	&.HTM,// 東急ステイ飛騨高山 結の湯
	&.KZ,// 東急ステイ金沢
	&.KS,// 東急ステイ京都阪井座(四条河原町)
	&.KR,// 東急ステイ京都三条烏丸
	&.FT,// 東急ステイ福岡天神
	&.HT// 東急ステイ博多
  {
    //PC
    header > div.header > ul li.lang > div > p.kor {
      display: none;
    }
    //SP
    .menuCommon > nav.mainMenu > ul > li.lang div p.kor {
      display: none;
    }
  }
} */