
body {
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
  color: rgba(0, 136, 34);
  text-align: center;
}

a {
  color: #333;
}

hr {
  margin-top: 21.44px;
  width: 85%;
  border: none;
  border-bottom: 1px solid #ccc;
}


.greeting-text-box p {
  color: #333;
}

.text-right1 {
  text-align: right;
  margin-right: 33px;
}

.text-right2 {
  margin-top: -20px;
  text-align: right; 
}

/* 見出しの文字のカラー */
.greeting-moji-color {
  text-align: center;
  color:rgba(0, 136, 34)
}

.greeting-section {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  padding: 00px 0px;
  background: #f9f9f9; /* セクション全体の背景色 */
}

/* それぞれのコンテンツのコンテナ */
.greeting-box {
  display: flex;
  margin-bottom: 21px;
  flex-direction: row;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 85%;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

/* 画像のスタイル */
.greeting-image-box {
  flex: 1;
}

.greeting-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.greeting-text-box {
  flex: 1;
  padding: 30px;
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .greeting-box {
    flex-direction: column-reverse;
  }

  .greeting-image-box img {
    height: auto;
    max-height: 300px;
  }
}