.content__wraaper {
  padding-top: 100px;
}

.l-content_width{
  max-width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 980px) {
  .l-content_width{
  padding-left: 3%;
  padding-right: 3%;
  }
}

/* --- ページタイトル --- */
.outline-pagetitle{
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0;
  padding-left: 160px;
  width: 100%;
  text-align: left;
  font-size: 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 1300px) {
  .outline-pagetitle{
    max-width: 980px;
    width: auto;
    padding-left: 0;
    margin: 50px auto;
  }
}

@media screen and (max-width: 980px) {
  .outline-pagetitle{
    font-size: 24px;
    margin: 10px 3% 50px;
  }
}

.outline-pagetitle > span{
  width: 100%;
  font-size: 16px;
  color: var(--primary_color);
}

/* --- トップ画像 --- */
.outline-mainimage{
  position: relative;
  margin-left: 160px;
  margin-bottom: 100px;
  width: calc(100% - 160px);
  height: 600px;
  overflow: hidden;
}

@media screen and (max-width: 1300px) {
.outline-mainimage{
  position: relative;
  left: 0;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 100px;
  max-width: calc(980px + 160px);
  min-width: 980px;
  }
}

@media screen and (max-width: 980px) {
  .outline-mainimage{
    margin-left: 3%;
    margin-bottom: 50px;
    width: calc(100% - 3%);
    max-width: auto;
    min-width: auto;
    height: 300px;
  }
}

.outline-mainImage__body{
  width: 100%;
  height: inherit;
  overflow: hidden;
}

.outline-mainImage__body img{
  width: inherit;
  height: inherit;
  aspect-ratio: 21/10;
  object-fit: cover;
  object-position: 50% 70%;
}

@media screen and (max-width: 980px) {
  .outline-mainImage__body img{
    height: inherit;
    object-position: 50% 70%;
  }  
}

@media screen and (max-width: 767.98px) {
  .outline-mainImage__body img{
    height: inherit;
    object-position: 25% 70%;
  }  
}

/* --- リード --- */
.outlie-lead__body{
  display: block;
}

.outlie-lead__header{
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 50px;
}

.outlie-lead p{
  text-align: left;
}

/* --- section --- */
.amenity,
.location,
.overview{
  position: relative;
  width: 100%;
  margin-bottom: 200px;
}

@media screen and (max-width: 767.98px) {
  .amenity,
  .location,
  .overview{
    margin-bottom: 100px;
  }
}

.l-amenity__margin-top{
  margin-top: 100px;
}

@media screen and (max-width: 767.98px) {
  .l-amenity__margin-top{
    margin-top: 50px;
  }
}

.location::before,
.overview::before{
  position: absolute;
  top: -100px;
  left: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #d2cbad;
  transform: translate(-50%);  
}
.location::after,
.overview::after{
  position: absolute;
  top: -95px;
  left: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #d2cbad;
  transform: translate(-50%);  
}

@media screen and (max-width: 767.98px) {

  .location::before,
  .overview::before{
    top: -50px;
  }
  .location::after,
  .overview::after{
    top: -45px;
  }
}

/* --- amenity --- */
.amenity-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  row-gap: 50px;
}

.amenity-list__item{
  display: flex;
  flex-wrap: wrap;
  width: 30%;
  height: auto;
}

.amenity-list__item img{
  width: 100%;
  height: auto;
  background-color: gray;
}

.amenity-list__item-caption-wraaper{
  height: 50%;
}

@media screen and (max-width: 767.98px) {
  .amenity-list__item{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

.amenity-list__item img{
    width: 50%;
    height: auto;
  }

  .amenity-list__item-caption-wraaper{
    width: 45%;
    height: auto;
  }
}

.amenity-list__item-caption-header{
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0;
}

.amenity-list__item-caption{
  width: 100%;
}

/* --- googlemap --- */
.location p{
  margin-bottom: 50px;
}

.location__googlemap{
  width: 100%;
  height: 400px;
}

/* --- overview --- */
.overview table{
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.overview th, td{
  padding: 20px 20px;
}

.overview th{
  white-space: nowrap;
  color: #fff;
  background-color: #219866;
}

.overview td{
  /* background-color: #fdfdfc; */
  background-color: #fff;
}

@media screen and (max-width: 767.98px) {
  .overview th, td{
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  .overview th, td{
    padding: 10px 20px;
   }
}