/* ==========================================
  互い違いレイアウト
========================================== */
.zigzag {
  margin: 1em auto;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

@media screen and (min-width:701px) {
  .zigzag {
    flex-direction: row;
    justify-content: space-between;
    gap: 8%;
  }
}

.zigzag__left-wrapper {
  display: contents;

}

@media screen and (min-width:701px) {
  .zigzag__left-wrapper {
    display: block;
    width: 46%;
    flex-shrink: 0;
  }
}


.zigzag__right-wrapper {
  display: contents;
}

@media screen and (min-width:701px) {
  .zigzag__right-wrapper {
    display: block;
    width: 46%;
    flex-shrink: 0;
  }
}

.zigzag__content2,
.zigzag__content4 {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.zigzag__content1 {
  order: 1;
}

.zigzag__content2 {
  order: 2;
  margin-top: 44px;
}

@media screen and (min-width:701px) {
  .zigzag__content2 {
    margin-top: 24px;
  }
}

.zigzag__content3 {
  order: 3;
  margin-top: 42px;
}

@media screen and (min-width:701px) {
  .zigzag__content3 {
    margin-top: 72px;
  }
}

.zigzag__content4 {
  order: 4;
  margin-top: 26px;
}

@media screen and (min-width:701px) {
  .zigzag__content4 {
    margin-top: 43px;
  }
}

.zigzag__image {
  width: 100%;
  aspect-ratio: 470 / 550;
}

.zigzag__image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.zigzag__title {
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left;
  margin-top: 0 !important;
  margin-bottom: 17px !important;
}

@media screen and (min-width:701px) {
  .zigzag__title {
    font-size: 24px !important;
  }
}

.zigzag__sub-title {
  font-family: "LINE Seed JP", sans-serif;
  letter-spacing: 0.05em !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: left;
  margin-top: 0 !important;
  margin-bottom: 17px !important;
}

@media screen and (min-width:701px) {
  .zigzag__sub-title {
    font-size: 27px !important;
  }
}

.zigzag__text {
  margin-top: 0 !important;
  font-size: 13px;
}

@media screen and (min-width:701px) {
  .zigzag__text {
    font-size: 16px;
  }
}


/* ==========================================
  画像とテキスト
========================================== */
.image-with-text {
  margin: 1em auto;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media screen and (min-width:701px) {
  .image-with-text {
    margin-top: 160px;
    margin-bottom: 160px;
  }
}

.image-with-text__image {
  width: 100%;
}

.image-with-text__image img {
  width: 100%;
  height: auto;
}

.image-with-text__wrapper {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width:701px) {
  .image-with-text__wrapper {
    flex-direction: row;
    margin-top: 66px;
  }
}

.image-with-text__content {
  max-width: 515px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.5;
}

@media screen and (min-width:701px) {
  .image-with-text__content {
    margin-left: 0 !important;
    padding-left: 55px;
  }
}


.image-with-text__title {
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left;
  margin-top: 0 !important;
  margin-bottom: 17px !important;
}

@media screen and (min-width:701px) {
  .image-with-text__title {
    font-size: 24px !important;
  }
}


.image-with-text__sub-title {
  font-family: "LINE Seed JP", sans-serif;
  letter-spacing: 0.05em !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: left;
  margin-top: 0 !important;
  margin-bottom: 17px !important;
}

@media screen and (min-width:701px) {
  .image-with-text__sub-title {
    font-size: 27px !important;
  }
}

.image-with-text__text {

}

@media screen and (min-width:701px) {
  .image-with-text__text {

  }
}

.image-with-text__share {
  max-width: 400px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 6px !important;
  flex-shrink: 0;
}

@media screen and (min-width:701px) {
  .image-with-text__share {
    margin-right: 0 !important;
    padding-right: 55px;
    width: fit-content;
    margin-top: 0 !important;
  }
}

.image-with-text__share-title {
  font-size: 10px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media screen and (min-width:701px) {
  .image-with-text__share-title {
    font-size: 12px;
  }
}

.image-with-text__icon-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 5px;
}

@media screen and (min-width:701px) {
  .image-with-text__icon-group {
    gap: 25px;
    margin-top: 10px;
  }
}

.image-with-text__icon {
  transition: opacity .2s ease-in-out;
}

.image-with-text__icon:hover {
  opacity: .75;
}

.image-with-text__icon img {
  height: 18px !important;
  width: auto;
  object-fit: contain;
}

@media screen and (min-width:701px) {
  .image-with-text__icon img {
    height: 24px !important;
  }
}

/* ==========================================
  テキスト（中央）
========================================== */
.bl-text-center__wrapper {

}

.bl-text-center__content {

  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.bl-text-center__title {
  text-align: left;
}

@media screen and (min-width:701px) {
  .bl-text-center__title {
    text-align: center;
  }
}

.bl-text-center__text {

}

/* ==========================================
  取扱店舗
========================================== */
.bl-store {
  background-color: #EEECE5;
  margin: 0 calc(50% - 50vw) !important;
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  width: 100vw !important;
  padding-top: 34px;
  padding-bottom: 34px;
  max-width: none !important;
}

@media screen and (min-width:701px) {
  .bl-store {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
}

.bl-store__inner {
  padding: 0 20px;
  max-width: 1080px;
  width: 83.1932773109%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:701px) {
  .bl-store__inner {
    width: 100%;
  }
}

.bl-store__wrapper {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

@media screen and (min-width:701px) {
  .bl-store__wrapper {
    flex-direction: row;
    gap: 5.2%;
  }
}

.bl-store__image {
  width: 100% !important;
  aspect-ratio: 2 / 1;
}

@media screen and (min-width:701px) {
  .bl-store__image {
    width: 38.46% !important;
    flex-shrink: 0;
  }
}

.bl-store__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.bl-store__content {}

.bl-store__title {
  font-size: 13px;
  font-weight: normal;
}

@media screen and (min-width:701px) {
  .bl-store__title {
    margin-top: 7px;
    font-size: 16px;
  }
}

.bl-store__area {
  margin-top: 9px;
  border: 1px solid #231815;
  border-radius: 4px;
  padding: 0 8px;
  background-color: #fff;
  text-align: center;
  width: fit-content;
  font-size: 10px;
}

.bl-store__store-name {
  font-size: 15px;
  margin-top: 5px;
}

@media screen and (min-width:701px) {
  .bl-store__store-name {
    font-size: 17px;
    margin-top: 9px;
  }
}

.bl-store__store-name-en {
  font-size: 11px;
  margin-top: 0;
}

@media screen and (min-width:701px) {
  .bl-store__store-name-en {
    font-size: 13px;
  }
}

.bl-store__table {
  margin-top: 4px;
  line-height: 1.5;
  font-size: 11px;
}

@media screen and (min-width:701px) {
  .bl-store__table {
    margin-top: 20px;
    font-size: 14px;
  }
}

.bl-store__table th {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  padding-right: 10px;
  vertical-align: top;
  width: 63px;

}

.bl-store__table th,
.bl-store__table td {
  padding: 4px 12px 4px 0 !important;
}

/* ==========================================
  バナー
========================================== */
.bl-banner {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:701px) {
  .bl-banner {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}

.bl-banner__link {
  width: 100%;
  transition: opacity .2s ease-in-out;
}

.bl-banner__link:hover {
  opacity: .75;
}

.bl-banner__link img {
  width: 100%;
  height: auto;
}

/* ==========================================
  【投稿】予約ボタン
========================================== */

.reservation-narrow {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:701px) {
  .reservation-narrow {

  }
}

.reservation-narrow__link {
  width: 100%;
  display: block;
  transition: opacity .2s ease-in-out;
}

.reservation-narrow a:hover {
  opacity: .75;
}

.reservation-narrow__image {
  width: 100%;
}

.reservation-narrow__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================
【投稿】プランリンク　プレビュー画面用========================================== */

.enjoy-plan {
  text-align: center;
  margin-top: 75px;
}

@media screen and (min-width:701px) {
  .enjoy-plan {
    margin-top: 150px;
  }
}

.enjoy-plan a {
  text-decoration: none !important;
}

.enjoy-plan--blog {
  margin-top: 60px;
}

@media screen and (min-width:701px) {
  .enjoy-plan--blog {
    margin-top: 120px;
  }
}

.enjoy-plan .valley-image-text__text {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.enjoy-plan .valley-image-text__title-en {
  margin-top: 35px;
}

@media screen and (min-width:701px) {
  .enjoy-plan .valley-image-text__title-en {
    margin-top: 90px;
  }
}

.enjoy-plan__grid {
  list-style: none !important;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 50px;
  column-gap: 20px;
  margin-top: 65px;
  padding: 0 20px;
}

@media screen and (min-width:701px) {
  .enjoy-plan__grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 130px;
    column-gap: 3.6%;
    padding: 0;
  }
}

.enjoy-plan--blog .enjoy-plan__grid {
  padding: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.enjoy-plan__card {
  margin: 0 !important;
}

.enjoy-plan__card a {
  transition: opacity .2s ease-in-out;
}

.enjoy-plan__card a:hover {
  opacity: .75;
}

.enjoy-plan__card-title {
  font-size: 11px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media screen and (min-width:701px) {
  .enjoy-plan__card-title {
    font-size: 22px;
  }
}

.enjoy-plan__card-image {
  margin-top: 10px;
}

@media screen and (min-width:701px) {
  .enjoy-plan__card-image {
    margin-top: 20px;
  }
}

.enjoy-plan__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enjoy-plan__plan-name {
  margin-top: 10px !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  padding: 6px !important;
  border: 1px solid #231815 !important;
  border-radius: 999px;
  max-width: 256px;
  width: 93%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 11px !important;
  margin-bottom: 0 !important;
}

@media screen and (min-width:701px) {
  .enjoy-plan__plan-name {
    margin-top: 18px !important;
    font-size: 16px !important;
    padding: 10px 8px !important;
  }
}

.enjoy-plan__explain {
  font-size: 10px;
  margin-top: 11px !important;
}

@media screen and (min-width:701px) {
  .enjoy-plan__explain {
    font-size: 15px;
    margin-top: 12px !important;
  }
}

/* ==========================================
  4Rooms
========================================== */
.single-stay__main-title {
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 65px;
}

@media screen and (min-width:701px) {
  .single-stay__main-title {
    max-width: 378px;
    margin-top: 95px;
  }
}

.single-stay__main-title img {
  width: 100%;
  height: auto;
}

.single-stay-inner {
  max-width: 1018px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.single-stay-top {
  margin-top: 29px;
}

@media screen and (min-width:701px) {
  .single-stay-top {
    margin-top: 43px;
  }
}

.single-stay-top__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width:701px) {
  .single-stay-top__wrapper {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }
}

.single-stay-top__message-wrapper {
  max-width: 350px;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

@media screen and (min-width:701px) {
  .single-stay-top__message-wrapper {
    margin-top: 79px;
    margin-right: 8%;
    width: 21%;
  }
}

.single-stay-top__message {
  /* max-width: 200px; */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:701px) {
  .single-stay-top__message {
    /* max-width: 250px; */
  }
}

.single-stay-top__message img {
  width: 100%;
  height: auto;
}

.single-stay-top__image-wrapper {
  width: 100%;
}

@media screen and (min-width:701px) {
  .single-stay-top__image-wrapper {
    width: 66%;
    flex-shrink: 0;
  }
}

.single-stay-top__image {
  width: 100%;
  aspect-ratio: 888/538;
}

.single-stay-top__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-stay-top__wrapper-2 {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 54px;
}

@media screen and (min-width:701px) {
  .single-stay-top__wrapper-2 {
    flex-direction: row;
    gap: 3.6%;
    margin-top: 70px;
    justify-content: space-between;
  }
}

.single-stay-top__text-wrapper {
  line-height: 1.5;
  padding: 0 35px;
  max-width: 470px;
  width: 100%;

}

.single-stay-top__title {
  font-size: 19px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  letter-spacing: .2em;
}

@media screen and (min-width:701px) {
  .single-stay-top__title {
    font-size: 30px;
  }
}

.single-stay-top__text {
  font-size: 12px;
  margin-top: 22px;
}

@media screen and (min-width:701px) {
  .single-stay-top__text {
    font-size: 16px;
    margin-top: 40px;
  }
}

.single-stay-top__2image-wrapper {
  height: 285px;
  width: 100%;
  position: relative;
}

@media screen and (min-width:701px) {
  .single-stay-top__2image-wrapper {
    width: 50%;
    height: 320px;
  }
}

@media screen and (min-width:980px) {
  .single-stay-top__2image-wrapper {
    height: 405px;
  }
}

.single-stay-top__sub-image-1 {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 30%;
  height: auto;
}

@media screen and (min-width:701px) {
  .single-stay-top__sub-image-1  {
    width: 44%;
    left: 6px;
  }
}

.single-stay-top__sub-image-1 img {
  width: 100%;
}

.single-stay-top__sub-image-2 {
  position: absolute;
  top: 0;
  right: 15px;
  width: 43%;
  max-width: 175px;
}

@media screen and (min-width:701px) {
  .single-stay-top__sub-image-2 {
    max-width: 220px;
    width: 50%;
    top: -76px;
    right: -10px;
  }
}

@media screen and (min-width:1240px) {
  .single-stay-top__sub-image-2 {
    max-width: none;
    width: 58%;
    top: -146px;
    right: -92px;
  }
}

.single-stay-top__sub-image-2 img {
  width: 100%;
}
/* 4Rooms */
.bl-rooms {
  padding: 47px 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width:701px) {
  .bl-rooms {
    padding: 94px 0;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.bl-rooms__title {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 21px;
  text-align: center;
  letter-spacing: .2em;
}

.bl-rooms__sub-title {
  font-size: 16px;
  margin-top: 11px;
  text-align: center;
  letter-spacing: .15em;
}

.bl-rooms__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 42px;
  gap: 35px;
  padding: 0 25px;
}

@media screen and (min-width:701px) {
  .bl-rooms__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 67px;
    column-gap: 12.2%;
    row-gap: 40px;
    padding: 0;
    position: relative;
  }

  .bl-rooms__grid::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #231815;
    position: absolute;
    top: 50%;
    left: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    
  }

  /* .bl-rooms__grid::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #231815;
    position: absolute;
    top: 49%;
    left: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    
  } */
}

@media screen and (min-width:701px) {
  .bl-rooms__card:not(:nth-child(1)):not(:nth-child(2)) {
    border-top: 1px solid #231815;
    padding-top: 70px;
  }
}

.bl-rooms__image {
  width: 100%;
  aspect-ratio: 600 / 360;
}

.bl-rooms__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-rooms__content {
  padding: 25px 12px;
  line-height: 1.5;
}

.bl-rooms__room-title-wrapper {
  display: flex;
  align-items: baseline;
  gap: 14px;
}


.bl-rooms__room-title-en {
  font-size: 20px;
  font-family: "futura-medium", sans-serif;
}

@media screen and (min-width:701px) {
  .bl-rooms__room-title-en {
    font-size: 25px;
  }
}

.bl-rooms__room-title {
  font-size: 12px;
}

@media screen and (min-width:701px) {
  .bl-rooms__room-title {
    font-size: 15px;
  }
}

.bl-room__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (min-width:701px) {
  .bl-room__icons {
    gap: 18px;
  }
}

.wp-block-bl-room-icon {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
}

@media screen and (min-width:701px) {
  .wp-block-bl-room-icon {
    gap: 4px;
    margin-top: 8px;
  }
}

.bl-room__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  
}

@media screen and (min-width:701px) {
  .bl-room__icon {
    width: 20px;
    height: 20px;
  }
}

.bl-room__icon-text {
  font-size: 10px;
}

@media screen and (min-width:701px) {
  .bl-room__icon-text {
    font-size: 14px;
  }
}

.room-icon--nosmoking {
  background: url("../image/common/icon_nosmoking.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.room-icon--size {
  background: url("../image/common/icon_size.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.room-icon--guests {
  background: url("../image/common/icon_guests.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.room-icon--bed {
  background: url("../image/common/icon_bed.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.bl-rooms__content-title {
  font-size: 18px;
  margin-top: 30px;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
}

@media screen and (min-width:701px) {
  .bl-rooms__content-title {
    font-size: 28px;
    margin-top: 36px;
  }
}

.bl-rooms__content-text {
  margin-top: 13px;
  font-size: 12px;
}

@media screen and (min-width:701px) {
  .bl-rooms__content-text {
    font-size: 15px;
  }
}


.stay-reservation {
  background-color: #EE7961;
  width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:701px) {
  .stay-reservation {
    width: 100%;
  }
}

.stay-reservation a {
  padding: 30px 0 40px;
  display: block;
  transition: opacity .2s ease-in-out;
}

.stay-reservation a:hover {
  opacity: .75;
}

@media screen and (min-width:701px) {
  .stay-reservation a {
    padding: 70px 0 80px;
  }
}

.stay-reservation__image {
  max-width: 300px;
  width: 54%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* .stay-reservation__image img {
  width: 100%;
  height: auto;
} */


/* ブロックセンター画像 */
.bl-image-center {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width:701px) {
  .bl-image-center {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.bl-image-center__image {
  width: 100%;
}

.bl-image-center__image img {
  width: 100%;
}

/* ブロック　プランテキスト */
.bl-plan-text {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width:701px) {
  .bl-plan-text {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.bl-plan-text__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 35px;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:701px) {
  .bl-plan-text__wrapper {
    flex-direction: row;
    gap: 5.8%;
    padding: 0;
    max-width: none;
    margin-left: 0;
  }
}

.bl-plan-text__image {
  width: 80%;
}

.bl-image-right__inner {
  padding: 0 15px;
  max-width: 1340px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:701px) {
  .bl-image-right__inner {
    padding: 0;
  }
}

@media screen and (min-width:701px) {
  .bl-plan-text__image {
    width: 29.5%;
    padding-left: 20px;
    flex-shrink: 0;
  }
}

.bl-plan-text__image img {
  width: 100%;
  height: auto;
}

.bl-plan-text__content {
  line-height: 1.5;
  width: 100%;
  max-width: 470px;
}

.bl-plan-text__title {
  font-size: 19px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
}

@media screen and (min-width:701px) {
  .bl-plan-text__title {
    font-size: 30px;
  }
}

.bl-plan-text__text {
  font-size: 12px;
  margin-top: 22px;
}

@media screen and (min-width:701px) {
  .bl-plan-text__text {
    font-size: 16px;
    margin-top: 40px;
  }
}

/* ブロック　ライト画像 */
.bl-image-right {

}

.bl-image-right__image {
  width: 100%;
}

@media screen and (min-width:701px) {
  .bl-image-right__image {
    max-width: 888px;
    margin-left: auto;
    margin-right: 0;
  }
}

.bl-image-right__image img {
  width: 100%;
  height: auto;
}

.single-valley__page-banner {
  margin-top: 0;
}



.bl-video {
  margin-top: 60px;
}

@media screen and (min-width:701px) {
  .bl-video {
    margin-top: 120px;
  }
}

.bl-video__wrapper {
  width: 100%;
  aspect-ratio: 1340 / 572;
  height: auto;
}

.bl-video__wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
  エリアの表示
========================================== */
.block-area {
  list-style: none !important;
  font-size: 12px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media screen and (min-width:701px) {
  .block-area {
    font-size: 14px;
    gap: 8px;
  }
}

.block-area li {
  position: relative;
  line-height: 1.2;
  padding-left: 10px;
  margin: 0 !important;
}

@media screen and (min-width:701px) {
  .block-area li {
    padding-left: 12px;
  }
}

.block-area li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  background: url("../image/common/icon_area.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  height: 12px;
}

@media screen and (min-width:701px) {
  .block-area li::before {
    width: 10px;
    height: 14px;
  }
}
