/* TOPセクション */
.top-section {
  position: relative;
  text-align: center;
  background-color: #f4f4f4;
  margin-top: 60px; /* ナビゲーションバーに被らないように上にマージンを追加 */
  overflow: hidden; /* 画像がセクションからはみ出さないようにする */
}
.top-image {
  width: 100%;
  height: 200px; /* PCで縦幅25% */
  overflow: hidden;
  position: relative;
}
.top-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* 画像の縦横比を維持しつつ、上下中央を基準にトリミング */
}
.top-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.top-icon {
  width: 30%; /* PC表示で横幅30% */
  height: auto;
  margin-bottom: 10px;
}
.top-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap; /* 改行を防ぐ */
}
@media (max-width: 768px) {
  .top-image {
    height: 200px; /* モバイルで縦幅40% */
  }
  .top-icon {
    width: 50%; /* モバイル表示で横幅50% */
  }
}
/*==================================================
基本設定
===================================*/
body {
    font-family: 'Noto Sans JP', sans-serif;
    box-shadow: 0px 0px;
    margin: 0;
    padding: 0;
}

.text-shadow {
    text-shadow: 2px 2px 6px #000000;
}

.top-banner {
    background-image: url(../images/top_backimage.jpg);
    background-size: cover;
    margin-top: 60px;	
}

.link-banner-heading {
    font-weight: bold;
}

.border-style {
    padding: 1em;
    position: relative;
    text-align: center;
    height: 100%;
    width: 100%;
}

.border-style::before, .border-style::after {
    content: '';
    width: 1em;
    height: 1em;
    position: absolute;
}

.border-style::before {
    border-left: solid 6px #ffffff;
    border-top: solid 6px #ffffff;
    top: 0;
    left: 0;
}

.border-style::after {
    border-right: solid 6px #ffffff;
    border-bottom: solid 6px #ffffff;
    bottom: 0;
    right: 0;
}

/* メディアクエリ */
@media (max-width: 767px) {
    .top-banner {
        height: 25ex;
    }
}