
/* ==================================================
   ぴあサポートひろしま
   ホームページ・ビルダーで編集しやすいCSS
   複雑なJavaScript・高度なレイアウトは使用していません
================================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Sans", Meiryo, sans-serif;
  color: #15233b;
  background: #ffffff;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.wrap {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* ヘッダー */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #d8e8f7;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-area {
  display: block;
  text-decoration: none;
  color: #063a78;
}

.logo-area img {
  width: 300px;
  max-width: 100%;
}

.logo-area span {
  display: block;
  font-size: 13px;
  margin-top: 3px;
}

.menu-area {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: bold;
  color: #063a78;
}

.menu-area a {
  text-decoration: none;
}

/* メインビジュアル */
.hero {
  background: linear-gradient(110deg, #ffffff, #eaf6ff);
  padding: 70px 0;
}

.hero-box {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  width: 360px;
  background: #ffffff;
  border: 1px solid #d8e8f7;
  border-radius: 24px;
  padding: 25px;
}

.hero h1 {
  color: #063a78;
  font-size: 46px;
  line-height: 1.35;
  margin: 10px 0 20px;
}

.sub-title {
  color: #0b67bd;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.button-box {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin: 5px 8px 5px 0;
}

.btn.blue {
  background: #063a78;
  color: #ffffff;
}

.btn.white {
  background: #ffffff;
  color: #063a78;
  border: 2px solid #063a78;
}

/* 共通セクション */
.section {
  padding: 65px 0;
}

.light {
  background: #f7fbff;
}

h1, h2, h3 {
  color: #063a78;
}

h2 {
  font-size: 30px;
}

.center {
  text-align: center;
}

.two-column {
  display: flex;
  gap: 40px;
  align-items: center;
}

.two-column > div {
  flex: 1;
}

.simple-box {
  background: #f7fbff;
  border: 1px solid #d8e8f7;
  border-radius: 20px;
  padding: 35px;
}

/* カード */
.card-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #d8e8f7;
  border-radius: 20px;
  padding: 28px;
}

.blue-card {
  background: #063a78;
  color: #ffffff;
}

.blue-card h2,
.blue-card h3 {
  color: #ffffff;
}

.large {
  font-size: 24px;
  font-weight: bold;
}

.mail {
  font-size: 18px;
  font-weight: bold;
  color: #063a78;
  word-break: break-all;
}

.blue-card .mail {
  color: #ffffff;
}

/* お知らせ */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  border-bottom: 1px solid #d8e8f7;
  padding: 12px 0;
}

.news-list span {
  display: inline-block;
  min-width: 110px;
  color: #66758a;
  font-weight: bold;
}

/* 下層ページ */
.page-title {
  background: #eaf6ff;
  text-align: center;
  padding: 60px 0;
}

.page-title h1 {
  font-size: 36px;
  margin: 0 0 10px;
}

.center-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sitemap-list a {
  color: #063a78;
  font-weight: bold;
}

/* フッター */
.site-footer {
  background: #063a78;
  color: #ffffff;
  padding: 35px 0 20px;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-name {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-name img {
  width: 65px;
  background: #ffffff;
  border-radius: 12px;
}

.footer-name p {
  margin: 0;
  font-size: 13px;
}

.footer-menu {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.copy {
  text-align: center;
  color: #d6e8fa;
  font-size: 13px;
}

/* スマートフォン対応 */
@media screen and (max-width: 800px) {
  .header-box,
  .hero-box,
  .two-column,
  .footer-box {
    display: block;
  }

  .menu-area {
    margin-top: 15px;
    display: block;
  }

  .menu-area a {
    display: block;
    padding: 8px 0;
    border-top: 1px solid #d8e8f7;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-image {
    width: 100%;
    margin-top: 30px;
  }

  .card {
    width: 100%;
  }

  .footer-menu {
    display: block;
    margin-top: 20px;
  }

  .footer-menu a {
    display: block;
    padding: 5px 0;
  }
}
