/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

		メインサイト基本

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@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:#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;
}

.w900{
	width: 900px;
	margin-left: auto;
	margin-right: auto;
}

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


@media screen and (max-width: 1220px){
	.w1200{
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media screen and (max-width: 920px){
	.w900{
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}
}

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: #00005d;
  border: 1px solid #00005d;
  padding:5px 30px;
}

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

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

p.title{
  font-weight: bold;
}



/****************************************************************************************************************************
    ヘッダー
****************************************************************************************************************************/
.current-menu-item{
  background-color: #00005d;
  border:1px solid #00005d;
  border-radius: 5px;
}
header .header_right nav ul li.current-menu-item a{
  color: #fff;
}
header .header_right nav ul li.current-menu-item a:hover{
  background-color: #fff;
  color: #00005d;
  border-radius: 5px;
}

header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.3);
  position: fixed;
  top:0;
  left: 0;
  z-index: 1000;
}

header .flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 160px;
}

header .logo{
  width: 278px;
  margin: 40px 50px;
  -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

header .logo h1{
  display: block;
}

header .logo h1 a{
  display: block;
}

header .logo h1 a img{
  display: block;
  line-height: 1em;
}

header .header_right{
}

header .header_right .nav_top{
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  position: relative;
  top:0px;
  -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

header .header_right .nav_top .owner{
  margin-right: 30px;
}

header .header_right .nav_top .owner a{
  display: block;
  color: #00008d;
  border: 1px solid #00008d;
  border-radius: 10px;
  padding:5px 20px;
}

header .header_right .nav_top .tel{
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.2;
}
header .header_right .nav_top .tel:before{
  content:'\f095';  
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding-right: 10px;
}

header .header_right .nav_top .tel span{
  display: block;
  font-size: 1.4rem;
}

header .header_right nav{
  padding:10px 30px 0 0;
}

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

header .header_right nav ul li a{
  display: block;
  font-size: 1.6rem;
  padding: 0 10px;
  position: relative;
  color: #333;
  text-align: center;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

header .header_right nav ul li a span{
  display: block;
  font-size: 1.4rem;
  line-height: 1.2;
}

header .icon_link{
  display: none;
  position: absolute;
  top: 0;
  left: auto;
  right:50px;
  bottom:0;
  margin: auto;
  z-index: 1;
}

header .icon_link a{
  display: inline-block;
  font-size: 2.1rem;
  padding: 0 5px;
  margin-left: 7px;
  color: #333;
}

header .icon_link a.mail{
  font-size: 2.5rem;
}

.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;
  -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.trigger p{
  display: block;
  content: '';
  width: 22px;
  height: 2px;
  background-color: #333;
  -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: #333;
    width: 22px;
    height: 2px;
}

.trigger:before{
  display: block;
  content: '';
  width: 22px;
  height: 2px;
  background-color: #333;
  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: #333;
  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;
}

/* スクロール時 */
header.scl_on .logo{
  width: 130px;
  margin: 40px 10px;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

header.scl_on .flex{
  height: 60px;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

header.scl_on .header_right .nav_top{
  position: relative;
  top:-100px;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
  opacity: 0;
}

header.scl_on .header_right nav{
  margin-top: -65px;
  padding-right: 50px;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

header.scl_on .header_right nav ul li a{
  line-height: 1.1em;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

header.scl_on .trigger{
  top: 20px;
  right:15px;
  -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: 1100px){
  header .flex{
    height: 100px;
  }
  header .logo{
    width: 220px;
    margin: 30px 20px;
  }
  header .header_right .nav_top{
    display: none;
  }
  header .header_right nav{
    padding: 0px 50px 0 0;
  }
  header .header_right nav ul li a{
    font-size: 1.7rem;
    padding: 0 5px;
  }
  header .header_right nav ul li a span{
    font-size: 1.3rem;
  }
  /* スクロール時 */
  header.scl_on .header_right nav{
    margin-top: 0px;
    padding: 0px 50px 0 0;
  }
  header.scl_on .header_right nav ul li a span{
    display: none;
  }
}

@media screen and (max-width: 920px){
  header .flex{
    height: 70px;
  }
  header .logo{
    width: 180px;
    margin: 10px 10px;
  }
  header .header_right nav{
    display: none;
  }
  header .icon_link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .trigger{
    top: 25px;
    right: 15px;
  }
}


/****************************************************************************************************************************
  フッター
****************************************************************************************************************************/

/****************************************************************************************************************************
  フッター
****************************************************************************************************************************/
footer{
  padding: 50px 0;
  background-color: #282828;
  color: #fff;
}

footer .footer_infomation{
  text-align: center;
}
footer .footer_infomation h2{
}
footer .footer_infomation h2+p{
  margin-bottom: 20px;
}
footer .footer_infomation .footer_tel{
  margin: 30px 0 80px 0;
}
footer .footer_infomation .footer_tel span{
  font-size: 1.4rem;
}
footer .footer_infomation .btn a{
  background-color: #282828;
  border: 1px solid #fff;
}
footer .footer_infomation .btn a:hover{
  background-color: #fff;
  border: 1px solid #282828;
  color: #282828;
}
footer nav ul{
  border-top: 1px solid #fff;
  padding: 50px 0;
  display: flex;
  margin: 30px 0 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}
footer nav ul li{
  padding: 0 15px;
}
footer nav ul li a{
  color: #fff;
}
footer .copyright{
  font-size: 1.2rem;
  margin-top: 20px;
}

footer .adress .company_name{
  font-size: 1.8rem;
  margin-bottom: 10px;
}
footer .adress .flex .text{
  width: 30%;
}
footer .adress .flex{
  display: flex;
}

footer a.ttl{
  color: #fff;
}
footer a.ttl:hover{
  color: #666;
}

footer a.ttl{
  background: none;
  color: #fff;
  border: 1px solid #fff;
  display: inline-block;
  line-height: 1.5;
  text-align: center;
  padding: 10px 20px; 
  margin-bottom: 20px;

}
footer a.ttl h2{
  font-size: 2.2rem;
}
footer a.ttl span{
  font-size: 1.6rem;
  display: block;
}

footer a.ttl:hover{
  background: #fff;
  color: #282828;
}


footer a.ttl h2{
  margin: 0;
}

@media screen and (max-width: 500px){
  footer nav ul li{
    width: 100%;
    text-align: center;
  }
  footer .adress .flex .text{
    width: 100%;
  }
  footer .adress .flex .img{
    width: 100%;
  }  
  footer .adress .flex .img img{
    display: block;
    margin: 10px auto;
  }
  footer .adress .flex{
    display: flex;
    flex-wrap: wrap;
  }

}




/****************************************************************************************************************************
    サイドナビ
****************************************************************************************************************************/
/* サイドナビはsite_all.cssに移動 */



/****************************************************************************************************************************
    スライダー
****************************************************************************************************************************/
.mv{
  position: relative;
  top: 160px;
}

.mv ul.slider{
  position: relative;
  width: 100%;
  height:100%;
}

.mv .mv_copy{
  position: absolute;
  top: 50px;
  left: 50px;
  color: #fff;
  font-size: 1.8rem;
}

.mv .mv_copy h1{
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.mv ul.slider li{
  width: 100%;
  height:40vw;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slider.sp{
  display: none;
}

@media screen and (max-width: 1100px){
  .mv{
    top: 100px;
  }

}
@media screen and (max-width: 920px){
  .mv{
    top: 70px;
  }
}

@media screen and (max-width: 800px){
  .mv .mv_copy h1{
    font-size: 1.8rem;
  }
  .mv .mv_copy{
    font-size: 1.4rem;
    bottom: 20px;
    left: 20px;
    top: auto;
  }

}

@media screen and (max-width: 700px){
  .slider.pc{
    display: none;
  }
  .slider.sp{
    display: block;
  }
  .mv ul.slider li{
    height:75vw;
  }
}


/****************************************************************************************************************************
  ボタン
****************************************************************************************************************************/
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;
}
