@charset "utf-8";

/* ここからmain */
.title {
  height: 310px;
  background-image: url(../images/news/news_header.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
}

.title p {
  font-size: 20px;
  margin-top: 10px;
}

.title_nopc {
  display: none;
}

.info_title {
  width: 80%;
  margin: 0 auto;
}

.info_title h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

.info_title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* 
/* 例：画像を少し内側に寄せる */
.shop_info img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  /* 上下に隙間を作り、中央に配置 */
}

*/ .main {
  width: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.shop_info {
  margin-top: 30px;
}

.info_title {
  width: 80%;
  margin-left: 0;
}

.info {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.info span {
  font-size: 14px;
  padding-left: 20px;
  display: inline-block;
}

.map iframe {
  width: 600px;
  max-width: 90%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.info dt {
  width: 200px;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
}

.info dd {
  width: calc(100% - 200px);
  padding: 11px 0;
  font-size: 20px;
}

.footer {
  margin-top: 50 px;
}

.news_text {
  font-size: 20px;
}

/* ここから過去のニュース */
.past_news {
  width: 80%;
  background-color: #f5f7f8;
  padding: 20px;
  margin: 50px auto;
}

.past_news h2 {
  text-align: center;
  color: #111827;
}

.past_news ul {
  list-style-type: none;
  padding-left: 0;
}

.past_news ul li {
  padding: 20px 0 20px 175px;
  border-bottom: 1px dotted #111827;
  color: #111827;
  text-indent: -175px;
}

.past_news ul li time {
  display: inline-block;
  width: 175px;
  font-weight: bold;
  color: #111827;
  text-indent: 0;
}

.past_news ul li a {
  text-decoration: none;
  color: inherit;
}

/* ここからレスポンシブ用 */

@media (max-width:768px) {

  .container,
  .title,
  .shop_info {
    width: 100%;
    box-sizing: border-box;
  }

  .title {
    margin-top: 60px;
    height: 100%;
    background-image: url(../images/news/news_header.webp);
  }


  .title h1 {
    font-size: 20px;
    padding-top: 20px;
  }

  .news_text ul li{
    font-size: 18px;
  }

  .past_news ul li time {
    display: block;
    width: auto;
  }

  .past_news ul li {
    padding: 15px 0;
    text-indent: 0;
  }

}