@charset "UTF-8";

/* ========== ページ設定 ========== */
/* ページ内リンクの指定 */
html {
    scroll-padding-top: 70px;
    scroll-behavior: smooth;
}

/* ========== 各パーツのスタイル定義 ========== */

/* ========== メインコンテンツ */
#originContents * {
    box-sizing: border-box;
}
#originContents {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
#originContents .mainContainer {
    padding: 20px;
}

/* ========== 余白調整 */
/* margin-top:0px〜50px */
#originContents .MT0 {
    margin-top: 0px;
}
#originContents .MT5 {
    margin-top: 5px;
}
#originContents .MT10 {
    margin-top: 10px;
}
#originContents .MT20 {
    margin-top: 20px;
}
#originContents .MT30 {
    margin-top: 30px;
}
#originContents .MT40 {
    margin-top: 40px;
}
#originContents .MT50 {
    margin-top: 50px;
}
/* margin-bottom:0px〜50px */
#originContents .MB0 {
    margin-bottom: 0px;
}
#originContents .MB5 {
    margin-bottom: 5px;
}
#originContents .MB10 {
    margin-bottom: 10px;
}
#originContents .MB20 {
    margin-bottom: 20px;
}
#originContents .MB30 {
    margin-bottom: 30px;
}
#originContents .MB40 {
    margin-bottom: 40px;
}
#originContents .MB50 {
    margin-bottom: 50px;
}
#originContents .MB60 {
    margin-bottom: 60px;
}
#originContents .MB70 {
    margin-bottom: 70px;
}

/* ========== 配置調整 */
.alignCenter {
    text-align: center;
}
.alignRight {
    text-align: right;
}

/* ========== プレーンテキストスタイル */
#originContents p {
    margin-bottom: 10px;
}
#originContents p.bold {
    font-weight: bold;
}

/* ========== リンクスタイル */
/* デフォルトリンク */
#originContents a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #2a73b8;
    transition: all .2s;
}
#originContents a.none {
    text-align: initial;
}
#originContents a:hover {
    opacity: 0.8;
}
/* ボタンリンク */
#originContents .boxBtn {
    width: 90%;
    margin: 0 auto;
}
#originContents .boxBtn a {
    width: 48%;
    color: #2e478a;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #2e478a;
    border-radius: 3px;
}
#originContents .boxBtn a:hover {
    background: #2e478a;
    color: #fff;
}
#originContents .boxBtn a i {
    margin: 0 10px;
}

/* ========== 画像スタイル */
#originContents figure {
    text-align: center;
}
#originContents img {
    width: 100%;
    vertical-align: bottom;
}
#originContents figcaption {
    font-size: 0.8em;
    margin-top: 5px;
}
/* サイズ変更用 */
#originContents img.W90 {
    width: 90%;
}
#originContents img.W80 {
    width: 80%;
}
#originContents img.W70 {
    width: 70%;
}
#originContents img.W60 {
    width: 60%;
}
#originContents img.W50 {
    width: 50%;
}

/* ========== テーブルスタイル */
#originContents .table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
#originContents .table.center th,
#originContents .table.center td {
    text-align: center;
}
#originContents th,
#originContents td {
    padding: 10px;
    border: 1px solid #d5d5d5;
    vertical-align: middle;
}
#originContents th {
    font-weight: bold;
    background: #f2f4fa;
}

/* ========== 見出しスタイル */
/* 基本スタイル */
#originContents h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}
#originContents h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 8px;
    color: #2e478a;
    background: #e8ecf9;
    border-radius: 3px;
}
#originContents h3 {
    font-size: 1.3em;
    font-weight: bold;
    border-bottom: 1px solid #2e478a;
    margin-bottom: 10px;
    padding-bottom: 3px;
}
#originContents h4 {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0 0 0 5px;
    border-left: 5px solid #0196df;
}
/* オプションスタイル */
#originContents .border-none {
    border: none;
}
#originContents .subTitle {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* ========== 行頭/行末装飾スタイル */
/* スクエア */
#originContents .title {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    font-weight: bold;
}
#originContents .title::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 2px;
    position: absolute;
        top: 6px;
        left: 0px;
}
/* 矢印 */
#originContents .title.arrow {
    color: #e50c0c;
    padding: 2px 15px 2px 30px;
    background: #f9f7e8;
    border-radius: 5px;
}
#originContents .title.arrow::before {
    width: 5px;
    height: 5px;
    border-radius: 0;
    border-top: 5px solid #e50c0c;
    border-right: 5px solid #e50c0c;
    transform: rotate(45deg);
    position: absolute;
        top: 8px;
        left: 10px;
}
/* カラータイプ */
#originContents .title.type1::before {
    background: #e50c0c;
}
#originContents .title.type2::before {
    background: #2e478a;
}
#originContents .title.type3::before {
    background: #5aae88;
}
#originContents .title.type4::before {
    background: #e37f1a;
}
/* 「NEW」見出し */
#originContents .new {
    color: #e50c0c;
    font-weight: bold;
}
#originContents .alert {
    color: #e50c0c;
    font-size: 0.8em;
}

/* ========== リストスタイル */
/* 通常リスト */
#originContents li {
    margin-bottom: 10px;
}
#originContents .list > li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}
#originContents .list > li::before {
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0196df;
    position: absolute;
    top: 7px;
    left: 0px;
}
/* インラインリスト */
#originContents .list.inline > li {
    display: inline-block;
    margin-right: 20px;
}
/* カラータイプ */
#originContents .list.type1 > li::before {
    background: #d85388;
}
#originContents .list.type2 > li::before {
    background: #5aae88;
}
/* 連番リスト */
#originContents .alert-list li {
    counter-increment: alert-list;
    position: relative;
    padding-left: 15px;
}
#originContents .alert-list li::before {
    color: #e50c0c;
    font-size: 0.8em;
    position: absolute;
    top: 0;
    left: 0;
    content: "*"counter(alert-list);
}
/* アンカーリスト */
#originContents .anker-list {
    margin-left: 15px;
}
#originContents .anker-list li {
    display: block;
    margin-bottom: 0;
}

/* ========== コラムスタイル */
#originContents .column {
    padding: 20px;
    border-radius: 5px;
}
#originContents .column.box1 {
    background: #f2f3f5;
}
#originContents .column.box2 {
    border: 1px solid #d5d5d5;
}

/* ========== カラムスタイル */
/* 基本スタイル */
#originContents .flex {
    display: flex;
    justify-content: space-between;
}
/* 折返し */
#originContents .wrap {
    flex-wrap: wrap;
}
/* 比率別カラム */
#originContents .index-container,
#originContents .flex > div {
    margin: 0 20px;
}
#originContents .flex > div.wide {
    margin: 0;
}
#originContents .flex .W25 {
    width: 25%;
}
#originContents .flex .W30 {
    width: 30%;
}
#originContents .flex .W40 {
    width: 40%;
}
#originContents .flex .W50 {
    width: 50%;
}
#originContents .flex .W60 {
    width: 60%;
}
#originContents .flex .W70 {
    width: 70%;
}
#originContents .flex .W100 {
    width: 100%;
}
/* ボックス幅 */
#originContents .boxW50 {
    width: 50%;
}
#originContents .boxW60 {
    width: 60%;
}
#originContents .boxW70 {
    width: 70%;
}
#originContents .boxW80 {
    width: 80%;
}
#originContents .boxW90 {
    width: 90%;
}

/* ========== タブナビゲーション */
#originContents .tabMenu {
    z-index: 100;
    margin-bottom: 50px;
    position: sticky;
    top: 0;
}
#originContents .tabMenu ul {
    display: flex;
}
#originContents .tabMenu ul li {
    width: 25%;
}
#originContents .tabMenu ul li:not(:last-child) {
    border-right: 1px solid #fff;
}
#originContents .tabMenu ul li a {
    width: 100%;
    padding: 10px 0;
    font-weight: bold;
    color: #2e478a;
    background: #dfe4f4;
}
#originContents .tabMenu ul li a:hover {
    opacity: 1;
    color: #fff;
    background: #2e478a;
}
/* 現在のページ */
#originContents .tabMenu ul li a.current {
    background: #2e478a;
    color: #fff;
}

/* ========== ビデオスタイル */
#originContents video {
    width: 100%;
}