/* 入居者の日常
----------------------------------*/
.listttl {
    color: #9b906e;
    margin: 0px;
    padding-top: 0;
    padding-bottom: 5px;
	margin-bottom: 20px;
    font-size: 2.3rem;
}

/* 入居者の日常 詳細
----------------------------------*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 20px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.everyday_box {
    padding-left: 5%;
    padding-right: 5%;
	padding-bottom: 5%;
	padding-top: 5%;
    background-color: rgba(255,255,255,1.0);
}
@media screen and (max-width:991px) {
.everyday_box {    
    background-color: rgba(255,255,255,0.9);
}
}
.everyday_ttl {
    font-size: 6.0rem;
    color: rgba(119,112,75,0.2);
    line-height: 1.1;
    padding-top: 10px;
    padding-bottom: 10px;
    letter-spacing: 0.1em;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}
@media screen and (max-width:576px) {
.everyday_ttl {    
    font-size: 9.5vw;
}
}
.bg01 {
    background-image: url(../img/service/bg01.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
}
.bg02 {
    background-image: url(../img/service/bg04.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
}

@media screen and (max-width:991px) {
.bg01 {
    background-image: none;
}
.bg02 {
    background-image: none;
}

}

.everyday_wrap {
  display: flex;
  align-items: center; /* 上下中央揃え */
  padding: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.image-wrapper {
  flex: 0 0 60%; /* 画像の幅を60%に固定 */
  z-index: 1;
}

.image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 8px; /* お好みで角丸に */
}

.content-box {
  flex: 0 0 50%; /* テキストの幅を50%に（画像と合わせて110%にするのがコツ） */
  background: #fff; /* 背景を白に */
  padding: 40px;
  margin-left: -10%; /* ここで画像に被せる（マイナスマージン） */
  z-index: 2; /* 画像より上に表示 */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* 浮いている感じを出す */
}

.title {
  margin-top: 0;
  font-size: 1.5rem;
}

/* スマホ対応：重なりを解除して縦並びにする */
@media (max-width: 768px) {
  .everyday_wrap {
    flex-direction: column;
    padding: 20px;
  }
  .content-box {
    margin-left: 0;
    margin-top: 20px; /* 上側に少し被せる */
    width: 90%;
  }
}

.everyday_wrap.reverse {
  flex-direction: row-reverse; /* 子要素の並びを右から左へ反転 */
}

.reverse .content-box {
  margin-left: 0;           /* 左マージンをリセット */
  margin-right: -10%;       /* 右側にマイナスマージンをかけて画像に被せる */
  text-align: left;         /* テキストは左揃えのまま */
}

/* スマホ対応：右画像の場合も縦並びに戻す */
@media (max-width: 768px) {
  .everyday_wrap.reverse {
    flex-direction: column; /* 縦並びに戻す */
  }
  .reverse .content-box {
    margin-right: 0;
    margin-top: 20px;
  }
}
.everyday_list {
    font-size: 1.8rem;
    margin-left: 30px;
  }