
@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;
box-sizing: border-box;
}

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:#333;
  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: #fff;
  font-size: 1.6rem;
  display: inline-block;
  background: #000;
  border: 1px solid #000;
  padding:15px 60px;
  border-radius: 30px;
}

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

.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 {
  width: 100%;
}
header .flex{
  display: flex;
  justify-content: space-between;
}
header .flex .logo{
  padding: 20px 0 0 20px;
}
header .mv{
  height: 600px;
  display: flex;
  background-position: center;
}
header .mv .logo{
  margin-left: 10vw;
}
header nav ul{
  display: flex;
  justify-content: flex-end;
}
header nav ul li{
  margin: 0 10px 20px 10px;
}
header nav ul li a{
  font-size: 1.6rem;
  margin: 0 10px;
}
header .header_right .nav_top{
  display: flex;
  justify-content: flex-end; 
}
header .header_right .nav_top .contact{
  text-align: center;
  line-height: 1.2;
}
header .header_right .nav_top .contact a{
  color: #000;
  display: block;
  padding:10px 20px 10px 50px;
  border-radius: 0 0 0 40px;
}
header .header_right .nav_top .contact a{
  font-size: 2.2rem;
}
header .contact{
  margin-top: 5px;
}
header .contact .tel{
  font-size: 2.6rem;
  margin-right: 50px;
}

.info{
  margin: 160px auto 80px auto;
}
.info .mail a{
  width: 50%;
  display: block;
  background: #000;
  color: #fff;
  margin: 80px auto 20px auto;
  text-align: center;
  padding: 30px 20px;
  font-size: 2.4rem;
  border: 1px solid #000;
}

.info .mail a:hover{
  background: #fff;
  color: #000;
}
.info .tel{
  font-size: 4.0rem;
  text-align: center;
}

footer{
  padding: 50px 0;
  border-top: 1px solid #000;
}
footer .flex{
  display: flex;
}

footer .footer_logo{
  width:40%;
}
footer .footer_logo .img{
  margin-bottom: 50px;
}
footer nav ul{
  padding: 30px 0;
  display: flex;
  margin: 30px 0 20px 0;
  justify-content: center;
}
footer nav ul li{
  padding: 0  0 0 10px;
}
footer nav ul li a{
  font-size: 1.4rem;
}
footer .copyright{
  font-size: 1.2rem;
  margin-top: 20px;
  text-align: center;
}

footer .copyright{
  padding-top: 20px;

}
footer .copyright p{
  font-size: 1.4rem;
  text-align: left;
}



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{
  display: flex;
  flex-wrap: wrap;
}

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

.mailform .form 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: 1200px){

}
@media screen and (max-width: 1100px){
  header nav ul li a{
    font-size: 1.4rem;
  }

}
@media screen and (max-width: 1000px){
  header nav ul{
    display: none;
  }
  .header_right{
    display: none;
  }  
  .trigger{
    top: 10px;
  }
  header .mv{
    background-size: cover;
    height: 300px;
  }
  header .mv .logo{
    margin-left: 20px;
    width:70%;
  }
  footer .flex{
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  footer .footer_logo{
    width: 100%;
  }

  footer .footer_logo .img{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px){
  .btn a{
    padding: 15px 20px;
  }
  h2{
    font-size: 2.0rem
  }
  h1{
    font-size: 2.6rem;
  }
  h3{
    font-size: 1.8rem
  }

}

@media screen and (max-width: 750px){
  .mailform .form{
    padding: 20px;
  }
  .mailform input, .mailform textarea{
    width: 100%;
    box-sizing: border-box;
  }

  .mwform-tel-field input{
    width: 25%!important;
  }
  .mailform .form dt{
    width: 100%;
    margin-bottom: 10px;
  }
  .mailform .form dd{
    width: 100%;
  }
  .w800{
    width: 100%;
  }
  .w800.form{
    padding: 30px 20px;
    box-sizing: border-box;
  }
  .page.contact .tel span{
    font-size: 2.0rem;
  }
  .page.contact .tel{
    margin: 50px auto;
    font-size:1.4rem;
  }



}
@media screen and (max-width: 600px){
 
}
@media screen and (max-width: 500px){
  body,a{
    font-size: 1.4rem;
  }
  header .mv{
    background-size: cover;
    height: 200px;
  }  
  footer nav ul{
    margin: 0;
    padding:0 0 30px 0;
    display: block;
  }
  header .flex .logo{
    width: 80%;
  }
  footer .footer_logo .img{
    width: 70%;
  }  
  .info{
    margin: 80px auto 40px auto;
  }
  .info .mail a{
    font-size: 1.8rem;
    width: 80%;
    margin: 30px auto 20px auto;
  }
}