@charset "UTF-8";
/* CSS Document */

/* @  Header Layout
 * ------------------------------------------------------------ */

/*＝PC＝*/
.l-header{
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: 90px;
    background-color: #333333;
    width:100%;
    height: 90px;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;  
}

.l-header_nav-control{
    background-color: #036bb6;
    width:90px;
    height: inherit;    
}

.l-header_primary{
    /*width:780px;*/
    width: 580px;
    overflow: hidden;
}

.l-header_logo{
    /*width:480px;*/
    width:400px;
    margin-top: 23px;
    /*margin-top: 15px;*/
    overflow: hidden;
    float: left;
}

.l-header_logo img{
    width: 200px;
    /*width:283px;*/
    height:auto;
    margin-right: 8px;
    float: left;
}

.l-header_copy{
    color: #ffffff;
    font-size: 18px;
    /*font-size: 20px;*/
    margin-top: 3px;
    /*margin-top: 8px;*/
    font-weight: normal;
    border-left: 1px solid #fff;
    display: inline-flex;
    vertical-align: middle;
    padding-left: 8px;
}

.l-header_tell{
    color: #ffffff;
    font-weight: bold;
    float:right;
    padding: 26px 20px 0 0;
    font-size: 17px;
    /*font-size: 22px;*/
    /*width:200px;*/
}
.l-header_tell-sp{
    display: none;
}

.material-icons{
    display: inline-flex;
    vertical-align: middle;
}

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {
    
    .l-header{
        height: 70px;
    }
    .l-header_nav-control {
        width: 70px;
        height: inherit;
    }
    
    .l-header_copy {
        display: none;
    }
    
    .l-header_primary {
        width: 70%;
        overflow: hidden;
    }
    
    .l-header_logo {
        width: 170px;
        margin-top: 20px;
        overflow: hidden;
        float: left;
    }
    
    .l-header_logo img{
        width:100%;
        height:auto;
        margin-right: 0;
    }
    
    .l-header_tell-pc{
        display: none;
    }
    
    .l-header_tell-sp{
        display: block;
    }
    
    .l-header_tell-sp a{
        color: #fff;
    }
    
    .l-header_tell{
        color: #ffffff;
        font-weight: bold;
        float:right;
        padding:  25px 20px 0 0;
        font-size: 22px;
    }
    
    .material-icons{
        display: block;
    }
    
}

/* @  Hambueger menu
 * ------------------------------------------------------------ */

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
 overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
outline: none;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
 position: fixed;
  top: 30px;
  left: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.open .toggle_btn {
  left: 330px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.open .toggle_btn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
  width: 16px;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translate(-1px,4px) rotate(-45deg);
  transform: translate(-1px,4px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translate(-1px,-4px) rotate(45deg);
  transform: translate(-1px,-4px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .open .toggle_btn {
    left: 250px;
  }
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
/*============
main
=============*/
main {
  width: 100%;
  /*padding: 90px 0 0 0;*/
  transition: all .5s;
  
}
.open main {
  margin-left: 300px;
}
main h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-align: center;
}
/*============
body
=============*/
/*body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  overflow: hidden;
}*/

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {
    
    .toggle_btn {
      top: 25px;
      left: 20px;
      width: 20px;
      height: 20px;
    }
    
    .toggle_btn span:nth-child(1) {
      top: 0px;
    }
    
    .toggle_btn span:nth-child(2) {
      top: 9px;
    }
    
    .toggle_btn span:nth-child(3) {
      bottom: 0px;
    }
  
}


/* @  Contents Layout
 * ------------------------------------------------------------ */
.l-wrap{
    width:100%;
}

.l-container{
    max-width: 1192px;
    margin: 0 auto;
    padding: 0 16px;
}

.l-one_row{
    display: flex;
    justify-content: space-between;
}

.l-col4 {
    width:23%;
}

.l-col2 {
    width:47%;
}

.inner01{
    padding: 80px 0;
}

.inner02{
    padding: 35px 0;
}

.inner03{
    padding-bottom: 100px;
}

.inner04{
    padding-top: 90px;
}

.inner05{
    margin-bottom: 100px;
    padding-top: 50px;
}

/*＝タブレット＝*/
@media screen and (min-width: 600px) and (max-width: 959px) {
    .inner01{
        padding: 60px 0;
    }
    
}

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {
    
    .l-one_row{
        display: flex;
        flex-wrap: wrap;
        width:100%;
    }
    
    .order-1{
        order: 1;
    }
    
    .order-2{
        order: 2;
    }
    
    .l-col2 {
     width:100%;
    }
    
    .inner01{
    padding: 40px 0;
    }
    
    .inner03{
    padding-bottom: 50px;
    }
    
    .inner05{
    margin-bottom: 50px;
    }
 
}


/* @  Column
 * ------------------------------------------------------------ */

.column_01 dt{
    font-size: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    border-bottom: solid 1px #333;
    padding-bottom: 5px;
    margin-bottom: 5px; 
}

.column_01  dd{
    font-size: 20px;
}

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {
    .column_01 dt{
        font-size: 120%; 
        margin-top: 15px;
    }

    .column_01 dd{
        font-size: 100%;
        line-height: 1.7;
    }
}

/* @  Button Layout
 * ------------------------------------------------------------ */
.btn01 a ,.btn02 a{
    text-align: center;
    color: #fff;
    border-radius:10px;
    width:300px;
    padding: 10px 0;
    margin: 40px auto;
    font-size: 24px;
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn01 a {
    background-color: #01487a;
}

.btn01 a:hover{
    background-color: rgba(1, 72, 122, 0.6);
    text-decoration: none;
}


.btn02 a{
    background-color: #22ac38;
}

.btn02 a:hover{
    /*background-color: rgba(34, 172, 59, 0.6);*/
    background-color: #5dc46d;
    text-decoration: none;
}

.btn03 a{
    text-align: center;
    color: #fff;
    border-radius:30px;
    width:80%;
    padding: 5px 15px;
    margin: 20px auto;
    font-size: 100%;
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #108fe9;
}

.btn03 a:hover{
    background-color: rgba(16, 143, 23322, 0.6);
    text-decoration: none;
}

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {
    .btn01 a ,.btn02 a{
        width:100%;
        margin: 30px auto 80px auto;
    }
    
    .btn03 a{
    margin: 20px auto 50px auto;
    }
}

/* @  Footer Layout
 * ------------------------------------------------------------ */
.l-footer {
  color: #333333;
}

.l-footer a {
  text-decoration: none;
    color: inherit;
}

.l-footer a:hover {
  text-decoration: underline;
}

.l-footer_primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.l-footer_secondary {
    border-top:#999999 1px solid;
}


.l-footer_copy {
    font-size: 12px;
    color: #ffffff;
    background-color: #036bb6;
    text-align: center;
    padding: 8px 0;
}

.l-footer_logo img{
    width:100%;
    height: auto;
}

/*＝PC＝*/
@media only screen and (min-width: 767px) {
  .l-footer_primary {
    max-width: 680px;
    /*max-width: 1192px;*/
    margin: 0 auto 45px auto;
    display: flex;
    justify-content: center;
    /*justify-content: space-between;*/
  }
/*    .l-footer_primary {
    width: 100%;
    margin: 45px auto;
  }*/
  .l-footer_logo{
    width:340px;
    margin-right: 20px;
    }
    
  .l-footer_address{
    padding-top: 10px;
    font-size: 14px;
    }
    .l-footer_nav{
        width:820px;
        margin: 0 auto;
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }
      .l-footer_nav li:before {
          content: '';
          width: 12px;
          height: 12px;
         /* border-radius: 100%;*/
          background: #333333;
          position: relative;
          left: 0;
          top: 0;
          display: inline-block;
        margin-right: 5px;
    }
  
}

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {
    .l-footer {
      margin-top: 50px;
    }
    
    .l-footer_primary {
    width: 100%;
    margin: 15px auto;
  }
    
    .l-footer_logo{
        width:70%;
        margin: 0 auto;
    }
    
    .l-footer_address{
        padding-top: 10px;
        font-size: 80%;
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    
    .l-footer_nav {
        display: none;
    }
    

    
}

/* @  Page Header Layout
 * ------------------------------------------------------------ */
.page-header{
    color:#fff;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 90px 0 80px 0;
    padding: 80px 0;
    width:100%;
}

.page-header h2{
    font-size: 24px;
}

.page-header p{
    font-size: 35px;
}


/*＝スマホ＝*/
@media only screen and (max-width: 766px) {
.page-header{
    margin: 70px 0 50px 0;
    padding: 30px 0;
}

.page-header h2{
    font-size: 18px;
}

.page-header p{
    font-size: 24px;
    padding: 0 8%;
    }
}


/* @  Heading
 * ------------------------------------------------------------ */
.e-heading02{
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {
    .e-heading02{
    font-size: 150%;
    }
}

/* @  Table
 * ------------------------------------------------------------ */
table{
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 50px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #999;
}

td{
	padding-top: 15px;
    padding-bottom: 15px;
    vertical-align: top;
    padding-left: 10px;
    padding-right: 10px;
}
th,td{
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #999;
}
th{
    text-align: center;
	white-space: nowrap;
}

table tr:nth-child(odd) {
    background: #eee;
}

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {

    table{
	    font-size: 100%;
        margin-bottom: 0;
    }
    
    th,td{
        width: 100%;
    	display: block;
    }
    
    th{
        background: #eee;
        padding: 5px 0;
        white-space: normal;
    }
    
    td{
        background: #fff;
        padding: 10px 10px 20px 10px;
    }
    
}

/* @  Font size & style
 * ------------------------------------------------------------ */
.text20_c{
    font-size: 20px;
    text-align: center;
}

.text20{
    font-size: 20px;
}

.bold{
    font-weight: bold;
}

/*＝スマホ＝*/
@media only screen and (max-width: 766px) {

    .text20,.text20_c{
        font-size: 100%;
    }
    
    .text20_c{
    text-align: left;
    }
}

/* @  Font color & Background color
 * ------------------------------------------------------------ */
.red{
    color: #FF0004;
}

.bg-c_l-blue{
    background-color: #dae9f4;
}

/* @  公開前
 * ------------------------------------------------------------ */

.construction{
    margin-top: 100px;
    padding: 200px 0 350px 0;
    text-align: center;
    height: 1000px;
    font-size: 32px;
}