@charset "UTF-8";
.info {
  margin: 120px auto 140px;
}

@media screen and (max-width: 767px) {
  .info {
    margin: 40px auto 40px;
  }
}

.shopInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
}

@media screen and (max-width: 1024px) {
  .shopInfo {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .shopInfo {
    margin-top: 40px;
    display: block;
  }
}

.shopMap {
  width: 600px;
  height: 400px;
}

.shopMap iframe {
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 1024px) {
  .shopMap {
    width: 100%;
    width: 100%;
    height: 50vw;
    margin: 0 auto 40px;
  }
}

@media screen and (max-width: 767px) {
  .shopMap {
    width: 100%;
    height: 50vw;
    margin-bottom: 20px;
  }
}

.shopTbl {
  width: calc(100% - 600px - 80px);
}

@media screen and (max-width: 1024px) {
  .shopTbl {
    width: 100%;
  }
}

.shopTr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.shopTr:first-child .shopTh {
  border-top: 1px solid rgba(51, 51, 51, 0.4);
}

.shopTr:first-child .shopTd {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

@media screen and (max-width: 767px) {
  .shopTr {
    display: block;
  }
  .shopTr .shopTd {
    border-top: 0px solid rgba(51, 51, 51, 0.1);
  }
}

.shopTh {
  width: 160px;
  padding: 25px 10px;
  background-color: rgba(199, 166, 67, 0.1);
  border-bottom: 1px solid rgba(51, 51, 51, 0.4);
}

@media screen and (max-width: 767px) {
  .shopTh {
    width: 100%;
    padding: 10px 10px;
    border-bottom: 0px solid rgba(51, 51, 51, 0.4);
  }
}

.shopTd {
  width: calc(100% - 160px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  padding: 25px 20px;
}

.shopTd a {
  color: #9b7607;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.shopTd a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .shopTd {
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.4);
  }
}

.c-btnCover-shop-news {
  text-align: center;
  margin-top: 60px;
}

.c-btnCover-shop-news .c-btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-btnCover-shop-news {
    margin-top: 40px;
  }
}

.news {
  padding-top: 130px;
  padding-bottom: 140px;
  background-color: #e2dcc7;
}

@media screen and (max-width: 767px) {
  .news {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.newsAreaTtl {
  font-size: 32px;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .newsAreaTtl {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.gallery {
  margin: 140px auto 160px;
}

@media screen and (max-width: 767px) {
  .gallery {
    margin: 70px auto 80px;
  }
}

.galleryList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}

.galleryList::after {
  content: "";
  display: inline-block;
  width: calc((100% - 60px) / 3);
}

@media screen and (max-width: 767px) {
  .galleryList::after {
    width: calc((100% - 10px) / 2);
  }
}

.galleryItem {
  width: calc((100% - 60px) / 3);
}

.galleryItem:nth-child(n + 4) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .galleryItem {
    width: calc((100% - 10px) / 2);
  }
  .galleryItem:nth-child(n + 3) {
    margin-top: 10px;
  }
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
  .modal {
    padding: 10px;
  }
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 1000px;
  padding: 60px 25px 50px;
}

@media screen and (max-width: 767px) {
  .modal__content {
    padding: 40px 20px 30px;
  }
}

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

.modal__img img {
  width: 100%;
}

.modal__img figcaption {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .modal__img {
    width: 100%;
  }
  .modal__img figcaption {
    margin-top: 5px;
    padding-bottom: 60px;
  }
}

/* モーダルを閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  z-index: 10;
}

/* Swiperの矢印部分 */
.swiper {
  position: unset;
}

.swiper-button-next {
  right: 40px;
}

.swiper-button-prev {
  left: 40px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.modal .swiper-button-next::after,
.modal .swiper-button-prev::after {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-right: 1px solid #c7a643;
  border-bottom: 1px solid #c7a643;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  left: 6px;
}

.modal .swiper-button-next::before,
.modal .swiper-button-prev::before {
  content: "";
  display: inline-block;
  font-size: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #c7a643;
  border-radius: 50%;
  position: absolute;
}

@media (max-width: 768px) {
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    top: auto;
    bottom: 20px;
  }
  .modal .swiper-button-next {
    right: calc(50% - 55px);
  }
  .modal .swiper-button-prev {
    left: calc(50% - 55px);
  }
}

.shopBannerArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.shopBannerItem {
  display: block;
  width: calc((100% - 40px) / 2);
}

@media screen and (max-width: 767px) {
  .shopBannerItem {
    width: 100%;
  }
}

.shopBannerItem img {
  width: 100%;
}

.shopBannerItem:nth-child(n + 3) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .shopBannerItem:nth-child(n + 2) {
    margin-top: 20px;
  }
}

.c-btnCover-shopBack {
  margin: 110px auto 150px;
}

@media screen and (max-width: 767px) {
  .c-btnCover-shopBack {
    margin: 55px auto 75px;
  }
}

.c-btnCover-shopBack .c-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-btnCover-shopBack .c-btnIcon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 15px;
}

.mailMagazine {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mailMagazine {
    padding-top: 50px;
  }
}

.mailMagazine__ttl {
  font-size: 32px;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .mailMagazine__ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.mailMagazine__form {
  margin-top: 50px;
  padding: 35px 50px;
  background-color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .mailMagazine__form {
    margin-top: 30px;
    padding: 40px 20px;
  }
}

.mailMagazine__form table {
  width: 100%;
}

.mailMagazine__form th.col-1 {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .mailMagazine__form th.col-1 {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

.mailMagazine__form td.col-2 {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .mailMagazine__form td.col-2 {
    display: block;
    width: 100%;
  }
}

.mailMagazine__form td.col-2 input {
  font-family: inherit;
  padding: 0;
  border: 1px solid #d6d2c0;
  line-height: 60px;
  height: 60px;
  padding: 0 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  letter-spacing: 0;
  font-size: 16px;
}

.mailMagazine__form input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: #c7a643;
  width: 40%;
  height: 100%;
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  position: relative;
  z-index: 3;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  cursor: pointer;
  font-size: 18px;
  font-family: YakuHanMP, 'Shippori Mincho', serif;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .mailMagazine__form input[type="submit"] {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    font-size: 16px;
  }
}
/*# sourceMappingURL=shop-detail.css.map */