@charset "UTF-8";
/* =========================================
   Variables & Mixins
   ========================================= */
/* コンテンツ最大幅 */
/* 左右の余白 */
/* スマホ切り替えポイント */
/* セクション間隔の定義 */
/* =========================================
   Base & Utilities
   ========================================= */
* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  margin: 0;
  line-height: 1.6;
  padding-top: 160px;
}
@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }
}
body.is-locked {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.l-spacer {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .l-spacer {
    margin-bottom: 60px;
  }
}

.u-icon-sm {
  font-size: 14px;
  vertical-align: middle;
}

.u-text-sub {
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
  margin-top: 5px;
}

/* =========================================
   Components (共通パーツ)
   ========================================= */
.c-heading-md {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 0;
}
.c-heading-md::before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background-color: #10649D;
  margin-right: 10px;
}

.c-heading-lg {
  font-size: 22px;
  font-weight: bold;
  color: #10649D;
  margin: 0 0 30px;
}

/* =========================================
   Header
   ========================================= */
.l-header {
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.l-header.is-fixed {
  position: fixed;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}
.l-header__inner {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo img {
  display: block;
  height: 40px;
  width: auto;
  margin: auto;
}
@media (max-width: 768px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    padding-top: 80px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 90;
  }
  .l-header__nav.is-active {
    transform: translateX(0);
  }
}
.l-header__list {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #666;
}
@media (max-width: 768px) {
  .l-header__list {
    flex-direction: column;
    padding: 20px;
    font-size: 16px;
  }
}
.l-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .l-header__hamburger {
    display: block;
  }
}
.l-header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #10649D;
  transition: all 0.3s;
}
.l-header__hamburger span:nth-of-type(1) {
  top: 5px;
}
.l-header__hamburger span:nth-of-type(2) {
  top: 14px;
}
.l-header__hamburger span:nth-of-type(3) {
  top: 23px;
}
.l-header__hamburger.is-active span:nth-of-type(1) {
  top: 14px;
  transform: rotate(45deg);
}
.l-header__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-of-type(3) {
  top: 14px;
  transform: rotate(-45deg);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* =========================================
   Tab Navigation
   ========================================= */
.p-tab-nav {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-tab-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.p-tab-nav__item {
  width: calc(25% - 15px);
  text-align: center;
  padding: 15px;
  border: 1px solid #10649D;
  color: #10649D;
  border-radius: 4px;
  font-weight: bold;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-tab-nav__item.is-active {
  background: #10649D;
  color: #fff;
}
@media (max-width: 768px) {
  .p-tab-nav__item {
    width: calc(50% - 5px);
    font-size: 14px;
    padding: 10px;
  }
}
.p-tab-nav__empty {
  width: calc(25% - 15px);
}
@media (max-width: 768px) {
  .p-tab-nav__empty {
    display: none;
  }
}

/* =========================================
   Hot News
   ========================================= */
.p-hot-news__content {
  /* スクロールなし：要素の大きさに応じて表示 */
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.p-hot-news__content img {
  max-width: 100%;
  height: auto;
}

/* =========================================
   News List
   ========================================= */
.p-news-item:last-child a {
  margin-bottom: 0;
}
.p-news-item__link {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  padding: 20px 30px;
  border-radius: 4px;
  transition: background 0.3s;
  margin-bottom: 15px;
}
.p-news-item__link:hover {
  background: rgb(236.25, 236.25, 236.25);
}
@media (max-width: 768px) {
  .p-news-item__link {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-news-item__date {
  font-size: 13px;
  color: #333;
  margin-right: 40px;
  min-width: 80px;
}
@media (max-width: 768px) {
  .p-news-item__date {
    margin-bottom: 5px;
  }
}
.p-news-item__title {
  margin: 0;
  font-weight: normal;
  flex-grow: 1;
  color: #333;
  word-break: break-all;
}
.p-news-item__icon {
  color: #10649D;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .p-news-item__icon {
    align-self: flex-end;
    margin-top: -20px;
  }
}

/* =========================================
   Pagination
   ========================================= */
.p-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.p-pagination .nav-links,
.p-pagination ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-pagination .nav-links li,
.p-pagination ul li {
  flex: 0 0 auto;
  display: flex;
}
.p-pagination li .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  box-sizing: border-box;
  border: 1px solid #10649D;
  color: #10649D;
  text-decoration: none;
  flex-shrink: 0;
}
.p-pagination li .page-numbers.current {
  background: #10649D;
  color: #fff;
}
.p-pagination a.page-numbers:hover {
  background: rgba(16, 100, 157, 0.1);
}
.p-pagination span.page-numbers.current {
  pointer-events: none;
}

/* =========================================
   Footer
   ========================================= */
.l-footer {
  text-align: center;
  padding: 30px 0;
  font-size: 12px;
  color: #999;
}

/* =========================================
News Detail (お知らせ詳細)
========================================= */
.c-divider {
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

.p-news-detail__back {
  margin-bottom: 30px;
}
.p-news-detail__back a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}
.p-news-detail__back a span {
  color: #10649D;
}
.p-news-detail__date {
  display: block;
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
}
.p-news-detail__title {
  font-size: 28px;
  font-weight: bold;
  color: #10649D;
  margin: 0 0 40px;
  line-height: 1.4;
  word-break: break-all;
}
@media (max-width: 768px) {
  .p-news-detail__title {
    margin: 0 0 20px;
    font-size: 22px;
  }
}
.p-news-detail__body {
  font-size: 16px;
  line-height: 1.8;
}
.p-news-detail__body p {
  margin-bottom: 2em;
}
.p-news-detail__body h2 {
  font-size: 28px;
  color: #fff;
  background-color: #10649D;
  padding: 15px 20px;
  margin: 100px 0 40px;
  border-radius: 4px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-news-detail__body h2 {
    font-size: 22px;
    margin: 60px 0 30px;
    padding: 10px;
  }
}
.p-news-detail__body h3 {
  font-size: 26px;
  color: #10649D;
  margin: 100px 0 40px;
  padding-left: 15px;
  position: relative;
  font-weight: bold;
  display: flex;
  align-items: center;
  min-height: 1.4em;
}
.p-news-detail__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #10649D;
}
@media (max-width: 768px) {
  .p-news-detail__body h3 {
    margin: 60px 0 30px;
    font-size: 20px;
  }
}
.p-news-detail__body h4 {
  font-size: 24px;
  color: #10649D;
  margin: 100px 0 40px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-news-detail__body h4 {
    margin: 60px 0 30px;
    font-size: 18px;
  }
}
.p-news-detail__body ul {
  margin-bottom: 30px;
  padding-left: 0;
}
.p-news-detail__body ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.p-news-detail__body ul li::before {
  content: "・";
  color: #10649D;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.p-news-detail__body ol {
  margin-bottom: 30px;
  padding-left: 0;
  counter-reset: my-counter;
}
.p-news-detail__body ol li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.p-news-detail__body ol li::before {
  counter-increment: my-counter;
  content: counter(my-counter) ".";
  color: #10649D;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.p-news-detail__body .wp-block-table, .p-news-detail__body table {
  width: 100%;
  border-collapse: collapse;
}
.p-news-detail__body .wp-block-table tbody, .p-news-detail__body table tbody {
  border: 1px solid #ddd;
}
.p-news-detail__body .wp-block-table tbody tr:first-child, .p-news-detail__body table tbody tr:first-child {
  background-color: #10649D;
  color: #fff;
  text-align: center;
}
.p-news-detail__body .wp-block-table tbody tr > td:first-of-type, .p-news-detail__body table tbody tr > td:first-of-type {
  background-color: #10649D;
  color: #fff;
  text-align: left;
  min-width: 200px;
}
@media (max-width: 768px) {
  .p-news-detail__body .wp-block-table tbody tr > td:first-of-type, .p-news-detail__body table tbody tr > td:first-of-type {
    min-width: 150px;
  }
}
.p-news-detail__body .wp-block-table tbody th, .p-news-detail__body .wp-block-table tbody td, .p-news-detail__body table tbody th, .p-news-detail__body table tbody td {
  border: 1px solid #ddd;
  padding: 15px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .p-news-detail__body .wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  .p-news-detail__body .wp-block-table table,
  .p-news-detail__body .entry-content > table {
    min-width: 800px;
  }
}
.p-news-detail__body figure {
  margin: 100px 0;
}
@media (max-width: 768px) {
  .p-news-detail__body figure {
    margin: 60px 0;
  }
}
.p-news-detail__body figure img {
  max-width: 100%;
  height: auto;
  display: block;
}
.p-news-detail__body blockquote {
  background: #fcfcfc;
  border-left: none;
  margin: 40px 0;
  padding: 40px;
  position: relative;
  font-style: normal;
}
.p-news-detail__body blockquote p {
  margin-bottom: 0;
}
.p-news-detail__body blockquote::before {
  content: "“";
  font-family: serif;
  font-size: 60px;
  color: #10649D;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
}
.p-news-detail__body blockquote::after {
  content: "”";
  font-family: serif;
  font-size: 60px;
  color: #10649D;
  position: absolute;
  bottom: -20px;
  right: 15px;
  line-height: 1;
}
.p-news-detail__body figure {
  margin: 100px 0;
}
.p-news-detail__body figure img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .p-news-detail__body figure {
    margin: 60px 0;
  }
}

/* =========================================
   Member Detail (会員詳細)
   ========================================= */
.p-member-detail__back {
  margin-bottom: 100px;
}
.p-member-detail__back a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}
.p-member-detail__back a span {
  color: #10649D;
}
@media (max-width: 768px) {
  .p-member-detail__back {
    margin-bottom: 60px;
  }
}
.p-member-detail__top {
  display: flex;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}
@media (max-width: 768px) {
  .p-member-detail__top {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.p-member-detail__head-main {
  max-width: 300px;
  flex: 1;
}
.p-member-detail__corp {
  font-size: 14px;
  margin: 0 0 10px;
  color: #333;
}
.p-member-detail__name {
  font-size: 32px;
  font-weight: 500;
  color: #10649D;
  margin: 0 0 10px;
  line-height: 1.2;
  word-break: break-all;
}
@media (max-width: 768px) {
  .p-member-detail__name {
    font-size: 24px;
  }
}
.p-member-detail__kana {
  font-size: 14px;
  margin: 0;
  color: #666;
}
.p-member-detail__head-sub {
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-member-detail__head-sub {
    width: 100%;
  }
}
.p-member-detail__address-row, .p-member-detail__tel-row {
  margin-bottom: 5px;
}
.p-member-detail__map-link {
  color: #10649D;
  font-weight: 500;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.p-member-detail__map-link .u-icon-sm {
  font-size: 14px;
}
.p-member-detail__tel {
  color: #10649D;
  font-weight: 500;
}
.p-member-detail__fax {
  color: #10649D;
  font-weight: 500;
}
.p-member-detail__tag-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .p-member-detail__tag-row {
    flex-wrap: wrap;
  }
}
.p-member-detail__tag {
  background: #10649D;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}
.p-member-detail__intro {
  margin: 0 -10px 0 0;
  color: #10649D;
  font-weight: 500;
}
.p-member-detail__message-area {
  margin: 60px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .p-member-detail__message-area {
    text-align: left;
    margin: 40px 0;
  }
}
.p-member-detail__message-text {
  text-align: left;
  display: inline-block;
  max-width: 100%;
  line-height: 1.8;
}
.p-member-detail__info-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
.p-member-detail__info-table table th, .p-member-detail__info-table table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  line-height: 1.6;
  text-align: left;
}
.p-member-detail__info-table table th {
  width: 200px;
  background: #10649D;
  color: #fff;
  font-weight: normal;
  vertical-align: top;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-member-detail__info-table table th {
    width: 120px;
    white-space: normal;
  }
}
.p-member-detail__info-table table td {
  background: #fff;
  color: #333;
}
.p-member-detail__info-table table td a {
  color: #10649D;
  text-decoration: underline;
}
.p-member-detail__info-table table td a:hover {
  text-decoration: none;
}

/* =========================================
   Sidebar Layout (2カラム)
   ========================================= */
.l-sidebar-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .l-sidebar-layout {
    flex-direction: column;
    gap: 60px;
  }
}
.l-sidebar-layout__main {
  width: 60%;
}
@media (max-width: 768px) {
  .l-sidebar-layout__main {
    width: 100%;
  }
}
.l-sidebar-layout__side {
  width: 40%;
}
@media (max-width: 768px) {
  .l-sidebar-layout__side {
    width: 100%;
  }
}

/* =========================================
   Member List (Card Style)
   ========================================= */
.p-member-count {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.p-member-count__note {
  margin-left: auto;
  color: #999;
  font-size: 13px;
}

.p-member-card {
  cursor: pointer;
  position: relative;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.3s;
}
@media (max-width: 768px) {
  .p-member-card {
    padding: 15px;
    margin-bottom: 15px;
  }
}
.p-member-card:last-child {
  margin-bottom: 0;
}
.p-member-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.p-member-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 0 0 15px;
}
.p-member-card__corp {
  font-size: 14px;
  font-weight: 500;
  color: #10649D;
  margin: 0;
}
.p-member-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #10649D;
  word-break: break-all;
}
.p-member-card__body {
  color: #333;
  line-height: 1.6;
}
.p-member-card__address {
  margin: 0 0 10px;
}
.p-member-card__contact {
  margin-bottom: 15px;
}
.p-member-card__contact span {
  margin-right: 5px;
  display: inline-block;
  font-weight: 500;
  color: #10649D;
}
.p-member-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.p-member-card__tag {
  background: #10649D;
  color: #fff;
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 4px;
}
.p-member-card__date {
  font-weight: 500;
  margin: 0 -10px 0 0;
  color: #10649D;
}
.p-member-card__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #10649D;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px 0 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.p-member-card__btn:hover {
  opacity: 0.8;
}
.p-member-card__btn .material-symbols-outlined {
  font-size: 24px;
}

/* =========================================
   Sidebar: Search Map (47都道府県版)
   ========================================= */
.p-search-map {
  margin-bottom: 50px;
}
.p-search-map__title {
  font-size: 16px;
  margin-bottom: 20px;
}

.p-map-container {
  position: relative;
  width: 100%;
}
.p-map-container__img {
  width: 100%;
  height: auto;
  display: block;
}
.p-map-container .p-map-link {
  position: absolute;
  display: block;
  z-index: 10;
  transform: skewX(-9deg);
}
.p-map-container .p-map-link:hover {
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.p-map-container .is-hokkaido {
  top: 0%;
  left: 30%;
  width: 26.5%;
  height: 39%;
}
.p-map-container .is-aomori {
  top: 0%;
  left: 79%;
  width: 21%;
  height: 8.5%;
}
.p-map-container .is-akita {
  top: 8.5%;
  left: 78%;
  width: 10%;
  height: 11.5%;
}
.p-map-container .is-iwate {
  top: 8.5%;
  left: 88%;
  width: 10.5%;
  height: 11.5%;
}
.p-map-container .is-yamagata {
  top: 20%;
  left: 77%;
  width: 10%;
  height: 13%;
}
.p-map-container .is-miyagi {
  top: 20%;
  left: 87%;
  width: 10%;
  height: 13%;
}
.p-map-container .is-fukushima {
  top: 33%;
  left: 79.5%;
  width: 16.5%;
  height: 11.5%;
}
.p-map-container .is-gunma {
  top: 44.5%;
  left: 74.5%;
  width: 7.5%;
  height: 12.5%;
}
.p-map-container .is-tochigi {
  top: 44.5%;
  left: 82%;
  width: 6.5%;
  height: 12.5%;
}
.p-map-container .is-ibaraki {
  top: 44.5%;
  left: 88.5%;
  width: 6%;
  height: 17%;
}
.p-map-container .is-saitama {
  top: 57%;
  left: 73.5%;
  width: 13.5%;
  height: 12%;
}
.p-map-container .is-chiba {
  top: 62%;
  left: 86%;
  width: 6%;
  height: 29%;
}
.p-map-container .is-tokyo {
  top: 69%;
  left: 76%;
  width: 10%;
  height: 9.5%;
}
.p-map-container .is-kanagawa {
  top: 78.5%;
  left: 72%;
  width: 10%;
  height: 8.5%;
}
.p-map-container .is-niigata {
  top: 33%;
  left: 71%;
  width: 9%;
  height: 11.5%;
}
.p-map-container .is-toyama {
  top: 33%;
  left: 64%;
  width: 7%;
  height: 11.5%;
}
.p-map-container .is-ishikawa {
  top: 26%;
  left: 59.5%;
  width: 4.5%;
  height: 19%;
}
.p-map-container .is-fukui {
  top: 44.5%;
  left: 54%;
  width: 8.5%;
  height: 13%;
}
.p-map-container .is-nagano {
  top: 44.5%;
  left: 67.5%;
  width: 6.5%;
  height: 24%;
}
.p-map-container .is-yamanashi {
  top: 68.5%;
  left: 69.5%;
  width: 6.5%;
  height: 10%;
}
.p-map-container .is-gifu {
  top: 44.5%;
  left: 61%;
  width: 6%;
  height: 34%;
}
.p-map-container .is-shizuoka {
  top: 85%;
  left: 66%;
  width: 8%;
  height: 7%;
}
.p-map-container .is-aichi {
  top: 79%;
  left: 59%;
  width: 7.5%;
  height: 13%;
}
.p-map-container .is-shiga {
  top: 58%;
  left: 57%;
  width: 4%;
  height: 12%;
}
.p-map-container .is-mie {
  top: 70%;
  left: 54.5%;
  width: 4.5%;
  height: 27%;
}
.p-map-container .is-kyoto {
  top: 58%;
  left: 48%;
  width: 9%;
  height: 11%;
}
.p-map-container .is-nara {
  top: 69%;
  left: 51%;
  width: 4%;
  height: 20%;
}
.p-map-container .is-wakayama {
  top: 91%;
  left: 44.5%;
  width: 9%;
  height: 7%;
}
.p-map-container .is-osaka {
  top: 69%;
  left: 46.5%;
  width: 5%;
  height: 16%;
}
.p-map-container .is-hyogo {
  top: 51%;
  left: 42.5%;
  width: 5.5%;
  height: 25%;
}
.p-map-container .is-tottori {
  top: 51%;
  left: 38%;
  width: 5%;
  height: 12%;
}
.p-map-container .is-okayama {
  top: 63%;
  left: 37.5%;
  width: 5%;
  height: 12%;
}
.p-map-container .is-shimane {
  top: 51%;
  left: 32.5%;
  width: 5%;
  height: 12%;
}
.p-map-container .is-hiroshima {
  top: 63%;
  left: 32%;
  width: 5%;
  height: 12%;
}
.p-map-container .is-yamaguchi {
  top: 51%;
  left: 27.5%;
  width: 5%;
  height: 24.5%;
}
.p-map-container .is-kagawa {
  top: 80%;
  left: 35%;
  width: 8%;
  height: 8%;
}
.p-map-container .is-tokushima {
  top: 89%;
  left: 34%;
  width: 8%;
  height: 8%;
}
.p-map-container .is-ehime {
  top: 80%;
  left: 26%;
  width: 8%;
  height: 8%;
}
.p-map-container .is-kochi {
  top: 89%;
  left: 24.5%;
  width: 8%;
  height: 8%;
}
.p-map-container .is-fukuoka {
  top: 50.5%;
  left: 15%;
  width: 10%;
  height: 11.5%;
}
.p-map-container .is-saga {
  top: 50.5%;
  left: 10.5%;
  width: 4%;
  height: 15%;
}
.p-map-container .is-nagasaki {
  top: 50.5%;
  left: 6.5%;
  width: 4%;
  height: 15%;
}
.p-map-container .is-oita {
  top: 62%;
  left: 17.5%;
  width: 7%;
  height: 11%;
}
.p-map-container .is-kumamoto {
  top: 62%;
  left: 12.5%;
  width: 5%;
  height: 23%;
}
.p-map-container .is-miyazaki {
  top: 73%;
  left: 17%;
  width: 6%;
  height: 12%;
}
.p-map-container .is-kagoshima {
  top: 86%;
  left: 9.5%;
  width: 12%;
  height: 10.5%;
}
.p-map-container .is-okinawa {
  top: 85%;
  left: 2%;
  width: 5%;
  height: 13%;
}

/* =========================================
   Sidebar: Search Form
   ========================================= */
.p-search-form__title {
  font-size: 16px;
  margin-bottom: 20px;
}
.p-search-form__group {
  margin-bottom: 20px;
}
.p-search-form__group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}
.p-search-form__group input[type=text], .p-search-form__group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  appearance: none;
}
.p-search-form__group select {
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%2310649D%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E") no-repeat right 10px center;
  background-size: 24px;
}
.p-search-form__row {
  display: flex;
  gap: 10px;
}
.p-search-form__row select {
  width: 40%;
}
.p-search-form__row input {
  width: 60%;
}
.p-search-form__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.p-search-form__btn {
  flex: 1;
  min-width: 120px;
  background: #10649D;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s;
  box-sizing: border-box;
}
.p-search-form__btn:hover {
  opacity: 0.8;
}
.p-search-form__btn--reset {
  background: #10649D;
  color: #fff;
  border: 1px solid #10649D;
}

/* =========================================
   Privacy Policy (個人情報保護方針)
   ========================================= */
.p-privacy {
  margin: 0 auto;
}
.p-privacy__title {
  text-align: center;
  color: #10649D;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .p-privacy__title {
    margin: 0 0 30px;
    font-size: 20px;
  }
}
.p-privacy__body {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-privacy__body {
    font-size: 14px;
  }
}
.p-privacy__body p {
  margin-bottom: 40px;
}
.p-privacy__body ul {
  margin-bottom: 40px;
  padding-left: 1em;
}
.p-privacy__body ul li {
  list-style: none;
  position: relative;
  margin-bottom: 0.5em;
}
.p-privacy__body ul li::before {
  content: "・";
  color: #10649D;
  font-weight: bold;
  position: absolute;
  left: -1em;
  top: 0;
}
.p-privacy__body h2 {
  font-size: 18px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-privacy__body h2 {
    font-size: 16px;
    margin-top: 40px;
  }
}

/* =========================================
   Terms of Service (会員規約)
   ========================================= */
.p-terms {
  margin: 0 auto;
}
.p-terms__title {
  text-align: center;
  color: #10649D;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-terms__title {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
.p-terms__body {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-terms__body {
    font-size: 14px;
  }
}
.p-terms__body h2 {
  font-size: 18px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-terms__body h2 {
    font-size: 16px;
    margin-top: 40px;
  }
}
.p-terms__body p {
  margin-bottom: 30px;
}
.p-terms__body ol {
  margin-bottom: 40px;
  padding-left: 1.5em;
  counter-reset: item;
}
.p-terms__body ol li {
  list-style: none;
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 0.5em;
}
.p-terms__body ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  font-weight: normal;
  color: #333;
  position: absolute;
  left: -1.2em;
  top: 0;
}
.p-terms__body ol.list-alpha {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 1em;
  counter-reset: sub-item;
}
.p-terms__body ol.list-alpha li {
  margin-bottom: 0.3em;
}
.p-terms__body ol.list-alpha li::before {
  content: counter(sub-item, lower-alpha) ". ";
  counter-increment: sub-item;
  left: -1.2em;
}

/* =========================================
   404 Page
   ========================================= */
.p-404 {
  text-align: center;
  margin: 0 auto;
}
.p-404__title {
  font-family: "Urbanist", sans-serif;
  font-size: 80px;
  color: #10649D;
  margin: 0 0 30px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-404__title {
    font-size: 50px;
  }
}
.p-404__lead {
  font-size: 22px;
  color: #10649D;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-404__lead {
    font-size: 20px;
  }
}
.p-404__desc {
  color: #333;
  line-height: 2;
  margin-bottom: 60px;
}
.p-404__desc p {
  margin-bottom: 0.5em;
}
.p-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #10649D;
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: bold;
  transition: opacity 0.3s;
  gap: 5px;
}
.p-404__btn:hover {
  opacity: 0.8;
}
.p-404__btn .u-icon-sm {
  font-size: 18px;
}

.u-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
