#main_visual {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.visual-wrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.catch-area {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 50vw;
    min-height: 100vh;
    margin-left: 0;
    color: #222;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #fff;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 5vw;
    top: -100px;
}

.catch-label {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: var(--font-s);
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    padding: 0.5rem 2rem 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.catch-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color, #0056ff);
    transform: translateX(-100%);
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.8s;
}

.catch-title {
    font-size: var(--font-xx);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: #222;
    letter-spacing: -2px;
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.catch-text {
    font-size: var(--font-m);
    color: #444;
    line-height: 1.7;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.6s;
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 50vw;
    width: 50vw;
    height: 100vh;
    background: url('http://mrsuite.jp/wp-content/uploads/visual.png') center center/cover no-repeat;
    z-index: 1;
    animation: zoomIn 20s ease-in-out infinite alternate;
    border-radius: 40px 0 0 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@media screen and (max-width: 900px) {
    #main_visual {
        min-height: 80vh;
    }
    
    .visual-wrapper {
        min-height: 80vh;
    }
    
    .catch-area {
        max-width: 100%;
        width: 100%;
        min-height: 60vh;
        padding: 3vw 4vw;
        margin-left: 0;
        top: 0;
        background: initial;
    }
    
    .visual-bg {
        left: 0;
        width: 100%;
        height: 100%;
        top: auto;
        bottom: 0;
        opacity: 0.3;
        border-radius: 0;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .catch-title {
        font-size: var(--font-x);
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }
    
    .catch-text {
        font-size: var(--font-m);
        line-height: 1.6;
    }
    
    .catch-label {
        font-size: var(--font-s);
        padding: 0.4rem 1.5rem 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 600px) {
    #main_visual {
        min-height: 70vh;
    }
    
    .visual-wrapper {
        min-height: 70vh;
    }
    
    .catch-area {
        padding: 2vw 3vw;
        gap: 1.2rem;
        min-height: 50vh;
        background: initial;
    }
    
    .catch-title {
        font-size: var(--font-l);
        margin-bottom: 0.8rem;
        letter-spacing: -0.5px;
    }
    
    .catch-label {
        font-size: var(--font-s);
        padding: 0.4rem 1.2rem 0.4rem 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .catch-text {
        font-size: var(--font-s);
        line-height: 1.6;
    }
    
    .visual-bg {
        height: 100%;
    }
}

@media screen and (max-width: 400px) {
    #main_visual {
        min-height: 60vh;
    }
    
    .visual-wrapper {
        min-height: 60vh;
    }
    
    .catch-area {
        padding: 1.5vw 2.5vw;
        gap: 1rem;
    }
    
    .catch-title {
        font-size: var(--font-l);
        margin-bottom: 0.6rem;
    }
    
    .catch-label {
        font-size: var(--font-s);
        padding: 0.3rem 1rem 0.3rem 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .catch-text {
        font-size: var(--font-s);
        line-height: 1.5;
    }
    
    .visual-bg {
        height: 100%;
    }
}

section#about {
    width: 100%;
    background: #f7fafc;
    padding: 80px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1 1 400px;
    color: #444;
    line-height: 2;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 32px 28px;
}

@media screen and (max-width: 900px) {
    section#about {
        padding: 60px 0;
    }
    .about-content {
        gap: 24px;
    }
    .about-text {
        padding: 24px 20px;
        width: 100%;
    }
    .btn_wrap {
        margin-top: 20px;
        width: 100%;
    }
    .more_btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 749px) {

}

#news {
    background: #fff;
    padding: 80px 0;
}

.news_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news_list li {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.2em 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 2em;
    position: relative;
}

.news_list li:hover {
    box-shadow: 0 4px 16px rgba(0,86,255,0.10);
    transform: translateY(-2px) scale(1.01);
}

.news_list .date {
    font-size: var(--font-s);
    color: #0056ff;
    min-width: 7em;
    font-family: 'Roboto Mono', 'Menlo', 'Consolas', monospace;
    letter-spacing: 0.04em;
    margin-right: 1.5em;
    margin-top: 0.2em;
    flex-shrink: 0;
}

.news_list li p {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    color: #222;
    font-size: var(--font-m);
    flex-wrap: wrap;
}

.news_list .news_title {
    font-weight: 700;
    color: #222;
    margin-right: 0.5em;
}

.news_list a {
    color: #0056ff;
    text-decoration: underline;
    transition: color 0.2s;
}
.news_list a:hover {
    color: #00bfff;
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    #news {
        padding: 48px 0;
    }
    .news_list li {
        flex-direction: column;
        gap: 0.5em;
        padding: 1em 1em;
    }
    .news_list .date {
        margin: 0 0 0.5em 0;
        min-width: 0;
        font-size: var(--font-s);
    }
    .news_list li p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3em;
        font-size: var(--font-s);
    }
    .news_list .news_title {
        margin-right: 0;
        font-size: var(--font-m);
    }
}

/* サービスセクション */
section#service {
    width: 100%;
    background: var(--primary-color, #0056ff);
    padding: 80px 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 32px;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.service-item--reverse {
    flex-direction: row-reverse;
    background: #f7fafc;
}

.service-item:not(:last-child) {
    margin-bottom: 48px;
}

.service-item__img {
    flex: 1 1 40%;
    background: #e0e7ef;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 2px solid #dde6f2;
    position: relative;
}

.service-item__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}

.service-item__body {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-item__title {
    font-size: var(--font-x);
    font-weight: 900;
    color: var(--primary-color, #0056ff);
    margin-bottom: 0.5em;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.service-item__subtitle {
    font-size: var(--font-m);
    font-weight: 400;
    color: #222;
}

.service-item__desc {
    font-size: var(--font-m);
    line-height: 1.8;
    color: #222;
}

.service-item__btn {
    display: inline-block;
    background: linear-gradient(90deg, #0056ff 0%, #00bfff 100%);
    color: #fff;
    font-size: var(--font-m);
    font-weight: 700;
    border-radius: 24px;
    padding: 0.8em 2.5em;
    margin-top: 1em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: opacity 0.3s, box-shadow 0.3s, transform 0.2s;
    border: none;
    width: auto;
    min-width: 160px;
    max-width: 200px;
}

.service-item__btn:hover {
    opacity: 0.85;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* serviceセクションのタイトル色も調整 */
section#service .title {
    color: #fff;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
    .service-item, .service-item--reverse {
        flex-direction: column !important;
        gap: 24px;
        align-items: flex-start;
    }
    .service-item__img, .service-item__body {
        width: 100%;
        min-width: 0;
    }
    .service-item__btn {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 600px) {
    section#service {
        padding: 48px 0;
    }
    .service-list {
        gap: 32px;
    }
    .service-item__img {
        min-width: 160px;
        min-height: 160px;
    }
    .service-item__title {
        font-size: var(--font-m);
    }
}

/* 入居者募集（for-rent）セクション */
section#for-rent {
    width: 100%;
    padding:var(--section-margin) 0;
}
.for-rent-list {
    
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: calc(var(--section-margin) / 2);
}

.for-rent-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 24px;
    margin-bottom: 0;
    position: relative;
}

.for-rent-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0,86,255,0.05) 0%, rgba(0,191,255,0.05) 100%);
    border-radius: 50%;
    transform: translate(50%, 50%);
    z-index: 0;
}

.for-rent-item__img {
    width: 60%;
    background: #e0e7ef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.for-rent-item__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.for-rent-item__body {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.for-rent-item__title {
    font-size: var(--font-l);
    font-weight: 700;
    margin-bottom: 0.5em;
    color: var(--primary-color, #0056ff);
}

.for-rent-item__desc {
    font-size: var(--font-m);
    color: #222;
    line-height: 1.7;
}

.for-rent-item__btn {
    display: inline-block;
    background: linear-gradient(90deg, #0056ff 0%, #00bfff 100%);
    color: #fff;
    font-size: var(--font-m);
    font-weight: 700;
    border-radius: 24px;
    padding: 0.8em 2.5em;
    margin-top: 1em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: opacity 0.3s, box-shadow 0.3s, transform 0.2s;
    border: none;
    width: auto;
    min-width: 160px;
    max-width: 200px;
    position: relative;
    overflow: hidden;
}

.for-rent-item__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.for-rent-item__btn:hover::after {
    transform: translateX(100%);
}

@media screen and (max-width: 900px) {
    .for-rent-item {
        flex-direction: column;
        gap: 24px;
        padding: 20px 10px;
    }
    .for-rent-item__img {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
    .for-rent-item__body {
        width: 100%;
    }
    .for-rent-item__btn {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

/* セクション共通のスタイル */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* サービスセクションの改善 */
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color, #0056ff);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item__img {
    position: relative;
}

.service-item__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,86,255,0.1) 0%, rgba(0,191,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-item:hover .service-item__img::after {
    opacity: 1;
}

/* ニュースセクションの改善 */
.news_list li {
    position: relative;
    transition: transform 0.3s;
}

.news_list li:hover {
    transform: translateX(10px);
}

/* 入居者募集セクションの改善 */
.for-rent-item {
    position: relative;
}

.for-rent-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0,86,255,0.05) 0%, rgba(0,191,255,0.05) 100%);
    border-radius: 50%;
    transform: translate(50%, 50%);
    z-index: 0;
}

.for-rent-item__btn {
    position: relative;
    overflow: hidden;
}

.for-rent-item__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.for-rent-item__btn:hover::after {
    transform: translateX(100%);
}
img.for-rent-item__logo{
    width: 100px;
    margin: 0 auto var(--section-margin1);
}
/* セクションタイトルの改善 */
.title {
    position: relative;
    display: inline-block;
    margin-bottom: 2em;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -0.5em;
    left: 0;
    width: 2em;
    height: 2px;
    background: var(--primary-color, #0056ff);
}

/* もっと見るボタン装飾 */
.more_btn {
  display: inline-block;
  background: linear-gradient(90deg, #0056ff 0%, #00bfff 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 0.8em 2.5em;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,86,255,0.10);
  transition: opacity 0.3s, box-shadow 0.3s, transform 0.2s, background 0.3s;
  border: none;
  cursor: pointer;
  min-width: 180px;
  letter-spacing: 0.05em;
}

.more_btn:hover {
  opacity: 0.9;
  box-shadow: 0 4px 16px rgba(0,86,255,0.18);
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(90deg, #00bfff 0%, #0056ff 100%);
}