/*
body {
    font-family: sans-serif;
    margin: 0;
    padding: 2rem;
    background: #fff;
    color: #333;
    line-height: 1.6;
}
*/
.top-section {
  background-color: #ffe600; /* 黄色背景 */
  padding: 2rem;
}

.top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.top-text {
  flex: 0 0 30%; /* ← 幅40%固定に */
  font-size: 1rem;
  line-height: 1.8;
}

.top-image {
  /* flex: 0 0 70%; /* ← 幅60%固定に */
  text-align: right;
  padding-right: 10px;
}

.top-image img {
  max-width: 100%;
  height: auto;
}

.top-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;  /* 右側に黄色部分を出す */
  bottom: 0;
  width: 10px;  /* 幅は調整 */
  background-color: #ffe600;  /* 黄色 */
}

@media screen and (max-width: 768px) {
  .top-content {
    flex-direction: column;
    text-align: left;
  }
  .top-image {
    text-align: center;
  }
  .only_pc {
      display:none;
  }
}
.top-section img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

.quote_disaster,.quote_town,.quote_ict,.quote_tourism,.quote_sports {
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    margin: 2rem 0;
}

.quote_disaster::before,
.quote_disaster::after {
    content: "“";
    color: #f3c300;
    font-size: 2rem;
    vertical-align: middle;
}
.quote_town::before,
.quote_town::after {
    content: "“";
    color: #9ac451;
    font-size: 2rem;
    vertical-align: middle;
}
.quote_ict::before,
.quote_ict::after {
    content: "“";
    color: #76bcd5;
    font-size: 2rem;
    vertical-align: middle;
}
.quote_tourism::before,
.quote_tourism::after {
    content: "“";
    color: #d95400;
    font-size: 2rem;
    vertical-align: middle;
}
.quote_sports::before,
.quote_sports::after {
    content: "“";
    color: #568594;
    font-size: 2rem;
    vertical-align: middle;
}


.content-section {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
/* 下段のシーン画像を横幅いっぱいに表示 */
.content-images {
  width: 100%; /* 親要素が横幅いっぱいになるように設定 */
  text-align: center; /* 画像を中央寄せに */
}

.content-images img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
/* 3段組みのテキスト */
.content-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.content-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

@media screen and (max-width: 768px) {
    .content-section {
    grid-template-columns: 1fr;
    }
}
