@charset "utf-8";
/*===============================================
 *	common
===============================================*/
.underlayer_wrap{
  margin-top: 85px;
}
/*===============================================
 *	下層見出し
===============================================*/
.page_title_wrap {
  border-top: 15px solid #eaedf4;
  border-bottom: 15px solid #eaedf4;
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  margin-bottom: 60px;
}

.page_title_main {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.page_title_sub {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 768px) {
  .page_title_wrap {
    margin-top: 60px;
    border-top: 10px solid #eaedf4;
    border-bottom: 10px solid #eaedf4;
    padding: 20px 0;
    margin-bottom: 30px;
  }
  .page_title_main {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .page_title_sub {
    font-size: 13px;
  }
}
/*===============================================
 *	Store
===============================================*/
.store_photo{
  margin-bottom: 40px;
}
.store_info_wrap {
  background-color: #f8f8f8;
  border: 1px solid #e5e5e5;
  margin: 0 auto 60px;
  padding: 50px;
}
.store_info_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.store_logo {
  max-width: 180px;
  text-align: center;
}
.store_logo img {
  max-width: 100%;
  height: auto;
}
.store_details {
  width: 68%;
}
.detail_row {
  display: flex;
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 15px;
}
.detail_row:last-child {
  margin-bottom: 0;
}
.detail_row dt {
  font-weight: bold;
  width: 120px;
  flex-shrink: 0;
}
.detail_row dd {
  margin: 0;
  flex-grow: 1;
}
.store_btn_area {
  text-align: center;
}
.store_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #484851;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 16px 80px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.store_btn:hover {
  background-color: #dfbe3b;
  opacity: 0.9;
}
@media only screen and (max-width: 768px) {
  .store_info_wrap {
    padding: 40px 20px;
  }
  .store_info_inner {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .store_logo {
    width: 100%;
    margin-bottom: 30px;
  }
  .store_logo img {
    max-width: 200px;
  }
  .store_details {
    width: 100%;
  }
  .detail_row {
    flex-direction: column;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .detail_row dt {
    width: 100%;
    margin-bottom: 4px;
  }
  .store_btn {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
  }
}