@charset "UTF-8";
/* Scss Document */
/*=============================================================
 レイアウト設定
=============================================================*/
.flexBox {
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  flex-flow: row wrap;
}

.jc-space-between {
  justify-content: space-between;
}

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

.jc-flex-end {
  justify-content: flex-end;
}

.al-center {
  align-items: center;
}

.al-stretch {
  align-items: stretch;
}

.al-flex-end {
  align-items: flex-end;
}

.al-flex-start {
  align-items: flex-start;
}

@media screen and (max-width: 767.9px) {
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
}
/*=============================================================
 common
=============================================================*/
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", sans-serif;
  color: #323232;
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 600;
  font-style: normal;
  /*font-feature-settings: "palt" 1; */
  background-color: #fff;
  animation: loading 1s;
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767.9px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 767.9px) {
  body {
    font-size: 15px;
  }
}
body b {
  font-weight: 700;
  font-style: normal;
}
body a {
  color: #323232;
  text-decoration: none;
}
body a:hover {
  /*opacity: 0.7;*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
body img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  body img {
    image-rendering: -webkit-optimize-contrast;
  }
}
body .object-fit {
  object-fit: contain;
  font-family: "object-fit: contain;";
}
body .view-navi {
  display: block;
}
body .view-sp {
  display: none;
}
@media screen and (max-width: 519.9px) {
  body .view-sp {
    display: block;
  }
}
body .view-pc {
  display: block;
}
@media screen and (max-width: 519.9px) {
  body .view-pc {
    display: none;
  }
}
body #wrap,
body #contents {
  overflow: hidden;
  margin: 0 auto;
}
body .container {
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  width: 1000px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  body .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/*=============================================================
 #gheader
=============================================================*/
@media screen and (min-width: 767.9px) {
  #gheader {
    box-sizing: border-box;
    transition: 0.5s;
    width: 100%;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
    z-index: 4;
  }
  #gheader .header {
    transition: all 0.3s;
    max-width: 98%;
  }
  #gheader .header-col {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #gheader .header-col-left {
    text-align: left;
  }
  #gheader .header-col-left .lead {
    font-size: 16px;
  }
  #gheader .header-col-left .logo {
    font-size: 23px;
  }
  #gheader .header-col-left .logo img {
    width: 177px;
    height: auto;
  }
  #gheader .header-col-right .header-navi {
    display: flex;
    align-items: center;
  }
  #gheader .header-col-right .header-navi .navi-list.menu {
    display: flex;
    justify-content: flex-end;
  }
  #gheader .header-col-right .header-navi .navi-list.menu li {
    position: relative;
    line-height: 1;
    margin-left: 10px;
    font-size: 12px;
  }
  #gheader .header-col-right .header-navi .navi-list.menu li:first-child {
    margin: 0;
  }
  #gheader .header-col-right .header-navi .navi-list.menu li a img {
    width: auto;
    height: 1em;
    margin-right: 0.5em;
  }
  #gheader .header-col-right .header-navi .navi-list.lang {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
  }
  #gheader .header-col-right .header-navi .navi-list.lang li {
    font-size: 13px;
    margin: 0;
  }
  #gheader .header-col-right .header-navi .navi-list.lang li:first-child:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("../image/common/icon_lang.png") no-repeat center center;
    background-size: auto 100%;
    margin-right: 5px;
  }
  #gheader .header-col-right .header-navi .navi-list.lang li:last-child:before {
    content: "／";
    display: inline-block;
  }
  #gheader .header-col-right .header-navi .btn_booking {
    margin: 0 10px;
    font-size: 15px;
    font-weight: 900;
  }
  #gheader .header-col-right .header-navi .btn_booking a {
    display: inline-block;
    background-color: #F0F0F0;
    border-radius: 37px;
    width: 126px;
    line-height: 32px;
  }
  .fixed #gheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .fixed #gheader .header {
    width: 100%;
    border-radius: 0;
    transition: all 0.3s;
    box-sizing: border-box;
  }
  .drawer-hamburger {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 0;
  }
  .drawer-hamburger-icon {
    display: block;
    width: 100%;
    background-color: #707070;
    transform: scale(1);
    position: relative;
    transition: 0.5s;
    margin: 0 auto;
    height: 1px;
  }
  .drawer-hamburger-icon:before {
    content: "";
    display: block;
    width: 100%;
    background-color: #707070;
    position: absolute;
    transition: 0.5s;
    top: -14px;
    height: 1px;
  }
  .drawer-hamburger-icon:after {
    content: "";
    display: block;
    width: 100%;
    background-color: #707070;
    position: absolute;
    transition: 0.5s;
    bottom: -14px;
    height: 1px;
  }
  .drawer-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    box-sizing: border-box;
    z-index: 2;
    transition: 0.5s;
  }
  .drawer-nav .drawer-scroll {
    display: none;
  }
  .drawer-open {
    overflow: hidden;
  }
  .drawer-open:before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .drawer-open #gheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .drawer-open #gheader .header {
    width: 100%;
    border-radius: 0;
    transition: all 0.3s;
    box-sizing: border-box;
  }
  .drawer-open .drawer-nav {
    transition: 0.5s;
    right: 0%;
    /*background-color: rgba($color: #000, $alpha: 0.5);*/
  }
  .drawer-open .drawer-nav .drawer-scroll {
    background-color: #fff;
    width: 50%;
    height: 100%;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner {
    width: 80%;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .drawer-menu {
    display: grid;
    gap: 0 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .drawer-menu .drawer-menu-item {
    border-bottom: 1px solid #ccc;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .drawer-menu .drawer-menu-item a {
    display: block;
    padding: 2em;
  }
  .drawer-open .drawer-hamburger-icon {
    background-color: transparent;
  }
  .drawer-open .drawer-hamburger-icon:before {
    top: 0;
    transform: rotate(-45deg);
    transition: 0.5s;
  }
  .drawer-open .drawer-hamburger-icon:after {
    bottom: 0;
    transform: rotate(45deg);
    transition: 0.5s;
  }
  .home #gheader {
    position: fixed;
    top: 0;
    left: 0;
    background: none;
  }
  .home #gheader .header-col-left .logo {
    opacity: 0;
    transition: 0.5s;
  }
  .home.fixed #gheader {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .home.fixed #gheader .header-col-left .logo {
    opacity: 1;
  }
  .home.drawer-open #gheader {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .home.drawer-open #gheader .header-col-left .logo {
    opacity: 1;
    transition: 0.5s;
  }
}
@media screen and (max-width: 767.9px) {
  #gheader {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    transition: 0.5s;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
    display: flex;
    align-items: center;
    background-color: white;
  }
  #gheader .header-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #gheader .header-col-left {
    text-align: left;
  }
  #gheader .header-col-left .logo img {
    width: auto;
    height: 40px;
  }
  #gheader .header-col-right .header-navi {
    display: flex;
    align-items: center;
  }
  #gheader .header-col-right .header-navi .navi:before {
    content: "";
    display: block;
    width: 100%;
    height: 1em;
    background: url("../image/common/icon_lang.png") no-repeat center center;
    background-size: auto 100%;
    margin-bottom: 3px;
  }
  #gheader .header-col-right .header-navi .navi-list.menu {
    display: none;
  }
  #gheader .header-col-right .header-navi .navi-list.lang {
    display: flex;
    justify-content: flex-end;
  }
  #gheader .header-col-right .header-navi .navi-list.lang li {
    font-size: 10px;
    margin: 0;
  }
  #gheader .header-col-right .header-navi .navi-list.lang li:last-child:before {
    content: "／";
    display: inline-block;
  }
  #gheader .header-col-right .header-navi .btn_booking {
    display: none;
  }
  #gheader .header-col-right .header-navi .btn_tel {
    margin-left: 20px;
  }
  #gheader .header-col-right .header-navi .btn_tel img {
    width: auto;
    height: 24px;
  }
  .drawer-hamburger {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    width: 50px;
    height: 50px;
    /*background-color: f.$main_color;*/
    border-radius: 0;
  }
  .drawer-hamburger-icon {
    display: block;
    width: 60%;
    background-color: #707070;
    transform: scale(1);
    position: relative;
    transition: 0.5s;
    margin: 0 0 0 auto;
    height: 1px;
  }
  .drawer-hamburger-icon:before {
    content: "";
    display: block;
    width: 100%;
    background-color: #707070;
    position: absolute;
    transition: 0.5s;
    top: -8px;
    height: 1px;
  }
  .drawer-hamburger-icon:after {
    content: "";
    display: block;
    width: 100%;
    background-color: #707070;
    position: absolute;
    transition: 0.5s;
    bottom: -8px;
    height: 1px;
  }
  .drawer-nav {
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    box-sizing: border-box;
    z-index: 2;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .drawer-open {
    overflow: hidden;
  }
  .drawer-open .drawer-nav {
    transition: 0.5s;
    right: 0%;
  }
  .drawer-open .drawer-nav .drawer-scroll {
    background-color: #fff;
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner {
    width: 80%;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .drawer-menu .drawer-menu-item {
    border-bottom: 1px solid #ccc;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .drawer-menu .drawer-menu-item a {
    display: block;
    padding: 1em 1.5em;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .navi-list.menu {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .navi-list.menu li {
    position: relative;
    line-height: 1;
    margin-left: 10px;
    font-size: 12px;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .navi-list.menu li:first-child {
    margin: 0;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .navi-list.menu li a {
    padding: 1em;
  }
  .drawer-open .drawer-nav .drawer-scroll .drawer-nav-inner .navi-list.menu li a img {
    width: auto;
    height: 1em;
    margin-right: 0.5em;
  }
  .drawer-open .drawer-hamburger-icon {
    background-color: transparent;
  }
  .drawer-open .drawer-hamburger-icon:before {
    top: 0;
    transform: rotate(-45deg);
    transition: 0.5s;
  }
  .drawer-open .drawer-hamburger-icon:after {
    bottom: 0;
    transform: rotate(45deg);
    transition: 0.5s;
  }
}
/*=============================================================
  drawer
=============================================================*/
@media screen and (max-width: 767.9px) {
  .drawer-scroll {
    overflow: scroll;
    height: 100%;
    box-sizing: border-box;
  }
}

/*=============================================================
 #pankz
=============================================================*/
#pankz {
  text-align: right;
  padding: 10px 20px;
  background-color: #edf1f3;
  width: 100%;
  z-index: 3;
  box-sizing: border-box;
}
#pankz li {
  color: #003385;
}
#pankz li a {
  position: relative;
  color: #3a3a3a;
}
#pankz li a:after {
  content: ">";
  display: inline-block;
  margin: 0 1em;
  color: #3a3a3a;
}

/*=============================================================
 #gFooter
=============================================================*/
#gFooter {
  position: relative;
  padding-bottom: 75px;
}
#gFooter .footer .com-btn.btn01 a {
  font-size: 16px;
  font-weight: 900;
}
#gFooter .footer-col {
  margin: 40px 0 80px 0;
}
@media screen and (min-width: 767.9px) {
  #gFooter .footer-col {
    display: grid;
    gap: 40px;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    margin: 80px 0 55px 0;
  }
}
#gFooter .footer-col-right .icon {
  margin: 32px 0;
}
#gFooter .footer-col-right .icon img {
  width: 32px;
  height: auto;
}
#gFooter .footer .attation {
  font-size: 10px;
}
#gFooter .footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
#gFooter .footer ul li {
  margin: 0 6px;
}
#gFooter .footer ul li a {
  color: #003385;
}
#gFooter .footer ul li a img {
  width: auto;
  height: 33px;
}
#gFooter .footer ul.sns {
  margin-bottom: 15px;
}
.pageTop {
  display: none;
}
@media screen and (min-width: 767.9px) {
  .pageTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 2;
  }
}
@media screen and (min-width: 767.9px) {
  .pageTop img {
    width: 10px;
    height: auto;
  }
}

@media screen and (min-width: 767.9px) {
  .fixed .pageTop {
    display: block;
  }
}

.followerBanner {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 767.9px) {
  .followerBanner {
    display: none;
  }
}

.fixed .followerBanner {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .fixed .followerBanner {
    display: block;
  }
}/*# sourceMappingURL=style_basic.css.map */