@charset "UTF-8";

.is-sp{
  display: none;
}

body{
  font-size: 14px;
  font-family: YakuHanJPs,"Helvetica Neue",Arial,"Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",Meiryo,sans-serif;
  line-height: 1.6;
  color: #000;
  /*overflow-x: hidden;*/
  width: 100%;
  min-width: 1300px;
}

body::before {
  content:"";
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100vw;
  height:100vh;
  background: url(../img/common/bg_base.jpg) center 0 no-repeat;
  background-size: cover;
}
body.is-trailerModalShow,
body.is-commentModalShow{
  position: fixed;
}
.js-completeLoad{
  opacity: 0;
  backface-visibility: hidden;
  transition: 0.6s ease-in-out;
}
.js-completeLoad.is-show{
  opacity: 1;
}
.wrap{
  position: relative;
  z-index: 2;
}
.pageHome .wrap{
  padding-top: 0;
}

.loadingOverlay{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
}
.loader {
  font-size: 6px;
  margin: auto;
  text-indent: -9999em;
  width: 7em;
  height: 7em;
  border-radius: 50%;
  background: #ccc;
  background: -moz-linear-gradient(left, #ccc 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #ccc 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #ccc 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #ccc 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #ccc 10%, rgba(255, 255, 255, 0) 42%);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.loader:before {
  width: 50%;
  height: 50%;
  background: #ccc;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loader:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 900px) {
}


/*===============================================
gNav
================================================= */

.gNav{
  width: 360px;
  position: fixed;
  top:0;
  bottom: 0;
  left: -360px;
  z-index: 20;
  margin: auto;
  background: url(../img/common/bg_base.jpg) 100% 0 no-repeat;
  background-size: auto 100%;
  transition: left .3s ease-in-out;
}
.gNav.is-show{
  left: 0;
}

.gNav p.tit{
  width: 60%;
  max-width: 300px;
  display: block;
  margin: 10px auto;
}

.gNav ul{
  margin-top: 20px;
}
.gNav li a{
  display: block;
  text-align: center;
  padding: 16px 0;
  transition: background .3s;
}
.gNav li a:hover{
  background-color: rgba(255,255,255,.3);
}
.gNav li img{
  display: block;
  margin: auto;
  height: 12px;
}
.gNavClose{
  margin-top: 20px;
  margin-left: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: opacity .3s;
  background: url(../img/common/bt_close.svg) 0 0 no-repeat;
  background-size: 32px;
}
.gNavClose:hover{
  opacity: 0.6;
}
.gNavBt{
  position: fixed;
  z-index: 2;
  top: 18px;
  left: 32px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: opacity .3s;
  background: url(../img/common/bt_menu_w.svg) 0 0 no-repeat;
  background-size: 80px;
}
.gNavBt.is-close{
  display: none;
}
.gNavBt:hover{
  opacity: 0.6;
}


/*===============================================
commentModal
================================================= */

.commentModalOverlay{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 50;
  background: url(../img/common/bg_comment.jpg) center 0 no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.commentModal{
  font-weight: 500;
  padding: 60px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 51;
  overflow: auto;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.commentModalTitle{
  width: 400px;
  margin: 0 auto;
  padding-bottom: 16px;
}
.commentModalMain{
  display: block;
  padding: 30px 40px;
  width: 800px;
  margin: 0 auto;
  background-color: rgba(255,255,255,.68);
}
.commentModalDetail{
  position: relative;
  min-height: 220px;
  /*padding-left: 190px;*/
  margin: 0 auto;
  width: 100%;
}
/*
.commentModalDetail:not(:first-child){
  margin-top: 60px;
}
.commentModalDetailImg{
  position: absolute;
  top: 0;
  left: 0;
}*/
.commentModalDetailTitle{
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b4c61;
  padding-bottom: 12px;
  position: relative;
}

.commentModalMain h3{
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: #1b4c61;
  padding-bottom: 12px;
}

span.sml{
  font-size: 16px;
}

.dirName{
  display: block;
  text-align:right;
  width: 100%;
  font-size: 24px;
  font-family: 'Noto Serif JP', serif;
}


.commentModalDetailText{
  /*line-height: 1.8;*/
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 14px;
  position: relative;
}
.commentModalClose{
  position: absolute;
  z-index: 52;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: none;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  background: url(../img/common/bt_close.svg) 0 0 no-repeat;
  background-size: 32px;
}

.is-commentModalShow .commentModalOverlay,
.is-commentModalShow .commentModal,
.is-commentModalShow .commentModalClose{
  opacity: 1;
  pointer-events: auto;
}

.is-commentModalShow .commentModalClose{
  display: block;
}
.commentModalClose:hover{
  opacity: 0.6;
}

/*===============================================
trailerModal
================================================= */

.trailerModalOverlay{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 50;
  background: rgba(255, 255, 255, .8);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.trailerModal{
  width: 800px;
  height: 450px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 51;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.trailerModal iframe{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.trailerModalClose{
  position: absolute;
  z-index: 52;
  top: 14px;
  right: 14px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  display: none;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  background: url(../img/common/bt_close.svg) 0 0 no-repeat;
  background-size: 80px;
}
.is-trailerModalShow .trailerModalOverlay,
.is-trailerModalShow .trailerModal,
.is-trailerModalShow .trailerModalClose{
  opacity: 1;
  pointer-events: auto;
}
.is-trailerModalShow .trailerModalClose{
  display: block;
}
.trailerModalClose:hover{
  opacity: 0.6;
}



/*===============================================
footer
================================================= */

.footer{
  background-color: #fff;
  padding: 40px 0;
  position: relative;
}

.footerCopyright{
  margin-top: 25px;
  text-align: center;
  color: #b0c4d5;
}

.backHome{
  position: absolute;
  bottom: 50px;
  left: 20px;
}

.footerBnr{
  display: flex;
  width: 70%;
  max-width: 360px;
  margin: 0 auto 30px auto;
  justify-content: center;
}

.footerBnr li{
  display: block;
  width: 48%;
  height: auto;
  margin: 0 2px 10px 2px;
}

.footerBnr li img{
  width: 100%;
}


/*===============================================
pagetop
================================================= */

.pagetop{
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 68px;
}
.pagetop a{
  display: block;
  transition: opacity .3s;
}
.pagetop a:hover{
  opacity: 0.6;
}

.footBt {
  display: none;
}

/*===============================================
font color
================================================= */
.white{ color: #fff; }
.gray1{ color: #888; }
