@charset "utf-8";
/*  style　[  共通 ]
=================================================================== */
body{
  background: #fff;
}



.box-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
  border-top: 15px solid #8cc45f;
}
.box-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  -webkit-box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
  box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
}
/* 1200px～____________________________________________________ */
@media screen and (min-width: 1200px) {
  .box-wrap {
  background: url(../images/back-p-4.png) repeat-y center center;
  background-attachment: fixed;
  }
}
/* ～1119px ____________________________________________________ */
@media screen and (max-width: 1199px) {
/*背景画像を擬似要素で固定*/
.contents::before {
  background: url(../images/back-p-4.png)  repeat-y center;/* 擬似要素に背景画像 */
  /*background-size: cover; cover指定 */
  content: "";/* 画像を表示させる為に必要*/
  display: block;/*ブロックボックスで表示*/
  position: fixed;/* 擬似要素全体を固定 */
  width: 100%;/* 横幅を画面全体 */
  height: 100vh;/* 縦幅を画面全体 */
  top: 0;/* 上からの配置を0 */
  left: 0;/* 左からの配置を0 */
  z-index: -1;/*背景画像になるように重ね順を-1*/
}
}

/* block 空白スペース */
.block-spacer {
  display: block;
  height: 25px;
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: none;
}

/*----------------------------------------------
   header
---------------------------------------------*/

header {
 background: url(../images/01.jpg) no-repeat center center;
  background-size: cover;
  min-height: 250px;
   position: relative;
}


#areaHeader {
  background-color: rgba(255,255,255,0.5);
  /*background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.7) 55%, rgba(255,255,255,0.2) 55%, rgba(255,255,255,0.2) 100%); */
  height: 125px;
  width: 100%; 
}

.flex-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.header-box {
  justify-content: space-between;
  
}
.item01 {
    width: 40%;

  }
  .item02 {
    width: 50%;

  }

h1 {
  padding: 0 0 0 10px;
}
h1 img {
    width: auto;
    vertical-align: middle;
   height: 65px;
   margin: 0 0 0 5px;
  filter: drop-shadow(1px 1px 1px #aaa);
}
h1 small {
  display: block;
  font-size: 15px!important;
  line-height: 1.2;
  font-weight: 600;
  color: #333;
  margin: 5px 0 0 15px;
}
@media screen and (min-width:768px) and ( max-width:991px) {
  /*　画面サイズが768pxから991pxまではここを読み込む　*/
h1 img {
  height: 65px;
  margin: 0 0 0 5px;
}
}




.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  justify-content: flex-end;
}

.bg-phone {
  background-color:#3ec755;
  display: inline-block;
  padding: 5px 15px 10px 15px;
  margin: 2px;
  height: 110px;
}

.phone {
  font-size: 0.9em;
  font-weight: 400;
  text-align: center;
}
.phone strong {
  font-size: 1.7em;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  margin-top: 2px;
}
/* 768px～991px ____________________________________________________ */
@media screen and (min-width:768px) and ( max-width:991px) {
  .phone {
  font-size: 0.85em;
}
}

.line {
  text-align: center;
  font-size: 0.9em;
  line-height: 1.3;
}
.bg-line {
  background-color:#3ec755;
  display: inline-block;
  padding: 5px 10px 5px 10px;
  margin: 2px;
  height: 110px;
}
.line img {
  margin: 5px auto 0 auto;
}
.img-line {
  width: 60px;
}
/* 768px～991px ____________________________________________________ */
@media screen and (min-width:768px) and ( max-width:991px) {
  .line {
  font-size: 0.7em;
}
}

/*----------------------------------------------
   nav
---------------------------------------------*/
/*.inner {
  position: absolute;
  bottom: 0;
  width: 100%;
}*/

.bg-w {
  background-color: #fff;
}
nav {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
nav ul {
  margin: 0 auto;
  list-style: none;
  width: 90%;
  border: #ccc 1px solid;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 1px 1px 2px #ccc;
  font-size: 1.1em;
}
nav ul li {
  width: 16.6%;
  text-align: center;
  border-right: #ccc 1px solid;
}
nav ul li:last-child {
  border-right: none;
}
nav ul li img {
  width: 40%;
}
nav ul li a {
  display: block;
  padding: 30px 0;
  color: #3463ba!important;
}
nav ul li a:hover {
  color: #ea1b8b!important;
}
nav ul li a:hover img {
  opacity: 0.8;
}

nav ul li span {
  display: block;
  padding-top: 1em;
}
nav ul li span.nospace {
  padding-top: 0;
}

/*----------------------------------------------
   section
---------------------------------------------*/
section {
  padding: 2em 0;
  background-color: #fff;
}
.shadow-box {
  -webkit-box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.2);
}


.main {
  width: 90%;
  margin: 0 auto;
}


/*----------------------------------------------
   見出し
---------------------------------------------*/
/* h2 */
h2.line_h2 {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  /*width: 40%;*/
  margin: 2em auto;
}

h2.line_h2:before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 0.9em;
  background: url(../images/bg-left.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 10px 0 0;
  background-position: right;
}

h2.line_h2:after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 0.9em;
  background: url(../images/bg-right.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 0 0 10px;
}

h2.mincho_h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  position: relative;
  padding: 0 0 5px 25px;
}
/*
h2.mincho_h2:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px rgb(234,27,139);
}
h2.mincho_h2:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 3px rgb(234,27,139);
}
*/

h3 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  /*color: #494949;文字色*/
  background: transparent;/*背景透明に*/
  /*border-left: solid 5px rgba(225,19,69,0.8);左線*/
  border-left: solid 5px rgba( 246,102,154, 1 );/*左線*/
  font-size: 1.2em;
  margin: 2em 0 1em 0;
  font-weight: 600;
}
h3.no-line {
  border-left: none;/*左線*/
}

h4 {
  margin: 1em 0;
  font-weight: 600;
}
h4:before {
  content: "●";
  padding: 0 5px 0 0;
  font-size: 0.7em;
  /*color: #008697;*/
  color: #33a2ff;
}




/*----------------------------------------------
   footer
---------------------------------------------*/
footer {
  background-color: #6E9B4A;
  padding: 30px 0 15px 0;
  color: #fff;
  margin: -7px 0 0;
}

.footer-line {
  border-bottom: #fff 1px solid;
  font-size: 1.2em;
  padding: 0 0 5px 10px;
}
/*---- footer 左カラム-------------*/
/*  */
div.add-box {
  margin: 5px 0 0 10px;
}
address {
  font-size: 1.2em;
  line-height: 1.2;
  }
span.kamoku {
  display: inline-block;
  text-align: center;
  font-weight: normal;
  font-size: 0.8em;
  padding-left: 4em;
}
@media screen and (min-width:994px) and ( max-width:1199px) {
    /*　画面サイズが994pxから1199pxまではここを読み込む　*/
address {
  /*font-size: 0.8em;*/
}
   div.add-box {
 width: 90%;
}
}
@media screen and (min-width:768px) and ( max-width:993px) {
    /*　画面サイズが768pxから993pxまではここを読み込む　*/
address {
  font-size: 0.9em;
  }
  div.add-box {
 width: 100%;
}
}




.copyright {
  font-size: 0.8em;
  text-align: center;
  padding-top: 30px;
  color: #fff;
}


/* 768px(sm)～ ____________________________________________________ */
@media print,screen and (min-width: 768px) {
}
/* 992px(md)～ ____________________________________________________ */
@media screen and (min-width: 992px) {
}
/* 1200px(lg)～ ___________________________________________________ */
@media screen and (min-width: 1200px) {
}
