﻿body {
  font-family: "Meiryo", sans-serif;
}

.bx-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
  z-index: 0;
}

.bx-viewport {
  height: auto !important;
  max-height: none !important;
}

.slider-wrap {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  text-align:center;
}

.bx-wrapper .bx-prev {
  left: 0px; /* 左端からの距離 */
}

.bx-wrapper .bx-next {
  right: 0px; /* 右端からの距離 */
}

.slide-wrapper {
  position: relative;
}

.link-area {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 10;
}

.left {
  left: 0;
  width: 60%; 
}

.right{
  right: 0;
  width: 40%; 
}

.section {
  max-width: 700px;
  margin: 0px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 16px;
  border-bottom: 2px solid #bbb;
  margin-bottom: 20px;
  color: #444;
  text-align:left;
}

/* お知らせリスト型 */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.news-list li {
  padding: 5px 14px;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
  color: #333;
  display: flex;
  justify-content: flex-start;
  text-align:left;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list span {
  display: inline-block;
  width: 120px;
  color: #666;
  font-weight: bold;
  margin-right: 10px;
}

.news-list a {
  color: #005599;
  text-decoration: none;
}

.news-list a:hover {
  text-decoration: underline;
}

.news-link {
  text-align: right;
  margin-top: 10px;
}

.news-link a {
  color: #005599;
  text-decoration: none;
  font-weight: bold;
  font-size:13px;
}

.news-link a:hover {
  text-decoration: underline;
}

/* ピックアップカード型 */
.pick-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pick-card {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s;
}

.pick-card:hover {
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.pick-card img {
  width: 100%;
  height: 110px; /* 表示枠の高さを固定 */
  object-fit: contain; /* 画像全体を縮小して表示 */
  margin-bottom: 5px;
  margin-top:10px;
  border-radius: 4px;
}

.pick-card h3 {
  font-size: 13px;
  margin: 0 0 8px;
  color: #005599;
}

.pick-card p {
  font-size: 12px;
  color: #333;
}

.partner-note {
  font-size: 12px;
  text-decoration: none;
  color: #666;
  text-align: center;
}

.partner-note a {
  color: #666;
  text-decoration: none;
}

.partner-note a:hover {
  text-decoration: underline;
}

.footer-nav {
 display: flex;
 width: 600px;
 background-color: #FFFFFF;
 border-top: 1px solid #C0D8F0;
 border-bottom: 1px solid #C0D8F0;
 border-left: 1px solid #C0D8F0;
 border-right: 1px solid #C0D8F0;
 font-size: 10pt;
 text-align: center;
 box-sizing: border-box;
}

.footer-nav a {
 flex: 1;
 padding: 1px 0;
 text-decoration: none;
 color: #00006A;
 border-left: 1px solid #C0D8F0;
 white-space: nowrap;
}

.footer-nav a:first-child {
 border-left: none;
}

.copy {
 font-size: 8pt;
 color:#333;
 text-align:center;
}

.copy a {
 text-decoration: none;
}

