body {
    font-family: "Meiryo, Lucida Grande", "segoe UI", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

hr {
  margin-top: 20px;
  border-top: 1px solid #dcdddd;
}

ul {
  list-style-type: none;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.clear {
  clear: both;
}

a,
a:link,
a:active,
a:visited {
  color: #ed6c00;
  outline: none;
  border: none;
  text-decoration: underline;
}

a:hover {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

p {
  color: #3e3a39;
  font-size: 17px;
  line-height: 32px;
  letter-spacing: 2px;
}

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

a.btn {
  display: block;
  width: 350px;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-right: auto;
  margin-left: auto;
  padding: 15px 5px 15px 5px;
  background: url("../img/common/arrow-right-white.svg") no-repeat;
  background-size: 8px 8px;
  background-position: 20px 23px;
  background-color: #0099d9;
  text-decoration: none;
  border-radius: 5px;
  clear: both;
}


@media screen and (max-width: 600px) {
  a.btn {
    width: 90%;
  }
  
}

/*	header
________________________________________*/

header {
  position: relative;
  padding: 0px 20px 0px 20px;
  z-index: 2;
}

header .top {
  display: flex;
  justify-content: space-between; /* 左と右を端に配置 */
  align-items: center;
}

header .left {
  width: 300px;
  background: #fff;
  height:100px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
header .left img{
  width: 250px;
  padding-top: 15px;
}

header .right {
  display: flex;
  gap: 10px;   /* 要素間の余白 */
  flex: 1;     /* 残りの幅を使う */
  max-width: 900px; /* 必要なら右3つ全体の最大幅を制限 */
  align-items: stretch; 
}

header .item {
  flex: 1;
  display: block;  
  background: #fff;
  padding: 0px 0px 0px 0px;
  text-align: center;
  text-decoration: none;
  height:100px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}


header .item span.title {
  position: relative;
  display: block;
  margin: 0px 0px 20px 0px;
  padding: 5px 10px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  background: #8dc21f;
  border: solid 1px #8dc21f;
  box-sizing: border-box;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
header .item.s02 span.title {
  background: #0099D9;
  border: solid 1px #0099D9;
}


header .item span.title:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #8dc21f;
  z-index: 1;
}
header .item.s02 span.title:before {
  border-top: 8px solid #0099D9;
}





header .item.s01 img{
  padding-top: 3px;
  width: 160px;
}
header .item.s02 img{
  width: 180px;
  margin-top: -7px;
}
header .item span.tel{
  display: block;
  font-size: 24px;
  margin-top: -12px;
  color:#8dc21f;
}
header .item span.time{
    display: block;
    font-size: 11px;
    line-height: 12px;
}
header .item span.time u{
  color: red;
}


header .menu-navi {
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
}

header .menu-item {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
}

header.g-t .menu-item {
  background-color: #0099D9;
  color: #fff;
}

header .menu-item.outlink{
  background: url("../img/common/icon-outlink.svg") no-repeat;
  background-size: 10px 10px;
  background-position: right 10px top 8px;
    background-color: #fff;
}
header.g-t .menu-item.outlink{
  color: #333;
}


header .menu-item.has-dropdown{
    background: url("../img/common/arrow-under-green.svg") no-repeat;
  background-size: 10px 10px;
  background-position: 15px 20px;
    background-color: #fff;
}



header .menu-item a {
  color: inherit;
  text-decoration: none;
  padding: 0 10px;
  line-height: 50px;
}

/* プルダウンメニュー */
header .menu-item .dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #F6FAF3;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 10px;
  z-index: 1000;
}

header .menu-item .dropdown li {
  list-style: none;
  background: url("../img/common/circle-blue.svg") no-repeat;
  background-size: 5px 5px;
  background-position: 20px 32px;
  padding-left: 30px;
  border-bottom: #dcdddd 1px solid;
}
header .menu-item .dropdown li:last-child {
  border-bottom:none;
  }

header .menu-item .dropdown li a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  
}

header .menu-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}




/*	drawer
_________________*/

.drawer-menu img {
  width: 200px;
  margin-bottom: 10px;
  margin-left: 30px;
}

.drawer-menu li a {
  color: #333;
  text-decoration: none;
}

.drawer-menu li {
  border-bottom: 1px solid #dcdddd;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 20px 20px 20px 20px;
  padding: 0px 0px 20px 20px;
  background: url("../img/common/arrow-right-green.svg") no-repeat;
  background-size: 8px 8px;
  background-position: 0px 5px;
}

.drawer-menu li:first-child {
  background: none;
  margin: 10px 20px 20px 20px;
  padding: 0px 0px 20px 0px;
}
.drawer-menu li.title {
  padding: 10px 0px 10px 2px;
  background: none;
  font-weight: bold;
  font-size: 16px;
  color: #8DC21F;
}

ul.drawer-menu {
  padding: 10px 0px 10px 0px;
}

.drawer-menu li span.title,
.drawer-menu li span.time{
  display: block;
  margin-bottom: 5px;
}
.drawer-menu li span.time{
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 0px;
  }
  .drawer-menu li span.time u{
    color: red;
  }
.drawer-menu li span.tel{
  font-size: 22px;
  color: #8DC21F;
  text-decoration: underline;

}


@media screen and (max-width: 1320px) {
  header.g-t .menu-navi{
    font-size: 14px;
  }

}
@media all and (max-width: 1260px) {
header .left {
  margin-right: 10px;
}

header .item {
    flex: unset; 
}
header .right .item:not(.s01):not(.s02) {
  flex: 1;
}
header .right .s01,
header .right .s02 {
  width: 200px;
}
}


@media screen and (min-width: 1060px) {
.d-menu{
	display: none;
}
}
@media screen and (max-width: 1060px) {
header .right,
header .menu-navi{
	display: none;
}
}




/*	main
________________________________________*/

.home main{
  padding-top: 350px;
  margin-top: -170px;
  height: 1050px;
  position: relative;
  background: url("../img/main/bg.jpg") no-repeat;
  background-size: 2700px 1150px;
  background-position: center top;
  z-index: 1;
}
.home.g-t main{
  background: url("../img/general/main-bg.jpg") no-repeat;
  background-size: 2700px 1150px;
  background-position: center top;
  z-index: 1;
}

.home main img.title{
  position: absolute;
  margin-left: -100px;
  width: 1000px;
}
.home.g-t img.title{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 800px;
}

.home main img.btn01{
  position: absolute;
  right: 370px;
  width: 230px;
  margin-top:300px;
}
.home.g-t main img.btn01{
  margin-top:100px;
}

.home main img.btn02{
  position: absolute;
  right: 0;
  width: 350px;
  margin-top: 240px;
}
.home.g-t main img.btn02{
  position: absolute;
  right: 0;
  width: 350px;
  margin-top: 40px;
}

.home main img.ph{
  display: block;
  position: absolute;
  width: 700px;
  height: 400px;
  top: 300px;
  margin-left: -170px;
}

@media all and (max-width: 1380px) {
.home main{
  height: 934px;
}
.home main img.title{
  margin-left: 0px;
  width: 900px;
}
.home.g-t main img.title{
  margin-top: -80px;
  width: 800px;
}

.home main img.ph{
  width: 500px;
  height: auto;
  top: 300px;
  margin-left: 0px;
}
.home main img.btn01{
  right: 320px;
  width: 200px;
  margin-top:300px;
}
.home main img.btn02{
  right: 0;
  width: 300px;
  margin-top: 200px;
}

.home.g-t main img.btn01{
  margin-top:100px;
    right: 320px;
}
.home.g-t main img.btn02{
  position: absolute;
  right: 0;
  width: 300px;
  margin-top: 40px;
}
}

@media all and (max-width: 1201px) {
.home.g-t main{
  background: url("../img/general/main-bg.jpg") no-repeat;
  background-size: 2000px 960px;
  background-position: center top;
}
}

@media all and (max-width: 991px) {
.home main{
  padding-top: 400px;
  margin-top: -270px;
  height: 934px;
  background: url("../img/main/bg.jpg") no-repeat;
  background-size: 2100px 934px;
  background-position: left -700px  top 0px;
}
.home.g-t main{
  background: url("../img/general/main-bg.jpg") no-repeat;
  background-size: 1900px 934px;
  background-position: center top;
}

.home main img.ph{
  display: none;
}
.home main img.btn01{
  right: none;
  left: 0px;
  width: 200px;
  margin-top:200px;
}
.home main img.btn02{
  right: 60px;
  width: 300px;
  margin-top: 120px;
}
.home main img.title{
  width: 95%;
}
.home.g-t main img.btn01{
  right: none;
  left: 0px;
  width: 180px;
  margin-top:30px;
}
.home.g-t main img.btn02{
  right: 60px;
  width: 300px;
  margin-top: 20px;
}
}

@media all and (max-width: 770px) {
.home main{
  padding-top: 400px;
  margin-top: -270px;
  height: 934px;
  background: url("../img/main/bg.jpg") no-repeat;
  background-size: 2100px 934px;
  background-position: left -850px  top 0px;
}
.home.g-t main{
  background: url("../img/general/main-bg.jpg") no-repeat;
  background-size: 2000px 934px;
  background-position: left -200px  top 50px;
}
}

@media all and (max-width: 630px) {
.home main img.btn01{
  left: 0px;
  width: 200px;
  margin-top:200px;
}
.home main img.btn02{
  right: 10px;
  width: 300px;
  margin-top: 120px;
}
.home.g-t main img.title{
  margin-top: 0px;
  width: 800px;
}

}
@media all and (max-width: 630px) {
.home main{
  padding-top: 400px;
  margin-top: -350px;
  height: 934px;
  background: url("../img/main/bg.jpg") no-repeat;
  background-size: 2100px 934px;
  background-position: left -900px  top 0px;
}

}

@media all and (max-width: 540px) {
.home main{
  padding-top: 400px;
  margin-top: -350px;
  height: 934px;
  background: url("../img/main/bg.jpg") no-repeat;
  background-size: 2100px 934px;
  background-position: left -1030px  top 0px;
}
.home main img.btn01{
  display: none;
}
.home main img.btn02{
  left: 4%;
  width: 300px;
  margin-top: 80px;
}
.home.g-t main img.btn02{
  left: 13%;
  width: 250px;
  margin-top: 20px;

}
}



/*	home
________________________________________*/

.home .sc01{
  position: relative;
  z-index: 3;
  background-color: #f9f8f8;
  margin-bottom: 200px;
}
.home .sc01 .block01 img{
    margin-top: -40px;
  width: 100px;
}
.home .sc01 h1{
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 2px;
  text-align: center;
}

.home .sc01 .inner{
  margin-top: 50px;
  background: url("../img/home/sc01bg.jpg") no-repeat;
  background-size: 2700px 300px;
  background-position: left -170px top 0px;
  background-color: #fff;
}
.home .sc01 .inner img.left{
  width: 500px;
  margin-left: -250px;
  margin-top: -50px;
}
.home .sc01 .inner img.right{
  width: 700px;
  margin-right: -200px;
  margin-top: -140px;
}

.home .sc01 .inner .respons-4 img{
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
.home .sc01 .inner .respons-8 img{
  width: 150px;
  margin-left: 0;
  margin-top: -100px;
}

.home .sc01 .inner .respons-8 span{
  font-size: 24px;
}
.home .sc01 .inner .respons-8 h2{
    font-size: 26px;
  line-height: 32px;
  letter-spacing: 2px;
  border-bottom: #dcdddd 1px solid;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.home .sc01 .inner .respons-8 .navi{
  margin-top: 30px;
  background-color: #f9f8f8;
  padding: 25px 10px 25px 10px;
}
.home .sc01 .inner .respons-8 .navi a{
  margin-top: 0;
  margin-bottom: 0;
}


@media all and (max-width: 1560px) {
.home .sc01 .inner img.right{
  width: 600px;
  margin-right: -100px;
  margin-top: -140px;
}

}
@media all and (max-width: 1360px) {
.home .sc01 .inner img.right{
  width: 600px;
  margin-right: -50px;
  margin-top: -140px;
}
}
@media all and (max-width: 1201px) {
.home .sc01 .inner img.right{
  display: none;
}
.home .sc01 h1{
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 2px;
  text-align: left;
}
.home .sc01 h1 br{
    display: none;
  }
.home .sc01 .inner{
  margin-top: 50px;
  background: url("../img/home/sc01bg.jpg") no-repeat;
  background-size: 2700px 300px;
  background-position: left -70px top 0px;
  background-color: #fff;
}
}
@media all and (max-width: 991px) {
.home .sc01 .inner .respons-4 img{
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
}
.home .sc01 .inner .respons-8 img{
  width: 80px;
  margin-left: 0;
  margin-top: -160px;
}
}
@media all and (max-width: 500px) {
.home .sc01 .inner .respons-4 img{
  width: 250px;
  margin-left: 70px;
  margin-right: auto;
  margin-top: -30px;
}
}


.home .sc02{
  background-color: #f9f8f8;
  padding-bottom: 60px;
}
.home .sc02 img.left{
  width: 300px;
  margin-left: -100px;
  margin-top: -150px;
}
.home .sc02 img.right{
  width: 450px;
  margin-right: -150px;
  margin-top: -220px;
}
.home .sc02 img.center{
  width: 270px;
  margin-top: -240px;
}

.home .sc02 h2{
    font-size: 23px;
  line-height: 36px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 30px;
}
.home .sc02 h2 span{
  color: #E4007F;
}
.home .sc02 .inner{
    display: block;
  margin-top: 50px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 30px 10px 30px;
}


.home .sc02 h3 {
  position: relative;
  display: block;
  margin-top: -50px ;
  padding: 7px 10px;
  width: 200px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  background: #8DC21F;
  border: solid 1px #8DC21F;
  box-sizing: border-box;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home .sc02 h3:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #8DC21F;
  z-index: 1;
}

.home .sc02 .inner .left{
  float: left;
  width: 65%;
}
.home .sc02 .inner .right{
  float: right;
  width: 35%;
}

@media all and (max-width: 1450px) {
.home .sc02 img.right{
  width: 350px;
  margin-right: -20px;
  margin-top: -220px;
}
.home .sc02 img.center{
  width: 270px;
  margin-top: -185px;
}
}
@media all and (max-width: 991px) {
.home .sc02 img.right{
  display: none;
  }
.home .sc02 img.left{
  width: 200px;
  margin-left: -100px;
  margin-top: -130px;
}
.home .sc02 img.center{
  width: 270px;
  margin-top: -150px;
}
.home .sc02 .inner .left,
.home .sc02 .inner .right{
  float: none;
  width: 100%;
}
.home .sc02 .inner .right img{
  width: 350px;
}
.home .sc02 h2 {
  text-align: left;
}
.home .sc02 h2 br{
  display: none;
}
}

@media all and (max-width: 500px) {
.home .sc02 img.left{
  display: none;
}
.home .sc02 img.center{
  width: 270px;
  margin-top: -125px;
}
}


.home .sc03{
  padding-top: 260px;
}
.home .sc03 img.left{
  position: absolute;
  width: 700px;
  margin-left: -300px;
  margin-top: -307px;
}
.home .sc03 img.right{
    position: absolute;
  width: 750px;
  right: 0px;
  margin-top: -295px;
}
.home .sc03 .inner{
  background-color: #86B3E0;
    padding-bottom: 50px;

}
.home .sc03 img.left-i{
  position: absolute;
  width: 430px;
  margin-top: -260px;
}
.home .sc03 img.right-i{
  position: absolute;
  width: 230px;
  margin-left: 500px;
  margin-top: -110px;
}
.home .sc03 .inner{
  padding-top: 30px;
}

.home .sc03 .box,
.home .sc03 .wide{
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 30px 20px 30px;
  width: 23%;
  margin-right: 2%;
  margin-bottom: 5%;
  height: 230px;
  float: left;
}
.home .sc03 .wide{
    width: 48%;
}

.home .sc03 .box a{
  text-decoration: none;
  color: #333;
}

.home .sc03 .box img{
  height: 90px;
}
.home .sc03 .box span{
  position: relative;
  display: block;
  margin-top: -35px ;
  padding: 7px 10px;
  width: 200px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  background: #8DC21F;
  border: solid 1px #8DC21F;
  box-sizing: border-box;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.home .sc03 .box span:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #8DC21F;
  z-index: 1;
}
.home .sc03 .box p{
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
}
.home .sc03 .wide img.icon01{
  position: absolute;
  width: 140px;
  right: 40px;
  margin-top: -70px;
}
.home .sc03 .wide img.icon02{
  position: absolute;
  width: 90px;
  margin-left: -20px;
  margin-top: -55px;
}
.home .sc03 .wide h2{
  margin-top: 0px;
  font-size: 18px;
  line-height: 26px;
  padding-left: 90px;
  border-bottom: #dcdddd 1px solid;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.home .sc03 .wide span.tel{
  color: #8DC21F;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  display: block;
  letter-spacing: 1px;
}
.home .sc03 .wide span.time{
  font-size: 14px;
  text-align: center;
  display: block;
    letter-spacing: 1px;
}
.home .sc03 .wide span.time u{
  color: red;
}
.home .sc03 .wide a{
    color: #8DC21F;
    text-align: center;
  display: block;
    font-size: 22px;
  text-decoration: underline;
  margin-top: 10px;
}

@media all and (max-width: 1201px) {
.home .sc03 .box{
  border-radius: 10px;
  padding: 20px 15px 20px 15px;
  width: 23%;
  margin-right: 2%;
  margin-bottom: 5%;
  height: 230px;
  float: left;
}
.home .sc03 .box span{
  padding: 7px 5px;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
}
}

@media all and (max-width: 991px) {
.home .sc03 img.left{
    display: none;
}

.home .sc03 .box p{
  font-size: 13px;
  line-height: 18px;
}
.home .sc03 .box img{
  height: 80px;
}
.home .sc03 .wide h2{
  font-size: 15px;
  line-height: 22px;
  padding-left: 80px;
}
.home .sc03 .wide span.tel{
  font-size: 28px;
}
.home .sc03 .wide span.time{
  font-size: 12px;
  text-align: left;
}
.home .sc03 .wide a{
    font-size: 16px;
    margin-top: 10px;
}

.home .sc03 .wide{
  padding: 20px 20px 20px 20px;
}
}

@media all and (max-width: 780px) {
.home .sc03{
  padding-top: 200px;
}
.home .sc03 img.right{
    display: none;
}
.home .sc03 img.right-i{
  width: 230px;
  margin-left: 400px;
  margin-top: -110px;
}

}

@media all and (max-width: 620px) {
.home .sc03 .inner{
    padding-bottom: 20px;

}
.home .sc03 img.right-i{
  display: none;
}
.home .sc03 .box,
.home .sc03 .wide{
  width: 100%;
  margin-right: 0%;
  margin-bottom: 50px;
  height: auto;
  float: none;
  text-align: center;
}
.home .sc03 a{
  text-decoration: none;
}
.home .sc03 .wide span.time{
  text-align: center;
}
}
@media all and (max-width: 470px) {
.home .sc03{
  padding-top: 170px;
}
.home .sc03 img.left-i{
  width: 370px;
  margin-top: -220px;
}
}


.home .sc04 img.left{
  position: absolute;
  width: 700px;
  margin-left: -150px;
  margin-top: -42px;
}
.home .sc04 img.right{
  position: absolute;
  width: 800px;
  right: 0px;
  margin-top: -45px;
}
.home .sc04 img.icon{
  width: 200px;
  margin-top: 50px;

}
.home .sc04 h2{
  text-align: center;
  font-size: 28px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.home .sc04 .title p{
    text-align: center;
    line-height: 26px;
}
.home .sc04 .wrapper{
  margin-top: 30px;
  border-top: #dcdddd 1px solid;
  border-bottom: #dcdddd 1px solid;
}
.home .sc04 .wrapper .respons-3{
  border-left:#dcdddd 1px solid;
  padding: 20px 30px 20px 30px;
}
.home .sc04 .wrapper .respons-3.last{
  border-right:#dcdddd 1px solid;
}
.home .sc04 .wrapper .respons-3 h3{
  text-align: center;
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.home .sc04 .wrapper .respons-3 p{
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
}


@media all and (max-width: 1201px) {
.home .sc04 img.left{
  width: 400px;
  margin-left: -50px;
  margin-top: -24px;
}
.home .sc04 img.right{
  width: 600px;
  right: 0px;
  margin-top: -34px;
}
.home .sc04 .wrapper .respons-3 h3{
  font-size: 15px;
}
.home .sc04 .wrapper .respons-3{
  padding: 20px 15px 20px 15px;
}
}


@media all and (max-width: 991px) {
.home .sc04 img.left{
  width: 300px;
  margin-left: -50px;
  margin-top: -17px;
}
.home .sc04 img.right{
  width: 400px;
  right: 0px;
  margin-top: -23px;
}
.home .sc04 .title p{
  text-align: left;
}
.home .sc04 .title p br{
  display: none;
}
.home .sc04 .wrapper .respons-3 h3{
  font-size: 22px;
}
.home .sc04 .wrapper .respons-3{
  padding: 20px 30px 20px 30px;
}
.home .sc04 .wrapper .respons-3,
.home .sc04 .wrapper .respons-3.last{
  border-left:#dcdddd 1px solid;
  border-right:#dcdddd 1px solid;
    border-bottom: #dcdddd 1px solid;
}
.home .sc04 .wrapper .respons-3.last{
    border-bottom:none;
}
}

@media all and (max-width: 570px) {
.home .sc04 img.right{
  display: none;
}
.home .sc04 img.left{
  margin-left: -100px;
}
.home .sc04 img.icon{
  width: 200px;
  margin-top: -30px;

}
}


.home .sc05{
  margin-top: 100px;
  background-color: #f9f8f8;
  padding-bottom: 50px;
}

.home .sc05 img.left{
  position: absolute;
  width: 200px;
  margin-left:50px;
  margin-top: -120px;
  z-index: 2;
}
.home .sc05 img.right{
  position: absolute;
  width: 300px;
  right: 10px;
  margin-top: -180px;
    z-index: 2;
}

.home .sc05 .respons-full{
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 60px;
  padding-bottom: 20px;
}

.home .sc05 .left{
  float: left;
  width: 24%;
}
.home .sc05 .right{
  float: right;
  width: 76%;
  padding-top: 30px;
  padding-right: 30px;
}

.home .sc05 img.icon01{
  position: absolute;
  width: 200px;
  margin-top: -30px;
  margin-left: 100px;
  z-index: 3;
}
.home .sc05 img.icon02{
  position: absolute;
  width: 400px;
  margin-top: -18px;
  right: 30%;
    z-index: 3;
}

.home .sc05 .left span{
  text-align: center;
  display: block;
  font-size: 24px;
  padding-top: 30px;
}
.home .sc05 .left span::after {
  content: "News";
  display: block;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0px;
  margin-bottom: 10px;
}

.home .sc05 .left img.btn{
  display: block;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.home .sc05 .right a{
  text-decoration: none;
  color: #333;
}
.home .sc05 .right span.time{
  font-size: 12px;
  margin-right: 10px;
}
.home .sc05 .right span.ctgry{
  font-size: 12px;
  background-color: #8dc21f;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px 5px 10px;
  margin-right: 10px;
}
.home .sc05 .right p{
  display: inline;
  line-height: 28px;
}


@media all and (max-width: 991px) {
.home .sc05 img.right{
display: none;
}
.home .sc05 img.icon02{
  right: 13%;
}
.home .sc05 img.left{
  width: 200px;
  margin-left:-50px;
  margin-top: -120px;
}
}

@media all and (max-width: 700px) {
.home .sc05 img.left,
.home .sc05 img.icon02{
display: none;
}
}

@media all and (max-width: 500px) {
.home .sc05 .left,
.home .sc05 .right{
  float: none;
  width: 100%;
    padding-right: 0px;
}
.home .sc05 .left img.btn{
  width: 80px;
}
}

.home .sc06{
    background: url("../img/home/sc06bg.jpg") no-repeat;
  background-size: 1600px 150px;
  background-position: left top;
  padding-top: 200px;
}
.home .sc06 img.left{
  position: absolute;
  width: 130px;
  margin-top: -170px;
  margin-left: 340px;
}
.home .sc06 img.right{
  position: absolute;
  width: 200px;
  margin-top: -175px;
  right: 10%;
}

.home .sc06 .wrapper{
  margin-top: 30px;
  border-top: #dcdddd 1px solid;
  border-bottom: #dcdddd 1px solid;
}
.home .sc06 .wrapper .respons-4{
  border-left: #dcdddd 1px solid;
  background: url("../img/home/btn-right-blue.svg") no-repeat;
  background-size: 40px 40px;
  background-position: 30px 30px;
  padding: 20px 20px 30px 20px;
}
.home .sc06 .wrapper .respons-4.last{
  border-right: #dcdddd 1px solid;
}
.home .sc06 .wrapper .respons-4 img{
  width: 180px;
  margin-top: -170px;
}
.home .sc06 .wrapper a{
  color: #333;
}
.home .sc06 .wrapper .respons-4 span{
  display: block;
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}


@media all and (max-width: 1350px) {
.home .sc06 img.right{
  width: 180px;
  margin-top: -155px;
  right: 350px;
}
}

@media all and (max-width: 1201px) {
.home .sc06 img.left,
  .home .sc06 img.right{
    display: none;

}
}

@media all and (max-width: 991px) {
.home .sc06{
    background: none;
  padding-top: 0px;
}
.home .sc06 a{
  text-decoration: none;
  }
.home .sc06 .wrapper .respons-4 img{
    display: none;
}
.home .sc06 .wrapper{
  margin-top: 0px;
  border-top: #dcdddd 1px solid;
  border-bottom: #dcdddd 1px solid;
}
.home .sc06 .wrapper .respons-4{
  border-right: #dcdddd 1px solid;
    border-bottom: #dcdddd 1px solid;
}
.home .sc06 .wrapper .respons-4.last{
  border-bottom: none;
}
}

.home .sc07{
  background: url("../img/home/sc07bg.jpg") no-repeat;
  background-size: 1600px 150px;
  background-position: center top;
  padding-top: 200px;
  background-color: #f9f8f8;
  padding-bottom: 50px;
}
.home .sc07 .respons-8{
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 50px 10px 50px;
}

.home .sc07 .respons-8 img.icon01{
  position: absolute;
  width: 260px;
  margin-left: -50px;
  margin-top: -130px;
}
.home .sc07 .respons-8 img.icon02{
  position: absolute;
  width: 210px;
  margin-left: 350px;
  margin-top: -150px;
}
.home .sc07 .respons-8 img.icon03{
  position: absolute;
  width: 260px;
  margin-left: 0px;
}
.home .sc07 .respons-8 img.icon04{
  position: absolute;
  width: 230px;
  margin-left: 300px;
  margin-top: 20px;
}
.home .sc07 .respons-8 table{
  margin-top: 90px;
  width: 100%;
  border: #dcdddd 1px solid;
}
.home .sc07 .respons-8 table th,
.home .sc07 .respons-8 table td{
  padding: 10px 10px 10px 10px;
  width: 10%;
  text-align: center;
  border: #dcdddd 1px solid;
    white-space: nowrap;
    letter-spacing: 1px;
  
}
.home .sc07 .respons-8 table th.title{
    width: 30%;
}
.home .sc07 .respons-8 table thead th{
  background-color: #f1f8f6;
}
.home .sc07 .respons-8 table img{
  width: 20px;
}
.home .sc07 .respons-8 ul{
  margin-top: 10px;
}
.home .sc07 .respons-8 ul li{
  font-size: 16px;
  float: left;
  margin-right: 20px;
  background: url("../img/home/sc07t01.svg") no-repeat;
  background-size: 20px 20px;
  background-position: left 0px;
  padding-left: 25px;
}
.home .sc07 .respons-8 ul li.n02{
  background: url("../img/home/sc07t02.svg") no-repeat;
  background-size: 20px 20px;
  background-position: left 0px;
}
.home .sc07 .respons-8 ul li.n03{
  background: url("../img/home/sc07t03.svg") no-repeat;
  background-size: 17px 17px;
  background-position: left 2px;
}
.home .sc07 .respons-8 span{
  display: block;
  clear: both;
  font-size: 16px;
  padding-top: 5px;
  letter-spacing: 1px;
}
.home .sc07 .respons-8 .map{
  margin-top: 20px;
}
.home .sc07 .respons-8 .map address{
  font-size: 16px;
  letter-spacing: 1px;
  padding-top: 5px;
}

.home .sc07 .respons-4 img.icon01{
  position: absolute;
  width: 300px;
  margin-top: -97px;
}
.home .sc07 .respons-4 .inner{
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 20px 20px 20px;
}
.home .sc07 .respons-4 a{
  text-decoration: none;
  color: #333;
}
.home .sc07 .respons-4 .inner.s01{
  background: url("../img/common/icon-inst.png") no-repeat;
  background-size: 25px 25px;
  background-position: 20px 17px;
  background-color: #fff;
  padding-left: 60px;
}
.home .sc07 .respons-4 .inner.s02{
  background: url("../img/home/fb.svg") no-repeat;
  background-size: 25px 25px;
  background-position: 20px 17px;
  background-color: #fff;
  padding-left: 60px;
}
.home .sc07 .respons-4 .inner.s03{
  background: url("../img/home/youtube.svg") no-repeat;
  background-size: 25px 25px;
  background-position: 20px 17px;
  background-color: #fff;
  padding-left: 60px;
}
.home .sc07 .respons-4 .s05{
  text-align: center;
}
.home .sc07 .respons-4 .s05 img{
  display: inline;
  width: 150px;
  margin-right: 10px;
}
.home .sc07 .respons-4 .s05 img.width{
  display: inline;
  width: 100px;
}
.home .sc07 .respons-4 .inner.s06{
  margin-top: 20px;
    background: url("../img/home/sc07icon03.svg") no-repeat;
  background-size: 25px 25px;
  background-position: 20px 17px;
  background-color: #fdeeed;
  padding-left: 60px;
}

@media all and (max-width: 991px) {
.home .sc07 .respons-8 img.icon02{
  width: 210px;
  margin-left: 200px;
  margin-top: -150px;
}
.home .sc07 .respons-4{
  margin-top: 120px;
}
.home .sc07 .respons-4 img.icon01{
  margin-top: -94px;
}
.home .sc07 .respons-4 .s04 img{
  width: 350px;
}
}

@media all and (max-width: 700px) {
.home .sc07{
  padding-top: 140px;
  padding-bottom: 50px;
}

.home .sc07 .respons-8 img.icon03{
  position: relative;
  width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.home .sc07 .respons-8 img.icon02{
  width: 180px;
  margin-left: 160px;
  margin-top: -135px;
}
.home .sc07 .respons-8 img.icon04{
  position: relative;
  width: 230px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
.home .sc07 .respons-8 table{
  margin-top: 20px;
  width: 100%;
  border: #dcdddd 1px solid;
}
.home .sc07 .respons-8{
  padding: 20px 20px 10px 20px;
}

}
@media all and (max-width: 400px) {
  .home .sc07 .respons-8{
  padding: 20px 10px 10px 10px;
}
}





/*	footer
________________________________________*/

footer{
  background: url("../img/footer/bg.jpg") repeat-x;
  background-size: 1600px 150px;
  background-position: center top;
  padding-top: 200px;
  padding-bottom: 30px;
}

footer span.title{
  position: relative;
  display: block;
  margin-top: 0px ;
  padding: 7px 10px;
  width: 100%;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  background: #8DC21F;
  border: solid 1px #8DC21F;
  box-sizing: border-box;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

footer span.title:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #8DC21F;
  z-index: 1;
}
footer .respons-3 a{
  text-decoration: none;
  color: #333;
}
footer ul li{
  background: url("../img/common/circle-blue.svg") no-repeat;
  background-size: 5px 5px;
  background-position: 0px 8px;
  padding-left: 12px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
footer ul li.green{
  background: url("../img/common/circle-green.svg") no-repeat;
  background-size: 5px 5px;
  background-position: 0px 8px;
}
footer ul li span.tel{
  display: block;
  color: #8DC21F;
  font-size: 24px;
}
footer ul li span.time{
  font-size: 12px;
}
footer ul li span.time u{
  color: red;
}
footer img{
  margin-top: 30px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}


/*	general top
________________________________________*/

.g-t .gt01 .bg{
  position: relative;
  z-index: 3;
  background-color: #f9f8f8;
  padding-bottom: 150px;

}

.g-t .gt01 .respons-full.block01{
  background-color: #fff;
  padding: 20px 20px 20px 20px;
  border-radius: 10px;
  margin-top: -40px;
  text-align: center;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
}

.g-t .gt01 .block01 img.icon01{
  position: relative;
  width: 900px;
  margin-top:-123px;
}
.g-t .gt01 .block01 h1{
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 1px;
}

.g-t .gt01 .block02{
  position: relative;
  margin-top: -80px;
  z-index: 4;
}

.g-t .gt01 img.left{
  position: absolute;
  width: 400px;
  margin-top: -160px;
  margin-left: -150px;
  z-index: 6;
}
.g-t .gt01 img.right{
  position: absolute;
  width: 230px;
  margin-top: -110px;
  right: -50px;
    z-index: 6;
}
.g-t .gt01 .respons-6{
  margin-bottom: 50px;
}
.g-t .gt01 .respons-6 a{
  color: #333;
  text-decoration: none;
}
.g-t .gt01 .respons-6 img{
  border-radius: 10px;
}
.g-t .gt01 .respons-6 h2{
  background: url("../img/general/btn-right-blue.svg") no-repeat;
  background-size: 45px 45px;
  background-position: left 0px;
  padding-left: 60px;
  font-size: 25px;
  line-height: 28px;
  letter-spacing: 1px;
  padding-top: 10px;
  padding-bottom: 25px;
  margin-bottom: 15px;
  border-bottom: #dcdddd 1px solid;
}
.g-t .gt01 .respons-6 ul{
  margin-top: 20px;
}
.g-t .gt01 .respons-6 ul li{
  background: url("../img/common/circle-blue.svg") no-repeat;
  background-size: 3px 3px;
  background-position: 10px 13px;
  padding: 5px 15px 5px 22px;
  float: left;  
  margin-right: 10px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  background-color: #F9F8F8;
  border-radius: 10px;
}
.g-t .gt01 .respons-6 img.icon01{
  position: absolute;
  width: 200px;
  right: -70px;
  margin-top: -55px;
}

.g-t .gt02{
    margin-top: 80px;
    border-bottom: #dcdddd 1px solid;
    border-top: #dcdddd 1px solid;
}
.g-t .gt02 img.left{
  position: absolute;
  width: 400px;
  margin-left: 20px;
  margin-top: -60px;
}
.g-t .gt02 img.center{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -50px;
  width: 230px;
}
.g-t .gt02 img.right{
  position: absolute;
  width: 120px;
  right: 20px;
  margin-top: -125px;
}
.g-t .gt02 .inner{
  float: left;
  width: 25%;
  border-left: #dcdddd 1px solid;
  text-align: center;
  height: 115px;
}
.g-t .gt02 .inner.s04{
  border-right: #dcdddd 1px solid;
}
.g-t .gt02 .inner span.title{
  position: relative;
  display: block;
  margin: 0px 0px 20px 0px;
  padding: 5px 10px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  background: #8dc21f;
  border: solid 1px #8dc21f;
  box-sizing: border-box;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.g-t .gt02 .inner.s02 span.title{
  background: #0099D9;
  border: solid 1px #0099D9;
}
.g-t .gt02 .inner.s04 span.title{
  background: #3EB370;
  border: solid 1px #3EB370;
}

.g-t .gt02 .inner span.title:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #8dc21f;
  z-index: 1;
}
.g-t .gt02 .inner.s02 span.title:before {
  border-top: 8px solid #0099D9;
}
.g-t .gt02 .inner.s04 span.title:before {
  border-top: 8px solid #3EB370;
}

.g-t .gt02 .inner.s01 img{
  padding-top: 10px;
  width: 180px;
}
.g-t .gt02 .inner.s02 img{
  width: 180px;
}
.g-t .gt02 .inner.s03 span.tel{
  display: block;
  font-size: 24px;
  margin-top: -12px;
  color:#8dc21f;
}
.g-t .gt02 .inner.s03 span.time{
    display: block;
    font-size: 11px;
    line-height: 12px;
}
.g-t .gt02 .inner.s03 span.time u{
  color: red;
}
.g-t .gt02 .inner.s04 img{
  width: 180px;
  padding-top: 2px;
}


.g-t .gt03{
  background: url("../img/general/sc03ph.jpg") no-repeat;
  background-size: 700px 500px;
  background-position: calc(50% + 350px) 100px;
  padding-bottom: 140px;
}
.g-t .gt03 img.left{
  position: absolute;
  width: 300px;
  margin-left:-60px;
  margin-top: 20px;
}
.g-t .gt03 img.right{
  position: absolute;
  width: 300px;
  right: -80px;
  margin-top: -15px;
}
.g-t .gt03 .respons-full .inner{
  width: 47%;
}
.g-t .gt03 h3{
  margin-top: 180px;
  font-size: 27px;
  line-height: 38px;
  letter-spacing: 1px;
  border-bottom: #dcdddd 1px solid;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.g-t .gt03 p{
  line-height: 36px;
}


@media all and (max-width: 1201px) {
.g-t .gt01 .block01 img.icon01{
  margin-top:-122px;
}
.g-t .gt01 .respons-full.block01{
  width: 95%;
}
.g-t .gt01 img.left{
  width: 200px;
  margin-top: -120px;
  margin-left: -80px;
}
.g-t .gt01 img.right{
  width: 160px;
  margin-top: -110px;
  right: 0px;
}

}

@media all and (max-width: 991px) {
.g-t .gt01 .block01 img.icon01{
  margin-top:-88px;
  width: 600px;
}
.g-t .gt01 .block01 p{
  text-align: left;
}
.g-t .gt01 .block01 p br{
  display: none;
}
.g-t .gt01 .respons-6{
  margin-bottom: 100px;
}
.g-t .gt01 .respons-6 ul{
  margin-top: 0px;
}
.g-t .gt01 .respons-6 img.icon01{
  display: none;
}
.g-t .gt02{
    display: none;
}
.g-t .gt03{
  background: url("../img/general/sc03ph.jpg") no-repeat;
  background-size: 700px 500px;
  background-position: calc(50% + 350px) 0px;
  padding-bottom: 140px;
}
.g-t .gt03 img.left{
  margin-left:-60px;
  margin-top: -120px;
}
.g-t .gt03 img.right{
  width: 200px;
  right: -20px;
  margin-top: -160px;
}
.g-t .gt03 .respons-full .inner{
background-color: rgba(255, 255, 255, 0.9);
padding: 30px 30px 30px 30px;
border-radius: 10px;
width: 100%;
margin-top: 80px;
}
.g-t .gt03 h3{
  margin-top: 0px;
  font-size: 21px;
  line-height: 28px;
}

}
@media all and (max-width: 700px) {
.g-t .gt03{
  background: url("../img/general/sc03ph.jpg") no-repeat;
  background-size: 700px 500px;
  background-position: center 0px;
  padding-bottom: 40px;
}
.g-t .gt01 .block01 img.icon01{
  margin-top:-53px;
  width: 300px;
}
  }
@media all and (max-width: 550px) {
.g-t .gt01 .respons-6 h2{
  background: url("../img/general/btn-right-blue.svg") no-repeat;
  background-size: 35px 35px;
  background-position: left 0px;
  padding-left: 45px;
  font-size: 22px;
  line-height: 23px;
  letter-spacing: 0px;
  padding-top: 8px;
  padding-bottom: 25px;
  margin-bottom: 15px;
  border-bottom: #dcdddd 1px solid;
}
.g-t .gt01 .block01 h1{
  font-size: 24px;
}
.g-t .gt03 img.right{
  display: none;
}
}


/*	page & g-p
________________________________________*/

.page main{
  margin-top: -200px;
  padding-top: 300px;
  background-color: #f5f3f2;
}
.page.g-p main{
  background-color: #ebf5f2;
}

.page main .respons-full{
  background-color: #fff;
  border: 1px solid #efefef; 
  border-radius: 10px;
  margin-bottom: -50px;
  text-align: center;
  padding-bottom: 30px;
}
.page main .respons-full img.left{ 
  position: absolute;
  width: 320px;
  margin-top: -50px;
  margin-left: -50px;
}
.page main .respons-full img.right{ 
  position: absolute;
  width: 320px;
  margin-top: -50px;
  right: -50px;
}
.page main .respons-full img.center{ 
  position: relative;
  width: 280px;
  margin-top: -80px;
}
.page.g-p main .respons-full img.center{ 
  width: 90px;
  margin-top: -80px;
}

.page main .respons-full h1,
.page main .respons-full span.title{
    display: block;
    padding: 0;
    margin: 0;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 5px;
  margin-top: 20px;
  letter-spacing: 1px;
  color: #333;
  font-weight: normal;
}
.page main .respons-full span.en{
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1px;
  color: #999;
    display: block;
}

@media all and (max-width: 1275px) {
.page main .respons-full img.right{ 
  right: -10px;
}
}
@media all and (max-width: 1060px) {
.page main .respons-full img.left{ 
  margin-left: -30px;
}
}
@media all and (max-width: 991px) {
  .page main .respons-full img.left{ 
  width: 250px;
  margin-top: -35px;
  margin-left: -50px;
}
.page main .respons-full img.right{ 
  width: 250px;
  margin-top: -35px;
  right: -50px;
}
}
@media all and (max-width: 860px) {
.page main .respons-full img.right{ 
  display: none;
  }
}
@media all and (max-width: 520px) {
  .page main .respons-full img.left{ 
  width: 150px;
  margin-top: -22px;
  margin-left: -50px;
}
  .page.g-p main .respons-full img.left{ 
  width: 190px;
  margin-top: -32px;
  margin-left: -50px;
}
}


.page .contents{
  margin-top: 100px;
  margin-bottom: 80px;
}
.page .contents p.title{
  text-align: center;
  font-size: 18px;
  line-height: 24px;
}
.page .contents img.first{
  position: absolute;
  width: 100px;
  margin-left: 30px;
}
.page.g-p .contents img.first{
  width: 120px;
  margin-left: 30px;
}

.page .contents h1.first,
.page .contents h2.first{
	display: block;
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;	
	letter-spacing: 1px;
	background: url('../img/common/circle-white.svg') no-repeat;
	background-size: 5px 5px;
	background-position: 15px 27px;
	background-color: #0099d9;
	padding: 18px 20px 17px 32px;
	color: #fff;
	margin-top: 47px;
	margin-bottom: 10px;
	border-radius: 10px;
	clear: both;
}
.page .contents h1,
.page .contents h2{
  	display: block;
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;	
	letter-spacing: 1px;
	background: url('../img/common/circle-white.svg') no-repeat;
	background-size: 5px 5px;
	background-position: 15px 27px;
	background-color: #0099d9;
	padding: 18px 20px 17px 32px;
	color: #fff;
	margin-top: 57px;
	margin-bottom: 10px;
	border-radius: 10px;
	clear: both;
}
.page.g-p .contents h2.first,
.page.g-p .contents h2{
	background-color: #8dc21f;
}

.page .contents h3{
    	display: block;
	font-size: 17px;
	line-height: 24px;
	font-weight: bold;	
	letter-spacing: 1px;
	background: url('../img/common/circle-green.svg') no-repeat;
	background-size: 5px 5px;
	background-position: 15px 25px;
	background-color: #f6faf6;
  border: #8DC21F 1px solid;
	padding: 16px 20px 15px 32px;
	color: #45b035;
	margin-top: 40px;
	margin-bottom: 10px;
	border-radius: 10px;
	clear: both;
}
.page .contents h4{
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;	
	letter-spacing: 1px;
	padding: 16px 20px 15px 20px;
	color: #333;
	margin-top: 30px;
	margin-bottom: 10px;
	background-color: #f5f3f2;
	border-radius: 10px;
	clear: both;
}

.page .contents h5{
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;	
	letter-spacing: 1px;
	padding: 8px 0px 13px 0px;
	color: #333;
	margin-top: 20px;
	margin-bottom: 10px;
	border-bottom: #c9caca solid 1px;
	clear: both;
}
.page .contents h6{
	font-size: 16px;
	line-height: 26px;
	font-weight: normal;	
	letter-spacing: 1px;
	padding: 8px 0px 13px 0px;
	color: #333;
	margin-top: 20px;
	margin-bottom: 10px;
	border-bottom: #c9caca solid 1px;
	clear: both;
}

.page .contents p{
  margin-bottom: 20px;
}

@media all and (max-width: 991px) {
  .page .contents{
  margin-top: 80px;
  margin-bottom: 40px;
}
.page .contents img.first{
  position: absolute;
  width: 70px;
  margin-left: 30px;
  margin-top: -30px;
}
.page.g-p .contents img.first{
  width: 90px;
  margin-top: -30px;
}
.page .contents p.title br{
  display: none;
}
}


/*	news
________________________________________*/

.page .news .news-all a{
  text-decoration: none;
  color: #333;
}
.page .news .news-all .wrapper{
  margin-top: 30px;
}
.page .news span.time{
  margin-right: 10px;
}
.page .news span.ctgry{
background-color: #8dc21f;
border-radius: 5px;
color: #fff;
padding: 5px 8px 5px 8px;
font-size: 12px;
}
.page .news .news-all .wrapper h3{
      	display: block;
	font-size: 17px;
	line-height: 24px;
	font-weight: bold;	
	letter-spacing: 1px;
	background:none;
  border:none;
	padding: 0;
	color: #333;
	margin-top: 10px;
	margin-bottom: 20px;
  padding-bottom: 20px;
	clear: both;
  border-bottom: #dcdddd 1px solid;
}

.page .news .respons-4 h2{
  margin-top: 47px;
}
.page .news .respons-4 ul a{
  text-decoration: none;
  color: #333;
}
.page .news .respons-4 ul li{
  	display: block;
	font-size: 15px;
	line-height: 22px;
	font-weight: bold;	
	letter-spacing: 1px;
	background: url('../img/common/arrow-right-blue.svg') no-repeat;
	background-size: 8px 8px;
	background-position: 15px 22px;
	background-color: #fffbf8;
  border: #0099D9 1px solid;
	padding: 12px 20px 12px 32px;
	color: #333;
	margin-top: 0px;
	margin-bottom: 10px;
	border-radius: 10px;
}
.page .news .respons-4 .wrapper{
  margin-top: 30px;
}
.page .news .respons-4 .wrapper img.s01{
  width: 300px;
}
.page .news .respons-4 .wrapper img.s02{
  width: 250px;
}

.page .news .respons-4 .wrapper p{
  font-size: 15px;
  line-height: 24px;
  margin-top: 10px;
}
.page .news .respons-4 .wrapper a{
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}



/*	news single
________________________________________*/

.page .news.single .inner{
  margin-top: 20px;
}



img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 0px;
	margin: 0 0 20px 10px;
	display: inline;
	}

img.alignleft {
	padding: 0px;
	margin: 0 20px 20px 0;
	display: inline;
	}

img.alignleft.clear {
	padding: 0px;
	margin: 0 20px 20px 0;
	display: block;
	float: none;
	clear: both;
	}

.alignright {
	float: right;
	}

.alignleft {
	float: left
	}

.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




/*	pagenavi
________________________*/

.wp-pagenavi {
	text-align: center;
   	padding: 20px 0px 30px 0px;

}

.wp-pagenavi span {
	color: #777;
	text-decoration: none;
	border: 1px solid #0099d9;
	padding: 10px 15px;
	margin: 2px;
	border-radius: 10px;
}

.wp-pagenavi a {
	color: #fff;
	text-decoration: none;
	border: 1px solid #0099d9;
	padding: 10px 15px;
	margin: 2px;
	border-radius: 10px;

}
.wp-pagenavi a {
	border: 1px solid #0099d9;
	background-color: #0099d9;
	border-radius: 10px;

}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-color: #0099d9;
	border-radius: 10px;

}

.wp-pagenavi span.current {
	font-weight: bold;
}