/*
================================================================================
■ 店舗ページ
================================================================================
*/

/*================= トップページ =================*/

/* -------------------------------------------------
▼ 店舗リスト
------------------------------------------------- */
#main .area-shop {
  margin-bottom: 2em;
}

#main .area-shop .block-shop {
  margin-bottom: 1em;
}

/* 赤帯状のエリアタイトル */
#main .title-type-belt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 店舗情報、地図のボタン */
#main .list-info-btn {
  display: flex;
}

#main .list-info-btn .btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 5px;
}

#main .list-info-btn .btn .title {
  background: #fff;
  border-radius: 3px;
  padding: 0.2em 0.5em 0.3em 1.8em;
  position: relative;
}

#main .list-info-btn .btn.detail .title::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon-home-01.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0.5em;
  margin-top: -0.5em;
}

#main .list-info-btn .btn.map .title::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon-map-01.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0.5em;
  margin-top: -0.5em;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 750px) {
  #main .list-info-btn .btn {
    font-size: 1.4rem;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* SP版の店舗情報、地図のボタン */
#main .list-info-btn-wrap {
  display: flex;
  justify-content: flex-end;
}

#main .list-info-btn-wrap .list-info-btn {
  margin-bottom: 1em;
}

#main .list-info-btn-wrap .list-info-btn .btn .title {
  border: 1px solid #a4a4a4;
}

/* clone関連 */
@media print, screen and (min-width: 751px) {
  #main .list-info-btn-wrap .list-info-btn {
    display: none;
  }
}

@media print, screen and (max-width: 750px) {
  #main .title-type-belt .list-info-btn.target-clone {
    display: none;
  }
}

/* 店舗情報テーブル */
#main .table-info {
  width: 100%;
  margin-bottom: 1em;
}

#main .table-info .title,
#main .table-info .data {
  line-height: 1.2;
  border: 1px solid #a4a4a4;
  padding: 0.2em 1em;
  vertical-align: middle;
}

#main .table-info .title {
  width: 20%;
  font-weight: normal;
  background: #f5f6f8;
}

#main .table-info .freedial {
  color: #e60012;
  font-weight: 500;
}

#main .table-info .closed {
  display: none;
}

#main .table-info .closed-holiday {
  display: none;
  /*display: block;*/
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 750px) {
  #main .table-info {
    font-size: 1.4rem;
  }

  #main .table-info .title,
  #main .table-info .data {
    display: block;
    padding: 0.5em 1em;
    border-bottom: none;
  }

  #main .table-info .title {
    width: 100%;
    text-align: left;
  }

  #main .table-info .row:last-child .data {
    border-bottom: 1px solid #a4a4a4;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*================= 各店舗ページ =================*/

#main .area-detail {
  margin-bottom: 60px;
}

#main .area-detail .title-type-belt {
  margin-bottom: 20px;
}

/* 店舗画像×紹介文 */
#main .area-detail .introduction-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#main .area-detail .introduction-wrap .block-image {
  width: 50%;
}

#main .area-detail .introduction-wrap .block-description {
  width: 50%;
  padding-left: 3%;
}

#main .area-detail .introduction-wrap .block-image .image-wrap {
  width: 100%;
  height: 0;
  /* 516×370 */
  padding-bottom: 71.705%;
}

#main .area-detail .introduction-wrap .block-image .image-wrap .image-file {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

#main .area-detail .introduction-wrap .block-description .description {
  line-height: 2;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 750px) {
  #main .area-detail .title-type-belt {
    margin-bottom: 0;
  }

  #main .area-detail .introduction-wrap .block-image {
    width: 100%;
    margin-bottom: 20px;
  }

  #main .area-detail .introduction-wrap .block-description {
    width: 100%;
    padding-left: 0;
  }

  #main .area-detail .introduction-wrap .block-description .description {
    font-size: 1.4rem;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 店舗情報テーブル */
#main .area-detail .table-info .data .text {
  margin-bottom: 0.5em;
}

#main .area-detail .table-info .data .list-type-custom .item {
  margin-bottom: 0.2em;
}

#main .area-detail .table-info .payment {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}

#main .area-detail .table-info .payment .type {
  width: 8em;
  font-weight: 700;
}

#main .area-detail .table-info .payment .list {
  width: calc(100% - 8em);
  display: flex;
  flex-wrap: wrap;
}

#main .area-detail .table-info .payment .list .image-wrap {
  margin: 8px 12px;
}

#main .area-detail .table-info .payment .list .image-wrap .image-file {
  width: auto;
  height: 30px;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 750px) {
  #main .area-detail .table-info .payment .type {
    width: 100%;
  }

  #main .area-detail .table-info .payment .type::before {
    content: '\025cf';
  }

  #main .area-detail .table-info .payment .list {
    width: 100%;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* お知らせ・チラシ */
#main .area-flyer {
  margin-bottom: 60px;
}

#main .area-flyer .list {
  display: flex;
  flex-wrap: wrap;
}

#main .area-flyer .list .item {
  width: 33.333%;
  padding: 15px;
}

#main .area-flyer .list .item .block-image {
  border: 1px solid #a4a4a4;
  margin-bottom: 10px;
}

#main .area-flyer .list .item .block-image.regular {
  border: none;
}

#main .area-flyer .list .item .block-image .image-wrap {
  width: 100%;
  height: 0;
  /* 314×240 */
  padding-bottom: 76.433%;
  position: relative;
}

#main .area-flyer .list .item .block-image .image-wrap .image-file {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
}

#main .area-flyer .list .item .block-image.regular .image-wrap .image-file {
  /*display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;*/
  object-fit: contain;
  /*position: relative;*/
}

#main .area-flyer .list .item .block-description .caption {
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 750px) {
  #main .area-flyer .list .item {
    width: 50%;
    padding: 10px;
  }

  #main .area-flyer .list .item .block-description .caption {
    font-size: 1.3rem;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 店舗外観 */
#main .area-exterior {
  margin-bottom: 60px;
}

#main .area-exterior .slider-wrap .slider-list .item .image-wrap {
  width: 100%;
  height: 0;
  /* 314×240 */
  padding-bottom: 76.433%;
}

#main .area-exterior .slider-wrap .slider-list .item .image-wrap .image-file {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*----------------- ▼ (PC) ▼ -----------------*/
@media print, screen and (min-width: 751px) {
  #main .area-exterior .slider-wrap {
    overflow: auto;
    height: auto;
  }

  #main .area-exterior .slider-wrap .slider-list {
    display: flex;
    flex-wrap: wrap;
  }

  #main .area-exterior .slider-wrap .slider-list .item {
    width: 33.333%;
    padding: 15px;
  }
}
/*----------------- ▲ (PC) ▲ -----------------*/

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 750px) {
  #main .area-exterior .container.slider {
    padding: 0;
  }

  #main .area-exterior .slider-wrap {
    /* 314×240 */
    padding-bottom: 76.433%;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/


