@charset "UTF-8";
/*パソコンは表示させない*/
@media screen and (min-width: 768px) {
  .NoPc{display: none !important;}
}
/*スマホは表示させない*/
@media screen and (max-width: 767px) {
  .NoSp{display: none !important;}
}
*,:before,:after{
font-size:13px;
}
/*--------------------------------*/
*{
  font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a {text-decoration: none;transition: all 0.4s;-webkit-transition: 0.4s;transition: 0.4s;}
a:hover {transition: all 0.3s;-webkit-transition: 0.3s;transition: 0.3s;}
*:focus {
outline: none;
}
a{
  text-decoration: none;
  color: #0a549d;
}
a:hover{
  color: #347ec7;
}
.banner-link:hover{
  opacity: 0.4;
}
body {
  min-width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0 auto;
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: #333;
}
/*---------------------------------------------------------------*/
/*--//header--*/

/*---------------------------------------------------------------*/
/*--//pankuzu--*/

/*---------------------------------------------------------------*/
/*--//main--*/
main{
}

/*---------------------------------------------------------------*/
/*--//footer--*/

/*---------------------------------------------------------------*/
/*---------------------------------------------------------------*/
/*--//バーガーメニュー--*/
body.fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
}
/*　ハンバーガーボタン */
.MenuSlide_icon {
  display : block;
  position: absolute;
  z-index : 800;
  right : 0;
  top   : 0;
  width : 12vw;
  height: 12vw;
  cursor: pointer;
  background-color: rgba(236,236,236,.7);
  text-align: center;
  transition: all .4s;
  -webkit-transition: .4s;
  transition: .4s;
}
.MenuSlide_icon.active{
  top: 0;
  right: 0;
}
.MenuSlide_icon::before {
  content: '';
  position: absolute;
  z-index : 800;
  top: 0;
  right: 0;
  width : 13vw;
  height: 12vw;
  background-color: #fff;
}
.MenuSlide_icon.active::before {
  background-color: #2752a8;
  width : 13vw;
  height: 12vw;
  top: 0;
  right: 0;
}

.MenuSlide_icon > span {
  display : block;
  position: absolute;
  z-index: 900;
  width : 8.6vw;
  height : .8vw ;
  right : 1.8vw;
  background : #2752a8;
  -webkit-transition: 0.3s all;
  -moz-transition   : 0.3s all;
  transition        : 0.3s all;
}
.MenuSlide_icon > span:nth-child(1) {
  top: 2.7vw;
}
.MenuSlide_icon > span:nth-child(2) {
  top: 5.7vw;
}
.MenuSlide_icon > span:nth-child(3) {
  top: 8.7vw;
}

/* ナビ開いてる時のボタン */
.MenuSlide_icon.active > span:nth-child(1) {
  top : 6vw;
  right: 1vw;
  width : 10vw;
  height : .6vw ;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.MenuSlide_icon.active > span:nth-child(2) {
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}
.MenuSlide_icon.active > span:nth-child(3) {
  top : 6vw;
  left: 1vw;
  width : 10vw;
  height : .6vw ;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/*--　メニュー内　--*/
.MenuSlide {
  position: fixed;
  z-index : 50; 
  top  : 0;
  bottom : 0;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #fff;
}
/* このクラスを、jQueryで付与・削除する */
.MenuSlide.active {
  transform: translateY(0%);
  padding-bottom: 12vw;
  top  : 12vw;
  z-index : 50; 
}
.MenuSlide > h2{
  margin-top: 6vw;
}
.MenuSlide > h2 > a{
  position: relative;
  border: .3vw solid #015db2;
  color: #015db2;
  font-size: 5vw;
  letter-spacing: .6vw;
  background-color: #fff;
  display: block;
  padding: 4vw 0;
  text-align: center;
  margin: 2vw 5vw;
}
.MenuSlide > h2 > a::after{
  position: absolute;
  content: '';
  top: 5.5vw;
  right: 4vw;
  width: 2vw;
  height: 2vw;
  border: .6vw solid;
  border-color: #015db2 #015db2 transparent transparent;
  transform: rotate(45deg);
}
.MenuSlide > p{
  display:block;
  width: 90vw;
  margin: 8vw auto 12vw;
  text-align:center;
  cursor:pointer;
}
.MenuSlide > p > a{
  position: relative;
  color: #fff;
  font-size: 5vw;
  letter-spacing: .6vw;
  background-color: #015db2;
  display: block;
  padding: 4vw 0;
  text-align: center;
}

/*------*/
.MenuSlide_tel {
  position: fixed;
  z-index : 40;
  top  : 0;
  bottom : 0;
  color: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  overflow: auto;
  padding: 18vw 0;
  height: 100vw;
  border-bottom: 1vw solid #015db2;
  background-color: #015db2;
box-shadow: 0px 6px 4px 0px rgba(82,80,83,.3);
}
.MenuSlide_tel > h3{
  font-size: 5vw;
  padding-bottom: 6vw;
}
.MenuSlide_tel > i{
  display: block;
  padding-top: 6vw;
  font-size: 4vw;
}
/* このクラスを、jQueryで付与・削除する */
.MenuSlide_tel.active {
  transform: translateX(0%);
  padding-bottom: 10vw;
  height: 100vw;
}

.MenuSlide{}
/*アコーディオン*/
#MS_Accordion{
  width: 100vw;
  margin: 6vw auto auto;
  display: -webkit-flex;
  display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#MS_Accordion dt{
  position: relative;
  display:block;
  width:100%;
  margin-bottom: 2vw;
  padding: 4vw 0 4vw 4vw;
  font-weight: 600;
  font-size: 4vw;
  color: #fff;
  text-align: left;
  background-color: #8baed9;
  cursor: pointer;
  letter-spacing: .6vw;
}

#MS_Accordion > dd{
  position: relative;
  width: 44vw;
  margin: auto 0 2vw;
  height: 14vw;
  font-size: 5vw;
  letter-spacing: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: .4vw solid #c9cccf;
}
#MS_Accordion > dd:nth-child(even){
  margin: auto 2vw 2vw 0;
}
#MS_Accordion > dd > a{
  display:block;
  font-weight: 600;
  color: #46525a;
}

/*---------------------------------------------------------------*/
/*　　　　PC css　　　　*/
/*---------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  body {
    font-size: 13px;
    border-top: 10px solid #0c2b4a;
  }
/*  headerーーーーーーーーーーーーーーーーーーーーーー */
header{
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  width: 100%;
  background-color: rgba(255,255,255,.8);
  border-bottom: 1px solid #0050a1;
}
.headerDiv{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.headerDiv1{
  width: 225px;
  height: 70px;
  margin: 0 0 0 20px;
}
.headerDiv1 > a{
  width: 225px;
  height: 70px;
  display: grid;
  place-items: center;
}
.headerDiv1 > a:hover{
  opacity: 0.6;
}
.headerDiv2 {
  width: 440px;
  margin-left: auto;
  height: 70px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
.headerDiv2 > form{
    display: -webkit-flex;
    display: flex;
}
.headerDiv2 > strong{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #333;
  width: 50px;
}

.headerDiv2_p{
  width: 370px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  margin: auto 0;
  padding: 6px 5px 6px 35px;
  background-color: #fff;
  background-image: url(../images/global/icon_search.svg);
  background-repeat: no-repeat;
  background-position: 2% center;
  background-size: 5%;
  border: 1px solid #999999;
}
.headInputText{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
  width: 275px;
  border: none;
  padding: 1px 2px;
  border-right: 1px solid #999999;
}
.headButtonSubmit{
  padding: 1px 5px 1px 10px;
  background-color: #0050a1;
}
.headButtonSubmit > span{
  color: #fff;
  letter-spacing: .2em;
  font-size: 14px;
  font-weight: 300;
}
.headerUl{
    display: -webkit-flex;
    display: flex;
}
.headerUl li{
  width: 80px;
  height: 70px;
  border-left: 1px solid #999999;
}
.headerUl li > a{
  display: block;
  position: relative;
  width: 80px;
  height: 69px;
  text-align: center;
  display: grid;
  place-items: center;
}
.headerUl li > a:hover{
  background-color: #a1c8ef;
}
.headerUl li > a > img{
  position: absolute;
  width: 36%;
  top: 12px;
}
.headerUl li:last-of-type > a > img{
  width: 32%;
  top: 12px;
}
.headerUl li > a > strong{
  display: block;
  position: absolute;
  bottom: 2px;
  letter-spacing: .1em;
  color:#333;
}


/*  footerーーーーーーーーーーーーーーーーーーーーーー */
footer{
  background-color: #fff;
}
footer > h2{
  height: 50px;
  background-color: #0050a1;
}
footer > h2 > strong{
  display: block;
  width: 1000px;
  margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
footer > h2 > strong > a{
  display: block;
  width: 230px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer > h2 > strong > span{
  display: block;
  height: 40px;
  margin: 5px 0 0;
  border-left: 1px solid #3a7bbd;
}
footer > h2 > strong > span > a{
  display: block;
  width: 50px;
  height: 40px;
  padding: 0 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footerDiv{
  width: 1000px;
  margin: auto;
}
.footerUl{
  margin: 40px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.footerUl li{
  margin: 0 20px;
}
.footerUl li > a{
  padding: 0 0 0 20px;
  background-image: url(../images/global/icon_check.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 14px;
}
.footerUl li > a > span{
  letter-spacing: .1em;
  color: #333;
}
.footerUl li > a:hover > span{
  color: #347ec7;
  border-bottom: 1px solid #347ec7;
}
.footerDiv-in{
  padding: 50px 0 0;
  border-top: 1px solid #e3e3e3;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.footerDl{

}
.footerDl dt{
  height: 30px;
}
.footerDl dt > span{
  font-size: 16px;
  font-weight: 600;
  padding: 0 0 0 5px;
  border-left: 4px solid #0050a1;
  letter-spacing: .1em;
}
.footerDl dd{
  padding: 6px 0;
}
.footerDl dd > a{
  font-size: 14px;
  letter-spacing: .1em;
  color: #333;
  border-bottom: 1px solid #fff;
}
.footerDl dd > a:hover{
  color: #347ec7;
  border-bottom: 1px solid #347ec7;
}
.footerDiv > p{
  margin: 60px 0 40px;
  padding: 0;
  line-height: 1.6;
}
.footerDiv > p.Copyright{
  margin: 0;
  padding: 15px 0 5px;
  font-size: 12px;
  text-align: center;
  letter-spacing: .06em;
  border-top: 1px solid #e3e3e3;
}
.Copyright > a{
  color: #333;
}
/*  pankuzuーーーーーーーーーーーーーーーーーーーーーー */




}/*--　PC css終了　--*/
