@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: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-display: swap;
  font-weight: 400;
  line-height: 1.77;
  color: #fff;
  background: #191919;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body.fixed {
  overflow: hidden;
}

a:link,
a:visited {
  color: #fff;
  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: 1.77;
}

#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: 16px;
  }
  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: #000;
  text-align: center;
  z-index: 999999;
}
#loading .loading_logo {
  width: 100%;
}
#loading .loading_logo img {
  max-width: 80%;
}
#loading #loading_bar {
  width: 100%;
  margin-top: 20px;
  height: 2px;
}

/*-------------------------------------------*/
/*
/*　　header
/*
/*-------------------------------------------*/
#header_wrap {
  position: relative;
}

#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 1000px;
  padding: 30px 36px;
  box-sizing: border-box;
  letter-spacing: 0;
  z-index: 2001;
}
#header .h_logo {
  line-height: 1;
}
#header .h_nav {
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  font-size: 1.8rem;
  line-height: 1.2;
}
#header .h_nav li {
  position: relative;
}
#header .h_nav li a {
  position: relative;
  display: block;
  padding: 12px 0;
}
@media (any-hover: hover) {
  #header .h_nav li a:hover {
    opacity: 1;
  }
  #header .h_nav li a:hover::before {
    width: 72px;
  }
}
#header .h_nav li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  margin: 0 auto;
  background: #1c2e69;
  transition: width 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#header .h_nav li + li {
  margin-left: 40px;
}
#header .h_btn {
  margin-left: auto;
  padding: 8px 12px;
  background: #1c2e69;
  font-size: 1.15rem;
  line-height: 1.4;
}
#header .h_btn .icon {
  margin-right: 8px;
}
#header .h_btn .txt {
  display: inline-block;
  vertical-align: middle;
}

.nav_open {
  display: none;
  width: 58px;
  height: 58px;
  padding-top: 30px;
}
.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: 30px;
  height: 1px;
  margin: 0 auto;
}
.nav_open .bar:before, .nav_open .bar:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
}
.nav_open .bar:before {
  top: -4px;
}
.nav_open .bar:after {
  top: 4px;
}
.nav_open .txt {
  display: block;
  text-align: left;
  text-indent: -9999px;
}

@keyframes headerAnime {
  0% {
    opacity: 0;
    top: -80px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@media screen and (min-width: calc(810px + 1px)) {
  #header.active {
    position: fixed;
    top: 0;
    height: 88px;
    padding: 20px 32px;
    animation: headerAnime 0.4s ease;
    background: #191919;
  }
}
@media screen and (max-width: 1280px) {
  #header .h_logo img {
    width: 180px;
    height: auto;
  }
  #header .h_nav {
    font-size: 1.6rem;
  }
  #header .h_nav li + li {
    margin-left: 24px;
  }
}
@media screen and (max-width: 810px) {
  #header {
    position: fixed;
    top: 0;
    min-width: 0;
    height: 60px;
    padding: 0 0;
    background: #191919;
  }
  #header .container {
    width: 100%;
  }
  #header .h_logo {
    margin-top: 5px;
    margin-left: 15px;
    margin-right: 16px;
  }
  #header .h_logo img {
    width: 122px;
    height: auto;
  }
  #header .h_nav {
    display: none;
  }
  #header .h_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;
  }
  #header .h_btn .icon {
    width: 22px;
    height: 18px;
    margin-right: 0;
  }
  #sp_header {
    display: flex;
  }
  #sp_header.active {
    top: 0;
  }
  .nav_open {
    display: block;
  }
}
/*  search
------------------------------------*/
#search {
  position: fixed;
  bottom: -88px;
  left: 0;
  width: 100%;
  min-width: 1100px;
  font-size: 1.6rem;
  line-height: 1.2;
  transition: all 0.4s;
  z-index: 2001;
}
#search.active {
  bottom: 0;
}
#search .container {
  position: relative;
  display: flex;
  padding: 0 8px;
  align-items: center;
  background: #eee;
  justify-content: space-between;
}
#search .search_bestrate {
  width: 248px;
  max-width: 24%;
  padding-top: 2px;
  background: #fff;
  border-radius: 2px;
  line-height: 1.2;
  text-align: center;
}
#search .search_bestrate .icon {
  position: relative;
  margin: -1px 5px -4px 0;
}
#search .search_form {
  position: relative;
  width: calc(100% - 248px - 180px);
  text-align: center;
}
#search .search_form .form_box {
  height: 56px;
  padding: 12px 14px 0 2px;
  background: url(../img/common/search_bg_01.svg) no-repeat right top;
  background-size: auto 100%;
  flex-grow: 1;
}
#search .search_form .form_box.box_date {
  padding-top: 4px;
}
#search .search_form .form_box.box_person {
  padding-right: 8px;
  background: none;
}
#search .search_form .form_box.box_btn {
  padding-top: 8px;
  padding-right: 8px;
  background: none;
}
#search form {
  position: relative;
  display: flex;
  width: 100%;
  height: 56px;
  margin: 0;
  align-items: center;
  justify-content: space-between;
  background: none;
  box-shadow: none;
  line-height: 1.4;
}
#search form select,
#search form input[type=text],
#search form input[type=date] {
  height: auto;
  margin: 0;
  padding: 0 8px 0 8px;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  box-sizing: border-box;
  -webkit-appearance: none;
  vertical-align: baseline;
  white-space: nowrap;
}
#search form select::-ms-expand,
#search form input[type=text]::-ms-expand,
#search form input[type=date]::-ms-expand {
  display: none;
}
#search form select:focus,
#search form input[type=text]:focus,
#search form input[type=date]:focus {
  outline: none;
}
#search form select {
  min-width: 48px;
  padding: 0 8px 0 4px;
  background: url(../img/common/search_icon_02.svg) no-repeat right 5px center;
  background-size: 8px;
  line-height: 32px;
}
#search form input[type=checkbox] {
  width: 14px;
  height: 14px;
  margin: 0 4px 4px 0;
  background: none;
  vertical-align: middle;
}
#search form input:disabled {
  opacity: 0.5;
  cursor: default;
}
#search form select:disabled {
  opacity: 0.5;
}
#search form option {
  padding: 5px;
  color: #000;
}
#search form label {
  display: inline-block;
  margin-bottom: 2px;
  vertical-align: middle;
}
#search form button {
  width: 120px;
  height: 40px;
  padding: 12px 5px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.2s;
  text-align: center;
  vertical-align: middle;
}
#search form button .icon {
  margin-right: 5px;
}
#search form button:hover {
  opacity: 0.7;
}
#search form button:focus {
  outline: none;
}
#search form #datepicker {
  width: 172px;
  margin-right: 8px;
  background: url(../img/common/search_icon_01.svg) no-repeat right 5px center;
  background-size: 15px;
}
#search .search_link {
  width: 180px;
  line-height: 1.2;
  text-align: center;
}
#search .search_link a {
  position: relative;
  display: block;
  padding: 12px 10px;
  height: 40px;
  background: #f00;
}
#search .search_link a:before, #search .search_link a:after {
  right: 10px;
}
#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 (min-width: calc(810px + 1px)) {
  #search.active {
    position: fixed;
    animation: -webkit-searchAnime 0.4s ease;
    animation: searchAnime 0.4s ease;
  }
}
@media screen and (max-width: 810px) {
  #search {
    position: relative;
    left: 0;
    height: auto;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0;
    bottom: 0;
    margin: 0 auto 0;
    padding: 35px 0 80px;
    font-size: 16px;
    z-index: 100;
    visibility: visible;
  }
  #search.active {
    position: relative;
    bottom: 0;
    animation: none;
  }
  #search .container {
    display: block;
    max-width: 480px;
    padding: 0;
    background: none;
  }
  #search .search_bestrate {
    width: 100%;
    max-width: 100%;
    padding-top: 2px;
  }
  #search .search_bestrate .icon {
    margin: -1px 5px -4px 0;
  }
  #search .search_form {
    width: 100%;
  }
  #search .search_form .form_box {
    height: 56px;
    margin-top: 10px;
    padding: 12px 14px 0 2px;
    background: url(../img/common/search_bg_01.svg) no-repeat right top;
    background-size: auto 100%;
    flex-grow: 1;
  }
  #search .search_form .form_box.box_date {
    width: 100%;
    padding-top: 12px;
    padding-right: 0;
    background: none;
  }
  #search .search_form .form_box.box_person {
    width: auto;
    padding-right: 14px;
  }
  #search .search_form .form_box.box_btn {
    width: 100%;
    height: auto;
    margin-top: 25px;
    padding: 0;
  }
  #search form {
    height: auto;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #search form select,
  #search form input[type=text],
  #search form input[type=date] {
    width: 50px;
    height: auto;
    font-size: 24px;
    line-height: 1.2;
  }
  #search form select,
  #search form input[type=text] {
    width: 50px;
    max-width: 100%;
    flex-grow: 1;
  }
  #search form #datepicker {
    width: 180px;
  }
  #search form button {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 0;
    padding: 15px 10px 13px;
    font-size: 16px;
  }
  #search form button .icon {
    margin-right: 10px;
  }
  #search .search_link {
    width: 100%;
    margin-top: 12px;
  }
  #search .search_link a {
    padding: 15px 10px 13px;
    height: auto;
  }
}
/*-------------------------------------------*/
/*
/*　　content
/*
/*-------------------------------------------*/
#wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.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: "Shippori Mincho", "游明朝体", "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: "EB Garamond", serif;
}

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

.break span {
  display: inline-block;
}

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

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

/* 汎用見出し */
.sec_tit {
  position: relative;
  max-width: 100%;
  margin-bottom: 72px;
  font-size: 3.1rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
.sec_tit::before {
  content: "";
  display: block;
  width: 0;
  height: 112px;
  margin: 0 auto 8px;
  border-left: 1px solid #3c4b7e;
}
.sec_tit .en {
  display: block;
  margin-bottom: 24px;
  color: #495887;
  font-size: 6.4rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

a.inquiry_btn {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1080px;
  height: 264px;
  margin: 0 auto;
  align-items: center;
  padding: 40px 40px;
  background: #1c2e69;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: left;
}
@media (any-hover: hover) {
  a.inquiry_btn:hover {
    opacity: 1;
  }
  a.inquiry_btn:hover::after {
    transform: translateX(13px);
  }
}
a.inquiry_btn .btn_tit {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
a.inquiry_btn .en {
  display: inline-block;
  margin-right: 48px;
  color: #3c4b7e;
  font-size: 6.4rem;
  line-height: 1;
}
a.inquiry_btn::after {
  content: "";
  position: absolute;
  right: 56px;
  top: 50%;
  display: inline-block;
  width: 105px;
  height: 13px;
  background: url(../img/icon_arrow.svg) no-repeat right bottom;
  background-size: 105px;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fix_btn {
  position: fixed;
  bottom: 64px;
  right: 36px;
  filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.5));
  transition-delay: 1400ms;
  z-index: 100;
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transform: translate(0, 30px);
  transition-delay: 1600ms;
  text-align: right;
}
.fix_btn.active a {
  width: 139px;
  height: 139px;
  background: url(../img/main_btn_small.svg) no-repeat center;
  background-size: 100%;
}
.fix_btn a {
  display: inline-block;
  width: 305px;
  height: 305px;
  background: url(../img/main_btn.svg) no-repeat center;
  background-size: 100%;
  text-align: left;
  text-indent: -9999px;
  overflow: hidden;
}

/* 汎用テーブル */
.form_table {
  width: 100%;
  table-layout: fixed;
}
.form_table caption {
  margin: 0 0 16px;
  line-height: 1.75;
}
.form_table th,
.form_table td {
  padding: 20px 20px 20px;
  border-bottom: 1px solid #d2d5e1;
  vertical-align: top;
}
.form_table th {
  position: relative;
  width: 24%;
}
.form_table a:hover {
  opacity: 1;
  text-decoration: underline;
}

.form_table02 {
  width: 100%;
  table-layout: fixed;
}
.form_table02 caption {
  margin: 0 0 16px;
  line-height: 1.75;
}
.form_table02 th,
.form_table02 td {
  padding: 20px 20px 20px;
  border-top: 1px solid #d2d5e1;
  border-bottom: 1px solid #d2d5e1;
  vertical-align: top;
}
.form_table02 th {
  position: relative;
  width: 24%;
  background: #f3f3f3;
}
.form_table02 a:hover {
  opacity: 1;
  text-decoration: underline;
}

@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) {
  .container {
    width: calc(100% - 40px);
  }
  .wide_container {
    width: calc(100% - 40px);
  }
  /* 汎用タイトル */
  .sec_tit {
    margin-bottom: 24px;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
  .sec_tit::before {
    height: 72px;
  }
  .sec_tit .en {
    font-size: 6rem;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }
  a.inquiry_btn {
    flex-direction: column;
    width: calc(100% - 40px);
    height: auto;
    padding: 32px 0 40px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-align: center;
  }
  a.inquiry_btn .btn_tit {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  a.inquiry_btn .en {
    display: block;
    margin-bottom: 16px;
    margin-right: 0;
    font-size: 4.4rem;
  }
  a.inquiry_btn::after {
    content: "";
    position: static;
    width: 54px;
    height: 13px;
    margin-top: 16px;
    background: url(../img/icon_arrow.svg) no-repeat right bottom;
    background-size: 80px;
  }
  .fix_btn {
    position: absolute;
    bottom: 40px;
    right: 10px;
    width: 152px;
    z-index: 100;
  }
  .form_table th,
  .form_table td {
    display: block;
    width: 100%;
    padding: 12px 0;
  }
  .form_table th {
    padding-bottom: 0;
    border-bottom: none;
  }
  .form_table td {
    padding: 10px 0 16px;
  }
  .form_table02 th,
  .form_table02 td {
    display: block;
    width: 100%;
    padding: 16px 16px;
    margin-bottom: -1px;
  }
}
/*-------------------------------------------*/
/*
/*slider
/*
/*-------------------------------------------*/
.common_slide > .slide_item:not(:first-child) {
  display: none;
}

/*-------------------------------------------*/
/*
/*　　footer
/*
/*-------------------------------------------*/
#footer {
  position: relative;
  background: url(../img/f_bg_01.webp) no-repeat center;
  background-size: cover;
  text-align: center;
  z-index: 10;
}
#footer:not(:has(.inquiry_btn)) {
  padding-top: 120px;
}
#footer .inquiry_btn {
  position: relative;
  top: -132px;
  margin-bottom: -26px;
}
#footer .f_logo {
  line-height: 1;
}
#footer .f_logo a {
  display: inline-block;
}
#footer .f_copyright {
  margin-top: 50px;
  font-size: 1.6rem;
  line-height: 1.8;
}
#footer .f_copyright small {
  font-size: 1.6rem;
}
#footer .logo_list_wrap {
  margin-top: 50px;
  padding: 28px 15px;
  background: #d2d5e1;
}
#footer .logo_list {
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
#footer .logo_list .list_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
}

@media screen and (max-width: 810px) {
  #footer:not(:has(.inquiry_btn)) {
    padding-top: 60px;
  }
  #footer .inquiry_btn {
    top: -88px;
    width: 100%;
    margin-bottom: -32px;
  }
  #footer .f_logo img {
    width: 236px;
  }
  #footer .f_copyright {
    margin-top: 56px;
    font-size: 1.4rem;
  }
  #footer .f_copyright small {
    font-size: 1.4rem;
  }
  #footer .logo_list_wrap {
    margin-top: 56px;
    padding: 10px 4px;
  }
  #footer .logo_list {
    flex-wrap: wrap;
    justify-content: center;
  }
  #footer .logo_list .list_item {
    max-width: 12%;
    padding: 4px 12px;
  }
  #footer .logo_list .list_item.sp_wide {
    padding: 0 4px;
  }
  #footer .logo_list .list_item.sp_wide02 {
    padding: 0 8px;
  }
  #footer .logo_list .list_item.sp_wide03 {
    padding: 0 10px;
  }
}
/*  sp_footer
------------------------------------*/
#sp_footer {
  display: none;
  position: fixed;
  left: 0;
  bottom: -60px;
  width: 100%;
  background: #1c2e69;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  z-index: 2000;
  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: #fff;
  text-align: center;
  vertical-align: bottom;
}
#sp_footer img {
  display: block;
  margin: 0 auto 6px;
}
#sp_footer .txt {
  display: block;
}
#sp_footer .btn_reserve {
  width: 50%;
  background: #f00;
}
#sp_footer .nav_open {
  position: static;
  height: 60px;
  padding: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: 0;
}
#sp_footer .nav_open img {
  margin-bottom: 10px;
}
#sp_footer .nav_open .txt {
  text-indent: 0;
  text-align: center;
}

@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%;
  background: #191919;
  box-sizing: border-box;
  letter-spacing: 0;
  z-index: 9998;
  text-align: left;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
#nav_box .nav_container {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 0 48px;
}
#nav_box .nav_logo {
  margin-left: -2px;
}
#nav_box .nav_logo img {
  width: 122px;
  height: auto;
}
#nav_box .nav_list {
  margin-top: 60px;
  line-height: 1.5;
  text-align: center;
}
#nav_box .nav_list li a {
  display: inline-block;
  padding: 20px;
}
#nav_box .nav_btn {
  display: block;
  margin-top: 56px;
  padding: 32px 0;
  background: #1c2e69;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
#nav_box .nav_btn .icon {
  display: block;
  top: auto;
  margin: 0 auto 10px;
}
#nav_box .nav_close {
  position: absolute;
  right: 0;
  top: 0;
  width: 58px;
  height: 58px;
  padding-top: 30px;
  line-height: 1;
  text-align: center;
}
#nav_box .nav_close .bar {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  margin: 0 auto;
  background: transparent;
}
#nav_box .nav_close .bar:before, #nav_box .nav_close .bar:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
}
#nav_box .nav_close .bar:before {
  top: -10px;
  transform: translate(1px, 10px) rotate(45deg);
}
#nav_box .nav_close .bar:after {
  top: 10px;
  transform: translate(1px, -10px) rotate(-45deg);
}
#nav_box .nav_close .txt {
  display: block;
  text-align: left;
  text-indent: -9999px;
}

@media screen and (max-height: 860px) {
  #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_reserve {
    display: block;
  }
  #nav_box .nav_reserve a {
    width: 100%;
  }
}
/*-------------------------------------------*/
/*
/*　　animation class
/*
/*-------------------------------------------*/
.ani {
  opacity: 0;
  transition-delay: 400ms;
  transition-duration: 1000ms;
  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: #1c2e69;
  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: #fff;
}
.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;
  }
}