@charset "UTF-8";
/*-----------------------
reset
------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong,
sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

ol li ol,
ul li ul,
ol li ul,
ul li ol,
li {
  margin: 0;
  list-style: none;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*-----------------------
common
------------------------*/
html {
  padding: 0;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  font-family: "Noto Sans Japanese", "Noto Sans JP", Meiryo;
  color: #21294A;
}

body {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 220%;
  position: relative;
  background-color: white;
}
@media (max-width: 768px) {
  body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.4rem;
    line-height: 180%;
  }
}

.no_scroll {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  line-height: 100%;
  vertical-align: bottom;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  opacity: 0.7;
}

:focus {
  outline: none;
}

button {
  font-family: "Noto Sans Japanese", "Noto Sans JP", Meiryo;
  transition: all 0.3s ease;
}

button:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.btn {
  display: block;
  width: 100%;
  max-width: 250px;
  height: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  text-align: center;
  line-height: 50px;
  background-color: #21294A;
  border: solid #21294A 1px;
}
@media (max-width: 768px) {
  .btn {
    height: 45px;
    max-width: 80%;
    line-height: 45px;
  }
}
.btn:hover {
  background-color: transparent;
  border: solid #21294A 1px;
  color: #21294A;
  opacity: 1;
}

.btn_center {
  margin: 0 auto;
}

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

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

section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.inner {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}

.flexbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .flexbox {
    display: block;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 800ms;
}
@media (max-width: 768px) {
  .fadeUp {
    transform: translate(0, 40px);
  }
}

.fadeUp.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
#introduction {
  text-align: center;
  line-height: 250%;
  padding: 80px 0;
}
@media (max-width: 768px) {
  #introduction {
    text-align: left;
    line-height: 200%;
    letter-spacing: 0px;
    padding: 40px 0;
  }
}
#introduction .note {
  display: block;
  font-size: 1.3rem;
  color: #CC0303;
}
@media (max-width: 768px) {
  #introduction .note {
    font-size: 1.2rem;
    line-height: 170%;
    text-indent: -1.2rem;
    margin-left: 1.2rem;
    margin-top: 10px;
  }
}

/*-----------------------
header#nav-top
------------------------*/
header#nav-top {
  width: 100%;
  z-index: 10;
}
header#nav-top nav ul {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0px 2% 0 3%;
}
header#nav-top nav ul li {
  padding: 0 1.2%;
}
header#nav-top nav ul li img {
  height: 10px;
  width: auto;
  vertical-align: middle;
}
header#nav-top nav ul li.logo {
  margin-right: auto;
  padding: 0 0 0 0;
}
header#nav-top nav ul li.logo img {
  height: 28px;
  width: auto;
}

/*-----------------------
header#nav-fixed-bg
------------------------*/
header#nav-fixed-bg {
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 20;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.97);
}
@media (max-width: 768px) {
  header#nav-fixed-bg {
    display: none;
  }
}
header#nav-fixed-bg h1 {
  position: absolute;
  top: 22px;
  left: 3%;
}
@media (max-width: 768px) {
  header#nav-fixed-bg h1 {
    top: 15px;
    left: 5%;
  }
}
header#nav-fixed-bg h1 img {
  height: 28px;
  width: auto;
}
@media (max-width: 768px) {
  header#nav-fixed-bg h1 img {
    height: 20px;
  }
}

/*-----------------------
header#nav-fixed
------------------------*/
header#nav-fixed {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
}
@media (max-width: 768px) {
  header#nav-fixed {
    display: block !important;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.97);
  }
}
header#nav-fixed > ul {
  width: 100%;
  height: 70px;
}
@media (max-width: 768px) {
  header#nav-fixed > ul {
    height: 60px;
  }
}
header#nav-fixed > ul .logo {
  position: absolute;
  top: 22px;
  left: 3%;
}
@media (max-width: 768px) {
  header#nav-fixed > ul .logo {
    top: 15px;
    left: 5%;
  }
}
header#nav-fixed > ul .logo img {
  height: 28px;
  width: auto;
}
@media (max-width: 768px) {
  header#nav-fixed > ul .logo img {
    height: 20px;
  }
}
header#nav-fixed > ul .openbtn {
  position: fixed;
  z-index: 30;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 30px;
  cursor: pointer;
  border: none;
}
@media (max-width: 768px) {
  header#nav-fixed > ul .openbtn {
    top: 20px;
    right: 5%;
    width: 25px;
    height: 25px;
  }
}
header#nav-fixed > ul .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0px;
  width: 34px;
  height: 1px;
  background-color: #21294A;
}
@media (max-width: 768px) {
  header#nav-fixed > ul .openbtn span {
    left: 0px;
    width: 25px;
  }
}
header#nav-fixed > ul .openbtn span:nth-of-type(1) {
  top: 0px;
}
header#nav-fixed > ul .openbtn span:nth-of-type(1).open {
  width: 46px;
  top: 9px;
  left: -6px;
  transform: translateY(6px) rotate(-45deg);
}
@media (max-width: 768px) {
  header#nav-fixed > ul .openbtn span:nth-of-type(1).open {
    width: 34px;
    top: 5px;
    left: -4px;
  }
}
@media (max-width: 768px) {
  header#nav-fixed > ul .openbtn span:nth-of-type(1) {
    top: 0px;
  }
}
header#nav-fixed > ul .openbtn span:nth-of-type(2) {
  top: 14px;
}
header#nav-fixed > ul .openbtn span:nth-of-type(2).open {
  display: none;
}
@media (max-width: 768px) {
  header#nav-fixed > ul .openbtn span:nth-of-type(2) {
    top: 10px;
  }
}
header#nav-fixed > ul .openbtn span:nth-of-type(3) {
  top: 29px;
  width: 20px;
}
header#nav-fixed > ul .openbtn span:nth-of-type(3).open {
  width: 46px;
  top: 21px;
  left: -6px;
  transform: translateY(-6px) rotate(45deg);
}
@media (max-width: 768px) {
  header#nav-fixed > ul .openbtn span:nth-of-type(3).open {
    width: 34px;
    top: 17px;
    left: -4px;
  }
}
@media (max-width: 768px) {
  header#nav-fixed > ul .openbtn span:nth-of-type(3) {
    top: 20px;
    width: 15px;
  }
}
header#nav-fixed.open {
  display: block !important;
  padding-bottom: calc(100% - 90px);
  z-index: 101;
}
@media (max-width: 768px) {
  header#nav-fixed.open {
    padding-bottom: 0;
  }
}

/*-----------------------
#naviSlide-menu
------------------------*/
#naviSlide-menu {
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  z-index: 10;
  width: 100%;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.97);
}
@media (max-width: 768px) {
  #naviSlide-menu {
    top: 60px;
  }
}
#naviSlide-menu .naviSlide_inner {
  height: 550px;
}
#naviSlide-menu .naviSlide_inner h1 {
  position: absolute;
  top: 22px;
  left: 3%;
}
@media (max-width: 768px) {
  #naviSlide-menu .naviSlide_inner h1 {
    top: 15px;
    left: 5%;
  }
}
#naviSlide-menu .naviSlide_inner h1 img {
  height: 28px;
  width: auto;
}
@media (max-width: 768px) {
  #naviSlide-menu .naviSlide_inner h1 img {
    height: 20px;
  }
}
#naviSlide-menu .naviSlide_inner nav {
  width: 560px;
  margin: 150px auto;
}
@media (max-width: 768px) {
  #naviSlide-menu .naviSlide_inner nav {
    width: 235px;
    margin: 30px auto 0 auto;
  }
}
#naviSlide-menu .naviSlide_inner nav ul {
  width: 100%;
  text-align: left;
}
#naviSlide-menu .naviSlide_inner nav ul li {
  position: relative;
  margin-bottom: 45px;
  line-height: 100%;
}
@media (max-width: 768px) {
  #naviSlide-menu .naviSlide_inner nav ul li {
    margin-bottom: 35px;
  }
  #naviSlide-menu .naviSlide_inner nav ul li:nth-child(5) {
    margin-bottom: 40px;
  }
}
#naviSlide-menu .naviSlide_inner nav ul li a {
  color: #21294A;
  font-size: 1.3rem;
  font-weight: bold;
  padding-left: 35px;
}
@media (max-width: 768px) {
  #naviSlide-menu .naviSlide_inner nav ul li a {
    font-size: 1.2rem;
    padding-left: 22px;
  }
}
#naviSlide-menu .naviSlide_inner nav ul li a:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #707070;
  position: absolute;
  top: 17px;
  left: 0;
}
@media (max-width: 768px) {
  #naviSlide-menu .naviSlide_inner nav ul li a:before {
    width: 12px;
    height: 1px;
    position: absolute;
    top: 9px;
    left: 0;
  }
}
#naviSlide-menu .naviSlide_inner nav ul li a img {
  height: 33px;
  width: auto;
  vertical-align: bottom;
  margin-right: 20px;
}
@media (max-width: 768px) {
  #naviSlide-menu .naviSlide_inner nav ul li a img {
    height: 17px;
    width: auto;
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  #naviSlide-menu .naviSlide_inner nav ul li a span {
    display: block;
    margin: 8px 0 5px 22px;
  }
}
#naviSlide-menu .naviSlide_inner nav ul li.sub {
  margin-bottom: 25px;
}
#naviSlide-menu .naviSlide_inner nav ul li.sub:last-child {
  margin-bottom: 0;
}
#naviSlide-menu .naviSlide_inner nav ul li.sub a:before {
  display: none;
}
#naviSlide-menu .naviSlide_inner nav ul li.sub a:after {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/icon_link.svg) top left no-repeat;
  background-size: auto;
  vertical-align: bottom;
  margin-left: 7px;
}

/*-----------------------
footer
------------------------*/
footer {
  position: relative;
  letter-spacing: 0;
  background-color: #1F2A44;
  padding: 265px 0 0 0;
  margin-top: 170px;
}
@media (max-width: 768px) {
  footer {
    padding: 210px 0 0 0;
    margin-top: 180px;
  }
}
footer .box {
  position: absolute;
  top: -165px;
  font-size: 1.3rem;
  color: white;
  background: url(../images/bg_footer.jpg) top center no-repeat;
  width: 80%;
  margin: 0 10% 50px 10%;
  padding: 100px 0;
}
@media (max-width: 840px) {
  footer .box {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  footer .box {
    top: -180px;
    background: url(../images/bg_footer_sp.jpg) top center no-repeat;
    background-size: cover;
    padding: 40px 0;
  }
}
footer .box .flexbox {
  width: 90%;
  max-width: 670px;
  margin: 0 auto;
}
@media (max-width: 840px) {
  footer .box .flexbox {
    display: block;
    text-align: center;
  }
}
footer .box .flexbox h2 {
  width: 210px;
}
@media (max-width: 840px) {
  footer .box .flexbox h2 {
    margin: 0 auto 25px auto;
  }
}
@media (max-width: 768px) {
  footer .box .flexbox h2 {
    width: 150px;
  }
}
footer .box .flexbox div p:nth-of-type(1) {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  footer .box .flexbox div p:nth-of-type(1) {
    margin-bottom: 15px;
  }
}
footer .box .flexbox div p:nth-of-type(2) {
  margin-bottom: 10px;
}
footer .box .flexbox div p:nth-of-type(2) .tel .serif {
  font-family: "Noto Serif Japanese", "Noto Serif JP", serif;
  font-size: 3rem;
  letter-spacing: 0.3rem;
}
@media (max-width: 768px) {
  footer .box .flexbox div p:nth-of-type(2) .tel .serif {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
  }
}
footer .list {
  font-size: 1.2rem;
  color: white;
  align-items: stretch;
  margin-bottom: 100px;
}
@media (max-width: 1080px) {
  footer .list {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  footer .list {
    margin-bottom: 50px;
  }
}
footer .list .group {
  width: 40%;
  max-width: 340px;
  font-size: 1.4rem;
  position: relative;
}
@media (max-width: 1080px) {
  footer .list .group {
    font-size: 1.2rem;
    width: 235px;
  }
}
@media (max-width: 768px) {
  footer .list .group {
    width: 100%;
    max-width: 100%;
  }
}
footer .list .group .resol {
  margin-bottom: 40px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  footer .list .group .resol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
  }
}
footer .list .group .resol li {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  footer .list .group .resol li {
    width: calc(50% - 15px);
    font-size: 1.2rem;
    line-height: 160%;
    text-indent: -15px;
    margin: 0 0 10px 15px;
  }
  footer .list .group .resol li::before {
    content: "-";
    margin-right: 10px;
  }
  footer .list .group .resol li:first-child {
    width: 100%;
  }
  footer .list .group .resol li:first-child::before {
    display: none;
  }
}
footer .list .group .resol li h4 {
  width: 220px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  footer .list .group .resol li h4 {
    width: 200px;
    max-width: 200px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  footer .list .group .bnr {
    margin-bottom: 35px;
  }
}
footer .list .group .bnr li {
  margin-bottom: 15px;
}
footer .list .group .bnr li:last-child {
  margin-bottom: 0;
}
footer .list .group .bnr li:nth-child(1) img {
  width: 28px;
  height: auto;
}
@media (max-width: 768px) {
  footer .list .group .bnr li:nth-child(1) img {
    width: 30px;
  }
}
footer .list .group .bnr li:nth-child(2) img {
  width: 40px;
  height: auto;
}
@media (max-width: 768px) {
  footer .list .group .bnr li:nth-child(2) img {
    width: 35px;
  }
}
footer .list .group .bnr li:nth-child(3) img {
  width: 36px;
  height: auto;
}
@media (max-width: 768px) {
  footer .list .group .bnr li:nth-child(3) img {
    width: 32px;
  }
}
footer .list .group .bnr li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 70px;
  border: solid white 1px;
  padding: 10px 35px;
}
@media (max-width: 768px) {
  footer .list .group .bnr li a {
    width: 100%;
    max-width: 100%;
    padding: 10px 40px;
  }
}
footer .list .group .bnr li a .name {
  width: 75%;
  font-size: 1.3rem;
  line-height: 160%;
  letter-spacing: 1.5px;
}
footer .list .group .bnr li a .name span {
  font-size: 1rem;
  display: block;
}
footer .list .group .bnr li a .icon {
  width: 20%;
  text-align: center;
}
footer .list .group .bnr li a::before {
  content: "";
  margin-right: 0px;
}
@media (max-width: 768px) {
  footer .list .group .bnr li a::before {
    display: none;
  }
}
footer .list .line {
  position: relative;
}
footer .list .line::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #374463;
  position: absolute;
  top: 0px;
  right: 0px;
}
@media (max-width: 768px) {
  footer .list .line::after {
    display: none;
  }
}
footer .list .hotellist {
  width: 205px;
  position: relative;
  letter-spacing: 0.1rem;
}
@media (max-width: 1080px) {
  footer .list .hotellist {
    letter-spacing: 0;
    width: 165px;
  }
}
@media (max-width: 768px) {
  footer .list .hotellist {
    width: 100%;
    min-width: 100%;
    padding: 0 0 0 0;
  }
}
footer .list .hotellist h4 {
  font-weight: bold;
}
@media (max-width: 768px) {
  footer .list .hotellist h4 {
    font-size: 1.4rem;
  }
  footer .list .hotellist h4::before {
    content: "-";
    color: #626A8E;
    margin-right: 5px;
  }
}
footer .list .hotellist ul {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .list .hotellist ul li {
    display: inline;
    font-size: 1.1rem;
    margin-bottom: 0px;
  }
  footer .list .hotellist ul li::after {
    content: "｜";
    margin: 0 1px;
  }
  footer .list .hotellist ul li:first-child {
    width: 100%;
  }
  footer .list .hotellist ul li:first-child::after {
    display: none;
  }
}
footer .list .hotellist ul:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  footer .list .hotellist ul:last-of-type {
    margin-bottom: 20px;
  }
}
footer .list > li:nth-of-type(5) {
  width: 190px;
}
@media (max-width: 1080px) {
  footer .list > li:nth-of-type(5) {
    width: 160px;
  }
}
@media (max-width: 768px) {
  footer .list > li:nth-of-type(5) {
    width: 100%;
    min-width: 100%;
    padding: 0 0 0 0;
  }
}
footer .list > li:nth-of-type(5)::after {
  background-color: transparent;
}
footer .list a {
  color: white;
}
footer .list a::before {
  content: "-";
  color: #626A8E;
  margin-right: 10px;
}
@media (max-width: 768px) {
  footer .list a::before {
    display: none;
  }
}
footer .copy {
  background-color: white;
  padding: 50px 0;
}
footer .copy ul {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  footer .copy ul {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
}
footer .copy ul li {
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 100%;
}
@media (max-width: 768px) {
  footer .copy ul li {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  footer .copy ul li .sp_hide {
    display: none;
  }
}
footer .copy ul li:nth-child(1)::after, footer .copy ul li:nth-child(2)::after {
  display: inline-block;
  content: "｜";
  margin: 0 15px;
}
@media (max-width: 768px) {
  footer .copy ul li:nth-child(1)::after, footer .copy ul li:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  footer .copy ul li:nth-child(3) {
    width: 100%;
    text-align: left;
    margin-top: 15px;
  }
}
footer .copy ul li a {
  color: #21294A;
}
footer .copy ul li img {
  width: 13px;
  height: 13px;
  vertical-align: bottom;
  margin-left: 5px;
}
footer .copy ul li .sp_hide {
  display: inline-block;
}
footer .copy ul li:last-child {
  font-size: 0.9rem;
  font-weight: normal;
  letter-spacing: 1px;
  margin-left: auto;
}
@media (max-width: 930px) {
  footer .copy ul li:last-child {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  footer .copy ul li:last-child {
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0;
    margin: 40px 0 40px 0;
  }
}

/*-----------------------
booknow_side
------------------------*/
.booknow_side {
  position: fixed;
  top: calc(50% - 250px);
  right: -380px;
  width: 380px;
  height: 500px;
}
.booknow_side .sidebtn {
  width: 85px;
  height: 210px;
  position: absolute;
  top: calc(50% - 105px);
  left: -85px;
}
.booknow_side .sidebtn:hover {
  cursor: pointer;
}
.booknow_side .booknow_side_inner {
  width: 380px;
  height: 500px;
  background: white;
  box-shadow: 0px 0px 6px -5px rgba(0, 0, 0, 0.8);
  padding: 60px 50px;
}
.booknow_side .booknow_side_inner ul li {
  letter-spacing: 0;
  font-weight: bold;
}
.booknow_side .booknow_side_inner ul li a {
  position: relative;
  color: #21294A;
}
.booknow_side .booknow_side_inner ul li:nth-child(1) {
  text-align: center;
  margin-bottom: 40px;
}
.booknow_side .booknow_side_inner ul li:nth-child(1) button {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 70px;
  color: white;
  border: none;
  background-color: #21294A;
  margin-bottom: 10px;
}
.booknow_side .booknow_side_inner ul li:nth-child(1) button::before {
  display: none;
}
.booknow_side .booknow_side_inner ul li:nth-child(1) button::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: white white transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
}
.booknow_side .booknow_side_inner ul li:nth-child(1) a {
  font-size: 1.2rem;
  padding-left: 14px;
}
.booknow_side .booknow_side_inner ul li:nth-child(1) a::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #21294A;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  top: 5px;
  left: 0px;
}
.booknow_side .booknow_side_inner ul li:not(:first-child) {
  border-bottom: solid #9A9A9A 1px;
}
.booknow_side .booknow_side_inner ul li:not(:first-child) button {
  display: block;
  position: relative;
  width: 100%;
  color: #21294A;
  font-weight: bold;
  text-align: left;
  line-height: 100%;
  border: none;
  padding: 30px 0 30px 40px;
}
.booknow_side .booknow_side_inner ul li:not(:first-child) button img {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
}
.booknow_side .booknow_side_inner ul li:not(:first-child) button::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #21294A #21294A transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
}
.booknow_side .booknow_side_inner ul li:nth-child(2) {
  border-top: solid #9A9A9A 1px;
}
.booknow_side .booknow_side_inner ul li:nth-child(2) button {
  background: url(../images/icon_booknow_teikei.svg) center left 10px no-repeat;
}
.booknow_side .booknow_side_inner ul li:nth-child(2) button:hover {
  background: url(../images/icon_booknow_teikei.svg) center left 10px no-repeat #F3F3F3;
}
.booknow_side .booknow_side_inner ul li:nth-child(3) button {
  background: url(../images/icon_booknow_air.svg) top 26px left 10px no-repeat;
}
.booknow_side .booknow_side_inner ul li:nth-child(3) button:hover {
  background: url(../images/icon_booknow_air.svg) top 26px left 10px no-repeat #F3F3F3;
}
.booknow_side .booknow_side_inner ul li:nth-child(4) button {
  background: url(../images/icon_booknow_jr.svg) center left 12px no-repeat;
}
.booknow_side .booknow_side_inner ul li:nth-child(4) button:hover {
  background: url(../images/icon_booknow_jr.svg) center left 12px no-repeat #F3F3F3;
}

/*-----------------------
#booknow-bottom_bg
-----------------------*/
#booknow-bottom_bg {
  display: block;
  content: "";
  position: fixed;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  padding: 0;
  background: #A88953;
}

/*-----------------------
#booknow-bottom
-----------------------*/
#booknow-bottom {
  position: fixed;
  bottom: 0;
  z-index: 20;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  padding: 0;
}
#booknow-bottom #bottombtn {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 0 8%;
}
#booknow-bottom #bottombtn img {
  height: 12px;
  width: auto;
}
#booknow-bottom #bottombtn span {
  font-size: 1.1rem;
  position: relative;
  margin-right: 20px;
}
#booknow-bottom #bottombtn span.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: white white transparent transparent;
  transform: rotate(-45deg);
  margin-left: 10px;
  position: absolute;
  top: 13px;
  right: -45px;
  transition: all 0.3s ease;
}
#booknow-bottom #bottombtn span.arrow.open {
  transform: rotate(135deg);
  top: 6px;
  transition: all 0.3s ease;
}
#booknow-bottom #bottombtn:hover {
  cursor: pointer;
}
#booknow-bottom.open {
  display: block !important;
  z-index: 22;
  background: #A88953;
}

/*-----------------------
#naviSlide-booknow
-----------------------*/
#naviSlide-booknow {
  height: calc(100% - 50px);
  max-height: 100%;
  display: none;
  position: fixed;
  bottom: 50px;
  z-index: 21;
  width: 100%;
  background: white;
}
#naviSlide-booknow .naviSlide_inner {
  position: relative;
  height: calc(100% + 40px);
  padding: 30px 12%;
  overflow-y: auto;
}
#naviSlide-booknow iframe {
  width: 100%;
  height: 350px;
}
#naviSlide-booknow ul li {
  letter-spacing: 0;
  font-weight: bold;
  border-bottom: solid #9A9A9A 1px;
}
#naviSlide-booknow ul li a {
  position: relative;
  color: #21294A;
}
#naviSlide-booknow ul li button {
  display: block;
  position: relative;
  width: 100%;
  color: #21294A;
  font-weight: bold;
  text-align: left;
  line-height: 100%;
  border: none;
  padding: 20px 0 20px 40px;
}
#naviSlide-booknow ul li button img {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
}
#naviSlide-booknow ul li button::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #21294A #21294A transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
}
#naviSlide-booknow ul li:nth-child(1) {
  border-top: solid #9A9A9A 1px;
}
#naviSlide-booknow ul li:nth-child(1) button {
  background: url(../images/icon_booknow_teikei.svg) center left 10px no-repeat;
}
#naviSlide-booknow ul li:nth-child(2) button {
  background: url(../images/icon_booknow_air.svg) top 15px left 10px no-repeat;
}
#naviSlide-booknow ul li:nth-child(3) button {
  background: url(../images/icon_booknow_jr.svg) center left 12px no-repeat;
}

/*-----------------------
モーダル
------------------------*/
/*共通*/
.remodal .hide {
  display: none;
}
.remodal.modal-optima, .remodal.modal-jr, .remodal.modal-air {
  width: 80%;
  max-width: 1080px;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .remodal.modal-optima, .remodal.modal-jr, .remodal.modal-air {
    width: 90%;
    margin: 20px 0;
  }
}
.remodal.modal-optima h2, .remodal.modal-jr h2, .remodal.modal-air h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .remodal.modal-optima h2, .remodal.modal-jr h2, .remodal.modal-air h2 {
    font-size: 1.6rem;
    margin: 30px 0 25px 0;
  }
}
.remodal.modal-optima h2::before, .remodal.modal-jr h2::before, .remodal.modal-air h2::before {
  display: inline-block;
  content: "";
  vertical-align: bottom;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .remodal.modal-optima h2::before, .remodal.modal-jr h2::before, .remodal.modal-air h2::before {
    margin-right: 10px;
  }
}
.remodal.modal-optima .tab-wrap, .remodal.modal-jr .tab-wrap, .remodal.modal-air .tab-wrap {
  width: 100%;
  margin: 0 auto;
}
.remodal.modal-optima .tab-wrap .tab, .remodal.modal-jr .tab-wrap .tab, .remodal.modal-air .tab-wrap .tab {
  overflow: hidden;
}
@media (max-width: 768px) {
  .remodal.modal-optima .tab-wrap .tab, .remodal.modal-jr .tab-wrap .tab, .remodal.modal-air .tab-wrap .tab {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}
.remodal.modal-optima .tab-wrap .tab li, .remodal.modal-jr .tab-wrap .tab li, .remodal.modal-air .tab-wrap .tab li {
  flex: 1;
  min-height: 51px;
  font-size: 1.45rem;
  font-weight: bold;
  text-align: center;
  line-height: 120%;
  letter-spacing: 0px;
  color: #75798B;
  background-color: #E5E6E9;
  border-radius: 3px 3px 0 0;
  padding: 15px 0;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .remodal.modal-optima .tab-wrap .tab li, .remodal.modal-jr .tab-wrap .tab li, .remodal.modal-air .tab-wrap .tab li {
    min-height: auto;
    font-size: 1.3rem;
    background-color: #CDCFD6;
    border-radius: 0;
  }
}
.remodal.modal-optima .tab-wrap .tab li span, .remodal.modal-jr .tab-wrap .tab li span, .remodal.modal-air .tab-wrap .tab li span {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .remodal.modal-optima .tab-wrap .tab li span, .remodal.modal-jr .tab-wrap .tab li span, .remodal.modal-air .tab-wrap .tab li span {
    display: block;
  }
}
.remodal.modal-optima .tab-wrap .tab li:last-child, .remodal.modal-jr .tab-wrap .tab li:last-child, .remodal.modal-air .tab-wrap .tab li:last-child {
  margin-right: 0;
}
.remodal.modal-optima .tab-wrap .tab li:hover, .remodal.modal-jr .tab-wrap .tab li:hover, .remodal.modal-air .tab-wrap .tab li:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .remodal.modal-optima .tab-wrap .tab li, .remodal.modal-jr .tab-wrap .tab li, .remodal.modal-air .tab-wrap .tab li {
    flex: inherit;
    width: 49%;
    margin: 0 0 2% 0;
  }
}
.remodal.modal-optima .tab-wrap .tab .select, .remodal.modal-jr .tab-wrap .tab .select, .remodal.modal-air .tab-wrap .tab .select {
  background-color: white;
  color: #21294A;
}
.remodal.modal-optima .tab-wrap .tab-contents, .remodal.modal-jr .tab-wrap .tab-contents, .remodal.modal-air .tab-wrap .tab-contents {
  background-color: white;
  padding: 5% 8%;
}
@media (max-width: 768px) {
  .remodal.modal-optima .tab-wrap .tab-contents, .remodal.modal-jr .tab-wrap .tab-contents, .remodal.modal-air .tab-wrap .tab-contents {
    padding: 7%;
  }
}

/*OPTIMAモーダル*/
.modal-optima h2:before {
  width: 40px;
  height: 26px;
  background: url(../images/icon_booknow_ippan_white.svg) top left no-repeat;
  background-size: contain;
}
.modal-optima .frame {
  position: relative;
  width: 100%;
  max-width: 1080px;
  height: 500px;
  margin: 0 auto;
}
.modal-optima .frame iframe {
  width: 100%;
  height: 100%;
}

/*JRモーダル*/
.modal-jr h2:before {
  width: 28px;
  height: 30px;
  background: url(../images/icon_booknow_jr_white.svg) top left no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .modal-jr h2:before {
    width: 22px;
    height: 22px;
  }
}
.modal-jr .tab-contents {
  /*JTB*/
  /*日本旅行*/
}
.modal-jr .tab-contents h3 {
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: dotted #707070 1px;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents h3 {
    font-size: 1.7rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.modal-jr .tab-contents h3 img {
  height: 48px;
  width: auto;
  vertical-align: middle;
  margin: 0 15px 0 0;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents h3 img {
    height: 30px;
    width: auto;
  }
}
.modal-jr .tab-contents h3 span {
  vertical-align: middle;
}
.modal-jr .tab-contents p {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents p {
    text-align: left;
    margin-bottom: 20px;
  }
}
.modal-jr .tab-contents .kkrs-horizontal {
  width: 100% !important;
  padding: 0;
}
.modal-jr .tab-contents .kkrs-top-search-section .kkrs-search-item .kkrs-search-input,
.modal-jr .tab-contents .kkrs-form-pulldown__set {
  border: solid #E2E2E2 1px;
}
.modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-search-item,
.modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-search-item {
  margin-bottom: 15px;
}
.modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-search-item .kkrs-search-label,
.modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-search-item .kkrs-search-label {
  font-size: 1.2rem;
  top: 12px;
}
.modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-search-item .kkrs-search-input input,
.modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-search-item .kkrs-search-input input {
  height: 56px;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-search-item .kkrs-search-input input,
  .modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-search-item .kkrs-search-input input {
    height: 50px;
    font-size: 1.3rem;
  }
}
.modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-search-item .kkrs-search-column,
.modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-search-item .kkrs-search-column {
  height: 60px;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-search-item .kkrs-search-column,
  .modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-search-item .kkrs-search-column {
    height: 50px;
    font-size: 1.4rem;
  }
}
.modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-search-item .kkrs-form-pulldown__set,
.modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-search-item .kkrs-form-pulldown__set {
  height: 58px;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-search-item .kkrs-form-pulldown__set,
  .modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-search-item .kkrs-form-pulldown__set {
    height: 50px;
    font-size: 1.4rem;
  }
}
.modal-jr .tab-contents .kkrs-top-search-section .kkrs-top-search-submit-btn span:before {
  display: none;
}
.modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-top-search-submit-btn,
.modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-top-search-submit-btn {
  position: relative;
  display: block;
  width: 80%;
  max-width: 500px;
  height: 60px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 60px;
  text-align: center;
  background: #A88953;
  color: white;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-top-search-submit-btn,
  .modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-top-search-submit-btn {
    height: 50px;
    font-size: 1.3rem;
    line-height: 50px;
  }
}
.modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-top-search-submit-btn::after,
.modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-top-search-submit-btn::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: white white transparent transparent;
  transform: rotate(45deg);
}
.modal-jr .tab-contents .kkrs-horizontal .kkrs-top-search-section .kkrs-top-search-submit-btn:hover,
.modal-jr .tab-contents .kkrs-vertical .kkrs-top-search-section .kkrs-top-search-submit-btn:hover {
  border-radius: 0;
  opacity: 0.8;
}
.modal-jr .tab-contents .jrset_gadget_box {
  padding: 0;
}
.modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap dd {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap dd {
    margin-bottom: 10px;
  }
}
.modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap dd span,
.modal-jr .tab-contents .jrset_gadget_box #jrset_pax_wrap dd span {
  font-size: 1.2rem;
  color: #989ba1;
}
.modal-jr .tab-contents .jrset_gadget_box .jrset_selectday {
  border: solid #E2E2E2 1px;
  padding-left: 15px;
}
.modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap dd select,
.modal-jr .tab-contents .jrset_gadget_box #jrset_pax_wrap dd select {
  border: solid #E2E2E2 1px;
}
.modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap .jrset_selectday p {
  height: 56px;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap .jrset_selectday p {
    height: 50px;
  }
}
.modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap dd select,
.modal-jr .tab-contents .jrset_gadget_box #jrset_pax_wrap dd select {
  height: 56px;
  padding: 5px 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap dd select,
  .modal-jr .tab-contents .jrset_gadget_box #jrset_pax_wrap dd select {
    height: 50px;
  }
}
.modal-jr .tab-contents .select-wrap {
  position: relative;
  margin-bottom: 0;
}
.modal-jr .tab-contents .select-wrap:after {
  content: "";
  position: absolute;
  right: 13px;
  top: 25px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #21294A;
  border-left: 1px solid #21294A;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}
.modal-jr .tab-contents .jrset_gadget_box .jrset_date {
  line-height: 4.6;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .jrset_gadget_box .jrset_date {
    line-height: 4;
  }
}
.modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap dd .jrset_gadget_calendar_btn {
  width: 18px;
  height: auto;
  top: 18px;
  right: 10px;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .jrset_gadget_box #jrset_togo_wrap dd .jrset_gadget_calendar_btn {
    top: 15px;
  }
}
.modal-jr .tab-contents .jrset_gadget_box #jrset_pax_wrap {
  margin-bottom: 30px;
}
.modal-jr .tab-contents .jrset_gadget_box #dojrsetSearch {
  position: relative;
  display: block;
  width: 80%;
  max-width: 500px;
  height: 60px;
  font-size: 1.6rem;
  line-height: 60px;
  letter-spacing: 0.2em;
  text-align: center;
  background: #A88953;
  color: white;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .jrset_gadget_box #dojrsetSearch {
    height: 50px;
    font-size: 1.3rem;
    line-height: 50px;
  }
}
.modal-jr .tab-contents .jrset_gadget_box #dojrsetSearch::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: white white transparent transparent;
  transform: rotate(45deg);
}
.modal-jr .tab-contents .jrset_gadget_box #dojrsetSearch:hover {
  border-radius: 0;
  opacity: 0.8;
}
.modal-jr .tab-contents .jrset_gadget_box li a {
  font-size: 1.3rem;
  color: #21294A;
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .jrset_gadget_box li a {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .modal-jr .tab-contents .jrset_gadget_box .linkList {
    font-size: 1.1rem;
  }
}

/*航空券付きモーダル*/
.modal-air h2:before {
  width: 30px;
  height: 30px;
  background: url(../images/icon_booknow_air_white.svg) top left no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .modal-air h2:before {
    width: 22px;
    height: 22px;
  }
}
.modal-air .tab-contents .flexbox {
  align-items: flex-start;
  margin-bottom: 3%;
}
.modal-air .tab-contents .flexbox .photo {
  width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .modal-air .tab-contents .flexbox .photo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    border-bottom: dotted #707070 1px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .modal-air .tab-contents .flexbox .photo img {
    display: block;
    width: 100px;
  }
  .modal-air .tab-contents .flexbox .photo h3 {
    width: calc(100% - 120px);
    font-size: 1.7rem;
    font-weight: bold;
    text-align: left;
  }
  .modal-air .tab-contents .flexbox .photo h3 img {
    height: 24px;
    width: auto;
    margin-bottom: 10px;
  }
}
.modal-air .tab-contents .flexbox .text {
  width: calc(100% - 320px);
  text-align: left;
}
@media (max-width: 768px) {
  .modal-air .tab-contents .flexbox .text {
    width: 100%;
  }
}
.modal-air .tab-contents .flexbox .text h3 {
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: dotted #707070 1px;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.modal-air .tab-contents .flexbox .text h3 img {
  height: 34px;
  width: auto;
  vertical-align: middle;
  margin-right: 15px;
}
@media (max-width: 1210px) {
  .modal-air .tab-contents .flexbox .text h3 img {
    display: block;
    margin-bottom: 15px;
  }
}
.modal-air .tab-contents .flexbox .text h3 span {
  display: inline-block;
  vertical-align: middle;
}
.modal-air .tab-contents .flexbox .text p {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .modal-air .tab-contents .flexbox .text p {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .modal-air .tab-contents .flexbox .text ul {
    margin-bottom: 25px;
  }
}
.modal-air .tab-contents .flexbox .text ul li {
  min-height: 18px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 110%;
  background: url(../images/icon_check.svg) top left no-repeat;
  padding-left: 30px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .modal-air .tab-contents .flexbox .text ul li {
    min-height: 16px;
    font-size: 1.5rem;
    background: url(../images/icon_check.svg) top left no-repeat;
    background-size: 14px 14px;
    padding-left: 24px;
    margin-bottom: 10px;
  }
}
.modal-air .tab-contents button {
  border: none;
}
.modal-air .tab-contents button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.modal-air .tab-contents .btn {
  position: relative;
  display: block;
  width: 80%;
  max-width: 500px;
  height: 60px;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 60px;
  text-align: center;
  background-color: #A88953;
  border: none;
  color: white;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .modal-air .tab-contents .btn {
    width: 100%;
    max-width: 100%;
    height: auto;
    font-size: 1.3rem;
    line-height: 150%;
    padding: 15px 0;
  }
}
.modal-air .tab-contents .btn::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: white white transparent transparent;
  transform: rotate(45deg);
}
.modal-air .tab-contents .btn:hover {
  opacity: 0.8;
}

/*-----------------------
optima_pc
------------------------*/
#optima_pc {
  width: 90%;
  max-width: 880px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#optima_pc .optima_pc_inner > .flexbox {
  font-weight: bold;
  margin-bottom: 20px;
}
#optima_pc .optima_pc_inner > .flexbox p {
  text-indent: -0.5rem;
  font-size: 1.3rem;
}
#optima_pc .optima_pc_inner > .flexbox a {
  position: relative;
  font-size: 1.1rem;
  color: #21294A;
  padding-left: 15px;
}
#optima_pc .optima_pc_inner > .flexbox a::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #21294A;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  top: 10px;
  left: 0px;
}
#optima_pc .optima_pc_inner form {
  margin-bottom: 50px;
}
#optima_pc .optima_pc_inner form .flexbox {
  display: flex;
  align-items: flex-end;
}
#optima_pc .optima_pc_inner form .flexbox fieldset legend {
  font-size: 1.2rem;
}
#optima_pc .optima_pc_inner form .flexbox fieldset.checkin {
  width: 22%;
  max-width: 180px;
}
#optima_pc .optima_pc_inner form .flexbox fieldset.nights {
  width: 16%;
  max-width: 140px;
}
#optima_pc .optima_pc_inner form .flexbox fieldset.rooms {
  width: 16%;
  max-width: 140px;
}
#optima_pc .optima_pc_inner form .flexbox fieldset.adults {
  width: 16%;
  max-width: 140px;
}
#optima_pc .optima_pc_inner form .flexbox fieldset.children {
  display: none !important;
}
#optima_pc .optima_pc_inner form .flexbox fieldset:nth-child(6) {
  display: none !important;
}
#optima_pc .optima_pc_inner form .flexbox .field-button {
  width: 15%;
  max-width: 120px;
}
#optima_pc .optima_pc_inner form .flexbox select {
  width: 100%;
  font-size: 1.7rem;
  padding: 10px 0 10px 0;
  background-color: inherit;
  border: none;
  border-bottom: solid gray 1px;
}
#optima_pc .optima_pc_inner form .flexbox input#checkin_date {
  width: 100%;
  font-size: 1.7rem;
  padding: 10px 0 10px 0;
  border: none;
  border-bottom: solid gray 1px;
}
#optima_pc .optima_pc_inner form .flexbox input.btn {
  width: 100%;
  height: 60px;
  color: white;
  font-size: 1.4rem;
  font-weight: normal;
  background-color: #21294A;
  border: none;
}
#optima_pc .optima_pc_inner form .flexbox input.btn:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.3s ease;
}
#optima_pc .optima_pc_inner .btn_plan {
  position: relative;
  display: block;
  width: 80%;
  max-width: 400px;
  height: 50px;
  font-size: 1.6rem;
  line-height: 50px;
  text-align: center;
  background-color: #A88953;
  color: white;
  margin: 0 auto;
}
#optima_pc .optima_pc_inner .btn_plan::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: white white transparent transparent;
  transform: rotate(45deg);
}

/*-----------------------
optima_sp
------------------------*/
#optima_sp {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
#optima_sp > p {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
  margin-bottom: 20px;
}
#optima_sp form {
  margin-bottom: 0px;
}
#optima_sp form .flexbox {
  display: flex;
  align-items: flex-end;
}
#optima_sp form .flexbox fieldset legend {
  font-size: 1rem;
  font-weight: bold;
  line-height: 100%;
}
#optima_sp form .flexbox fieldset.checkin {
  width: 48%;
}
#optima_sp form .flexbox fieldset.nights {
  width: 48%;
}
#optima_sp form .flexbox fieldset.rooms {
  width: 48%;
}
#optima_sp form .flexbox fieldset.adults {
  width: 48%;
}
#optima_sp form .flexbox fieldset.children {
  display: none !important;
}
#optima_sp form .flexbox fieldset:nth-child(6) {
  display: none !important;
}
#optima_sp form .flexbox .field-button {
  width: 100%;
}
#optima_sp form .flexbox select {
  width: 100%;
  font-size: 1.6rem;
  padding: 7px 0 7px 0;
  margin-bottom: 20px;
  background-color: inherit;
  border: none;
  border-bottom: solid #9A9A9A 1px;
}
#optima_sp form .flexbox input#checkin_date {
  width: 100%;
  font-size: 1.6rem;
  padding: 7px 0 7px 0;
  margin-bottom: 20px;
  border: none;
  border-bottom: solid #9A9A9A 1px;
}
#optima_sp form .flexbox input.btn {
  width: 100%;
  height: 50px;
  color: white;
  background-color: #21294A;
  border: none;
  margin: 0 auto 15px auto;
}
#optima_sp form .flexbox input.btn:hover {
  opacity: 0.8;
  cursor: pointer;
}
#optima_sp .cancel {
  margin-bottom: 0;
}
#optima_sp .cancel a {
  text-align: center;
  position: relative;
  font-size: 1.1rem;
  color: #21294A;
  padding-left: 15px;
}
#optima_sp .cancel a::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #21294A;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  top: 4px;
  left: 0px;
}/*# sourceMappingURL=common.css.map */