@charset "UTF-8";

/* 全体の基本設定 */
.freearea {
    width: 850px;
    margin-right: auto;
    margin-left: auto;
}

img {
    margin: 0;
    padding: 0;
    vertical-align: bottom;
    border: none; /* 短縮記法でスッキリさせました */
}

/* ホバー設定：画像に直接 .alpha がついている構造に対応 */
a:hover .alpha {
    opacity: 0.7;
}

/* テキスト全体の基本スタイル */
.closeupCont p {
    font-feature-settings: "palt";
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: .1rem;
    font-weight: 400;
    color: #000000;
    font-size: 27px;
    line-height: 1.8; /* Figmaの180%より少し広めに設定 */
}

/* 各セクションの設定 */
.closeupCont .top_img {
    width: 100%;
    margin: 0 auto;
}

.closeupCont .section2 {
    background-color: #9dd4d6;
    width: 100%;
    padding: 0;
}

.closeupCont .section3 {
    background-color: #F1F8F7;
    width: 100%;
    padding: 7% 8.8% 8%;
}

.closeupCont .s-title {
    width: 100%;
    margin: 0 auto 4%;	
}

.closeupCont .owner-photo {
    width: 100%;
    margin: 0 auto 4%;	
}

.closeupCont .txt-owner {
    position: relative;
    width: 100%;
}

.closeupCont .text-bold {
    font-weight: 700;
}

/* CTAエリア（中央寄せの設定） */
.closeupCont .section4 {
    background-color: #A5E3CF;
    width: 100%;
    padding: 7% 0 8%;
    text-align: center; 
}

.closeupCont .cta_c {
    display: block;
    margin: 0 auto 4%;
    width: 86%;
}

.closeupCont .cta_btn {
    display: block;
    margin: 0 auto;
    width: 70%;
}

/* --- スマートフォン用設定 (764px以下) --- */
@media (max-width: 764px) {
    .closeupCont p {
        font-size: 13px; 
        line-height: 1.6;
		letter-spacing: .05rem;
    }

   /* section3やsection4の左右の余白をスマホ用に狭くする */
    .closeupCont .section3,
    .closeupCont .section4 {
        padding: 7% 4.6% 8%; /* 左右を 8.8% → 4.6% */
    }

    /* 画像を横幅いっぱいにする */
    .closeupCont .cta_c,
    .closeupCont .s-title,
    .closeupCont .owner-photo {
        width: 97%; /* スマホでは 86% や 70% ではなく 97% に広げる */
        margin-left: auto;
        margin-right: auto;
    }

}