@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
body {
  /*background: #F5F3EB;*/
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

#resv-open {
  z-index: 10;
  background-image: linear-gradient(134deg, #0052a4, #001568) !important;
  right: 70px;
}

@media only screen and (min-width: 768px) {
  #resv-open {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  #main {
    margin-top: 50px;
  }
}

/* ----------------------------------

top　から移行

---------------------------------- */
/* ----------------------------------

hamburger

---------------------------------- */
/*========= ハンバーガーメニュー ===============*/
.openbtn {
  position: fixed;
  z-index: 10;
  /*ボタンを最前面に*/
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 65px;
  height: 65px;
  transition: .2s;
  background: rgba(0, 21, 104, 0.8);
}

.openbtn::after {
  content: "MENU";
  display: inline-block;
  color: #FFFFFF;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
}

@media only screen and (min-width: 768px) {
  .openbtn {
    display: none;
  }
}

.openbtn.active {
  position: fixed;
  background: rgba(255, 255, 255, 0.2);
  z-index: 99999;
}

.openbtn.active::after {
  content: "CLOSE";
}

.openbtn.fixed {
  top: 18px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .2s;
  position: absolute;
  left: 20px;
  height: 1px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 40%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
}

.openbtn span:nth-of-type(3) {
  top: 35px;
}

.openbtn.active span:nth-of-type(1) {
  /*top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-35deg);
    width: 60%;
        background-color: $black;*/
  display: inline-block;
  transition: all .2s;
  position: absolute;
  left: 20px;
  height: 1px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 45%;
  transform: translateY(6px) rotate(-35deg);
  top: 16px;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  /*top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(35deg);
    width: 60%;
    background-color: $black;*/
  display: inline-block;
  transition: all .2s;
  position: absolute;
  left: 20px;
  height: 1px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 45%;
  transform: translateY(-18px) rotate(35deg);
  top: 40px;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0;
  transform: translate(100vw, 0);
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-image: linear-gradient(-270deg, #0052a4, #001568);
  /*動き*/
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: .5;
}

#g-nav .logo-nav {
  margin: 20px 0 0 20px;
}

#g-nav #g-nav-list ul {
  margin: 20vw 0 0 50px;
}

#g-nav #g-nav-list ul li {
  font-size: 4.5vw;
  font-weight: 600;
  margin-bottom: 6vw;
  position: relative;
  padding-left: 50px;
}

#g-nav #g-nav-list ul li::before {
  display: inline-block;
  margin-right: 1.5rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#g-nav #g-nav-list ul li:nth-child(1)::before {
  content: "";
  background: url(/wp-content/themes/kyotango_2023/images_aichi/nav_sp01.svg) center top/cover no-repeat;
  height: 20px;
  width: 30px;
}

#g-nav #g-nav-list ul li:nth-child(2)::before {
  content: "";
  background: url(/wp-content/themes/kyotango_2023/images_aichi/nav_sp02.svg) center top/cover no-repeat;
  height: 15px;
  width: 30px;
}

#g-nav #g-nav-list ul li:nth-child(3)::before {
  content: "";
  background: url(/wp-content/themes/kyotango_2023/images_aichi/nav_sp03.svg) center top/cover no-repeat;
  height: 25px;
  width: 30px;
}

#g-nav #g-nav-list ul li:nth-child(4)::before {
  content: "";
  background: url(/wp-content/themes/kyotango_2023/images_aichi/nav_sp04.svg) center top/cover no-repeat;
  height: 30px;
  width: 30px;
}

#g-nav #g-nav-list ul li:nth-child(5)::before {
  content: "";
  background: url(/wp-content/themes/kyotango_2023/images_aichi/nav_sp05.svg) center top/cover no-repeat;
  height: 20px;
  width: 30px;
}

#g-nav #g-nav-list ul a {
  color: #FFFFFF;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  transform: translate(0px, 0);
  opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0px 30px 30px;
  z-index: 0;
}

#g-nav.panelactive #g-nav-list a {
  transition: .5s;
}

#g-nav.panelactive #g-nav-list a:hover {
  opacity: .5;
}

.sp-contact {
  background: #FFFFFF;
  position: absolute;
  bottom: 0;
  color: #001568;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

@media only screen and (min-width: 768px) {
  .sp-contact {
    display: none;
  }
}

.sp-contact::before {
  content: "";
  display: block;
  background: url(/wp-content/themes/kyotango_2023/images_aichi/wave05_sp.svg) center top/cover repeat-x;
  height: 30px;
  width: 100%;
  position: absolute;
  top: -30px;
}

.sp-contact dl dt {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 4.5vw;
  letter-spacing: .3rem;
  font-weight: 500;
}

.sp-contact dl dd {
  font-size: 6vw;
  font-weight: 400;
}

.sp-contact .time {
  font-size: 3.3vw;
  margin-bottom: 20px;
}

.sp-contact a {
  color: #001568;
  text-decoration: underline;
}

.sp-contact .mail::before {
  content: "";
  display: inline-block;
  background: url(/wp-content/themes/kyotango_2023/images_aichi/mail.svg) center top/cover no-repeat;
  height: 15px;
  width: 20px;
  position: relative;
  top: 3px;
  margin-right: 5px;
}

.fix-nav {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.4s ease;
  display: none;
}

@media only screen and (min-width: 768px) {
  .fix-nav {
    display: block;
  }
}

.fix-nav .fix-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  .fix-nav .fix-nav-inner {
    width: 95%;
  }
}

.fix-nav .fix-nav-inner h1 {
  width: 15%;
  display: none;
}

@media only screen and (min-width: 768px) {
  .fix-nav .fix-nav-inner h1 {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  .fix-nav .fix-nav-inner h1 {
    display: block;
  }
}

.fix-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin: auto;
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  .fix-nav ul {
    width: 75%;
  }
}

.fix-nav ul li {
  width: 25%;
}

.fix-nav ul li a {
  display: block;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fix-nav ul li a img {
  transition: filter 0.3s ease;
}

.fix-nav ul li a:hover {
  background: #283881;
}

.fix-nav ul li a:hover img {
  filter: brightness(0) invert(1);
}

@media only screen and (min-width: 1025px) {
  .fix-nav ul li:nth-child(2) {
    margin-right: 0;
  }
}

.fix-nav ul li:nth-child(3) {
  width: 15%;
}

@media only screen and (min-width: 768px) {
  .fix-nav ul li:nth-child(4) {
    width: 17%;
  }
}

@media only screen and (min-width: 1025px) {
  .fix-nav ul li:nth-child(4) {
    width: 21%;
  }
}

@media only screen and (min-width: 768px) {
  .fix-nav ul li:nth-child(5) {
    width: 17%;
  }
}

@media only screen and (min-width: 1025px) {
  .fix-nav ul li:nth-child(5) {
    width: 21%;
  }
}

.l-footer {
  background-image: linear-gradient(-250deg, #0052a4, #001568);
  mask: url(/wp-content/themes/kyotango_2023/images_aichi/wave_gra_sp.svg) no-repeat;
  mask-size: cover;
  position: relative;
  padding: 100px 0 60px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .l-footer {
    mask: url(/wp-content/themes/kyotango_2023/images_aichi/wave_gra.svg) center top/cover no-repeat;
    padding: 100px 0 120px;
    margin-top: 150px;
  }
}

.l-footer .footer-inner {
  text-align: center;
  width: auto !important;
}

.l-footer .btn-base {
  margin-top: 50px;
}

@media only screen and (min-width: 768px) {
  .l-footer .btn-base {
    margin-top: 100px;
  }
}

.l-footer dl dt {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 5.5vw;
  letter-spacing: .4rem;
  text-align: center;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .l-footer dl dt {
    font-size: clamp(1.8rem, 1.8vw, 1.6rem);
  }
}

.l-footer dl dd {
  font-size: 10vw;
  font-weight: 400;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .l-footer dl dd {
    font-size: clamp(3.5rem, 3.5vw, 5.5rem);
  }
}

.l-footer .copy {
  margin: 50px 0 0;
  text-align: center;
  font-size: 3vw;
}

@media only screen and (min-width: 768px) {
  .l-footer .copy {
    margin: 100px 0 0;
    font-size: 0.8rem;
  }
}

.btn-base a {
  background-image: linear-gradient(-360deg, #999965, #d2d2a1);
  padding: 15px 50px 15px 30px;
  border-radius: 100px;
  color: #001568;
  font-weight: 600;
  letter-spacing: .1rem;
  font-size: 4vw;
  position: relative;
  white-space: nowrap;
}

@media only screen and (min-width: 768px) {
  .btn-base a {
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    padding: 25px 70px 25px 60px;
  }
}

.btn-base a::after {
  content: "";
  display: inline-block;
  background: url(/wp-content/themes/kyotango_2023/images_aichi/arrow_b.svg) center top/cover no-repeat;
  height: 20px;
  width: 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: .2s;
}

@media only screen and (min-width: 768px) {
  .btn-base a::after {
    right: 30px;
  }
}

.btn-base a:hover {
  background-image: linear-gradient(137deg, #999965, #d2d2a1);
}

.btn-base a:hover::after {
  right: 25px;
}

.btn-base.btn-red a {
  background: #6D0007;
  color: #FFFFFF;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  padding: 15px 70px 15px 70px;
  font-size: clamp(1.5rem, 1.5vw, 2rem);
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .btn-base.btn-red a {
    padding: 25px 80px 25px 70px;
  }
}

.btn-base.btn-red a::after {
  background: url(/wp-content/themes/kyotango_2023/images_aichi/arrow_w.svg) center top/cover no-repeat;
}

.btn-base.btn-red a:hover {
  opacity: .8;
}

.btn-base.btn-contact a {
  display: block;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .btn-base.btn-contact a {
    padding-top: 30px;
    padding-bottom: 30px;
    display: inline;
  }
}

.btn-base.btn-contact a::after {
  display: none;
}

.btn-base.btn-contact a::before {
  content: "";
  display: inline-block;
  background: url(/wp-content/themes/kyotango_2023/images_aichi/mail.svg) center top/cover no-repeat;
  height: 20px;
  width: 27px;
  position: relative;
  top: 3px;
  margin-right: 12px;
}

@media only screen and (min-width: 768px) {
  .btn-base.btn-contact a::before {
    margin-right: 10px;
    top: 2px;
  }
}

.btn-base.btn-two a {
  display: block;
  line-height: 1.3;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 30px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .btn-base.btn-two a {
    line-height: inherit;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 100px;
  }
}

.logo-sp {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40vw;
  z-index: 10;
}

@media only screen and (min-width: 768px) {
  .logo-sp {
    display: none;
  }
}

/* ----------------------------------



---------------------------------- */
#search-result {
  position: relative;
  margin: 0 auto 10px;
  padding: 10px 15px 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 5px;
  background-image: linear-gradient(134deg, #0052a4, #001568) !important;
  color: #FFFFFF !important;
}

div#room-search2 .cancel-link a {
  background: #999;
}

input#room-search-btn2 {
  background-image: linear-gradient(-360deg, #999965, #d2d2a1);
  border: none;
  color: #001568;
  font-weight: 700;
}

input#room-search-btn2:hover {
  background-image: linear-gradient(137deg, #999965, #d2d2a1);
}

div.yado-list-box .yado-list-innerbox, div.yado-box .plan-list-box {
  border-color: #001568;
}

dl.yado-list-plan dd dt span.en-pdetail-btn a {
  border: none;
  background-image: linear-gradient(-360deg, #999965, #d2d2a1);
  color: #001568;
}

dl.yado-list-plan dd dt span.en-pdetail-btn a:hover {
  background-image: linear-gradient(137deg, #999965, #d2d2a1);
  color: #001568;
  border: none;
}

div.btn-color3 a {
  color: #001568;
  background: rgba(0, 21, 104, 0.1);
}

div.btn-color3 a:hover {
  background: rgba(0, 21, 104, 0.2);
}

.yado-list-plan dd dd {
  color: #001568 !important;
}

div#yado-list .yado-detail-link li a:hover {
  background: rgba(0, 21, 104, 0.1);
}

#yado-list .yado-detail-link li a:hover {
  font-weight: normal !important;
}

div#enyado_info_title, p.plan-subnavi, div.item-title, dt.item-title {
  background: #001568;
}

a.color_title, div#plan-info #plan-name, .color_title {
  border-color: #001568 !important;
}

#yado-info .yado-detail-link li#yado-detail-link01 a:hover, #yado-info .yado-detail-link li#yado-detail-link02 a:hover, #yado-info .yado-detail-link li#yado-detail-link03 a:hover, #yado-plan-page #yado-info .yado-detail-link li#yado-detail-link02 a, #yado-room-page #yado-info .yado-detail-link li#yado-detail-link03 a {
  color: #001568 !important;
}

#calender .block-title {
  background: #001568 !important;
}

@media only screen and (min-width: 768px) {
  #calender {
    border: 1px solid #001568 !important;
  }
}

#plan-info4 .item-box dl {
  border: 1px solid #001568 !important;
}

#plan-info4 .in-btn a {
  background: #555 !important;
}

.room-list-info .room-list-name h3, .color_title, #plan-info #plan-name {
  border-color: #001568 !important;
}

#room-search-btn2, .room-list-box.inner_box03 p a, .room-detail-planlist-btn a, .color_btn {
  border: none !important;
  background-image: linear-gradient(-360deg, #999965, #d2d2a1) !important;
  color: #001568 !important;
  border-radius: 3px;
}

.color_btn:hover, .resv_btn:hover, .room-list-box .inner_box03 p a:hover, .room-detail-planlist-btn a:hover {
  background-image: linear-gradient(137deg, #999965, #d2d2a1) !important;
}

#modal #header-search-wrap {
  background-image: linear-gradient(134deg, #0052a4, #001568) !important;
}

#header-search-wrap #room-search1 {
  background: transparent !important;
  color: #fff !important;
}

#modal #close {
  color: #fff !important;
}

#modal #header-search-wrap .room-search-btn {
  background: transparent;
  border: none;
  background-image: linear-gradient(-360deg, #999965, #d2d2a1);
  color: #001568 !important;
}

#modal .cancel-link a {
  background: #999;
}

#search-result dd strong {
  color: #fff !important;
}

#search-result dd small {
  color: #fff !important;
}

#search-sort a, #ratetype li a {
  color: #001568 !important;
}

@media screen and (max-width: 768px) {
  #yado-info #yado-name h3 {
    color: #000 !important;
  }
}

#gas-ticket-present-bnr {
  display: none;
}
