@charset "utf-8";

/* セクションごとの塊 */
.company-section {
    display: flex; /* 横並びにする */
    margin-bottom: 80px;
}
.company-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* 左側の見出しエリア */
.company-section__head {
    width: 30%; /* 左側3割 */
    padding-right: 40px;
    box-sizing: border-box;
}
.company-section__head h2 {
    font-size: 20px;
    color: #172A88; /* 青文字 */
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* 右側の内容エリア */
.company-section__body {
    width: 70%; /* 右側7割 */
}

/* --- 定義リスト（ dl dt dd ）のスタイル --- */
.company-list {
    width: 100%;
    margin: 0;
}
.company-list__row {
    display: flex;
    border-bottom: 1px solid #EAEAEA;
    padding: 20px 0;
}
.company-list__row:first-child {
    border-top: 1px solid #EAEAEA;
}

/* 項目名（左） */
.company-list dt {
    width: 30%;
    font-weight: normal;
}

/* 内容（右） */
.company-list dd {
    width: 70%;
    margin: 0;
    line-height: 1.8;
}

/* --- グループ会社のリストスタイル --- */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list > li {
    margin-bottom: 20px;
}
.service-list > li > span {
    display: block;
    margin-bottom: 5px;
}
.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 1em; /* 少しインデント */
    font-size: 13px;
}

/* --- 地図エリア --- */
.address-text {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}
.access-map {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9の比率を維持 */
    position: relative;
    background-color: #eee;
}
.access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- 決算公告リンク --- */
.pdf-link {
    color: #172A88;
    text-decoration: underline;
    font-size: 15px;
}
.pdf-link:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* --- スマホ対応（768px以下） --- */
@media screen and (max-width: 768px) {
    .company-section {
        display: block; /* 縦並びにする */
        margin-bottom: 50px;
        padding-bottom: 40px;
    }
    .company-section__head {
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
    }
    .company-section__body {
        width: 100%;
    }
    
    /* テーブル部分もスマホでは縦積みにする場合 */
    .company-list__row {
        display: block;
        padding: 15px 0;
    }
    .company-list dt {
        width: 100%;
        font-weight: 700; /* スマホでは項目名を太字にして区別 */
        margin-bottom: 5px;
        color: #172A88; /* スマホでは色を変えて見やすくする等の工夫 */
    }
    .company-list dd {
        width: 100%;
    }
}