@charset "UTF-8";
/**
 * style
 *
 * 1. import
 * 2. html, body
 * 3. HTMLtag, siteCommonClass
 * 4. Layout
 * 5. EachPageStyle
 *
 */
/**
 * 1. import
 */
@import url(import/reset.css);
@import url(import/util.css);
@import url(../font/flaticon.css);
/**
 * 2. html, body
 */
body {
  background-color: #fff;
  background-image: url(../imgs/space.gif);
  background-repeat: repeat-x;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-transform: rotate(0.001deg);
  -webkit-text-size-adjust: 100%;
}
body.js-loaded .page {
  opacity: 1;
  pointer-events: auto;
}

.page {
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
  /* sans serif */
  font-family: "秀英角ゴシック金 M";
}

.wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 960px) {
  .wrap {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page {
    font-size: 14px;
  }
}
/**
 * 3. HTMLtag, siteCommonClass
 */
/* anchor */
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}

/* img */
img {
  vertical-align: bottom;
}

@media only screen and (max-width: 960px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
/* heading */
.under-visual {
  padding: 20px;
}
.under-visual figure {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.under-visual figure img {
  width: 100%;
}

.siteTitle {
  /*dont use <h1> selector*/
}

.contentTitle {
  margin-bottom: 50px;
  padding-bottom: 40px;
  font-size: 26px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.15em;
  position: relative;
}
.contentTitle.jp {
  font-family: "リュウミン R-KL";
}
.contentTitle.en {
  font-family: 'Cinzel', serif;
}
.contentTitle:after {
  content: "";
  background: #334457;
  width: 60px;
  height: 2px;
  position: absolute;
  left: calc(50% - 30px);
  bottom: 0;
}

.mainCopy {
  margin-top: 100px;
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  font-family: "リュウミン R-KL";
}

.lead {
  margin-bottom: 40px;
  text-align: center;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  .mainCopy {
    font-size: 28px;
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .under-visual {
    padding: 10px;
  }

  .contentTitle {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 25px;
  }

  .mainCopy {
    margin-top: 50px;
    font-size: 22px;
    letter-spacing: 0.1em;
  }
}
/* cap */
.cap, .caption {
  background: none;
  color: #000;
  font-size: 10px;
  font-family: "秀英角ゴシック金 M";
  letter-spacing: 0.04em;
}

.cap {
  padding-top: 5px;
}
.cap.is-white {
  color: #FFF;
}
.cap.is-right {
  text-align: right;
}
.cap.is-center {
  text-align: center;
}
.cap.on-L {
  position: absolute;
  left: 6px;
  bottom: 6px;
}
.cap.on-R {
  position: absolute;
  right: 6px;
  bottom: 6px;
}

@media only screen and (max-width: 960px) {
  .cap, .caption {
    font-size: 10px;
  }
}
/* altText */
.altText {
  display: none;
}

@media only screen and (max-width: 767px) {
  .toText {
    display: none;
  }

  .altText {
    display: inline;
  }
}
.js-loading {
  width: 100%;
  height: 3px;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 99999;
}
.js-loading .loading-in {
  background: #334458;
  width: 100%;
  height: 3px;
  moz-transform: scale(0, 1);
  moz-transform-origin: left top;
  webkit-transform: scale(0, 1);
  webkit-transform-origin: left top;
  transform: scale(0, 1);
  transform-origin: left top;
  position: relative;
}
.js-loading.js-progress .loading-in {
  moz-transform: scale(0.9, 1);
  moz-transition: -moz-transform 3000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  ms-transform: scale(0.9, 1);
  transform: scale(0.9, 1);
  transition: transform 3000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  webkit-transform: scale(0.9, 1);
  webkit-transition: -webkit-transform 3000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-loading.js-complete .loading-in {
  moz-transform: scale(1, 1);
  moz-transition: -moz-transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  ms-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  webkit-transform: scale(1, 1);
  webkit-transition: -webkit-transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* pc sp */
.pc {
  display: block;
}

.sp {
  display: none;
}

.pc-in {
  display: inline-block;
}

.sp-in {
  display: none;
}

.pc-table {
  display: table;
}

.sp-table {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pc-in {
    display: none;
  }

  .sp-in {
    display: inline-block;
  }

  .pc-table {
    display: none;
  }

  .sp-table {
    display: table;
  }
}
/**
 * 4. Layout
 */
/* ===================================
HEADER
=================================== */
#gHeader {
  /*position: relative;*/
  /* PC時　header固定ナシ */
  position: fixed;
  /* PC時　header固定アリ */
  top: 0;
  left: 0;
  width: 100%;
  /*height: 96px;*/
  z-index: 9999;
  background-color: #334458;
}
#gHeader:before {
  content: "";
  background: transparent url(../imgs/chip.png);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.headerInner {
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  padding: 12px;
  border-bottom: #fff solid 1px;
}
.headerInner .wrap {
  position: relative;
}

@media only screen and (max-width: 960px) {
  .headerInner {
    padding-top: 25px;
    padding-bottom: 25px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  #gHeader {
    position: relative;
  }

  .headerInner {
    background: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
    display: flex;
    border-bottom: none;
  }

  .spHeaderFixed .headerInner {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #334458;
  }
  .spHeaderFixed .headerInner:before {
    content: "";
    background: transparent url(../imgs/chip.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    z-index: 0;
  }
}
/* hdrLogo */
.shldrTxt {
  font-size: 10px;
  margin-bottom: 7px;
}

@media only screen and (max-width: 960px) {
  .hdrLogo {
    float: left;
  }

  .shldrTxt {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hdrLogo {
    /*background: #334458;*/
    width: 50%;
    padding: 0 4.6875%;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
}
/* pNav */
#pNav {
  position: absolute;
  top: 12px;
  right: 12px;
  /*display: flex;
  justify-content: center;*/
}
#pNav:after {
  display: none;
}
#pNav ul.pNav-txts {
  margin-right: 20px;
  float: left;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
#pNav ul.pNav-txts li {
  margin-left: 20px;
}
#pNav ul.pNav-txts li:first-child {
  margin-left: 0px;
}
#pNav ul.pNav-txts a {
  background: url(../imgs/icon_arrow.png) left center no-repeat;
  color: #FFF;
  padding-left: 15px;
  font-size: 14px;
  line-height: 28px;
}
#pNav ul.pNav-btns {
  float: right;
}
#pNav ul.pNav-btns li {
  margin-left: 10px;
}
#pNav ul.pNav-btns li:first-child {
  margin-left: 0px;
}
#pNav ul.pNav-btns a {
  display: block;
  text-align: center;
  color: #FFF;
  height: 30px;
  font-size: 16px;
  line-height: 26px;
  font-family: "リュウミン R-KL";
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  border: #fff solid 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
#pNav ul.pNav-btns a:hover {
  text-decoration: none;
  opacity: 0.5;
}
#pNav li {
  display: inline-block;
  vertical-align: bottom;
  font-size: 12px;
}
#pNav li a {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
#pNav li a:hover {
  text-decoration: underline;
}
#pNav li.req a {
  background: #161636;
  padding: 0 24px;
}
#pNav li.res a {
  background: #840F12;
  padding: 0 24px;
}
#pNav li.leaf a {
  background: #8A7F4B;
  padding: 0 10px;
}
#pNav li.req a:hover, #pNav li.res a:hover {
  text-decoration: none;
  opacity: 0.5;
}

@media only screen and (max-width: 1150px) {
  #pNav ul.pNav-txts {
    margin-right: 20px;
  }
  #pNav ul.pNav-btns {
    padding-top: 2px;
  }
  #pNav ul.pNav-btns a {
    font-size: 13px;
    height: 26px;
    line-height: 22px;
  }
  #pNav li.req a, #pNav li.res a {
    padding: 0 10px;
  }
  #pNav li.leaf a {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 960px) {
  #pNav {
    /*position: static;
    float: right;*/
    top: 6px;
  }
  #pNav ul.pNav-txts {
    float: none;
  }
  #pNav ul.pNav-txts a {
    padding-left: 12px;
  }
  #pNav ul.pNav-txts li {
    margin-left: 15px;
  }
  #pNav ul.pNav-btns {
    overflow: hidden;
    float: none;
    margin-top: 2px;
  }
  #pNav ul.pNav-btns a {
    font-size: 12px;
  }
  #pNav li {
    font-size: 10px;
    margin-left: 10px;
  }
  #pNav li.req a, #pNav li.res a {
    padding: 0 8px;
  }
  #pNav li.leaf a {
    padding: 0 4px;
  }

  /*#pNav li.req a,
  #pNav li.res a {
  	font-size: 16px;
  	line-height: 30px;
  	width: 130px;
  }*/
}
@media only screen and (max-width: 767px) {
  #pNav {
    display: none;
  }
}
/* sNav */
#sNav {
  display: none;
}

/*.spHeaderFixed #sNav {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}*/
@media only screen and (max-width: 767px) {
  #sNav {
    display: block;
    width: 50%;
    position: relative;
    z-index: 1;
  }
  #sNav ul {
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    /*border-top: 1px solid #eee;*/
    /*border-bottom: 1px solid #eee;*/
  }
  #sNav li {
    /*width: 20%;*/
    /* btn 5つ */
    /*width: 25%;*/
    /* btn 4つ */
    width: 33.33%;
    /* btn 3つ */
    height: 54px;
    text-align: center;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0;
    /*border-right: 1px solid #eee;*/
  }
  #sNav li a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 3%;
    /*background-color: #334458;*/
    color: #fff;
  }
  #sNav li [class^="flaticon-"] {
    font-size: 25px;
  }
  #sNav li.menu .flaticon-cancel {
    display: none;
  }
  #sNav li.menu.on .flaticon-cancel {
    display: inline;
  }
  #sNav li.menu.on .flaticon-menu {
    display: none;
  }
  #sNav li.res .icon-res {
    display: inline-block;
    background: url(../imgs/reserve.svg) center no-repeat;
    width: 20px;
    height: 28px;
  }
  #sNav li.req .icon-req {
    display: inline-block;
    background: url(../imgs/request.svg) center no-repeat;
    width: 20px;
    height: 28px;
  }
}
/* ===================================
gNav
=================================== */
#gNav {
  /*background-color: #ddd;*/
}
#gNav ul {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
#gNav ul li {
  position: relative;
}
#gNav ul li:nth-child(2):before {
  display: none;
}
#gNav ul li:before {
  content: "";
  background: #FFF;
  width: 1px;
  height: calc(1em + 12px);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 1;
}
#gNav ul li.sp {
  display: none;
}
#gNav ul li a {
  display: block;
  color: #fff;
  padding: 20px 12px 6px;
  font-size: 14px;
  line-height: 1;
  position: relative;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
#gNav ul li a:hover {
  background-color: #161e26;
}
#gNav ul li.on a {
  background-color: #161e26;
}
#gNav ul li.off a {
  pointer-events: none;
  opacity: 0.5;
}
#gNav ul li .new {
  display: block;
  width: calc(100% - 24px);
  text-align: center;
  position: absolute;
  top: 0;
  left: 12px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  background-color: #be272e;
  padding: 2px 0px 1px;
  line-height: 1;
  font-size: 9px;
  text-transform: uppercase;
}
#gNav ul li .bt {
  font-family: "ヒラギノ角ゴ W4 JIS2004";
}
#gNav .gNav-sub {
  display: none;
}

#gNav ul li .coming {
  display: block;
  width: calc(100% - 24px);
  text-align: center;
  position: absolute;
  top: 0;
  left: 12px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  background-color: #a58a0f;
  padding: 2px 0px 1px;
  line-height: 1;
  font-size: 9px;
  text-transform: uppercase;
    
}

@media only screen and (max-width: 1150px) {
  #gNav ul li a {
    padding: 20px 8px 6px;
    font-size: 13px;
  }
  #gNav ul li .new {
    width: calc(100% - 16px);
  }
}
@media only screen and (max-width: 960px) {
  #gNav ul li:before {
    height: calc(1em + 8px);
  }
  #gNav ul li a {
    padding: 20px 4px 6px;
    font-size: 12px;
    letter-spacing: 0;
  }
  #gNav ul li .new {
    width: calc(100% - 8px);
  }
}
@media only screen and (max-width: 767px) {
  #gNav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
  }

  .spHeaderFixed #gNav {
    position: fixed;
  }

  #gNav .wrap {
    padding-left: 0;
    padding-right: 0;
  }
  #gNav .gNav-sub {
    display: block;
    background: #fff;
    padding: 12px;
  }
  #gNav .gNav-sub .res-req {
    overflow: hidden;
  }
  #gNav .gNav-sub div a {
    display: block;
    text-align: center;
    color: #FFF;
    font-size: 13px;
    line-height: 40px;
    font-family: "リュウミン R-KL";
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  }
  #gNav .gNav-sub div.req a {
    background: #161636;
    float: left;
    width: 49%;
    margin-left: 2%;
  }
  #gNav .gNav-sub div.res a {
    background: #840F12;
    float: left;
    width: 49%;
  }
  #gNav .gNav-sub div.leaf a {
    width: 100%;
    background: #8A7F4B;
    margin-top: 6px;
  }
  #gNav ul {
    display: block;
    background: rgba(51, 68, 87, 0.95);
    font-size: 0;
    letter-spacing: -0.4em;
    border-top: solid 1px #000;
    border-right: 1px solid #000;
  }
  #gNav ul li {
    display: inline-block;
    width: 50%;
    text-align: center;
    font-size: 10px;
    float: left;
  }
  #gNav ul li.sp {
    display: inline-block;
  }
  #gNav ul li:before {
    display: none;
  }
  #gNav ul li a {
    color: #fff;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    letter-spacing: 0.1em;
    border-left: 1px solid #000;
    border-bottom: solid 1px #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    line-height: 1.2;
  }
  #gNav ul li a:hover {
    background: none;
  }
  #gNav ul li.off a {
    color: #8f99a3;
    opacity: 1;
  }
  #gNav ul li .new {
    width: auto;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    color: #fff;
    background-color: #be272e;
    padding: 2px 3px 1px;
    line-height: 1;
  }
}
/* ===================================
CONTAINER
=================================== */
#container {
  padding-top: 96px;
}

#mainContent {
  /*margin-bottom: 96px;*/
}

@media only screen and (max-width: 960px) {
  #mainContent {
    /*margin-bottom: 48px;*/
  }
}
/* ===================================
breadcrumb
=================================== */
.breadcrumb {
  padding-top: 10px;
  margin-bottom: 70px;
}
.breadcrumb ul {
  font-size: 0;
  letter-spacing: -0.4em;
}
.breadcrumb li {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-right: 7px;
}
.breadcrumb li a {
  padding-right: 4px;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li a span {
  font-family: "ヒラギノ角ゴ W4 JIS2004";
}

@media only screen and (max-width: 960px) {
  .breadcrumb {
    margin-bottom: 28px;
  }
  .breadcrumb li {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
/* ===================================
cvArea
=================================== */
.cvArea {
  display: flex;
  justify-content: center;
  margin-bottom: 85px;
}
.cvArea .cv {
  width: 48.95833333%;
  background-color: #eee;
  margin-left: 2.08333333%;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 15px;
}
.cvArea .cv:first-child {
  margin-left: 0;
}
.cvArea .cv a {
  display: block;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.cvArea .cv a:hover {
  opacity: 0.5;
}
.cvArea .cv .txt {
  font-size: 16px;
  margin-bottom: 12px;
}
.cvArea .cv .btn {
  width: 58.5106383%;
  line-height: 60px;
  background-color: #dedddd;
  font-size: 18px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 960px) {
  .cvArea {
    margin-bottom: 43px;
  }
  .cvArea .cv .txt {
    font-size: 14px;
  }
  .cvArea .cv .btn {
    line-height: 50px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .cvArea {
    flex-direction: column;
  }
  .cvArea .cv {
    width: 100%;
    margin-left: 0;
  }
  .cvArea .cv:first-child {
    margin-bottom: 20px;
  }
}
/* ===================================
fNav
=================================== */
#fNav .fnav-main {
  background: #334457;
  padding: 16px 0;
}
#fNav .fnav-sub {
  display: block;
  text-align: center;
  margin-top: 15px;
}
#fNav .fnav-sub li {
  border-left: 1px solid #000;
}
#fNav .fnav-sub a, #fNav .fnav-sub span {
  color: #000;
}
#fNav ul {
  text-align: center;
  font-size: 0;
  letter-spacing: -0.4em;
    margin-top: 5px;
}
#fNav li {
  display: inline-block;
  padding-left: 10px;
  border-left: 1px solid #fff;
  margin-left: 10px;
  font-family: "秀英角ゴシック金 M";
}
#fNav li:first-child {
  margin-left: 0;
  border-left: none;
  padding-left: 0;
}
#fNav a, #fNav span {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
}
#fNav a:hover {
  text-decoration: underline;
}
#fNav li.on {
  font-weight: bold;
  pointer-events: none;
}
#fNav li.off {
  pointer-events: none;
}
#fNav li.off a {
  color: #6C7886;
}
#fNav li.sp, #fNav li.sp-in {
  display: none;
}
#fNav li span {
  font-family: "ヒラギノ角ゴ W4 JIS2004";
}
#fNav .space {
  display: none;
}
#fNav li a {
  display: block;
  position: relative;
}
#fNav li a .new {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: -17px;
  left: 0;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  background-color: #be272e;
  padding: 2px 0px 1px;
  line-height: 1;
  font-size: 9px;
  text-transform: uppercase;
}
#fNav li a .coming {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: -32px;
  left: 0;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  background-color: #a58a0f;
  padding: 2px 0px 1px;
  line-height: 1;
  font-size: 9px;
  text-transform: uppercase;
}

@media only screen and (max-width: 960px) {
  #fNav .fnav-main {
    padding: 12px 0;
  }
  #fNav li {
    margin-top: 6px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  #fNav {
    margin-bottom: 0;
  }
  #fNav .fnav-main {
    padding: 0;
  }
  #fNav .fnav-sub {
    display: none;
  }
  #fNav .wrap {
    padding-left: 0;
    padding-right: 0;
  }
  #fNav ul {
    text-align: left;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    overflow: hidden;
  }
  #fNav li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    border-left: none;
    padding: 0;
    margin: 0;
    width: 50%;
    text-align: center;
    position: relative;
    float: left;
  }
  #fNav li.sp {
    display: block;
  }
  #fNav li.sp-in {
    display: inline-block;
  }
  #fNav li a, #fNav li span {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    line-height: 1.2;
  }
  #fNav a:hover {
    text-decoration: none;
  }
  #fNav .space {
    display: inline-block;
  }
  #fNav li a .new {
    width: auto;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    color: #fff;
    background-color: #be272e;
    padding: 2px 3px 1px;
    line-height: 1;
  }
  #fNav li a .coming {
    width: 75%;
    height: auto;
    display: block;
    position: absolute;
      text-align: center;
    top: 0;
/*    right: 0;*/
    left: auto;
    color: #fff;
    background-color: #a58a0f;
    padding: 2px 3px 1px;
    line-height: 1;
    font-family: 'Cinzel', serif;
    }
    
    
}
/* ===================================
contactArea
=================================== */
#contactArea {
  padding-top: 70px;
  padding-bottom: 16px;
  background-color: #fff;
}
#contactArea .bt {
  font-family: "ヒラギノ角ゴ W4 JIS2004";
}

.contactInner {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 960px) {
  #contactArea {
    padding-top: 35px;
    padding-bottom: 16px;
  }

  .contactInner {
    margin-bottom: 20px;
    flex-direction: column;
  }
}
/* contact */
.contact {
  width: 41.66%;
  margin-right: 40px;
}
.contact br.sp {
  display: none;
}
.contact .txt {
  font-size: 14px;
  letter-spacing: -0.05em;
  font-family: "リュウミン R-KL";
  border-bottom: #B0B0B0 solid 1px;
}
.contact .tell {
  margin-top: 15px;
  line-height: 1;
  margin-bottom: 8px;
}
.contact .tell a {
  display: block;
  font-size: 48px;
  pointer-events: none;
  letter-spacing: 0;
  font-family: 'Cinzel', serif;
}
.contact .tell a:before {
  content: "";
  display: inline-block;
  width: 47px;
  height: 39px;
  background: transparent url(../imgs/icn-tell.png) left bottom no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 7px;
}
.contact .txt02 {
  font-size: 12px;
  font-family: "秀英角ゴシック金 M";
  letter-spacing: -0.05em;
}
.contact .txt02 .note {
  display: inline-block;
  padding-left: .5em;
}

@media only screen and (max-width: 960px) {
  .contact {
    width: 100%;
    margin-right: 0;
    border-right: none;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #B0B0B0;
  }
  .contact .txt {
    font-size: 14px;
    border: none;
  }
  .contact .tell {
    margin-top: 5px;
  }
  .contact .tell a {
    font-size: 40px;
    pointer-events: auto;
  }
  .contact .tell a:before {
    width: 36px;
    -webkit-background-size: contain;
    background-size: contain;
  }
  .contact .txt02 {
    display: inline-block;
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .contact {
    margin-bottom: 20px;
  }
  .contact br.sp {
    display: inline;
  }
  .contact .tell a {
    font-size: 36px;
  }
}
/* right */
.right {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 480px) {
  .right {
    display: block;
  }
}
/* ftrLogo */
.ftrLogo {
  margin-right: 20px;
}
.ftrLogo .txt {
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: -0.05em;
  border-bottom: #B0B0B0 solid 1px;
  font-family: "リュウミン R-KL";
}
.ftrLogo .seller {
  font-size: 10px;
  margin-bottom: 2px;
  padding-left: 36px;
}
.ftrLogo .logo1 {
  max-width: 130px;
}
.ftrLogo .logo2 {
  max-width: 200px;
}
.ftrLogo .logo3 {
  /*max-width: 180px;*/
  max-width: 160px;
}

@media only screen and (max-width: 960px) {
  .ftrLogo {
    margin-right: 17px;
  }
  .ftrLogo .txt {
    font-size: 14px;
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 480px) {
  .ftrLogo {
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .ftrLogo .txt {
    font-size: 14px;
    margin-bottom: 5px;
    border: none;
  }
  .ftrLogo .seller {
    padding-left: 0px;
    text-align: center;
  }
  .ftrLogo .logo1 {
    max-width: 140px;
  }
  .ftrLogo .logo2 {
    max-width: 234px;
  }
  .ftrLogo img {
    width: 100%;
  }
}
/* club */
.club a {
  display: flex;
  justify-content: center;
  border: 1px solid #060001;
  padding: 11px;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  -ms-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.club a:hover {
  opacity: 0.5;
}
.club .img {
  width: 59px;
  margin-right: 16px;
}
.club .txt {
  width: 162px;
  font-size: 12px;
  letter-spacing: 0;
}

@media only screen and (max-width: 960px) {
  .club a {
    padding: 2%;
  }
  .club .txt {
    font-size: 11px;
  }
}
@media only screen and (max-width: 480px) {
  .club a {
    padding: 1.5%;
  }
  .club .img {
    width: 15%;
    margin-right: 3%;
  }
  .club .txt {
    width: 80%;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
/* ftrLink */
.ftrLink {
  text-align: center;
  font-size: 0;
  letter-spacing: -0.4em;
  padding: 0 6%;
}
.ftrLink li {
  display: inline-block;
  font-family: "秀英角ゴシック金 M";
  letter-spacing: 0;
  margin-left: 30px;
}
.ftrLink li:first-child {
  margin-left: 0;
}
.ftrLink li a {
  font-size: 12px;
  line-height: 2em;
  text-decoration: underline;
}
.ftrLink li a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 960px) {
  .ftrLink li {
    margin-bottom: 10px;
  }
  .ftrLink li a {
    text-decoration: underline;
  }
}
@media only screen and (max-width: 480px) {
  .ftrLink li {
    display: block;
    margin-left: 0;
    margin-bottom: 0;
  }
  .ftrLink li a {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
/* ===================================
copyright
=================================== */
.copyright {
  font-size: 12px;
  background: #EFEFEF;
  color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-family: "リュウミン R-KL";
}

@media only screen and (max-width: 960px) {
  .copyright {
    font-size: 12px;
  }
}
@media only screen and (max-width: 480px) {
  .copyright {
    font-size: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* ===================================
under common
=================================== */
sup {
  font-size: 64%;
}

.bottom-cap {
  padding: 40px 0 0 0;
}

.content-bg {
  background: url(../imgs/bgchip.png);
}

@media only screen and (max-width: 767px) {
  .bottom-cap {
    padding: 40px 0;
  }

  .content-bg {
    padding-top: 50px;
  }
}
.bottom-btns {
  background-color: #000;
  background-image: url(../imgs/bottom_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 420px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bottom-btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  width: 300px;
  height: 138px;
  margin: 0 10px;
  text-align: center;
  position: relative;
}
.bottom-btns a.res {
  background: #840F12;
}
.bottom-btns a.req {
  background: #161636;
}
.bottom-btns a:before {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 4px;
  top: 6px;
  z-index: 1;
}
.bottom-btns a:after {
  content: "";
  width: calc(100% - 14px);
  height: calc(100% - 8px);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 6px;
  top: 4px;
  z-index: 2;
}
.bottom-btns a .btn-in {
  width: 100%;
  position: relative;
}

body:not(.smf) .bottom-btns a:hover .btn-in:before {
  width: 45px;
  right: 18px;
}
body:not(.smf) .bottom-btns a:hover .btn-in:after {
  right: 17px;
}

.bottom-btns a .btn-in:before {
  content: "";
  background: #fff;
  width: 40px;
  height: 1px;
  position: absolute;
  right: 23px;
  bottom: 3px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.bottom-btns a .btn-in:after {
  content: "";
  background: #fff;
  width: 14px;
  height: 1px;
  position: absolute;
  right: 22px;
  bottom: 8px;
  transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.bottom-btns a .title {
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 25px;
  letter-spacing: 0.2em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  font-family: "リュウミン R-KL";
  position: relative;
}
.bottom-btns a .title:after {
  content: "";
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  width: 90%;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -45%;
}
.bottom-btns a .text {
  font-size: 14px;
  letter-spacing: 0;
}
.bottom-btns a .en {
  margin-top: 15px;
  font-size: 12px;
  font-family: 'Cinzel', serif;
}
.bottom-btns .cap {
  width: 100%;
  text-align: right;
  position: absolute;
  left: 0;
  bottom: 5px;
}

@media only screen and (max-width: 960px) {
  .bottom-btns {
    height: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .bottom-btns {
    display: block;
    height: auto;
    padding: 70px 0;
  }
  .bottom-btns a {
    margin: 10px auto;
    height: 120px;
  }
  .bottom-btns a .title {
    margin-bottom: 5px;
  }
  .bottom-btns a .en {
    margin-top: 5px;
  }
}
.side-links {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  background: url(../imgs/bgchip.png);
  padding: 25px;
  position: relative;
}
.side-links:after {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.side-links a {
  color: #FFF;
  text-align: center;
  margin: 0 10px;
  font-size: 24px;
  position: relative;
  z-index: 1;
}
.side-links a:first-child span:before {
  right: auto;
  left: 23px;
}
.side-links a:first-child span:after {
  right: auto;
  left: 22px;
  transform: rotate(-45deg);
}
.side-links a:before {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 4px;
  top: 6px;
  z-index: 10;
}
.side-links a:after {
  content: "";
  width: calc(100% - 14px);
  height: calc(100% - 8px);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 6px;
  top: 4px;
  z-index: 10;
}
.side-links a span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

body:not(.smf) .side-links a:hover span:before {
  width: 45px;
  right: 18px;
}
body:not(.smf) .side-links a:hover span:after {
  right: 17px;
}
body:not(.smf) .side-links a:first-child:hover span:before {
  width: 45px;
  left: 18px;
}
body:not(.smf) .side-links a:first-child:hover span:after {
  left: 17px;
}

.side-links a {
  max-width: 300px;
}
.side-links a figure img {
  width: 100%;
}
.side-links a span:before {
  content: "";
  background: #fff;
  width: 40px;
  height: 1px;
  position: absolute;
  right: 23px;
  top: calc(50% + 6px);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.side-links a span:after {
  content: "";
  background: #fff;
  width: 14px;
  height: 1px;
  position: absolute;
  right: 22px;
  top: calc(50% + 1px);
  transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.side-links a .en {
  font-family: 'Cinzel', serif;
}
.side-links a .en.att {
  padding-left: 0.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.side-links a .jp {
  font-family: "リュウミン R-KL";
}

.c-frame {
  background: rgba(0, 0, 0, 0.05);
  margin: 150px 0 200px;
  padding: 30px 20px 40px 20px;
  border: #C4C4C4 solid 1px;
  position: relative;
}
.c-frame:before {
  content: "";
  width: 100px;
  height: 1px;
  background: #1D63B2;
  position: absolute;
  left: calc(50% - 50px);
  top: -1px;
  z-index: 1;
}
.c-frame:after {
  content: "";
  width: 16px;
  height: 19px;
  background: url(../imgs/cs_effect.png) center no-repeat;
  position: absolute;
  left: calc(50% - 8px);
  top: -10px;
  z-index: 2;
}
.c-frame .cs-title {
  color: #193F6B;
  font-size: 18px;
  text-align: center;
  font-family: 'Cinzel', serif;
}
.c-frame .cs-title.jp {
  font-family: "リュウミン R-KL";
}
@media only screen and (max-width: 767px) {
  .c-frame {
    margin: 100px 0 100px;
    padding: 30px 10px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .side-links {
    display: block;
    padding: 50px 0;
  }
  .side-links a {
    display: block;
    width: 300px;
    margin: 10px auto;
    font-size: 24px;
  }

  .sp-infoicon {
    margin-bottom: 20px;
    text-align: center;
  }
  .sp-infoicon img {
    max-width: 200px;
  }
}
.district {
  width: 100%;
  padding: 10px 20px;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.05em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .district {
    font-size: 10px;
    letter-spacing: 0;
  }
}

/* ===================================
Button Effects
=================================== */
.btn__box {
  position: relative;
  overflow: hidden;
}
.btn__box:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-transform: skewX(-45deg);
  transform: skewX(-45deg);
  -webkit-animation: shine 4s infinite;
  animation: shine 4s infinite;
}

@-webkit-keyframes shine {
  0% {
    left: -75%;
  }
  30% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
@keyframes shine {
  0% {
    left: -75%;
  }
  30% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
/* ===================================
fot_bnr_Area 共通バナーエリア
=================================== */
.fot_bnr_Area {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}

.fot_bnr_Area p {
  margin-right: 2%;
}

.fot_bnr_Area p:last-child {
  margin-right: 0;
}

.fot_bnr_Area p a:hover img {
  opacity: .8;
}

.cap_txt {
  margin-bottom: 20px;
}

.mutulal_bnr {
  display: flex;
  justify-content: space-between;
}

.mutulal_bnr a {
  width: 49%;
  display: block;
	margin: 0 auto;
}

.mutulal_bnr a > img {
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .fot_bnr_Area {
    flex-wrap: wrap;
  }

  .fot_bnr_Area p {
    margin-right: 0;
    margin-bottom: 2%;
  }

  .fot_bnr_Area p:last-child {
    margin-right: 0;
  }

  .mutulal_bnr {
    flex-direction: column;
  }

  .mutulal_bnr a + a {
    margin-top: 10px;
  }

  .mutulal_bnr a {
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .fot_bnr_Area {
    /*    flex-direction: column;*/
    text-align: center;
  }

  .fot_bnr_Area p {
    width: 49%;
    margin-bottom: 2%;
  }
}

div.link_ueno2{margin-top: 1.8rem;}





/* ===================================
　トップのバナーエリア
=================================== */

.top-bnrArea {
    max-width: 960px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.top-bnrArea img:hover{
    opacity: 80%;
    transition: 0.3s ease;
}

@media only screen and (max-width: 480px) {
.top-bnrArea {
    display: block;
    }

.top-bnrArea p{
    margin: 10px;
    }
}


.requestBnr img:hover {
        opacity: 80%;
    transition: 0.3s ease;
}




