@charset 'UTF-8';

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.menu-trigger {
  display: inline-block;
  width: 30px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 200;
/*transform: translateX(0);
  transition: transform .5s;
*/}

@media screen and (max-width: 900px) {
.menu-trigger {
  top: 15px;
  right: 15px;
}
}

/* 
.menu-trigger.active {
  transform: translateX(-250px);
}*/

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333A56;
  transition: all .5s;
}

.menu-trigger.active span {
  background-color: #333A56;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

nav{
  width: 100%;
  height: 100vh;
  background-color: #dadcde;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateY(-100%); 
  transition: transform .5s ease-in-out;
  overflow: hidden;
}

nav.open {
  transform: translateY(0);
}

/* nav_content
--------------------------------------- */
.nav_content{
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: scroll;
  scrollbar-width: none;
}

.nav_left{
  width: 24%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/bg-illust.png);
  background-color:#333A56;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

@media only screen and  (max-width: 1280px) {
.nav_left{
  width: 20%;
}
}

@media only screen and  (max-width: 900px) {
.nav_left{
  display:none;
}
}

#nav-logo{
  width:150px;
  height:150px;
  display:block;
  position: absolute;
  top: 25px;
  left: 25px;
  background-size:auto 150px;
  background-image: url(../images/common/h-logo.webp);
}

@media only screen and  (max-width: 1280px) {
#nav-logo{
  left: 15px;
}
}

#nav-logo a{
  width:150px;
  height:150px;
  text-decoration:none;
  display: block;
  text-indent:-9999px;
}

@media only screen and  (max-width: 900px) {
#nav-logo{
  width:253px;
  height:34px;
  background-size:auto 34px;
  top: 10px;
  left: 15px;
  background-image: url(../images/common/header-logo.webp);
}

#nav-logo a{
  width:253px;
  height:34px;
}
}

.nav_syousai{
  width: 100%;
  height:100%;
  margin: 0 auto;
  position: relative;
}

#nav-info {
  margin: 0 0 0 25%;
  width:75%;
  height:100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and  (max-width: 1200px) {
#nav-info{
  margin: 0 0 0 20%;
  width:80%;
}
}

@media screen and (max-width: 900px) {
#nav-info {
  display:block;
  position: relative;
  padding-top:60px;
  width:100%;
  margin: 0;
}
}

.nav_memu{
  width:66%;
  display:inline-block;
  vertical-align:middle;
  padding:0 5%;
  box-sizing: border-box;
  font-family: 'Zen Old Mincho', serif;
}

@media screen and (max-width: 1350px) {
.nav_memu{
  width:65%;
  padding:0 1%;
}
}

@media screen and (max-width: 900px) {
.nav_memu{
  display:block;
  width:100%;
  padding:0 5%;
}
}

@media screen and (max-width: 568px) {
.nav_memu{
  display:block;
  width:100%;
  padding:0 3%;
}
}

.main-m li{
  width:22%;
  margin:1% 1.5%;
  display:inline-block;
  vertical-align:bottom;
  box-sizing: border-box;
  border-bottom:1px solid #ccc;
  padding:10px 5px 15px;
}

@media screen and (max-width: 1450px) {
.main-m li{
  width:30.3333%;
}
}

@media screen and (max-width: 568px) {
.main-m li{
  width:47%;
  padding:8px 5px 7px;
}
}


@media screen and (max-width: 900px) {
.sub-m {
  display:none;
}
}

.sub-m li{
  width:47%;
  margin:1% 1.5%;
  display:inline-block;
  vertical-align:bottom;
  box-sizing: border-box;
  border-bottom:1px solid #ccc;
  padding:10px 5px 15px;
}

.nav_memu li a{
  color: #333A56;
  text-decoration:none;
}

.nav_memu li a:hover{
  color: #52658F;
  opacity: 0.7;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}

.nav_ttl{
  height:60px;
  width:auto;
  margin-bottom:15px;
  background-image: url(../images/bg-nstar.webp);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left top;
}

@media screen and (max-width:900px) {
.nav_ttl{
  display:none;
}
}

.nav_ttl p{
  font-size:1.25em;
  line-height:1;
  padding-left:25px;
  padding-top:25px;
  font-family: 'Crimson Text', serif;
  letter-spacing: 0.02em;
}

.nav_other {
  width:40%;
  display:inline-block;
  vertical-align:middle;
  padding-right:10%;
  box-sizing: border-box;
}

@media only screen and  (max-width:1580px) {
.nav_other {
  width:45%;
  padding-right:5%;
}
}

@media screen and (max-width:900px) {
.nav_other {
  width:100%;
  display:block;
  padding: 2% 5% 0;
}
}

@media screen and (max-width:568px) {
.nav_other {
  padding: 3% 5% 0;
}
}

.nv_icon-bt{
  position: relative;
  text-align: center;
  margin-top:30px;
}


@media screen and (max-width:900px) {
.nv_icon-bt{
  margin-top:10px;
}
}

.nv_icon-bt .hdbt{
  display:inline-block;
  vertical-align:middle;
  margin:0px 15px;
  font-size:20px;
  line-height:1;
}

.nv_icon-bt .insbt{
  display:inline-block;
  vertical-align:middle;
  margin:0px 15px;
  font-size:20px;
  line-height:1;
}

.nv_icon-bt li a{
  text-decoration:none;
  color:#333A56;
}

.nv_icon-bt li a:hover {  
  opacity: 0.6;
  text-decoration: none;
}

.nv_icon-bt .lines{
  width:26px;
  height:25px;
  display:inline-block;
  vertical-align:middle;
  margin:0px 15px;
  background-size:auto 25px;
  background-repeat: no-repeat;
  background-image: url(../images/common/line-logo2.webp);
}

.nv_icon-bt .lines:hover{
  opacity: 0.6;
  text-decoration: none;
}

.nv_icon-bt .lines a{
  width:26px;
  height:25px;
  text-decoration:none;
  display: block;
  text-indent:-9999px;
}

.nv_contact p{
  margin:5px 0;
  font-size:13px;
  color:#333A56;
}

@media only screen and  (max-width: 900px) {
.nv_contact p{
  padding:0 2%;
}
}

.nv_contact p a{
  text-decoration:none;
  color:#333A56;
}

.nv_contact p a:hover{
  text-decoration:none;
  color:#333A56;
}

.nv_contact p strong{
  font-size:1.3em;
  font-family: Roboto,sans-serif;
  font-weight:500;
  line-height:1.6;
}

@media only screen and  (max-width: 568px) {
.nv_contact p strong{
  font-size:1.3em;
}
}

.nv_contact .f-res{
  width:100%;
  max-width:400px;
  margin: 20px 0 0;
  font-family: 'Zen Old Mincho', serif;
}

@media only screen and  (max-width: 900px) {
.nv_contact .f-res{
  display:none;
}
}

.nv_contact .f-res li{
  margin:3% 0;
  text-align: center;
  font-size:1.1em;
}

.nv_contact .resv a {
  display:block;
  padding:15px 0 13px;
  border:1px solid #52658F;
  background:#52658F;
  color:#FFF;
  text-decoration: none;
}

.nv_contact .resv a:hover {
  color:#52658F;
  background:#FFF;
  border:1px solid #52658F;
  text-decoration: none;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}

.nv_contact .fa{
  margin-right:5px;
}

.nv_contact .resv a .fa {
  color:#FFF;
}

.nv_contact .resv a:hover .fa {
  color:#52658F;
}

.nv_contact .web a {
  display:block;
  padding:15px 0 13px;
  border:1px solid #52658F;
  background:#FFF;
  color:#52658F;
  text-decoration: none;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}

.nv_contact .web a:hover {
  color:#FFF;
  background:#52658F;
  text-decoration: none;
}

.nv_contact .web a:hover .fa {
  color:#FFF;
}

.nvo_menu{
  width:100%;
  margin: 20px 0 0;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Helvetica,Arial,sans-serif;
}

@media only screen and  (max-width: 820px) {
.nvo_menu{
  margin: 2% auto 0;
}
}

.nvo_menu li{
  display:inline-block;
  margin:0 10px;
  font-size:13px;
}

@media only screen and  (max-width: 820px) {
.nvo_menu li{
  margin:10px;
}
}

.nvo_menu li a {
  text-decoration: none;
  color: #333A56;
}
.nvo_menu li a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.nvo_menu li .fa{
  margin-right:3px;
}
