@charset "UTF-8";

.small_txt{
font-size: 30px;
}

/* 480px */
@media only screen and (max-width: 30em) {
.small_txt{
font-size: 20px;
font-weight: bold;
}
}


/* 下からふわっとアニメーション設定 */
.animation {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}
.animation.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.8s;
}


.topics-box_title01 {
  margin: 1% auto 1% auto;
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.6;
  color: #70924D;
  border: double #70924D;
  font-weight: normal;
}
/* 480px */
@media only screen and (max-width: 30em) {
.topics-box_title01 {
  font-size: 16px;
}
}

.sp_box01 {
	text-align: center;
	padding: 3% 1%;
	margin: 3% auto;
	border: 4px #83ad60 double;
    background-color: #f9f9f9;
}
/* 480px */
@media only screen and (max-width: 30em) {
.sp_box01 {
	width: 95%;
	padding: 4% 2%;
	margin: 5px auto;
	border: none;
}
}

.sp_box01_h3_01 {
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 120%;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 10px;
 background-color: #5d7e2a;
 color: #fff;
}

.sp_box01_h3_01 span {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 2;
}

@media only screen and (max-width: 48em) {
  .sp_box01_h3_01 {
    font-size: 16px;
    font-size: 1.6rem;
	margin-bottom: 15px;
}
  .sp_box01_h3_01 span { 
    font-size: 18px;
    font-size: 1.8rem;
}
}


.sp_box01_txt_01 {
  margin: 1% auto 1% auto;
  text-align: center;
  font-size: 20px;
  font-size: 2.0rem;
  letter-spacing: 0.5px !important;
  font-weight: bold;
  color: #70924D;
}

.sp_box01_txt_01 span {
  font-size: 28px;
  font-size: 2.8rem;
}
/* 480px */
@media only screen and (max-width: 30em) {
.sp_box01_txt_01 {
  font-size: 14px;
}

.sp_box01_txt_01 span {
  font-size: 16px;
}
}



/* ========= 沿革 ==========*/

/* コンテナスタイル */
.timeline-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

/* タイムラインの基本スタイル */
.timeline {
  position: relative;
  list-style: none;
  padding: 0;
}

/* 縦線 */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 4px;
  background: #e0e0e0;
  z-index: 1;
}

/* タイムラインアイテム */
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 60px;
}

/* 最後のアイテムの下マージンを消す */
.timeline-item:last-child {
  margin-bottom: 0;
}

/* 丸いノード */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8px; /* 縦線の中央に配置 */
  width: 28px; /* 丸の直径 */
  height: 28px; /* 丸の直径 */
  border-radius: 50%;
  background: #5d7e2a;
  border: 4px solid #fff;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 日付スタイル */
.timeline-date {
  position: relative;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #5d7e2a;
  text-align: left;
}

/* コンテンツボックス */
.timeline-content {
  position: relative;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* コンテンツボックスの矢印 */
.timeline-content::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fff;
  z-index: 3;
}

/* コンテンツ内の見出し */
.timeline-content h3 {
  margin-top: 0;
  color: #5d7e2a;
  font-size: 20px;
}

/* コンテンツ内の段落 */
.timeline-content p {
  margin-bottom: 15px;
}

/* コンテンツ内の最後の要素のマージンを消す */
.timeline-content *:last-child {
  margin-bottom: 0;
}

/* コンテンツ内の画像 */
.timeline-content img {
  max-width: 100%;
  border-radius: 4px;
  margin: 0;
}

.small_img{
 width: 300px;
 margin: auto;
}
/* 480px */


@media only screen and (max-width: 30em) {
/* コンテナスタイル */
.timeline-container {
  margin: 40px auto;
  padding: 0 ;
}

/* 縦線 */
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  width: 2px;
}

/* タイムラインアイテム */
.timeline-item {
  padding-left: 18px;
}

/* 丸いノード */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -3px; /* 縦線の中央に配置 */
  width: 15px; /* 丸の直径 */
  height: 15px; /* 丸の直径 */
  border-radius: 50%;
  background: #5d7e2a;
  border: 2px solid #fff;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* コンテンツボックス */
.timeline-content {
  padding: 8px;
}

.small_img{
 width: 100%;
}
}


/* ========= 沿革 ==========*/