@charset "UTF-8";
/*スライダー*/

.slider{
overflow: hidden;
}

.slick-dots {
  bottom: 20px !important;
  }
  
.slick-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.slick-dotted.slick-slider {
  margin-bottom: 0!important;
}

.information-bg {
  background-color: #56b356;
  padding: 0 0 3em 0;
}

#information{
padding: 4em 0 0 0;
}


#information h2 {
  position: relative;
  font-size: 24px; /* フォントサイズ */
  font-weight: bold;
  color: white; /* テキストカラー */
  text-align: center;
  margin: 0; /* 上下の余白 */
  padding:;
}

#information h2::before,
#information h2::after {
content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background-color: white;
  transform: translateY(-50%);
}


@media (max-width: 768px) {
#information h2::before,
#information h2::after {
  width: 10%;
}
  }
  
  
#information h2::before {
  left: 0; /* 左側に配置 */
}

#information h2::after {
  right: 0; /* 右側に配置 */
}

#information .information-main-area{
display:flex;
  flex-wrap: wrap;
  padding: 2.5em 0 0 0;
}


#information .information-main {
  width: 46%;
  margin: 2%;
  background-color: #fff;
  padding: 1em;
  border-radius: 10px;
  text-align: center;
}
#information .information-main img{
}
@media (max-width: 768px) {
#information .information-main-area{
    flex-direction: column;
    text-align: center;
  }
  
  #information .information-main {
    width: 98%;
  }
  }


#information .information-main h3{
font-size: 1.1rem;
  padding: 1em 0;
}


#information .information-main .information-box{
display:flex;
}


#information .information-main .information-box .information_item_title{
background-color: #56b356;
  width: 50%;
  text-align: left;
  color: #fff;
  padding: 0.5em;
  border-bottom: 1px solid;
}

#information .information-main .information-box .information_item_time{
width: 60%;
  text-align: left;
  font-weight: bold;
  padding: 0.5em;
}

#information .information-main .information-box .information_item_time .detail01 { 
display: inline-block; line-height: 1.5; }
#information .information-main .information-box .information_item_time .detail02 { 
display: inline-block; color: #af1d38; line-height: 1.5; }


/* #about-section 内の基本スタイル */
#about-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#about-section .left-image {
  flex: 1;
  position: relative;
}

#about-section .left-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* 右端を透過させるために、線形グラデーションで画像の右側を透明に */
  background: url('../img/top/corporation.png') no-repeat center center;
  background-size: cover;
  /* 右側に透過効果を加える */
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

/* #about-section 内の右側コンテンツ */
#about-section .right-content {
    flex: 1;
    padding: 0 30px;
    min-width: 600px;
  text-align: center;
}

#about-section .right-content h2 {
        color: #006400;
	font-weight:normal;
	    font-size: 0.8rem;
}

#about-section .right-content .subheading {
      color: #006400;
    font-size: 2.2rem;
	    line-height: 1.2;
}

#about-section .right-content .slogan {
    font-size: 1.4rem;
      color: #006400;
  margin: 20px 0;
}

#about-section .right-content .description {
font-size: 16px;
    color: #444;
    line-height: 1.6;
    padding: 0 1em;
  text-align: left;
	}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  #about-section .container {
    flex-direction: column;
    text-align: center;
  }

  #about-section .left-image {
    margin-bottom: 10px;
  }

  #about-section .right-content {
padding: 20px 0;
	    min-width: auto;
  }

  #about-section .right-content h2 {
    font-size: 10px;
  }

  #about-section .right-content .subheading {
    font-size: 28px;
  }

  #about-section .right-content .slogan {
    font-size: 18px;
  }

  #about-section .right-content .description {
    font-size: 14px;
  }
}



















