@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");

/* ::::::::::  トップページ  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* =========================================================
common
========================================================= */
.contents p {
  letter-spacing: 0.5px;
}

.contents .lead {
  text-align: center;
}

.boxList .listBox {
  width: 340px;
  max-width: 30.91%;
  margin: 0 3.6% 50px 0;
}

.boxList .listBox:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .boxList .listBox {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
  }

  .boxList .listBox .title {
    font-size: 1.6rem;
  }
}

.columnList {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .columnList {
    display: block;
  }
}

.columnList li {
  width: 300px;
  max-width: 27.28%;
  margin: 0 9.08% 40px 0;
}

@media (max-width: 768px) {
  .columnList li {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
  }
}

.columnList li:nth-of-type(3n) {
  margin-right: 0;
}

.columnList li .photo {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .columnList li .photo {
    width: 100%;
    margin-bottom: 10px;
  }
}

.columnList li h3 {
  margin-bottom: 5px;
  color: #222222;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .columnList li h3 {
    margin-bottom: 0;
  }
}

.columnList li p {
  line-height: 2;
}

.tableBlock {
  background: #F2F1F1;
  padding: 80px 80px 85px;
  margin-top: 55px;
}

@media (max-width: 768px) {
  .tableBlock {
    padding: 45px 25px;
  }
}

.tableBlock h3 {
  font-size: 3.4rem;
  text-align: center;
  color: #222;
  letter-spacing: 0.2rem;
  margin-top: 70px;
}

@media (max-width: 768px) {
  .tableBlock h3 {
    font-size: 2.1rem;
  }
}

.tableBlock h3:first-of-type {
  margin-top: 0;
}

.tableBlock p {
  text-align: center;
  color: #423B37;
}

.tableBlock .tableWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .tableBlock .tableWrap {
    flex-direction: column;
  }
}

.tableBlock .tableWrap dl {
  display: flex;
  width: 48%;
  border-bottom: 1px solid #D7D4D4;
  padding: 12.5px 0;
}

@media (max-width: 768px) {
  .tableBlock .tableWrap dl {
    width: 100%;
    padding: 12px 0;
  }

  .tableBlock .tableWrap dl:nth-child(2) {
    border-top: none;
  }
}

.tableBlock .tableWrap dl:first-child {
  border-top: 1px solid #D7D4D4;
}

.tableBlock .tableWrap dl dt {
  vertical-align: middle;
  color: #2E2F2F;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 0.08rem;
}

.tableBlock .tableWrap dl dd {
  width: 30%;
  text-align: right;
  color: #7F7F80;
}

.tableBlock .tableWrap.wide dl {
  width: 100%;
}

.tableBlock .tableWrap.wide+.tableWrap {
  margin-top: 0;
}

.tableBlock .tableWrap.wide+.tableWrap dl:first-child {
  border-top: none;
}

@media (max-width: 768px) {
  .tableBlock .tableWrap02 {
    margin-top: 0;
  }
}

.tableBlock .tableWrap02 .inner {
  width: 48%;
  position: relative;
}

@media (max-width: 768px) {
  .tableBlock .tableWrap02 .inner {
    width: 100%;
  }
}

.tableBlock .tableWrap02 .inner h4 {
  color: #222222;
  font-size: 2rem;
  margin-top: 35px;
  margin-bottom: 20px;
  letter-spacing: 0.15rem;
}

@media (max-width: 768px) {
  .tableBlock .tableWrap02 .inner h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.7rem;
  }
}

.tableBlock .tableWrap02 .inner h4:first-of-type {
  margin-top: 0;
}

@media (max-width: 768px) {
  .tableBlock .tableWrap02 .inner h4:first-of-type {
    margin-top: 25px;
  }
}

.tableBlock .tableWrap02 .inner h4+dl {
  border-top: 1px solid #D7D4D4;
}

.tableBlock .tableWrap02 .inner dl {
  width: 100%;
}

.tableBlock .tableWrap02 .inner p {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  color: #808080;
}

@media (max-width: 768px) {
  .tableBlock .tableWrap02 .inner p {
    position: inherit;
    text-align: left;
    margin-top: 35px;
  }
}

/* =========================================================
kv
========================================================= */
.kv {
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 100vh;
}

@media (max-width: 768px) {
  .kv {
    height: 80vh;
    max-height: 670px;
  }
}

.kv::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
}

.kv .textArea {
  position: absolute;
  top: calc(50% - 100px);
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 0;
  text-align: center;
  z-index: 2;
}

@media (max-width: 768px) {
  .kv .textArea {
    top: 50%;
  }
}

.kv .textArea h2 {
  margin-bottom: 0;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 6.4rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-shadow: 0 0 20px #000, 0 0 20px #000;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .kv .textArea h2 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .kv .textArea h2 {
    font-size: 2.5rem;
  }
}

.kv .scroll {
  position: absolute;
  top: 100px;
  right: -75px;
  width: 230px;
  padding: 8px 35px 8px 0;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  transform: rotate(90deg);
  white-space: nowrap;
  overflow: hidden;
  z-index: 50;
}

@media (max-width: 768px) {
  .kv .scroll {
    right: -55px;
    font-size: 1rem;
  }
}

.kv .scroll::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #222;
}

.kv .scroll::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 0;
  display: block;
  width: 15px;
  height: 15px;
  transform: rotate(-45deg);
  border-left: 1px solid #222;
}

.kv .scroll a {
  color: #222;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .kv .scroll a:hover {
    opacity: 1;
  }
}

.reserveSp {
  background: #F2F1F1;
  padding: 35px 25px;
}

.reserveSp .btn {
  background: #666666;
  margin-top: 0;
  border-radius: 5px;
}

.reserveSp .btn {
  color: #fff;
  border: none;
  letter-spacing: 0.15rem;
  position: relative;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.reserveSp .btn svg {
  width: 15px;
  height: 15px;
  fill: #fff;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
}

@keyframes borderAnim {
  0% {
    left: -80px;
  }

  100% {
    left: 100%;
  }
}

.pogoSlider {
  z-index: 0;
  width: 100%;
  height: 100% !important;
  padding-bottom: 0 !important;
}

.pogoSlider-slide {
  background: no-repeat center/cover;
}

.pogoSlider-nav {
  bottom: 297px !important;
}

@media (max-width: 768px) {
  .pogoSlider-nav {
    bottom: 25px !important;
  }
}

@media (max-width: 768px) {
  .pogoSlider-nav li {
    margin: 0 3px !important;
  }
}

.pogoSlider-nav-btn {
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 0 !important;
  width: 30px !important;
  height: 2px !important;
}

@media (max-width: 768px) {
  .pogoSlider-nav-btn {
    width: 15px !important;
  }
}

.pogoSlider-nav-btn--selected {
  background-color: #fff !important;
}

/* =========================================================
reserveTop
========================================================= */
.reserveTop {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #F2F1F1;
  width: 100%;
  height: 285px;
  color: #222;
  cursor: pointer;
  z-index: 3;
}

@media (max-width: 768px) {
  .reserveTop {
    height: initial;
  }
}

.reserveTop .wrapper {
  padding-top: 70px;
  padding-bottom: 70px;
  height: 100%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .wrapper {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.reserveTop input,
.reserveTop select {
  color: inherit;
  font-family: 游明朝, "Yu Mincho", YuMincho, serif;
  font-size: 2.3rem;
}

.reserveTopTitle {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D7D4D4;
  text-align: center;
  font-size: 2rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTopTitle {
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
}

.reserveTopTitle svg {
  fill: #222;
  vertical-align: middle;
  width: 18px;
  height: 20px;
  margin: 0 15px 2px 0;
}

.reserveTopTitle span {
  display: inline-block;
  vertical-align: middle;
}

.reserveTopTitle .en {
  display: inline-block;
  letter-spacing: 0.1em;
}

.reserveTopForm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 1.4;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTopForm {
    flex-direction: column;
  }
}

.reserveTopForm>div {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.reserveTopForm dl dt {
  letter-spacing: 0.1em;
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.reserveTop .reserveNum {
  font-size: 2.3rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, serif;
  font-weight: bold;
}

/* @media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .reserveNum {
    font-size: 3rem;
  }
} */
.reserveTop .dateSelect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  width: 27%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .dateSelect {
    width: 40%;
    background-position: 46% 30px;
  }
}

.reserveTop .dateSelect input {
  font-weight: normal;
  font-weight: bold;
}

.reserveTop .dateSelect dl {
  width: 44%;
}

.reserveTop .dateSelect dl dt {
  letter-spacing: 0.1em;
}

.reserveTop .dateSelect dl dd {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.1em;
  font-size: 2.3rem;
}

.reserveTop .dateSelect dl dd .ui-datepicker-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reserveTop .dateSelect dl .date_wrap {
  white-space: nowrap;
}

.reserveTop .dateSelect dl .date_wrap input {
  width: 1.3em;
  text-align: center;
}

.reserveTop .dateSelect dl .month_wrap input {
  letter-spacing: 0.03em;
  width: 4.4rem;
  overflow: hidden;
}

.reserveTop .dateSelect dl .year_wrap {
  font-family: 游明朝, "Yu Mincho", YuMincho, serif;
  font-weight: bold;
}

.reserveTop .dateSelect dl .year_wrap p {
  font-size: 2.3rem;
}

.reserveTop .dateSelect dl#checkinBtn {
  margin-right: 8px;
}

.reserveTop .dateSelect dl#checkinBtn dd {
  border-bottom: 1px solid #D7D4D4;
  padding-bottom: 5px;
}

.reserveTop .dateSelect dl#calender {
  width: 19px;
  margin-top: 9%;
}

.reserveTop .dateSelect dl#calender svg {
  width: 19px;
  height: 16px;
}

.reserveTop .dateSelect label#dateNotSet {
  width: 40%;
  display: flex;
  align-items: center;
  margin-top: 6%;
  font-size: 1.3rem;
  cursor: pointer;
}

.reserveTop .dateSelect label#dateNotSet input {
  margin-right: 5px;
}

.reserveTop .stayInfo {
  width: 58%;
  max-width: 550px;
  padding: 0 25px 0 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .stayInfo {
    width: 80%;
    padding: 0;
    white-space: nowrap;
    margin-top: 15px;
  }
}

.reserveTop .stayInfo dl dt {
  text-align: center;
}

.reserveTop .stayInfo dl dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reserveTop .stayInfo dl dd p {
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-size: 2.3rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #D7D4D4;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, serif;
}

.reserveTop .stayInfo dl dd p span:first-of-type {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 9px;
  margin-top: 2px;
  font-family: "Marcellus", serif;
  font-weight: normal;
}

.reserveTop .stayInfo dl dd p span:last-of-type {
  width: 10px;
}

.reserveTop .stayInfo dl dd p+p {
  margin-left: 0px;
}

.reserveTop .stayInfo dl dd .reserveNum {
  margin-right: 5px;
}

.reserveTop .stayInfoSelect {
  position: relative;
}

.reserveTop .stayInfoSelect select {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  color: #000;
  opacity: 0;
}

.reserveTop .stayInfoSelect .selectNum {
  display: inline-block;
  width: 50px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .stayInfoSelect .selectNum {
    width: 40px;
  }
}

.reserveTop .submitBtn {
  width: 163px;
  text-align: right;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .submitBtn {
    border: none;
    margin-top: 20px;
    width: 40%;
    text-align: left;
  }
}

.reserveTop .submitBtn input {
  display: inline-block;
  background: url("../img/top/icon_search02.png") no-repeat 27% center/16px auto;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding-left: 15px;
  background-color: #666666;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.3rem;
  font-family: "Marcellus", serif;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .reserveTop .submitBtn input:hover {
    opacity: 0.8;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .submitBtn input {
    width: 90%;
    height: 40px;
    line-height: 40px;
  }
}

.reserveTop .reserveLink {
  display: flex;
  margin-top: 15px;
  font-size: 1.3rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .reserveLink {
    position: absolute;
    bottom: 15px;
    right: 70px;
    display: block;
  }
}

.reserveTop .reserveLink li {
  margin-right: 15px;
  letter-spacing: 0.05em;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reserveTop .reserveLink li {
    background-size: 20px auto;
  }
}

.reserveTop .reserveLink li a {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .reserveTop .reserveLink li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.reserveTop .reserveLink li svg {
  fill: #fff;
}

/* =========================================================
about
========================================================= */
.about {
  position: relative;
  text-align: center;
  color: #423B37;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .about {
    text-align: left;
    font-size: 1.3rem;
  }
}

.about .text {
  line-height: 2.4;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about .text {
    line-height: 2;
    margin-bottom: 1rem;
  }
}

.about .note {
  border: 1px solid #423B37;
  width: 100%;
  padding: 25px;
  margin-top: 45px;
}

/* =========================================================
room
========================================================= */
.room {
  background: #F2F1F1;
  padding-bottom: 200px;
}

@media (max-width: 768px) {
  .room {
    padding-bottom: 120px;
  }
}

.room .enTitle .en {
  color: #606060;
}

.room .wrapper {
  padding-bottom: 90px;
}

@media (max-width: 768px) {
  .room .wrapper {
    padding-bottom: 45px;
  }
}

.room .anchorList {
  width: 100%;
  max-width: 777px;
  margin-bottom: 80px;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .room .anchorList {
    margin-bottom: 25px;
    padding: 15px 5px;
    background: #F2F1F1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
  }
}

.room .anchorList li {
  width: 33.333%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .room .anchorList li {
    width: auto;
    margin-right: -1px;
    margin-bottom: 0;
    padding: 0 10px;
  }
}

.room .anchorList li:nth-of-type(3n + 1) {
  border-left: none;
}

.room .tabContents {
  position: relative;
  min-height: 430px;
}

.room .tabContents .inner {
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .room .tabContents .inner {
    display: block;
  }
}

.room .tabContents .photoArea {
  width: 50%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .room .tabContents .photoArea {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .room .tabContents .photoArea {
    position: relative;
    width: 100%;
  }
}

.room .tabContents .photoArea .photoInner {
  width: 100%;
  width: calc(100% + 120px);
  max-width: 200%;
  margin-left: -120px;
}

.room .tabContents .photoArea img {
  width: 100%;
  height: 510px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media (max-width: 768px) {
  .room .tabContents .photoArea img {
    height: 198px;
  }
}

.room .tabContents .textArea {
  position: relative;
  width: 50%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .room .tabContents .textArea {
    width: 100%;
    padding: 40px 5% 0;
  }
}

@media (max-width: 768px) {
  .room .tabContents .textArea {
    width: 100%;
    padding: 40px 25px 0;
  }
}

.room .tabContents .textArea::after {
  content: "";
  display: block;
  clear: both;
}

.room .tabContents .textArea .textInner {
  position: relative;
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 380px;
  width: 100%;
  min-height: 100%;
  margin-right: 170px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .room .tabContents .textArea .textInner {
    float: none;
    max-width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .room .tabContents .textArea .textInner {
    float: none;
    max-width: 100%;
    margin-right: 0;
  }
}

.room .tabContents .textArea .photo {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 768px) {
  .room .tabContents .textArea .photo {
    display: none;
  }
}

.room .tabContents .textArea .enTitle {
  margin-bottom: 10px;
  text-align: left;
}

.room .tabContents .textArea .enTitle .en {
  color: #222222;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .room .tabContents .textArea .enTitle .en {
    font-size: 2.1rem;
  }
}

.room .tabContents .textArea .text {
  margin-bottom: auto;
  font-family: "Noto Serif", serif;
}

.room .tabContents .textArea .table01 {
  margin-top: 75px;
}

@media (max-width: 768px) {
  .room .tabContents .textArea .table01 {
    margin-top: 30px;
  }
}

.room .tabContents .textArea .table01 th {
  color: #2E2F2F;
  padding: 12px 15px 12px;
}

.room .tabContents .textArea .table01 td {
  text-align: right;
  color: #7F7F80;
}

.room .tabContents .textArea img {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .room .tabContents .textArea img {
    margin-top: 35px;
  }
}

.room .slideDots {
  position: absolute;
  right: 8%;
  bottom: 35px;
  line-height: 1;
  text-align: right;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .room .slideDots {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .room .slideDots {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    text-align: center;
  }
}

.room .slideDots li {
  display: inline-block;
  width: 30px;
  height: 3px;
  margin: 0 8px;
}

@media (max-width: 768px) {
  .room .slideDots li {
    width: 20px;
    height: 3px;
    margin: 0 5px;
  }
}

.room .slideDots li button {
  border: none;
  background: #fff;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-indent: -9999px;
  transition: opacity 0.2s;
  opacity: 0.5;
}

.room .slideDots li.slick-active button {
  opacity: 1;
}

/* =========================================================
barLounge
========================================================= */
.barLounge {
  overflow: hidden;
}

@media (max-width: 768px) {
  .barLounge .wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.barLounge .photoCol {
  width: 100%;
  margin-top: 90px;
}

@media (max-width: 768px) {
  .barLounge .photoCol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 45px;
  }
}

.barLounge .photoCol::after {
  content: "";
  clear: both;
  display: table;
}

@media (max-width: 768px) {
  .barLounge .photoCol::after {
    content: none;
  }
}

.barLounge .photoCol .photo01 {
  float: left;
  width: 720px;
  max-width: 65.5%;
  margin-bottom: 65px;
}

@media (max-width: 768px) {
  .barLounge .photoCol .photo01 {
    float: none;
    width: calc(100% + 50px);
    max-width: 150%;
    margin: 0 -25px 20px;
  }
}

.barLounge .photoCol .photo01 img {
  float: right;
  max-width: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .barLounge .photoCol .photo01 img {
    width: 109%;
  }
}

@media (max-width: 768px) {
  .barLounge .photoCol .photo01 img {
    width: 100%;
  }
}

.barLounge .photoCol .photo02 {
  clear: right;
  float: right;
  width: 303px;
  max-width: 27.6%;
}

@media (max-width: 768px) {
  .barLounge .photoCol .photo02 {
    display: none;
  }
}

.barLounge .photoCol .photo03 {
  width: 721px;
  max-width: 66%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

@media (max-width: 768px) {
  .barLounge .photoCol .photo03 {
    display: none;
  }
}

.barLounge .photoCol .photo04 {
  max-width: 467px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .barLounge .photoCol .photo04 div {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .barLounge .photoCol .photo04 div img {
    width: 49%;
  }
}

.barLounge .photoCol .text {
  float: right;
  width: 303px;
  max-width: 27.6%;
  margin-bottom: 60px;
  line-height: 2.4;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .barLounge .photoCol .text {
    float: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    line-height: 1.9;
    order: 10;
  }
}

.barLounge .restaurantList {
  width: 100%;
  margin-top: 120px;
}

@media (max-width: 768px) {
  .barLounge .restaurantList {
    margin-top: 30px;
  }
}

/* =========================================================
facility
========================================================= */
.facility .enTitle {
  margin-bottom: 40px;
}

.facility .enTitle .en {
  color: #606060;
}

@media (max-width: 768px) {
  .facility .enTitle {
    margin-bottom: 30px;
  }
}

.facility .lead {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .facility .lead {
    margin-bottom: 35px;
  }
}

.facility .boxList {
  justify-content: space-between;
  margin-top: 0;
}

@media (max-width: 768px) {
  .facility .boxList {
    display: block;
  }
}

.facility .boxList .listBox {
  width: 48%;
  max-width: inherit;
  margin: 0;
}

@media (max-width: 768px) {
  .facility .boxList .listBox {
    width: 100%;
    margin-bottom: 10px;
  }
}

.facility .boxList .listBox:nth-of-type(2) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .facility .boxList .listBox:nth-of-type(2) {
    margin-bottom: 0;
  }
}

.facility .boxList .listBox img {
  margin: 0;
}

.facility .boxList.facilityList+p {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .facility .boxList.facilityList+p {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* =========================================================
access
========================================================= */
.access .wrapper {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .access .wrapper {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.access #googlemap {
  width: 100%;
  margin: 40px 0 30px;
}

@media (max-width: 768px) {
  .access #googlemap {
    margin: 20px 0 20px;
  }
}

.access #googlemap iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 768px) {
  .access #googlemap iframe {
    height: 270px;
  }
}

.access .address {
  letter-spacing: 0.05em;
}

.access .address strong {
  display: inline-block;
  color: #222222;
  font-size: 2rem;
  font-weight: normal;
}

@media (max-width: 768px) {
  .access .address strong {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
}

.access .addressWrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .access .addressWrap {
    display: block;
  }
}

.access .addressWrap .address {
  width: calc(100% - 320px);
}

@media (max-width: 768px) {
  .access .addressWrap .address {
    width: 100%;
  }
}

.access .addressWrap .btn {
  margin: 0;
}

@media (max-width: 768px) {
  .access .addressWrap .btn {
    margin-top: 15px;
  }
}

.access .addressWrap .btn a {
  width: 300px;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .access .addressWrap .btn a {
    width: 100%;
  }
}

.access .tableBlock {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .access .tableBlock {
    margin-top: 55px;
  }
}

.access .tableBlock p {
  margin-bottom: 60px;
}

.access .tableBlock p span.red {
  color: #FF1D25;
}

.access .tableBlock p:nth-of-type(2) {
  margin-bottom: 30px;
}

.access .tableBlock .tableWrap {
  margin-bottom: 65px;
}

@media (max-width: 768px) {
  .access .tableBlock .tableWrap {
    margin-bottom: 30px;
  }
}

.access .tableBlock .tableWrap dt {
  color: #7F7F80;
}

.access .tableBlock .btn {
  margin-top: 30px;
  margin-bottom: 0;
}

.access .tableBlock .btn a {
  background: #666666;
  border: none;
  border-radius: 5px;
  color: #FFFFFF;
  width: 494px;
  padding: 28px 0;
}

@media (max-width: 768px) {
  .access .tableBlock .btn a {
    width: 100%;
    padding: 24px 0;
  }
}




.official .wrapper{
  padding: 160px 0;
}

@media (max-width: 969px) {
  .official .wrapper{
    padding: 60px 0 80px;
    width: 90%;
  }
}

.official .enTitle span{
  color: #606060;
}

.official .tabList{
  width: 550px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 60px;
}
@media (max-width: 969px) {
  .official .tabList {
    width: 100%;
    margin: 0 auto 35px;
  }
}
.official .snsWrap {
  width: 400%;
}
@media (max-width: 969px) {
  .official .tabList li{
    width: 48%;
  }
}
.official .tabList li span{
  display: block;
  width: 265px;
  border-radius: 5px;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  font-size: 17px;
    letter-spacing: 1.5px;  
}
@media (max-width: 969px) {
  .official .tabList li span{
    width: 100%;
    font-size: 13px;
  } 
}
.official .tabList li span.hoverAlpha{
  border: 1px solid #888 !important;
  background: #fff !important;
  color: #222 !important;
}
.official .tabList li span.btnSNS1 {
  border: 1px solid #df6061;  
  background: #df6061;
  color: #fff;
}
.official .tabList li span.btnSNS2 {
  border: 1px solid #2e6db5;  
  background: #2e6db5;
  color: #fff;
}

.official .inner.sns {
  overflow: hidden;
}
.official .tabContents {
  display: flex;
  float: left;
  width: 25%;
  height: 300px;
  float: left;
}
@media (max-width: 969px) {
  .official .tabContents {
    display: block;
    height: auto;  
  }
}

.official .tabContents .tab_txt {
  color: #fff;
  font-size: 19px;
  padding: 30px 50px 0 50px;
  width: 680px;
}
@media (max-width: 969px) {
  .official .tabContents .tab_txt {
    position: relative;
    top: -2px;
    width: 100%;
    font-size: 13px;
    padding: 40px 25px 50px;
  }
}
.official .tabContents .tab_txt .tab_title {
  font-size: 31px;
  margin-bottom: 10px;
  letter-spacing: 3px !important;
}
@media (max-width: 969px) {
  .official .tabContents .tab_txt .tab_title {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  } 
}
.official .tabContents.tab_face .tab_txt {
  background: #2e6db5;
}
.official .tabContents .tab_txt p{
  letter-spacing: 1.5px;
}
.official .tabContents.tab_insta .tab_txt {
  background: #df6061;
}

.official .tabContents .tab_photo img{
  height: 300px;
}

@media (max-width: 969px) {
  .official .tabContents .tab_photo img{
    height: auto;
    width: 100%;
  } 
}

@media (max-width: 969px) {
  .official .tabContents .tab_txt p{
    letter-spacing: 3px;
  }

}
.official .tabContents .btn03 {
  background: #fff;
  border-radius: 5px;
  padding: 15px 30px;
  font-size: 17px;
  margin-top: 25px;
  display: inline-block;
  letter-spacing: 1.5px;
    text-decoration: none;
}
@media (max-width: 969px) {
  .official .tabContents .btn03 {
    display: block;
    text-align: center;
    font-size: 13px;
    padding: 15px 0 10px;
  } 
}
.official .tabContents.tab_face .btn03 {
  color: #2e6db5;
}

.official .tabContents.tab_insta .btn03 {
  color: #df6061;
}
.official .tabContents .btn03 img{
  width: 29px;
  margin-right: 15px;
  position: relative;
}
.official .tabContents.tab_face .btn03 img {
  top: 1px;
}
@media (max-width: 969px) {
  .official .tabContents.tab_face .btn03 img {
    top: -3px;
  }
}
.official .tabContents.tab_insta .btn03 img {
  top: 3px;
}
@media (max-width: 969px) {
  .official .tabContents.tab_insta .btn03 img{
    top: -2px;
  }  
}


/*# sourceMappingURL=top.css.map */