t
/* ============= default.css (リセット・基本スタイル) ============= */
/* リセットCSS（簡易版） */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  background-color: #f8f8f8;
  color: #333;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: #0066cc;
}
a:hover {
  opacity: 0.7;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
}
p {
  margin-bottom: 1em;
}
ul {
  list-style-type: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ============= import.css (外部フォント等インポート) ============= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* ============= modules.css (各モジュール毎のスタイル) ============= */
/* ヘッダー */
header {
  background: #002e5d;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}
header h1 {
  font-size: 2em;
  margin-bottom: 0.3em;
}
/* ロゴアイコン（左上） */
.logo-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 300px;
  height: auto;
  z-index: 1000;
}

/* ナビゲーション */
nav {
  background: #004080;
}
nav ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
nav li {
  margin: 0;
}
nav a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-weight: bold;
}
nav a:hover,
nav a.current {
  background-color: #003060;
}

/* メインビジュアル（スライダー） */
#main-visual {
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
}
.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.slider div {
  width: 100%;
  height: 100%;
}
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* メインコンテンツ */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* フッター */
footer {
  background: #002e5d;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

/* ============= print.css (印刷用スタイル) ============= */
@media print {
  body {
    background: #fff;
    color: #000;
  }
  nav, footer {
    display: none;
  }
  main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* ===== Slick Slider 用のスタイル ===== */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slide {
  float: left;
  height: auto;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #fff;
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background: #0066cc;
}
  