/* ----------------------------------------- */
/* 会社概要 専用スタイル */
/* ----------------------------------------- */
/* セクションのタイトル*/
.section_top_item{
    padding-top: 16vh;
}
.section_item{
    padding-top: 10vh;
}
.section_end{
    padding-bottom: 10vh;
}

/* セクションのタイトル*/
.home_section_title {
    color: black;
    font-size: 3.5vw;
    font-weight: 800;
    text-align: center;
    line-height: 3.8vw;
}

@media screen and (max-width:600px) {
    .home_section_title {
        font-size: 6.0vw;
        line-height: 6.3vw;
    }
}

.home_section_subtitle {
    color: black;
    font-size: 1.5vw;
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width:600px) {
    .home_section_subtitle {
        font-size: 3.0vw;
    }
}

/* セクションの画像*/
.company_image_box {
    margin: 0 auto;
    width: 90%;
    max-width: 1400px;   /* 枠の幅 */
    height: 50%;
    height: 600px;  /* 枠の高さ */
    overflow: hidden;
    padding-top: 4vh;
}
.company_image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.message_image_box {
    margin: 0 auto;
    width: 80%;
    max-width: 1100px;   /* 枠の幅 */
    height: 50%;
    height: 400px;  /* 枠の高さ */
    overflow: hidden;
    padding-top: 4vh;
}
.message_image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* セクションのテキスト欄*/
.text_box {
    margin: 4vh auto;
    width: 90%;
    max-width: 800px;   /* 枠の幅 */ 
    padding: 4vh 4vw;
    background: radial-gradient(
        circle,
        #ffffff 0%,
        #ffffff 80%,
        #dcf9ff 100%
  );
}
.text_box .text_subtitle{
    line-height: 1.7;
    letter-spacing: .05em;
    font-size: 36px;
    font-weight: 700;
}
.text_box .text_p{
    margin: 1.6em 75px 0 0;
    line-height: 2;
    letter-spacing: .1em;
    font-size: 18px;
    font-weight: 500;
}
.text_box .message_text_p{
    margin-top: 2em;
    line-height: 2;
    font-size: 16px;
}


/* 会社概要のテーブル*/
.company-info-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 4vh;
}

.company-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.company-table th,
.company-table td {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.company-table th {
    background: #348AF0;
    color: white;
    font-weight: 400;
    width: 200px;
    text-align: left;
    font-size: 1.0rem;
}

.company-table td {
    background: white;
    line-height: 1.6;
    font-size: 1.0rem;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-table a {
    background-color: #f1f1f1;
    width: 100%;
    padding: 7px 10px;
    display: block;
    border-radius: 20px;
    transition: .3s;
}

.company-table a:hover {
    background-color: #262626;
    color: #fff;
}
.company_table_map{
    line-height: 1;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 700;
    
    width: 80px;
    margin-left: 0;
    display: block;
}


/* モバイル版レスポンシブデザイン */
@media screen and (max-width:600px) {
    /* 画像ボックス調整 */
    .company_image_box {
        width: 100%;
        height: 300px;
        padding-top: 2vh;
    }
    
    .message_image_box {
        width: 100%;
        height: 250px;
        padding-top: 2vh;
    }
    
    /* テキストボックス調整 */
    .text_box {
        width: 95%;
        padding: 3vh 3vw;
        margin: 3vh auto;
    }
    
    .text_box .text_subtitle {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 1em;
    }
    
    .text_box .text_p {
        margin: 1em 0 0 0;
        font-size: 15px;
        line-height: 1.8;
        letter-spacing: 0.03em;
    }
    
    .text_box .message_text_p {
        margin-top: 1.5em;
        font-size: 14px;
        line-height: 1.8;
    }
    
    /* 会社概要テーブル調整 */
    .company-info-content {
        padding: 0 10px;
        padding-top: 2vh;
    }
    
    .company-table {
        font-size: 14px;
    }
    
    .company-table th,
    .company-table td {
        padding: 15px 12px;
        font-size: 14px;
    }
    
    .company-table th {
        width: 100px;
        font-size: 13px;
    }
    
    .company-table td {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .company_table_map {
        font-size: 9px;
        width: 70px;
    }
    
    /* セクション間隔調整 */
    .section_top_item {
        padding-top: 12vh;
    }
    
    .section_item {
        padding-top: 8vh;
    }
    
    .section_end {
        padding-bottom: 8vh;
    }
}