@charset "UTF-8";
/* ------------------------------------------------
                    mozaiq
--------------------------------------------------- */

/*----- header-----*/
header{
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    background: #000;
    border-bottom: 5px solid #800;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
header > a,
header nav{
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
header > a{
    padding: 15px 0 0;
    box-sizing: border-box;
}
header nav{
    float: right;
}
header nav ul li{
    display: inline-block;
}
header nav ul li a{
    padding: 20px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    background: rgba(255,255,255,0);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
header nav ul li a:hover{
    background: rgba(255,255,255,0.2);
}


/*----- mainvisual -----*/
#mainvisual{
    width: 100%;
    height: auto;
    margin-top: 67px;
    /* padding: 130px 0 80px; */
    box-sizing: border-box;
    position: relative;
}
#mainvisual #main_bg{
    width: 100%;
    height: 100%;
    background: url(../img/main_bg_2018_01.png) center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#mainvisual #main_bg .slide span{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s;
}
#mainvisual #main_bg #bg_slide_01 span{
    background: url(../img/main_bg_2018_01.png) center center no-repeat;
    background-size: cover;
}
#mainvisual #main_bg #bg_slide_02 span{
    animation-delay: 10s;
    background: url(../img/main_bg_2018_02.png) center center no-repeat;
    background-size: cover;
}
@keyframes imageAnimation {
    0% { opacity: 0; animation-timing-function: ease-in; }
    5% { opacity: 1; animation-timing-function: ease-out; }
    35% { opacity: 1 }
    45% { opacity: 0 }
    100% { opacity: 0 }
}

#mainvisual .inner{
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 80px 2% 80px;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    z-index: 2;
    background-color: rgba(0,0,0,0.4);
}

#mainvisual h1{
    text-align: center;
}
#mainvisual h1 img{
    width: 100%;
    max-width: 1153px;
}

#mainvisual .date{
    width: 100%;
    max-width: 850px;
    margin: 0 auto 60px;
    display: block;
}

#mainvisual a.btn_yellow{
    margin: 0 auto;
    padding: 25px 120px 25px 90px;
    display: inline-block;
    box-sizing: border-box;
    background: #800;
    color: #ffffff;
    font-size: 1.6em;
    position: relative;
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#mainvisual a.btn_yellow:after{
    content: "";
    width: 23px;
    height: 16px;
    margin-top: -8px;
    display: inline-block;
    background: url(../img/arrow_down.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 40px;
    z-index: 2;
}

#mainvisual a.btn_yellow:hover{
    opacity: 0.7;
}



/*----- 共通  -----*/
.bg_gray{
    background: #ececec;
}
h2{
    margin: 0 auto 80px;
    padding-left: 4px;
    padding-bottom: 40px;
    color: #222;
    font-weight: normal;
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    font-size: 3.0em;
    letter-spacing: 4px;
    position: relative;
}
h2 span{
    padding-right: 1px;
    display: block;
    font-size: 0.4em;
    letter-spacing: 3px;
}
h2:after{
    content: "";
    width: 100px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
}
.indent{
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
}

/*----- コンセプト  -----*/

#contents01{
    width: 100%;
    margin: -60px auto 0;
    padding: 160px 0 100px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

#contents01 .inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}
#contents01 h3{
    margin: 0 auto 50px;
    color: #222;
    font-size: 1.4em;
    letter-spacing: 2px;
}

#contents01 p{
    display: inline-block;
    vertical-align: top;
    text-align: justify;
    line-height: 1.9;
}

#contents01 p {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
}

#contents01 p.left{
    width: 48%;
    margin-right: 4%;
}
#contents01 p.right{
    width: 48%;
}


#contents01 a.btn_red{
    margin: 60px auto 0;
    padding: 15px 110px 15px 80px;
    display: inline-block;
    box-sizing: border-box;
    background: #800;
    color: #ffffff;
    font-size: 1.6em;
    position: relative;
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#contents01 a.btn_red:after{
    content: "";
    width: 10px;
    height: 16px;
    margin-top: -8px;
    display: inline-block;
    background: url(../img/arrow_right.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 40px;
    z-index: 2;
}

#contents01 a.btn_red:hover{
    opacity: 0.7;
}


/*----- 講演内容 -----*/

#contents02{
    width: 100%;
    margin: -60px auto 0;
    padding: 160px 0 100px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}
#contents02 .box{
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 5% 20px;
    box-sizing: border-box;
}
#contents02 .box h3,
#contents02 .box2 h3{
    margin: 0 auto 50px;
    padding: 15px 30px;
    display: inline-block;
    box-sizing: border-box;
    border: 4px solid #800;
    color: #800;
    font-size: 1.8em;
    letter-spacing: 5px;
}
#contents02 .box .program_inner{
    margin-bottom: 80px;
    text-align: left;
}
#contents02 .box .program_inner h4{
    margin-bottom: 50px;
    padding-left: 10px;
    display: block;
    border-left: 10px solid #800;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.4em;
    line-height: 1.4;
    letter-spacing: 3px;
}
#contents02 .box .program_inner img{
    max-width: 240px;
    display: inline-block;
    vertical-align: top;
}
#contents02 .box .program_inner p{
    width : -webkit-calc(100% - 290px) ;
    width : calc(100% - 290px) ;
    margin-left: 50px;
    display: inline-block;
    vertical-align: top;
}
#contents02 .box .program_inner p span.position{
    display: block;
    font-size: 1.3em;
    font-weight: bold;
}
#contents02 .box .program_inner p span.name{
    margin-bottom: 40px;
    display: block;
    font-size: 2.2em;
    font-weight: bold;
}
#contents02 .box .program_inner p span.profile {
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
}

.time{
    margin-bottom: 45px;
    font-size: 1.4em;
    font-weight: bold;
    letter-spacing: 3px;
}

#contents02 .box2{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}
#contents02 .box2 p{
    margin-bottom: 45px;
    font-size: 1.4em;
    font-weight: bold;
    letter-spacing: 3px;
}
#contents02 .box2 .img_box img{
    width: 32%;
    margin-right: 2%;
    display: inline-block;
}
#contents02 .box2 .img_box img:nth-child(3){
    margin-right: 0;
}


/*----- 会場案内 -----*/
#contents03{
    width: 100%;
    margin: -60px auto 0;
    padding: 160px 0 100px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

#contents03 .inner{
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 5% 20px;
    box-sizing: border-box;
}
#contents03 .inner .map{
    width: 50%;
    height:0;
    margin-right: 50px;
    padding-top: 30%;
    display: inline-block;
    position: relative;
}
#contents03 .inner .map iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #767676;
    box-sizing: border-box;
}
#contents03 .inner p{
    width : -webkit-calc(50% - 50px) ;
    width : calc(50% - 50px) ;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}
#contents03 .inner p span{
    margin-bottom: 25px;
    display: block;
    font-size: 1.8em;
    font-weight: bold;
}
#contents03 .inner p a,
#contents03 .inner p a:visited{
    color: #800;
}


/*----- スポンサー企業様 -----*/
#contents04{
    width: 100%;
    margin: -60px auto 0;
    padding: 160px 0 100px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}
#contents04 .box{
    margin-bottom: 90px;
}
#contents04 .box:last-child{
    margin-bottom: 0;
}
#contents04 .box h3{
    margin-bottom: 30px;
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    font-size: 1.8em;
    letter-spacing: 5px;
}
#contents04 .box a{
    display: inline-block;
    margin-right: 100px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#contents04 .box a:last-child{
    margin-right: 0;
}
#contents04 .box a:hover{
    opacity: 0.7;
}

#contents04 .box img {
    display: inline-block;
    margin-right: 60px;
    margin-bottom: 15px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#contents04 .box img:last-child{
    margin-right: 0;
}



/*----- 開催概要 -----*/
#contents05{
    width: 100%;
    margin: -60px auto 0;
    padding: 160px 0 100px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}
#contents05 dl{
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
    border-bottom: 1px solid #800;
}
#contents05 dl.bt{
    border-top: 4px solid #800;
}
#contents05 dl.bb{
    border-bottom: 4px solid #800;
}
#contents05 dl dt{
    width: 30%;
    padding: 30px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    font-size: 1.4em;
    font-weight: bold;
}
#contents05 dl dd{
    width: 70%;
    padding: 30px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    line-height: 1.8;
}

#contents05 dl dd .fs-m{
    font-size: 1.1em;
}

/*----- お申し込みフォーム  -----*/
#contents06{
    width: 100%;
    margin: -60px auto 0;
    padding: 160px 0 100px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

#contents06 .inner{
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}
#contents06 .main_text{
    margin-bottom: 50px;
    font-size: 1.1em;
    line-height: 2;
}
#contents06 .red{
    color: #ff0000;
    font-size: 0.9em;
    font-weight: bold;
}
#contents06 .table{
    width: 90%;
    max-width: 960px;
    margin: 0 auto 25px;
    box-sizing: border-box;
    border-top: 4px solid #800;
    text-align: left;
    display: block;
    background: #f1e8e9;
}
#contents06 .table .tr{
    box-sizing: border-box;
    border-bottom: 1px solid #800;
    position: relative;
}
#contents06 .table .tr .th{
    width: 240px;
    padding: 25px;
    box-sizing: border-box;
    display: inline-block;
    font-weight: bold;
}


#contents06 .table .tr.grid{
    display: grid;
    display: -ms-grid;
    grid-template-columns: 120px 120px 1fr;
    -ms-grid-columns: 120px 120px 1fr;
    -ms-grid-rows: auto auto auto;
}
#contents06 .table .tr.grid .gridTH{
    padding: 25px 0;
    box-sizing: border-box;
    background: #f1e8e9;
    justify-content: center;
    font-weight: bold;
}
#contents06 .table .tr.grid .columnA{
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #800;
}
#contents06 .table .tr.grid .columnB{
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    display: flex;
    align-items: center;

}
#contents06 .table .tr.grid .columnC{
    -ms-grid-column: 2;
    -ms-grid-row: 2;
    display: flex;
    align-items: center;
}
#contents06 .table .tr.grid .columnD{
    -ms-grid-column: 2;
    -ms-grid-row: 3;
    display: flex;
    align-items: stretch;
}
#contents06 .table .tr.grid .td.td01{
    -ms-grid-column: 3;
    -ms-grid-row: 1;
}
#contents06 .table .tr.grid .td.td02{
    -ms-grid-column: 3;
    -ms-grid-row: 2;
}
#contents06 .table .tr.grid .td.td03{
    -ms-grid-column: 3;
    -ms-grid-row: 3;
}

#contents06 .table .tr .td{
    width : -webkit-calc(100% - 240px) ;
    width : calc(100% - 240px) ;
    padding: 25px 30px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    background: #fff;
}
#contents06 .table .tr.grid .td{
    width : 100%;
    padding: 25px 30px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    background: #fff;
}
#contents06 .table .tr .td input{
    padding: 8px 10px;
    box-sizing: border-box;
    border: 1px solid #bebebe;
}
#contents06 .table .tr .td input[type="radio"] {
    margin-right: 2px;
    cursor: pointer;
}
#contents06 .table .tr .td label{
    margin-left: 10px;
}
#contents06 .table .tr .td select{
    padding: 8px 10px;
    font-size: 0.9em;
}
#contents06 .table .tr .td textarea {
    width: 80%;
    height: 126px;
    padding: 4px 4px;
    box-sizing: border-box;
    border: 1px solid #bebebe;
}
#contents06 .table .tr .td .caution{
    font-size: 0.9em;
}
#contents06 p.text{
    text-align: left;
    display: inline-block;
}
#contents06 p.text span{
    display: inline-block;
}


#contents06 .btn_area{
    display: block;
}
#contents06 button.btn_red{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    margin: 20px auto 0;
    padding: 15px 110px 15px 80px;
    display: inline-block;
    box-sizing: border-box;
    background: #800;
    color: #ffffff;
    font-size: 1.2em;
    position: relative;
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#contents06 button.btn_red:after{
    content: "";
    width: 10px;
    height: 16px;
    margin-top: -8px;
    display: inline-block;
    background: url(../img/arrow_right.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 40px;
    z-index: 2;
}
#contents06 button.btn_red:hover{
    opacity: 0.7;
}

#contents06 a.btn_red{
    margin: 60px auto 0;
    padding: 15px 110px 15px 80px;
    display: inline-block;
    box-sizing: border-box;
    background: #800;
    color: #ffffff;
    font-size: 1.6em;
    position: relative;
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#contents06 a.btn_red:after{
    content: "";
    width: 10px;
    height: 16px;
    margin-top: -8px;
    display: inline-block;
    background: url(../img/arrow_right.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 40px;
    z-index: 2;
}
#contents06 a.btn_red:hover{
    opacity: 0.7;
}

#contents06 button.btn_yellow{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    margin: 20px auto 0;
    padding: 10px 40px 10px 60px;
    display: inline-block;
    box-sizing: border-box;
    background: #800;
    color: #ffffff;
    font-size: 1.2em;
    position: relative;
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#contents06 button.btn_yellow:before{
    content: "";
    width: 10px;
    height: 16px;
    margin-top: -8px;
    display: inline-block;
    background: url(../img/arrow_left.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 30px;
    z-index: 2;
}

#contents06 button.btn_yellow:hover{
    opacity: 0.7;
}




/*----- フッター -----*/
footer{
    padding: 20px 0;
    background: #000;
    color: #ffffff;
}
footer p.copyright{
    text-align: center;
    font-size: 0.6em;
}


/* ------------------------------------------------
smart phone
--------------------------------------------------- */
@media (max-width: 768px) {

    /*----- header-----*/
    header{
        width: 100%;
        padding: 0 5%;
        box-sizing: border-box;
        background: #000;
        border-bottom: 5px solid #800;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
    }
    header > a,
    header nav{
        height: auto;
        display: inline-block;
        vertical-align: middle;
    }
    header > a{
        width: 40%;
        padding: 15px 0 5px;
        box-sizing: border-box;
    }
    header > a img{
        width: 100%;
    }
    header nav{
        float: none;
    }
    header nav ul.smp_nav{
        width: 100%;
        height: 100vh;
        padding-top: 50px;
        display: block;
        text-align: center;
        color: #fff;
        background: rgba(120,33,35,0.9);
        transform: translateX(100%);
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
    }
    header nav ul.smp_nav.active {
        transform: translateX(0%);
    }

    header nav ul.smp_nav li{
        width: 100%;
        display: block;
        border-bottom: 1px solid #800;
    }
    header nav ul.smp_nav li:first-child{
        border-top: 1px solid #800;
    }

    header nav ul.smp_nav li a{
        width: 100%;
        padding: 20px 0;
        display: block;
        color: #fff;
        font-size: 14px;
    }
    header nav ul.smp_nav li a:hover{
        background: rgba(120,33,35,0.9);
    }

    header nav .btn_menu{
        display: block;
        position: fixed;    /* bodyに対しての絶対位置指定 */
        right: 13px;
        top: 0.8%;
        width: 42px;
        height: 42px;
        cursor: pointer;
        z-index: 3;
        text-align: center;
    }
    header nav .btn_menu span {
        display: block;
        position: absolute;    /* .navToggleに対して */
        width: 30px;
        border-bottom: solid 2px #fff;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 6px;
    }


    header nav .btn_menu span:nth-child(1) {
        top: 9px;
    }
    header nav .btn_menu span:nth-child(2) {
        top: 18px;
    }
    header nav .btn_menu span:nth-child(3) {
        top: 27px;
    }
    header nav .btn_menu.active span:nth-child(1) {
        top: 18px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    header nav .btn_menu.active span:nth-child(2),
    header nav .btn_menu.active span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }


    /*----- mainvisual -----*/
    #mainvisual{
        width: 100%;
        height: auto;
        margin-top: 50px;
        /* padding: 24% 0 8%; */
        box-sizing: border-box;
        position: relative;
    }
    #mainvisual #main_bg{
        width: 100%;
        height: 100%;
        background: #800;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #mainvisual .inner{
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 12% 5% 8%;
        box-sizing: border-box;
        position: relative;
        text-align: center;
        z-index: 2;
    }

    #mainvisual h1{
        text-align: center;
    }
    #mainvisual h1 img{
        width: 100%;
        max-width: 1153px;
    }

    #mainvisual .date{
        width: 60%;
        max-width: 700px;
        margin: 0 auto 7%;
        display: block;
    }

    #mainvisual a.btn_yellow{
        margin: 0 auto;
        padding: 3% 18% 3% 8%;
        display: inline-block;
        box-sizing: border-box;
        background: #800;
        color: #ffffff;
        font-size: 1em;
        position: relative;
        font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    #mainvisual a.btn_yellow:after{
        content: "";
        width: 12px;
        height: 8px;
        margin-top: -4px;
        display: inline-block;
        background: url(../img/arrow_down.png) 0 0 no-repeat;
        background-size: 100%;
        position: absolute;
        top: 50%;
        right: 10%;
        z-index: 2;
    }

    #mainvisual a.btn_yellow:hover{
        opacity: 0.7;
    }



    /*----- 共通  -----*/
    .bg_gray{
        background: #ececec;
    }
    h2{
        margin: 0 auto 8%;
        padding-bottom: 5%;
        color: #222;
        font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
        font-size: 1.8em;
        letter-spacing: 10px;
        position: relative;
    }
    h2 span{
        display: block;
        font-size: 0.4em;
        letter-spacing: 3px;
    }
    h2:after{
        content: "";
        width: 80px;
        height: 2px;
        background: #000;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -40px;
    }

    /*----- コンセプト  -----*/

    #contents01{
        width: 100%;
        margin: -10% auto 0;
        padding: 18% 0 8%;
        box-sizing: border-box;
        text-align: center;
        position: relative;
    }

    #contents01 .inner{
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
        box-sizing: border-box;
    }
    #contents01 h3{
        margin: 0 auto 6%;
        color: #222;
        font-size: 1.1em;
        letter-spacing: 2px;
        text-align: left;
    }

    #contents01 p{
        display: inline-block;
        vertical-align: top;
        text-align: justify;
        line-height: 1.9;
    }
    #contents01 p.left{
        width: 100%;
        margin-right: 0%;
    }
    #contents01 p.right{
        width: 100%;
    }


    #contents01 a.btn_red{
        margin: 6% auto 0;
        padding: 3% 18% 3% 8%;
        display: inline-block;
        box-sizing: border-box;
        background: #800;
        color: #ffffff;
        font-size: 1.1em;
        position: relative;
        font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    #contents01 a.btn_red:after{
        content: "";
        width: 8px;
        height: 14px;
        margin-top: -7px;
        display: inline-block;
        background: url(../img/arrow_right.png) 0 0 no-repeat;
        background-size: 100%;
        position: absolute;
        top: 50%;
        right: 10%;
        z-index: 2;
    }

    #contents01 a.btn_red:hover{
        opacity: 0.7;
    }


    /*----- 講演内容 -----*/

    #contents02{
        width: 100%;
        margin: -10% auto 0;
        padding: 18% 0 8%;
        box-sizing: border-box;
        text-align: center;
        position: relative;
    }
    #contents02 .box{
        width: 100%;
        max-width: 1050px;
        margin: 0 auto;
        padding: 0 5%;
        box-sizing: border-box;
    }
    #contents02 .box h3,
    #contents02 .box2 h3{
        margin: 0 auto 8%;
        padding: 3% 8%;
        display: inline-block;
        box-sizing: border-box;
        border: 3px solid #800;
        color: #800;
        font-size: 1.6em;
        letter-spacing: 5px;
    }
    #contents02 .box .program_inner{
        margin-bottom: 80px;
        text-align: left;
    }
    #contents02 .box .program_inner h4{
        margin-bottom: 5%;
        padding-left: 10px;
        display: block;
        border-left: 10px solid #800;
        box-sizing: border-box;
        text-align: left;
        font-size: 1.2em;
        line-height: 1.4;
        letter-spacing: 3px;
    }
    #contents02 .box .program_inner img{
        width: 100%;
        max-width: 240px;
        margin: 0 auto 5%;
        display: block;
    }
    #contents02 .box .program_inner p{
        width: 100%;
        margin-left: 0;
        display: block;
    }
    #contents02 .box .program_inner p span.position{
        display: block;
        font-size: 1em;
        font-weight: bold;
    }
    #contents02 .box .program_inner p span.name{
        margin-bottom: 5%;
        display: block;
        font-size: 1.8em;
        font-weight: bold;
    }

    #contents02 .box2{
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
        box-sizing: border-box;
    }
    #contents02 .box2 p{
        margin-bottom: 5%;
        font-size: 1em;
        font-weight: bold;
        letter-spacing: 3px;
    }
    #contents02 .box2 .img_box img{
        width: 100%;
        margin-right: 0;
        margin-bottom: 3%;
        display: block;
    }
    #contents02 .box2 .img_box img:nth-child(3){
        margin-right: 0;
        margin-bottom: 0;
    }


    /*----- 会場案内 -----*/
    #contents03{
        width: 100%;
        margin: -10% auto 0;
        padding: 18% 0 8%;
        box-sizing: border-box;
        text-align: center;
        position: relative;
    }

    #contents03 .inner{
        width: 100%;
        max-width: 1050px;
        margin: 0 auto;
        padding: 0 5% 5%;
        box-sizing: border-box;
    }
    #contents03 .inner .map{
        width: 100%;
        height:0;
        margin-right: 0;
        margin-bottom: 5%;
        padding-top: 50%;
        display: block;
        position: relative;
    }
    #contents03 .inner .map iframe{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border: 1px solid #767676;
        box-sizing: border-box;
    }
    #contents03 .inner p{
        width: 100%;
        display: block;
        text-align: left;
    }
    #contents03 .inner p span{
        margin-bottom: 2%;
        display: block;
        font-size: 1.2em;
        font-weight: bold;
    }
    #contents03 .inner p a,
    #contents03 .inner p a:visited{
        color: #800;
    }


    /*----- スポンサー企業様 -----*/
    #contents04{
        width: 100%;
        margin: -10% auto 0;
        padding: 18% 0 8%;
        box-sizing: border-box;
        text-align: center;
        position: relative;
    }
    #contents04 .box{
        margin-bottom: 10%;
    }
    #contents04 .box:last-child{
        margin-bottom: 0;
    }
    #contents04 .box h3{
        margin-bottom: 5%;
        font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
        font-size: 1.2em;
        letter-spacing: 5px;
    }
    #contents04 .box a{
        width: 38%;
        max-width: 200px;
        margin: 0 auto 8%;
        display: block;
    }
    #contents04 .box a:last-child {
        margin-right: auto;
    }
    #contents04 .box a:hover{
        opacity: 1;
    }
    #contents04 .box a img{
        width: 100%;
    }

    #contents04 .box img {
        margin-right: 0;
    }


    /*----- 開催概要 -----*/
    #contents05{
        width: 100%;
        margin: -10% auto 0;
        padding: 18% 0 8%;
        box-sizing: border-box;
        text-align: center;
        position: relative;
    }
    #contents05 dl{
        width: 90%;
        max-width: 960px;
        margin: 0 auto;
        box-sizing: border-box;
        border-bottom: 1px solid #800;
    }
    #contents05 dl.bt{
        border-top: 4px solid #800;
    }
    #contents05 dl.bb{
        border-bottom: 4px solid #800;
    }
    #contents05 dl dt{
        width: 100%;
        padding: 3% 5%;
        box-sizing: border-box;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 1.1em;
        font-weight: bold;
        background: #d6bcbd;
    }
    #contents05 dl dd{
        width: 100%;
        padding: 3% 5%;
        box-sizing: border-box;
        display: inline-block;
        vertical-align: top;
        text-align: left;
        line-height: 1.8;
        font-size: 0.9em;
    }

    #contents05 dl dd .fs-m{
        font-size: 1.1em;
    }

    /*----- お申し込みフォーム  -----*/
    #contents06{
        width: 100%;
        margin: -10% auto 0;
        padding: 18% 0 8%;
        box-sizing: border-box;
        text-align: center;
        position: relative;
    }

    #contents06 .inner{
        width: 90%;
        max-width: 960px;
        margin: 0 auto;
    }
    #contents06 .main_text{
        width: 90%;
        max-width: 960px;
        margin: 0 auto 8%;
        font-size: 0.9em;
        line-height: 1.8;
        text-align: left;
    }
    #contents06 .red{
        color: #ff0000;
        font-size: 0.9em;
        font-weight: bold;
    }
    #contents06 .table{
        width: 90%;
        max-width: 960px;
        margin: 0 auto 5%;
        box-sizing: border-box;
        border-top: 4px solid #800;
        text-align: left;
        display: block;
        background: #f1e8e9;
    }
    #contents06 .table .tr{
        box-sizing: border-box;
        border-bottom: 1px solid #800;
        position: relative;
    }
    #contents06 .table .tr .th{
        width: 100%;
        padding: 3% 5%;
        box-sizing: border-box;
        display: block;
        font-weight: bold;
    }


    #contents06 .table .tr.grid{
        display: block;
    }
    #contents06 .table .tr.grid .gridTH{
        padding: 3% 5%;
        box-sizing: border-box;
        background: #f1e8e9;
        justify-content: center;
        font-weight: bold;
    }
    #contents06 .table .tr.grid .columnA {
        padding: 3% 5%;
        display: block;
        text-align: left;
        border-right: none;
        background: #d6bcbd;
    }
    #contents06 .table .tr.grid .columnB {
        padding: 3% 5%;
        box-sizing: border-box;
        display: block;
        text-align: left;

    }
    #contents06 .table .tr.grid .columnC {
        padding: 3% 5%;
        box-sizing: border-box;
        display: block;
        text-align: left;
    }
    #contents06 .table .tr.grid .columnD {
        padding: 3% 5%;
        box-sizing: border-box;
        display: block;
        text-align: left;
    }

    #contents06 .table .tr .td{
        width: 100%;
        padding: 25px 30px;
        box-sizing: border-box;
        display: block;
        vertical-align: top;
        background: #fff;
    }
    #contents06 .table .tr.grid .td{
        width : 100%;
        padding: 25px 30px;
        box-sizing: border-box;
        display: inline-block;
        vertical-align: top;
        background: #fff;
    }
    #contents06 .table .tr .td input[type="text"]{
        width: 100%;
        padding: 4px 4px;
        box-sizing: border-box;
        border: 1px solid #bebebe;
    }
    #contents06 .table .tr .td input[type="text"].yuubin{
        width: 60%;
        padding: 4px 4px;
        box-sizing: border-box;
        border: 1px solid #bebebe;
    }
    #contents06 .table .tr .td input[type="radio"] {
        margin-right: 2px;
    }
    #contents06 .table .tr .td label{
        margin-left: 10px;
    }
    #contents06 .table .tr .td select{
        font-size: 0.9em;
    }
    #contents06 .table .tr .td textarea {
        width: 100%;
        height: 120px;
        padding: 4px 4px;
        box-sizing: border-box;
        border: 1px solid #bebebe;
    }
    #contents06 .table .tr .td .caution{
        font-size: 0.9em;
    }
    #contents06 p.text{
        width: 90%;
        max-width: 960px;
        margin: 0 auto 5%;
        text-align: left;
        display: inline-block;
    }
    #contents06 p.text span{
        display: inline-block;
    }


    #contents06 .btn_area{
        display: block;
    }

    #contents06 button.btn_red{
        margin: 6% auto 0;
        padding: 3% 18% 3% 8%;
        display: inline-block;
        box-sizing: border-box;
        background: #800;
        color: #ffffff;
        font-size: 1.1em;
        position: relative;
        font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    #contents06 button.btn_red:after{
        content: "";
        width: 8px;
        height: 14px;
        margin-top: -7px;
        display: inline-block;
        background: url(../img/arrow_right.png) 0 0 no-repeat;
        background-size: 100%;
        position: absolute;
        top: 50%;
        right: 10%;
        z-index: 2;
    }
    #contents06 button.btn_red:hover{
        opacity: 1;
    }

	    #contents06 a.btn_red{
        margin: 6% auto 0;
        padding: 3% 18% 3% 8%;
        display: inline-block;
        box-sizing: border-box;
        background: #800;
        color: #ffffff;
        font-size: 1.1em;
        position: relative;
        font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    #contents06 a.btn_red:after{
        content: "";
        width: 8px;
        height: 14px;
        margin-top: -7px;
        display: inline-block;
        background: url(../img/arrow_right.png) 0 0 no-repeat;
        background-size: 100%;
        position: absolute;
        top: 50%;
        right: 10%;
        z-index: 2;
    }

    #contents06 a.btn_red:hover{
        opacity: 0.7;
    }



#contents06 button.btn_yellow{
        margin: 6% auto 0;
        padding: 3% 8% 3% 18%;
        display: inline-block;
        box-sizing: border-box;
        background: #800;
        color: #ffffff;
        font-size: 1.1em;
        position: relative;
        font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
}
#contents06 button.btn_yellow:before{
    content: "";
    width: 10px;
    height: 16px;
    margin-top: -8px;
    display: inline-block;
    background: url(../img/arrow_left.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 30px;
    z-index: 2;
}

#contents06 button.btn_yellow:hover{
    opacity: 0.7;
}

    /*----- フッター -----*/
    footer{
        padding: 20px 0;
        background: #000;
        color: #ffffff;
    }
    footer p.copyright{
        text-align: center;
        font-size: 0.6em;
    }
    #contents06 .table .tr .td input[type="submit"] {
        margin-right: 2px;
    }
.set1{
	font-size:35px!important;
	}
.set2{
	font-size:20px!important;
	}

}



/* ------------------------------------------------
smart phone
--------------------------------------------------- */
@media (max-width: 640px) {
}
