@charset "utf-8";
/* =========================================================
 1.0 - Reset 
========================================================= */
body, div,
dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea,
p, blockquote, th, td,
address, caption {margin: 0;padding: 0;}
table {border-collapse: collapse;border-spacing: 0;}
fieldset, img {border: 0;vertical-align: top;}
address, caption, cite, code, dfn, em, /*strong,*/ th, var {font-style: normal;font-weight: normal;}
ul,ol {list-style: none;}
caption, th {text-align: left;}
h1, h2, h3, h4, h5, h6 {font-size: 100%;font-weight: normal;}
q:before, q:after {content: '';}
abbr, acronym {border: 0;}
hr {display: none;margin: 0;padding: 0;}



/* =========================================================
 2.0 - HTML 
========================================================= */
html {
  font-size: 62.5%;
  }

body{
  position: relative;
  font-family: 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, 'メイリオ', Osaka, 'MS PGothic', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #373636;
  -webkit-text-size-adjust: 100%;
  }

/* IE10-11 */
_:-ms-input-placeholder, :root body{
  font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif !important;
  }

img{
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;/*chrome用*/
  }

table{
  width: 100%;
	}

a{
  color: #588001;
  text-decoration: none;
  }
  
@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
    }
    
  a:hover{
    opacity: .7;
    text-decoration: underline;
    } 
  }



/* =========================================================
 2.1 - Form reset
========================================================= */

/* 	インプット テキスト系
---------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"]{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.7em 1.2em; 
  border: 1px solid #CCC;
  border-radius: 5px;
  box-sizing: border-box;
  color: #000;
  font-family: inherit;
  font-size: 1em;
  background-color: #FFF;
  background-image: none;
  }

/* スピンボタン消去 
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  }
input[type="number"] {
  -moz-appearance:textfield;
  }*/
input[type="number"]{
  padding: 0.4em 0 0.4em 0.8em; 
  }
@media print, screen and (min-width:769px){

  }


/* 	テキストエリア
---------------------------------------------------------- */
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100px;
  padding: 0.6em 1.2em; 
  border: 1px solid #CCC;
  border-radius: 5px;
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  background-color: #FFF;
  background-image: none;
  }
/*textarea::placeholder {
  color: #red;
  }*/
@media print, screen and (min-width:769px){

  }


/* 	placeholder
---------------------------------------------------------- */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {/* Webkit */
color: #c5c5c5;
opacity: 1;
  }
input:-moz-placeholder,
textarea:-moz-placeholder {/* Firefox 18 Before */
color: #c5c5c5;
  }
input::-moz-placeholder,
textarea::-moz-placeholder {/* Firefox 19 After */
color: #c5c5c5;
opacity: 1;
  }
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {/* IE 10 After */
color: #c5c5c5;
  }


/* 	placeholder 非表示
---------------------------------------------------------- */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder { color: transparent; }
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder { color: transparent; }
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder { color: transparent; }
@media print, screen and (min-width:769px){

  }



/* 	インプット ラジオボタン
---------------------------------------------------------- */
.radioBtn,
input[type="radio"] {
  display: none;
  }
.radioBtn + span,
input[type="radio"] + span {
  position: relative;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  cursor: pointer;
  }
.radioBtn + span::before,
input[type="radio"] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  border: 1px solid #CCC;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #FFF;
  }
.radioBtn + span::after,
input[type="radio"] + span::after {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid transparent;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  background: #CCC;
  }
.radioBtn:checked + span::after,
input[type="radio"]:checked + span::after {
  opacity: 1;
  }
@media print, screen and (min-width:769px){

  }


/* 	インプット チェックボックス
---------------------------------------------------------- */
.checkBox,
input[type="checkbox"] {
  display: none;
  }
.checkBox + span,
input[type="checkbox"] + span {
  position: relative;

  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  cursor: pointer;
  }
.checkBox + span::before,
input[type="checkbox"] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  content: "";
  border: 1px solid #CCC;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #FFF;
  }
.checkBox + span::after,
input[type="checkbox"] + span::after {
  position: absolute;
  top: 55%;
  left: 0.15em;
  display: block;
  width: 0.6em;
  height: 0.4em;
  content: "";
  margin-top: -0.2em;
  border-bottom: 2px solid #CCC;
  border-left: 2px solid #CCC;
  opacity: 0;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  }
.checkBox:checked + span::after,
input[type="checkbox"]:checked + span::after {
  opacity: 1;
  }
@media print, screen and (min-width:769px){

  }

/* 	セレクトメニュー
---------------------------------------------------------- */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.4em 0.8em;
  border: 1px solid #CCC;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  background: transparent url(../img/form-css-arrow.png) no-repeat center right 8px/16px 16px;
  background-color: #FFF;
  }
select::-ms-expand {
  display: none;
  }
@media print, screen and (min-width:769px){

  }

/* 	インプット ボタン系
---------------------------------------------------------- */
.submitBtn,
input[type="submit"],
.clearBtn,
input[type="reset"],
.buttonBtn,
input[type="button"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 200px;
  height: 50px;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  background-color: #ccc;
  background-image: none;  
  }
.submitBtn:hover,
.submitBtn:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.clearBtn:hover,
.clearBtn:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
.buttonBtn:hover,
.buttonBtn:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  outline: none;
  background-color: #eaa964;
  }
.submitBtn::-moz-foucus-inner,
input[type="submit"]::-moz-foucus-inner,
.clearBtn::-moz-foucus-inner,
input[type="reset"]::-moz-foucus-inner,
.buttonBtn::-moz-foucus-inner,
input[type="button"]::-moz-foucus-inner {
  border: none;
  padding: 0;
  }
@media print, screen and (min-width:769px){
  .submitBtn,
  input[type="submit"],
  .clearBtn,
  input[type="reset"],
  .buttonBtn,
  input[type="button"] {
    width: 250px;
    height: 60px;
    font-size: 1.6rem;  
    font-weight: normal;
    }
  }

/* 	インプット ボタン（画像）系
---------------------------------------------------------- */
.imgBtn,
input[type="image"] {
  
  }
@media print, screen and (min-width:769px){

  }


/* 	focus まとめ
---------------------------------------------------------- */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #999;
  box-shadow: none;
  outline: none;
  }
@media print, screen and (min-width:768px){

  }




/* =========================================================
 3.0 - Class 
========================================================= */

/* Block
---------------------------------------------------------- */
.cf::after,
.clearfix::after{
  content: "";
  display: block;
  clear: both;
  }

.only_sp{display: block;}
.only_pc{display: none;}
.only_sp_il{display: inline;}
.only_pc_il{display: none;}
@media print, screen and (min-width: 769px) {
  .only_sp{display: none;}
  .only_pc{display: block;}
  .only_sp_il{display: none;}
  .only_pc_il{display: inline;}
  
  .leftBox{
    float: left;
    }
  .rightBox{
    float: right;
    }  
  
  }



/* Margin
---------------------------------------------------------- */
.m0 {margin: 0 !important;} .m05{margin: 5px !important;} .m10{margin: 10px !important;} .m20{margin: 20px !important;} .m30{margin: 30px !important;} .m40{margin: 40px !important;} .m50{margin: 50px !important;}
.mt0{margin-top: 0 !important;} .mt05{margin-top: 5px !important;} .mt10{margin-top: 10px !important;} .mt20{margin-top: 20px;} .mt30{margin-top: 30px !important;} .mt40{margin-top: 40px !important;} .mt50{margin-top: 50px !important;}
.mr0{margin-right: 0 !important;}.mr05{margin-right: 5px !important;}.mr10{margin-right: 10px !important;}.mr20{margin-right: 20px !important;}.mr30{margin-right: 30px !important;}.mr40{margin-right: 40px !important;}.mr50{margin-right: 50px !important;}
.mb0{margin-bottom: 0 !important;} .mb05{margin-bottom: 5px !important;} .mb10{margin-bottom: 10px !important;} .mb20{margin-bottom: 20px !important;} .mb30{margin-bottom: 30px !important;} .mb40{margin-bottom: 40px !important;} .mb50{margin-bottom: 50px !important;} .mb60{margin-bottom: 60px !important;} .mb70{margin-bottom: 70px !important;} .mb80{margin-bottom: 80px !important;} .mb90{margin-bottom: 90px !important;} .mb100{margin-bottom: 100px !important;}
.ml0{margin-left: 0 !important;} .ml05{margin-left: 5px !important;} .ml10{margin-left: 10px !important;} .ml20{margin-left: 20px !important;} .ml30{margin-left: 30px !important;} .ml40{margin-left: 40px !important;} .ml50{margin-left: 50px !important;}


/* Text
---------------------------------------------------------- */
.red{ color: #F00; }

.bold{font-weight: bold !important;}
.txt_center{text-align: center !important;}
.txt_left{text-align: left !important;}
.txt_right{text-align: right !important;}

.txt_min{ font-family: 'Noto Serif JP', '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif; }

.txt_main{ color: #8fc31f; }
.txt_sub{ color: #588001; }

/* Color
---------------------------------------------------------- */
.bg_main{ background-color: #8fc31f; }
.bg_sub{ background-color: #588001; }





/* =========================================================
 4.0 - Template 
========================================================= */
/* transition */
a,
a img{
  -webkit-transition: opacity .3s, background .3s;
  transition: opacity .3s, background .3s;
  }
  
#nav .btn_nav,
#nav .btn_nav span{
  -webkit-transition: all .3s;
  transition: all .3s;
  }
  
#nav nav{
  -webkit-transition: height .3s;
  transition: height .3s;
  }
@media print, screen and (min-width: 769px) {
  #nav nav{
    -webkit-transition: height .4s;
    transition: height .4s;
    }
  }



/* z-index */
#nav .btn_nav{
  z-index: 1002;
  }
  
#nav nav{
  z-index: 1001;
  }
  
#btn_pagetop{
  z-index: 1020;
  }

#btn_pagetop span:after{
  z-index: 1021;
  }
@media print, screen and (min-width: 769px) {
  #nav .topmenu,
  #nav .search{ 
    z-index: 1003;
    }
    
  #nav nav .tel{
    z-index:999;  
    }
  }



/*背後スクロール固定用*/
.scroll-prevent {
  overflow: hidden;
  touch-action: none;
  }
@media print, screen and (min-width: 769px) {}




/*
header
========================================================= */
#header{
  height: 50px;
  box-sizing: border-box;
  background-color: #fff;
  }

#header .innerBox{
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  }

/* logo */
#header .logo,
#header .logo a{
  width: 150px;
  height: 34px;
  }
  
#header .logo{
  padding: 10px 0 0 10px;
  }
  
#header .logo a{
  display: block;
  }

@media print, screen and (min-width: 769px) {
  #header{
    height: 113px;
    }

  #header .innerBox{
    padding: 0 20px;
    }

  #header .logo,
  #header .logo a{
    width: 270px;
    height: 61px;
    }

  #header .logo{
    padding: 27px 0 0 0;
    }
    
  #header .logo a:hover{
    opacity: .7;
    }
  }


/*
btn_nav
========================================================= */
#nav .btn_nav{
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
  }
  
#nav .btn_nav p{
  position: relative;
  width: 50px;
  height: 50px;
  padding-top: 15px;
  box-sizing: border-box;
  cursor: pointer;
  }
  
#nav .btn_nav span{
  display: block;
  width: 30px;
  height: 3px;
  margin: 0 auto 6px auto;
  border-radius: 3px;
  background-color: #8fc31f;
  }
  
#nav .btn_nav span.bar3{
  width: 15px;
  margin: 0 auto 6px 10px;
  }
  
#nav .btn_nav.icon_close{
  background-color: #fff;
  }
  
#nav .btn_nav.icon_close span{
  position: absolute;
  }
  
#nav .btn_nav.icon_close span{
  top: 23px;
  background-color: #8fc31f;
  }
  
#nav .btn_nav.icon_close span.bar1{
  transform: rotate(45deg);
  left: 10px;
  }
  
#nav .btn_nav.icon_close span.bar2{
  top: 23px;left: 0;right: 0;
  width: 0;
  margin: auto;
  }
  
#nav .btn_nav.icon_close span.bar3{
  transform: rotate(-45deg);
  left: 10px;
  width: 30px;
  margin: 0 auto 6px auto;
  }
@media print, screen and (min-width: 769px) {
  #nav .btn_nav{
    top: -50px;
    }
  }




/*
nav
========================================================= */
#nav{
  }
  
/* nav */
#nav nav{
  overflow-y: scroll;
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  height: 0;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  }
  
#nav nav.open{
  padding-bottom: 100px;
  height: 100vh;
  }
@media print, screen and (min-width: 769px) {
  #nav nav{
    overflow: visible;
    position: static;
    width: auto;
    }
  }

/* topmenu */
#nav nav .topmenu {
  width: 100%;
  letter-spacing: -.4em;
  border-top: solid 1px #ccc;
  }
  
#nav nav .topmenu li{
  display: inline-block;
  width: 50%;
  letter-spacing: normal;
  padding-left: 1px;
  box-sizing:border-box;
  }
  
#nav nav .topmenu li.tm1{
  padding-left: 0;
  }
  
#nav nav .topmenu li a{
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  text-decoration:none;
  font-size: 1.4rem;
  color: #fff;
  background-color:#8fc31f;
  }

#nav nav .topmenu li.tm1 span{
  padding-left: 15px;
  background:url(../img/icon_top.png) left center no-repeat;
  background-size: 13px auto;
  }
  
#nav nav .topmenu li.tm2 span{
  padding-left: 15px;
  background:url(../img/icon_access.png) left center no-repeat;
  background-size: 12px auto;
  } 



@media print, screen and (min-width: 769px) {
  #nav nav .topmenu {
    position: absolute;
    top: 0; right: 20px;
    width: auto;
    border-top: 0;
    letter-spacing: -.4em;
    }
    
  #nav nav .topmenu li{
    width: auto;
    vertical-align:top;
    }
    
  #nav nav .topmenu li a{
    width: auto;
    height: 30px;
    padding: 0 20px;
    line-height: 28px;
    font-size: 1.2rem;
    }
    
  #nav nav .topmenu li a:hover{
    opacity:.7
    }
  }


/* sec */
#nav nav .sec {
  padding: 0;
  }
  
#nav nav .sec > li{
  }
  
#nav nav .sec > li > a{
  display: block;
  padding: 20px;
  border-bottom: solid 1px #ccc;
  text-decoration: none;
  text-align:left;
  font-weight: bold;
  font-size: 1.4rem;
  color: #333;
  background:url(../img/icon_ar_nav.png) right 10px center no-repeat;
  background-size: 9px auto;
  }
  
@media print, screen and (min-width: 769px) { 
  #nav nav .sec {
    position: absolute;
    top: 60px;
    right: 20px;
    max-width: auto;
    margin: 0 auto;
    padding: 0;
    letter-spacing: -.4em;
    }
    
  #nav nav .sec > li{
    display: inline-block;
    width: auto;
    letter-spacing: normal;
    }

  #nav nav .sec > li.gn5{
    display: none;
    }

  #nav nav .sec > li > a{
    display: block;
    margin: 0 0 0 17px;
    padding: 0;
    border-bottom: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif; 
    color: #373636;
    background: none;
    }

  #nav nav .sec > li > a:before{
    display: inline-block;
    content:'';
    width: 1px;
    height: 10px; 
    margin-right: 16px;
    vertical-align: middle;
    background-color: #ccc;
    }

  #nav nav .sec > li:first-child > a:before{
    display: none;
    }
  
  #nav nav .sec > li > a:hover{
    opacity: 1;
    } 
  
  /**/
  #nav nav .sec > li > a span{
    position: relative;
    }
    
  #nav nav .sec > li > a.current span:after,
  #nav nav .sec > li > a span:after{
    position: absolute;
    bottom: -8px; left: 0;
    display: inline;
    content: '';
    width: 0%;
    margin: auto;
    border-bottom: solid 2px #8fc31f;
    -webkit-transition: width .3s;
    transition: width .3s;
    }

  #nav nav .sec > li > a.current span:after,
  #nav nav .sec > li > a:hover span:after,
  #nav nav .sec > li > a.on span:after{
    width: 100%;
    }

  }


/* search */
#nav nav .search{
  padding: 5px 10px;
  }
  
#nav nav .search input{
  width: 100%;
  height: 30px;
  padding: 5px;
  border-radius: 0;
  border: solid 1px #ddd;
  /*font-size:16px !important;*/
  } 

/* tel */
#nav nav .tel{
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  color :#fff;
  background-color: rgba(153,195,31,1);
  }  

#nav nav .tel dt{
  margin-bottom: 5px;
  font-size: 1.3rem;
  }

#nav nav .tel .number{
  padding-left: 38px;
  line-height:1.2;
  font-size: 3.4rem;
  font-weight: bold;
  color :#fff;
  background:url(../img/icon_phone_w.png) left center no-repeat;
  background-size: 28px auto;
  }  

#nav nav .tel .txt{
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  } 

@media print, screen and (min-width: 769px) {    
  #nav nav .search{
    position: absolute;
    top: 3px; right: 285px;
    width: 320px;
    padding: 0;
    margin: auto;
    }

  #nav nav .search div.gsc-control-cse {
    padding: 0 !important;
    }
  #nav nav .search div.gsc-control-wrapper-cse {
    }
  #nav nav .search form.gsc-search-box{
    }
  #nav nav .search table.gsc-search-box{
    }
  #nav nav .search table.gsc-search-box td.gsc-input{
    }
  #nav nav .search table.gsc-search-box td.gsc-input div.gsc-input-box{
    /*border: solid 1px #f30 !important;*/
    }
    
    
  #nav nav .search table#gs_id50{
    }

  #nav nav .search table#gs_id50 td#gs_tti50{
    margin: 0 !important;
    padding: 0 !important;
    text-align:left;
    } 
    
  #nav nav .search input#gsc-i-id1{
    width: 200px !important;
    height: 25px !important;
    margin: 0 !important;
    padding: 0 5px !important;
    font-size:13px !important;
    /*background-color:#000 !important;*/
    }
  /*#nav nav .search input#gsc-i-id1:focus{
    height: 25px !important;
    margin: 0 !important;
    padding: 0 5px !important;
    background-color:#666 !important;
    }*/      
    
  #nav nav .search table#gs_id50,
  #nav nav .search table#gs_id50 td.gsib_b,
  #nav nav .search table#gs_id50 td.gsib_b div.gsst_b,
  #nav nav .search table#gs_id50 td.gsib_b div.gsst_b a.gsst_a{
    height: 23px !important;
    }
  #nav nav .search table#gs_id50 td.gsib_b div.gsst_b a.gsst_a span.gscb_a{
    height: 23px !important;
    font-size: 23px !important;

    }  
    
    
    
    
    

    
  #nav nav .tel{
    position: absolute;
    top: 113px;
    right: 20px;
    padding: 15px 20px;
    background-color: rgba(153,195,31,.6);
    cursor: auto;
    pointer-events: none;
    }  
    
  #nav nav .tel dt{
    margin-bottom: 3px;
    font-size: 1.1rem;
    }
   
  #nav nav .tel .txt{
    margin-top: 5px;
    padding-right: 7px;
    text-align: right;
    font-size: 1.1rem;
    }
  }






/*
footer
========================================================= */
#footer{
  width: 100%;
  box-sizing: border-box;
  }

#footer .innerBox100{
  }

#footer .innerBox100.bgimg{
  padding: 30px;
  background-image: url(../img/footer_bg_sp.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  }
  
#footer .innerBox100.bg{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  background-color: #f2ffd7;
  }

#footer .innerBox100 .inner1040{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0;
  }
  
@media print, screen and (min-width: 769px) {
  #footer{
    }
    
  #footer .innerBox100{
    }
    
  #footer .innerBox100.bgimg{
    padding: 86px 0;
    background-image: url(../img/footer_bg_pc.jpg);
    }
    
  #footer .innerBox100.bg{
    }
  
  #footer .innerBox100 .inner1040{
    position: relative;
    padding: 60px 20px 40px;
    box-sizing: border-box;
    }
  }





/* telBox */
#footer .telBox{
  width: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  box-sizing:border-box;
  background-color: #fff;
  }

#footer .telBox .telBox1,
#footer .telBox .telBox2{
  text-align:center
  }

#footer .telBox .telBox1 .ttl{
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
  }

#footer .telBox .telBox1 .txt{
  margin-bottom: 20px;
  font-size: 1.4rem;
  }

#footer .telBox .telBox2 .number{
  font-size: 3rem;/*3.8rem*/
  font-weight: bold;
  }
  
#footer .telBox .telBox2 .number a{
  padding-left: 30px;
  text-decoration:none;
  color: #333;
  background:url(../img/icon_phone.png) left center no-repeat;
  background-size: 22px auto;
  }
  
#footer .telBox .telBox2 .txt{
  margin-bottom: 25px;
  font-size: 1.2rem;
  }
  
@media print, screen and (min-width: 769px) {
  #footer .telBox{
    display: table;
    width: 655px;
    padding: 40px 0 45px;
    }
  
  #footer .telBox .telBox1,
  #footer .telBox .telBox2{
    display: table-cell;
    /*padding-top: 40px;
    padding-bottom: 45px;*/
    box-sizing:border-box;
    }
    
  #footer .telBox .telBox1{
    width: auto;
    padding-left: 50px;
    text-align: left;
    }

  #footer .telBox .telBox1 .ttl{
    margin-bottom: 10px;
    font-size: 2.8rem;
    }
  #footer .telBox .telBox1 .txt{
    }
  
  #footer .telBox .telBox2{
    width: auto;
    padding-right: 50px;
    text-align:right;
    }
  
  #footer .telBox .telBox2 .number a{
    cursor: auto;
    pointer-events: none;
    }

  #footer .telBox .telBox2 .txt{
    margin-bottom: 15px;
    font-size: 1.1rem;
    }


  #footer .telBox .telBox2 .btn_line,
  #footer .telBox .telBox2 .btn_line a{
    width: 140px !important;
    margin: 0 0 0 auto;
    }   
     
  #footer .telBox .telBox2 .btn_line{
    margin: 0 0 0 auto;
    }
    
  #footer .telBox .telBox2 .btn_line a{
    padding: 8px 0 !important;
    }
    
  }

 
   
/* leftBox_pc */
#footer .leftBox_pc{
  }

#footer .leftBox_pc .logo,
#footer .leftBox_pc .logo a{
  width: 215px;
  height: 48px;
  }
#footer .leftBox_pc .logo{
  margin: 0 auto 15px;
  }

#footer .leftBox_pc .logo a{
  }

#footer .leftBox_pc .address{
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.2rem;
  }

#footer .leftBox_pc .btn_line{
  margin: 0 auto 25px;
  }

/* googlemap */
#footer .googlemap{
  display: none;
  }

/* bnr */
#footer .bnr{
  width: 186px;
  height: 45px;
  margin: 0 auto 20px;
  }

/* copy */
#footer .copy{
  line-height: 2.2;
  text-align: center;
  font-size: .9rem;
  }
  
@media print, screen and (min-width: 769px) {
  #footer .leftBox_pc{
    }
  
  #footer .leftBox_pc .logo,
  #footer .leftBox_pc .logo a{
    width: 224px;
    height: 50px;
    }
     
  #footer .leftBox_pc .logo{
    margin: 0 0 15px 0;
    }
  
  #footer .leftBox_pc .logo a{
    display: block;
    }
  
  #footer .leftBox_pc .address{
    text-align: left;
    }
  
  #footer .leftBox_pc .btn_line{
    margin: 0 0 60px 0;
    }


  /* googlemap */
  #footer .googlemap{
    display: block;
    position: absolute;
    top: 60px; left: 295px;
    width: 276px;
    height: 188px;
    background-color: #000;  
    }

  #footer .googlemap iframe{
    border: 0;
    }

  /* bnr */
  #footer .bnr{
    position: absolute;
    top: 60px; right: 20px;
    width: 257px;
    height: 62px;
    margin: 0;
    background-color: #fff;
    }
    
  #footer .bnr a:hover img{
    opacity: .7;
    }
    
  /* copy */
  #footer .copy{
    line-height: 1.2;
    text-align: right;
    font-size: 1.1rem;
    color: #000;
    } 
  }





/*
btn_pagetop
========================================================= */
#btn_pagetop{
  position: fixed;
  right: 20px;
  bottom: -100px;
  -webkit-transition: all .4s;
	transition: all .4s;
  }

#btn_pagetop.on{
  bottom: 20px;
  }

#btn_pagetop span{
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius:60px;
  box-sizing: border-box;
  text-indent: -9999px;
  cursor: pointer;
  background-color: #000;
  }

#btn_pagetop span:after{
  display: block;
  position: absolute;
  top: 5px; bottom: 0; left: 0; right: 0;
  content: '';
  width: 11px;
  height: 11px;
  margin: auto;
  text-indent: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transition: rotate(-45deg);
  transform: rotate(-45deg);
  pointer-events: none;
  }

@media print, screen and (min-width: 768px) {
  #btn_pagetop span{
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    }
  }










































/* =========================================================
 5.0 - Contents 
========================================================= */


/*
共通
========================================================= */
#contents{
  width: 100%;
  box-sizing: border-box;
  }

@media print, screen and (min-width: 769px) {
  #contents{

    }
  }

/* conBox */
.conBox{
  width: 100%;
  margin: 0 auto 100px;
  padding: 50px 0;
  box-sizing: border-box;
  }

.conBox .innerBox{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  }

.conBox .innerBox100{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  }

.conBox .innerBox100 .inner1040{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  }

@media print, screen and (min-width: 769px) {
  .conBox{
    margin: 0 auto 50px;
    padding: 100px 0;
    }

  .conBox .innerBox{
    padding: 0 20px;
    }
    
  .conBox .innerBox100{
    }
    
  .conBox .innerBox100 .inner1040{
    padding: 0 20px;
    } 
  }


/*  */
.conBox h1,
.conBox h2{
  margin-bottom: 15px;
  font-size: 2.2rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 600;
  font-family: 'Noto Serif JP', '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
  }

@media print, screen and (min-width: 769px) {
  .conBox h1,
  .conBox h2{
    margin-bottom: 50px;
    font-size: 3.6rem;
    }
  }


/*  */
#mainttl .innerBox100,
#mainttl .ttl{
  height: 100px;
  }

#mainttl .innerBox100{
  margin-bottom: 5px;
  background-image: url(../../img/mainttl_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f2ffd7;
  }

#news #mainttl .innerBox100{
  background-image: url(../../img/mainttl_bg_news.jpg);
  }

#facility #mainttl .innerBox100,
#greeting #mainttl .innerBox100{
  background-image: url(../../img/mainttl_bg_facility.jpg);
  }

#procedure #mainttl .innerBox100{
  background-image: url(../../img/mainttl_bg_procedure.jpg);
  } 

#fee #mainttl .innerBox100{
  background-image: url(../../img/mainttl_bg_fee.jpg);
  }

#faq #mainttl .innerBox100{
  background-image: url(../../img/mainttl_bg_faq.jpg);
  }

#access #mainttl .innerBox100{
  background-image: url(../../img/mainttl_bg_access.jpg);
  }

#mainttl .ttl{
  width: 100%;
  max-width:1080px;
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing:border-box;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Noto Serif JP', '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
  color: #fff;
  }
  
#mainttl .ttl span{
  display: table-cell;
  width: 100%;
  vertical-align:middle;
  }
@media print, screen and (min-width: 769px) {
  #mainttl .innerBox100,
  #mainttl .ttl{
    height: 200px;
    }
   
  #mainttl .innerBox100{
    margin-bottom: 10px;
    }
    
  #mainttl .ttl{
    padding: 0 20px;
    text-align: left;
    font-size: 3.8rem;
    
    }
  }

/*  */
#mainttl .innerBox{
  max-width:1080px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing:border-box;
  }


#mainttl .breadcrumbs{
  letter-spacing: -.4em;
  }

#mainttl .breadcrumbs li{
  display: inline;
  font-size: .9rem;
  vertical-align: middle;
  letter-spacing: normal;
  }

#mainttl .breadcrumbs li:after{
  display: inline;
  content: '>';
  margin: 0 7px;
  vertical-align: middle;
  }
  
#mainttl .breadcrumbs li.current:after{
  display: none;
  }
  
#mainttl .breadcrumbs li a{
  vertical-align: middle;
  }

#mainttl .breadcrumbs li.home{

  }

#mainttl .breadcrumbs li.current{

  }

@media print, screen and (min-width: 769px) {
  #mainttl .innerBox{
    padding: 0 20px;
    }
  
  
  
  #mainttl .breadcrumbs li{
    font-size: 1.1rem;
    }
  }




/* txtLink */
.txtLink,
.txtLink a{
  width: 300px;
  }

.txtLink{
  margin: 0 auto;
  }

.txtLink a{
  display: block;
  padding: 14px 0;
  text-align:center;
  font-weight: 1.6rem;
  line-height:1.2;
  text-decoration: none;
  color: #588001;
  background-color: #eee;
  }
@media print, screen and (min-width: 769px) {
  .txtLink a{
    padding: 21px 0;
    font-weight: 1.8rem;
    }
  }


/* btn_col2 */
.btn_col2 li:first-child{
  margin-bottom: 20px;
  }
@media print, screen and (min-width: 769px) {
  .btn_col2{
    width: auto;
    margin: 0 auto;
    text-align:center;
    letter-spacing: -.4em;
    }
    
  .btn_col2 li{
    display: inline-block;
    padding: 0 30px;
    letter-spacing: normal;
    }
    
  .btn_col2 li:first-child{
    margin-bottom: 0;
    }
  }
  

/* btn */
.btn,
.btn a{
  width: 300px;
  }

.btn{
  margin: 0 auto;
  }

.btn a{
  display: block;
  border-radius: 4px;
  padding: 14px 0;
  text-align:center;
  font-weight: 1.6rem;
  line-height:1.2;
  font-weight: normal;
  text-decoration: none;
  color: #fff;
  background-color: #8fc31f;
  }
  
.btn a span{
  padding-right: 14px;
  background: url(../img/icon_ar_btn.png) right center no-repeat;
  background-size: 8px auto;
  }
  
@media print, screen and (min-width: 769px) {
  .btn a{
    padding: 21px 0;
    font-weight: 1.8rem;
    }

  .btn a span{
    padding-right: 14px;
    background-size: 10px auto;
    }

  .btn.size_s,
  .btn.size_s a{
    width: 180px;
    }
    
  .btn.size_s a{
    padding: 16px 0;
    }
  }


/* btn_line */
.btn_line,
.btn_line a{
  width: 140px;
  }
  
.btn_line{
  margin: 0 auto;
  }

.btn_line a{
  display: block;
  padding: 12px 0;
  border: solid 1px #8fc31f;
  box-sizing:border-box;
  text-align:center;
  font-size: 1.6rem;
  line-height:1.2;
  font-weight: bold;
  text-decoration: none;
  color: #8fc31f;
  }

.btn_line.size_s a{
  padding: 5px 0;
  font-size: 1.5rem;
  }

@media print, screen and (min-width: 769px) {
  .btn_line,
  .btn_line a{
    width: 180px;
    }

  /*.btn_line{
    overflow:hidden;
    position: relative;
    }
    
  .btn_line:after{
    position: absolute;
    z-index: 0;
    top: 0;left: 0;
    display: block;
    content: '';
    width: 0%;
    height: 100px;
    background-color: rgba(153,195,31,1);
    -webkit-transition: width .2s;
    transition: width .2s;
    }
    
  .btn_line:hover:after{
    width: 100%;
    }*/

  .btn_line a{
    position:relative;
    z-index: 1;
    padding: 15px 0;
    }
    
  .btn_line a:hover{
    color: #fff;
    background-color: #8fc31f;
    }

  .btn_line.size_s,
  .btn_line.size_s a{
    width: 140px;
    }
    
  .btn_line.size_s a{
    padding: 8px 0;
    font-size: 1.6rem;

    }
  }




/* telephoneBox */
.telephoneBox{
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 30px 10px;
  border: solid 5px #e0e0e0;
  box-sizing:border-box;
  text-align: center;
  }

.telephoneBox .txt1{
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  }
  
.telephoneBox .number{
  margin-bottom: 10px;
  }
  
.telephoneBox .number a{
  padding-left: 40px;
  line-height: 1.2;
  font-size: 3.6rem;
  font-weight: bold;
  color: #8fc31f;
  background:url(../img/icon_phone_g.png) left center no-repeat;
  background-size: 30px auto;
  }
  
.telephoneBox .txt2{
  font-size: 1.4rem;
  }

@media print, screen and (min-width: 769px) {
  .telephoneBox .txt1{
    margin-bottom: 15px;
    font-size: 2rem;
    }
    
  .telephoneBox .number a{
    pointer-events: none;
    }
    
  .telephoneBox .txt2{
    font-size: 1.6rem;
    }
  }



/*
========================================================= */
@media print, screen and (min-width: 769px) {}