
@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,w
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

html { font-size: 62.5%; 
    overflow: auto;
  }
body{
  overflow: hidden;
  font-size: 1.6em;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1.8;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

body,a{
  letter-spacing: 0.5px;
  color:#000;
  text-decoration: none;
  line-height: 1.8;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

.txt_ctr{
  text-align: center;
}

.w1200{
  width: 1200px;
  margin-right:auto;
  margin-left:auto;
  max-width: 100%;
  padding-right:10px;
  padding-left:10px;
  box-sizing: border-box;
}
.w800{
  width: 800px;
  margin-right:auto;
  margin-left:auto;
  max-width: 100%;
  padding-right:10px;
  padding-left:10px;
  box-sizing: border-box;
}


a:hover{
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      color: #ccc;
}

a img:hover{
  opacity: .5;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
}

img{
  max-width: 100%;
}

.btn{
  text-align: center;
}

.btn a{
  color: #333;
  font-size: 1.6rem;
  display: inline-block;
  background: none;
  border: 1px solid #333;
  padding:5px 80px;
}

.btn a:hover{
  color: #fff;
  background: #333;
}

.en{
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-weight: 300;
  letter-spacing: 0.05em;
}

p.title{
  font-weight: bold;
}

/****************************************************************************************************************************
    サイドナビ
****************************************************************************************************************************/
.sideNavi{
  display: block;
  width: 300px;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: auto;
  right:0;
  z-index: 10000;
  overflow: hidden;
  -moz-transform: translate(317px, 0);
  -webkit-transform: translate(317px, 0);
  -o-transform: translate(317px, 0);
  -ms-transform: translate(317px, 0);
  transform: translate(317px, 0);
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}

.sideNavi.on{
  -moz-transform: translate(0px, 0);
  -webkit-transform: translate(0px, 0);
  -o-transform: translate(0px, 0);
  -ms-transform: translate(0px, 0);
  transform: translate(0px, 0);
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.sideNavi .sideNavi_in{
  width: 317px;
  height: 100%;
  overflow-y: scroll;
  position: absolute;
}

.sideNavi .sideNavi_in .sideNavi_box{
}

.sideNavi .sideNavi_in .sideNavi_box .sideNavi_title{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding: 0 0 0 15px;
}

.sideNavi .sideNavi_in .sideNavi_box .sideNavi_title p{
  flex: 1;
}

.sideNavi .sideNavi_in .sideNavi_box .sideNavi_title .close_btn{
  width: 60px;
  height: 60px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor:pointer;
}

.sideNavi .sideNavi_in .sideNavi_box .sideNavi_title .close_btn span{
  width: 31px;
  height: 31px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sideNavi .sideNavi_in .sideNavi_box .sideNavi_title .close_btn span:before{
  content: '';
  display: block;
  width: 31px;
  height: 1px;
  background-color: #111;
  position: absolute;
  top:0;
  left: 0;
  right:0;
  bottom:0;
  margin: auto;
}

.sideNavi .sideNavi_in .sideNavi_box .sideNavi_title .close_btn span:after{
  content: '';
  display: block;
  width: 1px;
  height: 31px;
  background-color: #111;
  position: absolute;
  top:0;
  left: 0;
  right:0;
  bottom:0;
  margin: auto;
}

.sideNavi .sideNavi_in .sideNavi_box .menu{
  border-top: solid 1px #ddd;
}

.sideNavi .sideNavi_in .sideNavi_box .menu li{
  display: block;
}

.sideNavi .sideNavi_in .sideNavi_box .menu li a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  border-bottom: dashed 1px #ddd;
  padding: 0 40px 0 15px;
  color: #111;
  position: relative;
  font-weight: bold;
}

/*.sideNavi .sideNavi_in .sideNavi_box .menu li a:after{
  font-family: fontawesome;
  content: '\f101';
  font-size: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: auto;
  right: 10px;
  bottom: 0;
  margin: auto;
  color: #6bccd1;
  font-weight: normal;
}*/

.sideNavi .sideNavi_in .sideNavi_box .menu li a:hover{
  background-color: #010e3b;
  color: #fff;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

/*.sideNavi .sideNavi_in .sideNavi_box .menu li a:hover:after{
  color: #fff;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}*/

.sideNavi .sideNavi_in .sideNavi_box .menu li.on a{
  background-color: #004e83;
  color: #fff;
}

.sideNavi .sideNavi_in .sideNavi_box .menu li.on a:after{
  display: none;
}

.sideNavi_bg{
  display: none;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0,0,0,0.4);
  cursor:pointer;
}

.trigger{
  position: fixed;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22px;
  height: 22px;
  cursor:pointer;
  top: 10px;
  right:10px;
}

.trigger p{
  display: block;
  content: '';
  width: 22px;
  height: 2px;
  background-color: #111;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.trigger span{
    background-color: #111;
    width: 22px;
    height: 2px;
}
.trigger:before{
  display: block;
  content: '';
  width: 22px;
  height: 2px;
  background-color: #111;
  position: absolute;
  top:2px;
  left: 0;
  right:0;
  bottom:auto;
  margin: auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.trigger:after{
  display: block;
  content: '';
  width: 22px;
  height: 2px;
  background-color: #111;
  position: absolute;
  top:auto;
  left: 0;
  right:0;
  bottom:2px;
  margin: auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}



@media screen and (max-width: 920px){
  .sideNavi .sideNavi_in .sideNavi_box .menu li a:after{
    right: 30px;
  }
  .sideNavi .sideNavi_in .sideNavi_box .sideNavi_title .close_btn{
    margin-right: 15px;
  }
}



header .flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

header .logo{

}
header .header_right{
  margin-right: 5%;
}

header .header_right nav ul{
  display: flex;
  align-items: center;
}

header .header_right nav ul li a{
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  padding: 0 10px;
  margin-left: 10px;
  color: #000;
  font-weight: bold;
}


footer{
  padding: 50px 0;
}
footer .flex{
  display: flex;
  align-items: center;
}
footer .company_name{
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 20px;
}
footer nav ul{
  display: flex;
  margin: 30px 0 20px 0;
  justify-content: center;
}
footer nav ul li{
  padding: 0 15px;
}
footer .copyright{
  font-size: 1.4rem;
  margin-top: 50px;

}

.info{
  padding: 150px 0;
  text-align: center;
  background-image: url(../image/info_bg.jpg);
  background-size: cover;
  background-position: center;
}

.info .tel{
  font-size: 2.0rem;
}

.info .mail{
  font-size: 2.0rem;
}
.info h2{
    font-size: 2.6rem;
    color: #fff;
    font-weight: bold;
    margin: 30px auto;
}

.info p{
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);  
}

button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}
.form{
  background-color:#f3f3f3;
  padding: 50px;
  box-sizing: border-box;
}
.form button{
  display: inline-block;
  background: #00155f;
  color: #fff;
  border: 1px solid #00155f;
  padding: 10px 50px;
}
.mailform .btn button:hover{
  background: #fff;
  color:  #00155f;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
}

.mailform .form {
  margin: 80px auto;
}

.mailform .form .btn{
  text-align: center;
}

.mailform .form dl{
  display: flex;
  flex-wrap: wrap;
}

.mailform .form dl dt{
  width: 30%;
  margin-bottom: 30px;
}

.mailform .form dl dd{
  width: 70%;
  margin-bottom: 30px;
}

.page.contact .form .tel{
  margin: 0 auto;
}

.mw_wp_form .error{
  display: block;
  width: 100%;
  text-align: left;
}

.mw_wp_form .notice_error .error{
  text-align: center;
}


.mailform input,.mailform textarea{
  padding: 5px;
}

.privacy .page_conts{
  margin-bottom: 80px;
}

.privacy p.ttl{
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 30px;
}

.privacy{
  margin-bottom: 80px;
}




@media screen and (max-width: 1100px){
  header .header_right nav ul li a{
    margin-left: 5px;
    padding: 0 5px;
  }

}

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

}

@media screen and (max-width: 800px){
  footer .flex{
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  footer nav ul{
    justify-content: flex-start;
  }
  footer nav ul li{
    padding: 0 15px 0 0;
  }

}

@media screen and (max-width: 500px){
  header .logo{
    width: 80%;
    margin: 0 auto;    
  }
  header .logo img{
    display: block;
    margin: 0 auto;
  } 
}