/*----------------------------------------

                header

------------------------------------------*/
.l-header{
  position: fixed;
  top:30px;
  left:0;
  width: 100%;
  margin: auto;
  z-index: 9998;
}
@media screen and (max-width:600px){
  .logo_area a img{
    width: 180px;
    height: auto;
  }

}

/*---------------------------------------

               nav

-----------------------------------------*/
.header_menu_box{
  width: 100%;
  padding: 0 2%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav_list{
  padding: 17px  38px;
  background: #FFFFFF;
  border: 2px solid #303AB1;
  border-radius: 60px;
  box-shadow: 10px 14px 24px -7px rgba(0, 0, 128, 0.16), 0 0 38px -14px rgba(0, 0, 128, 0.18);
  z-index: 9999;

}
.pc_nav_list{
  display: flex;
}
.pc_nav_list li{
  margin-right: 16px;
}
.pc_nav_list li:last-child{
  margin-right: 0;
}
.nav_list ul li a{
  /* display: inline-block; */
  font-size: 1.4rem;
  font-weight:600;
  margin-right: 16px;
  letter-spacing: 0.15em;
  color: #303AB1;
}


/* toggle */

.toggle{
  display: none;
  background:transparent;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 9999;
}
.toggle span{
  width:85%;
  display: block;
  margin: auto;
  height: 3px;
  background-color:#303AB1;
}
.toggle span:nth-child(1){
  position: relative;
  top:7px;
}
.toggle span:nth-child(2){
  position: relative;
  top:12px;
}
.toggle span:nth-child(3){
  position: relative;
  top:17px;
}
.toggle span:nth-child(4){
  height: auto;
  text-align: center;
  font-size: 1.2rem;
  background: transparent;
  color: #202F55;
  position: relative;
  top:26px;
}
.toggle span:nth-child(5){
  display: none;
  height: auto;
  text-align: center;
  font-size: 1.2rem;
  color: #202F55;
  background: transparent;
  position: relative;
  top:26px;
}
.toggle.active span:nth-child(4){
  display: none;
}
.toggle.active span:nth-child(5){
  display:block;
}
@media screen and (max-width:960px){
  .pc_nav_list{
    display: none;
  }
  .nav_list{
    width: 80px;
    height: 80px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .toggle{
    display: block;
  }
}

.sp_menu_list{
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top:0;
  left:0;
  padding-top: 60px;
  background: #E9F1F8;
  z-index: -1;
}
.sp_menu_list.active{
  display: block;
}
.sp_nav{
  width: 85%;
  margin: 72px auto 0;
  padding: 5%;
  text-align: center;
  border-radius: 12px;
  border: 2px solid #303AB1;
  background:#FFFFFF;
  box-shadow: 10px 14px 24px -7px rgba(0, 0, 128, 0.16), 0 0 38px -14px rgba(0, 0, 128, 0.18);
    z-index: 9999;

}
.sp_nav ul li{
  border-bottom: 0.5px dotted #d9d9d9;
  text-align: left;
  margin-bottom: 16px;
}
.sp_nav ul li:last-child{
  border-bottom: none;
  margin-bottom: 0;
}
.sp_nav ul li a{
  display: block;
  color: #202F55;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 8px 0;
}

@media screen and (max-width:600px){
  .header_menu_box{
    /* padding: 12px  16px 12px 16px; */
  }
  .toggle{
    top:3px;
  }
  .nav_list{
    width: 65px;
    height: 65px;
  }
  .toggle span{
    width:65%;
    height: 2px;
  }
  .toggle span:nth-child(4){
    font-size: 1.0rem;
  }
  .toggle span:nth-child(5){
    font-size: 1.0rem;
  }

}

/*----------------------------------------

                footer

------------------------------------------*/

.l-footer{
  padding: 15px 0;
  background: #303AB1;
  color: #FFFFFF;
  text-align: center;
}
.l-footer p{
 font-family: "kozuka-gothic-pro",sans-serif;

}
.l-footer ul {
  display: flex;
  padding: 24px 0 32px;
  justify-content: center;
}
.l-footer ul li {
  margin-right: 20px;
}
.l-footer ul li:last-child{
  margin-right: 0;
}
.l-footer ul li a{
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: #FFFFFF;
}
@media screen and (max-width:600px){
  .l-footer{
    padding: 15px 0;
  }
  .l-footer ul {
    display:block;
    text-align: center;
    padding: 16px 0;
  }
  .l-footer ul li {
    margin-right:0;
    margin-bottom: 8px;
  }
  .l-footer ul li a{
    font-size: 1.3rem;
  }
  .l-footer p{
    font-size: 1.3rem;
  }

}

/*------------------------------

            inner

--------------------------------*/

.l-inner{
  width:1160px;
  max-width: 100%;
  padding: 0 1%;
  margin: auto;
}
@media screen and (max-width:959px){
  .l-inner{
    padding:0 3%;
  }
}

/*-----------------------------------

             container

--------------------------------------*/
.l-container{
  /* padding: 0; */
}
.l-container_s{
  padding: 40px 0;
}
.l-container_m{
  padding: 60px 0;
}
.l-container_l{
  padding: 120px 0;
}

@media screen and (max-width:959px){
  .l-container_s{
    padding: 16px 0;
  }
  .l-container_m{
    padding: 30px 0;
  }
  .l-container_l{
    padding: 90px 0 24px;
  }
}


/*------------------------------------

              contents

-------------------------------------*/


.l-content{
}
.l-content_s{
  margin-bottom: 24px;
}
.l-content_m{
  margin-bottom: 40px;
}
.l-content_l{
  margin-bottom: 80px;
}
@media screen and (max-width:768px){
  .l-content_s{
    margin-bottom: 8px;
  }
  .l-content_m{
    margin-bottom: 24px;
  }
  .l-content_l{
    margin-bottom: 40px;
  }
}
