#main {
    max-width: 1440px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 40px 80px 0;
    margin-bottom: 96px;
    font-size: 14px;
}

.breadcrumb-link {
    color: var(--link-blue);
    text-decoration: underline;
}

.breadcrumb-separator {
    width: 8px;
    height: 8px;
}

.breadcrumb-separator img {
    display: block;
}

.article {
    max-width: 1120px;
    margin: 0 auto;
}

.article-header {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--neutral-gray-02);
}

.article-header .logo-brand {
    max-width: 205px;
}

.article-header .article-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.article-header .article-title h1 {
    font-size: 32px;
    letter-spacing: -0.02em;
}

.article-header .article-title .article-des {
    font-size: 20px;
    color: var(--premium-gray);
}

.article-header .article-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.article-header .date-wrap {
    display: flex;
    gap: 16px;

}

.article-header .date-wrap .date {
    display: flex;
    gap: 8px;
    font-size: 14px;
    align-items: center;
}

.article-header .date-wrap .date span {
    background-color: var(--neutral-gray-03);
    border-radius: 2px;
    padding: 6px 8px;
    line-height: 20px;
    font-weight: 600;
}

.article-header .like-btn {
    display: inline-block;
    padding: 12px 20px 10px 48px;
    border: 1px solid var(--neutral-gray-02);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--premium-black);
    background-image: url(../images/icon-2.png);
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-color: var(--white);
    background-size: 24px;
    line-height: 1;
}

.article-header .like-btn:hover {
    border-color: var(--primary);
    opacity: 1;
}

.article-header .like-btn.active {
    background-image: url(../images/icon-5.png);
    border-color: var(--primary);
}

.note {
    font-size: 14px;
    color: var(--premium-gray);
}


.gallery-section {
    margin-bottom: 48px;
}


.section-360 {
    margin-bottom: 64px;
}

.btn-360 {
    scroll-margin-bottom: 120px;
}

.btn-360 {
    background: url(../images/arrow-3.png) no-repeat right 28px center, var(--premium-black);
    background-size: 24px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 26px 60px;
    border: 1px solid var(--neutral-gray-02);
    border-radius: 50px;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 48px;
}

.btn-360 span {
    background: url(../images/icon-7.png) no-repeat left center;
    background-size: 28px;
    padding-left: 52px;
}

.article-content {
    background-color: var(--white);
    border: 1px solid var(--neutral-gray-02);
    border-radius: 4px;
    padding: 72px 80px 0;
}

.title-border {
    border-bottom: 1px solid var(--neutral-gray-02);
    padding-bottom: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.title-border h2 {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.title-border p {
    font-size: 14px;
    color: var(--neutral-gray-01);
}

.title-border::before {
    content: '';
    width: 4px;
    height: inherit;
    background-color: var(--primary);
    display: block;
    align-self: stretch;
}



.article-content > div {
    margin-bottom: 64px;
}

.red-box {
    background-color: var(--sub-red-02);
    border-radius: 4px;
    padding: 32px;
}

.price-wrap .red-box {
    padding-left: 18.75%;
    padding-right: 18.75%;
}

/* task80: fixed disclaimer under the price box. */
.price-wrap .price-note {
    margin-top: 16px;
    line-height: 22px;
}

/* task182 (CB 2026-08-21): the gap belongs to the note, not to the row. It used
   to be margin-bottom on .price-row, which is unconditional -- so on the ~84% of
   properties with no 買取再販 note the row was the box's only child and that
   margin still pushed it off centre by its own size (measured 1440px: 32px
   above, 56px below). Moved onto the note's own margin-top so it applies only
   when a note follows. Same in the vw and SP blocks below. */
.red-box .price-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.red-box .price-row + .note {
    margin-top: 24px;
}

.red-box .price-row .price {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-right: 16px;
}

.red-box .price-row .price span {
    font-size: 40px;
    color: var(--primary);
}

.red-box .price-row .price-small {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    gap: 0;
    align-items: center;
    line-height: 1;
}

.red-box .price-row .price-small .tag {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 16px;
    margin-right: 8px;
}

.red-box .price-row .price-small span {
    font-size: 24px;
}

.red-box .note {
    font-size: 14px;
    color: var(--premium-gray);
    line-height: 20px;
}

.info-wrap .title-border {
    margin-bottom: 8px;
}

.property-container {
    display: flex;
    gap: 40px;
}

.property-column {
    flex: 1;
}

.property-table {
    width: 100%;
    border-collapse: collapse;
}

.property-table tr {
    border-bottom: 1px solid var(--neutral-gray-02);
}

.property-table th,
.property-table td {
    padding: 24px 0 16px;
    text-align: left;
    vertical-align: top;
}

.property-table td {
    padding-left: 20px;
}

.property-table th {
    width: 120px;
    font-weight: 600;
    position: relative;
    border-bottom: 2px solid var(--primary);
}





.performance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.performance-item {
    position: relative;
    width: 18.3%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--neutral-gray-02);
    background-color: var(--base-white);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 4px;
}


.performance-item .icon-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    max-height: 122px;
}

.performance-item .icon-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.icon-label {
    font-size: 14px;
    width: 100%;
    text-align: center;
    padding: 6px 12px;
    line-height: 1.4;
    background-color: var(--gray);
    margin: 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 4px 4px;
}

/* ====== Popover ====== */

.performance-item .popover {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 14px;
    width: 280px;
    padding: 16px;
    background-color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 4px;
    display: none;
}

.performance-item .popover::after {
    content: "";
    width: 21px;
    height: 13px;
    position: absolute;
    top: calc(100% - 0.5px);
    left: calc(50% - 10px);
    background: url(../images/arrow-popover.png) no-repeat center / contain
}

/* Manager */
.manager-box {
    background-color: var(--gray);
    border-radius: 4px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.manager-box img {
    max-width: 160px;
}

.manager-box .manager-title {
    border-bottom: 1px solid var(--neutral-gray-02);
    margin-bottom: 20px;
    padding-bottom: 20px;

}

.manager-box .manager-title p {
    font-size: 14px;
    color: var(--premium-gray);
    margin-bottom: 8px;
    margin: 0;
}

.manager-box .manager-title h3 {
    font-size: 20px;
}

.map-container {
    display: flex;
    gap: 20px;
}

.map-container>* {
    flex: 1;
}

.map-container .map-iframe {
    border-radius: 4px;
    overflow: hidden;
}

.map-container img {
    max-width: 49%;
    height: auto;
    align-self: flex-start;
}

.map-container .map-right {
    background-color: var(--gray);
    border-radius: 4px;
    overflow: hidden;
}

.map-container .map-right h3 {
    font-size: 16px;
    padding: 20px;
    line-height: 1;
    margin: 0;
    background-color: var(--premium-black);
    color: var(--white);
    text-align: center;
}

.map-container .map-right .map-info {
    padding: 32px 20px;
}

.map-container .map-right .map-info p {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--neutral-gray-02);
    margin: 0;
    padding: 16px 0;
}

.map-container .map-right .map-info p:last-child {
    border-bottom: none;
}

.map-container .map-right .map-info p img {
    max-width: 16px;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-top: 3px;
}


.maintenance-wrap {}

.title-dot {
    position: relative;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-left:20px;
    display: flex;
    align-items: center;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.title-dot::before {
    content: "";
    position:absolute;
    top:6px;
    left:0;
    width:8px;
    height:8px;
    background-color:#c50018;
    border-radius:50%;
}

.timeline-table {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 4px;
    overflow: hidden;
}

.timeline-header,
.timeline-body {
    display: flex;
}

.timeline-header div,
.timeline-body div {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--neutral-gray-02);
}

.timeline-header div:last-child,
.timeline-body div:last-child {
    border-right: none;
}

.timeline-header {
    background-color: var(--premium-black);
    color: var(--white);
    font-weight: 600;
}

.timeline-body {
    background-color: var(--gray);
}

.timeline-body div.checked::after {
    content: "";
    display: block;
    width: 6px;
    height: 12px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    transform: rotate(45deg);
    margin-bottom: 4px;
}

.reform-list {
    border-top: 1px solid var(--neutral-gray-02);
}

.reform-list dl {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-bottom: 1px solid var(--neutral-gray-02);
    padding: 15px 0;
    margin: 0;
    font-weight: 600;
    gap: 6px;
}

.reform-list dt {
    color: var(--primary);
}

.reform-list dd {
    margin-left: 0;
}


.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-container .contact-left {
    flex: 1;
}

.contact-container .contact-right {
    flex: 1;
}

.contact-container .logo-brand {
    margin-bottom: 12px;
    max-width: 143px;
}

.contact-container .brand-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.1;
}

.contact-container p {
    margin-bottom: 32px;
}

.contact-container .contact-btn {
    display: inline-block;
    padding: 16px 48px;
    border: 1px solid var(--neutral-gray-02);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--premium-black);
    background: url(../images/arrow-9.png) right 16px center no-repeat, white;
    background-size: 24px;
    line-height: 1;
    min-width: 320px;
    text-align: center;
}

.contact-container .contact-btn:hover {
    border-color: var(--primary);
    opacity: 1;
    color: var(--primary);
}

/* task80 · property number under the contact button.
   The wrapper shrinks to the button so both lines centre against it. */
.contact-container .contact-action {
    display: inline-block;
}

/* One button per published phone number — they stack, they do not sit side by side. */
.contact-container .contact-action .contact-btn {
    display: block;
}

.contact-container .contact-action .contact-btn + .contact-btn {
    margin-top: 12px;
}

.contact-container .contact-action .contact-code {
    margin: 12px 0 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.contact-container .contact-action .contact-code-note {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--premium-gray);
    text-align: center;
}


.btn-fixed {
    background-color: rgba(223, 226, 229, 0.8);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 999;
    ;
}

.btn-fixed .btn-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

/* task80: the bar is 80% opaque but the buttons on it were not, so the strip
   still read as solid. The buttons carry the same 80% now. Declared once —
   the vw/SP blocks restate this selector without `opacity`, so it cascades. */
.btn-fixed .btn-wrap a {
    flex: 1;
    color: var(--white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1;
    opacity: 0.8;
}

.btn-fixed .btn-wrap a span {
    display: flex;
    align-items: center;
}

.btn-fixed .btn-wrap a img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.btn-fixed .btn-wrap a.btn-red {
    background: url(../images/arrow-2.png) no-repeat right 20px center,
        var(--primary);
    background-size: 24px;
}

.btn-fixed .btn-wrap a.btn-gray {
    background-color: var(--premium-black);
}

.btn-fixed .btn-wrap a .tel {
    font-size: 20px;
    margin-left: 4px;
}











/* Section Gallery 2 */
section.gallery {
    background-color: #646974;
    border-radius: 4px;
    margin-bottom: 48px;
    overflow: hidden;
}

.gallery_container{
    display:flex;
    
    .box{
        width:50%;
    }
}
.gallery_slider{
	.slider_img{
		position:relative;
		border-radius:4px;
		overflow:hidden;
		cursor:pointer;
		
		img{
			width:100%;
		}
		.title{
			display:flex;
			align-items:flex-end;
			position:absolute;
			bottom:0;
			left:0;
			width:100%;
			height:80px;
			padding:0 0 8px 12px;
			font-family:"IBM Plex Sans JP", sans-serif;
			font-weight:500;
			font-size:12px;
			line-height:18px;
			color:#ffffff;
			background:linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
		}
		.zoom{
			position:absolute;
			bottom:11px;
			right:12px;
			width:32px;
			height:32px;
			background:url('../images/search_lists/zoom_icon.png') center / cover no-repeat;
		}
	}
}
.gallery_thumbnail{
    position:relative;
	margin:0 !important;
    padding:0 57px;
	background-color:#646974;
	border-radius:2px;
	
    .thumbnail_box{
        display:grid;
        grid-template-columns:repeat(3, 1fr);
        gap:4px;
    }
    .thumbnail_img{
        padding:6px;
		border-radius:2px;
        cursor:pointer;
		transition:0.3s;

		&:hover{
			opacity:0.7;
		}
        &.is-active{
            position:relative;

            &:before{
                content:'';
                position:absolute;
                top:0;
                right:0;
                bottom:0;
                left:0;
                border:2px solid #ffffff;
                border-radius:4px;
            }
        }
		img{
			width:100%;
		}
	}
	.prev_arrow{
		left:8px;
		background:url('../images/common/slider_prev.svg') center / cover no-repeat;
	}
	.next_arrow{
        right:8px;
		background:url('../images/common/slider_next.svg') center / cover no-repeat;
	}
	.slide_arrow{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 32px;
        cursor: pointer;
        z-index: 100;

		&:hover{
			opacity:0.7;
		}
	}
    .slick-list{
        padding:28px 0 51px;
    }
    .slick-dots{
        display:flex;
        justify-content:center;
        gap:16px;
        bottom:21px;
        left:50%;
        transform:translateX(-50%);
        width:auto;

        li{
            width:auto;
            height:auto;
            margin:0;
            opacity:0.5;

            button{
                width:6px;
                height:6px;
                padding:0;
                background-color:#ffffff;
                border-radius:50%;

                &:before{
                    content:none;
                }
            }
            &.slick-active{
                opacity:1;
            }
        }
    }
}
.pswp__custom-caption{
	position:absolute;
    bottom:15px;
    left:20px;
    color:#ffffff;
    font-size:16px;
	text-shadow:1px 1px 3px #4f4f4f;
}

/* .gallery__main {
    flex: 1;
    position: relative;
    width: 50%;
    overflow: hidden;
}

.gallery__main-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.gallery__main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 560 / 420;
}

.gallery__main-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(to top, rgb(0 0 0 / 80%), transparent);
    padding: 16px 55px 16px 16px;
    display: block;
    width: 100%;
}

.icon-zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    width: 32px;
    height: 32px;
}

#slick-thumb-slider {
    padding: 20px 50px 40px;
    flex: 1;
    width: 50%;
    max-width: 50%;
    box-sizing: border-box;
    margin: 0;
}

.gallery__thumb {
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    margin: 4px;
    background: none;
}

.gallery__thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: white;
    border-radius: 4px;
    aspect-ratio: 138 / 103;
}

.gallery__thumb.active {
    border-color: var(--white);
}

#slick-thumb-slider .slick-slide>div {
    display: flex;
    flex-wrap: wrap;
}

#slick-thumb-slider .slick-slide .gallery__thumb {
    width: calc(33.333% - 8px) !important;
}


#slick-thumb-slider .slick-next {
    right: 8px;
    background: url(../images/arrow-7.png) no-repeat center center, var(--premium-black);

}

#slick-thumb-slider .slick-prev {
    left: 8px;
    background: url(../images/arrow-4.png) no-repeat center center, var(--premium-black);
}

#slick-thumb-slider .slick-prev,
#slick-thumb-slider .slick-next {
    z-index: 10;
    width: 42px;
    height: 34px;
    border: 1px solid var(--neutral-gray-02);
    border-radius: 30px;
    background-size: 8px;
    transition: 0.3s all;
}

#slick-thumb-slider .slick-prev:before,
#slick-thumb-slider .slick-next::before {
    display: none;
}

#slick-thumb-slider .slick-prev:hover,
#slick-thumb-slider .slick-next:hover {
    opacity: 0.7;
}

#slick-thumb-slider .gallery__thumb-label {
    display: none;
}

#slick-thumb-slider .slick-dots {
    bottom: 0;
    left: 0;
    padding: 10px 0;
}

#slick-thumb-slider .slick-dots li {
    margin: 0;
}

#slick-thumb-slider .slick-dots li button:before {
    color: white;
    opacity: 0.5;
}

#slick-thumb-slider .slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
} */




/* Light box */
.glightbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
    display: none;
}

.glightbox-clean .gclose {
    background-color: transparent !important;
    right: 0px !important;
    top: 5px !important;
    opacity: 1 !important;
}

.glightbox-clean .gclose:hover {
    opacity: 0.5 !important;
}

#glightbox-body .goverlay {
    background: rgba(0, 0, 0, .75) !important;
}

#glightbox-body .gcontainer {
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 720 / 610;
    height: auto;
}

#glightbox-body .gslide-media.gslide-image {
    max-width: 100%;
    aspect-ratio: 720 / 480;
    box-shadow: none !important;
}
#glightbox-body img {
    max-width: 100% !important;
    max-height: 100% !important;
}

.glightbox-gallery-counter {
    position: absolute;
    top: 16px;
    left: 0;
    z-index: 99999;
    width: 100%;
    color: var(--neutral-gray-02);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
}

.glightbox-clean .gslide-description {
    text-align: left;
    background: none !important;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 0 0 !important;
}

.glightbox-clean .gdesc-inner {
    padding: 0 !important;
}

.anshin_headline{
    display:flex;
    align-items:center;
    gap:32px;
    margin-bottom:32px;
    
    .no{
        display:flex;
        align-items:center;
        gap:8px;
        font-family:"IBM Plex Sans JP", sans-serif;
        font-weight:500;
        font-size:16px;
        line-height:24px;

        span{
            padding:3px 8px 2px;
            font-weight:600;
            font-size:14px;
            line-height:20px;
            color:#ffffff;
            background-color:#148b3b;
            border-radius:2px;
        }
    }
    p{
        font-family:"IBM Plex Sans JP", sans-serif;
        font-weight:500;
        font-size:16px;
        line-height:28px;
        color:#c50018;
    }
}
.anshin_container{
    display:grid;
    grid-template-columns:160px 1fr;
    gap:0 40px;
    margin-bottom:32px;

    .img{
        grid-row:1/3;
        padding:19px 25px 18px;
        border:1px solid #cccfd1;
        border-radius:4px;

        img{
            width:100%;
        }
    }
    h3{
        display:flex;
        align-items:flex-end;
        margin-bottom:17px;
        padding-bottom:14px;
        font-family:"IBM Plex Sans JP", sans-serif;
        font-weight:600;
        font-size:18px;
        line-height:28px;
        border-bottom:1px solid #cccfd1;
    }
    p{
        font-family:"IBM Plex Sans JP", sans-serif;
        font-weight:500;
        font-size:16px;
        line-height:28px;

        span{
            display:block;
            margin-top:8px;
            font-size:14px;
            line-height:20px;
            color:#6b6f75;
        }
    }
}
.anshin_form{
    padding:32px;
    border:1px solid #cccfd1;
    border-radius:4px;

    .title{
        position:relative;
        margin-bottom:24px;
        padding-left:20px;
        font-family:"IBM Plex Sans JP", sans-serif;
        font-weight:600;
        font-size:16px;
        line-height:24px;

        &:before{
            content:'';
            position:absolute;
            top:5px;
            left:0;
            width:8px;
            height:8px;
            background-color:#c50018;
            border-radius:50%;
        }
    }
    ul{
        display:flex;
        flex-direction:column;
        gap:20px;

        li{
            display:flex;
            align-items:flex-start;
            gap:8px;
            
            .check{
                position:relative;
                width:20px;
                height:20px;
                margin:0;
                background-color:#ffffff;
                border:1px solid #cccfd1;
                border-radius:4px;
            }
            p{
                font-family:"IBM Plex Sans JP", sans-serif;
                font-weight:500;
                font-size:16px;
                line-height:24px;
                color:#b5b7ba;
            }
            &.active{
                .check{
                    background-color:#c50018;
                    border-color:#c50018;

                    &:before{
                        content:'';
                        position:absolute;
                        top:3.5px;
                        left:50%;
                        transform:translateX(-50%) rotate(45deg);
                        width:4px;
                        height:7px;
                        border-bottom:2px solid #ffffff;
                        border-right:2px solid #ffffff;
                    }
                }
                p{
                    color:#32373e;
                }
            }
        }
    }
}


@media(min-width:769px){
    .performance-item:hover {
        border-color: var(--primary);
    }
    .performance-item.hover-item:hover .popover {
        display: block;
    }
}





/*-------------------- pc-spの間 --------------------*/
/*---------- base > width:1440px ----------*/
@media(max-width:1439px) and (min-width:769px){
    #main {
        max-width: 100vw;
        margin: 0 auto;
    }
    
    .breadcrumbs {
        display: flex;
        gap: 0.556vw;
        align-items: center;
        padding: 2.778vw 5.556vw 0;
        margin-bottom: 6.667vw;
        font-size: 0.972vw;
    }
    
    .breadcrumb-link {
        color: var(--link-blue);
        text-decoration: underline;
    }
    
    .breadcrumb-separator {
        width: 0.556vw;
        height: 0.556vw;
    }
    
    .breadcrumb-separator img {
        display: block;
    }
    
    .article {
        max-width: 77.778vw;
        margin: 0 auto;
    }
    
    .article-header {
        display: flex;
        gap: 1.667vw;
        margin-bottom: 2.222vw;
        padding-bottom: 2.222vw;
        border-bottom: 1px solid var(--neutral-gray-02);
    }
    
    .article-header .logo-brand {
        max-width: 14.236vw;
    }
    
    .article-header .article-title {
        display: flex;
        flex-direction: column;
        gap: 0.556vw;
        flex: 1;
    }
    
    .article-header .article-title h1 {
        font-size: 2.222vw;
        letter-spacing: -0.02em;
    }
    
    .article-header .article-title .article-des {
        font-size: 1.389vw;
        color: var(--premium-gray);
    }
    
    .article-header .article-header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1.389vw;
    }
    
    .article-header .date-wrap {
        display: flex;
        gap: 1.111vw;
    
    }
    
    .article-header .date-wrap .date {
        display: flex;
        gap: 0.556vw;
        font-size: 0.972vw;
        align-items: center;
    }
    
    .article-header .date-wrap .date span {
        background-color: var(--neutral-gray-03);
        border-radius: 0.139vw;
        padding: 0.417vw 0.556vw;
        line-height: 1.389vw;
        font-weight: 600;
    }
    
    .article-header .like-btn {
        display: inline-block;
        padding: 0.833vw 1.389vw 0.694vw 3.333vw;
        border: 1px solid var(--neutral-gray-02);
        border-radius: 3.472vw;
        font-size: 0.972vw;
        font-weight: 600;
        color: var(--premium-black);
        background-image: url(../images/icon-2.png);
        background-position: left 1.389vw center;
        background-repeat: no-repeat;
        background-color: var(--white);
        background-size: 1.667vw;
        line-height: 1;
    }
    
    .article-header .like-btn:hover {
        border-color: var(--primary);
        opacity: 1;
    }
    
    .article-header .like-btn.active {
        background-image: url(../images/icon-5.png);
        border-color: var(--primary);
    }
    
    .note {
        font-size: 0.972vw;
        color: var(--premium-gray);
    }
    
    
    .gallery-section {
        margin-bottom: 3.333vw;
    }
    
    
    .section-360 {
        margin-bottom: 4.444vw;
    }
    
    .btn-360 {
        background: url(../images/arrow-3.png) no-repeat right 1.944vw center, var(--premium-black);
        background-size: 1.667vw;
        color: var(--white);
        font-size: 1.25vw;
        font-weight: 600;
        padding: 1.806vw 4.167vw;
        border: 1px solid var(--neutral-gray-02);
        border-radius: 3.472vw;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 3.333vw;
    }
    
    .btn-360 span {
        background: url(../images/icon-7.png) no-repeat left center;
        background-size: 1.944vw;
        padding-left: 3.611vw;
    }
    
    .article-content {
        background-color: var(--white);
        border: 1px solid var(--neutral-gray-02);
        border-radius: 0.278vw;
        padding: 5vw 5.556vw 0;
    }
    
    .title-border {
        border-bottom: 1px solid var(--neutral-gray-02);
        padding-bottom: 1.111vw;
        display: flex;
        gap: 1.111vw;
        align-items: center;
        margin-bottom: 2.222vw;
    }
    
    .title-border h2 {
        font-size: 1.667vw;
        line-height: 1.1;
        letter-spacing: -0.02em;
        font-weight: 700;
    }
    
    .title-border p {
        font-size: 0.972vw;
        color: var(--neutral-gray-01);
    }
    
    .title-border::before {
        content: '';
        width: 0.278vw;
        height: inherit;
        background-color: var(--primary);
        display: block;
        align-self: stretch;
    }
    
    
    
    .article-content>div {
        margin-bottom: 4.444vw;
    }
    
    .red-box {
        background-color: var(--sub-red-02);
        border-radius: 0.278vw;
        padding: 2.222vw;
    }
    
    .price-wrap .red-box {
        padding-left: 18.75%;
        padding-right: 18.75%;
    }
    
    .red-box .price-row {
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 1.667vw;
    }

    .red-box .price-row + .note {
        margin-top: 1.667vw;
    }
    
    .red-box .price-row .price {
        font-size: 1.389vw;
        font-weight: 600;
        line-height: 1;
        margin-right: 1.111vw;
    }
    
    .red-box .price-row .price span {
        font-size: 2.778vw;
        color: var(--primary);
    }
    
    .red-box .price-row .price-small {
        font-size: 1.111vw;
        font-weight: 600;
        display: flex;
        gap: 0;
        align-items: center;
        line-height: 1;
    }
    
    .red-box .price-row .price-small .tag {
        background-color: var(--primary);
        color: var(--white);
        border-radius: 0.278vw;
        padding: 0.417vw 0.556vw;
        font-size: 1.111vw;
        margin-right: 0.556vw;
    }
    
    .red-box .price-row .price-small span {
        font-size: 1.667vw;
    }
    
    .red-box .note {
        font-size: 0.972vw;
        color: var(--premium-gray);
        line-height: 1.389vw;
    }
    
    .info-wrap .title-border {
        margin-bottom: 0.556vw;
    }
    
    .property-container {
        display: flex;
        gap: 2.778vw;
    }
    
    .property-column {
        flex: 1;
    }
    
    .property-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .property-table tr {
        border-bottom: 1px solid var(--neutral-gray-02);
    }
    
    .property-table th,
    .property-table td {
        padding: 1.667vw 0 1.111vw;
        text-align: left;
        vertical-align: top;
    }
    
    .property-table td {
        padding-left: 1.389vw;
    }
    
    .property-table th {
        width: 8.333vw;
        font-weight: 600;
        position: relative;
        border-bottom: 2px solid var(--primary);
    }
    
    
    
    
    
    .performance-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.389vw;
    }
    
    
    .performance-item {
        position: relative;
        width: 18.3%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid var(--neutral-gray-02);
        background-color: var(--base-white);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
        border-radius: 0.278vw;
    }
    
    
    .performance-item .icon-box {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.111vw;
        max-height: 8.472vw;
    }
    
    .performance-item .icon-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .icon-label {
        font-size: 0.972vw;
        width: 100%;
        text-align: center;
        padding: 0.417vw 0.833vw;
        line-height: 1.4;
        background-color: var(--gray);
        margin: 0;
        min-height: 3.611vw;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0 0 0.278vw 0.278vw;
    }
    
    /* ====== Popover ====== */
    
    .performance-item .popover {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 0.972vw;
        width: 19.444vw;
        padding: 1.111vw;
        background-color: var(--white);
        border: 1px solid var(--primary);
        border-radius: 0.278vw;
        display: none;
    }
    
    .performance-item .popover::after {
        content: "";
        width: 1.458vw;
        height: 0.903vw;
        position: absolute;
        top: calc(100% - 0.035vw);
        left: calc(50% - 0.694vw);
        background: url(../images/arrow-popover.png) no-repeat center / contain
    }
    
    /* Manager */
    .manager-box {
        background-color: var(--gray);
        border-radius: 0.278vw;
        padding: 2.778vw;
        display: flex;
        gap: 2.778vw;
        align-items: flex-start;
    }
    
    .manager-box img {
        max-width: 11.111vw;
    }
    
    .manager-box .manager-title {
        border-bottom: 1px solid var(--neutral-gray-02);
        margin-bottom: 1.389vw;
        padding-bottom: 1.389vw;
    
    }
    
    .manager-box .manager-title p {
        font-size: 0.972vw;
        color: var(--premium-gray);
        margin-bottom: 0.556vw;
        margin: 0;
    }
    
    .manager-box .manager-title h3 {
        font-size: 1.389vw;
    }
    
    .map-container {
        display: flex;
        gap: 1.389vw;
    }
    
    .map-container>* {
        flex: 1;
    }
    
    .map-container .map-iframe {
        border-radius: 0.278vw;
        overflow: hidden;
    }
    
    .map-container img {
        max-width: 49%;
        height: auto;
        align-self: flex-start;
    }
    
    .map-container .map-right {
        background-color: var(--gray);
        border-radius: 0.278vw;
        overflow: hidden;
    }
    
    .map-container .map-right h3 {
        font-size: 1.111vw;
        padding: 1.389vw;
        line-height: 1;
        margin: 0;
        background-color: var(--premium-black);
        color: var(--white);
        text-align: center;
    }
    
    .map-container .map-right .map-info {
        padding: 2.222vw 1.389vw;
    }
    
    .map-container .map-right .map-info p {
        display: flex;
        align-items: flex-start;
        gap: 1.111vw;
        font-weight: 600;
        border-bottom: 1px solid var(--neutral-gray-02);
        margin: 0;
        padding: 1.111vw 0;
    }
    
    .map-container .map-right .map-info p:last-child {
        border-bottom: none;
    }
    
    .map-container .map-right .map-info p img {
        max-width: 1.111vw;
        aspect-ratio: 1/1;
        object-fit: contain;
        margin-top: 0.208vw;
    }
    
    
    .maintenance-wrap {}
    
    .title-dot {
        position: relative;
        font-size: 1rem;
        margin-bottom: 1.389vw;
        padding-left:1.389vw;
        display: flex;
        align-items: center;
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-style: normal;
    }
    
    .title-dot::before {
        content: "";
        position:absolute;
        top:0.417vw;
        left:0;
        width:0.556vw;
        height:0.556vw;
        background-color:#c50018;
        border-radius:50%;
    }
    
    .timeline-table {
        width: 100%;
        margin-bottom: 2.222vw;
        border-radius: 0.278vw;
        overflow: hidden;
    }
    
    .timeline-header,
    .timeline-body {
        display: flex;
    }
    
    .timeline-header div,
    .timeline-body div {
        flex: 1;
        height: 3.333vw;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid var(--neutral-gray-02);
    }
    
    .timeline-header div:last-child,
    .timeline-body div:last-child {
        border-right: none;
    }
    
    .timeline-header {
        background-color: var(--premium-black);
        color: var(--white);
        font-weight: 600;
    }
    
    .timeline-body {
        background-color: var(--gray);
    }
    
    .timeline-body div.checked::after {
        content: "";
        display: block;
        width: 0.417vw;
        height: 0.833vw;
        border-bottom: 3px solid var(--primary);
        border-right: 3px solid var(--primary);
        transform: rotate(45deg);
        margin-bottom: 0.278vw;
    }
    
    .reform-list {
        border-top: 1px solid var(--neutral-gray-02);
    }
    
    .reform-list dl {
        display: grid;
        grid-template-columns: 8.333vw 1fr;
        border-bottom: 1px solid var(--neutral-gray-02);
        padding: 1.042vw 0;
        margin: 0;
        font-weight: 600;
        gap: 0.417vw;
    }
    
    .reform-list dt {
        color: var(--primary);
    }
    
    .reform-list dd {
        margin-left: 0;
    }
    
    
    .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2.778vw;
    }
    
    .contact-container .contact-left {
        flex: 1;
    }
    
    .contact-container .contact-right {
        flex: 1;
    }
    
    .contact-container .logo-brand {
        margin-bottom: 0.833vw;
        max-width: 9.931vw;
    }
    
    .contact-container .brand-title {
        font-size: 1.667vw;
        font-weight: 600;
        margin-bottom: 0.833vw;
        line-height: 1.1;
    }
    
    .contact-container p {
        margin-bottom: 2.222vw;
    }

    .contact-container .contact-action .contact-code {
        margin: 0.833vw 0 0;
        font-size: 1.111vw;
    }

    .contact-container .contact-action .contact-code-note {
        margin: 0.278vw 0 0;
        font-size: 0.972vw;
    }

    .contact-container .contact-btn {
        display: inline-block;
        padding: 1.111vw 3.333vw;
        border: 1px solid var(--neutral-gray-02);
        border-radius: 3.472vw;
        font-size: 1.111vw;
        font-weight: 600;
        color: var(--premium-black);
        background: url(../images/arrow-9.png) right 1.111vw center no-repeat, white;
        background-size: 1.667vw;
        line-height: 1;
        min-width: 22.222vw;
        text-align: center;
    }
    
    .contact-container .contact-btn:hover {
        border-color: var(--primary);
        opacity: 1;
        color: var(--primary);
    }
    
    
    .btn-fixed {
        background-color: var(--neutral-gray-03);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.111vw;
        z-index: 999;
        ;
    }
    
    .btn-fixed .btn-wrap {
        max-width: 83.333vw;
        margin: 0 auto;
        display: flex;
        gap: 1.389vw;
    }
    
    .btn-fixed .btn-wrap a {
        flex: 1;
        color: var(--white);
        border-radius: 3.472vw;
        font-size: 1.111vw;
        font-weight: 600;
        padding: 1.389vw 3.125vw;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.833vw;
        line-height: 1;
    }
    
    .btn-fixed .btn-wrap a span {
        display: flex;
        align-items: center;
    }
    
    .btn-fixed .btn-wrap a img {
        width: 1.389vw;
        height: 1.389vw;
        margin-right: 0.556vw;
    }
    
    .btn-fixed .btn-wrap a.btn-red {
        background: url(../images/arrow-2.png) no-repeat right 1.389vw center,
            var(--primary);
        background-size: 1.667vw;
    }
    
    .btn-fixed .btn-wrap a.btn-gray {
        background-color: var(--premium-black);
    }
    
    .btn-fixed .btn-wrap a .tel {
        font-size: 1.389vw;
        margin-left: 0.278vw;
    }
    
    

    /* Section Gallery 2 */
    section.gallery {
        background-color: #646974;
        border-radius: 0.278vw;
        /* display: flex;
        gap: 0; */
        margin-bottom: 3.333vw;
        overflow: hidden;
    }

    .gallery_container{
        display:flex;
        
        .box{
            width:50%;
        }
    }
    .gallery_slider{
        .slider_img{
            position:relative;
            border-radius:0.278vw;
            overflow:hidden;
            cursor:pointer;
            
            img{
                width:100%;
            }
            .title{
                display:flex;
                align-items:flex-end;
                position:absolute;
                bottom:0;
                left:0;
                width:100%;
                height:5.556vw;
                padding:0 0 0.556vw 0.833vw;
                font-family:"IBM Plex Sans JP", sans-serif;
                font-weight:500;
                font-size:0.833vw;
                line-height:1.25vw;
                color:#ffffff;
                background:linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
            }
            .zoom{
                position:absolute;
                bottom:0.764vw;
                right:0.833vw;
                width:2.222vw;
                height:2.222vw;
                background:url('../images/search_lists/zoom_icon.png') center / cover no-repeat;
            }
        }
    }
    .gallery_thumbnail{
        position:relative;
        margin:0 !important;
        padding:0 3.958vw;
        background-color:#646974;
        border-radius:0.139vw;
        
        .thumbnail_box{
            display:grid;
            grid-template-columns:repeat(3, 1fr);
            gap:0.278vw;
        }
        .thumbnail_img{
            padding:0.417vw;
            border-radius:0.139vw;
            cursor:pointer;
            transition:0.3s;
    
            &:hover{
                opacity:0.7;
            }
            &.is-active{
                position:relative;
    
                &:before{
                    content:'';
                    position:absolute;
                    top:0;
                    right:0;
                    bottom:0;
                    left:0;
                    border:0.139vw solid #ffffff;
                    border-radius:0.278vw;
                }
            }
            img{
                width:100%;
            }
        }
        .prev_arrow{
            left:0.556vw;
            background:url('../images/common/slider_prev.svg') center / cover no-repeat;
        }
        .next_arrow{
            right:0.556vw;
            background:url('../images/common/slider_next.svg') center / cover no-repeat;
        }
        .slide_arrow{
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 2.917vw;
            height: 2.222vw;
            cursor: pointer;
            z-index: 100;
    
            &:hover{
                opacity:0.7;
            }
        }
        .slick-list{
            padding:1.944vw 0 3.542vw;
        }
        .slick-dots{
            display:flex;
            justify-content:center;
            gap:1.111vw;
            bottom:1.458vw;
            left:50%;
            transform:translateX(-50%);
            width:auto;
        
            li{
                width:auto;
                height:auto;
                margin:0;
                opacity:0.5;
        
                button{
                    width:0.417vw;
                    height:0.417vw;
                    padding:0;
                    background-color:#ffffff;
                    border-radius:50%;
        
                    &:before{
                        content:none;
                    }
                }
                &.slick-active{
                    opacity:1;
                }
            }
        }
    }
    
    /* .gallery__main {
        flex: 1;
        position: relative;
        width: 50%;
        overflow: hidden;
    }
    
    .gallery__main-img-wrap {
        width: 100%;
        height: 100%;
        position: relative;
        display: block;
    }
    
    .gallery__main-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        aspect-ratio: 560 / 420;
    }
    
    .gallery__main-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: #fff;
        font-size: 0.972vw;
        font-weight: 600;
        background: linear-gradient(to top, rgb(0 0 0 / 80%), transparent);
        padding: 1.111vw 3.819vw 1.111vw 1.111vw;
        display: block;
        width: 100%;
    }
    
    .icon-zoom {
        position: absolute;
        right: 1.111vw;
        bottom: 1.111vw;
        z-index: 1;
        width: 2.222vw;
        height: 2.222vw;
    }
    
    #slick-thumb-slider {
        padding: 1.389vw 3.472vw 2.778vw;
        flex: 1;
        width: 50%;
        max-width: 50%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .gallery__thumb {
        position: relative;
        border: 2px solid transparent;
        overflow: hidden;
        border-radius: 0.278vw;
        padding: 0.278vw;
        cursor: pointer;
        margin: 0.278vw;
        background: none;
    }
    
    .gallery__thumb img {
        width: 100%;
        height: auto;
        object-fit: cover;
        background: white;
        border-radius: 0.278vw;
        aspect-ratio: 138 / 103;
    }
    
    .gallery__thumb.active {
        border-color: var(--white);
    }
    
    #slick-thumb-slider .slick-slide>div {
        display: flex;
        flex-wrap: wrap;
    }
    
    #slick-thumb-slider .slick-slide .gallery__thumb {
        width: calc(33.333% - 0.556vw) !important;
    }
    
    
    #slick-thumb-slider .slick-next {
        right: 0.556vw;
        background: url(../images/arrow-7.png) no-repeat center center, var(--premium-black);
    
    }
    
    #slick-thumb-slider .slick-prev {
        left: 0.556vw;
        background: url(../images/arrow-4.png) no-repeat center center, var(--premium-black);
    }
    
    #slick-thumb-slider .slick-prev,
    #slick-thumb-slider .slick-next {
        z-index: 10;
        width: 2.917vw;
        height: 2.361vw;
        border: 1px solid var(--neutral-gray-02);
        border-radius: 2.083vw;
        background-size: 0.556vw;
        transition: 0.3s all;
    }
    
    #slick-thumb-slider .slick-prev:before,
    #slick-thumb-slider .slick-next::before {
        display: none;
    }
    
    #slick-thumb-slider .slick-prev:hover,
    #slick-thumb-slider .slick-next:hover {
        opacity: 0.7;
    }
    
    #slick-thumb-slider .gallery__thumb-label {
        display: none;
    }
    
    #slick-thumb-slider .slick-dots {
        bottom: 0;
        left: 0;
        padding: 0.694vw 0;
    }
    
    #slick-thumb-slider .slick-dots li {
        margin: 0;
    }
    
    #slick-thumb-slider .slick-dots li button:before {
        color: white;
        opacity: 0.5;
    }
    
    #slick-thumb-slider .slick-dots li.slick-active button:before {
        color: white;
        opacity: 1;
    } */
    
    
    
    
    /* Light box */
    .glightbox-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .glightbox-clean .gnext,
    .glightbox-clean .gprev {
        display: none;
    }
    
    .glightbox-clean .gclose {
        background-color: transparent !important;
        right: 0 !important;
        top: 0.347vw !important;
        opacity: 1 !important;
    }
    
    .glightbox-clean .gclose:hover {
        opacity: 0.5 !important;
    }
    
    #glightbox-body .goverlay {
        background: rgba(0, 0, 0, .75) !important;
    }
    
    #glightbox-body .gcontainer {
        max-width: 50vw;
        margin: 0 auto;
        aspect-ratio: 720 / 610;
        height: auto;
    }
    
    #glightbox-body .gslide-media.gslide-image {
        max-width: 100%;
        aspect-ratio: 720 / 480;
        box-shadow: none !important;
    }
    #glightbox-body img {
        max-width: 100% !important;
        max-height: 100% !important;
    }
    
    .glightbox-gallery-counter {
        position: absolute;
        top: 1.111vw;
        left: 0;
        z-index: 99999;
        width: 100%;
        color: var(--neutral-gray-02);
        font-size: 0.972vw;
        font-weight: 600;
        line-height: 1;
        pointer-events: none;
    }
    
    .glightbox-clean .gslide-description {
        text-align: left;
        background: none !important;
        color: var(--white);
        font-size: 0.972vw;
        font-weight: 600;
        padding: 1.111vw 0 0 !important;
    }
    
    .glightbox-clean .gdesc-inner {
        padding: 0 !important;
    }

    .anshin_headline{
        display:flex;
        align-items:center;
        gap:2.222vw;
        margin-bottom:2.222vw;
        
        .no{
            display:flex;
            align-items:center;
            gap:0.556vw;
            font-family:"IBM Plex Sans JP", sans-serif;
            font-weight:500;
            font-size:1.111vw;
            line-height:1.667vw;
    
            span{
                padding:0.208vw 0.556vw 0.139vw;
                font-weight:600;
                font-size:0.972vw;
                line-height:1.389vw;
                color:#ffffff;
                background-color:#148b3b;
                border-radius:0.139vw;
            }
        }
        p{
            font-family:"IBM Plex Sans JP", sans-serif;
            font-weight:500;
            font-size:1.111vw;
            line-height:1.944vw;
            color:#c50018;
        }
    }
    .anshin_container{
        display:grid;
        grid-template-columns:11.111vw 1fr;
        gap:0 2.778vw;
        margin-bottom:2.222vw;
    
        .img{
            grid-row:1/3;
            padding:1.319vw 1.736vw 1.25vw;
            border:0.069vw solid #cccfd1;
            border-radius:0.278vw;
    
            img{
                width:100%;
            }
        }
        h3{
            display:flex;
            align-items:flex-end;
            margin-bottom:1.181vw;
            padding-bottom:0.972vw;
            font-family:"IBM Plex Sans JP", sans-serif;
            font-weight:600;
            font-size:1.25vw;
            line-height:1.944vw;
            border-bottom:0.069vw solid #cccfd1;
        }
        p{
            font-family:"IBM Plex Sans JP", sans-serif;
            font-weight:500;
            font-size:1.111vw;
            line-height:1.944vw;
    
            span{
                display:block;
                margin-top:0.556vw;
                font-size:0.972vw;
                line-height:1.389vw;
                color:#6b6f75;
            }
        }
    }
    .anshin_form{
        padding:2.222vw;
        border:0.069vw solid #cccfd1;
        border-radius:0.278vw;
    
        .title{
            position:relative;
            margin-bottom:1.667vw;
            padding-left:1.389vw;
            font-family:"IBM Plex Sans JP", sans-serif;
            font-weight:600;
            font-size:1.111vw;
            line-height:1.667vw;
    
            &:before{
                content:'';
                position:absolute;
                top:0.347vw;
                left:0;
                width:0.556vw;
                height:0.556vw;
                background-color:#c50018;
                border-radius:50%;
            }
        }
        ul{
            display:flex;
            flex-direction:column;
            gap:1.389vw;
    
            li{
                display:flex;
                align-items:flex-start;
                gap:0.556vw;
                
                .check{
                    position:relative;
                    width:1.389vw;
                    height:1.389vw;
                    margin:0;
                    background-color:#ffffff;
                    border:0.069vw solid #cccfd1;
                    border-radius:0.278vw;
                }
                p{
                    font-family:"IBM Plex Sans JP", sans-serif;
                    font-weight:500;
                    font-size:1.111vw;
                    line-height:1.667vw;
                    color:#b5b7ba;
                }
                &.active{
                    .check{
                        background-color:#c50018;
                        border-color:#c50018;
    
                        &:before{
                            content:'';
                            position:absolute;
                            top:0.243vw;
                            left:50%;
                            transform:translateX(-50%) rotate(45deg);
                            width:0.278vw;
                            height:0.486vw;
                            border-bottom:0.139vw solid #ffffff;
                            border-right:0.139vw solid #ffffff;
                        }
                    }
                    p{
                        color:#32373e;
                    }
                }
            }
        }
    }
}





/*-------------------- sp --------------------*/
/*---------- base > width:375px ----------*/
@media(max-width:768px){
    .performance-item.active {
        border-color: var(--primary);
    }
    .performance-item.hover-item.active .popover {
        display: block;
    }

    #main {
        display: flex;
        flex-direction: column-reverse;
    }

    .breadcrumbs {
        background-color: var(--white);
        padding: 5.333vw 4.267vw;
        margin: 0;
        font-size:3.733vw;
    }

    .breadcrumb-link {
        font-size:3.733vw;
    }
    
    .breadcrumb-separator {
        width: 2.133vw;
        height: 2.133vw;
    }

    .article {
        max-width: 100%;
        /* padding-top: 14.933vw; */
    }

    .article-header {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3.2vw;
        margin: 0 0 6.4vw;
        padding-bottom: 6.4vw;
    }

    .article-header .logo-brand {
        order: 1;
        max-width: 34.133vw;
        height: auto;
        flex: auto;
    }

    .article-header .article-title {
        order: 3;
        width: 100%;
        flex: auto;
        margin-top: 2.667vw;
    }

    .article-header .article-title h1 {
        font-size: 6.4vw;
    }

    .article-header .article-title .article-des {
        font-size: 4.267vw;
    }


    .article-header .article-header-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2.133vw;
        order: 2;
        flex: 1;
    }

    .article-header .article-header-right .date-wrap {
        flex-direction: column;
        gap: 1.067vw;
    }

    .article-header .article-header-right .date-wrap .date {
        font-size: 3.2vw;
    }

    .article-header .date-wrap .date span {
        padding: 0.533vw 2.133vw;
    }

    .article-header .like-btn {
        font-size: 0px;
        width: 10.667vw;
        height: 10.667vw;
        box-sizing: border-box;
        background-position: center;
        padding: 0;
    }

    .btn-fixed {
        padding: 3.2vw 4.267vw;
        width: 100vw;
        box-sizing: border-box;
    }

    .btn-fixed .btn-wrap {
        max-width: 100%;
        gap: 2.4vw;
    }

    .btn-fixed .btn-wrap a {
        flex-direction: column;
        border: 1px solid var(--neutral-gray-02);
        padding: 2.667vw;
        gap: 1.067vw;
        font-size: 3.2vw;
        flex: 1;
        max-width: 50%;
    }

    .btn-fixed .btn-wrap a.btn-gray {
        font-size: 2.667vw;
    }

    .btn-fixed .btn-wrap a .tel {
        font-size: 3.2vw;
    }

    .btn-fixed .btn-wrap a img {
        width: 3.2vw;
        height: 3.2vw;
        margin-right: 1.067vw;
    }

    .btn-fixed .btn-wrap a.btn-red {
        background-position: right 12px center;
        padding: 2.667vw 9.6vw;
    }

    .section-360 {
        margin-bottom: 10.133vw;
        padding: 0;
    }

    .btn-360 {
        font-size: 3.733vw;
        padding: 3.733vw 10.667vw;
        max-width: 74.667vw;
        margin: 0 auto 32px;
        background-position: right 12px center;
    }

    .btn-360 span {
        background-size: 5.333vw;
        padding-left: 7.467vw;
    }

    .note {
        font-size: 3.2vw;
    }

    .article-content {
        border-radius: 0;
        padding: 12.8vw 4.267vw 0;
        margin:0 -4.267vw;
        border-left: 0;
        border-right: 0;
    }

    .title-border {
        margin-bottom: 6.4vw;
        gap: 3.2vw;
    }

    .title-border h2 {
        font-size: 5.333vw;
        letter-spacing: 0;
        font-weight: 800;
    }

    .title-border p {
        font-size: 3.2vw;
    }

    .red-box {
        padding: 6.4vw 4.267vw;
    }

    .price-wrap .red-box {
        padding: 6.4vw 13.333vw;
    }

    .price-wrap .price-note {
        margin-top: 4.267vw;
        line-height: 5.333vw;
    }

    .red-box .price-row {
        gap: 3.2vw;
        text-align: center;
    }

    .red-box .price-row + .note {
        margin-top: 4.267vw;
    }

    .red-box .price-row .price {
        width: 100%;
        font-size: 4.267vw;
        font-weight: 600;
        line-height: 1;
        margin-right: 0;
    }

    .red-box .price-row .price-small {
        width: calc(50% - 1.6vw);
        flex-wrap: wrap;
        font-size: 3.733vw;
        justify-content: center;
    }

    .red-box .price-row .price-small span {
        font-size: 5.333vw;
    }

    .red-box .price-row .price-small .tag {
        width: 100%;
        font-size: 3.733vw;
        margin: 0 0 2.133vw;
    }

    .red-box .note {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }

    .property-container {
        flex-direction: column;
        gap: 0;
    }

    .property-table th,
    .property-table td {
        font-size: 3.733vw;
        padding: 5.333vw 0 3.2vw;
    }

    .property-table th {
        width: 26.667vw;
    }

    .property-table td {
        padding-left: 4.267vw;
    }

    .performance-grid {
        gap: 3.2vw;
    }

    .performance-item {
        width: calc(50% - 1.6vw);
    }

    .performance-item .popover {
        left: 0;
        right: auto;
        transform: none;
        font-size: 3.733vw;
        line-height: 5.333vw;
    }

    .performance-item:nth-child(2n) .popover {
        right: 0;
        left: auto;
    }

    .performance-item .popover::after {
        top: calc(100% - 0.267vw);
        left: 28%;
    }

    .performance-item:nth-child(2n) .popover::after {
        top: calc(100% - 0.267vw);
        left: 68%;
    }

    .manager-box {
        padding: 6.4vw 4.267vw;
        flex-direction: column;
    }

    .manager-box img {
        max-width: 26.667vw;
        position: absolute;
    }

    .manager-box .manager-title {
        margin-bottom: 4.267vw;
        padding: 0 0 4.267vw 30.933vw;
        min-height: 30.933vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .manager-box .manager-title h3 {
        font-size: 4.8vw;
    }

    .manager-box p {
        line-height: 6.4vw;
    }

    .manager-box .manager-title p {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }

    .map-container {
        flex-direction: column;
    }

    .map-container img {
        max-width: 100%;
    }

    .map-container .map-right h3 {
        font-size: 3.733vw;
        padding: 4.267vw;
    }

    .map-container .map-right .map-info p {
        gap: 3.2vw;
    }

    .map-container .map-right .map-info {
        padding: 2.133vw 4.267vw;
    }

    .title-dot {
        margin-bottom: 4.267vw;
        padding-left:4.267vw;
    }
    
    .title-dot::before {
        top:1.6vw;
        width:2.133vw;
        height:2.133vw;
    }

    .timeline-table {
        width: 213.333vw;
    }

    .timeline-table-wrap {
        overflow-x: scroll;
        margin-bottom: 8.533vw;

        &::-webkit-scrollbar{
            width:1.067vw;
            height:1.067vw;
        }
        &::-webkit-scrollbar-thumb{
            background:#c50018;
            border-radius:0.533vw;
        }
        &::-webkit-scrollbar-track{
            background:#cccfd1;
            border-radius:0.533vw;
        }
    }

    .reform-list dl {
        grid-template-columns: 98px 1fr;
    }

    .contact-container .brand-title {
        font-size: 5.333vw;
    }

    .contact-container {
        position: relative;
        flex-direction: column;
        gap: 0;
    }

    /* task80: the button used to be absolutely pinned to the bottom of the whole
       contact card, below the table. The agency's mockup puts it straight under
       the company name, and the block is no longer a fixed height anyway — an
       agency with two published numbers gets two buttons — so it flows. */
    .contact-container .contact-action {
        display: block;
        margin-bottom: 8.533vw;
    }

    .contact-container .contact-action .contact-btn + .contact-btn {
        margin-top: 3.2vw;
    }

    .contact-container .contact-action .contact-code {
        margin: 3.2vw 0 0;
        font-size: 3.733vw;
    }

    .contact-container .contact-action .contact-code-note {
        margin: 1.067vw 0 0;
        font-size: 3.2vw;
    }

    .contact-container .contact-btn {
        display: block;
        font-size: 3.733vw;
        background-position: right 12px center;
        max-width: 74.667vw;
        margin: 0 auto;
        box-sizing: border-box;
        min-width: unset;
    }

    .contact-container p {
        margin-bottom: 4.267vw;
    }

    a.show-more {
        font-size: 3.733vw;
        display: block;
        text-align: center;
        text-decoration: underline;
        margin-top: 6.4vw;
        color: var(--premium-black);
    }


    .property-container {
        max-height: 89.333vw;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        position: relative;
    }

    .property-container.is-expanded {
        max-height: unset;
    }

    .property-container::before {
        content: '';
        width: 100%;
        height: 21.333vw;
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(to top, var(--white), transparent);
    }

    .property-container.is-expanded::before {
        display: none;
    }

    section.gallery {
        flex-direction: column;
        border-radius: 0;
        margin-bottom: 8.533vw;
    }

    .gallery_container{
        display:block;
        
        .box{
            width:100%;
        }
    }
    .gallery_slider{
        .slider_img{
            border-radius:1.067vw;
            
            .title{
                height:19.2vw;
                padding:0 0 3.467vw 4.267vw;
                font-size:2.667vw;
                line-height:4vw;
            }
            .zoom{
                bottom:4.267vw;
                right:4.267vw;
                width:8.533vw;
                height:8.533vw;
            }
        }
    }
    .gallery_thumbnail{
        padding:0 11.733vw;
        border-radius:0.533vw;
        
        .thumbnail_box{
            gap:0;
        }
        .thumbnail_img{
            padding:1.067vw;
            border-radius:0.533vw;
            
            &.is-active{
                &:before{
                    border:1px solid #ffffff;
                    border-radius:1.067vw;
                }
            }
        }
        .prev_arrow{
            left:2.133vw;
        }
        .next_arrow{
            right:2.133vw;
        }
        .slide_arrow{
            width: 8vw;
            height: 6.4vw;
        }
        .slick-list{
            padding:7.467vw 0 9.6vw;
        }
        .slick-dots{
            gap:3.2vw;
            bottom:4.267vw;
            
            li{
                button{
                    width:1.067vw;
                    height:1.067vw;
                }
            }
        }
    }

    /* section.gallery>*,
    #slick-thumb-slider {
        width: 100%;
        max-width: 100%;
    }

    #slick-thumb-slider {
        padding: 5.333vw 11.733vw 9.6vw;
    }

    #slick-thumb-slider .slick-prev,
    #slick-thumb-slider .slick-next {
        width: 8vw;
        height: 6.4vw;
        background-size: 1.6vw;
    }

    .gallery__thumb {
        margin: 0;
    }

    #slick-thumb-slider .slick-slide .gallery__thumb {
        width: 33.333% !important;
    } */

    .article-content>div {
        margin-bottom: 12.8vw;
    }

    #glightbox-body .gcontainer {
        max-width: 96%;
    }

    .glightbox-gallery-counter {
        top: 2.133vw;
    }

    .glightbox-clean .gclose {
        top: 0 !important;
        right: 0 !important;
        padding: 0 !important;
    }

    #glightbox-body .ginner-container.desc-bottom {
        height: 100%;
    }

    .glightbox-clean .gslide-description {
        top: 100% !important;
        bottom: auto !important;
        color: var(--white) !important;
    }

    .glightbox-clean .gslide-description .gslide-desc {
        color: var(--white) !important;
    }

    .anshin_headline{
        flex-direction:column;
        align-items:flex-start;
        gap:4.267vw;
        margin-bottom:4.533vw;
        
        .no{
            gap:2.133vw;
            font-size:3.733vw;
            line-height:5.333vw;
    
            span{
                padding:1.067vw 2.133vw 0.533vw;
                font-size:3.2vw;
                line-height:4.8vw;
                border-radius:0.533vw;
            }
        }
        p{
            font-size:3.733vw;
            line-height:6.4vw;
        }
    }
    .anshin_container{
        grid-template-columns:26.667vw 1fr;
        gap:6.4vw 4.267vw;
        margin-bottom:4.8vw;
    
        .img{
            grid-row:1;
            padding:3.2vw 4vw 2.933vw;
            border:0.267vw solid #cccfd1;
            border-radius:1.067vw;
        }
        h3{
            align-items:center;
            margin-bottom:0;
            padding-bottom:0;
            font-size:4.267vw;
            line-height:6.4vw;
            border:none;
        }
        p{
            grid-column:1/3;
            font-size:3.733vw;
            line-height:6.4vw;
    
            span{
                margin-top:4.533vw;
                font-size:3.2vw;
                line-height:4.8vw;
            }
        }
    }
    .anshin_form{
        padding:5.6vw 4.267vw 5.333vw;
        border:0.267vw solid #cccfd1;
        border-radius:1.067vw;
    
        .title{
            margin-bottom:5.333vw;
            padding-left:4.267vw;
            font-size:3.733vw;
            line-height:5.333vw;
    
            &:before{
                top:1.333vw;
                width:2.133vw;
                height:2.133vw;
            }
        }
        ul{
            gap:3.2vw;
    
            li{
                gap:2.133vw;
                
                .check{
                    width:5.333vw;
                    height:5.333vw;
                    border:0.267vw solid #cccfd1;
                    border-radius:1.067vw;
                }
                p{
                    font-size:3.733vw;
                    line-height:5.333vw;
                }
                &.active{
                    .check{
                        &:before{
                            top:0.933vw;
                            left:50%;
                            width:1.067vw;
                            height:1.867vw;
                            border-bottom:0.533vw solid #ffffff;
                            border-right:0.533vw solid #ffffff;
                        }
                    }
                }
            }
        }
    }
}

/* ===== VR Panorama Viewer (T1-14) — re-implanted from repo base+_vw during task52 merge ===== */
.vr-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 6000;   /* was 1000 — must outrank the fixed header (common.css:159 → 5000) */
}

/* lock the page behind the panorama (mirrors body.nav_open, common.css:382) */
body.vr_open {
    overflow: hidden;
}

.vr-canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
}

.vr-controls {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    z-index: 1001;
}

.vr-controls__left {
    display: flex;
    gap: 12px;
}

.vr-btn {
    background: var(--premium-black);
    color: var(--white);
    border: 1px solid var(--neutral-gray-02);
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.vr-btn--close {
    min-width: 56px;
}

.vr-info {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--premium-black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid var(--neutral-gray-02);
}

.vr-info__sp {
    display: none;
}

/* common.css:136-146 kills the outline on every button, so without this the
   overlay's focus trap moves focus somewhere invisible. */
.vr-btn:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .6);
}

/* T1-64 — panorama switcher, its own row just above the hint bar. */
.vr-switch {
    position: absolute;
    bottom: 96px;        /* ponytail: clears .vr-info (bottom:32px + ~50px tall) */
    left: 24px;
    right: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    /* The active pill is white-on-panorama. Japanese interiors are mostly white
       walls, where that measured 1.32:1 against the photo behind it (WCAG 1.4.11
       wants 3:1) and the only "which one am I on" cue disappeared. The scrim
       gives the pills a guaranteed backdrop instead of dropping the inversion. */
    background: rgba(0, 0, 0, .5);
    padding: 6px;
    border-radius: 999px;
}

/* UA [hidden]{display:none} loses to the author display:flex above — restore it */
.vr-switch[hidden] {
    display: none;
}

.vr-switch .vr-btn--switch {
    padding: 10px 20px;
    font-size: 14px;
}

.vr-switch .vr-btn--switch.is-active {
    background: var(--white);
    color: var(--premium-black);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .65);
}

.vr-switch .vr-btn--switch[aria-busy="true"] {
    opacity: .6;
}

@media(max-width:768px){
    .vr-controls {
        top: 4vw;
        left: 4vw;
        right: 4vw;
        gap: 2vw;
    }
    .vr-controls__left {
        gap: 2vw;
    }
    .vr-btn {
        padding: 2.5vw 4vw;
        font-size: 3.5vw;
        border-radius: 8vw;
    }
    .vr-btn--close {
        min-width: 10vw;
    }
    .vr-switch {
        /* Measured, not derived: .vr-info's top edge sits 20.26-20.62vw above the
           viewport bottom across 320-768px (its 3vw font + 3vw padding render
           taller than a line-height:1.5 estimate suggests). 18vw overlapped the
           hint bar by 8-17px. 24vw leaves >=3.3vw everywhere in that range. */
        bottom: 24vw;
        left: 4vw;
        right: 4vw;
        gap: 1.5vw;
    }
    .vr-switch .vr-btn--switch {
        padding: 2vw 3.2vw;
        font-size: 3vw;
        /* vw padding gave 28.8-34px tall pills with ~5px between them; ten
           identical targets that size in the thumb zone mis-fire. */
        min-height: 44px;
    }
    .vr-info {
        bottom: 5vw;
        padding: 3vw 5vw;
        font-size: 3vw;
        border-radius: 8vw;
    }
    .vr-info__pc {
        display: none;
    }
    .vr-info__sp {
        display: inline;
    }
}

/* ========================================================================
   task56b (2026-07-24) — mixed-aspect uploads in the gallery.
   Mockup photos all share one best-practice frame (560x418); real uploads
   vary in ratio, which let the tallest photo stretch the fade container
   (main area jumped to 747px on 627573). Pin every slide and thumb to the
   mockup frame and cover-crop to fill the frame (owner direction 2026-07-24; the click
   preview still shows the full image via PhotoSwipe fit-fill).
   ======================================================================== */
.gallery_slider .slider_img {
    aspect-ratio: 560 / 418;
    background-color: #fff;
    overflow: hidden;
}
.gallery_slider .slider_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery_thumbnail .thumbnail_img {
    aspect-ratio: 4 / 3;
    background-color: #fff;
    overflow: hidden;
}
.gallery_thumbnail .thumbnail_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========================================================================
   task145 (物件 S19 / CQ10) — SP performance-icon description modal.
   Reuses common.css's .modal_area shell so the overlay and the close handler
   are the shared ones. That shell is a full-height sheet — right for the area
   picker it was built for, a page of white under a two-line description here
   — so this reshapes it into a centred card. Scoped to #perf-modal, so every
   other modal keeps its shape.
   Deliberately outside the SP media query even though only SP opens it: a
   phone in landscape is wider than 768px, and a modal opened in portrait
   must not reshape itself when the user rotates. Fixed px for the same
   reason — vw padding would balloon at landscape width.
   ======================================================================== */
#perf-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
#perf-modal .modal_window {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 80vh;
    padding: 48px 24px 32px;
    border-radius: 8px;
}
#perf-modal .modal_close {
    top: 20px;
    right: 19px;
    width: 18px;
}
#perf-modal .modal_header {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 28px;
}
#perf-modal #perf-modal-text {
    font-size: 14px;
    line-height: 24px;
}
