@charset "UTF-8";
/* CSS Document */

/*-----------------
common
-----------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border:0
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1.75;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
a {
  color: #0c4fab;
  text-decoration: none;
  transition: all .1s ease-out;
}
a:hover {
  opacity: 0.7;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol,li {
  list-style: none;
}

/* ------------------
   header
------------------- */
header {
  padding: 2em;
}
.header_summary {
  text-align: left;
  margin-bottom: 4vw;
}
.page-header {
  text-align: center;
  margin-bottom: 3vw;
}
.page-header h1 {
  font-size: clamp(4rem, 5vw, 6rem);
  font-weight: 700;
  margin-bottom: .5em;
  line-height: 1.2;
}
.page-header h1 br {
  display: none;
}
.page-header .accent {
  color: #ff6600;
}
.page-header .small {
  font-size: 70%;
}
.page-header p {
  color: #666;
}
.border-line {
  height: 2px;
  background: #ff6600;
  margin-bottom: 60px;
}

/* ------------------
   main
------------------- */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  position: relative;
}
.section-title img {
  width: 40px;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.section-title::after {
  content: "";
  display: block;
  width: 25em;
  border-bottom: 2px dotted #ff6600;
  margin-left: 15px;
  position: absolute;
  bottom: 0;
}

/* ------------------
   shop list
------------------- */
.shop_list {
  padding: 0 2em;
  max-width: 1200px;
  margin: 0 auto;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.shop-card {
  background: #fff;
  border: 1px solid #f0d8c6;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.shop-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.shop-icon img {
  width: 34px;
}
.shop-name {
  font-size: 1.8rem;
  font-weight: bold;
}
.shop-name::after {
  content: "";
  display: block;
  width: 140px;
  margin: 10px auto;
  border-bottom: 2px dotted #ffb07d;
}
.shop-text {
  color: #666;
  margin-bottom: .5em;
}
.shop-btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  background: #ff6600;
  color: #fff;
  border-radius: 5px;
  padding: 14px;
  font-weight: bold;
  transition: .2s;
  background-image: url(icons/icon-open.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center right 1em;
}

/* ------------------
   notice
------------------- */
.notice-wrap {
  padding: 4em 2em;
  max-width: 1200px;
  margin: 0 auto;
}
.notice {
  background: #fff;
  border: 1px solid #f0d8c6;
  background-color: #fdf7f3;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.notice img {
  width: 50px;
  flex-shrink: 0;
}
.notice-title {
  color: #ff6600;
  font-weight: bold;
  font-size: 20px;
  font-size: 2.0rem;
}

/* ------------------
   footer
------------------- */
footer {
  background: #ededed;
  text-align: center;
  padding: 2em 28px;
  color: #000;
  font-size: 12px;
  font-size: 1.2rem;
}
footer a {
    background-color: #333;
    padding: 1em;
    margin: 1em auto;
    display: block;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    max-width: 500px;
}

@media (max-width: 768px) {
  .page-header h1 br {
    display: block;
  }
  .page-header p {
    text-align: left;
  }
  .notice {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .section-title::after {
    width: 50vw;
  }
}