@charset "UTF-8";
/*
  File Name   : top.css
  Description : Write top content styles
*/
#home .top-section-hl {
  display: block;
  width: 100%;
  color: #4D4D4D;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #home .top-section-hl {
    font-size: 2em;
  }
}

/* KV
============================================================ */
.top-kv {
  position: relative;
  overflow: hidden;
}
.top-kv::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  bottom: -1px;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#e3f5ec), to(#e9f1db));
  background: -webkit-linear-gradient(left, #e3f5ec, #e9f1db);
  background: linear-gradient(90deg, #e3f5ec, #e9f1db);
}
.top-kvInner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto 0;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .top-kvInner {
    padding: 20px 0 0;
  }
}
.top-kv .top-kv-slide {
  line-height: 0;
  font-size: 0;
  margin-bottom: 60px;
  
}
.top-kv .top-kv-slide .top-kv-slide-item {
  width: 670px !important;
  padding: 0 15px 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-kv .top-kv-slide .top-kv-slide-item {
    width: 420px !important;
    padding: 0 10px 0;
  }
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-slide .top-kv-slide-item {
    width: 280px !important;
    padding: 0 8px 0;
  }
}
.top-kv .top-kv-slide .top-kv-slide-item .top-kv-slide-item-img {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 66.71875%;
  overflow: hidden;
}
.top-kv .top-kv-slide .top-kv-slide-item .top-kv-slide-item-img > img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.top-kv .top-kv-slide .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 14px;
  padding: 30px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-slide .slick-dots {
    gap: 8px 8px;
    padding: 14px 0 0;
  }
}
.top-kv .top-kv-slide .slick-dots > li {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #B3B3B3;
  border-radius: 50%;
}

@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-slide .slick-dots > li {
    width: 8px;
    height: 8px;
  }
}

.top-kv .top-kv-slide .slick-dots > li > button {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 0 !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
}
.top-kv .top-kv-slide .slick-dots > li.slick-active {
  background-color: #93BD4C;
}
.top-kv .top-kv-loading {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 1;
}
.top-kv .top-kv-loading::after {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-top: 4px solid rgba(147, 189, 76, 0.1);
  border-right: 4px solid rgba(147, 189, 76, 0.1);
  border-bottom: 4px solid rgba(147, 189, 76, 0.1);
  border-left: 4px solid #93BD4C;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: keyKvLoading 1.1s infinite linear;
          animation: keyKvLoading 1.1s infinite linear;
}
@-webkit-keyframes keyKvLoading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes keyKvLoading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* SECTION GROUP 01
============================================================ */
.top-sectionGroup__01 .top-sectionGroupInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .top-sectionGroup__01 .top-sectionGroupInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 60px 0;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.top-sectionGroup__01 .top-news {
  width: 62%;
}
@media only screen and (max-width: 1024px) {
  .top-sectionGroup__01 .top-news {
    width: 100%;
  }
}
.top-sectionGroup__01 .top-linkBanners {
  width: 30%;
}
@media only screen and (max-width: 1024px) {
  .top-sectionGroup__01 .top-linkBanners {
    width: 100%;
  }
}
.top-sectionGroup__01.isFull .top-sectionGroupInner {
  display: block;
}
.top-sectionGroup__01.isFull .top-news,
.top-sectionGroup__01.isFull .top-linkBanners {
  width: 100%;
}

/* copy
============================================================ */

.copy{
	text-align: center;
	margin-bottom: 50px;
	font-size: 120%;
	font-weight: 700;
}

p.copy1{
    padding-bottom: 5px;
}

p.copy2{
    font-size: 110%;
	color: #61A336;	
}

@media only screen and (max-width: 840px) {
	
.copy {
    font-weight: 700;
}
	
	
p.copy1 {
    padding-bottom: 15px;
}
	
p.copy2 {
    line-height: 130%;
}
	
span.kaigyo{
	display: block;
}
}

@media only screen and (max-width: 510px) {
.copy {
    margin-bottom: 30px;
    font-size: 100%;
}
}

@media only screen and (max-width: 430px) {
.copy {
    font-size: 90%;
}
}

@media only screen and (max-width: 390px) {
.copy {
    font-size: 85%;
}
}

/* NEWS
============================================================ */
.top-news .top-news-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  border-bottom: 1px solid #93BD4C;
  padding: 0 0 30px;
  margin: 0 0 10px;
}
.top-news .top-news-header .top-news-header-hl {
  margin: -0.25em 0 -0.25em;
}
@media print, screen and (min-width: 1025px) {
  .top-news .top-news-header .top-news-header-hl {
    text-align: left !important;
  }
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-header .top-news-header-hl {
    text-align: center;
  }
}
.top-news .com-news-list > ul > li:first-child {
  border-top: none;
}
.top-news .com-news-list > ul > li:last-child {
  border-bottom: none;
}
@media print, screen and (min-width: 1025px) {
  .top-news .com-news-list > .no-content {
    text-align: left;
  }
}
.top-news .top-news-moreBtn {
  max-width: 7em;
  min-height: 2.5em;
  font-size: 0.9rem;
  line-height: 1em;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-moreBtn {
    font-size: 1rem;
    margin: 20px auto 0;
  }
}

/* BUSINESS
============================================================ */


.b-list{}


.b-list ul{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    gap: 0 1em;
}


.b-list ul li{
	width: 31%;
    margin-bottom: 40px;
    box-shadow: 0 0 10px #bcbcbc;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
	background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 15px;
}

@media only screen and (max-width: 840px) {
.b-list ul li {
    font-size: 90%;
}
}

@media only screen and (max-width: 780px) {
.b-list ul li {
    width: 48%;
    margin-bottom: 25px;
}
}

@media only screen and (max-width: 500px) {
.b-list ul li {
        width: 100%;
        font-size: 100%;
	}}


.b-list ul li a {
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.b-list ul li span.title {
    display: block;
    font-weight: bold;
    font-size: 130%;
    padding: 20px 20px 10px 20px;
}


@media only screen and (max-width: 600px) {
.b-list ul li span.title {
    padding: 15px 20px 3px 20px;
}
}

@media only screen and (max-width: 530px) {
.b-list ul li span.title {
        font-size: 110%;
    }
}


@media only screen and (max-width: 500px) {
	
.b-list ul li span.title {
        font-size: 130%;
    }
	
}

.b-list ul li span.description{
	line-height: 1.7em;
    font-size: 80%;
    color: #4d4d4d;
    padding: 5px 20px 20px 20px;
    display: block;
}


.b-list ul li span.description a {
	color: #4D4D4D;
}

.b-list ul li span.thumb {
	display: flex;
    text-align: center;
}


.b-list ul li span.thumb img {
}

/*
@media only screen and (max-width: 460px) {
	
.b-list ul {
    gap: 0 .7em;
}
	
.b-list ul li {
        margin-bottom: 17px;
    }
	
.b-list ul li span.title {
        padding: 12px 10px 0 10px;
    }
	
.b-list ul li span.description {
    line-height: 1.5em;
    font-size: 75%;
    padding: 5px 10px 15px 10px;
    letter-spacing: 0;
}

}
*/














