@charset "utf-8";
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
ul {
  list-style: none;
}
header iframe {
  width: 100%;
  height: 90px;
  margin-bottom: 10px;
}
section {
  padding: 0 22px;
}
ul.breadcrumb-list {
  margin-bottom: 18px;
  font-size: 14px;
}
.breadcrumb-list li + li::before {
  content: "＞";
  margin: 0 6px;
}
.breadcrumb-list a {
  color: #000;
  text-decoration: none;
}
.breadcrumb-list a:hover {
  text-decoration: underline;
}
h1 {
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}
div.attention {
  margin-bottom: 25px;
  font-size: 14px;
  color: #ff0000;
  line-height: 1.6;
}
h2 {
  margin: 24px 0 25px;
  font-size: 20px;
  text-align: center;
}
h3 {
  font-size: 20px;
  text-align: center;
}
h3 i {
  margin-right: 12px;
}
h4 {
  margin: 30px 0 10px 0;
  color: #707070;
  font-size: 16px;
  text-align: center;
}
.pref-nav {
  border: 0;
}
.pref-item {
  border-bottom: 1px solid #000;
}
.pref-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 12px;
  font-weight: 700;
}
.icon-plus {
  position: relative;
  width: 20px;
  height: 20px;
}
.icon-plus::before, .icon-plus::after {
  content: "";
  position: absolute;
  background-color: #0A499D;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.icon-plus::before {
  width: 100%;
  height: 2px;
}
.icon-plus::after {
  width: 2px;
  height: 100%;
}
.is-open .icon-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
/* 中身のリスト */
.pref-list-inner {
  display: none;
  border-top: 1px solid #000;
  background-color: #F6F6F6;
  list-style: none;
  padding: 0 0px;
}
.pref-list-inner li {
  border-bottom: 1px solid #000000;
}
.pref-list-inner li:last-child {
  border-bottom: 0;
}
.is-open .pref-list-inner {
  display: block;
}
.pref-list-inner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 12px 18px 20px;
  text-decoration: none;
  position: relative; /* 疑似要素の基準にする */
  transition: background-color 0.2s;
  color: #000;
}
.pref-list-inner li a::after {
  content: "";
  display: block;
  width: 10px; /* アローのサイズ */
  height: 10px;
  border-top: 2px solid #0A499D; /* アローの太さと色 */
  border-right: 2px solid #0A499D;
  transform: rotate(45deg); /* 傾けて「＞」にする */
  margin-right: 5px; /* 文字との最低間隔 */
}
footer {
  padding: 0 22px;
  color: #707070;
}
.tempotop{
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}
.tempotop a, .footer-nav a {
  text-decoration: none;
  color: #707070;
}
.tempotop a:hover, .footer-nav a:hover {
  text-decoration: underline;
}
.copy {
  margin: 10px 0;
  text-align: center;
  font-size: 12px;
}
/* 基本スタイル */
.store-list {
  margin: 0 auto;
  font-family: sans-serif;
}
.list-title {
  text-align: center;
  font-size: 20px;
  padding: 15px 0;
}
/* アコーディオンヘッダー */
.store-item {
  border-top: 1px solid #999;
  background-color: #f7f7f7;
}
.store-header {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 50px 15px 15px;
  background-color: #f7f7f7;
  border: none;
  text-align: left;
}
.store-header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #00469b;
  border-bottom: 2px solid #00469b;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}
.store-item.is-open .store-header::after {
  transform: translateY(-25%) rotate(-135deg);
}
.store-name {
  display: block;
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  text-align: left;
  color: #000;
  word-break: break-all;
}
.label {
  display: inline-block;
  background-color: #00469b;
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  margin-bottom: 8px;
  font-weight: 500;
}
.arrow-container {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 矢印アイコン */
.arrow-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #00469b;
  border-bottom: 2px solid #00469b;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
/* 開いた時の矢印 */
.store-item.is-open .arrow-icon {
  transform: rotate(-135deg);
}
/* アコーディオンの中身 */
.store-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
}
.store-item.is-open .store-details {
  max-height: 2000px;
}
.details-inner {
  padding: 15px;
}
.blue-tag {
  background-color: #00469b;
  color: #fff;
  min-width: 80px;
  text-align: center;
  padding: 4px 0;
  font-size: 14px;
}
.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.features {
  color: #707070;
  font-size: 14px;
}
.feature-title {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
}
.feature-title::before {
  margin-top: 3px;
  content: url("../features-icon.svg");
}
.feature-tags {
  width: 230px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.feature-tags li {
  border: 1px solid #707070;
  text-align: center;
  margin-bottom: 5px;
  padding: 3px 0;
  background-color: #F6F6F6;
}
.pref-section {
  display: none; /* 基本は隠す */
  border-bottom: 1px solid #707070;
}
.pref-section.is-active {
  display: block; /* アクティブな県だけ表示 */
}
/* 選択中のボタンの色を変える場合 */
.pref-btn.is-selected {
  background-color: #00469b;
  color: #fff;
}
.address {
  margin: 10px 0 15px;
  padding: 16px;
  display: flex;
  gap: 8px;
  font-size: 14px;
  border: 1px solid #707070;
  border-radius: 6px;
  align-items: center;
}
.address i {
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url("images/pin.svg") no-repeat left center;
  background-size: contain;
  flex-shrink: 0;
}
.pref-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0 22px;
}
.pref-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #0A499D;
  padding: 12px 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  border: 1px solid #0A499D;
}
.pref-btn::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: -3px;
  margin-right: 10px;
  flex-shrink: 0;
}
/* 選択された状態（Active） */
.pref-btn.is-selected {
  background-color: #0A499D; /* 濃い青 */
  color: #fff;
}
/* 選択された時のチェックアイコンの色 */
.pref-btn.is-selected::before {
  border-color: #fff;
}
/* 未選択時のアイコンの色 */
.pref-btn::before {
  border-left: 2px solid #0A499D;
  border-bottom: 2px solid #0A499D;
}
.notice {
  margin-top: 20px;
  color: #ff0000;
}
#clearPrefs {
  margin: 10px 0;
  text-align: right;
}
.clearPrefs {
  font-size: 12px;
  cursor: pointer;
  background: none;
  border: 1px solid #ccc;
  padding: 4px 8px;
}
@media (hover: hover) {
  .pref-btn:hover {
    background-color: #0d3d7c;
    color: #fff;
  }
  .pref-btn:hover::before {
    border-color: #fff; /* ホバー時に矢印の色を白に変更 */
  }
}
.map-area {
  margin-bottom: 25px;
}
.map-area iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
}
@media screen and (min-width: 753px) {
  .br-sp {
    display: none;
  }
  header iframe {
    width: 100%;
    min-height: 180px;
    margin-bottom: 22px;
  }
  section {
    max-width: 960px;
    margin: 0 auto;
  }
  ul.breadcrumb-list {
    display: flex;
  }
  h1 {
    font-size: 30px;
    text-align: left;
  }
  h2 {
    font-size: 24px;
    text-align: left;
  }
  h3 {
    font-size: 24px;
    text-align: left;
  }
  h4 {
    margin: 30px 0 0 0;
    font-size: 18px;
    text-align: left;
  }
  div.attention {
    font-size: 16px;
  }
  .pref-nav {
    border: 0;
    font-size: 18px;
    font-weight: 700;
  }
  .pref-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 20px;
    font-size: 24px;
  }
  .icon-plus {
    display: none;
  }
  .pref-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 100px;
  }
  .pref-list-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border: 0;
    background-color: #fff;
    list-style: none;
  }
  .pref-list-inner li {
    border: 0;
  }
  .pref-list-inner a {
    display: flex;
    justify-content: center;
    padding: 9px 0;
    background: #0A499D;
    text-decoration: none;
    transition: opacity 0.2s;
    font-size: 16px;
    color: #fff;
    text-align: center;
  }
  .pref-list-inner li a::after {
    display: none;
  }
  .pref-list-inner li a:hover {
    opacity: 0.7;
  }
  .pref-item {
    border: 0;
  }
  footer {
    margin-top: 70px;
  }
.tempotop{
    text-align: center;
}
  .footer-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
  }
  .pref-menu {
    grid-template-columns: repeat(4, 1fr);
  }
  .copy {
    margin-bottom: 20px;
  }
  .pref-section {
    border: 0;
  }
  .list-title {
    font-size: 26px;
    padding: 0;
    margin: 50px 0 0 0;
    text-align: left;
    background: #fff;
  }
  .store-item {
    position: relative;
    border-top: 0;
    border-bottom: 1px solid #999;
    background-color: #fff;
    padding-bottom: 25px;
  }
  .store-header {
    pointer-events: none;
    cursor: default;
    padding: 15px 0 0 0;
    background: #fff;
  }
  .header-content {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .label {
    margin-top: 12px;
    font-size: 16px;
    white-space: nowrap;
  }
  .store-name {
    margin-right: 400px;
    font-size: 24px;
  }
  .store-details {
    max-height: none;
    overflow: visible;
  }
  .store-header::after {
    display: none;
  }
  .details-inner {
    padding: 0;
  }
  .info-list {
    min-height: 180px;
    margin-right: 400px;
  }
  .address {
    padding: 0;
    font-size: 16px;
    border: 0;
  }
  .address i {
    display: none;
  }
  .features {
    margin-top: 20px;
  }
  .feature-title {
    justify-content: flex-start;
  }
  .feature-tags {
    display: flex;
    gap: 30px;
    width: auto;
    margin: 5px 0 0 0;
  }
  .feature-tags li {
    width: 230px;
  }
  .notice {
    margin-top: 10px;
  }
  .map-area {
    position: absolute;
    top: 30px;
    right: 0;
    min-width: 360px;
    max-height: 260px;
  }
}
@media screen and (orientation: landscape) {
  ul.breadcrumb-list {
    display: flex;
  }
}