
/* base
------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'Hina Mincho', serif;
  color: #333;
  line-height: 1.8;
  box-sizing: border-box;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  color: #333;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: inline-block;
}

a:hover {
  opacity: .8;
  transition: .3s;
}

.button {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.btn {
  line-height: 50px;
  width: 60%;
  padding: 0 15px;
  margin: 0 auto;
  border: 1px solid #333;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
}

.btn a {
  width: 100%;
}

.section-wrapper {
  padding: 90px 0;
}

.container {
  width: 80vw;
  margin: 0 auto;
}

.bg-gray {
  background-color: #f6f4f4;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

.continuation {
  font-size: 1.4rem;
}

.tac {
  text-align: center;
}

.archive-list_title {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 10px 20px;
  width: 80%;
  margin: 0 auto 50px;
  border-bottom: 1px solid #333;
  box-sizing: border-box;
  text-align: center;
}

.top a {
  width: auto;
  height: auto;
  text-decoration: underline;
}


/* header
------------------------------------------- */
.header {
  padding-top: 40px;
  border-bottom: 1px solid #333;
  box-sizing: border-box;
}

.site-title {
  line-height: 20px;
  font-weight: bold;
  text-align: center;
}

.site-title a {
  font-size: 1.8rem;
}

.header-nav {
  width: 80%;
  margin: 0 auto;
}

.nav-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-list li {
  font-size: 1.8rem;
  line-height: 80px;
}


/* fv
------------------------------------------- */
.fv-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fv-item {
  width: 33.3%;
}


/* 最新情報
------------------------------------------- */
.section-wrapper:first-of-type {
  padding-top: 120px;
}

.news-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.news-item {
  width: 30%;
}

.news-thumbnail {
  width: 100%;
  height: 200px;
  margin: 0 auto 20px;
}

.news-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
}

.news-cat {
  font-size: 1.3rem;
  width: 80px;
  padding: 5px 10px;
  border: 1px solid #50B2C0;
  box-sizing: border-box;
  text-align: center;
}

.news-date {
  font-size: 1.4rem;
}

.news-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.news-excerpt {
  margin-bottom: 10px;
}


/* 店舗情報
------------------------------------------- */
.info-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-item {
  width: 45%;
}

.info-thumbnail {
  width: 100%;
  height: 250px;
  margin: 0 auto 20px;
}

.info-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  margin: 0 auto 10px;
}

.info-title {
  font-size: 2rem;
  margin-right: 10px;
  text-align: center;
}

.info-subtitle {
  font-size: 1.8rem;
}


/* お問い合わせ
------------------------------------------- */
.contact-text {
  padding: 5px 0;
  text-align: center;
}

.telephone-number {
  margin-bottom: 20px;
  text-align: center;
}


/* footer
------------------------------------------- */
.footer {
  background-color: #333;
}

.footer-nav {
  padding: 40px 0 30px;
}

.footer-nav_list {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-nav_list li a {
  color: #fff;
}

.footer-copyright {
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}


/* レスポンシブ対応 1280px
------------------------------------------- */
@media screen and (max-width: 1280px) {

  /* 最新情報 */
  .news-list {
    display: block;
  }

  .news-item {
    width: 60%;
    margin: 0 auto;
  }

  .news-item:not(:last-of-type) {
    margin-bottom: 90px;
  }

  .news-thumbnail {
    width: 80%;
    height: 250px;
    margin: 0 auto 40px;
  }
}


/* レスポンシブ対応 960px
------------------------------------------- */
@media screen and (max-width: 960px) {

  /* 最新情報 */
  .news-thumbnail {
    width: 100%;
    height: 200px;
  }
}


/* レスポンシブ対応 768px
------------------------------------------- */
@media screen and (max-width: 768px) {

  /* base */
  .container {
    width: 90vw;
  }

  .archive-list_title {
    font-size: 1.6rem;
  }

  /* 最新情報 */
  .section-wrapper:first-of-type {
    padding-top: 90px;
  }

  .news-thumbnail {
    height: 180px;
  }

  .news-title {
    font-size: 1.6rem;
  }

  .news-excerpt {
    font-size: 1.4rem;
  }

  /* 店舗情報 */
  .info-thumbnail {
    height: 170px;
  }

  .info-title {
    font-size: 1.8rem;
  }

  .info-subtitle {
    font-size: 1.6rem;
  }
}


/* レスポンシブ対応 500px
------------------------------------------- */
@media screen and (max-width: 500px) {

  /* base */
  .btn {
    font-size: 1.4rem;
    line-height: 40px;
  }

  .section-wrapper {
    padding: 70px 0;
  }

  .container {
    width: 92vw;
  }

  .section-title {
    font-size: 2rem;
  }

  /* header */
  .header {
    padding-top: 30px;
  }

  .nav-list li {
    font-size: 1.6rem;
    line-height: 60px;
  }

  /* 最新情報 */
  .section-wrapper:first-of-type {
    padding-top: 70px;
  }

  .news-item {
    width: 90%;
  }

  /* 店舗情報 */
  .info-list {
    display: block;
  }

  .info-item {
    width: 80%;
    margin: 0 auto;
  }

  .info-item:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .info-thumbnail {
    height: 160px;
  }

  /* footer */
  .footer-nav {
    padding: 30px 0 20px;
  }

  .footer-copyright {
    padding-bottom: 30px;
  }
}