@charset "UTF-8";

/* CSS Document */


/* GENERAL */

html,
body {
    width: 100%;
    height: 100%;
    background-color: #FFF5F2;
}

body {
    color: #000;
    font: 14px/1.5 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    width: 100%;
    height: 100%;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

a {
    color: #444;
    text-decoration: none;
    transition: .3s;
}

a:hover {
    transition: .3s;
}

a img {
    vertical-align: top;
}

a {
    outline: none;
}

.underline {
    text-decoration: underline;
}


/*
a img:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
}
*/

li {
    list-style: none;
}


/* CLEARFIX */

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li {
    margin: 0;
    padding: 0;
}

.gotop {
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    background: #E4878A;
    border-radius: 100%;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 85%;
    text-decoration: none;
    color: #fff;
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 10000;
    transition: .3s;
}

.gotop::before {
    content: "";
    display: block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}

.body_wrap {
    max-width: 1200px;
    background-color: #fff;
}

@media screen and (min-width: 600px) {
    .body_wrap {
        display: flex;
        min-height: 959px;
        margin: 0 auto;
    }
    .gotop:hover {
        opacity: 1;
        background-color: #666;
        transition: .3s;
    }
}

@media(max-width:599px) {
    .gotop {
        width: 40px;
        height: 40px;
        text-indent: 0;
        opacity: 1;
        border: none;
        background: none;
        bottom: 20px;
        right: 50px;
        padding-top: 35px;
        color: #333;
    }
    .gotop::before {
        bottom: 0;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
    }
    .body_wrap {
        margin: 10px;
    }
}


/* ------------------------------------------
LAYOUTs
------------------------------------------ */

h1 {
    font-size: 50px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 28px;
    line-height: 1.3;
}

.bold {
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

.bold {
    font-weight: 600 !important;
}

.top_title {
    max-width: 1000px;
    margin: 2em auto;
}

.top_title img {
    width: 100%;
}

@media screen and (max-width: 599px) {
    .top_title {
        margin: 1em auto;
    }
}


/* ------------------------------------------
ナビゲージョン
------------------------------------------ */

nav {
    width: 100%;
    height: 0;
    position: relative;
    z-index: 10;
}

.drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 1em;
}


/*ナビゲーション部分*/

.menu ul {
    list-style: none;
}

.menu ul li {
    text-align: left;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.nav_mark {
    display: inline-block;
    color: #E4878A;
    background-color: #fff;
    width: 20px;
    height: 21px;
    line-height: 21px;
    font-size: 13px;
    padding-left: 0.1em;
    border-radius: 50%;
    text-align: center;
    margin-right: 0.5em;
}

.menu ul li a {
    display: flex;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.menu {
    text-align: center;
    transition: 0.5s ease;
    z-index: 100;
    /*滑らかに表示*/
    -webkit-transform: translateX(-150%);
    /*画面より100%外へ押し出し非表示にさせる*/
    /*  transform: translateX(-100%);/*右から出す場合は、マイナス100%としてください*/
}


/*OPEN時の動き*/

.menu.open {
    position: fixed;
    top: 23%;
    transition: 0.5s;
    /*メニューを元の位置へ戻す*/
}

.manu_back {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    /* 透明度を0にすることで隠す */
    transition: 0.5s;
    /* 透明度の0→1になる速度 */
}

.manu_back.open {
    width: 100vw;
    height: 100vh;
    opacity: 1;
    transition: 0.5s;
    pointer-events: auto;
}


/*トグルボタンのスタイルを指定*/

.Toggle {
    display: block;
    position: fixed;
    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    bottom: 20px;
    left: 50px;
}

.Toggle span {
    display: block;
    position: absolute;
    width: 33px;
    border-bottom: solid 2px #333;
    -webkit-transition: .35s ease-in-out;
    /*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;
    /*変化の速度を指定*/
    transition: .35s ease-in-out;
    /*変化の速度を指定*/
}


/*各ボーダー少しずつずらす*/

.Toggle span:nth-child(1) {
    top: 16px;
}

.Toggle span:nth-child(2) {
    top: 23px;
}

.Toggle span:nth-child(3) {
    top: 31px;
}

.Toggle p {
    top: 20px;
    width: 50px;
    font-size: 6px;
    border-bottom: none;
    color: #000;
}

@media screen and (max-width: 599px) {
    .Toggle p {
        position: fixed;
        font-size: 11px;
        top: unset;
        bottom: 0;
        height: 25px;
    }
}

@media screen and (min-width: 600px) {
    .nav_live {
        border: 2px solid #71af32;
    }
    .nav_syouroku {
        border: 2px solid #E4878A;
    }
}

@media screen and (max-width: 599px) {
    .nav_live {
        border: 2px solid #fff;
    }
}

.nav_live {
    margin: 10px auto;
    padding: 20px 10px;
    display: block;
    text-align: center;
    border-radius: 5px;
    background: #71af32;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.nav_live:hover {
    background: #fff;
    color: #71af32;
}

.nav_syouroku {
    border: 2px solid #fff;
}

.nav_syouroku {
    margin: 10px auto;
    padding: 10px;
    display: block;
    text-align: center;
    border-radius: 5px;
    background: #E4878A;
    color: #fff;
}

.nav_syouroku:hover {
    background: #fff;
    color: #E4878A;
}


/*----------------------------------ここからPCモニターの記述-----------*/

@media screen and (min-width: 600px) {
    .Toggle {
        display: none;
    }
    .menu {
        width: 220px;
        font-size: 0.9em;
        background-color: transparent;
        margin: 0 20px -webkit-transform: translateX(0);
        transform: translateX(0);
        text-align: left;
    }
    .menu ul {
        background-color: #E4878A;
    }
    .menu ul li a {
        text-align: left;
        padding: 1.5em 1em;
        transition: .3s;
        color: #fff;
    }
    .menu ul li a:hover {
        background-color: #fff;
        color: #E4878A;
    }
    header {
        width: 220px;
    }
}

.pc_nav {
    padding: 10px;
}

.pc_nav_info h5 {
    background: #E4878A;
    color: #fff;
    font-size: 14px;
    padding: 5px;
    margin-bottom: 5px;
}

.pc_nav_info p {
    margin-bottom: 20px;
}


/*----------------------------------ここまでPCモニターの記述-----------*/

@media screen and (max-width: 599px) {
    nav {
        z-index: 100;
    }
    .menu ul {
        position: fixed;
        top: 50%;
        width: 50vw;
        height: 60vh;
        overflow: auto;
        background-color: #E4878A;
        color: #fff;
    }
    .menu ul li a {
        color: #fff;
    }
}

.video {
    display: block;
    margin: 20px auto;
    border: 2px solid #E4878A;
    border-radius: 5px;
    padding: 10px;
}

.video:hover {
    opacity: 0.5;
}

.video img {
    width: 40px;
    margin-right: 10px;
}

#video {
    display: none;
}

iframe {
    width: 100%;
    text-align: center;
}

.poster_btn {
    display: block;
    background: #E6C232;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    margin: 20px auto;
}

@media screen and (min-width: 600px) {
    .modaal-container {
        max-width: 1000px !important;
        height: 500px;
        padding: 10px;
    }
}

@media screen and (max-width: 599px) {
    .modaal-container {
        height: 300px !important;
        padding: 10px;
    }
    .modaal-content-container {
        padding: 10px;
    }
    .sp_video {
        background-color: #fff;
        text-align: center;
    }
}

.poster_btn:hover {
    background: #ccc;
}

.click_none {
    pointer-events: none;
}

.menu ul .on a {
    background-color: #fff;
    color: #E4878A;
    pointer-events: none;
}

.menu ul .on a .nav_mark {
    background: #E4878A;
    color: #fff;
}

.side_info {
    color: #fff;
    width: 190px;
    margin: 20px auto;
}

.side_info a {
    color: #fff;
    text-decoration: underline;
}

.menu ul .side_info a:hover {
    opacity: 0.5;
    border: none;
}

.side_info h5 {
    background-color: #fff;
    color: #12A0AC;
    text-align: left;
    padding: 5px;
    font-size: 14px;
    margin-bottom: 10px;
}

.side_info p {
    font-size: 13px;
}

.side_info .poster_text {
    font-size: 12px;
    text-align: left;
}

@media screen and (max-width: 599px) {
    .side_info {
        width: 90%;
        margin: 20px auto;
    }
}

@media screen and (min-width: 600px) {
    .pcnone {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    .spnone {
        display: none !important;
    }
}


/* ------------------------------------------
フッター
------------------------------------------ */

footer {
    background-color: #E4878A;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 100;
}

.copy {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
}

@media screen and (max-width: 599px) {
    footer {
        padding-bottom: 60px;
    }
}

.red {
    color: #E60012;
}

.red_border {
    color: #E60012;
    text-decoration: underline;
    font-weight: 600;
}

.text_right {
    margin-top: 20px;
    text-align: right;
}

.sp_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #E6E6E6;
}

.text_center {
    text-align: center;
}


/* ------------------------------------------
トップページコンテンツ
------------------------------------------ */

.top_visual img {
    width: 100%;
}

.top_endai {
    padding: 30px;
}

.top_endai p {
    text-align: center;
    background-color: #E6C232;
    padding: 10px;
    font-weight: 600;
    font-size: 22px;
}

.top_endai p span {
    font-weight: 500;
    font-size: 14px;
}

.top_endai .kikan {
    font-size: 16px;
}

@media screen and (max-width: 599px) {
    .top_endai p {
        font-size: 20px;
    }
    .top_endai .kikan {
        font-size: 14px;
    }
}

@media screen and (min-width: 600px) {
    .l-main_wrapper {}
    .top_wrapper {
        margin-top: 0;
    }
}

@media screen and (max-width: 599px) {
    .l-main_wrapper {
        margin-top: 0;
    }
}

.sns {
    padding: 0 30px 30px 30px;
}

.sns h4 {
    margin: 0 auto;
    padding: 10px 10px 10px 0;
    color: #E4878A;
    border-bottom: 2px solid #E4878A;
    font-size: 20px;
    font-weight: 600;
}

.sns ul {
    margin: 1em auto;
    display: flex;
}

.sns li {
    text-align: center;
    width: 100px;
    padding: 1em;
    transition: .5s;
}

.sns li:hover {
    opacity: 0.5;
    transition: .5s;
}

.sns li img {
    width: 70px;
}

.sns li p {
    padding-top: 10px;
    font-weight: 600;
}

@media screen and (max-width: 599px) {
    .sns li {
        width: calc(100% / 3);
    }
    .sns li img {
        width: 50px;
    }
}


/* ------------------------------------------
新着情報
------------------------------------------ */

.news {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 30px 30px 30px;
}

.news_container ul {
    padding: 10px 0;
    max-height: 600px;
    overflow: auto;
}

.news_container ul li {
    border-bottom: 1px dashed #999;
}

@media screen and (min-width: 600px) {
    .news {
        padding-bottom: 70px;
    }
}

.news_container ul li:last-child {
    border-bottom: none;
}

.news-title {
    margin: 0 auto;
    padding: 10px 10px 10px 0;
    color: #E4878A;
    border-bottom: 2px solid #E4878A;
    font-size: 20px;
    font-weight: 600;
}

.news_content {
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap
}

span.day {
    width: 130px;
    letter-spacing: 3px;
}

.news_content p {
    width: calc(100% - 160px);
}

.news_content a {
    text-decoration: underline;
}

.news_content a:hover {
    text-decoration: none;
}

@media screen and (max-width: 599px) {
    .news_container ul {
        padding: 10px 0;
        max-height: 250px;
    }
    .news_content {
        flex-wrap: wrap;
        padding: 10px;
    }
    span.day {
        display: block;
    }
    .news_content p {
        margin-top: 5px;
        width: 100%;
    }
    .sp_nav_info {
        background-color: #E4878A;
        padding: 20px;
    }
    .bottom_info {
        margin: 20px auto;
    }
    .bottom_info h5 {
        font-size: 14px;
        background-color: #fff;
        color: #E4878A;
        padding: 5px;
        margin-bottom: 10px;
    }
    .bottom_info p {
        color: #fff;
    }
    .bottom_info a {
        text-decoration: underline;
        color: #fff;
    }
}

.sp_home {
    position: fixed;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 85%;
    display: grid;
    justify-items: center;
}

.sp_home img {
    width: 30px;
}


/* ------------------------------------------
サブページcommon
------------------------------------------ */

.sub_wrapper {
    padding: 2em;
}

.sub_title img {
    width: 100%;
}

.sub_wrapper h2 {
    margin-top: 20px;
    border-left: 8px solid #E4878A;
    padding-left: 0.5em;
    color: #E4878A;
    font-size: 28px;
}

.sub {
    padding: 2em 0;
}

.sub_con {
    padding: 1em 0;
}

.sub_con h3 {
    background: #E4878A;
    color: #fff;
    padding: 0.5em 1em;
    font-size: 18px;
    border-radius: 10px;
}

.sub_con h3 span {
    font-size: 14px;
    margin-left: 0.5em;
}

@media screen and (min-width: 600px) {
    .top_wrapper {
        width: calc(100% - 220px);
        min-height: 1350px;
    }
    .sub_wrapper {
        width: calc(100% - 220px);
        min-height: 1350px;
    }
}

@media screen and (max-width: 599px) {
    .sub_wrapper h2 {
        font-size: 22px;
    }
}


/* ------------------------------------------
会長挨拶
------------------------------------------ */

.greeting_person {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.greeting_person p {
    text-align: right;
    font-size: 20px;
    margin-right: 1em;
}

.greeting_person p span {
    text-align: right;
    font-size: 15px;
}

.greeting_person img {
    width: 150px;
}

.greeting_text {
    margin: 2em auto;
    line-height: 2;
}

@media screen and (max-width: 599px) {
    .greeting_person img {
        width: 110px;
    }
    .greeting_img li {
        width: 48%;
        margin-bottom: 4%;
    }
}


/* ------------------------------------------
開催概要
------------------------------------------ */

.info_dl {
    display: flex;
    flex-wrap: wrap;
}

.info_dl dt {
    width: 150px;
}

.info_dl dd {
    width: calc(100% - 150px);
}

.info_dl dd a {
    color: #666;
    text-decoration: underline;
}

.info_dl dd a:hover {
    text-decoration: none;
}

.info_dl dt,
.info_dl dd {
    border-bottom: 1px solid #E6E6E6;
    padding: 1.5em 0;
}

@media screen and (max-width: 599px) {
    .info_dl dt,
    .info_dl dd {
        width: 100%;
    }
    .info_dl dt {
        border: none;
        text-align: center;
        padding-bottom: 0;
    }
}


/* ------------------------------------------
会場案内
------------------------------------------ */

.access_bold {
    font-size: 20px;
    font-weight: 600;
}

.access_ul {
    margin: 1em auto;
}

.access_ul li::before {
    content: '○';
}

.access_ul li a {
    text-decoration: underline;
}

.access_ul li a:hover {
    text-decoration: none;
}

.map {
    width: 100%;
}

.floamap {
    margin: 2em auto;
    max-width: 600px;
}

.floamap img {
    width: 100%;
}


/* ------------------------------------------
プログラム
------------------------------------------ */

.program_list {
    margin: 3em auto 5em;
    width: 90%;
}

.program_list h4 {
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #E4878A;
    border-bottom: 1px solid #E4878A;
    padding-bottom: 0.2em;
}

.program_list h4::before {
    content: '';
    display: inline-block;
    background: url(../images/mark.svg) no-repeat center;
    background-size: contain;
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.teiin_info {
    font-size: 16px;
    color: #E4878A;
}

.program_list h5 {
    font-size: 18px;
    margin: 1em auto;
}

.program_list h6 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.teiinn_list {
    margin-bottom: 2em;
}

.teiinn_list h5 {
    margin: 1em 0 0;
}

.program_btn {
    width: 100%;
    background: #E6C232;
    text-align: center;
    color: #000;
    font-weight: 600;
    display: block;
    padding: 1em;
    font-size: 16px;
    border-radius: 100px;
}

.program_btn:hover {
    background: #ccc;
}

.program_list h6 {
    margin-top: 1em;
}


/* ------------------------------------------
演題登録
------------------------------------------ */

.cfa_list {
    margin-bottom: 2em;
}

.cfa_list_con {
    padding: 1em 0;
}

.cfa_list_con p a {
    text-decoration: underline;
    color: #666;
}

.cfa_list_con p a:hover {
    text-decoration: none;
}

.cfa_con_list {
    padding: 0.5em 0;
    text-indent: -1em;
    padding-left: 1em;
}

.template_btn {
    display: block;
    color: #FFF;
    background: #60B630;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    margin: 1em auto;
    text-align: center;
    padding: 1em;
    font-weight: 600;
    font-size: 18px;
}

.template_btn:hover {
    background: #ccc;
}

.endai_btn,
.schedule_btn {
    display: block;
    background: #E6C232;
    border-radius: 100px;
    max-width: 400px;
    margin: 2em auto;
    text-align: center;
    padding: 1em;
    font-weight: 600;
    font-size: 18px;
}

.endai_btn:hover,
.schedule_btn:hover {
    background: #ccc;
}


/* ------------------------------------------
参加者へのご案内
------------------------------------------ */

.sanka_about_li {
    margin-bottom: 3em;
}

.sanka_about_li h3 {
    margin-bottom: 1em;
}

.sanka_about_li p {
    padding: 0.5em 0;
}

.sanka_about_subul {
    margin: 1em 0;
}

.sanka_about_subul li {
    padding: 1em 0 2em;
}

.sanka_about_subul li h4 {
    font-size: 17px;
    text-indent: -1.7em;
    padding-left: 1.7em;
    padding-bottom: 5px;
    border-bottom: 1px solid #E4878A;
}

.sanka_about_subul li p {
    padding: 1em 0;
}

.uketsuke_table {
    margin: 1em 0;
}

.uketsuke_table th,
.uketsuke_table td {
    padding: 1em;
}

.uketsuke_table th {
    text-align: center;
    background: #FFF5F2;
    color: #E4878A;
}

.uketsuke_table .pinkback {
    background: #FFF5F2;
}

.uketsuke_table .title {
    color: #E4878A;
    font-weight: 600;
}

.uketsuke_table .right {
    text-align: right;
}

.sanka_about_subul li ul li {
    padding: 0.5em 0;
    padding-left: 1em;
    text-indent: -1em;
}

.workshop_table th,
.workshop_table td {
    padding: 10px;
}

.workshop_table th {
    text-align: center;
    background: #FFF5F2;
    color: #E4878A;
}

.workshop_table .center {
    text-align: center;
}

.sanka_btn {
    display: block;
    max-width: 500px;
    background: #E4878A;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 2em 0;
    padding: 1.5em 1em;
    border-radius: 100px;
}

.sanka_btn:hover {
    background: #999;
}

.workname {
    min-width: 120px;
}


/* ------------------------------------------
座長・演者へのご案内
------------------------------------------ */

.enzya_about_subul {
    margin: 1em 0;
}

.enzya_about_subul li {
    padding: 1em 0 2em;
}

.enzya_about_subul li h4 {
    font-size: 17px;
    padding-bottom: 5px;
    border-bottom: 1px solid #E4878A;
    margin-bottom: 1em;
}

.enzya_about_subul li h5 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 15px;
    color: #E4878A;
}

.enzya_about_subul li ul li {
    padding-top: 0;
    padding-bottom: 10px;
}

.enzya_about_subul li ul li img {
    max-width: 400px;
    width: 100%;
    padding-top: 1em;
}

.indent {
    text-indent: -1em;
    padding-left: 1em;
}

.center {
    text-align: center;
}

.happyou_table th,
.happyou_table td {
    padding: 1em;
}

.happyou_table th {
    text-align: center;
    background: #FFF5F2;
    color: #E4878A;
}

.syasen {
    background-image: linear-gradient(to top left, transparent, transparent 49%, #E4878A 49%, #E4878A 50%, /* 線の太さ */
    transparent 50%, transparent);
}


/* ------------------------------------------
参加登録のご案内
------------------------------------------ */

.registration_schedule {
    margin: 10px 0;
    width: 100%;
}

.registration_schedule th,
.registration_schedule td {
    padding: 10px;
}

.registration_schedule th {
    text-align: left;
    background: #FFF5F2;
    color: #E4878A;
    font-weight: 600;
}

.registration_list {
    margin-bottom: 2em;
}

.registration_list_con {
    padding: 1em 0;
}

.registration_list_con h5 {
    font-size: 16px;
}

.registration_list_con p a {
    text-decoration: underline;
    color: #666;
}

.registration_list_con p a:hover {
    text-decoration: none;
}

.registration_con_list {
    padding: 0.5em 0;
    text-indent: -1em;
    padding-left: 1em;
}

.registration_con_list li {
    margin-bottom: 10px;
}

.registration_list_con .kikan {
    display: flex;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 15px;
}

.registration_list_con .kikan div {
    width: 120px;
}

.registration_list_con .kikan p {
    width: calc(100% - 120px);
}

.registration_list_con .kikan p span {
    font-size: 13px;
    display: block;
}

.sankahi {
    width: 100%;
    max-width: 600px;
    margin: 0.5em 0 1em;
}

.sankahi th {
    text-align: center;
}

.sankahi th,
.sankahi td {
    padding: 10px;
}

.sankahi .blueback {
    background: #D8EFFC;
}

.sankahi .right {
    text-align: right;
}

.registration_list_con .teigaku_kikan {
    border: 2px solid #E6C232;
    border-radius: 10px;
    padding: 20px;
}

.registration_list_con .teigaku_kikan h5 {
    margin-bottom: 5px;
}

.registration_list_con .teigaku_kikan p {
    font-size: 16px;
}

.teiin_sankatouroku {
    margin: 1em 0;
    border: 2px solid #E6C232;
    padding: 1em;
    border-radius: 10px;
}

.teiin_sankatouroku h5 {
    font-size: 17px;
    margin-bottom: 10px;
}

.teiin_program {
    margin: 10px 0;
    width: 100%;
}

.teiin_program th {
    text-align: center;
}

.teiin_program th,
.teiin_program td {
    padding: 10px;
}

.teiin_program .teiin {
    text-align: center;
    background: #FCEE21;
}

.teiin_program_btn {
    display: block;
    margin: 2em auto;
    width: 80%;
    max-width: 500px;
    background: #60B630;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 18px;
}

.teiin_program_btn:hover {
    background: #666;
}

.konshin {
    margin: 10px 0;
    width: 100%;
    max-width: 500px;
}

.konshin th,
.konshin td {
    padding: 10px;
}

.konshin th {
    text-align: center;
}

.konshin .right {
    text-align: right;
}

.konshin .kouzitsu {
    background: #D8EFFC;
}

.registration_con_list h6 {
    margin-top: 10px;
    padding-left: 1em;
    font-size: 16px;
}

.shukuhaku {
    width: 100%;
    margin: 10px 0;
}

.shukuhaku th,
.shukuhaku td {
    padding: 10px;
}

.shukuhaku th {
    text-align: center;
}

.shukuhaku td a {
    text-decoration: underline;
    color: #666;
}

.shukuhaku td a:hover {
    text-decoration: none;
}

.shukuhaku .right {
    text-align: right;
}

.shukuhaku_kikan {
    padding-top: 1em;
    font-weight: 600;
    font-size: 16px;
}

.babysitter_btn {
    display: block;
    margin: 2em auto;
    width: 80%;
    max-width: 500px;
    background: #E6C232;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 18px;
}

.babysitter_btn:hover {
    background: #999;
}

@media screen and (max-width: 599px) {
    .table-scroll {
        white-space: nowrap;
        overflow: scroll;
    }
}


/* ------------------------------------------
定員制プログラム
------------------------------------------ */

.teiin_houhou_ul {
    margin: 1em 0 3em;
}

.teiin_houhou {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
}

.teiin_list .sub {
    font-size: 16px;
    color: #E4878A;
    font-weight: 600;
    margin-left: 30px;
}

.teiin_list .jikan {
    margin-top: 1em;
    text-align: right;
    font-weight: 600;
    font-size: 15px;
}

.teiin_list .jikan a {
    margin-left: 1em;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 10px;
    background: #E6C232;
    font-weight: 600;
}

.teiin_list .jikan a:hover {
    background: #ccc;
}

.teiin_list .koushi {
    text-align: right;
    margin-bottom: 1em;
}

@media screen and (max-width: 599px) {
    .teiin_list .jikan {
        text-align: left;
    }
    .teiin_list .jikan a {
        display: block;
        width: 120px;
        text-align: center;
        margin: 5px 0;
    }
    .teiin_list .koushi {
        text-align: left;
    }
}

.tyuuiten {
    color: #C1272D;
    font-size: 15px;
    margin-top: 1em;
}

.tyuuiten_ul li {
    margin-left: 1em;
    list-style: disc;
}

.border {
    text-decoration: underline double;
}

.tyuuiten_ul .red {
    text-decoration: underline double #E60012;
}


/* ------------------------------------------
協賛企業の皆様へ
------------------------------------------ */

.sponsor_btn {
    display: block;
    width: 70%;
    margin: 2em auto;
    padding: 1em;
    font-weight: 600;
    background: #E4878A;
    color: #fff;
    border-radius: 100px;
    text-align: center;
}

.sponsor_btn:hover {
    background: #999;
}


/* ------------------------------------------
リンク
------------------------------------------ */

.link_ul li {
    margin-bottom: 0.5em;
}

.link_ul li a {
    text-decoration: underline;
    color: #666666;
}

.link_ul li a:hover {
    text-decoration: none;
}

.link_ul li::before {
    content: '○';
}

.thanks {
    margin: 30px;
    border: 5px solid #E6C232;
    padding: 1.5em;
}

.thanks .right {
    text-align: right;
    margin-top: 1em;
}


/* ------------------------------------------
オンデマンド配信
------------------------------------------ */

.live h2 {
    color: #71af32;
    border-color: #71af32;
}

.live h4 {
    color: #71af32;
    border-color: #71af32;
}

.live .program_list h4::before {
    content: '';
    display: inline-block;
    background: url(../images/live_mark.svg) no-repeat center;
    background-size: contain;
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.video_frame {
    margin: 1.5em 0;
}

.video_zatyou {
    margin-top: 2em;
}

.video_list {
    margin: 2em 0;
}