/*
Theme Name: 湯処むろべ追加CSS
*/
.spnone {
  display: block;
}
.pcnone {
  display: none;
}

.premium_drink_image {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2em;
}
.premium_drink_image img {
  width: 97%;
}
.premium_drink_image span {
  display: block;
  font-size: 16px;
  padding-top: 7px;
}
.premium_drink_text {
  background: #e0dfdc;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.premium_drink_text p:first-child {
  font-size: 25px;
  padding-bottom: 1.5em;
}

.premium_drink_text p:nth-child( 2 ) {
  width: 90%;
    margin: 0 auto 2em;
    background: #fff;
    padding: 2em;
    font-size: 14px;
    color: #426861;
}



.premium_drink_text p:nth-child( 3 ) {
  font-size: 20px;
} 
.premium_drink_text p:nth-child( 3 ) .text-red-size {
  font-size: 25px;
}
.premium_drink_text p:nth-child( 3 ) .text-red {
  color: red;
}
.premium_drink_text p:nth-child( 4 ) {
  font-size: 18px;
  margin-bottom: 2em;
} 
.premium_drink_text p:nth-child( 5 ) {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .spnone {
    display: none;
  }
  .pcnone {
    display: block;
  }
  .premium_drink_image {
    width: 100%;
  }
  .premium_drink_text {
    width: 100%;
    padding: 0;
  }
  .premium_drink_text p:first-child {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.8rem;
  }
  .premium_drink_text p:nth-child( 2 ) {
    width: 100%;
    padding: 10px 0;
    font-size: 1.2rem;
  }
  .premium_drink_text p:nth-child( 3 ) {
    padding: 0 10px 5px;
    font-size: 1.6rem;
  }
  .premium_drink_text p:nth-child( 3 ) .text-red-size {
    font-size: 1.8rem;
  }
  .premium_drink_text p:nth-child( 4 ) {
    font-size: 1.2rem;
  }
  .premium_drink_text p:nth-child( 5 ){
    padding-bottom: 20px;
    font-size: 1.2rem;
  }
}

/* ベストレート表示 */
.bestrate {
  position: absolute;
  z-index: 10;
  top: 112px;
  right: 90px;
}
.bestrate img {
  width: 190px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .bestrate {
  top: 30px;
  right: 10px;
}
.bestrate img {
  width: 120px;
  height: auto;
}
}

/* 料理ページ・朝食調整 */
.cuisine .morning__photos {
  width: 1000px;
}

.cuisine .morning__images--02 {
  background-image:url(../images/cuisine/morning_002.jpg)
}
.cuisine .morning__images--03 {
  background-image:url(../images/cuisine/morning_003.jpg)
}

.morning__example p {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .cuisine .morning__photos {
    width: 100%;
  }
  .cuisine .morning nav {
    margin: 20px;
    background: none;
  }
}

/* 施設案内ページ・スライダー追加 */
.facilities .facilitieslist__photos {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 375px;
    position: relative;
    width: 500px;
}
.facilities .facilitieslist__images {
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
}
.facilities .facilitieslist__images li {
    background-position: center;
    background-size: cover;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.facilities .facilitieslist__images li[data-status=current] {
    animation: fadein 1s ease 0s 1 forwards;
    opacity: 1;
    z-index: 10;
}
.facilities .facilitieslist__images li[data-status=before],
.facilities .facilitieslist__images li[data-status=init] {
    opacity: 1;
    z-index: 5;
}
.facilities .facilitieslist__marker {
    bottom: 30px;
    right: 30px;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 10;
}
.facilities .facilitieslist__marker li {
    background: #fff;
    cursor: pointer;
    height: 2px;
    margin: 0 0 0 10px;
    position: relative;
    width: 32px;
    transition: all 250ms ease;
}
.facilities .facilitieslist__marker li[data-current=true] {
    background: #8d8068;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .facilities .facilitieslist__photos {
        height: 54.348vw;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
    }
    .facilities .facilitieslist__photos img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
    .facilities .facilitieslist__marker {
        bottom: 15px;
        right: 15px;
    }
    .facilities .facilitieslist__marker li {
        height: 1px;
        margin: 0 0 0 5px;
        width: 16px;
    }
}

