﻿@charset "utf-8";
/* --------------------------------------------------
	ギャラリーボックス
-------------------------------------------------- */
.unit_gallerybox {
    margin-bottom: 100px;
}
.upts_gallerybox_imagebox {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 30%;
}
.upts_gallerybox_imagebox img {
    width: 100%;
    margin: 0 5px;
}
.upts_gallerybox_textwrapper {
    float: left;
    margin: 0px;
    padding: 0 0 0 3%;
    width: 65%;
}
.upts_gallerybox_titlebox {
    margin: 15px 0px 15px 0px;
    padding: 0px;
    font-size: 1.7em;
    line-height: 1.2em;
    font-weight: bold;
    color: #666;
}
.upts_gallerybox_overviewbox {
    margin: 0px 0px 20px 0px;
    padding: 10px 0px 10px 10px;
    font-size: 1.0em;
    color: gray;
    border-top: 1px gray dashed;
    border-bottom: 1px gray dashed; /*	background-color:none*/
}
@media (max-width: 599px) {
    .unit_gallerybox {
        margin-bottom: 100px;
    }
    .upts_gallerybox_imagebox {
        float: none;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-height: 300px;
        overflow: hidden;
    }
    .upts_gallerybox_imagebox img {
        margin: 0px;
        padding: 0px;
        width: 100%;
    }
    .upts_gallerybox_textwrapper {
        float: none;
        margin: 0px;
        padding: 0 0 0 0;
        width: 100%;
    }
}
/* --------------------------------------------------
	写真説明ボックス（見出し付き）
-------------------------------------------------- */
.unit_descriptionbox {
    margin-bottom: 40px;
    padding: 10px;
    width: calc(100% - 30px);
    background-color: rgba(0, 0, 0, 0.00);
    background-position: right top;
    background-repeat: no-repeat;
    border: 5px red solid;
    border-image: url(../image/common/img-border-gray.png) 10 10 round;
}
.upts_descriptionbox_flex_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-self: flex-start;
}
.upts_descriptionbox_subbox1 {
    margin: 10px;
    width: calc(35% - 22px);
}
.upts_descriptionbox_subbox1_large {
    margin: 10px;
    width: calc(65% - 22px);
}
.upts_descriptionbox_subbox2 {
    margin: 10px;
    width: calc(65% - 22px);
    position: relative;
}
.upts_descriptionbox_subbox2 img {
    width: calc(100% - 20px);
    margin-top: 10px;
}
.upts_descriptionbox_subbox2.l_nophoto {
    margin: 10px;
    width: 100%;
    position: relative;
}
@media (max-width: 595px) {
    .upts_descriptionbox_flex_container {
        display: block;
    }
    .upts_descriptionbox_subbox1 {
        float: none;
        width: calc(100% - 20px);
    }
    .upts_descriptionbox_subbox1_large {
        float: none;
        width: calc(100% - 20px);
    }
    .upts_descriptionbox_subbox2 {
        float: none;
        width: calc(100% - 20px);
        position: static;
    }
}
/* --------------------------------------------------
	写真説明ボックス（見出し付き）
-------------------------------------------------- */
.unit_galleryitem {
    float: left;
    margin-bottom: 40px;
    margin-right: 10px;
    padding: 10px;
    width: calc(50% - 40px);
    background-color: rgba(0, 0, 0, 0.00);
    background-position: right top;
    background-repeat: no-repeat;
    border: 5px red solid;
    border-image: url(../image/common/img-border-pink.png) 10 10 round;
}
.upts_galleryitem_subbox1 {
    margin: 10px;
    width: calc(100% - 22px);
}
.upts_galleryitem_subbox2 {
    margin: 10px;
    width: calc(100% - 22px);
}
@media (max-width: 595px) {
    .unit_galleryitem {
        float: none;
        margin-bottom: 40px;
        width: calc(100% - 40px);
    }
}
/* --------------------------------------------------
	フォトボックス
	　オプション指定方法：
	　　内包するimgタグのclassにop_2、op_3[デフォルト]を追加
	　　op_2：最大2列
	　　op_3：最大3列
	　　op_4：最大4列
-------------------------------------------------- */
.unit_photobox {
    width: 100%;
    text-align: center;
    margin: 30px 0;
}
.unit_photobox img.op_1f {
    width: 100%;
}
.unit_photobox img.op_1h {
    width: 60%;
}
.unit_photobox img.op_2 {
    width: 40%;
}
.unit_photobox img.op_3 {
    width: 30%;
}
.unit_photobox img.op_4 {
    width: 22%;
}
@media (max-width: 595px) {
    .unit_photobox img.op_2 {
        width: 45%;
    }
    .unit_photobox img.op_3 {
        width: 45%;
    }
    .unit_photobox img.op_4 {
        width: 45%;
    }
}
@media (max-width: 599px) {
    .unit_photobox img.op_2 {
        width: 90%;
    }
    .unit_photobox img.op_3 {
        width: 90%;
    }
    .unit_photobox img.op_4 {
        width: 90%;
    }
}
/* ボックス並べる・２分割 
  レポートグラフ用　*/
.unit_photobox_2flex {
    margin: 0 auto;
    width: 80%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.unit_photobox_2flex_box {
    margin-bottom: 1.3em;
    width: 49%;
    background-color: #fff;
    border: 1px solid #B3B3B3;
}
.unit_photobox_2flex_box img {
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 595px) {
    .unit_photobox_2flex {
        flex-direction: column;
    }
    .unit_photobox_2flex_box {
        width: 100%;
    }
}
/* --------------------------------------------------
	説明ボックス（見出し付き）
-------------------------------------------------- */
.unit_introbox {
    padding: 10px 25px 40px 25px;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 40px;
    border: 3px solid #E0E0E0;
    border-radius: 5px;
}
.upts_introbox_title {
    border-bottom: 1px #C0C0C0 solid;
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #464646;
    font-weight: bold;
}
.upts_introbox_txt {
    margin-left: 23px;
}
.upts_introbox_txt img {
    margin: 0 30px 20px 0;
    max-width: 250px;
}
.upts_introbox_name {
    font-weight: bold;
    font-size: 1.3em;
}
.upts_introbox_company {
    font-weight: normal;
    font-size: 1.1em;
}
.upts_introbox_photo {
    width: 35%;
    margin: 2px 10px 5px 10px;
    float: left;
}
.upts_introbox_seminarimg {
    margin-top: 20px;
    object-fit: contain;
}
@media (max-width: 595px) {
    .unit_introbox {}
    .unit_introbox .col_internal_komidashi {
        margin-top: 1em;
        margin-left: .3em;
    }
    .upts_introbox_txt {
        margin-left: 5px;
    }
    .upts_introbox_name {
        font-weight: bold;
        font-size: 1.1em;
    }
    .upts_introbox_company {
        font-weight: normal;
        font-size: 1em;
    }
    .upts_introbox_photo {
        width: 40%;
        margin: 2px 10px 5px 10px;
        float: left;
    }
    .upts_introbox_seminarimg {
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}
/* --------------------------------------------------
	ステップボックス
-------------------------------------------------- */
.unit_stepbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
    border: 2px solid #99bddd;
    padding: 20px 20px 26px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
}
.unit_stepbox_end {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
    border: 2px solid #99bddd;
    padding: 20px 10px 26px 10px;
    border-radius: 10px;
}
.unit_stepbox:after, .unit_stepbox:before {
    width: 100%;
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.unit_stepbox:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 20px;
    margin-left: -20px;
}
.unit_stepbox:before {
    border-color: rgba(230, 230, 230, 0);
    border-top-color: #99bddd;
    border-width: 23px;
    margin-left: -23px;
}
/*　ステップボックス レスポンシブ時　*/
@media (max-width: 595px) {
    .unit_stepbox {
        display: block;
        text-align: center;
    }
    .unit_stepbox_end {
        display: block;
        text-align: center;
    }
    .col_appealmessage {
        display: block;
        margin: 30px auto 10px auto;
        padding-left: 10px;
        text-align: left;
    }
    .unit_stepbox p {
        text-align: left;
    }
    .unit_stepbox_end p {
        text-align: left;
    }
}
/*　ステップボックス レスポンシブ時　ここまで　*/
/* ステップ中身 */
.upts_step_number {
    margin: 0 30px;
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 200px;
    background-size: 5px 5px;
}
.upts_step_text {
    width: 80%;
    margin: 0 auto;
}
.upts_step_number h4 {
    text-align: center;
    line-height: 1.3;
    color: #005bab;
}
.upts_step_number span.upts_step {
    font-size: 1.1em;
}
.upts_step_number span.upts_step02 {
    font-size: 2em;
    font-weight: bold;
}
/*テキスト上タイトル*/
.upts_step_text .step_title {
    font-size: 1.4em;
    color: #005bab;
}
@media (max-width: 595px) {
    /* ステップ中身 */
    .upts_step_number {
        margin: 0 auto 20px auto;
    }
    .upts_step_text {
        width: 100%;
    }
    .upts_step_number h4 {
        text-align: center;
    }
}
/* --------------------------------------------------
	ギャラリーの目次パネル　
-------------------------------------------------- */
.unit_galleryindex {
    width: 100%;
    padding: 25px 0;
}
.unit_galleryindex:hover {
    background: #F8F8F8;
    transition: 0.5s;
}
.upts_galleryindex_photo {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
}
.upts_galleryindex_photo img {
    width: 100%;
}
/*　日付　*/
.upts_galleryindex_data {
    width: 80%;
    margin: 4px 0 3px 0;
    color: rgba(0, 0, 192, 1.00);
    font-weight: bold;
}
/*　テキスト　*/
.upts_galleryindex_text, .upts_galleryindex_text_g1, .upts_galleryindex_text_g2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1em;
}
/*　続きを読む　*/
.upts_galleryindex_go_deteil {
    margin-top: 5px;
    text-align: right;
    width: 100%;
}
.upts_galleryindex_go_deteil a {
    text-decoration: none;
}
.galleryindex_op_2c {
    width: 50%;
    float: left;
}
.galleryindex_op_3c2 {
    width: 33%;
    float: left;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
.galleryindex_op_3c2:first-child {
    margin-left: 17.5%;
}
.galleryindex_op_3c {
    width: 33%;
    float: left;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
.galleryindex_op_3c:first-child {
    border-left: none;
}
.galleryindex_op_4c {
    width: 25%;
    float: left;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
.galleryindex_op_4c:first-child {
    border-left: none;
}
/*　スマホ用　*/
@media (max-width: 595px) {
    .upts_galleryindex {
        width: 100%;
        padding: 16px 5px 0 0;
    }
    .upts_galleryindex:hover {
        background: white;
    }
    /*　日付　*/
    .upts_galleryindex_data {
        width: 97%;
        margin: 20px 0px;
        color: #6b6351;
        font-weight: bold;
    }
    .upts_galleryindex_photo {
        width: 130px;
        margin-right: 10px;
        margin-bottom: 5px;
        float: left;
        overflow: hidden;
    }
    .upts_galleryindex_text, .upts_galleryindex_text_g1, .upts_galleryindex_text_g2 {
        width: 97%;
        margin: 0px 20px;
        float: none;
    }
    .upts_galleryindex_go_deteil {
        width: 97%;
        margin-top: 5px;
        text-align: right;
    }
    .galleryindex_op_2c {
        width: auto;
    }
    .galleryindex_op_3c2 {
        width: 100%;
        border-left: none;
        margin-left: none;
    }
    .galleryindex_op_3c2:first-child {
        margin-left: 0;
    }
    .galleryindex_op_3c {
        width: 100%;
        border-left: none;
    }
    .galleryindex_op_4c {
        width: 100%;
        border-left: none;
    }
}
/* アコーディオンリストボタン */
a.js_accordion_btn /*,
a.js_accordion_btn:link,a.js_accordion_btn:visited*/ {
    display: inline-block;
    width: 3em;
    margin: 0 3px;
    margin-bottom: 5px;
    text-align: center;
    box-shadow: 0px 2px 0px 0 rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
    line-height: 1em;
    vertical-align: middle;
    padding: 7px 5px 5px 20px;
    background: url('../image/common/icon-arrow-link-details.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-pink.png);
    text-decoration: none;
    border-radius: 1.5em;
    border: 2px white solid;
    color: #614B30; /* 基本テキスト色:濃茶 */
}
.js_accordion_btn.active {
    color: white;
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.4) inset;
    background: url('../image/common/icon-arrow-link-details-active.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-dkbrown.png);
}
a.js_accordion_btn:hover {
    color: #614B30; /* 基本テキスト色:濃茶 */
    background: url('../image/common/icon-arrow-link-details.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-stgpink.png);
    text-decoration: none;
    cursor: pointer;
}
.js_accordion_btn.active:hover {
    color: white;
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.4) inset;
    background: url('../image/common/icon-arrow-link-details-active.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-dkbrown.png);
    cursor: pointer;
}
@media (max-width: 595px) { /* スマホ用  */
    /* ボタン */
    a.js_accordion_btn {
        width: 40%;
        font-size: 1em;
    }
    a.js_accordion_btn:hover, a.js_accordion_btn:active {
        color: #614B30; /* 基本テキスト色:濃茶 */
        ;
        background: url('../image/common/icon-arrow-link-details.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-pink.png);
        text-decoration: none;
    }
}
/* アコーディオンリストボタン(緑) クラス名にjs_accordion_btn_greenを追加 */
a.js_accordion_btn_green /*,
a.js_accordion_btn_green:link,a.js_accordion_btn_green:visited*/ {
    background: url('../image/common/icon-arrow-link-details.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-lightgreen.png);
}
.js_accordion_btn_green.active {
    background: url('../image/common/icon-arrow-link-details-active.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-dkbrown.png);
}
a.js_accordion_btn_green:hover {
    background: url('../image/common/icon-arrow-link-details.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-green.png);
}
.js_accordion_btn_green.active:hover {
    background: url('../image/common/icon-arrow-link-details-active.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-dkbrown.png);
}
@media (max-width: 595px) { /* スマホ用  */
    /* ボタン */
    a.js_accordion_btn_green:hover, a.js_accordion_btn_green:active {
        background: url('../image/common/icon-arrow-link-details.png') no-repeat 10px center, url(../image/common/bgsheet-stripe-lightgreen.png);
    }
}
/*--------------------------
　　　　　　目次ボタン
----------------------------*/
.unit_btn_subcontents {
    /* 余白を撤去 */
    margin: 0;
    padding: 0;
    margin-right: -1%; /*端のリスト間用余白を撤去*/
    margin-bottom: -20px;
    /* リストマークを削除 */
    list-style-type: none; /* 中のliを左右センタリング */
    /*	 text-align:center; */
}
.unit_btn_subcontents li {
    display: inline;
}
.unit_btn_subcontents a {
    /* liのdisplayの設定 inline-block/block/boxのいずれか */
    display: inline-block; /*IE6,7対象外*/
    /* liの高さと幅を設定する */
    padding: 0;
    width: 31.5%;
    height: 100px;
    margin: 1px 1% 21px 1px; /*枠切れ防止用+1px*/
    /* liの中のline-heightをliの高さにしてのa(inline-block)を上下中央に置く */
    text-align: center;
    line-height: 100px;
    vertical-align: middle;
    background-color: white;
    background: -moz-linear-gradient(top, rgba(42, 47, 136, 0) 0, rgba(42, 47, 136, 0) 5px, rgba(42, 47, 136, 1) 6px, rgba(42, 47, 136, 1) 8px, rgba(42, 47, 136, 0) 9px), /*下部ボーター 紺色*/ -moz-linear-gradient(bottom, white, rgb(231, 240, 249)); /*グラデ 薄青*/
    background: -webkit-linear-gradient(top, rgba(42, 47, 136, 0) 0, rgba(42, 47, 136, 0) 5px, rgba(42, 47, 136, 1) 6px, rgba(42, 47, 136, 1) 8px, rgba(42, 47, 136, 0) 9px), /*下部ボーター 紺色*/ -webkit-linear-gradient(bottom, white, rgb(231, 240, 249)); /*グラデ 薄青*/
    background: linear-gradient(to top, rgba(42, 47, 136, 0) 0, rgba(42, 47, 136, 0) 5px, rgba(42, 47, 136, 1) 6px, rgba(42, 47, 136, 1) 8px, rgba(42, 47, 136, 0) 9px), /*下部ボーター 紺色*/ linear-gradient(to bottom, white, rgb(231, 240, 249)); /*グラデ 薄青*/
    color: #3351a3; /*テキスト紺*/
    /*外枠*/
    /*border:1px #C6C6C6 solid;*/ /*middle gray*/
    box-shadow: 0 0 0 1px #C6C6C6, 0 0 0 1px white inset;
}
.unit_btn_subcontents a:hover {
    background: -moz-linear-gradient(top, rgba(237, 123, 49, 0) 0, rgba(237, 123, 49, 0) 5px, rgba(237, 123, 49, 1) 6px, rgba(237, 123, 49, 1) 8px, rgba(237, 123, 49, 0) 9px), /*下部ボーター オレンジ*/ -moz-linear-gradient(top, white, rgb(231, 240, 249)); /*グラデ 薄青*/
    background: -webkit-linear-gradient(top, rgba(237, 123, 49, 0) 0, rgba(237, 123, 49, 0) 5px, rgba(237, 123, 49, 1) 6px, rgba(237, 123, 49, 1) 8px, rgba(237, 123, 49, 0) 9px), /*下部ボーター オレンジ*/ -webkit-linear-gradient(top, white, rgb(231, 240, 249)); /*グラデ 薄青*/
    background: linear-gradient(to top, rgba(237, 123, 49, 0) 0, rgba(237, 123, 49, 0) 5px, rgba(237, 123, 49, 1) 6px, rgba(237, 123, 49, 1) 8px, rgba(237, 123, 49, 0) 9px), /*下部ボーター オレンジ*/ linear-gradient(to top, white, rgb(231, 240, 249)); /*グラデ 薄青*/
    color: rgb(237, 123, 49); /*差し色　オレンジ*/
    text-shadow: white 1px 1px 0, white 1px -1px 0, white -1px 1px 0, white -1px -1px 0;
}
.unit_btn_subcontents a span.wrapper {
    /* aをインラインボックス属性にする */
    display: inline-block;
    /* aの中のテキストのline-heightを1emに戻す */
    line-height: 1.3em;
    font-size: 1.3em;
    font-weight: normal;
    vertical-align: middle;
    margin: auto auto;
    padding: 0 10px;
}
ul.unit_btn_subcontents a span.subtext {
    display: inline;
    font-size: 0.7em;
}
/* スマートフォン用 */
@media (max-width: 595px) {
    .unit_btn_subcontents a {
        width: 48%;
    }
}
@media (max-width: 599px) {
    .unit_btn_subcontents {
        margin-right: 0;
    }
    .unit_btn_subcontents a {
        width: 100%;
    }
}
/**/
/* ------------------------------
   展開テーブル
-----------------------------*/
/* マーク */
.infomark_label {
    display: inline-block;
    margin-bottom: 3px;
    padding: .1em 2em;
    border: 1px solid #44AAD0;
    border-radius: 3px;
    font-size: .7em;
    line-height: 1.5em;
    vertical-align: middle;
    text-align: center;
    color: dimgray;
    background: white;
}
.infomark_label.closed {
    border-color: red;
    color: red;
}
.infomark_label.attention {
    background-color: #4784bf;
    border-color: white;
    color: white;
}
.uptsactivitieslist .infomark_label, .uptslist_activitieslist .infomark_label {
    width: 42%;
}
.uptsactivitieslist .infomark_label.closed, .uptslist_activitieslist .infomark_label.closed {
    width: 100%;
    float: left;
}
.uptsactivitieslist .infomark_label.eventtype, .uptslist_activitieslist .infomark_label.eventtype {
    float: right;
}
/*  会議リスト、イベントリスト  */
@media screen and (min-width: 599px) {
    .uptsactivitieslist td.infomark {
        max-width: 140px;
        padding: 7px 15px 0 7px;
    }
    .uptsactivitieslist.eventlist td.infomark {
        width: 120px;
    }
    .uptsactivitieslist td.infomark .infomark_label.eventtype {
        margin-right: -8px;
    }
    .uptsactivitieslist tbody td, .uptsactivitieslist thead th {
        border-left: none;
    }
    table.uptsactivitieslist {
        border-collapse: collapse; /*hrのborderに必要（border-radius効かない）*/
        border-spacing: 0;
    }
    .uptsactivitieslist tbody tr, .uptsactivitieslist tbody tr {
        border-bottom: 1px #ddd solid;
    }
    .uptsactivitieslist tr:nth-child(even) {
        background-color: transparent;
    }
}
.uptsactivitieslist tbody tr.js_accordion_item_contents {
    background-color: #eaeaea;
}
.uptsactivitieslist tbody tr.js_accordion_item_contents div {
    background-color: white;
}
/*アイコン「お知らせ」*/
.infomark_label.oshirase {
    border: none;
    background-color: #005bab;
    color: white;
    margin-left: 10px;
    padding: .1em .6em;
}
/*アイコン「new」*/
.infomark_label.new {
    border: none;
    background-color: #dc143c;
    color: white;
    margin-left: 10px;
    padding: .1em .6em;
}
/*アイコン「開催済み」*/
.infomark_label.sumi {
    border: none;
    background-color: #8F8F8F;
    color: white;
    margin-left: 10px;
    padding: .1em .6em;
}
/*アイコン「販売終了」*/
.infomark_label.end {
    border: none;
    background-color: #8F8F8F;
    color: white;
    margin-left: 10px;
    padding: .1em .6em;
}
/* モバイル用 */
@media screen and (max-width: 595px) {
    .uptsactivitieslist td.infomark {
        overflow: hidden;
        margin: 0 -15px;
        padding-top: 5px;
        padding-right: 15px;
        padding-left: 15px;
        margin-top: -1px;
        margin-bottom: -2px;
        background-color: #BBD347; /*若草色*/
        ;
    }
    .uptsactivitieslist td.infomark:empty {
        display: none;
    }
    .uptsactivitieslist.eventlist td.infomark {
        margin-bottom: 9px;
    }
    .uptsactivitieslist .infomark_label {
        font-size: 0.8em;
    }
    .infomark_label {
        max-width: 8em;
    }
    /* テーブルタイトル */
    .uptsactivitieslist tbody td.title:before {
        content: none;
    }
    .uptsactivitieslist tbody td.date:before {
        content: "開催日:";
    }
    .uptsactivitieslist tbody td.time:before {
        content: "時間:";
    }
    .uptsactivitieslist tbody td.place:before {
        content: "会場:";
    }
    .uptsactivitieslist tbody td.contents:before {
        content: none;
    }
    .uptsactivitieslist tbody td.event:before {
        content: "イベント:";
    }
}
/*  その他の活動（リスト）  */
.uptslist_activitieslist {
    width: 100%;
    margin: 0 auto 10px;
    padding: 0;
    background-color: #f9f9f9;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px #ddd solid;
}
.uptslist_activitieslist dt {
    float: left;
    width: 120px;
    padding: 7px;
    margin-right: -14px;
}
.uptslist_activitieslist dd {
    margin-left: 134px;
    padding: 7px;
}
.uptslist_activitieslist dt + dd {
    padding-bottom: 0;
}
.uptslist_activitieslist dd + dd {
    padding-top: 0;
}
.uptslist_activitieslist dt:not(:first-of-type), .uptslist_activitieslist dt + dd:not(:first-of-type) {
    border-top: 1px #ddd solid;
}
.uptslist_activitieslist dd.date {
    font-size: 0.8em;
}
.uptslist_activitieslist dd.contents {}
/* モバイル用 */
@media screen and (max-width: 595px) {
    .uptslist_activitieslist {
        border-radius: none;
        border: 0;
        background-color: inherit;
    }
    .uptslist_activitieslist dt {
        overflow: hidden;
        float: none;
        width: auto;
        margin: 0;
        padding-right: 15px;
        padding-left: 15px;
        /*margin-bottom: 9px;*/
        background-color: #BBD347; /*若草色*/
        ;
        color: #fff;
        border-radius: 3px;
        border: 1px #ddd solid;
    }
    .uptslist_activitieslist dd {
        margin-left: 0;
        padding: 0 15px;
        background-color: #f9f9f9;
    }
    .uptslist_activitieslist dt + dd {
        padding-top: 9px;
    }
    .uptslist_activitieslist dd {
        padding-bottom: 9px;
    }
    .uptslist_activitieslist dd:last-child {
        margin-bottom: 15px;
    }
    .uptslist_activitieslist dd + dt {
        margin-top: 15px;
    }
    /*外枠の設定*/
    .uptslist_activitieslist dt {
        border-radius: 3px 3px 0 0;
        border: 1px #ddd solid;
        border-bottom: 0;
    }
    .uptslist_activitieslist dd {
        border-radius: 0 0 3px 3px;
        border: 1px #ddd solid;
    }
    .p_list_activitieslist dd:not(.contents) {
        border-radius: none;
        border-top: none;
        border-bottom: none;
    }
    .p_list_activitieslist dd.contents {
        border-top: none;
    }
    .p_list_activitieslist .infomark {
        text-align: center;
    }
    .p_list_activitieslist .infomark_label.eventtype {
        /*font-size:0.8em;*/
        display: inline;
        float: none;
        padding: 0;
        margin: 0;
        border: none;
        background-color: inherit;
        color: #614B30; /* 基本テキスト色:濃茶 */
        ;
        font-size: 1em;
        line-height: 2.3em;
    }
}
/* --------------------------------------------------
	外部リンクボタンリスト
-------------------------------------------------- */
ul.unit_linkbtn {
    /* 余白を撤去 */
    margin: 0;
    padding: 0;
    /* リストマークを削除 */
    list-style-type: none; /* 中のliを左右センタリング */
    /*text-align:center;*/
}
ul.unit_linkbtn li {
    display: inline-block;
    box-sizing: border-box;
    /*	width:33.3%;*/
    width: 100%;
    padding: 10px;
}
ul.unit_linkbtn a:after {
    content: url('../image/common/icon-link.png');
}
ul.unit_linkbtn a {
    /* liのdisplayの設定 inline-block/block/boxのいずれか */
    display: inline-block; /*IE6,7対象外*/
    /* liの高さと幅を設定する */
    padding: 0;
    width: 100%;
    height: 50px;
    margin: 0;
    /* liの中のline-heightをliの高さにしてのa(inline-block)を上下中央に置く */
    text-align: center;
    line-height: 50px;
    vertical-align: middle;
    background-color: white;
    color: #3A3A3A; /*darkgray text*/
    /*外枠*/
    /*border:1px #C6C6C6 solid;*/ /*middle gray*/
    box-shadow: 0 0 0 1px #C6C6C6, 0 0 0 1px white inset;
}
ul.unit_linkbtn a:hover {
    background-color: white;
}
ul.unit_linkbtn a span.wrapper {
    /* aをインラインボックス属性にする */
    display: inline-block;
    /* aの中のテキストのline-heightを1emに戻す */
    line-height: 1em;
    /*font-size:1.3em;*/
    font-weight: normal;
    vertical-align: middle;
    margin: auto auto;
    padding: 0 10px;
}
@media (min-width: 599px) {
    ul.unit_linkbtn li {
        width: 33.333%;
    }
}
/* スマートフォン用 */
@media (max-width: 595px) {
    ul.unit_linkbtn li {
        width: 50%;
    }
}
@media (max-width: 599px) {
    ul.unit_linkbtn {
        margin: 0 20px;
    }
    ul.unit_linkbtn li {
        padding: 5px 0;
    }
    ul.unit_linkbtn li {
        width: 100%;
    }
}
/* =================================
           横並びのテーブル 
 ==================================*/
.unit_table_side {
    max-width: 1100px;
    width: 100%;
    margin: 50px auto;
}
.unit_table_side table {
    width: 100%;
    border-collapse: collapse;
    border-width: 1px;
    border: 1px solid #99bddd;
}
.unit_table_side table tr th, .unit_table_side table tr td {
    padding: 1em;
    text-align: left;
    vertical-align: top;
    border-right: #99bddd 1px dotted;
    border-bottom: #99bddd 1px solid;
}
/*.unit_table_side table tr:last-child th, .unit_table_side table tr:last-child td {
    border-bottom: none;
}*/
.unit_table_side table tr th {
    width: 22%;
    font-weight: bold;
    border-right: 1px dotted #99bddd;
    background-color: #f3f7fb;
    text-align: center;
}
@media screen and (max-width:595px) {
    .unit_table_side {
        width: 100%;
    }
    .unit_table_side table, .unit_table_side table tbody, .unit_table_side table tr, .unit_table_side table tr th, .unit_table_side table tr td {
        display: block;
    }
    .unit_table_side table tr {
        margin-bottom: 10px;
/*        padding-bottom: 10px;
*/        border: 1px solid #99bddd;
    }
    .unit_table_side table {
        width: 100%;
        border-width: 0;
    }
    .unit_table_side table tr th, .unit_table_side table tr td {
        padding: 2px 0;
        border-bottom: none;
        padding-left: 1em;
        padding-right: 1em;
        width: calc(100% - 2em);
        border-right: #99bddd 1px solid;
    }
    .unit_table_side table tr td {
        border-width: 0px 1px 0px 1px;
    }
}
/* １列テーブル */
.unit_table_1column *, .unit_table_1column *:before, .unit_table_1column *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.unit_table_1column {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.unit_table_1column th {
    width: 13%;
    background: #f4f4f4;
    padding: 10px;
    text-align: left;
    border: 1px solid #dddddd;
    font-size: 1.1em;
    color: #1F1F1F;
}
.unit_table_1column td {
    text-align: left;
    vertical-align: top;
    padding: 10px;
    border: 1px solid #dddddd;
}
.unit_table_1column td:first-child {
    text-align: left;
    vertical-align: middle;
}
@media screen and (max-width:595px) {
    .unit_table_1column {
        width: 95%;
        margin: 0 auto;
    }
}
/*================================
		th縦横ありのテーブル
================================*/
.unit_table_2th *, .unit_table_2th *:before, .unit_table_2th *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.unit_table_2th {
    width: 100%;
    border-collapse: collapse;
    border-right: 1px solid #E1E1E1;
}
.unit_table_2th thead th {
    padding: 10px 15px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    background: #E1E1E1;
}
.unit_table_2th thead th:last-child {
    border-right: 1px solid #E1E1E1;
}
.unit_table_2th tbody th {
    padding: 10px 15px;
    vertical-align: top;
    border-bottom: 1px solid #ffffff;
    background: #E1E1E1;
    white-space: nowrap;
}
.unit_table_2th tbody tr:last-child th {
    border-bottom: 1px solid #E1E1E1;
}
.unit_table_2th tbody td {
    padding: 10px 15px;
    vertical-align: top;
    border-bottom: 1px solid #E1E1E1;
    border-left: 1px solid #E1E1E1;
    background: #ffffff;
}
@media only screen and (max-width:480px) {
    .unit_table_2th thead {
        display: none;
    }
    .unit_table_2th tbody th {
        display: block;
    }
    .unit_table_2th tbody td {
        display: block;
        padding: 10px 5px;
    }
    .unit_table_2th tbody td::before {
        font-weight: bold;
        float: left; /*上のth要素が長い場合こちらを解除すると1段落下り見やすくなります*/
        padding: 0.5em 0;
        content: attr(label);
    }
    .unit_table_2th tbody td p {
        padding: 0.5em 0 0 1em;
        margin: 0;
    }
}
/* =================================
      横並びのテーブル -セミナー用
 ==================================*/
.unit_table_side_noborder {
    max-width: 900px;
}
.unit_table_side_noborder table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
    text-align: left;
    margin-bottom: 2em;
}
.unit_table_side_noborder table tr th {
    width: 100px;
}
.unit_table_side_noborder table tr {
    border-bottom: 1px dotted rgba(212, 212, 212, 1.00);
}
.unit_table_side_noborder table tr th, .unit_table_side_noborder table tr td {
    padding: .7em 0;
}
@media screen and (max-width:595px) {
    .unit_table_side_noborder {
        width: 100%;
    }
    .unit_table_side_noborder table, .unit_table_side_noborder table tbody, .unit_table_side_noborder table tr, .unit_table_side_noborder table tr th, .unit_table_side_noborder table tr td {
        display: block;
    }
    .unit_table_side_noborder table {
        width: 100%;
        border-width: 0 0 1px 0;
    }
    .unit_table_side_noborder table tr th, .unit_table_side_noborder table tr td {
        width: 90%;
        padding: 1%;
    }
    .unit_table_side_noborder table tr td {
        border-width: 0px 1px 0px 1px;
    }
}
/* ========================
		続きを読むbox
===========================*/
/*全体*/
.unit_more_box {
    margin: 2em 0 0; /*前後の余白*/
    padding: 0;
}
/*ボタン装飾*/
.unit_more_box label {
    padding: 10px 0;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    display: inline-block;
    text-align: center;
    background-color: rgba(230, 235, 244, 1);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(224, 230, 242, 1) 4px, rgba(224, 230, 242, 1) 8px);
    transition: .5s;
    border-radius: 10px;
}
.unit_more_box label span:before {
    content: url("../image/common/icon-plus.svg");
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
}
/*ボタンホバー時*/
.unit_more_box label:hover {
    background-color: rgba(230, 235, 244, 1);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(224, 230, 242, 1) 4px, rgba(224, 230, 242, 1) 8px);
    transition: .5s;
    border-radius: 10px;
}
/*チェックは見えなくする*/
.unit_more_box input {
    display: none;
}
/*中身を非表示にしておく*/
.unit_more_box .more_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}
/*クリックで中身表示*/
.unit_more_box input:checked ~ .more_show {
    padding: 30px 0;
    height: auto;
    opacity: 1;
    width: 95%;
    margin: 0 auto;
    text-align: justify;
}
/* 縦横比を保ったままレスポンシブする */
ul.unit_news_img {
    max-width: 900px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 260px;
    margin-top: 20px;
}
.unit_news_img li {
    height: calc(100% - 20px);
    margin: 0.5%;
}
.unit_news_img li img {
    height: calc(100% - 20px);
}
/* スマートフォン用 */
@media (max-width: 595px) {
    ul.unit_news_img {
        display: block;
        text-align: center;
        margin: 0 auto;
        height: auto;
        margin-top: 10px;
    }
    .unit_news_img li {
        height: auto;
        width: 100%;
        margin: 0 auto;
    }
    .unit_news_img li img {
        height: auto;
        width: 100%;
    }
    .unit_news_img li.tate {
        width: 30%;
    }
}
/* スクロール付きのボックス本体 */
.upts_scrollbox {
    overflow-y: scroll;
    overflow-x: hidden;
    width: 90%;
    margin: 40px auto;
    background: white;
    height: 300px;
}
/*スクロールバーの横幅指定*/
.upts_scrollbox::-webkit-scrollbar {
    width: 10px;
}
/*スクロールバーの背景色・角丸指定*/
.upts_scrollbox::-webkit-scrollbar-track {
    background: #ECECEC;
}
/*スクロールバーの色・角丸指定*/
.upts_scrollbox::-webkit-scrollbar-thumb {
    background: #ADADAD;
}
ul.upts_scrollbox li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px dotted #C7C7C7;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
ul.upts_scrollbox li div:nth-child(1) {
    padding: 0 20px;
}
.upts_scrollbox h6 {
    color: #ef8100;
    font-size: .8em;
    letter-spacing: .25em;
}
.upts_scrollbox p {
    font-size: .92em;
    padding-top: 10px;
}
@media (max-width: 767px) {
    .upts_scrollbox {
        margin: 0 auto;
        max-width: 100%;
        font-size: .95em;
        height: 250px;
        margin-bottom: 30px;
    }
    ul.upts_scrollbox li div:nth-child(1) {
        padding: 0;
    }
}
/* --------------------------------------------------
	スクロールテーブル（スタッフ紹介）
-------------------------------------------------- */
.upts_scroll_table_wrapper table {
    border-collapse: collapse;
    margin: 30px auto;
}
.upts_scroll_table_wrapper th {
    background: #F4F4F4;
}
.upts_scroll_table_wrapper td, .upts_scroll_table_wrapper th {
    border: 1px solid #ccc;
    padding: 0.5em;
}
.upts_scroll_table_wrapper table th:first-child {
    text-align: left;
}
.upts_scroll_table_wrapper table th:nth-child(3) {
    width: 8em;
}
.upts_scroll_table_wrapper table th:nth-child(3) {
    width: 24em;
}
@media only screen and (max-width: 595px) {
    /*はみ出した部分をスクロールさせる　*/
    .upts_scroll_table_wrapper {
        overflow: scroll !important;
    }
    /* スクロールの背景の設定 */
    .upts_scroll_table_wrapper::-webkit-scrollbar-track {
        background: #fff;
    }
    /* スクロールのつまみ部分の設定 */
    .upts_scroll_table_wrapper::-webkit-scrollbar-thumb {
        background: #ededed;
    }
    .upts_scroll_table_wrapper::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    /*table自体を程よい幅に　*/
    .upts_scroll_table_wrapper table {
        width: 110%;
        font-size: .9rem;
        line-height: 2rem;
    }
    .upts_scroll_table_wrapper table th:first-child {
        width: 8em;
        /*先頭列を左に固定*/
        position: sticky;
        left: 0;
    }
}
/* --------------------------------------------------
	タブ切り替え　ここから
-------------------------------------------------- */
/*tabの形状*/
.tab {
    display: flex;
    flex-wrap: wrap;
}
.tab li {
    width: 33.33%;
}
.tab li a {
    display: block;
    background: #ddd;
    margin: 0 2px;
    padding: 10px 20px;
    border-top: 3px solid #005bab;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.01));
    color: #666;
    font-weight: bold;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
    background: #fff;
    color: #005bab;
}
/*エリアの表示非表示と形状*/
.area {
    display: none; /*はじめは非表示*/
    opacity: 0; /*透過0*/
    background: #fff;
    padding: 50px 60px;
    border: 1px solid #ededed;
    /*	border-top:none;
*/ width: calc(100% - 126px);
    margin-left: 2px;
    margin-right: 0;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block; /*表示*/
    animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
    border: 1px solid #ededed;
    box-shadow: lightgray 0px 0px 10px;
}
@keyframes displayAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 30px auto;
    background: #fefefe;
}
.area h2 {
    font-size: 1.3rem;
    margin: 0 0 20px 10px;
}
.area li {
    padding: 10px;
    border-bottom: none;
}
@media only screen and (max-width: 595px) {
    /*エリアの表示非表示と形状*/
    .area {
		width: 100%;
        margin:0;
    padding: 20px 0;
    }
	
.area.is-active {
    border: none;
    box-shadow: none;
}	
}
/*タブ切り替え　ここまで*/
/*---------------------------------
　　　　　　サイトマップ  （レスポンシブテーブル）
-----------------------------------*/
.unit_sitemaplist {
    display: flex;
    padding: 20px auto;
}
.unit_sitemaplist > li {
    display: block;
    overflow: hidden;
    clear: both;
    padding: 0 10px;
    width: calc(16.66% - 20px);
    margin: 60px auto;
}
.unit_sitemaplist > li span {
    width: calc(100% - 40px);
    display: block;
    border-left: 3px solid #005bab;
    padding: 5px 20px;
}
.unit_sitemaplist > li > p {
    display: block;
    width: 100%;
    text-align: left;
}
.unit_sitemaplist ul {}
.unit_sitemaplist ul > li {
    display: block;
    position: relative; /*リストマークに必要*/
    float: left;
    width: 100%;
    margin-top: 10px;
}
.unit_sitemaplist > li > p, .unit_sitemaplist > li > ul {
    display: block;
    overflow: hidden;
    float: none;
    width: auto;
    margin: 0;
    border-radius: 0;
    padding: 0;
}
.unit_sitemaplist ul > li a {
    display: block;
    font-size: 0.8em;
    color: #005bab;
    margin-left: 25px;
}
.unit_sitemaplist a:visited, .unit_sitemaplist a:link {
    color: #005bab;
}
.unit_sitemaplist a:hover {}
/*  スマホ時　文字色  */
@media (max-width: 1024px) { /* スマホ用  */
    .unit_sitemaplist a:visited, .unit_sitemaplist a:link {
        color: #595757;
        text-decoration: none;
    }
    .unit_sitemaplist > li {
        margin: 0 auto;
    }
    .unit_sitemaplist > li span {
        border-left: none;
        text-align: center;
    }
    .unit_sitemaplist > li > ul > li a:before {
        content: none;
    }
    .unit_sitemaplist a:hover {
        color: #005bab;
        font-weight: bold;
        transition: 0.5s;
    }
    .unit_sitemaplist ul > li a {
        display: block;
        margin: 0 auto;
        font-size: 1em;
    }
}
/*  スマホ時　アコーディオンリスト ul  */
@media (max-width: 1024px) { /* スマホ用  */
    .unit_sitemaplist {
        display: block;
    }
    .unit_sitemaplist > li {
        padding: 0;
        width: 100%;
    }
    .unit_sitemaplist > li > p, .unit_sitemaplist > li > ul {
        display: block;
        overflow: hidden;
        float: none;
        width: auto;
        margin: 0;
        padding: 15px 0;
    }
    .unit_sitemaplist > li > ul li {
        width: calc(50% - 2em);
        margin: 20px 2em 0 0;
    }
    .unit_sitemaplist > li > ul { /*項目メニュー*/
        padding-bottom: 30px;
        padding-left: 30px;
        background-color: white;
    }
    .unit_sitemaplist > li > ul li a, .unit_sitemaplist > li > ul li a:link, .unit_sitemaplist > li > ul li a:visited {
        color: #426AB1; /*濃青*/
    }
    .unit_sitemaplist ul > li a:after { /*リストマーク*/
        background-color: #426AB1; /*濃青*/
    }
    /*　アクティブ状態設定　*/
    .unit_sitemaplist > li.active p a {
        font-weight: bold;
    }
    .unit_sitemaplist > li > ul li.active a {
        font-weight: bold;
        color: #F09266; /*sf用濃オレンジ*/
    }
    .unit_sitemaplist > li > ul li.active a:after { /*リストマーク*/
        background-color: #F09266; /*sf用濃オレンジ*/
    }
    .unit_sitemaplist .smp_index { /*jqで追加される目次*/
        width: 95%;
        border-bottom: #bbd3e6 1px solid;
        padding-bottom: 5px;
        display: none; /*レスポンシブ時に表示される目次を消す*/
    }
    .unit_sitemaplist > li {
        border-bottom: 1px solid #efefef;
    }
}
/*  スマホ時　アコーディオンリスト ul  */
@media (max-width: 599px) { /* スマホ用  */
    .unit_sitemaplist .smp_index { /*jqで追加される目次*/
        display: none; /*レスポンシブ時に表示される目次を消す*/
    }
    .unit_sitemaplist > li {
        margin: 0 auto;
    }
}
/* アコーディオンリストボタン */
a.js_accordion_btn /*,
a.js_accordion_btn:link,a.js_accordion_btn:visited*/ {
    display: inline-block;
    width: 3em;
    margin: 0 3px;
    margin-bottom: 5px;
    padding: 5px 0;
    text-align: center;
    box-shadow: 0px 2px 0px 0 rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
    line-height: 1em;
    vertical-align: middle;
    color: white;
    background-color: #7BA0C2; /*紺*/
    /*	border-radius: 3px;
*/
}
a.js_accordion_btn:hover {
    color: white;
    background-color: #6586A3; /*濃紺*/
    text-decoration: none;
    cursor: pointer;
}
.js_accordion_btn.active {
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.4) inset;
}
/* アコーディオンリストボタン 灰色-リンク設定前 */
span.js_accordion_btn2 /*,
a.js_accordion_btn:link,a.js_accordion_btn:visited*/ {
    display: inline-block;
    width: 3em;
    margin: 0 3px;
    margin-bottom: 5px;
    padding: 5px 0;
    text-align: center;
    box-shadow: 0px 2px 0px 0 rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
    line-height: 1em;
    vertical-align: middle;
    color: white;
    background-color: #c5cbd0; /*紺*/
    border-radius: 3px;
}
/* アコーディオンリストボタン　お知らせ用(オレンジ) */
a.js_accordion_btn_oshirase /*,
a.js_accordion_btn:link,a.js_accordion_btn:visited*/ {
    display: inline-block;
    width: 3em;
    margin: 0 3px;
    margin-bottom: 5px;
    padding: 5px 0;
    text-align: center;
    box-shadow: 0px 2px 0px 0 rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
    line-height: 1em;
    vertical-align: middle;
    color: white;
    background-color: #7BA0C2; /*オレンジ*/
    border-radius: 3px;
}
a.js_accordion_btn:hover_oshirase {
    color: white;
    background-color: #6586A3; /*濃紺*/
    text-decoration: none;
    cursor: pointer;
}
.js_accordion_btn.active_oshirase {
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.4) inset;
}
/*--------------------------
　　　　　　目次ボタン
----------------------------*/
.unit_btn_subcontents {
    /* 余白を撤去 */
    margin: 0;
    padding: 0;
    margin-right: -1%; /*端のリスト間用余白を撤去*/
    margin-bottom: -20px;
    margin-left: 1%;
    /* リストマークを削除 */
    list-style-type: none;
    /* 中のliを左右センタリング */
    text-align: left;
}
.unit_btn_subcontents li {
    display: inline;
}
.unit_btn_subcontents a {
    /* liのdisplayの設定 inline-block/block/boxのいずれか */
    display: inline-block; /*IE6,7対象外*/
    /* liの高さと幅を設定する */
    padding: 0;
    width: 31.5%;
    height: 100px;
    margin: 1px 1% 21px 1px; /*枠切れ防止用+1px*/
    /* liの中のline-heightをliの高さにしてのa(inline-block)を上下中央に置く */
    text-align: center;
    line-height: 100px;
    vertical-align: middle;
    background-color: white;
    background: url('../image/common/bg-indexlist-arrow.png'), -moz-linear-gradient(bottom, rgba(123, 160, 194, 1) 0, rgba(123, 160, 194, 1) 5px, rgba(123, 160, 194, 0) 6px), /*上部ボーター*/ -moz-linear-gradient(bottom, white, #e2f2f9);
    background: url('../image/common/bg-indexlist-arrow.png'), -webkit-linear-gradient(bottom, rgba(123, 160, 194, 1) 0, rgba(123, 160, 194, 1) 5px, rgba(123, 160, 194, 0) 6px), /*上部ボーター*/ -webkit-linear-gradient(bottom, white, #e2f2f9);
    background: url('../image/common/bg-indexlist-arrow.png'), linear-gradient(to bottom, rgba(123, 160, 194, 1) 0, rgba(123, 160, 194, 1) 5px, rgba(123, 160, 194, 0) 6px), /*上部ボーター*/ linear-gradient(to bottom, white, #e2f2f9);
    background-position: center bottom;
    background-repeat: no-repeat;
    color: #3A3A3A; /*darkgray text*/
    /*外枠*/
    /*border:1px #C6C6C6 solid;*/ /*middle gray*/
    box-shadow: 0 0 0 1px #C6C6C6, 0 0 0 1px white inset;
}
.unit_btn_subcontents a:hover {
    background: url('../image/common/bg-indexlist-arrow-hover.png'), -moz-linear-gradient(bottom, rgba(123, 160, 194, 1) 0, rgba(123, 160, 194, 1) 5px, rgba(123, 160, 194, 0) 6px), /*上部ボーター*/ -moz-linear-gradient(bottom, #e2f2f9, white);
    background: url('../image/common/bg-indexlist-arrow-hover.png'), -webkit-linear-gradient(bottom, rgba(123, 160, 194, 1) 0, rgba(123, 160, 194, 1) 5px, rgba(123, 160, 194, 0) 6px), /*上部ボーター*/ -webkit-linear-gradient(bottom, #e2f2f9, white);
    background: url('../image/common/bg-indexlist-arrow-hover.png'), linear-gradient(to bottom, rgba(123, 160, 194, 1) 0, rgba(123, 160, 194, 1) 5px, rgba(123, 160, 194, 0) 6px), /*上部ボーター*/ linear-gradient(to bottom, #e2f2f9, white);
    background-position: center bottom;
    background-repeat: no-repeat;
    color: #426AB1; /*darkblue text*/
}
.unit_btn_subcontents a span.wrapper {
    /* aをインラインボックス属性にする */
    display: inline-block;
    /* aの中のテキストのline-heightを1emに戻す */
    line-height: 1.3em;
    font-size: 1.3em;
    font-weight: normal;
    vertical-align: middle;
    margin: auto auto;
    padding: 0 10px;
}
ul.unit_btn_subcontents a span.subtext {
    display: inline;
    font-size: 0.7em;
}
/* スマートフォン用 */
@media (max-width: 595px) {
    .unit_btn_subcontents a {
        width: 48%;
    }
}
@media (max-width: 599px) {
    .unit_btn_subcontents {
        margin-right: 0;
    }
    .unit_btn_subcontents a {
        width: 100%;
    }
}
/**/
/* --------------------------------------------------
	外部リンクボタンリスト
-------------------------------------------------- */
ul.unit_linkbtn {}
ul.unit_linkbtn {
    /* 余白を撤去 */
    margin: 0;
    padding: 0;
    /* リストマークを削除 */
    list-style-type: none;
    /* 中のliを左右センタリング */
    /*text-align:center;*/
}
ul.unit_linkbtn li {
    display: inline;
}
ul.unit_linkbtn a:before {
    content: url('../image/common/icon-link.png');
}
ul.unit_linkbtn a {
    /* liのdisplayの設定 inline-block/block/boxのいずれか */
    display: inline-block; /*IE6,7対象外*/
    /* liの高さと幅を設定する */
    padding: 0;
    width: 31.5%;
    height: 50px;
    margin: 1px 1% 21px 0;
    /* liの中のline-heightをliの高さにしてのa(inline-block)を上下中央に置く */
    text-align: center;
    line-height: 50px;
    vertical-align: middle;
    background-color: white;
    color: #3A3A3A; /*darkgray text*/
    /*外枠*/
    /*border:1px #C6C6C6 solid;*/ /*middle gray*/
    box-shadow: 0 0 0 1px #C6C6C6, 0 0 0 1px white inset;
}
ul.unit_linkbtn a:hover {
    background-color: #E2F2F9; /*水色*/
}
ul.unit_linkbtn a span.wrapper {
    /* aをインラインボックス属性にする */
    display: inline-block;
    /* aの中のテキストのline-heightを1emに戻す */
    line-height: 1em;
    /*font-size:1.3em;*/
    font-weight: normal;
    vertical-align: middle;
    margin: auto auto;
    padding: 0 10px;
}
/* スマートフォン用 */
@media (max-width: 595px) {
    ul.unit_linkbtn a {
        width: 48%;
    }
}
@media (max-width: 599px) {
    ul.unit_linkbtn a {
        width: 100%;
    }
}
/*--------------------------
　　　　　　１列パネル
----------------------------*/
.contents_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    justify-content: center;
    margin: 0 auto;
}
.contents_wrapper a {
    width: 100%;
    height: 200px;
    color: #111;
    background-position: center;
    background-size: cover;
    border-radius: 0;
    margin: 0;
}
.contents_wrapper a:first-of-type {
    background-image: url("../image/sitetop/bg-about.jpg");
}
.contents_wrapper a:hover div {
    color: #111;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 10px 0 rgb(255, 255, 255, 30%);
    transition: 1s;
}
.contents_wrapper a:active {
    color: #111;
}
.contents_wrapper a:visited {
    color: #111;
}
.contents_wrapper div {
    position: relative;
    font-size: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /*    border: 1px solid rgb(0,0,0, 10%);
*/ box-shadow: 0 8px 10px 0 rgb(0, 0, 0, 30%);
    font-weight: 400;
    height: 200px;
}
.contents_wrapper div div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.contents_wrapper div div p {
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 5px darkgray, 0 0 5px black, -1px -1px 5px black;
    letter-spacing: 0.1em;
}
.contents_wrapper div div p span {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
    .contents_wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 0;
        flex-direction: column;
    }
    .contents_wrapper a {
        width: 100%;
        margin: 0;
    }
    .contents_wrapper a::after {
        content: url(https://icongr.am/feather/chevron-right.svg?size=28&color=000000);
        position: relative;
        top: -62px;
        left: 35%;
    }
    .contents_wrapper div {
        width: 100%;
        top: 0;
        font-size: 21px;
        padding: 0;
        margin: 0 auto;
    }
    .contents_wrapper a:hover div {
        box-shadow: none;
    }
}
/*--------------------------
　　　　　　3列パネル
----------------------------*/
.contents_wrapper2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}
.contents_wrapper2 a {
    width: calc(33.3% - 40px);
    height: 200px;
    color: #111;
    background-position: center;
    background-size: cover;
    border-radius: 0;
    margin: 20px 20px;
}
.contents_wrapper2 a:first-of-type {
    background-image: url("../image/sitetop/img-contents-01.jpg");
}
.contents_wrapper2 a:nth-of-type(2) {
    background-image: url("../image/sitetop/img-contents-02.jpg");
}
.contents_wrapper2 a:nth-of-type(3) {
    background-image: url("../image/sitetop/img-contents-03.jpg");
}
.contents_wrapper2 a:nth-of-type(4) {
    background-image: url("../image/sitetop/img-contents-04.jpg");
}
.contents_wrapper2 a:nth-of-type(5) {
    background-image: url("../image/sitetop/img-contents-05.jpg");
}
.contents_wrapper2 a:nth-of-type(6) {
    background-image: url("../image/sitetop/img-contents-06.jpg");
}
.contents_wrapper2.tec a:first-of-type {
    background-image: url("../image/sitetop/img-contents-09.jpg");
}
.contents_wrapper2.tec a:nth-of-type(2) {
    background-image: url("../image/sitetop/img-contents-08.jpg");
}

.contents_wrapper2 a:hover div {
    color: #111;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 10px 0 rgb(255, 255, 255, 30%);
    transition: 1s;
}
.contents_wrapper2 a:active {
    color: #111;
}
.contents_wrapper2 a:visited {
    color: #111;
}
.contents_wrapper2 div {
    position: relative;
    font-size: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 10px 0 rgb(0, 0, 0, 30%);
    font-weight: 400;
    height: 200px;
}
.contents_wrapper2 div div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    text-align: left;
}
.contents_wrapper2 div div p {
    margin: 0 0 10px 20px;
    color: #fff;
    text-shadow: 1px 1px 5px darkgray, 0 0 5px black, -1px -1px 5px black;
    letter-spacing: 0.1em;
}
.contents_wrapper2 div div p span {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
    /* 3列パネル（白色） */
    .contents_wrapper2 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 10px;
        flex-direction: column;
    }
    .contents_wrapper2 a {
        width: 100%;
        margin: 0;
    }
    .contents_wrapper2 div {
        width: 100%;
        top: 0;
        font-size: 21px;
        padding: 0;
        margin: 0 auto;
    }
    .contents_wrapper2 a:hover div {
        box-shadow: none;
    }
}
/*--------------------------
　　　　　　3列余白無
----------------------------*/
.contents_wrapper3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    justify-content: center;
    margin: 0 auto;
}
.contents_wrapper3 a {
    width: 33.3%;
    height: 200px;
    color: #111;
    background-position: center;
    background-size: cover;
    border-radius: 0;
    margin: 0;
}
.contents_wrapper3 a:first-of-type {
    background-image: url("../image/sitetop/img-about-01.jpg");
}
.contents_wrapper3 a:nth-of-type(2) {
    background-image: url("../image/sitetop/img-about-02.jpg");
}
.contents_wrapper3 a:nth-of-type(3) {
    background-image: url("../image/sitetop/img-about-03.jpg");
}
.contents_wrapper3 a:hover div {
    color: #111;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 10px 0 rgb(255, 255, 255, 30%);
    transition: 1s;
}
.contents_wrapper3 a:active {
    color: #111;
}
.contents_wrapper3 a:visited {
    color: #111;
}
.contents_wrapper3 div {
    position: relative;
    font-size: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /*    border: 1px solid rgb(0,0,0, 10%);
*/ box-shadow: 0 8px 10px 0 rgb(0, 0, 0, 30%);
    font-weight: 400;
    height: 200px;
}
.contents_wrapper3 div div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    text-align: left;
}
.contents_wrapper3 div div p {
    margin: 0 0 10px 20px;
    color: #fff;
    text-shadow: 1px 1px 5px darkgray, 0 0 5px black, -1px -1px 5px black;
    letter-spacing: 0.1em;
}
.contents_wrapper3 div div p span {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
    /* 3列パネル余白無し */
    .contents_wrapper3 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 0;
        flex-direction: column;
    }
    .contents_wrapper3 a {
        width: 100%;
        margin: 0;
    }
    .contents_wrapper3 a::after {
        content: url(https://icongr.am/feather/chevron-right.svg?size=28&color=000000);
        position: relative;
        top: -62px;
        left: 35%;
    }
    .contents_wrapper3 div {
        width: 100%;
        top: 0;
        font-size: 21px;
        padding: 0;
        margin: 0 auto;
    }
    .contents_wrapper3 a:hover div {
        box-shadow: none;
    }
}
.sitetop_about_info {
    padding: 50px 0;
    margin-bottom: 0;
}
@media (max-width: 599px) {
    .sitetop_about_info {
        padding: 20px 0;
        margin-bottom: 0;
    }
}

/*--------------------------
　　　　　　ツリー構造
----------------------------*/
/* 組織図 */
.sitemap > ul > li ul {
    margin-top: .5em;
    margin-bottom: .75em;
    margin-left: 48px;
}
.sitemap > ul > li ul li {
    margin-bottom: .25em;
    position: relative;
}
.sitemap > ul > li ul li::before {
    content: "";
    position: absolute;
    top: -0.5em;
    left: -16px;
    width: 10px;
    height: calc(100% + .75em);
    border-left: 1px solid #3972b2;
}
.sitemap > ul > li ul li.one::before {
    height: calc(1em + 8.5em);
}
.sitemap > ul > li ul > li > ul li.one::before {
    height: calc(1em + .25em);
}
.sitemap > ul > li ul:last-child li.one::before {
    height: calc(1em + .25em) !important;
}
.sitemap > ul > li ul li:last-child::before {
    height: calc(1em + .25em) !important;
}
.sitemap > ul > li ul li::after {
    content: "";
    position: absolute;
    top: .75em;
    left: -16px;
    width: 10px;
    border-bottom: 1px solid #3972b2;
}
/* 組織図、診療科一覧の上に線の画像を追加 */
.sitemap.block02, .sitemap.block03 {
    margin-top: 80px;
}
.sitemap.block02 {
    position: relative;
}
.sitemap.block02:before {
    content: url("../image/img-soshiki-border-hojyo.png");
    position: absolute;
    top: -18px;
    left: -94px;
}
.bpts_flexbox_noblock.scroll-x {
    font-size: .9em;
    color: #232323;
    margin: 0 auto;
    width: 98%; /* コンテンツが見切れて見えるようにする */
    overflow-x: auto; /* 横スクロールの指定 */
    white-space: nowrap; /* 横スクロールの指定 */
    overflow-scrolling: touch; /* スクロールを滑らかにする */
    -webkit-overflow-scrolling: touch; /* スクロールを滑らかにする */
    /*border: 1px solid #A7A7A7;*/
    padding: 10px;
}
.sp_hyouji {
    display: none;
}
@media (max-width: 1200px) {
.sitemap > ul > li ul li.one::before {
    height: 14em;
}	
    .sp_hyouji {
        display: inline-block;
        background: #FFCBCC;
        font-weight: bold;
    }
}
.sp_hyouji {
    display: none;
}
@media (max-width: 1200px) {
    .sp_hyouji {
        display: inline-block;
        background: #FFCBCC;
        font-weight: bold;
    }
}
/* 項目の色 */
span.l_color01 {
    width: calc(376px - 20px);
    text-align: center;
    background: #005bab;
    color: #fff;
    display: inline-block;
    border-radius: 1px;
    padding: 0 10px;
    margin: 0;
}
span.l_color02 {
    width: calc(340px - 20px);
    text-align: center;
    background: #ededed;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 1px;
    padding: 0 10px;
    margin: 0;
}
span.l_color03 {
    width: 286px;
    text-align: left;
    background: #f3f7fb;
    display: inline-block;
    border: 1px solid #99bddd;
    border-radius: 1px;
    padding: 0 10px;
    margin: 0;
}
@media (max-width: 1200px) {
/* 項目の色 */
span.l_color01 {
    width: 310px;
    text-align: center;
    background: #005bab;
    color: #fff;
    display: inline-block;
    border-radius: 1px;
    padding: 0 10px;
    margin: 0;
}
span.l_color02 {
    width: 260px;
}
span.l_color03 {
    width: 213px;
}
}