/* ---------- 全体ベース設定 ---------- */
body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;

    display: flex;
    justify-content: center;
    margin: 0;
    padding: 20px;

    /* background-color: #f5f5f5; */
    color: #333;
}

.container {
    box-sizing: border-box;
    width: 100%;
    max-width: 800px;
    padding: 20px 50px;

    background-color: #fff;
    /* border: solid 2px #333; */
}
@media screen and (max-width: 767px) {
    body {
        padding: 10px;
    }

    .container {
        max-width: 500px;
        padding: 15px;
    }
}


/* ---------- 共通スタイル ---------- */
a:hover {
    /* color: #aaa; */
    color: #0000ee;
    text-decoration: underline;
}
a > img:hover {
    opacity: 0.7;
}

.section {
    margin-bottom: 1.5rem;
    border: solid 1px #b8cada;
    border-radius: 3px;
}

.section-title {
    display: block;
    position: relative;
    margin-bottom: 1rem;
    padding: 1rem;

    font-weight: bold;
    background: linear-gradient(to bottom, #fdfdfd, #f0f0f0);
}
.section-title::before {
    content: "";
    position: absolute;
    z-index: 1;

    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;

    background-color: #c8cfd5;
}
.section-title span {
    display: inline-block;
    position: relative;
    padding-right: 2em;
}

.section-title span::after {
    content: "";
    position: absolute;
    z-index: 2;

    left: -1rem;
    bottom: -1rem;
    width: 100%;
    height: 2px;

    background-color: #1e88e5;
}

.section-body {
    padding: 0 1rem 0;
}

.separator {
    /* margin: 1.5rem 0; */
    /* border-top: 1px dashed #ccc; */
    border: none;
}


/* ---------- ヘッダー及びフッター ---------- */
.header-banner {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: solid 2px #3ca0e6;
}

.footer {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.6rem;

    font-size: 11px;
    background-color: #3ca0e6;
    color: #fff;
}


/* ---------- Web媒体バナー調整 ---------- */
.flex-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.flex-item {
    width: 50%;
    text-align: center;
    margin-bottom: 5px;
}
/*
@media screen and (max-width: 767px) {
    .flex-item img {
        width: 95%;
    }
}
*/


/* ---------- 各種テキスト調整 ---------- */
.sub-title {
    margin-bottom: 5px;
    font-weight: bold;
}

.date {
    margin-bottom: 5px;
}

.text-corporate,
.text-president,
.text-block {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    word-break: break-all;
}

.text-block {
    margin-left: 1rem;
}
ul.text-block {
    padding-left: 2rem;
    list-style-type: disc;
}

.info-list {
    padding: 0;
    margin-bottom: 1.5rem;
    list-style-type: none;
}
.info-list li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 1rem;
}
.info-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
}

/* CSS読込完了後に可視化 */
body {
    visibility: visible !important;
}
