@charset "UTF-8";
/*-------------------------------------------*/
/*
/*　　base
/*
/*-------------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption,
th,
td {
  text-align: left;
}

/*-------------------------------------------*/
/*
/*　　base
/*
/*-------------------------------------------*/
html {
  position: relative;
  font-size: 62.5%;
}

body {
  position: relative;
  min-width: 1100px;
  font-size: 18px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-display: swap;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.2em;
  color: #1e3c64;
  background: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body.fixed {
  overflow: hidden;
}

a:link,
a:visited {
  color: #1e3c64;
  text-decoration: none;
}

a {
  box-sizing: border-box;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.5;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}

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

img.max {
  width: 100%;
}

p {
  line-height: 2.1;
}

#svg_sprite {
  display: none;
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 57.5%;
  }
}
@media screen and (max-width: 810px) {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 0;
    font-size: 1.35rem;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
  a:hover {
    opacity: 1;
  }
  img:not(.sp_auto) {
    width: 100%;
  }
}
/*-------------------------------------------*/
/*
/*loading
/*
/*-------------------------------------------*/
#loading {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  z-index: 999999;
}
#loading .loading_logo {
  width: 100%;
  animation: loadingAnime 3s infinite;
}
#loading .loading_logo img {
  max-width: 80%;
}
#loading #loading_bar {
  width: 100%;
  margin-top: 32px;
  height: 2px;
}

@keyframes loadingAnime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-------------------------------------------*/
/*
/*　　header
/*
/*-------------------------------------------*/
#header_wrap {
  position: relative;
}

.nav_open {
  width: 64px;
  height: 60px;
  padding-top: 30px;
  cursor: pointer;
}
.nav_open.active .bar {
  background: transparent;
}
.nav_open.active .bar:before {
  transform: rotate(35deg);
}
.nav_open.active .bar:after {
  transform: rotate(-35deg);
}
.nav_open .bar {
  position: relative;
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 auto;
  background: #1e3c64;
}
.nav_open .bar:before, .nav_open .bar:after {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 20px;
  height: 1px;
  background: #1e3c64;
}
.nav_open .bar:before {
  top: -10px;
}
.nav_open .bar:after {
  top: 10px;
  width: 40px;
}
.nav_open .txt {
  display: block;
  text-align: left;
  text-indent: -9999px;
}

#fix_header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 30px 16px 0 24px;
  letter-spacing: 0;
  line-height: 1;
  z-index: 1000;
}
#fix_header > .flexbox {
  height: 60px;
}
#fix_header .h_logo {
  margin-right: auto;
  line-height: 1;
  filter: drop-shadow(0 0 10px #fff);
}
#fix_header .h_btns {
  gap: 8px;
  margin-left: auto;
}
#fix_header .btn_reserve {
  height: 60px;
  padding: 20px 16px;
  background: #dadada;
}
@media (any-hover: hover) {
  #fix_header .btn_reserve:hover {
    background: #ebe9e4;
    opacity: 1;
  }
}
#fix_header .btn_reserve .icon {
  margin-right: 4px;
}
#fix_header .h_lang {
  position: relative;
  background: #dadada;
  transition: background 0.5s;
}
@media (any-hover: hover) {
  #fix_header .h_lang:hover {
    background: #ebe9e4;
  }
}
#fix_header .h_lang .lang_tit {
  display: block;
  height: 60px;
  padding: 20px 16px;
  cursor: pointer;
}
#fix_header .h_lang .lang_tit .icon {
  margin-right: 4px;
}
#fix_header .h_lang .lang_list {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #dadada;
  text-align: center;
  z-index: 1;
}
#fix_header .h_lang .lang_list li a {
  display: block;
  padding: 12px 8px;
}
@media (any-hover: hover) {
  #fix_header .h_lang .lang_list li a:hover {
    background: #ebe9e4;
    opacity: 1;
  }
}

#scroll_header {
  position: fixed;
  left: 0;
  top: -60px;
  width: 100%;
  min-width: 1000px;
  padding: 0 16px 0 24px;
  background: rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  letter-spacing: 0;
  line-height: 1;
  z-index: 2001;
}
#scroll_header > .flexbox {
  height: 60px;
}
#scroll_header .h_logo {
  margin-bottom: 4px;
  line-height: 1;
}
#scroll_header .h_logo img {
  vertical-align: middle;
}
#scroll_header .h_nav {
  max-width: calc(100% - 216px - 240px);
  margin-left: auto;
  font-size: 1.6rem;
  justify-content: center;
  line-height: 1.2;
}
#scroll_header .h_nav li {
  position: relative;
  padding-right: 1em;
}
#scroll_header .h_nav li::after {
  content: "・";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
}
#scroll_header .h_nav li:last-of-type::after {
  content: none;
}
#scroll_header .h_nav li a {
  position: relative;
  display: block;
}
#scroll_header .h_nav .list_child {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  min-width: 100%;
  background: #dadada;
  font-size: 0.85em;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
}
#scroll_header .h_nav .list_child li {
  padding-right: 0;
}
#scroll_header .h_nav .list_child li::after {
  content: none;
}
#scroll_header .h_nav .list_child li a {
  padding: 10px;
}
@media (any-hover: hover) {
  #scroll_header .h_nav .list_child li a:hover {
    background: #ebe9e4;
    opacity: 1;
  }
}
#scroll_header .btn_reserve {
  display: block;
  height: 60px;
  margin-right: 8px;
  padding: 60px;
  padding: 20px 14px;
  background: #dadada;
}
#scroll_header .btn_reserve .icon {
  margin-right: 4px;
}

@keyframes headerAnime {
  0% {
    opacity: 0;
    top: -80px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@media screen and (min-width: calc(810px + 1px)) {
  #scroll_header.active {
    top: 0;
    animation: headerAnime 0.4s ease;
  }
}
@media screen and (max-width: 1280px) {
  #scroll_header .h_nav {
    font-size: 1.4rem;
  }
  #scroll_header .btn_reserve {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 810px) {
  .nav_open {
    margin-right: -16px;
    width: 64px;
    height: 60px;
    padding-top: 30px;
    margin-left: auto;
  }
  .nav_open.active .bar {
    background: transparent;
  }
  .nav_open.active .bar:before {
    transform: rotate(35deg);
  }
  .nav_open.active .bar:after {
    transform: rotate(-35deg);
  }
  .nav_open .bar {
    width: 23px;
  }
  .nav_open .bar:before, .nav_open .bar:after {
    width: 15px;
  }
  .nav_open .bar:before {
    top: -8px;
  }
  .nav_open .bar:after {
    top: 8px;
    width: 30px;
  }
  #fix_header {
    padding: 17px 20px 0 20px;
  }
  #fix_header > .flexbox {
    height: auto;
  }
  #fix_header .h_logo {
    margin-right: auto;
    line-height: 1;
    filter: drop-shadow(0 0 7px #fff);
  }
  #fix_header .h_btns {
    display: block;
    gap: 0;
    margin-top: 8px;
    margin-left: auto;
  }
  #fix_header .btn_reserve {
    height: auto;
  }
  #fix_header .h_lang .lang_tit {
    height: auto;
    padding: 16px 10px;
  }
  #fix_header .h_lang .lang_tit .icon {
    margin-right: 4px;
  }
  #fix_header .h_lang .lang_list li a {
    padding: 12px 8px;
  }
  #scroll_header {
    display: none;
  }
}
/*  side
------------------------------------*/
#side_fix {
  position: fixed;
  right: 0;
  top: 50%;
  width: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2000;
}
#side_fix .btn_bestrate {
  position: relative;
  display: block;
  width: 60px;
  padding: 20px 17px;
  background: #bfaa64;
  z-index: 100;
}
#side_fix .btn_bestrate .icon {
  top: auto;
  right: 2px;
  margin: 0 0 8px 0;
}
#side_fix .btn_bestrate .arrow {
  top: auto;
  margin-top: 8px;
}
#side_fix .search_open {
  position: relative;
  display: block;
  width: 60px;
  padding: 20px 17px;
  background: #1e3c64;
  color: #ebe9e4;
  cursor: pointer;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  z-index: 100;
}
@media (any-hover: hover) {
  #side_fix .search_open {
    transition: background 0.5s;
  }
  #side_fix .search_open:hover {
    background: #4e7faa;
  }
}
#side_fix .search_open .icon {
  top: auto;
  right: 3px;
  margin: 0 0 8px 0;
}
#side_fix .search_open .icon02 {
  margin: 8px 0 0 0;
}

@media screen and (max-width: 810px) {
  #side_fix {
    position: absolute;
    display: flex;
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    height: 60px;
    font-size: 1.35rem;
    line-height: 1.2;
    transform: unset;
    flex-direction: row;
    z-index: 1001;
  }
  #side_fix .btn_bestrate,
  #side_fix .search_open {
    width: 50%;
    height: 60px;
    padding: 12px;
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-align: left;
    z-index: 10;
  }
  #side_fix .btn_bestrate .icon,
  #side_fix .search_open .icon {
    width: 18px;
    margin: 0 8px 0 0;
    vertical-align: middle;
  }
  #side_fix .btn_bestrate .txt,
  #side_fix .search_open .txt {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
  }
  #side_fix .btn_bestrate .txt.pc_inline,
  #side_fix .search_open .txt.pc_inline {
    display: none;
  }
  #side_fix .btn_bestrate .arrow,
  #side_fix .search_open .arrow {
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    width: 14px;
    height: auto;
    margin: auto 0;
  }
  #side_fix .btn_bestrate {
    display: none;
  }
  #side_fix .search_open {
    width: 100%;
    display: none;
    padding-left: 36px;
  }
  #side_fix .search_open .icon {
    display: none;
  }
  #side_fix .search_open .icon02 {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    display: inline-block;
  }
}
/*  search
------------------------------------*/
#search_wrap {
  position: relative;
}

#search {
  position: absolute;
  right: -850px;
  top: 0;
  width: 850px;
  height: 100%;
  padding: 24px 72px 24px 16px;
  background: #4e7faa;
  color: #ebe9e4;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: all 0.4s;
  z-index: 10;
}
#search.open {
  right: 0;
}
#search .search_form {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}
/*******************************************************
トリプラ
*******************************************************/
#search .search_form .tripla_form .tit {
  margin-bottom: 8px;
}
#search .search_form .tripla_form .txt {
  display: inline-block;
  margin-left: 8px;
}
#search form.tripla_form {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0;
  align-items: flex-end;
  justify-content: space-between;
  background: none;
  box-shadow: none;
  line-height: 1.4;
  text-align: left;
}
#search form.tripla_form #year {
  width: 80px;
}
#search form.tripla_form #month,
#search form.tripla_form #day {
  width: 60px;
}
#search form.tripla_form select,
#search form.tripla_form input[type=text],
#search form.tripla_form input[type=date] {
  height: auto;
  margin: 0;
  padding: 4px 8px;
  background: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #1e3c64;
  font-size: 20px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  line-height: 38px;
  box-sizing: border-box;
  -webkit-appearance: none;
  vertical-align: baseline;
  white-space: nowrap;
}
#search form.tripla_form select::-ms-expand,
#search form.tripla_form input[type=text]::-ms-expand,
#search form.tripla_form input[type=date]::-ms-expand {
  display: none;
}
#search form.tripla_form select:focus,
#search form.tripla_form input[type=text]:focus,
#search form.tripla_form input[type=date]:focus {
  outline: none;
}
#search form.tripla_form select {
  padding: 4px 16px;
  /*background: url(../img/common/search_icon_02.svg) no-repeat right 5px center, #fff;*/
  background: #fff;
  background-size: 8px;
  font-size: 20px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 38px;
}
#search form.tripla_form input[type=checkbox] {
  width: 14px;
  height: 14px;
  margin: 0 4px 4px 0;
  background: none;
  vertical-align: middle;
}
#search form.tripla_form input:disabled {
  opacity: 0.5;
  cursor: default;
}
#search form.tripla_form select:disabled {
  opacity: 0.5;
}
#search form.tripla_form option {
  padding: 5px;
  color: #000;
}
#search form.tripla_form label {
  display: inline-block;
  margin-bottom: 2px;
  vertical-align: middle;
}
#search form.tripla_form button {
  width: 120px;
  padding: 14px 5px;
  background: #bfaa64;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  color: #1e3c64;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  transition: all 0.2s;
  text-align: center;
  vertical-align: middle;
}
#search form.tripla_form button .icon {
  margin-right: 5px;
}
#search form.tripla_form button:hover {
  opacity: 0.7;
}
#search form.tripla_form button:focus {
  outline: none;
}
#search form.tripla_form #datepicker {
  width: 172px;
  margin-right: 8px;
  /*background: url(../img/common/search_icon_01.svg) no-repeat right 5px center;*/
  /*background-size: 15px;*/
}
/*******************************************************
// トリプラ
*******************************************************/


/*******************************************************
OPTIMA
*******************************************************/
#search.optima_search {
  padding-block: 6px;
}
#search.optima_search .search_form {
  margin-bottom: 12px;
}
#search form.optima_form #searchBox {
  display: flex;
  column-gap: 5px;
}
#search form.optima_form fieldset {
  padding: 8px;
}
#search form.optima_form input[type="text"] {
  width: 100px;
}
#search form.optima_form input[type="text"],
#search form.optima_form select {
  font-size: 14px;
  height: 30px;
}
#search form.optima_form .children {
  display: none;
}
#search form.optima_form .field-button {
  padding-top: 8px;
}
#search form.optima_form [type='submit'] {
  width: 90px;
  height: 100%;
  padding: 14px 5px;
  background: #bfaa64;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  color: #1e3c64;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  transition: all 0.2s;
  text-align: center;
  vertical-align: middle;
}
#search.optima_search .optima_form_caution {
  line-height: 1.5;
  text-align: left;
  font-size: 14px;
  margin-top: 0.5em;
  white-space: initial;
}
#search.optima_search .optima_form_caution a {
  text-decoration: underline;
  color: inherit;
}
/* ハンバーガーメニューの注意書き */
.nav_reserve .optima_form_caution {
  margin-block: 2em;
  font-size: 13px;
}
.nav_reserve .optima_form_caution a {
  text-decoration: underline;
  color: inherit;
}
/* フッター下部 */
.f_reserve  .optima_form_caution {
  margin-block: 2em;
  line-height: 1.5;
  font-size: 16px;
}
.f_reserve .optima_form_caution a {
  text-decoration: underline;
  color: inherit;
}
/*******************************************************
// OPTIMA
*******************************************************/


.search_link.flexbox {
  justify-content: flex-start;
  column-gap: 30px;
}
#search .search_link a {
  position: relative;
  display: inline-block;
  padding-right: 25px;
  color: currentColor;
}
#search .search_link a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  background: url(../img/common/icon_arrow_02_white.svg) no-repeat;
  background-size: 100%;
  width: 18px;
  height: 9px;
  margin-top: -5px;
}
#search .disnon {
  display: none !important;
}

.ui-widget.ui-widget-content {
  letter-spacing: 0;
}

@keyframes -webkit-searchAnime {
  0% {
    bottom: -100px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes searchAnime {
  0% {
    bottom: -100px;
  }
  100% {
    bottom: 0;
  }
}
@media screen and (max-width: 810px) {
  #search_wrap {
    width: 50%;
  }
  #search {
    position: fixed;
    width: 100vw;
    min-width: 0;
    height: 100vh;
    bottom: 0;
    left: 0;
    padding: 27px 12px 64px;
    background: #fff;
    color: #1e3c64;
    font-size: 1.35rem;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s;
  }
  #search.open {
    opacity: 1;
    visibility: visible;
  }
  #search .search_logo {
    margin-left: 8px;
    margin-bottom: 48px;
    line-height: 1;
    text-align: left;
  }
  #search .search_btns {
    position: absolute;
    right: 10px;
    top: 24px;
  }
  #search .search_lang {
    position: relative;
    line-height: 1;
    z-index: 10;
  }
  #search .search_lang .lang_tit {
    display: block;
    height: auto;
    padding: 16px 12px;
    background: #fff;
    cursor: pointer;
  }
  #search .search_lang .lang_tit .icon {
    margin-right: 12px;
  }
  #search .search_lang .lang_list {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    text-align: center;
  }
  #search .search_lang .lang_list li a {
    display: block;
    padding: 12px 8px;
  }
}
@media screen and (max-width: 810px) and (any-hover: hover) {
  #search .search_lang .lang_list li a:hover {
    background: #dadada;
    opacity: 1;
  }
}
@media screen and (max-width: 810px) {
  #search .search_form {
    width: 100%;
    margin-bottom: 0;
    padding: 28px;
    background: #4e7faa;
    color: #fff;
  }
  #search .search_form .form_tit {
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  #search .search_form .form_tit .en {
    display: block;
    color: #bfaa64;
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  #search .search_form .form_tit .icon {
    margin-left: 4px;
  }
  /*******************************************************
  トリプラ
  *******************************************************/
  #search form.tripla_form {
    height: auto;
    gap: 24px 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  #search form.tripla_form .booking_date:nth-of-type(1) {
    width: 100%;
    text-align: center;
  }
  #search form.tripla_form select,
  #search form.tripla_form input[type=text],
  #search form.tripla_form input[type=date] {
    height: auto;
    font-size: 24px;
  }
  #search form.tripla_form select,
  #search form.tripla_form input[type=text] {
    width: 50px;
    max-width: 100%;
    flex-grow: 1;
  }
  #search form.tripla_form #datepicker {
    width: 180px;
  }
  #search form.tripla_form button {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 0;
    padding: 15px 10px 13px;
    font-size: 16px;
  }
  #search form.tripla_form button .icon {
    margin-right: 10px;
  }
  /*******************************************************
  // トリプラ
  *******************************************************/


  /*******************************************************
  OPTIMA
  *******************************************************/
  #search.optima_search {
  }
  #search.optima_search .search_form {
  }
  #search form.optima_form #searchBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  #search form.optima_form fieldset {
  }
  #search form.optima_form .checkin,
  #search form.optima_form .sort,
  #search form.optima_form .field-button {
    grid-column: span 2;
  }
  #search form.optima_form input[type="text"] {
    width: auto;
  }
  #search form.optima_form input[type="text"],
  #search form.optima_form select {
  }
  #search form.optima_form .children {
  }
  #search form.optima_form .field-button {
  }
  #search form.optima_form [type='submit'] {
    width: 120px;
  }
  #search.optima_search .optima_form_caution {
    margin-top: 1em;
  }
  #search.optima_search .optima_form_caution a {
  }
  /* フッター下部 */
  .f_reserve  .optima_form_caution {
    font-size: 14px;
    text-align: left;
  }
  /*******************************************************
  // OPTIMA
  *******************************************************/

  #search .search_reserve {
    width: 100%;
    margin-top: 0;
    padding: 32px 40px;
    line-height: 1.5;
  }
  #search .search_reserve .reserve_tit {
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
  }
  #search .search_reserve .reserve_btns {
    max-width: 255px;
    margin: 0 auto;
  }
  #search .search_reserve .reserve_btns a {
    position: relative;
    display: block;
    color: currentColor;
    font-size: 1.35rem;
    line-height: 1.5;
    text-align: center;
  }
  #search .search_reserve .reserve_btns a .arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 16px;
    height: auto;
    margin-top: -5px;
  }
  #search .search_reserve .reserve_btns .btn_bonus,
  #search .search_reserve .reserve_btns .btn_reserve {
    padding: 18px 8px;
  }
  #search .search_reserve .reserve_btns .btn_bonus .icon,
  #search .search_reserve .reserve_btns .btn_reserve .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    width: 16px;
    height: auto;
    margin-top: -8px;
  }
  #search .search_reserve .reserve_btns .btn_bonus {
    background: #bfaa64;
    color: #1e3c64;
    font-weight: 500;
  }
  #search .search_reserve .reserve_btns .btn_reserve {
    margin-top: 12px;
    background: #1e3c64;
    color: #ebe9e4;
  }
  #search .search_reserve .reserve_btns .btn_sub {
    padding: 10px 0;
    border-bottom: 1px solid #d3dfea;
    font-size: 1.2rem;
  }
  #search .search_reserve .reserve_tel {
    margin-top: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
  }
  #search .search_reserve .reserve_tel .sp_tel {
    font-size: 2.1rem;
    line-height: 1;
  }
  #search .search_reserve .reserve_tel a {
    color: inherit;
  }
  #search .search_reserve .reserve_tel .time {
    display: inline-block;
    margin-top: 4px;
    font-size: 1.2rem;
  }
}
/*  pagetit
------------------------------------*/
#pagetit {
  position: relative;
  padding-top: 750px;
}
#pagetit::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom, rgba(214, 220, 227, 0.55) 0%, rgba(214, 220, 227, 0) 100%);
  z-index: 1;
}
#pagetit::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 852px;
}
#pagetit .pagetit_tit {
  position: relative;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.6em;
  text-align: center;
  text-shadow: 0 0 10px #fff;
  z-index: 2;
}
#pagetit .pagetit_lead {
  position: relative;
  width: max-content;
  margin: 40px auto 0;
  font-size: 2.4rem;
  line-height: 1.833;
  letter-spacing: 0.6em;
  text-align: left;
  text-shadow: 0 0 10px #fff;
  z-index: 2;
}

@media screen and (max-width: 810px) {
  #pagetit {
    padding-top: calc(70vw - 40px);
  }
  #pagetit::before {
    height: 200px;
  }
  #pagetit::after {
    height: 70vw;
  }
  #pagetit .pagetit_tit {
    font-size: 2.6rem;
    letter-spacing: 0.4em;
    line-height: 1.5;
    text-shadow: 0 0 8px #fff;
  }
  #pagetit .pagetit_lead {
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.4em;
    text-shadow: 0 0 8px #fff;
  }
}
/*-------------------------------------------*/
/*
/*　　content
/*
/*-------------------------------------------*/
#wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#bg {
  background: url(../img/common/bg.webp) center top, linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(214, 220, 227) 8000px, rgb(142, 171, 197) 16000px);
}
@media screen and (min-width: 2001px) {
  #bg {
    background-size: 100%;
  }
}

.min_container {
  width: 96%;
  max-width: 980px;
  margin: 0 auto;
}

.container {
  width: 96%;
  max-width: 1080px;
  margin: 0 auto;
}

.wide_container {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flexbox.mid {
  align-items: center;
}

.flexbox.center {
  justify-content: center;
}

.flexbox.reverse {
  flex-direction: row-reverse;
}

.clear {
  clear: both;
}

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

.rel {
  position: relative;
}

.flL {
  float: left;
}

.flR {
  float: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.gothic {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.en {
  font-family: "Marcellus", "Times New Roman", serif;
}

img.icon,
span.icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: -2px;
}

.icon_arrow_02 {
  position: relative;
  display: inline-block;
  top: -2px;
  width: 18px;
  height: 19px;
  stroke: #1e3c64;
  fill: none;
  vertical-align: middle;
  transition: all 0.5s;
  transition-delay: 0.3s;
}

.icon_bonus {
  position: relative;
  display: inline-block;
  top: -2px;
  background: url(../img/common/icon_bonus.svg) no-repeat;
  background-size: 100%;
  width: 23px;
  height: 23px;
  vertical-align: middle;
  transition: all 0.5s;
}

.icon_reserve {
  position: relative;
  display: inline-block;
  top: -2px;
  background: url(../img/common/icon_reserve_01.svg) no-repeat;
  background-size: 100%;
  width: 23px;
  height: 24px;
  vertical-align: middle;
  transition: all 0.5s;
}

.icon_mail {
  position: relative;
  display: inline-block;
  top: -2px;
  background: url(../img/common/icon_mail_01.svg) no-repeat;
  background-size: 100%;
  width: 26px;
  height: 18px;
  vertical-align: middle;
  transition: all 0.5s;
}

.break span {
  display: inline-block;
}

.kerning {
  font-feature-settings: "palt";
}

.vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/* 汎用見出し */
.sec_tit {
  margin-bottom: 60px;
  font-size: 1.8rem;
  letter-spacing: 0.6em;
  line-height: 1.9;
  text-align: center;
}

.en_tit {
  margin-bottom: 160px;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.6em;
  text-align: center;
}

.sec_lead {
  margin-bottom: 24px;
  letter-spacing: 0.3em;
  line-height: 1.9;
  text-align: left;
}

a.btn,
.btn_nolink {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 24px 80px;
  background: linear-gradient(90deg, #1e3c64 0%, #1e3c64 40%, #dadada 60%, #dadada 100%);
  background-position: 100% 100%;
  background-size: 250%;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  transition: all 0.9s;
}
@media (any-hover: hover) {
  a.btn:hover,
  .btn_nolink:hover {
    background-position: 0% 100%;
    opacity: 1;
  }
  a.btn:hover .txt,
  .btn_nolink:hover .txt {
    background-position: 0% 100%;
  }
}
a.btn::after,
.btn_nolink::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  display: block;
  width: 91px;
  height: 9px;
  margin-top: -8px;
  background: url(../img/common/icon_arrow.svg) no-repeat right bottom;
  background-size: auto 100%;
}
a.btn .txt,
.btn_nolink .txt {
  display: inline-block;
  background: linear-gradient(90deg, #ebe9e4 0%, #ebe9e4 40%, #1e3c64 60%, #1e3c64 100%);
  background-position: 100% 100%;
  background-size: 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.9s;
}

/* 汎用テーブル */
.table {
  width: 100%;
  table-layout: fixed;
  overflow: hidden;
}
.table caption {
  padding: 0 5% 0;
  line-height: 1.75;
}
.table th,
.table td {
  padding: 22px 32px 22px;
  border-bottom: 1px solid #1e3c64;
  vertical-align: top;
}
.table th {
  position: relative;
  width: 27%;
  padding-left: 5%;
}
.table th::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 0;
  height: calc(100% - 56px);
  border-left: 1px solid #1e3c64;
}
.table a:hover {
  opacity: 1;
  text-decoration: underline;
}
.table .table_list {
  justify-content: flex-start;
}
.table .table_list li:after {
  content: "／";
}
.table .table_list li:last-of-type:after {
  content: none;
}

.not-found {
  padding: 400px 0 200px;
  text-align: center;
}

@media screen and (min-width: calc(810px + 1px)) {
  .pc_vertical {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 810px) {
  #bg {
    background: url(../img/common/bg.webp) center top, linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(214, 220, 227) 50%, rgb(142, 171, 197) 100%);
    background-size: 120%, 100%;
  }
  .min_container {
    width: calc(100% - 40px);
  }
  .container {
    width: calc(100% - 40px);
  }
  .wide_container {
    width: calc(100% - 40px);
  }
  /* 汎用タイトル */
  .sec_tit {
    margin-bottom: 56px;
  }
  .en_tit {
    margin-bottom: 80px;
    font-size: 2.1rem;
    letter-spacing: 0.6em;
  }
  a.btn {
    padding: 20px 64px;
    background: #dadada;
  }
  a.btn::after {
    right: -20px;
    width: 69px;
    height: 7px;
    margin-top: -5px;
    background: url(../img/common/icon_arrow.svg) no-repeat right bottom;
    background-size: auto 100%;
  }
  /* 汎用テーブル */
  .table th,
  .table td {
    padding: 10px 12px;
    line-height: 1.75;
  }
  .table:not(.sp_table) {
    border-bottom: 1px solid #1e3c64;
  }
  .table:not(.sp_table) caption {
    padding: 0 12px 16px;
  }
  .table:not(.sp_table) tr {
    display: block;
  }
  .table:not(.sp_table) th,
  .table:not(.sp_table) td {
    display: block;
    width: 100%;
    border-top: 1px solid #1e3c64;
    border-bottom: 1px solid #1e3c64;
    margin-bottom: -1px;
    padding: 10px 10px;
    line-height: 1.75;
    letter-spacing: 0;
  }
  .table:not(.sp_table) th {
    background: rgba(30, 60, 100, 0.1);
  }
  .table:not(.sp_table) th::after {
    content: none;
  }
  .table a {
    word-break: break-all;
  }
}
/*-------------------------------------------*/
/*
/*page_nav
/*
/*-------------------------------------------*/
.page_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 980px;
  margin: 188px auto 0;
  gap: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.page_nav li {
  width: 100%;
  max-width: 100%;
}
.page_nav li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (any-hover: hover) {
  .page_nav li a:hover {
    opacity: 1;
  }
  .page_nav li a:hover .txt {
    background-position: 0% 100%;
    opacity: 1;
  }
  .page_nav li a:hover .txt > span {
    background-position: 0% 100%;
  }
}
.page_nav li a::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  display: block;
  width: 91px;
  height: 9px;
  margin-top: -8px;
  background: url(../img/common/icon_arrow.svg) no-repeat right bottom;
  background-size: auto 100%;
}
.page_nav li a .img {
  width: 50%;
}
.page_nav li a .txt {
  position: relative;
  display: flex;
  width: 50%;
  height: 100%;
  padding-left: 7%;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, #1e3c64 0%, #1e3c64 40%, #dadada 60%, #dadada 100%);
  background-position: 100% 100%;
  background-size: 250%;
  transition: all 1.5s;
  text-align: left;
}
.page_nav li a .txt > span {
  display: inline-block;
  background: linear-gradient(90deg, #ebe9e4 0%, #ebe9e4 40%, #1e3c64 60%, #1e3c64 100%);
  background-position: 100% 100%;
  background-size: 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 1.5s;
}
.page_nav.col03 li {
  width: 318px;
}
.page_nav.col03 li a {
  flex-direction: column;
}
@media (any-hover: hover) {
  .page_nav.col03 li a:hover .txt::after {
    background: url(../img/common/icon_arrow_02_white.svg) no-repeat right bottom;
    background-size: auto 100%;
  }
}
.page_nav.col03 li a::after {
  content: none;
}
.page_nav.col03 li a .img {
  width: 100%;
}
.page_nav.col03 li a .txt {
  width: 100%;
  padding: 32px 45px 32px 16px;
}
.page_nav.col03 li a .txt.row02 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.page_nav.col03 li a .txt::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  display: block;
  width: 18px;
  height: 9px;
  margin-top: -4px;
  background: url(../img/common/icon_arrow_02.svg) no-repeat right bottom;
  background-size: auto 100%;
  transition: all 1.5s;
  transition-delay: 0.5s;
}
.page_nav + .page_nav {
  margin-top: 32px;
}
.page_nav + .page_subnav {
  margin-top: 32px;
}

.page_subnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 188px;
  gap: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.page_subnav li {
  width: 318px;
}
.page_subnav li a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 32px 16px 28px 7%;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, #1e3c64 0%, #1e3c64 40%, transparent 60%, transparent 100%);
  background-position: 100% 100%;
  background-size: 250%;
  border: 1px solid #1e3c64;
  transition: all 1s;
  text-align: left;
}
@media (any-hover: hover) {
  .page_subnav li a:hover {
    background-position: 0% 100%;
    opacity: 1;
  }
  .page_subnav li a:hover::after {
    background: url(../img/common/icon_arrow_02_white.svg) no-repeat right bottom;
    background-size: auto 100%;
  }
  .page_subnav li a:hover > span {
    background-position: 0% 100%;
  }
}
.page_subnav li a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  display: block;
  width: 26px;
  height: 11px;
  margin-top: -8px;
  background: url(../img/common/icon_arrow_02.svg) no-repeat right bottom;
  background-size: auto 100%;
  transition: all 1.5s;
  transition-delay: 0.3s;
}
.page_subnav li a > span {
  display: inline-block;
  background: linear-gradient(90deg, #ebe9e4 0%, #ebe9e4 40%, #1e3c64 60%, #1e3c64 100%);
  background-position: 100% 100%;
  background-size: 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 1s;
}
.page_subnav li a.row02 {
  padding-top: 18px;
  padding-bottom: 16px;
}
.page_subnav.col03 li {
  width: 344px;
  max-width: calc(33.33% - 20px);
}
.page_subnav.col05 li {
  width: 196px;
  max-width: calc(20% - 20px);
}
.page_subnav.col06 li {
  width: 160px;
  max-width: calc(16.67% - 20px);
}

@media screen and (max-width: 810px) {
  .page_nav {
    width: 100%;
    margin-top: 72px;
    gap: 12px;
    justify-content: space-between;
  }
  .page_nav li a::after {
    right: -12px;
    width: 50px;
    height: 9px;
    margin-top: -8px;
    background: url(../img/common/icon_arrow.svg) no-repeat right bottom;
    background-size: auto 100%;
  }
  .page_nav li a .img {
    width: 50%;
  }
  .page_nav li a .img img {
    aspect-ratio: 5/2;
    object-fit: cover;
  }
  .page_nav li a .txt {
    width: 50%;
    height: 100%;
    padding-left: 6%;
  }
  .page_nav.col03 li {
    width: 100%;
  }
  .page_nav.col03 li a {
    flex-direction: row;
  }
  .page_nav.col03 li a::after {
    content: none;
  }
  .page_nav.col03 li a .img {
    width: 50%;
  }
  .page_nav.col03 li a .img img {
    aspect-ratio: 5/2;
    object-fit: cover;
  }
  .page_nav.col03 li a .txt {
    width: 50%;
    padding: 8px 32px 8px 16px;
  }
  .page_nav.col03 li a .txt.row02 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .page_nav.col03 li a .txt::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    display: block;
    width: 18px;
    height: 9px;
    margin-top: -4px;
    background: url(../img/common/icon_arrow_02.svg) no-repeat right bottom;
    background-size: auto 100%;
    transition: all 1.5s;
    transition-delay: 0.5s;
  }
  .page_nav + .page_nav {
    margin-top: 24px;
  }
  .page_nav + .page_subnav {
    margin-top: 24px;
  }
  .page_subnav {
    width: 100%;
    margin-top: 72px;
  }
  .page_subnav li {
    width: 100%;
  }
  .page_subnav li a {
    padding: 16px 32px 16px 16px;
  }
  .page_subnav.col03 li {
    width: calc(50% - 6px);
    max-width: 50%;
  }
  .page_subnav.col03 li.sp_wide {
    width: 100%;
    max-width: 100%;
  }
  .page_subnav.col05 li {
    width: calc(50% - 6px);
    max-width: 50%;
  }
  .page_subnav.col05 li.sp_wide {
    width: 100%;
    max-width: 100%;
  }
  .page_subnav.col06 li {
    width: calc(50% - 6px);
    max-width: 50%;
  }
  .page_subnav.col06 li.sp_wide {
    width: 100%;
    max-width: 100%;
  }
}
/*-------------------------------------------*/
/*
/*slider
/*
/*-------------------------------------------*/
.common_slide > .slide_item:not(:first-child) {
  display: none;
}

/*-------------------------------------------*/
/*
/*reserve_box
/*
/*-------------------------------------------*/
/*-------------------------------------------*/
/*
/*　　footer
/*
/*-------------------------------------------*/
#icon_pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  line-height: 1;
  text-align: center;
  z-index: 5000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
#icon_pagetop.active {
  visibility: visible;
  opacity: 1;
}
#icon_pagetop a {
  display: block;
}
#footer {
  position: relative;
  padding: 208px 0 152px;
  background: url(../img/common/f_bg_01.webp) no-repeat center;
  background-size: cover;
  text-align: center;
}
#footer .f_logo {
  line-height: 1;
}
#footer .f_logo a {
  display: inline-block;
}
#footer .f_address {
  margin-top: 96px;
  letter-spacing: 0.1em;
}
#footer .f_address a {
  color: currentColor;
}
#footer .f_lang {
  margin-top: 24px;
  gap: 24px;
  line-height: 1;
}
#footer .f_lang .lang_tit {
  letter-spacing: 0;
}
#footer .f_lang .lang_tit .icon {
  margin-right: 8px;
}
#footer .f_lang .lang_list {
  letter-spacing: 0;
}
#footer .f_lang .lang_list li + li {
  border-left: 1px solid;
}
#footer .f_lang .lang_list li a {
  display: inline-block;
  padding: 0 12px;
}
#footer .f_reserve {
  margin-top: 442px;
}
#footer .f_reserve .reserve_tit {
  margin-bottom: 24px;
  color: #ebe9e4;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
#footer .f_reserve .reserve_btn .btn {
  width: 340px;
  margin: 0 4px;
  padding: 24px 16px;
  font-weight: 500;
}
#footer .f_reserve .reserve_btn .btn::after {
  content: none;
}
#footer .f_reserve .reserve_btn .btn .icon {
  margin-right: 8px;
}
#footer .f_reserve .reserve_btn .btn .icon_arrow_02 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  margin-left: 8px;
}
@media (any-hover: hover) {
  #footer .f_reserve .reserve_btn .btn_bonus:hover .icon_bonus {
    background: url(../img/common/icon_bonus_02.svg) no-repeat;
    background-size: 100%;
  }
  #footer .f_reserve .reserve_btn .btn_bonus:hover .icon_arrow_02 {
    stroke: #ebe9e4;
  }
}
@media (any-hover: hover) {
  #footer .f_reserve .reserve_btn .btn_reserve:hover .icon_reserve {
    background: url(../img/common/icon_reserve_02.svg) no-repeat;
    background-size: 100%;
  }
  #footer .f_reserve .reserve_btn .btn_reserve:hover .icon_arrow_02 {
    stroke: #ebe9e4;
  }
}
#footer .f_reserve .reserve_tel {
  line-height: 1;
}
#footer .f_reserve .reserve_tel span {
  display: inline-block;
}
#footer .f_reserve .reserve_tel .tel {
  display: inline-block;
  margin-left: 10px;
  font-size: 3.2rem;
}
#footer .f_reserve .reserve_tel .tel .icon {
  margin-right: 8px;
}
#footer .f_sns {
  margin-top: 48px;
  color: #ebe9e4;
  gap: 24px;
  line-height: 1;
}
#footer .f_sns .sns_tit {
  letter-spacing: 0;
}
#footer .f_sns .sns_list {
  gap: 24px;
}
#footer .f_copyright {
  margin-top: 36px;
  color: #ebe9e4;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
#footer .f_copyright small {
  font-size: 1.8rem;
}

@media screen and (max-width: 810px) {
  #footer {
    padding: 128px 0 112px;
    background: url(../img/common/f_bg_01_sp.webp) no-repeat center center;
    background-size: cover;
  }
  #footer .f_logo img {
    width: 331px;
    height: auto;
  }
  #footer .f_address {
    margin-top: 24px;
    line-height: 2.1;
    letter-spacing: 0.1em;
  }
  #footer .f_lang {
    margin-top: 16px;
    gap: 8px;
    line-height: 1;
  }
  #footer .f_lang .lang_tit {
    width: 100%;
  }
  #footer .f_lang .lang_tit .icon {
    margin-right: 16px;
  }
  #footer .f_lang .lang_list li a {
    padding: 0 12px;
  }
  #footer .f_reserve {
    margin-top: 180px;
  }
  #footer .f_reserve .reserve_tit {
    margin-bottom: 8px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  #footer .f_reserve .reserve_btn .btn {
    width: 255px;
    margin: 4px 0;
    padding: 20px 8px;
  }
  #footer .f_reserve .reserve_btn .btn .icon_bonus,
  #footer .f_reserve .reserve_btn .btn .icon_reserve {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 16px;
    height: 16px;
    margin: auto 0;
  }
  #footer .f_reserve .reserve_btn .btn .icon_arrow_02 {
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    height: auto;
    margin: auto 0;
  }
  #footer .f_reserve .reserve_tel {
    line-height: 1;
  }
  #footer .f_reserve .reserve_tel span {
    display: inline-block;
  }
  #footer .f_reserve .reserve_tel .tel {
    display: inline-block;
    margin-left: 10px;
    font-size: 3.2rem;
  }
  #footer .f_reserve .reserve_tel .tel .icon {
    margin-right: 8px;
  }
  #footer .f_sns {
    margin-top: 16px;
    gap: 20px;
    line-height: 1;
  }
  #footer .f_sns .sns_tit {
    letter-spacing: 0;
  }
  #footer .f_sns .sns_list {
    gap: 16px;
  }
  #footer .f_sns .sns_list img {
    width: 16px;
    height: auto;
  }
  #footer .f_copyright {
    margin-top: 12px;
    font-size: 1.08rem;
    letter-spacing: 0.1em;
  }
  #footer .f_copyright small {
    font-size: 1.08rem;
  }
}
/*  sp_footer
------------------------------------*/
#sp_footer {
  display: none;
  position: fixed;
  left: 0;
  bottom: -60px;
  width: 100%;
  background: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 1000;
  transition: bottom 0.4s;
}
#sp_footer.active {
  bottom: 0;
}
#sp_footer a,
#sp_footer div {
  display: table-cell;
  box-sizing: border-box;
  width: 25%;
  height: 60px;
  padding-bottom: 10px;
  color: #1e3c64;
  cursor: pointer;
  text-align: center;
  vertical-align: bottom;
  border-right: 2px solid #d3dfea;
}
#sp_footer a:last-child,
#sp_footer div:last-child {
  border-right: none; 
}
#sp_footer img {
  display: block;
  margin: 0 auto 6px;
}
#sp_footer .txt {
  display: block;
}
#sp_footer .btn_reserve01 {
  /*background: #bfaa64;*/
}
#sp_footer .btn_reserve02 {
  /*background: #1e3c64;*/
  /*color: #ebe9e4;*/
}
#sp_footer .nav_open {
  position: static;
  height: 60px;
  padding: 0 0 15px 11px;
  background: #fff;
  letter-spacing: 0;
}
@media screen and (max-width: 810px) {
  #sp_footer {
    display: table;
  }
}
/*  nav_box
------------------------------------*/
#nav_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  letter-spacing: 0;
  z-index: 9998;
  text-align: left;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
#nav_box .nav_container {
  width: 90%;
  max-width: 1040px;
  min-height: 100%;
  margin-left: auto;
  background: #fff;
  padding: 56px 0 48px 100px;
}
#nav_box .nav_logo {
  margin-bottom: 56px;
  line-height: 1;
}
#nav_box .nav_btns {
  position: absolute;
  right: 16px;
  top: 40px;
}
#nav_box .nav_lang {
  position: relative;
  line-height: 1;
  z-index: 10;
}
#nav_box .nav_lang .lang_tit {
  display: block;
  height: 60px;
  padding: 20px 16px;
  background: #fff;
  cursor: pointer;
  transition: background 0.5s;
}
@media (any-hover: hover) {
  #nav_box .nav_lang .lang_tit:hover {
    background: #dadada;
  }
}
#nav_box .nav_lang .lang_tit .icon {
  margin-right: 4px;
}
#nav_box .nav_lang .lang_list {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  text-align: center;
}
#nav_box .nav_lang .lang_list li a {
  display: block;
  padding: 12px 8px;
}
@media (any-hover: hover) {
  #nav_box .nav_lang .lang_list li a:hover {
    background: #dadada;
    opacity: 1;
  }
}
#nav_box .nav_list {
  width: calc(100% - 460px);
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
#nav_box .nav_list li + li {
  margin-top: 24px;
}
#nav_box .nav_list li a,
#nav_box .nav_list li > span {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
#nav_box .nav_list li .list_child {
  margin-top: 16px;
  padding-left: 1em;
}
#nav_box .nav_list li .list_child li::before {
  content: "―";
}
#nav_box .nav_list li.list_sub {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}
#nav_box .nav_list li.list_sub + .list_sub {
  margin-top: 18px;
}
#nav_box .nav_list li.list_sub a {
  color: #8e9db1;
}
#nav_box .nav_reserve {
  width: 460px;
  padding: 40px 56px;
  background: #4e7faa;
  color: #ebe9e4;
  line-height: 1.5;
}
#nav_box .nav_reserve .reserve_tit {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
}
#nav_box .nav_reserve .reserve_tit .en {
  display: block;
  margin-bottom: 6px;
  color: #bfaa64;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
#nav_box .nav_reserve .reserve_btns a {
  position: relative;
  display: block;
  color: currentColor;
  line-height: 1.5;
  text-align: center;
}
#nav_box .nav_reserve .reserve_btns a .arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -7px;
}
#nav_box .nav_reserve .reserve_btns .btn_bonus,
#nav_box .nav_reserve .reserve_btns .btn_reserve {
  padding: 24px 8px;
}
#nav_box .nav_reserve .reserve_btns .btn_bonus .icon,
#nav_box .nav_reserve .reserve_btns .btn_reserve .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -12px;
}
#nav_box .nav_reserve .reserve_btns .btn_bonus {
  background: #bfaa64;
  color: #1e3c64;
  font-weight: 500;
}
#nav_box .nav_reserve .reserve_btns .btn_reserve {
  margin-top: 16px;
  background: #1e3c64;
  color: #ebe9e4;
}
#nav_box .nav_reserve .reserve_btns .btn_sub {
  padding: 12px 0;
  border-bottom: 1px solid #7199bb;
  font-size: 1.6rem;
}
#nav_box .nav_reserve .reserve_tel {
  margin-top: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
#nav_box .nav_reserve .reserve_tel .sp_tel {
  font-size: 2.8rem;
  line-height: 1;
}
#nav_box .nav_reserve .reserve_tel a {
  color: inherit;
}
#nav_box .nav_reserve .reserve_tel .time {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.6rem;
}
#nav_box .nav_reserve .reserve_bnr {
  margin-top: 32px;
}
#nav_box .nav_reserve .reserve_bnr a {
  display: inline-block;
}
#nav_box .nav_reserve .reserve_address {
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.66;
  letter-spacing: 0.1em;
}
#nav_box .nav_reserve .reserve_address a {
  color: currentColor;
}
#nav_box .nav_reserve .reserve_sns {
  margin-top: 24px;
  gap: 36px;
}
#nav_box .nav_reserve .reserve_sns .sns_tit {
  line-height: 1.2;
  letter-spacing: 0.05em;
}
#nav_box .nav_reserve .reserve_sns .sns_list {
  gap: 30px;
  line-height: 1;
}

.nav_close,
.search_close {
  width: 64px;
  height: 60px;
  padding-top: 30px;
  cursor: pointer;
  line-height: 1;
  text-align: center;
}
.nav_close .bar,
.search_close .bar {
  position: relative;
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 auto;
  background: transparent;
}
.nav_close .bar:before, .nav_close .bar:after,
.search_close .bar:before,
.search_close .bar:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 32px;
  height: 1px;
  background: #1e3c64;
}
.nav_close .bar:before,
.search_close .bar:before {
  top: -10px;
  transform: translate(1px, 10px) rotate(35deg);
}
.nav_close .bar:after,
.search_close .bar:after {
  top: 10px;
  transform: translate(1px, -10px) rotate(-35deg);
}
.nav_close .txt,
.search_close .txt {
  display: block;
  text-align: left;
  text-indent: -9999px;
}

@media screen and (max-height: 980px) {
  #nav_box .nav_container {
    padding-top: 48px;
  }
  #nav_box .nav_list {
    font-size: 1.7rem;
  }
  #nav_box .nav_list li + li {
    margin-top: 20px;
  }
  #nav_box .nav_reserve {
    padding-top: 24px;
    padding-bottom: 32px;
  }
  #nav_box .nav_reserve .reserve_tel {
    margin-top: 20px;
  }
  #nav_box .nav_reserve .reserve_tel .sp_tel {
    font-size: 2.6rem;
  }
  #nav_box .nav_reserve .reserve_tel .time {
    margin-top: 4px;
    font-size: 1.4rem;
  }
  #nav_box .nav_reserve .reserve_btns {
    font-size: 1.6rem;
  }
  #nav_box .nav_reserve .reserve_btns .btn_bonus,
  #nav_box .nav_reserve .reserve_btns .btn_reserve {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #nav_box .nav_reserve .reserve_btns .btn_sub {
    font-size: 1.4rem;
  }
  #nav_box .nav_reserve .reserve_bnr {
    margin-top: 24px;
  }
  #nav_box .nav_reserve .reserve_address {
    font-size: 1.4rem;
  }
}
@media screen and (max-height: 880px) {
  #nav_box {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 810px) {
  #nav_box {
    min-width: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  #nav_box .nav_container {
    width: 100%;
    min-height: 100%;
    padding: 28px 12px 64px;
  }
  #nav_box .nav_logo {
    margin-left: 8px;
    margin-bottom: 48px;
  }
  #nav_box .nav_btns {
    right: 10px;
    top: 24px;
    display: block;
  }
  #nav_box .nav_lang .lang_tit {
    height: auto;
    padding: 16px 12px;
  }
  #nav_box .nav_lang .lang_tit .icon {
    margin-right: 12px;
  }
  #nav_box .nav_list {
    width: 100%;
    padding: 0 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  #nav_box .nav_list li + li {
    margin-top: 16px;
  }
  #nav_box .nav_list li .list_child {
    margin-top: 16px;
    letter-spacing: 0;
    padding-left: 0.5em;
  }
  #nav_box .nav_list li .list_child li::before {
    padding-right: 5px;
  }
  #nav_box .nav_list li.list_sub {
    margin-top: 24px;
    font-size: 1.35rem;
    letter-spacing: 0.2em;
  }
  #nav_box .nav_list li.list_sub + .list_sub {
    margin-top: 14px;
  }
  #nav_box .nav_reserve {
    width: 100%;
    margin-top: 48px;
    padding: 32px 40px;
    text-align: center;
  }
  #nav_box .nav_reserve .reserve_tit {
    margin-bottom: 16px;
    font-size: 1.35rem;
  }
  #nav_box .nav_reserve .reserve_tit .en {
    margin-bottom: 4px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  #nav_box .nav_reserve .reserve_btns {
    max-width: 255px;
    margin: 0 auto;
  }
  #nav_box .nav_reserve .reserve_btns a {
    font-size: 1.35rem;
  }
  #nav_box .nav_reserve .reserve_btns .btn_bonus,
  #nav_box .nav_reserve .reserve_btns .btn_reserve {
    padding: 18px 8px;
  }
  #nav_box .nav_reserve .reserve_btns .btn_bonus .icon,
  #nav_box .nav_reserve .reserve_btns .btn_reserve .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 16px;
    height: auto;
    margin-top: -8px;
  }
  #nav_box .nav_reserve .reserve_btns .btn_reserve {
    margin-top: 12px;
  }
  #nav_box .nav_reserve .reserve_btns .btn_sub {
    padding: 8px 0;
    font-size: 1.2rem;
  }
  #nav_box .nav_reserve .reserve_tel {
    margin-top: 16px;
    letter-spacing: 0.05em;
  }
  #nav_box .nav_reserve .reserve_tel .sp_tel {
    font-size: 2.1rem;
  }
  #nav_box .nav_reserve .reserve_tel .time {
    margin-top: 4px;
    font-size: 1.2rem;
  }
  #nav_box .nav_reserve .reserve_bnr {
    margin-top: 24px;
  }
  #nav_box .nav_reserve .reserve_address {
    width: max-content;
    margin: 16px auto 0;
    font-size: 1.15rem;
    line-height: 1.66;
    letter-spacing: 0.1em;
    text-align-last: left;
  }
  #nav_box .nav_reserve .reserve_sns {
    margin-top: 24px;
    gap: 24px;
  }
  #nav_box .nav_reserve .reserve_sns .sns_list {
    gap: 24px;
  }
  #nav_box .nav_reserve .reserve_sns .sns_list img {
    width: 15px;
    height: auto;
  }
  .nav_close,
  .search_close {
    margin-left: auto;
    width: 48px;
    height: 48px;
    padding-top: 23px;
  }
}
/*-------------------------------------------*/
/*
/* トリプラ
/*
/*-------------------------------------------*/
@media screen and (max-width: 810px) {
  #tripla-chat-circle-icon {
    bottom: 70px !important;
  }
}
/*-------------------------------------------*/
/*
/*　　animation class
/*
/*-------------------------------------------*/
.ani {
  opacity: 0;
  transition-delay: 200ms;
  transition-duration: 1800ms;
  transition-property: opacity, transform;
}
.ani.scroll {
  transform: translate(0, 0);
  opacity: 1;
}

.ani_fadeup {
  transform: translate(0, 30px);
}

.ani_fadefown {
  transform: translate(0, -30px);
}

.ani_fadeleft {
  transform: translate(-30px, 0);
}

.ani_faderight {
  transform: translate(30px, 0);
}

@media screen and (max-width: 810px) {
  .inview {
    transition-delay: 600ms;
  }
}
/* ---------------------------------------------------
	modal
------------------------------------------------------ */
html.fixed,
body.fixed {
  overflow: hidden;
  touch-action: none;
}

#modal_bg {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px;
  z-index: 999999998;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

#modal_section .modal_content {
  position: fixed;
  display: none;
  width: 1080px;
  max-width: 90%;
  max-height: 90%;
  margin: 0;
  left: 50% !important;
  top: 50% !important;
  background: #fff;
  transform: translate(-50%, -50%);
  overflow-x: hidden;
  z-index: 999999999;
}
#modal_section .modal_tit {
  margin: 0;
  padding: 12px 60px 12px;
  background: #1e3c64;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.25em;
  text-align: center;
}
#modal_section .modal_container {
  width: 100%;
  margin: 0 auto;
  padding: 56px 64px;
}

.modal_close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  background: #fff;
  display: block;
  text-align: left;
  text-indent: -9999px;
  cursor: pointer;
}
.modal_close:before, .modal_close:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  display: block;
  width: 30px;
  height: 2px;
  background: #1e3c64;
}
.modal_close:before {
  transform: rotate(45deg);
}
.modal_close:after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 810px) {
  #modal_section .modal_tit {
    padding: 10px 60px 8px 10px;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
  #modal_section .modal_container {
    padding: 30px 24px;
  }
}
/*-------------------------------------------*/
/*
/*　　tablet調整
/*
/*-------------------------------------------*/
body.is_tablet {
  min-width: 1300px;
  font-size: 18px;
}
body.is_tablet #header {
  font-size: 16px;
}

/*-------------------------------------------*/
/*
/*　　IE用cssハック
/*
/*-------------------------------------------*/
/*-------------------------------------------*/
/*
/*　　print
/*
/*-------------------------------------------*/
@media print {
  body {
    width: 1000px;
    font-size: 14px;
  }
  .container {
    width: 94%;
  }
}
/*-------------------------------------------*/
/*
/*　　respomsive common
/*
/*-------------------------------------------*/
.tabsp_block {
  display: none;
}

.sp_block {
  display: none;
}

.sp_inline {
  display: none;
}

.tabsp_inline {
  display: none;
}

.pc_hidden {
  display: none !important;
}

.tab_block {
  display: none;
}

.tab_inline {
  display: none;
}

@media screen and (max-width: 810px) {
  .pc_block {
    display: none;
  }
  .tabsp_block {
    display: block;
  }
  .tabsp_hidden {
    display: none;
  }
  .pc_inline {
    display: none;
  }
  .tabsp_inline {
    display: inline;
  }
  .sp_hidden {
    display: none !important;
  }
  .pc_hidden {
    display: block !important;
  }
}
@media screen and (max-width: 640px) {
  .pctab_block {
    display: none;
  }
  .pctab_inline {
    display: none;
  }
  .sp_block {
    display: block;
  }
  .sp_inline {
    display: inline;
  }
}
@media screen and (max-width: 810px) and (min-width: 641px) {
  .tab_block {
    display: block;
  }
  .tab_inline {
    display: inline;
  }
  .tab_hidden {
    display: none;
  }
}