@charset "UTF-8";
/* ===================== */
/* ヘッダーエリア */
/* ===================== */
.snd {
  justify-content: space-between;
}

/* ===================== */
/* イベント */
/* ===================== */
.event-section {
  width: 100%;
  position: relative;
}

.title__inner {
  width: 90%;
  max-width: 1048px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  top: 20px;
}

.event-heading {
  display: flex;
  align-items: center; /* アイコンとタイトルSVGを縦中央揃え */
  gap: 20px; /* アイコンと文字の間の余白 */
  position: relative;
  margin: 0;
  left: -40px;
}

.event-icon {
  width: 5%;
  min-width: 80px;
  height: auto;
  display: block; /* 下の余白（隙間）を防ぐ */
}

.event-bg {
  width: 100%;
  margin: 0;
  padding: 110px 0 0px;
  position: relative;
  top: -70px;
  overflow: hidden;
  margin-bottom: -70px;
}

.event-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #8f8921;
  transform: skewY(-3deg) translateY(90px);
  z-index: 0;
}

.event-section__inner {
  width: 90%;
  max-width: 1048px;
  min-height: 500px;
  margin: 0 auto;
  padding: 3% 0;
  position: relative;
}

.post__ttl {
  width: 96%;
  max-width: 1048px;
  margin: 1% auto 0;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #ffffff;
}

.post__text {
  width: 96%;
  max-width: 1048px;
  margin: 0 auto;
  padding: 5% 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px; /* テキストと画像の間隔 */
  direction: rtl;
}

.post__text .content-text {
  flex: 1;
  color: #ffffff;
  margin-top: 0px;
  direction: ltr;
}

.post__text .content-text p {
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 500;
}

.post__text .content-image {
  flex: 1;
  max-width: 400px;
  min-width: 300px;
  left: 0;
  position: relative;
}

.content-image {
  text-align: center;
  margin-bottom: 2em;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.content-image a:hover img {
  opacity: 0.9;
}

.image-caption {
  font-size: 1.3rem;
  color: #ffffff;
  margin-top: 1em;
  line-height: 1.5;
  text-align: center;
}

/* ボタン */
.cta-wrap {
  text-align: center;
  margin: 4em auto;
}

.cta-btn {
  display: inline-block;
  background: #006a41;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  padding: 1.2em 2.2em;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

/* ホバー効果 */
.cta-btn:hover {
  color: #fff;
  background: #005937;
}

@media (max-width: 768px) {
  .event-heading {
    display: flex;
    align-items: center; /* アイコンとタイトルSVGを縦中央揃え */
    gap: 10px; /* アイコンと文字の間の余白 */
    position: relative;
    margin: 0;
    left: -10px;
  }
  .event-icon {
    width: 5%;
    min-width: 65px;
    height: auto;
    display: block; /* 下の余白（隙間）を防ぐ */
  }
  .post__ttl {
    width: 96%;
    margin: 1% auto 8%;
  }
  .post__text {
    width: 100%;
    max-width: 1048px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: block;
    gap: 0; /* テキストと画像の間隔 */
  }
  .cta-wrap {
    text-align: center;
    margin: 2em auto;
  }
  .post__text .content-image {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
    left: 0;
    position: relative;
  }
}/*# sourceMappingURL=layout_snd.css.map */