

@charset "utf-8";
/*===========================
add
===========================*/

.insta a {
	color: rgba(245,164,66,1.00);
}

/* ===== セクション ===== */
.event-insurance-section {
  padding: 70px 20px;
  background: #f9f9f9;
}

/* タイトル */
.event-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
}

/* 説明 */
.event-text {
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.9;
  text-align: left;
}

/* ===== 囲み（背景画像） ===== */
.event-box {
  background: url("../img/content/8.jpg") center/cover no-repeat;
  padding: 50px 20px;
  margin-bottom: 60px;
  position: relative;
}

/* 白オーバーレイ */
.event-box::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(255,255,255,0.9);*/
}

/* 中身 */
.event-box-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* 見出し */
.event-box h3 {
  text-align: center;
  /*margin-bottom: 25px;*/
  font-size: 20px;
}

/* リスト */
.event-list {
  columns: 2;
  column-gap: 40px;
  margin-bottom: 30px;
}

.event-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.event-list li::before {
	content: "\f058"; /* ← チェックアイコン */
	font-family: "Font Awesome 6 Free";
	font-weight: 900; /* ← solid用 */
	position: absolute;
	left: 0;
	color: #1abc9c; /* 色はお好みで */
	margin-right: 5px;
}
.event-list li {
  padding-left: 22px;
}

.event-list li::before {
  font-size: 18px;
  top: 3px;
}

/* 補足 */
.event-note {
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
}

/* ===== CTA ===== */
.event-cta {
  text-align: center;
}

.event-cta h3 {
  font-size: 20px;
  /*margin-bottom: 10px;*/
}

.event-cta p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ボタン */
.event-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #1abc9c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.event-btn:hover {
  background: #16a085;
}

/* ===== スマホ ===== */
@media screen and (max-width: 768px) {

  .event-list {
    columns: 1;
  }

}

.faq-box {
  background: url("../img/content/10.jpg") center/cover no-repeat;
  padding: 50px 20px;
  margin-bottom: 60px;
  position: relative;
}