#owner_block {
    font-size: 18px;
    margin-bottom: 3rem;
}

.center {
    text-align: center;
}

.container {
    padding: 0 20px;
}

.inner {
    width: 90%;
    margin: 0 auto;
}

/* ボタン */
.btn-cta,
.big-cta {
    display: inline-block;
    background: #ffc637;
    color: #111827;
    padding: 18px 56px;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    transition: 0.3s;
}

.btn-cta:hover,
.big-cta:hover {
    color: #001A60;
    text-decoration: none;
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
}

/* ヒーロー */
.hero {
    position: relative;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#heroblock {
    background: #001a60;
    position: relative;
    z-index: 2;
    padding: 5rem 5%;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.muted-text {
    font-size: 1.15rem;
    font-weight: bold;
}

.header-text {
    font-size: 1.35rem;
    color: #ffc637;
}


.photo {
    width: 100%;
    padding-top: 50%;
    margin: 0 auto 28px;
    overflow: hidden;
    position: relative;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width:1024px) {
    .photo {
        position: absolute;
        top: 0;
        left: 0;
        padding-top: 0;
        height: 100%;
        z-index: 1;
    }

    .hero {
        padding: 1rem;
    }

    #heroblock {
        background: rgba(0, 26, 96, 0.75);
    }
}

/* セクション */
.section {
    padding: 64px 0;
    position: relative;
}

.section-bg {
    background: #f3f4f6;
}

.section h2 {
    margin-bottom: 2rem;
    color: #111827;
}

.lead {
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.75;
}


/* カード */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media(min-width:768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background: #fff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform .3s, box-shadow .3s;
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.card div {
    flex: 1;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #001A60;
    font-weight: bold;
}

.card p {
    font-size: 16px;
    line-height: 1.5;
}

/* プラン */
.plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media(min-width:768px) {
    .plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plan {
    background: #f3f4f6;
    padding: 24px;
    border-top: 5px solid #1e3a8a;
}

.plan h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #001A60;
}

.plan p {
    text-align: center;
    margin-top: 8px;
}

.plan ul {
    max-width: 420px;
    margin: 2rem auto 0;
    padding-left: 20px;
    line-height: 1.6;
    font-weight: bold;
}

/* お問い合わせ */
#contact {
    padding: 5rem 0 0;
}

#contact p {
    margin-top: 1rem;
}

/* チェックリスト装飾 */
.check-list {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 48px;
    /* チェックアイコン用スペース */
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    transition: 0.3s;
}

.check-list li:hover {
    color: #1e3a8a;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fbbf24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.3s;
}

.check-list li:hover::before {
    background: #f59e0b;
    transform: translateY(-50%) scale(1.1);
}

/* 半分画像＋半分テキストレイアウト */
.half-layout {
    display: flex;
    align-items: flex-start;
    margin-top: 2rem;
}

.half-layout.reverse {
    flex-direction: row-reverse;
}

.half-image,
.half-text {
    width: 50%;
}

.half-image {}

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

.half-text {
    text-align: left;
    padding: 2.5rem;
}

.half-text h2 {
    font-size: 1.5rem;
}

.half-text h3 {
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.request {
    margin: 3rem 0;
}

.request p {
    margin-bottom: 1rem;
}

/* チェックリスト装飾 */
.check-list {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    transition: 0.3s;
    font-weight: bold;
    color: #111827;
}

.check-list li:hover {
    color: #1e3a8a;
}

.check-list li::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url(/image/owner/check.svg) no-repeat center center / 23px 23px #fbbf24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.3s;
}

.check-list li:hover::before {
    background: #f59e0b;
    transform: translateY(-50%) scale(1.1);
}

/* レスポンシブ */
@media(max-width:768px) {

    .half-layout,
    .half-layout.reverse {
        flex-direction: column;
    }

    .half-text,
    .half-image {
        padding: 0;
        width: 100%;
    }

    .half-image img {
        max-height: 300px;
    }

    .half-text {
        padding: 2rem 0;
    }

    .inner {
        width: 100%;
    }
}

#merit {
    background: url(/image/owner/owner01.jpg) no-repeat center center /cover;
}

#images {
    display: flex;
}

#images img {
    width: 50%;
}