@charset "UTF-8";
@import url("temp-grid.css");

body {
    max-width: 100vw;
    overflow: hidden;
}

/*カラー指定
-------------------------------------*/
:root{
    --maincolor:#6DB9BF;
    --pointcolor:#FF5757;
    --subcolor:#E1F2F1;
    --bacecolor:#efefef;
    --fontcolor:#333;
    --whcolor:#fff;
}
.main-color{
    color: var(--maincolor) ;
}
.wh-color{
    color: var(--whcolor) ;
}
.point-color{
    color: var(--pointcolor) ;
}
.fin-color{
    color: #6D7275;
}

/*フォント指定
-------------------------------------*/
body {
    color: var(--fontcolor) ;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

/* 背景設定 
-------------------------------------*/
.back {
	background-color: var(--subcolor);
}
.back2{
    background-color:#f6e7eb;
}
.back3{
    background-color:#fdfceb;
}
.no-back{
	margin: 4rem auto 0;
    max-width: 980px;
}
.flowback{
    background-color: var(--bacecolor);
}
.flowback .col{
    margin-bottom: 0;
}
.flowback .back{
    background-color: var(--maincolor);
}
.main-back{
	background-color: var(--maincolor);
    color: var(--whcolor);
}
.wh-back{
	background-color: var(--whcolor);
    padding: 2em 2em 1em;
}
/* 全画面背景設定 */
.back-maxwidth1 {
    background-color:var(--basecolor);
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
}
.back-maxwidth2 {
    background-image: url();
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
    color: var(--whcolor);
}
.back-maxwidth3 {
    background-image: url();
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
    color: var(--whcolor);
}
.back-maxwidth4 {
    background-image: url();
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
    color: var(--whcolor);
}
@media screen and (max-width: 768px){
    .no-back{
        margin: 0;
    }
}

/*基本設定
-------------------------------------*/
img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
img.img-sp80 {
    width: 100%;
}
.img-90 img{
    width: 90%;
    margin: 0 auto 1em;
}
img.img-50{
    width: 50%;
}
a {
    display:block;
    color: var(--maincolor) ;
    -webkit-text-decoration-line: none;/*ベンダープレフィックス追加*/
    text-decoration-line: none;
    cursor: pointer;
    -webkit-transition: 0.2s ease all;/*ベンダープレフィックス追加*/
    transition: 0.2s ease all;
    font-weight: bold;
}
a:hover { 
    opacity: 0.7;
}
a .cardcontent p{
    color: var(--fontcolor) ;
}
@media screen and (max-width: 768px){
    img.img-sp80 {
        width: 80%;
    }
    .img-70 img{
        width: 90%;
    }    
    img.img-50{
        width: 100%;
    }    
}

/*フォント設定
-------------------------------------*/
.smalltext{
    font-size: 14px;
    margin-bottom: 0.5rem;
}
h2{
    padding: 0 0.5rem;
}

/*装飾設定
-------------------------------------*/
.button {
	padding: 1rem;
	border-radius: 4px;
    background-color: var(--pointcolor);
    color: var(--whcolor) ;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
.button-gy{
    padding: 1rem;
	border-radius: 4px;
    background-color: #efefef;
    color: var(--fontcolor);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
.button-fin{
    padding: 1rem;
	border-radius: 4px;
    background-color: #6D7275;
    color:#efefef;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

.triangle {
    border-top: 30px solid var(--maincolor);
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    width: 30px;
    margin: -1em auto 1em;
}
.space{
    margin: 0;
}
.point{
    background: var(--subcolor) ;
    color: var(--maincolor) ;
    padding: 1.4em;
    margin: 2em auto;
}
.fa, .fas {
    font-weight: 900;
    font-size: 22px;
    margin: 0 1rem 0 0;
    color: var(--pointcolor) ;
}
hr.dashed{
    margin: 0;
    border-top: 2px dashed #e1e1e1;
}
.linebox{
    border: 1px solid #6D7275;
    background: #fff;
    color: #6D7275;
    display: inline-block;
    padding: 0 0.3em;
}
i.fas.fa-check {
    font-size: 14px;
    color: var(--fontcolor);
}
@media screen and (max-width: 768px){
    span.button,span.button-gy,span.button-fin{
        display: -webkit-box;/*ベンダープレフィックス追加*/
        /* display: -ms-flexbox; */
        /*Internet Explorer ベンダープリフィクス指定*/
        display: flex;
        -webkit-box-pack: center;/*ベンダープレフィックス追加*/
            /* -ms-flex-pack: center; */
            /*Internet Explorer ベンダープリフィクス指定*/
                justify-content: center;
     }
     .linebox{
         font-size: 12px;
     }
}

/*ヘッダー
-------------------------------------*/
.header {
	display: -webkit-box;/*ベンダープレフィックス追加*/
	/* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
	display: flex;
    -webkit-box-orient: horizontal;/*ベンダープレフィックス追加*/
    -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
        /* -ms-flex-direction: row; */
        /*Internet Explorer ベンダープリフィクス指定*/
            flex-direction: row;
    padding: 2rem 0 0 0;
}
.header-container {
    max-width: 980px;
    margin: 0 auto 0.5em;
}
.header-container h1{
    padding: 1rem;
    line-height: 0;
    margin-bottom: 0;
    margin-top: 0.5rem;
    color: var(--fontcolor);
    max-width: 400px;
}
.header-box {
	margin-left: auto;
    margin-top: 8px;
}
/*ナビゲーション*/
nav ul {
	display: -webkit-box;/*ベンダープレフィックス追加*/
	/* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    -webkit-box-orient: horizontal;/*ベンダープレフィックス追加*/
    -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
        /* -ms-flex-direction: row; */
        /*Internet Explorer ベンダープリフィクス指定*/
            flex-direction: row;
    /* -ms-flex-pack: distribute; */
    /*Internet Explorer ベンダープリフィクス指定*/
        justify-content: space-around;
    list-style: none;
	margin: 1rem auto 0;
    max-width: 980px;
}
nav li {
	-webkit-box-flex: 1;/*ベンダープレフィックス追加*/
	    /* -ms-flex: 1 0 auto; */
        /*Internet Explorer ベンダープリフィクス指定*/
	        flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
    font-weight: bold;
}
nav a:hover {
    background-color: var(--whcolor);    
}
nav a {
    padding: 1rem;
}
@media screen and (min-width: 768px){
    /* PC時はMENUボタンを非表示 */
    #open,#close {
        display: none !important;
    }
    #navi {
        display: block ;
        background-color: #efefef;
        padding: 0.2em 0 0;
    }
    .pc-none{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .header {
        -webkit-box-orient: vertical;/*ベンダープレフィックス追加*/
        -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
            /* -ms-flex-direction: column; */
            /*Internet Explorer ベンダープリフィクス指定*/
                flex-direction: column;
        margin-bottom: 0;
        padding: 0;
    }
    header .container{
        margin:0;
    }
    .header-container h1{
        max-width: 300px;
        font-size: 2.2rem;
        margin-top: 1rem;
    }
    .header #open,#close  {
        position: absolute;
        top: 5px;
        right: 12px;
    }
    .header-box{
        width: 100%;
        display: none;
    }
    nav ul {
        -webkit-box-orient: vertical;/*ベンダープレフィックス追加*/
        -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
            /* -ms-flex-direction: column; */
            /*Internet Explorer ベンダープリフィクス指定*/
                flex-direction: column;
    }
    #nav li {
        padding-top: 0;
    }
    /* スマホ時はMENUボタンを表示 */
    #open,#close  {
        display: block;
        width: 50px;
        border: none;
        position: absolute;
        top: 5px;
        right: 12px;
    }
    /* スマホ時はメニューを非表示 */
    #navi {
        display: none;
        padding: 2em 0 0;
    }
    .pc-none{
        display: block;
    }
}
 
/*MVエリア
-------------------------------------*/
.mainimg {
    background-image: url(../img/seminar2021-mv.jpeg);
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 650px;
    position: relative;
}
.maining-filter{
    background-color: rgba(0,0,0,0.6);
    height: 100vh;
    max-height: 650px;
}
.maining-title{
    color: var(--whcolor); 
    font-size: 5rem;
    position: relative;
    padding: 1.5rem;
    text-align: center;
    display: block;
    max-width: 980px;
    margin:0 auto;
}
h2.maining-title{
    padding-bottom: 0 !important;
}
.catch .title{
    color: var(--whcolor); 
    font-size: 2.0rem;
    line-height: 1.3;
    letter-spacing: 0.1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: bold;
    /*border-bottom: #fff solid 4px;
    display: inline-block;*/
}
.point-back{
    background-color: var(--pointcolor); 
    color: var(--whcolor); 
    padding: 0.5em;
    font-size: 3rem;
    max-width: 980px;
    margin: 0 auto;
    transform: skewX(
15deg);
}
h3.point-back .clear-deg {
    transform: skewX(
-15deg);
    display: block;
}
@media screen and (max-width: 768px){
    .mainimg,.maining-filter{
        max-height: 500px;
    }
    .mainimg .catch .container .row{
        flex-direction: unset;
    }
    .mainimg .catch .container .row .col{
        margin: 1em 0.2em;
    }
    .mainimg .catch{
        top:12%;
    }
    .catch .clear-col{
        flex: 0;
    }
    .catch .clear-col2 {
        flex: 0;
        padding: 1.2em;
    }
    .point-back{
        font-size: 2rem;
    }
    h2.maining-title {
        font-size: 3rem;
        margin-bottom: 0.5em;
    }
    .catch .title{
        font-size: 1.8rem;
    }
}

/*コンバージョンエリア
-------------------------------------*/
.cv{
    background-color: ver(--subcolor);
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 300px;
    max-height: 768px;
    position: relative;
}
.cv .catch{
    top: 30%;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
section {
	margin: 5rem 0;
	padding: 5rem 0;
}
@media screen and (max-width: 768px){
    section {
        margin: 0;
        padding: 5rem 0 1rem;
    }
}

/*タイトル・キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
    width: 100vw;
    position: absolute;
    top: 7%;
    padding: 0 17rem;
}
.catch h2 {
    padding-bottom: 1rem;
}
.catch p{
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
    -webkit-box-pack: center;/*ベンダープレフィックス追加*/
        /* -ms-flex-pack: center; */
        /*Internet Explorer ベンダープリフィクス指定*/
    justify-content: center;
    -webkit-box-align: center;/*ベンダープレフィックス追加*/
        /* -ms-flex-align: center; */
        /*Internet Explorer ベンダープリフィクス指定*/
    align-items: center;
    max-width: 980px;
    margin: 0 auto 1em;
}
.catch .container.center {
    margin: 0 auto;
}
/*補足タイトルテキスト*/
p.title{
    margin: 0 auto 0;
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
    -webkit-box-pack: center;/*ベンダープレフィックス追加*/
        /* -ms-flex-pack: center; */
        /*Internet Explorer ベンダープリフィクス指定*/
    justify-content: center;
}
/*ライン付きキャッチフレーズ*/
.under {
    font-size: 30px;
    font-size: 3rem;
    position: relative;
    padding: 1.5rem;
    text-align: center;
    display: block;
}
.under:before {
    position: absolute;
    bottom: -0.3rem;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: var(--maincolor);
}
.main-back .under:before {
    background: var(--whcolor);
}
/*キャッチフレーズ付きセクションの場合*/
.section-text{
    margin: 1em auto 0;
}
@media screen and (max-width: 768px){
    .catch {
        padding: 0 2rem;
        top: 25%;
    }
    p.title{
        text-align: center;
    }
    .under{
        padding: 1rem 0 1.5rem;
    }
    .catch p{
        font-size: 13px;
    }
}

h3.main-back{
    margin: 0 0 1em;
    padding: 1em;
}
/*テキストレイアウト
-------------------------------------*/
/*センター揃え*/
.center {
	text-align: center;
	margin: 1em auto 0;
    padding: 0 1.0rem;
}
h3.center{
    margin-top: 0;
    margin-bottom: 0.5rem;
}
/*左揃え*/
.left{
    text-align: left;
    padding: 0 1.0rem;
}
/*上下左右真ん中揃えの場合*/
.outer{
    position: relative;
}
.inner{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);/*ベンダープレフィックス追加*/
        /* -ms-transform: translateY(-50%) translateX(-50%); */
        /*Internet Explorer ベンダープリフィクス指定*/
            transform: translateY(-50%) translateX(-50%);
}
/*背景ありテキストの場合*/
.back-container{
    margin: 0 auto;
    padding: 2em 2em;
    position: relative;
}
.back-container p{
    margin-bottom: 0;
}
@media screen and (max-width: 768px){
    .inner{
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: translateY(0) translateX(0);/*ベンダープレフィックス追加*/
            /* -ms-transform: translateY(0) translateX(0); */
            /*Internet Explorer ベンダープリフィクス指定*/
        transform: translateY(0) translateX(0);
        text-align: center;
        margin: 1em 2rem;
    }
    .flex-order1{
        -webkit-box-ordinal-group:2;/*ベンダープレフィックス追加*/
            /* -ms-flex-order:1; */
            /*Internet Explorer ベンダープリフィクス指定*/
        order:1;
    }
    .flex-order2{
        -webkit-box-ordinal-group:3;/*ベンダープレフィックス追加*/
            /* -ms-flex-order:2; */
            /*Internet Explorer ベンダープリフィクス指定*/
        order:2;
    }    
}

/*全画面背景ありレイアウト
-------------------------------------*/
.back-maxwidth {
    background: var(--maincolor);
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
}
.flexbox{
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
}
.catch .flexbox{
    padding: 2em;
}
.catch-2clumn{
    text-align: center;
    width: 50vw;
    position: absolute;
    top: 40%;
    padding: 0 17rem;
}
.catch-3clumn{
    text-align: center;
    width: 33vw;
    position: absolute;
    top: 40%;
    padding: 0 17rem;
}
.flex-column{
    text-align: center;
    width: 100%;
    max-width: 980px;
    padding: 10rem;
}
.flex-column .back h3{
    padding: 1em 0;
    margin: 2em 0;
}

/*上下余白なしレイアウト
-------------------------------------*/
section.no-whspace{
    margin: 0;
	padding: 0;
}
main.no-whspace{
    margin: 0;
	padding: 0;
}
.no-whspace .container{
	padding: 0;
    margin: 0 auto;
}
.no-whspace .container.left{
	margin: 1em auto 2em;
}
.no-whspace .flowback .container{
	margin: 1em auto 2em;
    padding: 1rem 2.0rem 0;
}
@media screen and (max-width: 768px){
    .no-whspace .container{
        padding: 0 2.0rem;
    }
}

/*余白調整
-------------------------------------*/
.container.left.no-marginbottom{
    margin-bottom: 0;
}

/*動画レイアウト
-------------------------------------*/
.movie-1col,.movie-2col,.movie-3col{
    width: 100%;
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
    -webkit-box-pack: center;/*ベンダープレフィックス追加*/
        /* -ms-flex-pack: center; */
        /*Internet Explorer ベンダープリフィクス指定*/
    justify-content: center;
    margin: 2em auto;
}
.movie-1col iframe {
    width: 100%;
    height: 420px;
    max-width: 682px;
    display: block;
    margin: 0 auto;
}
.movie-2col iframe{
    width: 100%;
    height: 246px;
    display: block;
    margin: 0 1em;
}
.movie-3col iframe{
    width: 100%;
    height: 158px;
    display: block;
    margin: 0 1em;
}
@media screen and (max-width: 768px){
    .movie-1col,.movie-2col,.movie-3col{
        -webkit-box-orient: vertical;/*ベンダープレフィックス追加*/
        -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
            /* -ms-flex-direction: column; */
            /*Internet Explorer ベンダープリフィクス指定*/
        flex-direction: column;
        margin: 0 auto;
    }
    .movie-1col iframe,
    .movie-2col iframe,
    .movie-3col iframe {
        height: 240px;
        margin: 1em auto;
    }
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}
.flowback .container{
    margin: 1em auto 2em;
    padding: 1rem 2.0rem 0;
}

/*フッター
-------------------------------------*/
footer {
    background: var(--subcolor);
    padding: 80px 0 40px;
    text-align: center;


}
footer .logo_enjoyworks {
    width: 236px;
}
footer .list_sns {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 28px 0 54px;
    align-items: center;
}
footer .list_sns img {
    height: 25px;
    width: auto;
    margin: 0 0.5em;
}
footer .list_sns .button {
    height: 27px;
    width: auto;
    margin: 0 0.5em 0.5em;
    line-height: 0.5;
}
footer .list_links {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 1em 0;
}
footer .list_links li {
    padding: 0 1em;
    line-height: 1em;
    border-right: 1px solid #111;
    font-weight: bold;
}
footer .list_links li:last-child {
    border-right: none;
}
footer .websites {
    background: #fff;
    border-radius: 1em;
    max-width: 678px;
    margin: 40px auto;
    text-align: center;
    padding: 24px 38px;
}
footer .websites ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .websites ul li {
    margin: 0.5em;
}
footer .websites ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
footer .websites ul li a img {
    max-height: 42px;
    max-width: 128px;
    width: 100%;
}
footer address {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9em;
    font-style: normal;
}
@media screen and (max-width: 425px) {
    footer {
        padding: 60px 16px 40px;
    }
    footer .list_links li {
        padding: 0 1em;
    }
    footer .websites {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 24px 16px;
    }
    footer .websites ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 1em;
        justify-content: space-around;
    }
    footer .websites ul li a img {
        max-width: 120px;
        height: auto;
    } 
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
    background-color: #efefef;
	text-align: center;
	padding: 2rem 6rem;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}
@media screen and (max-width: 768px){
    .contact-box{
        padding: 2rem 4rem;
    }
    .table th {
        width: 100%;
        display: block;
    }	
    .table td {
        display: block;
    }
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #3B4043;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: var(--pointcolor);
    border-radius: 50%;
}
#pagetop a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}
#pagetop a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0d8';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -15px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/*円形スタイル
-------------------------------------*/
.circle img {
    border-radius: 50%;
    object-fit: cover;
}
.circle-box{
    position: relative;
    border-radius: 50%;
    background: var(--subcolor);
    width: 100px;
    height: 100px;
}
.circle-text{
    position: absolute;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    color: var(--maincolor);
    top: 50%;
    left: 33%;
    -webkit-transform: translateY(-50%);
        /* -ms-transform: translateY(-50%); */
        /*Internet Explorer ベンダープリフィクス指定*/
    transform: translateY(-50%);
}

/*FAQスタイル
-------------------------------------*/
.faq-flex{
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
}
.faq-flex .back-continer{
    padding: 2em 2em 1em;
}
.faq-container{
    margin: 0 auto;
    padding: 0em 2em;
    position: relative;
}
@media screen and (max-width: 768px){
    .faq-flex .back-container{
        padding: 2em 0 0;
    }
    .faq-container{
        padding: 1em;
        background: var(--basecolor);
    }
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
    
    /*画像背景ありレイアウト
    -------------------------------------*/
    .catch-2clumn{
        width:100vw;
        padding: 0 4rem;
    }
    .catch-3clumn{
        width:100vw;
        padding: 0 4rem;
    }
    .flexbox{
        display: block;
    }
    .catch .flexbox{
        display: -webkit-box;/*ベンダープレフィックス追加*/
        /* display: -ms-flexbox; */
        /*Internet Explorer ベンダープリフィクス指定*/
        display: flex;
        padding: 0;
    }    
    .flex-column{
        padding: 4rem;
    }
    
    /*円形スタイル
    -------------------------------------*/
    .circle-box {
        margin: 0 auto;
    }
    .faq-flex {
        -webkit-box-orient: vertical;/*ベンダープレフィックス追加*/
        -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
            /* -ms-flex-direction: column; */
            /*Internet Explorer ベンダープリフィクス指定*/
            flex-direction: column;
    }
}

/*セミナースタイル
    -------------------------------------*/
.seminar-container{
    margin: 2em 2em 1em;
}
.seminar-container .flow.row {
    margin-bottom: 0;
}
.seminar-container hr{
    margin: 0 0 1rem;
}
.seminar-container .title-leftline {
    padding: 1rem 2rem;
    border-left: 4px solid var(--maincolor);
}
.seminar-container .title-leftline-fin {
    padding: 1rem 2rem;
    border-left: 4px solid #6D7275;
}
.seminar-container .title-leftline p,.seminar-container .title-leftline-fin p {
    margin-bottom: 0;
}

.seminar-container .main-back{
    padding: 0.3rem;
    font-size: 14px;
    line-height: 2.0;
}
@media screen and (max-width: 768px){
    .seminar-container {
        margin: 2em 1em 1em;
    }
    .seminar-container .title-leftline {
        border-left: 0px solid var(--maincolor);
        padding: 0;
    }
    .seminar-container .title-leftline-fin {
        border-left: 0px solid #6D7275;
        padding: 0;
    }
    .sp-none{
        display: none;
    }
}