@charset "UTF-8";
/* CSS Document */
/*======bootstrap拡張スタイル======*/
/*緑に白文字ボタン hoverは反転*/
.btn_custom_green{
	color: #fff;
  background-color: #079b70;
  border-color: #079b70;
}
.btn_custom_green:hover{
	color: #079b70;
  background-color: #fff;
  border-color: #079b70;
}

/*白に緑文字ボタン hoverは反転*/
.btn_custom_white{
	color: #079b70;
  background-color: #fff;
  border-color: #079b70;
}
.btn_custom_white:hover{
	color: #fff;
  background-color: #079b70;
  border-color: #079b70;
}

/*カラムのpaddingをなくす*/
.no_gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}

/*背景緑・白文字*/
.bg_custom_green{
    background-color: #079b70;
    color:#fff;
}
/*背景グレー borderなし*/
.bg_custom_gray{
    background-color: #ddd;
    border: none;
}

/*文字緑*/
.text_custom_green,
.text_custom_green:link,
.text_custom_green:hover,
.text_custom_green:active,
.text_custom_green:visited
{
    color:#079b70;
}

/*googlemapレスポンシブ*/
.googlemap{
  position: relative;
  min-height: 200px;
}
.googlemap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*文字詰のルールを設定する*/
html{
  width: 100%;
  overflow-x: hidden;
}
body{
  font-feature-settings: "palt" 1;
  font-family: 'Noto Sans JP',sans-serif;
  color: #333333;
  background: #FCFCFC;
  letter-spacing: 1px;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
/*全体の幅を考える*/
.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 80px;
  padding-left: 80px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.button a{
border: 1px solid #25A3DD;
display: block;
/*border-radius: 150px;*/
text-align: center;
height: 60px;
width: 260px;
color: #25A3DD;
font-weight: bold;
padding: 12px 15px 15px;
font-size: 18px;
margin:0 auto;
transition: 0.5s;
}

.button a:hover{
text-decoration: none;
background-color: #25A3DD;
color: #fff;
}

.button2 a{
border: 1px solid #fcfcfc;
display: block;
/*border-radius: 150px;*/
text-align: center;
height: 60px;
width: 260px;
color: #fcfcfc;
font-weight: bold;
padding: 12px 15px 15px;
font-size: 18px;
margin:0 auto;
transition: 0.5s;
}

.button2 a:hover{
text-decoration: none;
background-color: #fcfcfc;
color: #25A3DD;
}

body{
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  color: #333333;
  font-size: 18px;
  line-height: 2em;
}
header{
  padding-top: 80px;
  width: 100%;
  height: 140px;
  position: fixed;
  z-index: 10000;
}
#main{
  background-position: top left,bottom right -100px;
  background-repeat: no-repeat,no-repeat;
  background-size: 50%,50%;
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
}
#first{
  position: relative;
}
#content_wrap{
  background-position: right top 200px,top center;
  background-repeat: no-repeat,no-repeat;
  background-size: 40%,100%;
}
#content_wrap2{
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 862px;
  padding-top: 650px;
}
/*nav*/
#nav_bar {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
}
#nav_bar > span{
  width: 25px;
  height: 2px;
  display: block;
  background-color: #333333;
  transition: all 300ms 0s ease;
}
#nav_bar > span:nth-child(2){
  margin:6px 0;
}

/*#nav{
  display: none;
  background-color: #fff;
  width: 300px;
  min-height: 100px;
  padding:30px;
  color: #EA4141;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  opacity: 0;
  font-size: 18px;
  top:40px;
  right:20px;
}*/
#nav{
  display: none;
  background-color: #fff;
  width: 300px;
  min-height: 100px;
  padding:30px;
  color: #EA4141;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
/*  opacity: 0;*/
  font-size: 18px;
  top:40px;
  right:20px;
}

#nav ul li a{
  padding: 5px 0;
  display: block;
  text-decoration: none;
  font-size: 16px;
  text-indent: 1em;
  color: #333333;
}
#nav ul li a::before{
  content:'>';
  padding-right: 1em;
}
.show_nav{
  display: block !important;
  opacity: 1 !important;
}


.hoge{
    display: none;
}

.hoge.show{
    display: block;
    animation: show 1s linear 0s;
}

h1,h2,h3,h4,h5,h6{
  font-weight: bolder;
  margin-bottom: 85px;
  line-height: 1.5em;
  color: #333333;
}
h1{font-size: ;}
h2{font-size: 54px;}
h3{font-size: 48px;margin-bottom: 50px;}
h4{font-size: 24px;line-height: 40px; font-weight: bolder;}
h5{font-size: ;}
h6{font-size: ;}

h1>img{width: 100%;}
h2>img{width: 100%;}
h3>img{width: 100%;}
h4>img{width: 100%;}
h5>img{width: 100%;}
h6>img{width: 100%;}
#logo>h1>img{max-width: 122px;}
address>a>img{max-width: 238px;}
strong{
  font-weight: bold;
  color: #25A3DD;
}

#ttl1{
  font-weight: normal;
  font-size: 60px;
  letter-spacing: 5px;
  color: #25A3DD;
}
.ttl{
  font-size: 48px;
  letter-spacing: 5px;
  text-align: center;
}
.ttl2{
  font-size: 36px;
  letter-spacing: 5px;
  text-align: center;
}
.ttl3{
  font-size: 24px;
  letter-spacing: 5px;
  text-align: center;
  color: #fff;
  margin-bottom:1em;
}
.ttl4{
  font-size: 14px;
  letter-spacing: 5px;
  text-align: center;
  color: #fff;
  margin-bottom:1em;
}
.ttl5{
  font-size: 48px;
  letter-spacing: 5px;
  text-align: center;
  color: #fff;
}
.ttl6{
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 0;
}

p{
  font-size: 18px;
  line-height: 2em;
  margin-bottom: 2em;
  
}
#price{
  background-image: url(../images/triangle.png),url(../images/triangle2.png);
  background-position: top left,bottom left;
  background-repeat: repeat-x,repeat-x;
  background-color: #25A3DD;
}
#qa dt{margin-bottom: 1em;}
#qa dd{font-size: 14px;
margin-bottom: 3em;}
.pic img{
  width: 100%;
  height: auto;

}
.ttl_p{
font-size: 28px;
color: #1D1B7C;
line-height: 54px;
font-weight: bold;
}
.dl_style1>dt{
  font-size: 24px;
  font-weight: bolder;
  line-height: 42px;
  padding-bottom: 12px;
}
.dl_style1>dd{
  font-size: 15px;
  line-height: 2em;
}
.dl_style2>dt{
  font-size: 18px;
  font-weight: bolder;
  line-height: 2em;
  padding-bottom: 12px;
}
.dl_style2>dd{
  font-size: 18px;
  line-height: 2em;
  padding-bottom: 1em;
}
ul{
  list-style: none;
  padding:0;
  margin:0;
}
.price_area{
  background-color: #F7F7FD;
}
footer{
 padding-top: 100px;
 background-repeat: no-repeat;
}
#footer_row{
  padding-bottom: 100px;
}
.sp_show{
  display: none;
}

@media (max-width: 768px) {
  .container-fluid {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  }

  body{
  background-image: none;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  }
  header{
    padding-top: 30px;
    width: 100%;
    height: 80px;
    position: fixed;
    background: #fcfcfc;
  }
  #main{
    min-height: calc(100vh - 80px);
    padding-top: 80px;
  }
  #content_wrap{
    background-image: none;
  }
  #content_wrap2{
    background-image: none;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 0px;
  }
  #logo>h1>img{max-width: 61px;}
  #ttl1>img{max-width: 240px;}
  #ttl2>img{max-width: 272px;}
  #ttl3>img{max-width: 263px;}
  #ttl4>img,#ttl5>img{max-width: 190px;}
  #ttl6>img,#ttl7>img{max-width: 155px;}
  #ttl8>img{max-width: 152px;}
  #ttl9>img{max-width: 117px;}
  #ttl10>img{max-width: 132px;}
  #ttl11>img{max-width: 90px;}
  #ttl12>img{max-width: 60px;}
  #ttl13>img{max-width: 140px;}
  #ttl14>img{max-width: 150px;}
  #ttl15>img{max-width: 115px;}
  #ttl16>img{max-width: 80px;}
  #ttl17>img{max-width: 61px;}/*footer_logo*/
  address>img{max-width:160px;}

  p{
    font-size: 14px;
    line-height: 2em;
  }
  .ttl_p{
  font-size: 14px;
  color: #1D1B7C;
  font-weight: bold;
  line-height: 28px;
  }
  .dl_style1>dt{
    font-size: 14px;
    font-weight: bolder;
    line-height: 42px;
    padding-bottom: 12px;
  }
  .dl_style1>dd{
    font-size: 10px;
    line-height: 2em;
  }
  .dl_style2>dt{
    font-size: 14px;
    font-weight: bolder;
    line-height: 2em;
    padding-bottom: 12px;
  }
  .dl_style2>dd{
    font-size: 14px;
    line-height: 2em;
    padding-bottom: 1em;
  }
  .button a{
    border: 1px solid #25A3DD;
    display: block;
   /* border-radius: 150px;*/
    text-align: center;
    height: 40px;
    width: 160px;
    color: #25A3DD;
    font-weight: bold;
    padding:2px 10px 12px;
    font-size: 14px;
    margin:0 auto;
    transition: 0.5s;
    letter-spacing: 1px;
    }
    #nav_bar > span{
      width: 25px;
      height: 1px;
      display: block;
      background-color: #333333;
    }
    #nav_bar > span:nth-child(2){
      margin:6px 0;
    }
    h1{font-size: ;}
    h2{font-size: 54px;}
    h3{font-size: 48px;margin-bottom: 20px;}
    h4{font-size: 18px;line-height: 36px; font-weight: bolder;}
    h5{font-size: ;}
    h6{font-size: ;}

    #footer_row{
      padding-bottom: 100px;
    }

    .sp_show{
      display: inherit;
    }
    .pc_show{
      display: none;
    }

}


.deg1{
  transform: rotate(-45deg) translate3d(0, 0, 0);
  transition: all 300ms 0s ease;
  margin-top: 6px;
}
.deg2{
  transform: rotate(45deg) translate3d(0, 0, 0);
  transition: all 300ms 0s ease;
  margin-top: -2px;
}

@media(max-width: 769px){
  #ttl1{font-size: 28px;}
  .ttl{font-size: 20px;}
  .ttl2{font-size: 20px;}
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 35px;
    letter-spacing:1px!important;
  }
  .ttl3{font-size: 20px;}
  .ttl4{font-size: 12px;letter-spacing:3px!important;}
  .ttl5{font-size: 24px;}
  .ttl6{font-size: 30px;}

  .deg1{
  transform: rotate(-45deg) translate3d(0, 0, 0);
  transition: all 300ms 0s ease;
  margin-top: 6px;
  }
  .deg2{
    transform: rotate(45deg) translate3d(0, 0, 0);
    transition: all 300ms 0s ease;
    margin-top: -1px;
  }
  #nav{
    width: 100vw;
    min-height: calc(100vh - 40px);
    border-radius: 0;
    border-top: 1px solid #f3f3f3;
    top:40px;
    right:-20px;
    box-shadow: none;
  }
}

.fadein_first {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 800ms;
}
.fadein_second {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 1200ms;
}
.fadein_third {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 1600ms;
}

.fadein {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 800ms;
}
.fadein2 {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 1600ms;
}
.fadein3 {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 2400ms;
}
.fadein4 {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 3200ms;
}

.fadein_first.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadein_second.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadein_third.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.fadein2.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.fadein3.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadein4.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.rellax{
  position: absolute;
}
.rellax_left{
  top: 0;
  left:-50px;
}
.rellax_left_bottom{
  bottom: 0;
  left:0;
}
.rellax_left_middle{
  bottom: 0;
  left:0;
}
.rellax_right{
  top: 0;
  right:0;
}
.rellax_right_bottom{
  bottom: -200px;
  right:-200px;
}
.rellax_right_middle{
  right:-500px;
  top:500px;
}


.item1{
  top: 0;
  left:-80px;
}
.item1 img{width: 80%;}

.item2{
  bottom: -200px;
  right:-300px;
}
.item2 img{
  width: 90%;
}

.item3{
  right:-200px;
  top:500px;
}
.item3 img{
  width: 50%;
}

.item4{
  left:100px;
  top:100px;
}
.item4 img{
  width: 50%;
}
.item5{
  top:500px;
  left:-100px;
}
.item5 img{width: 50%;}


.item6{
  top:1000px;
  right:-100px;
}
.item6 img{
  width: 50%;
}

.item7{
  bottom:200px;
  right:-100px;
}


@media(max-width: 769px){
  .item3{
      right:800px;
      top:800px;
  }
  .item3 img{
    width: 50%;
  }
  .item4{
    left:0;
    top:400px;
  }
  .item4 img{
    width: 20%;
  }
  .item5 img{
    width: 30%;
  }
  .item6{
    top:800px;
    right:-250px;
  }
}

#wrapper{
  width: 100%;
  overflow-x: hidden;
}

.qa_box{
  padding :15px 20px;
  border:5px solid #333333;
  font-weight: bold;
  /*background-color: #cccccc;*/
}
.formTable {
  max-width: 600px;
  width: 80%;
  margin:0 auto;
}
.formTable tr{
  padding-bottom: 10px!important;
}
.formTable tr td{
  padding-bottom: 10px;
}

.button3{
  border: 1px solid #ccc;
  background-color: #fcfcfc;
  font-size: 14px;
}