@charset "UTF-8";
.company {
/*	padding: 0px 10px;*/
}
/* h1 全体のスタイル */
.company .sub-section h1 {
    text-align: center;
    margin: 40px 0px 0px 0px;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding-bottom: 50px;
    background-color: #CFEAF8;
    border-bottom: 4px solid #007BFF; /* 下線を追加 */
}

/* 英語タイトルのスタイル */
.company .sub-section .en {
    display: block;
    font-size: 22px;
    letter-spacing: 4px;
    color: #007BFF;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 英語タイトルに影を追加 */
}

/* 日本語タイトルのスタイル */
.company .sub-section .ja {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    position: relative;
    line-height: 1.5; /* 行間を少し広げる */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 日本語タイトルに影を追加 */
}

/* 全体のスタイル */
.outline {
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    border: 1px solid #e0e5eb;
}

/* 各行のスタイル */
dl {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed #d1d9e6;
}

dl:last-child {
    border-bottom: none;
}

/* 見出し部分（dt）のスタイル */
dt {
    font-weight: bold;
    color: #ffffff;
    background-color: #4a90e2; /* 見出し部分の背景色 */
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* 内容部分（dd）のスタイル */
dd {
    background-color: #f0f4fa; /* 内容部分の背景色 */
    color: #333;
    line-height: 1.8;
    text-align: left;
    padding: 10px;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

dd a {
    color: #1d72b8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

dd a:hover {
    color: #0056a6;
    text-decoration: underline;
}

/* ホバーエフェクト */
dl:hover {
    background-color: #f9fbff;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

