/* style.css */

/*----------------------
base
----------------------*/
*, *::before, *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 62.5%;
    line-height: 1.5;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    color: #333;
    background-color: #f7f7f7;
    font-size: 1.6rem;
    position: relative;
}

html, body {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.inner {
    max-width: 1024px;
    margin: 0 auto;
}

.bg-W {
    background-color: rgba(255, 255, 255, .8)
}


@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .btn {
      padding: 環境に合わせ調整
    }
}

i {
    padding: 5px 0;
}

section {
    margin-bottom: 70px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.fade {
    transition: all 1000ms;
    opacity: 0;
    visibility: hidden;
    transform: translate(0px, 50px);
  }
  
.fadein {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
} 

.PC {
    display: block !important;
}
.SP {
    display: none !important;
}

p {
    text-align: justify;
}


.popupBtn {
	position: fixed;
    height: 130px;
    width:  130px;
    bottom: 40px;
    padding: 10px;
    font-family: 'Hiragino Sans','ヒラギノ角ゴシック';
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 75px;
    background-color: #d70d19;
    text-align: center;
    z-index: 99999;
    transition: .5s all;
}

.popupBtn {
    animation: swing 1s infinite ease-in-out alternate;
  }
  @keyframes swing {
    0% {transform: translateX(-10px)}
    100% {transform: translateX(10px);}
  }

.popupBtn::after {
    display: block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    color: #d70d19;
    content: "\f0da";
    font-size: 6.4rem;
    position: absolute;
    top: 35px;
    right: -10px;
    transition: .5s all;
}

.popupBtn a {
    display: block;
    height: 110px;
    width:  110px;
    color: #FFF;
    cursor: pointer;
}

.popupBtn a h1 {
    display: inline-block;
    line-height: 115px;
    transition: .5s all;
}

.popupBtn:hover {
    background-color: #03428c;
}
.popupBtn:hover::after {
    color: #03428c;
    top: 50px;
    right: -7px;
    rotate: 18deg;
    transition: .5s all;
} 


/*----------------------
header
----------------------*/
header {
    width: 100%;
    height: 700px;
    background-color: #ff0;
    background: url(./img/headerBG.jpg) top center / cover no-repeat ;
}

.headerTitle {
    height: 500px;
    margin: 0 auto;
    background: url(./img/headerTitle.png) center center / contain no-repeat;
}

.headerFlag {
    max-width: 1024px;
    height: 50px;
    padding-top: 0%;
    margin: 0 auto;
    background: url(./img/headerFlag.png) center top / contain no-repeat;
    background-size: 450px;
}



@media screen and ( min-width:1200px) {
    header {
        width: 100%;
        height: 700px;
    }
}

@media screen and ( max-width:700px) {

    header {
        width: 100%;
        height: auto;
        padding-bottom: 60%;
        background: url(./img/headerBG_SP.jpg) top center / cover no-repeat ;
    }
    .headerTitle {
    margin: 0 auto;
    background: url(./img/headerTitle.png) right top 20px / contain no-repeat;
    background-size: 120%;
    }

    .headerFlag {
        height: auto;
        padding-top: 8%;
        background-size: 70%;
    }

    .BG {
        background-size: 70%;
    }
    
}

/*----------------------
main
----------------------*/
.main {
    margin-top: -100px;
    position: relative;
}

.headerBtn:hover {
    background-color: #666;
}

/*----------------------
テーマ
----------------------*/
.theme {
    margin-top: -70px;
}

.theme img {
    width: 900px;
}


/*----------------------
リード文
----------------------*/
.read {
    width: 100%;
}

.read h1 {
    text-align: center;
    font-weight: 900;
    font-size: 120%;
    width: 100%;
    position: relative;
}

.read h1:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: auto;
    width: 15%;
    height: 7px;
    border-radius: 10px;
    background: -webkit-repeating-linear-gradient(-45deg,rgba(218,63,90,1), rgba(218,63,90,1) 2px, rgba(185,227,249,0) 2px, rgba(185,227,249,0) 4px);
    background: repeating-linear-gradient(-45deg, rgba(218,63,90,1), rgba(218,63,90,1) 2px, rgba(185,227,249,0)  2px, rgba(185,227,249,0)  4px);
}

.read p {
    width: 100%;
    text-align: left;
    line-height: 2;
    color: #333;
    margin-top: 30px;
    text-align: justify;
}

.read p > span {
    background: linear-gradient(transparent 30%, #fdd809 70%);
    line-height: 1;
}


/*----------------------
セミナー内容
----------------------*/

.agenda {
    margin-top: 0px;
}

.agenda .flex {
    flex-wrap: wrap;
    align-items: stretch;
}

.agenda figure {
    width: 48%;
    position: relative;
    margin: 1% 0;
    padding: 20px;
    text-align: center;
    background-color: #FFF;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: relative;
}

.agenda figure::before {
    display: block;
    width: 70px;
    height: 70px;
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
}

.agenda figure::before {
    background:url(./img/themeTag.png) center center / contain no-repeat;
}

.agenda figure span {
    display: block;
}

@media screen and ( max-width:930px) {
    .agenda figure {
        width: 48%;
        margin: 2% 0;
    }
}

@media screen and ( max-width:700px) {
    .agenda figure {
        width: 90%;
        margin: 5% auto;
    }
}

.agenda figure h3 {
    display: block;
    color: #FFF;
    font-weight: 700;
    letter-spacing: .3em;
    line-height: 2;
    padding-top: 3px;
    border-radius: 30px;
    margin-bottom: 10px;

}

.agenda figure:nth-child(1) h3 {
      background-color: #02428c;  
}
.agenda figure:nth-child(2) h3 {
      background-color: #d70c19;  
}

.agenda figure h4 {
    font-size: 110%;
    font-weight: 700;
    color: #444;
    position: relative;
}

.agenda figure h4 span {
    display: block;
    font-size: 90%;
    line-height: 2;
    margin-bottom: 10px;
}

.agenda figure:nth-child(1) h4 span {
    color: #02428c;
}
.agenda figure:nth-child(2) h4 span {
    color: #d70c19;
}

.agenda figure h4:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: auto;
    width: 150px;
    height: 1px;
    border-bottom: dashed 1px #CCC;
}

.agenda figure h5 {
    margin-top: 25px;
}

.agenda figure h5 span {
    display: block;
    font-size: 80%;
}

.agenda figure h5 small {
    padding: 0 5px;
}

.agenda figure ul.agendalist {
    margin-top: 20px;
    font-size: 90%;
    list-style: none;
	display: inline-block;
}

.agenda figure ul.agendalist li {
    text-align: left;
    margin: 7px 0;
    line-height: 1.25 ;
}



/*----------------------
セミナーの見どころ
----------------------*/

.point {
}

.point h2 {
    width: 100%; /* 横幅 */
    height: 60px; /* 縦幅 */
    margin-bottom: 1%;
    line-height: 60px; /* 行の高さ(heightと同じにする) */
    background: linear-gradient(135deg, #ffdd00 0%, #ee7810 70%);
    border-radius: 1px; /* 角の丸み */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.point h2 i {
    margin-right: 5px;
    font-size: 120%;
}

.point ul {
    display: flex;
    flex-wrap: no-wrap;
    justify-content: space-around;
}

.point ul li {
    display: block;
    width: 48%;
    margin: 1%;
    padding: 3% 1%;
    font-weight: 700;
    border: 1px solid #FFF;
    border-image: linear-gradient(45deg, #ee7810 30%, #ffdd00 100%);
    border-image-slice: 1;
    text-align: center;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(45deg, #ee7810 30%, #ffdd00 100%);
}



/*----------------------
こんな方にオススメ
----------------------*/

.foryou {
}

.foryou h2 {
    width: 100%; /* 横幅 */
    height: 60px; /* 縦幅 */
    margin-bottom: 1%;
    line-height: 60px; /* 行の高さ(heightと同じにする) */
    background: linear-gradient(135deg, #33aad2 0%, #ed90a1 80%);
    border-radius: 1px; /* 角の丸み */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.foryou h2 i {
    margin-right: 5px;
    font-size: 120%;
}

.foryou ul {
    display: flex;
    flex-wrap: no-wrap;
    justify-content: space-around;
}

.foryou ul li {
    display: block;
    width: 48%;
    margin: 1%;
    padding: 3% 1%;
    font-weight: 700;
    border: 1px solid #FFF;
    border-image: linear-gradient(45deg, #ed90a1 30%, #33aad2 100%);
    border-image-slice: 1;
    text-align: center;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(45deg, #ed90a1 30%, #33aad2 100%);
}

.foryou ul li br {
    display: block;
}


.bnr {
    text-align: center;
    margin-bottom: 50px;
}
.bnr img{
    text-align: center;
    width: 70%;
    margin: 0 auto;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, .2);
}


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

.detailWrap {
    padding: 30px 20px;
    position: relative;
}
.detailWrap > small {
    display: block;
    width: 90%;
    margin: 0 auto;
    color: #888;
}

.detail {
    display: flex;
    justify-content: center;
    position: relative;
}


.detail-inner {
    width: 70%;
    box-sizing: border-box;
}

.detail-inner img {
    display: inline;
    width: 200px;
}

.detail-inner h1 {
    position: relative;
    font-weight: bold;
    padding: 1.5rem 0;
    margin-bottom: 15px;
    color: #888;
}

.detail-inner h1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    content: '';
    background-image: -webkit-repeating-linear-gradient(135deg, #888888, #888888 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #888888, #888888 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.detail-inner h2 {
    position: relative;
    font-weight: 700;
    font-size: 1.8rem;
    padding-left: 1rem;
    margin-bottom: 10px;
    color: #03428c;
}

.detail-inner h2 > small {
    display: block;
    margin-top: 10px;
    color: #666;
}

.detail-inner p {
    border-left: 3px solid #CCC;
    font-size: 1.4rem;
    margin-left: 1rem;
    padding-left: 1rem;
    padding-top: 3px;
    margin-bottom: 20px;
}


.detail-inner > table {
    display: block;
    width: 100%;
    padding-left: 1.5rem;
    margin: 10px 0 10px 15px;
}

.detail-inner > table th {
    width: 100px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #888888;
    padding: 2px 0 10px 0;
}

.detail-inner > table td {
    color: #444;
    padding-bottom: 10px;
}

.detail-inner > table td img {
    width: 150px;
}

.detail-inner > ul.biko {
    width: 80%;
    padding-left: 1rem;
    margin: 10px 0 10px 15px;
    font-size: 85%;
    color: #888;
}
.detail-inner > ul.biko > li {
    text-indent: -1.5rem;
    padding-left: 20px;

}
.detail-inner > ul.biko > li::before {
    content: "※";
    padding-right: 2px;
}




.leaflet {
    width: 30%;
    padding: 0;
    margin-top: 30px;
}
.leaflet a {
    display: block;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #FFF;
}

.leaflet a img {
    transition: .3s all;
    cursor: pointer;
}

.leaflet p {
    text-align: center;
    color: #888;
    opacity: 1;
    margin-top: 10px;
    font-size: 1.4rem;  
    transition: .3s all;
}

.leaflet a:hover img {
    transform: scale(1.15); /* 拡大 */
    transition: .3s all;
}

.leaflet a:hover img {
    opacity: .5;
}

.leaflet:hover p {
    opacity: 0;
    margin-top: -40px;
    transition: .3s all;
}

.detailBtn {
    display: block;
    width: 70%;
    margin: 50px auto;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 130%;
}


.detailBtn a {
    display: block;
    width: 100%;
    background-color: #d70d19;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0.3em 0px rgba(0, 0, 0, .1);
    transition: all .5s;
}

.detailBtn a i {
    margin-left: 10px;
    transition: all .5s;
}

.detailBtn:hover a {
    background-color: #03428c;
    transition: all .5s;
}

.detailBtn:hover a i {
    margin-left: 25px;
    transition: all .5s;
}


/*----------------------
講師
----------------------*/
.teacher {
    width: 100%;
    margin: 50px auto 20px auto;
    padding: 20px;
    border: 1px dotted #CCC;
    border-radius: 8px;
    align-items: center;
    vertical-align: middle;
}


.teacher ul.flex {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
}

.teacher ul li{
    width: 30%;
    margin: 5px;
}

.teacher h2 {
    display: block;
    background-color: #888;
    color: #FFF;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 15px;
}

.teacher h3 {
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.teacher h3 small {
    font-size: 1.6rem;
    margin-left: 1rem;
}

.teacher img {
    display: block;
    width: 240px;
    border-radius: 5px;
    margin: 5px auto 25px auto;
}

.teacher p {
    font-size: 75%;
    height: 40px;
    line-height: 1.2;
    text-align: center;
    color: #71615a;
    transition: .5s all;
}
.teacher p a {
    transition: .5s all;
}

.teacher p a:hover {
    color: #888;
    transition: .5s all;

}

.teacher p a i {
    margin-left: 10px;
}

.teacher h4 {
    font-size: 80%;
    margin-top: 10px;
    border-top: 1px dotted #DDD;
    padding-top: 15px;
}

.teacher h4 dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.teacher h4 dl dt {
    min-width: 20%;
}

.teacher h4 dl dd {
    width: 80%;
}


/*----------------------
視聴までの流れ
----------------------*/

.flow h1 {
	text-align: center;
	font-size: 2.0rem;
    font-weight: bold;
}

.flow i {
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 3rem;
	color: #999;
}

.flow h1::after {
	content: "";
	margin: 5px auto 10px auto;
	display: block;
	width: 25px;
	height: 4px;
	border-radius: 2px;
	background-color: #71615a;
}

.flow > p {
	font-size: 1.4rem;
	margin-bottom: 20px;
	text-align: center;
}

.flow ul li {
	padding: 0 1%;
	text-align: center;
}


.flow ul li:nth-child(2n+1) {
	width: 100%;
}

.flow ul li:nth-child(1) h2, .flow ul li:nth-child(7) h2 {
	color: #F6AB00;
}

.flow ul li:nth-child(2n) {
	color: #F6AB00;
	font-size: 2.0rem;
	padding-top: 50px;
}

.flow ul li h2 {
	font-size: 1.6rem;
    font-weight: bold;
	margin-bottom: 10px;
}

.flow ul li p {
    font-size: 1.4rem;
	border-top: 1px dotted#CCC;
	padding-top: 10px;
}

.flow span {
	display: block;
	margin: 0 auto 20px auto;
	width: 50%;
	color: #FFF;
	padding: 5px 0;
	font-size: 1.2rem;
	background-color: #F6AB00;
	position: relative;
}

.flow span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #F6AB00;
}

/*----------------------
視聴に関する注意事項
----------------------*/

.attention h1 {
	text-align: center;
	font-size: 2.0rem;
    font-weight: bold;
}

.attention i {
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 3rem;
	color: #999;
}

.attention h1::after {
	content: "";
	margin: 5px auto 10px auto;
	display: block;
	width: 25px;
	height: 4px;
	border-radius: 2px;
	background-color: #71615a;
}

.attention > p {
	font-size: 1.4rem;
	margin-bottom: 20px;
	text-align: center;
}

.attention > ul {
	border: 1px solid #CCC;
	padding: 10px;
}

.attention > ul > li {
	padding: 5px;
	font-size: 1.4rem;
}

.attention > ul h2 {
	margin-bottom: 0px;
	font-size: 1.4rem;
}

.attention > ul h2 {
	font-weight: 600;
}

/*----------------------
フッター
----------------------*/
footer {
    padding: 30px 0;
    text-align: center;
    font-size: 1.3rem;
    border-top: 1px dashed #a59791;
}



@media screen and ( max-width:1024px) {

    .inner {
        width: 95%;
        margin: 0 auto;
    }
}


@media screen and ( max-width:700px) {
    html {
    }
    body {
        font-size: 1.4rem;
    }


    .PC {
        display: none !important;
    }
    .SP {
        display: block !important;
    }

    .flex {
        display: block;
    }

    .popupBtn {
        height: 100px;
        width:  100px;
        bottom: 40px;
        padding: 0px;
        font-size: 1.6rem;
        border-radius: 50px;
        background-color: #d70d19;
    }

    .popupBtn {
        animation: swing 1s infinite ease-in-out alternate;
    }
    @keyframes swing {
        0% {transform: translateX(-10px)}
        100% {transform: translateX(10px);}
    }

    .popupBtn::after {
        font-size: 4.4rem;
        top: 30px;
    }

    .popupBtn a {
        height: 100px;
        width:  100px;
    }

    .popupBtn a h1 {
        line-height: 100px;
    }

    .popupBtn:hover {
        background-color: #03428c;
    }
    .popupBtn:hover::after {
        color: #03428c;
        top: 45px;
        right: -7px;
        rotate: 20deg;
        transition: .5s all;
    } 
    
    .main {
        margin-top: -450px;
    }

    section {
        margin-bottom: 30px;
    }

    .read h1 br {
        display: block;
    }

    .agenda {
        margin-top: 70px;
    }

    .point ul {
        flex-wrap: wrap;
    }

    .point ul li {
        width: 48%;
        margin: 1% 0;
    }

    .point ul li br {
        display: none;
    }

    .foryou ul li br {
        display: none;
    }

    .bnr img {
        width: 90%;
    }

    .detail {
        flex-wrap: wrap;
    }

    .detailWrap {
        padding: 30px 5px;
    }

    .detail-inner {
        width: 100%;
        box-sizing: border-box;
    }
    .detail-inner > table {
        margin: 0;
    }
    .detail-inner > table th {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .detail-inner > table td {
        display: block;
        width: 100%;
    }
    


    .leaflet {
        width: 100%;
        margin-top: 20px;
    }

    .leaflet p {
        margin-bottom: 40px;
    }

    .teacher {
        width: 100%;
        padding: 10px;
    }

    .teacher ul.flex {
        width: 100%;
    }
    .teacher ul li{
        width: 42%;
        text-align: center;
    }
    .teacher h3 {
        display: inline-block;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 2;
    }
    
    .teacher h3 small {
        font-size: 1.0rem;
    }
    .teacher p {
        text-align: center;
    }
    .teacher h4 {
        text-align: left;
        width: 90%;
        margin:  0 auto;
    }

    .teacher h4 dl dt {
        min-width: 14%;
    }
    
    .teacher h4 dl dd {
        width: 86%;
    }
    

    .detailBtn {
        width: 100%;
        font-size: 1.6rem;
    }
    
    .flow .flex, .attention .flex {
        display: block;
    }

    .flow .flex li {
        padding-bottom: 20px;
        margin-bottom: 30px;
        border-bottom: 1px dashed #ddd;
    }
    .flow .flex li:last-child {
        border-bottom: none;
    }
    .flow .flex li:nth-child(even) {
        display: none;
    }


    .flow ul li p {
        border-top: none;
        padding-top: 0;
    }

    footer {
        margin-top: 40px;
    }

}