@charset "utf-8";

/* CSS Document */
body {
    margin: 0;
    padding: 0 5px;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    text-align: left;
}

img {
    border: 0;

/* -webkit-backface-visibility: hidden; */
    vertical-align: bottom;
}

p {
    margin: 0;
}

p, li, th, td {
    font-size: 13.5px;
    line-height: 30px;
}

dl {
    display: block;

    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

h2 {
    font-size: 20px;
}

.ninchi_official h2 {
    display: block;
    width: 100%;
    margin: 20px 0 5px 0;
    padding: 5px 0 5px 40px;
    background-image: url("../img/logo.png");
    background-position: 5px 50%;
    background-size: 30px;
    background-repeat: no-repeat;
    background-color: #dce3dc;
    color: hsla(0, 0%, 34%, 1);
    font-weight: normal;
    font-size: 16px;
}

.ninchi_official h2:first-child {
    margin-top: 0;
}

h6 {
    margin: 5px 0;
    padding: 5px;
    border: 1px solid hsla(0, 0%, 63%, 1);
    color: hsla(0, 0%, 22%, 1);
    font-size: 15px;
    line-height: 18px;
}

.blue_char {
    color: hsla(220, 72%, 36%, 1);
}

.span_new {
    margin: 0 5px;
    padding: 0 10px;
    background-color: hsla(359, 71%, 52%, 1);
    color: #ffffff;
    font-size: 11px;
    line-height: 16px !important;
}

.char_date {
    margin-right: 8px;
    color: hsla(0, 0%, 54%, 1);
    font-size: 13px;
}

.span_marker_red {
    background: linear-gradient(transparent 80%, #f5383e 0%);
}

.red_char {
    color: hsla(359, 71%, 52%, 1);
}

/**pagetop**/
#page-top {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 5px;
    z-index: 99;
    font-size: 85%;
}

#page-top a {
    display: block;
    opacity: .75;
    width: 70px;
    padding: 23px 0;
    border-radius: 3px;
    background: hsla(0, 0%, 58%, 1);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

#page-top a:hover {
    text-decoration: none;
}

.wrapper {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.contents {
    display: block;
    width: 99%;
}

.contents2 {
    display: block;
    width: 99%;
}

.pc-display {
    display: none;
}

/**パソコン表示、スマホ表示**/
.sp-display {
    display: block;
}

.display_br-sp {
    display: block;
}

/**header**/
.header_pc {
    display: none;
}

.header_pc2 {
    display: none;
}

.headermain_pc {
    display: none;
    position: relative;
}

.headermain_s {
    display: block;
    width: 94vw;
    padding: 0 10px 30px 10px;
    border: 0;
    background-image: url("../img/maintitle_s.png");
    background-position: left;
    background-size: 270px;
    background-repeat: no-repeat;
}

.visibilityhidden {
    position: absolute;
    top: 0;
    width: 60vw;
    height: 18vw;
    color: transparent;
}

.link_en {
    position: absolute;
    top: 140px;
    right: 5px;
    border-bottom: 1px solid hsla(224, 73%, 44%, 1);
    color: hsla(224, 73%, 44%, 1);
    font-size: 12px;
}

/**header_end**/

/**mainmenu**/
.mainmenu_pc {
    display: none;
}

.menu_s {
    list-style: none;
    padding-left: 0;
}

.menu_s li {
    display: block;
    padding: 15px 15px 15px 25px;
    border-bottom: 1px solid #93ab93;
    font-weight: bold;
}

.menu_s li a {
    display: block;
    color: #495057;
    text-decoration: none;
}

.menu_s li a:hover {
    color: #818487;
}

#mainmenu_s {
    display: block;
    position: relative;
    width: 98%;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    margin: 25px 15px 0 0;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    display: block;
    position: absolute;
    right: 0;

/*線の太さ*/
    width: 30px;
    height: 5px;

/*長さ*/
    border-radius: 1px;
    background-color: hsla(0, 0%, 58%, 1);
    content: "";
    cursor: pointer;

    /**左右位置調整**/
}

#nav-open span:before {
    bottom: -10px;
}

#nav-open span:after {
    bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;
    opacity: 0;

/*はじめは隠しておく*/
    position: fixed;
    top: 0;

/*全体に広がるように*/
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: black;
    transition: .4s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*中身*/
#nav-content {
    position: fixed;
    top: 0;
    right: -100vw;

/* 【追加部分】 右に隠す*/
    z-index: 9999;
            transform: translateX(200%);

/*最前面に*/
    width: 90%;

/*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 250px;

/*最大幅（調整してください）*/
    height: 100%;
    overflow: auto;
    background: #edf2f1;

/*右に隠しておく*/
    transition: .4s ease-in-out;

/*背景色*/

    -webkit-transform: translateX(200%);

/*滑らかに表示*/
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;

/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
            transform: translateX(-100vw);

/*中身を表示（左へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);

    -webkit-transform: translateX(-100vw);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
    display: none;
}

/**mainmenu_end**/

/**メインメニュー講座情報**/
.kouza_li {
    position: relative;
}

.kouza_li p {
    position: absolute;
    top: 1px;
    left: 20px;
    color: hsla(359, 87%, 45%, 1);
    font-weight: bold;
    font-size: 13px;
}

.bread_crumb {
    display: none;
}

/**submenu**/
.submenu_pc {
    display: none;
}

.submenu_pcj {
    display: none;
}

.submenu_s {
    display: block;
    width: 94vw;
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
}

.submenu_sp {
    display: block;
    width: 94vw;
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
}

.list_ls {
    display: block;
}

.list_ls dt {
    padding-left: 3em;
    border-top: solid 1.5px #d3d3d3;
    background: url("../img/ya_001.gif") no-repeat 5% 43%;
    line-height: 3em;
}

.list_ls dt a {
    display: block;
    margin-left: 5px;
    color: #669933;
    text-decoration: none;
}

.list_ls dt a:hover {
    opacity: .8;
    text-decoration: none;
}

.list_lsp {
    display: block;
}

.list_lsp dt {
    padding-left: 3em;
    border-top: solid 1.5px #d3d3d3;
    background: url("../img/ya_001.gif") no-repeat 5% 43%;
    line-height: 3em;
}

.list_lsp dt a {
    display: block;
    margin-left: 5px;
    color: #669933;
    text-decoration: none;
}

.list_lsp dt a:hover {
    opacity: .8;
    text-decoration: none;
}

/**submenu_end**/

.top_box_con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
}

/*トップページ画像の制御*/
.top_box {
    width: 100%;
    max-width: 600px;
    margin: 0 0 20px 0;
    box-shadow: 7px 11px 13px -5px rgba(0, 0, 0, .3);
}

.top_box:hover {
    opacity: .9;
}

.top_box img {
    width: 100%;
}

.top_box h4 {
    margin: 0;
    padding: 0;
    font-size: 19px;
}
.btn_about_us_r {
    margin: 3px 0;
    padding: 2px;
    border: 1px solid #c5c5c5;
    border-radius: 2px;
    background-color: rgb(255, 197, 37);
}

.btn_about_us_r h9 {
    font-weight: bold;
    font-size: 15px;
    text-align: start !important;
}

.btn_about_us_r p {
    font-size: 11px;
    line-height: 13px;
    text-align: end;
}

.top_box_r {
    /*text-align: center;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 10px 0 15px 0;
}

.top_box_r a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top_box_r:hover {
    opacity: .9;
}

.top_box_r img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.top_box_r p {
    width: 95%;
    margin: 5px 0 0 13px;
    color: hsla(0, 0%, 45%, 1);
    font-size: 12px;
    line-height: 15px;
    text-align: center;
}

/*トップページ学会案内ボタン*/
.top_annai_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.top_annai_con a {
    width: 95%;
    color: #385649;
}

.btn_about_us {
    margin: 3px 0;
    padding: 2px;
    border: 1px solid #c5c5c5;
    border-radius: 2px;
    background-color: hsla(118, 100%, 95%, 1);
}

.btn_about_us h9 {
    font-weight: bold;
    font-size: 15px;
    text-align: start !important;
}

.btn_about_us p {
    font-size: 11px;
    line-height: 13px;
    text-align: end;
}

.btn_dl01 {
    width: 250px;
    margin: 5px 10px;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: hsla(212, 45%, 43%, 1);
    color: #ffffff;
    font-size: 15px;
    text-align: center;
}

.btn_dl02 {
    width: 400px;
    margin: 5px 10px;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: rgb(255, 0, 0);
    color: #ffffff;
    font-size: 15px;
    text-align: center;
}

/**contents_title**/
.contents_title1 {
    display: block;
    width: 95%;
    margin: 0 .5vw;
    padding: 5px 0 5px 30px;
    border: 1px solid #cdd4ce;
    background-image: url("../img/logo.png");
    background-position: 0 50%;
    background-size: 25px;
    background-repeat: no-repeat;
    background-color: #dce3dc;
    font-size: 16px;
}

.contents_title2 {
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #1845a0;
    color: #1845a0;
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
}

.contents_title3 {
    margin-top: .5vw;
    color: #09891a;
    font-size: 4.5vw;
    text-align: center;
}

.contents_title4 {
    margin: 3vw 0;
    padding-left: 1.5vw;
    border-left: .5vw #27336c solid;
    font-weight: bold;
    line-height: 2em;
}

.long_contentstitle {
    display: block;
    width: 84%;
    margin: 0 1vw;
    padding: 1.5vw 1.5vw 1.5vw 11vw;
    border: 1px solid #cdd4ce;
    background-image: url("../img/logo.png");
    background-position: 2vw 50%;
    background-size: 6vw;
    background-repeat: no-repeat;
    background-color: #dce3dc;
    font-weight: bold;
    font-size: 16px;
}

.mini_box {
    padding: 10px 5px;
}

/**contents_title_end**/

/**normal**/
.normal {
    display: block;
    width: 93vw;
    padding: 10px 3px;
}

.normal2 {
    display: block;
    width: 90vw;
    margin: 0 2vw;
    padding: 2vw;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
}

.normal3 {
    width: 97vw;
}

.normal3 dt {
    font-size: 14px;
}

.normal3 dd {
    font-size: 14px;
}

.news_normal {
    margin: 0;
}

.news_normal dt {
    margin: .5vw;
    font-size: 13px;
}

.news_normal dd {
    margin: 0;
    font-size: 13px;
    line-height: 2em;
}

.news_normal2 {
    padding: 13px;
    font-size: 15px;
    line-height: 2em;
}

/**normal_end**/

/**list**/
.normal2 ul {
    margin-left: 20px;
}

.normal2 ol {
    margin-left: 20px;
}

.parentheses ol {
    margin: 0;
}

.parentheses li {
    list-style-type: none;
    list-style-position: inside;
    text-indent: -1.5em;
    counter-increment: cnt;
}

.parentheses li:before {
    display: marker;
    content: counter(cnt) ") ";
}

.parentheses2 ol {
    margin: 0;
}

.parentheses2 li {
    list-style-type: none;
    list-style-position: inside;
    text-indent: -2em;
    counter-increment: cnt;
}

.parentheses2 li:before {
    display: marker;
    content: "（" counter(cnt) ") ";
}

/**list_end**/

/**button**/
.button {
    display: block;
    width: 80vw;
    height: 30px;
    margin-right: auto;
    margin-left: auto;
    padding: 2vw 0 1vw 1.5vw;
    border-radius: 2vw;
    box-shadow: 1vw 1vw #bdbdbd;
    background-position: left 5vw center;
    background-size: 30px;

/* background-image: url("../img/pdficon_shadow.png"); */
    background-repeat: no-repeat;
    background-color: #4db6ac;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    text-shadow: 0 -.5vw #757575;
}

.button:hover {
    background-color: #38ddcd;
}

.button a {
    display: block;
    color: #ffffff;
}

.worries {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    height: 45px;
    margin: 0;
    background-image: url("../img/worries_bk.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.worries a {
    color: #7f5d3c;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
}

.button2 {
    display: block;
    width: 80vw;
    margin-right: auto;
    margin-left: auto;

/*height: 7vw;*/
    padding: 1.5vw 0 1vw 1.5vw;
    border: solid 1px #878787;
    border-radius: 5px;
    box-shadow: .5vw .5vw .5vw#bdbdbd;
    background-color: #488dc2;
    color: #ffffff;
    font-weight: bold;
    font-size: 4vw;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    text-shadow: 0 -1px #757575;
}

.button2:hover {
    background-color: #52b3fd;
}

.button2 a {
    display: block;
    text-decoration: none !important;
}

.button_link a {
    display: block;
    width: 70vw;
    margin-right: auto;
    margin-left: auto;
    text-decoration: none !important;
}

/**button_end**/

/**table**/
.contents_table1 {
    display: table;
    width: 86vw;
    font-size: 14px;
}

.contents_table1_th {
    display: block;
    width: 86vw;
    padding: 2px;
    border: 1px solid #c8c8c8;
    background: #e6ece6;
    text-align: left;
}

.contents_table1_td {
    display: block;
    width: 86vw;
    padding: 5px;
    border: 1px solid #c8c8c8;
}

.contents_table1 img {
    width: 30vw;
    height: 40vw;
}

.contents_table2 {
    display: table;
    width: 86vw;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    border-collapse: collapse;
}

.contents_table2_th {
    display: table-cell;
    width: 20%;
    padding: 15px;
    border: 1px solid #c8c8c8;
    color: #1b1e32;
    text-align: center;
    vertical-align: middle;
}

.contents_table2_td {
    display: table-cell;
    padding: 5px;
    border: 1px solid #c8c8c8;
    line-height: 2em;
}

.contents_table3 {
    display: table;
    width: 93.5vw;
    margin-left: 5px;
    font-size: 4vw;
}

.contents_table3_th {
    display: table-cell;
    width: 15vw;
    padding: 2vw;
    border: 1px solid #c8c8c8;
    color: #000000;
    text-align: center;
}

.contents_table3_td {
    display: table-cell;
    width: 78.5vw;
    padding: 1vw;
    border: 1px solid #c8c8c8;
    color: #000000;
    text-align: left;
}

.contents_table3 img {
    width: 15vw;
    height: 23vw;
}

.meibo_table {
    width: 85vw;
    border-collapse: collapse;
}

.meibo_table th {
    display: block;
    padding: 1px 0 0 5px;
    background-color: #a3b7a3;
    color: #ffffff;
    font-weight: normal;
}

.meibo_table td {
    display: block;
    padding: 3px 10px 5px 10px;
    border-bottom: 1px solid #c8c8c8;
}

.meibo_table .syo {
    margin-left: 10px;
    font-size: 12px;
}

.news_table {
    display: block;
    width: 98%;
    margin: 0 auto;
    padding: 0 10px;
}

.news_tableth {
    display: block;
    width: 98%;
    margin: 0;
    padding: 10px;
    border: 1px solid #9b9b9b;

/* vertical-align: middle; */
    text-align: center;
    border-collapse: collapse;
}

.news_tabletd {
    display: block;
    width: 98%;
    margin: 0;
    padding: 10px;
    border: 1px solid #9b9b9b;
    line-height: 18px;
    border-collapse: collapse;
}

.onlinsemi_table {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 0 1vw;
}

.onlinsemi_tableth {
    display: block;
    width: 98%;
    margin: 0;
    padding: 10px;
    border: 1px solid #e9e9e9;
    font-size: 13px;
    line-height: 18px;

/* vertical-align: middle; */
    text-align: center;
    border-collapse: collapse;
}

.onlinsemi_tabletd {
    display: block;
    width: 98%;
    margin: 0;
    padding: 10px;
    border: 1px solid #e9e9e9;
    font-size: 13px;
    line-height: 18px;
    border-collapse: collapse;
}

.news_normaltable {
    display: block;
    width: 80vw;
    font-size: 3.5vw;
    line-height: 2em;
    border-collapse: collapse;
}

.news_normaltable th {
    display: block;
    width: 80vw;
    padding: 1.5vw 1vw;
    border-bottom: 1px solid #c8c8c8;
    background-color: #e6ece6;
    color: #14310b;
    font-weight: normal;
    text-align: center;
}

.news_normaltable td {
    display: block;
    width: 80vw;
    padding: 1.5vw 1vw;
    border-bottom: 1px solid #c8c8c8;
    text-align: left;
}

.normal_table_covid {
    width: 96vw;
    font-size: 3.5vw;
    line-height: 2em;
    border-collapse: collapse;
}

.normal_table_covid th {
    padding: 1vw;
    border: 1px solid #c8c8c8;
    background-color: #e5e5e5;
    font-weight: normal;
    text-align: center;
}

.normal_table_covid td {
    padding: 1vw;
    border: 1px solid #c8c8c8;
    text-align: left;
}

.table_01 {
    width: 100%;
    margin: 10px 5px;
    border: 1px solid #e9e9e9;
    border-collapse: collapse;
}

.table_01 th, .table_01 td {
    border: 1px solid #e9e9e9;
}

.table_01 th {
    width: 20%;
    padding: 5px 0;
    background-color: hsla(0, 0%, 93%, 1);
    font-weight: normal;
    font-size: 12px;
    text-align: center;
}

.table_01 td {
    padding: 5px 3px;
}

/**table_end**/

/**footer**/

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

/* padding: 50px 0; */
    margin: 30px 0 40px 0;
    background-color: #f0f1f0;
    font-size: 12px;
    line-height: 16px !important;
}

footer p {
    font-size: 12px;
    line-height: 16px !important;
}

footer h4 {
    font-size: 16px;
    text-align: center;
}

.footer_pc {
    display: none;
}

.footer_s {
    display: block;
    width: 97%;
    margin: 0;
    margin: 0;
    padding: 10px;
    background-color: #efefef;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
}

.footer_s h4 {
    text-align: center;
}

.footerdl {
    margin: 0 2em;
}

/**footer_end**/

/**font**/

.big1 {
    font-size: 16px;
}

.big2 {
    font-size: 16px;
}

.big2 a {
    text-decoration: none;
}

.big3 {
    font-size: 16px;
}

.font_small {
    font-size: 13px;
    line-height: 18px;
}

.font_small2 {
    margin: 5px;
    font-size: 11px;
    line-height: 1.5em;
}

.syozoku {
    font-size: 11px;
}

.upper {
    vertical-align: top;
}

.middle {
    text-align: center;
    vertical-align: middle;
}

.middlewhite {
    background: #ffffff;
    text-align: center;
    vertical-align: middle;
}

.middlewhite img {
    width: 28vw;
    height: 40vw;
}

.back_pink {
    background-color: rgba(240, 240, 240, 1);
}

.back_red {
    background-color: #ff4d4d;
    color: #ffffff;
}

.back_blue {
    background-color: #c8d6ed;
}

.mark01, .mark02, .mark03, .mark04, .mark05 {
    margin-right: 1px;
    padding: 0 8px;
    border-radius: 7px;
    color: #ffffff;
}

.mark01 {
    background-color: hsla(229, 42%, 51%, 1);
}

.mark02 {
    background-color: hsla(328, 78%, 83%, 1);
}

.mark03 {
    background-color: hsla(229, 68%, 28%, 1);
}

.mark04 {
    background-color: hsla(229, 68%, 28%, 1);
}

.mark05 {
    background-color: hsla(229, 68%, 28%, 1);
}

/**font_end**/

details {
    padding: .5em 1em 0;
    border: 1px solid #aaaaaa;
    border-radius: 10px;
}

summary {
    margin: -.5em -.5em 0;
    padding: .5em;
    font-weight: bold;
}

details[open] {
    padding: .7em;
}

details[open] summary {
    margin-bottom: .5em;
    border-bottom: 1px solid #aaaaaa;
}

.mimaibun {
    padding: 1em;
    font-size: 3.5vw;
}

.smartphone_none {
    display: none;
}

.space {
    padding-bottom: 1em;
}

.news_resizeimage {
    width: 100%;
    height: auto;
}

.news_resizeimage img {
    width: 100%;
    height: auto;
}

.resizeimage img {
    width: 97%;
}

.resizeimage2 img {
    width: 100%;
    padding-top: 0;
}

.jusyou {
    text-align: center;
}

.jusyou img {
    width: 90vw;
}

.pdf_icon img {
    width: 8vw;
}

.pdf_icon a {
    color: #3c4043;
    text-decoration: none;
}

.pdf_icon a:hover {
    color: #2600eb;
}

.COVID {
    margin: 2vw 0;
    padding: 2vw;
    border: 3px solid #191d80;
    background: url("img/arrow.gif");
    background-position: 98% center;
    background-repeat: no-repeat;
    color: #323232;
    font-weight: bold;
    font-size: 15px;
    text-align: left;
    text-align: center;
}

.COVID span {
    font-weight: normal;
}

.COVID:hover {
    opacity: .6;
    text-decoration: none;
}

.fullimage_pc {
    display: none;
}

.fullimage_s {
    display: block;
    width: 92vw;
    margin: 0 auto;
}

.fullimagecontents_pc img {
    display: none;
}

.fullimagecontents_s img {
    display: block;
    width: 80%;
    margin: 0 auto;
}

.textdisplay_pc {
    display: none;
}

.textdisplay_s {
    display: inline;
}

/*ブロック大会スライダー*/
#block_taikai {
    width: 100%;
}

.main_slider {
    margin: 25px 0;
}

.main_slider p {
    line-height: 15px;
}

.chi {
    font-size: 14px;
}

.block_info_con {
    display: flex;
    justify-content: center;
    align-items: center;
}

.block_info_con a {
    width: 100%;
    color: hsla(0, 0%, 26%, 1) !important;
    text-decoration: none;
}

.block_info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    /* text-align: center;*/
}

.top_block_taikai {
    display: flex;
    justify-content: space-evenly;
    width: fit-content;
    max-width: initial;
    margin: 0 auto;

    gap: 13px;
}
/*2207_注意喚起*/
#cyui_2207 {
    width: 95%;
    margin-bottom: 20px;
    padding: 10px 10px;
    border: 2px solid #f15012;
    text-align: left;
}

#cyui_2207 h9 {
    display: block;
    margin-bottom: 10px;
    color: #f15012;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
}

#cyui_2207 p {
    color: #252525;
    font-size: 14px;
    line-height: 17px;
}

/*2209_機関認定*/
#nintei_par_con {
    position: relative;
}

.nintei_nendo {
    position: absolute;
    top: 51%;
    color: hsla(28, 100%, 44%, 1) !important;
    font-size: 15px !important;
    text-align: center;
}

.nintei_nendo, .nintei_nendo span {
    letter-spacing: 3 !important;
}

.nintei_nendo span {
    font-weight: bold;
    font-size: 31px;
}

.top-box-taikai-teisei{
    padding: 0 40px;
}
.top-box-taikai-teisei p{
    color: #000;
}
.top-box-taikai-teisei-h3 span{
    font-weight: 100;
    color: #f00;
    margin: 0;
}
.top-box-taikai-teisei div{
    display: flex;
    gap: 1px;
    color: #000;
}
.top-box-taikai-teisei div a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 2px;
    width: 82px;
}
.top-box-taikai-teisei div a:hover{
    text-decoration: underline;
}
.top-box-taikai-teisei a img{
    width: 33%;
    height: auto;
}
.top-box-taikai-teisei a p{
    color: #00f;
}