@charset "utf-8";


/*重要事項*/

body {
    /*font-feature-settings: palt;*/
    font-feature-settings: normal;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}

.post .post-content .table-responsive table.table {
    margin-bottom: 0;
}

.post .post-content .table-responsive {
    margin-bottom: 2rem;
}

.post .post-content table.table th,
.post .post-content table.table td {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}

.box1 {
    padding: 10px;
    margin-bottom: 20px;
    background: #ffddd7;
    font-weight: 700;
    color: #dc0523;
    border: solid 2px #dc0523;
}

.post .post-content .box1 p,
.post .post-content .box1 ul {
    margin: 0;
    /*padding: 0;*/
}

.important-notes {
    padding-left: 10px;
    margin: auto;
}

.box27 {
    position: relative;
    padding: 0.5em 01em;
    margin-top: 1em;
    background: #ffddd7;
    border: solid 3px #dc0523;
}

.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -32px;
    left: -3px;
    padding: 0 9px;
    height: 32px;
    line-height: 32px;
    background: #dc0523;
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    border-radius: 5px 5px 0 0;
}

.box27 p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.1em
}

.attention_high {
    font-size: 1.2em;
    font-weight: 700;
    /*閉じる ブラウザーアイコンとしてプレビュー アプリアイコンとしてプレビュー カスタマイズ中 追加 CSS CSS コード*/
}

/*注意事項　メッセージ領域*/
.box11 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.box11 p,
.box11 ul {
    margin: 0;
    /* padding: 0;*/
}


/*--------------------------------
アコーディオンボックス
--------------------------------*/
.acbox {
    width: auto;
    font-size: 0px;
    /* ラベルと開く部分を分離する時は数値を入れる */
    margin: 5px;
    /* ボックス全体の位置調整 */
}

.acbox label {
    width: auto;
    font-size: 15px;
    /* ラベルの文字サイズ */
    font-weight: bold;
    background: #ddd;
    /* ラベルの背景色 */
    position: relative;
    display: block;
    border-radius: 4px;
    /* ラベルの角の丸み */
    padding: 10px 40px 10px 15px;
    cursor: pointer;
}

.acbox label:hover {
    background: #404040;
    /* ラベルにマウスを乗せた時の背景色 */
    color: #fff;
}

.acbox input {
    display: none;
}

.acbox label:after {
    color: #fff;
    content: "▼";
    /* ラベルのアイコン */
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -14px;
}

.acbox input:checked ~ label::after {
    content: "▲";
    /* ラベルをクリックした後のアイコン */
}

.acbox div {
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: 0.15s;
    /* 開閉スピードの設定 */
}

.acbox input:checked ~ div {
    height: auto;
    padding: 18px;
    /* 開いた部分の枠内の余白 */
    border-radius: 0px;
    background: #F3F4F5;
    /* 開いた部分の背景色 */
    opacity: 1;
}

.acbox input:checked ~ label {
    background: #404040;
    /* クリック後のラベルの背景色 */
    color: #fff;
}

.acbox-under {
    font-size: 15px;
    /* 開いた部分の文字サイズ */
    color: #555555;
    /* 開いた部分の文字色 */
}


/* ブルーーボタン作成 */
.btn--blue,
a.btn--blue {
    color: #fff;
    background-color: #0094FF;
}

.btn--blue:hover,
a.btn--blue:hover {
    color: #fff;
    background: #97d7f7;
}

/* グレーボタン作成 */
.btn--grey,
a.btn--grey {
    color: #fff;
    background-color: #808080;
}

.btn--grey:hover,
a.btn--grey:hover {
    color: #fff;
    background-color: #B7B7B7;
}

a.btn--radius {
    border-radius: 100vh;
}

a.btn--grey.btn--border-solid {
    border: 1px solid #808080;
}

/*講演申込の手順用*/
.process {
    color: #ffffff;
    font-size: 1em;
    font-weight: 400;
    line-height: 2;
    position: relative;
    display: inline-block;
    padding: 0.5em 0.6em;
    letter-spacing: 0.1em;
    background-color: #0094FF;
    text-align: center;
    vertical-align: middle;
}

/*小さいボタン作成*/
.btn2,
a.btn2,
button.btn2 {
    font-size: 1em;
    font-weight: 300;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 0.5em 2em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5em;
}

.btn2--grey,
a.btn2--grey {
    color: #fff;
    background-color: #808080
}

.btn2--grey:hover,
a.btn2--grey:hover {
    color: #fff;
    background-color: #B7B7B7
}

a.btn2--radius {
    border-radius: 100vh;
}

a.btn2--grey.btn--border-solid {
    border: 1px solid #808080;
}

/*白地黒枠ボタン作成*/
.btn3,
a.btn3,
button.btn3 {
    margin-top: 30px;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 0.5em 1.5em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5em;
    border: 1.5px solid #212529
}

.btn3--black,
a.btn3--black {
    color: #212529;
    background-color: #ffffff;
    border: 1px solid #212529
}

.btn3--black:hover,
a.btn3--black:hover {
    color: #505A63;
    background-color: #ffffff;
    border: 1px solid #505A63
}

a.btn3--radius {
    border-radius: 100vh;
}

a.btn3--black.btn--border-solid {
    border: 1px solid #505A63;
}

/*テーブルレイアウト中央揃え*/
.sample {
    /*border-collapse: separate;*/
    text-align: center;
}

/*.sample th {
    color: #FFFFFF;
    background-color: #606060;
    border: solid 1px #ffffff;
}

.sample td {
    background-color: #E6E9F0;
    border: solid 1px #ffffff;
}/*

/* テーブルレイアウト積み上げ型 */
/*th,
td {
    font-size: 100%
}*/

/*.tbl-r03 {
    border-collapse: collapse;
    border: 1px solid #D8D8D8;
}

.tbl-r03 th {
    color: #FFFFFF;
    background-color: #606060;
    text-align: center;
    border: solid 1px #ffffff;
}

.tbl-r03 td:nth-child(odd) {
    background-color: #E6E9F0;
    border: 1px solid #ffffff;
    padding: 12px 12px;
}

.tbl-r03 td:nth-child(even) {
    background-color: #ffffff;
    border-bottom: 1px solid #D8D8D8;
    padding: 12px 12px;
}*/

/*テーブルをレスポンシブ対応にする*/
@media screen and (max-width: 640px) {
    .tbl-r03 {
        width: 100%
    }

    .tbl-r03 th {
        display: none;
    }

    .tbl-r03 td {
        display: block;
        width: 100%;
    }
}

/*横並びの画像をレスポンシブ対応にする*/
.parent {
    display: flex;
    justify-content: center;
}

.child {
    margin-top: 0px;
    margin-bottom: 15px;
    margin-right: 10px;
    max-width: 370px;
}

@media screen and (max-width: 800px) {
    .parent {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 400px) {
    .parent {
        display: block;
    }
}

/*二段組み*/
.hidari {
    margin-top: 0px;
    margin-bottom: 15px;
    margin-right: 40px;
}

.migi {
    margin-top: 0px;
    margin-bottom: 15px;

}

/*前の記事次の記事を非表示にする*/
.postNextPrev {
    display: none;
}

.redbold-2 {
    color: #CC0033;
    font-weight: bold;
}

.post-content li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

h3 {
    /*padding: 4px;
    margin: 0;
    text-align: left;
    font-size: 140%;
    border-bottom: 1px #666 dotted;
    margin-bottom: 18px;
    margin-top: 30px;
    font-weight: bold;
    height: auto;*/
}



h4 {
    padding: 3px;
    font-size: 110%;
    font-weight: bold;
}

/* 改行禁止 */
td.example {
    white-space: nowrap;
}

/* テーブルに横スクロールバーを表示 */
@media (max-width: 640px) {
    .table-scroll {
        overflow-x: scroll;
    }
}

/*スマートフォンで画像をはみ出さないようにする*/

@media only screen and (max-width: 750px) {
    img {
        max-width: 100%;
    }
}

.w-20 {
    width: 20%;
}
