/* page.css */

section h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: .2rem;
    margin-bottom: 50px;
    color: #133239;
    border-bottom: 5px solid #ddd;
	padding: 10px 0;
    position: relative;
}

section h1::before {
    position: absolute;
	left: 0;
	bottom: -5px;
	width: 20%;
	height: 5px;
	content: '';
	background: #133239;

}

.pagelink {
    background-color: #87704c;
    padding: 10px 0;
    margin: 0;
}

.pagelink ul {
    display: block;
    text-align: center;
    color: #FFF;
    font-size: 1.4rem;
}

.pagelink ul li {
    display: inline-block;
    margin: 0 20px;
    line-height: 1.5;
    padding: 5px 0;
    position: relative;
}

.pagelink ul li::after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 6px;
    transition: .3s all;
}

.pagelink ul li:hover::after {
    top:10px;
    transition: .3s all;
}

/********************
メッセージ Message
**********************/

.Message {
    margin: 50px 0 -50px 0;
}

.Message .inner > h2{
    display: block;
    max-width: 480px;
    height: 200px;
    margin: 0 auto;
    background: url(./img/W-L.png) center right / contain no-repeat;
}

.Message h3 {
    display: block;
    width: 100%;
    font-size: 2.0rem;
    font-weight: 700;
    color: #133239;
    margin-bottom: 30px;
    position: relative;
}   

.Message h3::before {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 70%;
	height: 8px;
	background-image: repeating-linear-gradient(-45deg, #b4a983 0px, #b4a983 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
	background-size: 8px 8px;
}


.Message p {
    margin-top: 30px;
    line-height: 2;
    text-align: center;
    font-size: 140%;
    font-weight: 700;
    color: #888;
}

.Message p > br {
    display: none;
}

.Message p span {
    position: relative;
    font-size: 130%;
    margin: 0 10px;
    background: linear-gradient(30deg, #aa9347, #cbb87c 30%, #aa9347);
    background: -webkit-linear-gradient(30deg, #aa9347, #cbb87c 30%, #aa9347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Message p span::before {
    content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 8px;
	background-image: repeating-linear-gradient(-45deg, #b4a983 0px, #b4a983 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
	background-size: 8px 8px;
}

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

    .Message {
        margin: 20px 0 -30px 0;
    }
    .Message p > br {
        display: block;
    }    
}
   

/********************
実習内容 Training
**********************/

.Training  {
}

.Training ul.TrainingList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Training ul.TrainingList li {
    width: 280px;
    height: 150px;
    padding: 20px;
    box-sizing: border-box;
    margin: 15px;
    background-color: #f9f9f9;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.Training ul.TrainingList li > h4 {
    position: absolute;
    top: -45px;
    left: 10px;
    font-size: 300%;
    color: #c8ad81;
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.Training ul.TrainingList li > p {
    width: 90%;
    font-size: 130%;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #c8ad81;
}
.Training ul.TrainingList li > p > small {
    display: block;
    margin-top: 10px;
    font-weight: 400;
    color: #444;
}


p.TrainingTxt {
    display: block;
    margin: 50px 20px 20px 20px;
    padding: 20px;
    background-color: #FFF;
    line-height: 2;
}



.Training .toSche a {
    display: block;
    text-align: right;
    margin-top: 10px;
    color: #a58758;
    text-decoration: underline;
    transition: .3s all;
}

.Training .toSche a:hover {
    text-decoration: none;
    transition: .3s all;    
}

.Training .toSche i {
    font-size: 110%;
}

@media screen and ( max-width:768px) {
    .Training ul.TrainingList li {
        width: 45%;
        height: 120px;
    }
    
    .Training ul.TrainingList li > h4 {
        top: -35px;
    }
}

@media screen and ( max-width:500px) {
    .Training ul.TrainingList li {
        width: 100%;
    }
}
   
/********************
参加者のこえ Voice
**********************/
.Training .Voice ul {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    margin-top: 30px;
}

.Training .Voice ul li {
    width: 24%;
    height: auto;
    padding: 20px;
    margin: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    text-align: left;
    border-radius: 10px;
    position: relative;
}

.Training .Voice ul li > h5 {
    display: inline-block;
    color: #a58758;
    font-size: 80%;
    margin-bottom: 15px;
    position: relative;
}
.Training .Voice ul li > h5:before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: 0;
    display: block;
    width: 115px;
    height: 1px;
    background-color:#a58758;
}

.Training .Voice ul li > h5:after {
 content: '';
  display: inline-block;
  width: 20px;
  height: 15px;
  margin-left: 5px;
  background: url(./img/comment-solid.png) center center /contain no-repeat;

}

.Training .Voice ul li > p {
    color: #777;
    font-weight: 700;
}

@media screen and ( max-width:768px) {
    .Training .Voice ul {
        justify-content: space-around;
    }
    .Training .Voice ul li {
        width: 46%;
        height: auto;
        padding: 20px;
        margin-bottom: 3%;
        box-sizing: border-box;
        background-color: #f9f9f9;
        text-align: left;
        border-radius: 10px;
        position: relative;
    }
}

/********************
講師 Teacher
**********************/

.Teacher {
}

.Teacher .flex-clm2 {
    align-items: center;
}

.Teacher img {
    border-radius: 10px;
}

.Teacher h1 {
    font-size: 120%;
    margin-bottom: 25px;
}

.Teacher h2 {
    font-size: 170%;
    font-weight: 700;
    margin-bottom: 20px;
}

.Teacher h2 > small {
    margin-left: 10px;
    font-size: 70%;
}

.Teacher h2 > p {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 300;
    margin-left: 3px;
    color: #ccc;
    font-size: 65%;
    letter-spacing: .2rem;
}
  
.Teacher .shozoku {
    color: #133239;
    margin: 0 0 20px 0;
}

.Teacher .keireki {
    font-size: 85%;
    border: 1px solid #CCC;
    padding: 10px 15px;

}

@media screen and ( max-width:768px) {
    .Teacher .flex-clm2 {
        display: block;
    }
    .Teacher .flex-Box {
        width: 100%;
    }

    .Teacher .flex-Box:first-child {
        text-align: center;
    }

    .Teacher img {
        width: 80%;
        margin-bottom: 20px;
    }
}

/********************
こんな方におすすめ PR
**********************/
.PR {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 0 0;
}

.PR .Foryou, .PR .Point {
    width: 45%;
}

.PR h2 {
    font-weight: 600;
    margin: 0 0 10px 0;
    position: relative;
    color: #27535d;
}

.PR h2::after {
    content: "";
    display: inline-block;
    width: 40%;
    height: 1px;
    margin: 0 0 5px 10px;
    background: #366c78;
}

.PR ul li {
    list-style:circle;
    margin-left: 2rem;
    line-height: 2;
}

@media screen and ( max-width:768px) {
    .PR {
        display: block;
        justify-content: space-between;
        margin: 40px 0 0 0;
    }

    .PR .Foryou, .PR .Point {
        width: 100%;
        margin-top: 40px;
    }

    .PR h2::after {
        content: "";
        display: inline-block;
        width: 100%;
        height: 1px;
        margin: 0 0 5px 10px;
        background: #777;
    }
}


/********************
日時 Date
**********************/
.Date {
    margin-top: -60px;
}
.Date p {
    font-weight: 700;
    font-size: 120%;
    margin-bottom: 20px;
}

.Date .schedule h3 {
    width: 200px;
    text-align: center;
    background-color: #366c78;
    padding: 5px 10px;
    color: #FFF;
    font-weight: 700;
    margin: 20px 0;
}

.Date .schedule h3 > span {
    font-weight: 400;
    margin-left: 5px;
}

.Date .time-scheduleWrap {
    width: 100%;
    list-style: none;
 }
.Date .time-schedule {
    width: 85%;
    margin: 0 0 0 auto;
    padding: 10px 0 10px 10px;
    box-sizing: border-box;
    text-align: right;
    border-left: 4px solid #bca963;
}
.Date .time-schedule li {
    width: 100%;
    margin: 0 0 0 auto;
    margin: 10px 0;
}
 
.Date .time-schedule .sch_box {
    width: 100%;
    padding: 10px 10px;
    box-sizing: border-box;
    display: block;
    background: #f4f4f4;
    border-radius: 6px;
    position: relative;
}

.Date .time-schedule span.time {
    display: block;
    width: 75px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    top: 15px;
    left: -80px;
}

.Date .time-schedule span.time::after {
    content: "";
    display: inline-block;
    background: #bca963;
    margin-left: 7px;
    width: 16px;
    height: 16px;
    border-radius: 10px;
}

.Date .time-schedule .sch_box.zisshu {
    background-color: #d7e8ee;
}

.Date .time-schedule .sch_title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.Date .time-schedule .sch_tx {
    font-size: 14px;
    font-weight: normal;
    padding-left: 2rem;
    margin: 0;
}

dl.DateAttention {
    width: 90%;
    margin: 20px auto 0 auto;
    font-size: 90%;
    border: 1px dotted #CCC;
    padding: 16px;
}

dl.DateAttention dt {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    padding: 0 5px;
    border-bottom: 1px solid #888;
}

dl.DateAttention dd {
    padding-left: 20px;
    text-indent: -18px;
} 

dl.DateAttention dd::before {
    content: "※";
    margin-right: 5px;
}

@media screen and ( max-width:768px) {
    .Date .flex-clm2 {
        display: block;
    }
    .Date .flex-Box {
        width: 90%;
        margin: 0 auto;
    }
    .Date .schedule h3 {
        width: 100%;
        margin: 0;
    }
}


/********************
会場 venue
**********************/

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

.Venue ul li:first-child {
    width: 50%;
    text-align: left;
}
.Venue ul li:last-child {
    width: 45%;
}

.Venue ul img {
    width: 100%;
    border-radius: 10px;
}

.Venue ul h2 {
    font-size: 120%;
    font-weight: 700;
    text-align: left;
}

.Venue ul h2 > span {
    font-size: 1.6rem;
    margin-left: 20px;
}

.Venue ul p {
    margin-bottom: 20px;
}

.Venue ul a {
    text-decoration: underline;
    text-align: left;
    margin: 0;
    padding: 0;
    transition: .3s all;
    color: #87704c;
}
.Venue ul a:hover {
    text-decoration: none;
    transition: .3s all;

}

.Venue .toVenue {
    margin-top: 30px;
    border: 1px solid #CCC;
    padding: 10px 15px;
    box-sizing: border-box;
    font-size: 90%;
}

.Venue .toVenue p,
.Venue .toVenue a {
    margin: 0;
    padding: 5px 0;
}


@media screen and ( max-width:768px) {
    .Venue ul {
        display: block;
        justify-content: space-between;
    }

    .Venue ul li:first-child {
        width: 100%;
        margin-bottom: 30px;
    }
    .Venue ul li:last-child {
        width: 100%;
        text-align: center;
    }
    .Venue ul img {
        width: 80%;
        margin: 0 auto;
    }
}

/********************
概要 Detail
**********************/

.Detail {
}

.Detail .detailBox > h2 {
} 
.Detail .detailBox > p,
.Detail .detailBox > ul {
    margin-left: 20px;
}

.Detail .detailBox > ul.flex {
    margin-left: 0;
    display: flex;
}

.Detail .detailBox > ul.flex > li {
    width: 48%;
}

.Detail .detailBox + .detailBox {
    margin-top: 20px;
}

.Detail .detailBox dt,
.Detail .detailBox dd {
    display: inline-block;
    margin-right: 10px;
}

.Detail .detailBox dt {
    font-weight: 700;
}

.Detail .detailBox h2 {
    font-weight: 700;
    color: #27535d;
}


.Detail .detailBox .contain {
    border: 1px dotted #CCC;
    border-radius: 5px;
    padding: 10px 16px;
    box-sizing: border-box;
    margin: 10px 0 0 20px;
    font-size: 1.4rem;
}

.Detail .detailBox .contain h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.Detail .cxl {
    background-color: #AAA;
    color: #FFF;
    padding: 10px 16px;
    font-size: 90%;
    margin-top: 20px;
}

.Detail .cxl h2 {
    border-bottom: 1px dotted #FFF;
    color: #FFF;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.Detail .cxl ul li {
    list-style: disc;
    line-height: 1.5;
    margin-bottom: 7px;
}

@media screen and ( max-width:768px) {
    .Detail .flex-clm2 {
        display: block;
    }
    .Detail .flex-Box {
        width: 100%;
    }
}


/********************
チラシ reaflet
**********************/

.reaflet {
    margin-top: 50px;
    text-align: center;
}
.reaflet a:hover {
    opacity: .7;
}
.reaflet img {
    width: 300px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}
.reaflet p {
    display: block;
    margin: 10px 0;
    font-size: 1.4rem;
    color: #666;
    text-align: center;
}



/********************
注意事項 Attention
**********************/

.Attention {
    padding-bottom: 170px;
    position: relative;
}
.Attention .attentionBox {
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}
.Attention h2 {
    text-align: center;
    border-bottom: 1px solid #CCC;
    padding: 10px 16px;
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #9e8543;
    border-radius: 10px 10px 0 0;
    color: #FFF;
}

.Attention .attentionDetail {
    padding: 10px 16px;
}

.Attention .attentionDetail p {
    margin-bottom: 10px;
}

.Attention .attentionDetail p a {
    display: inline-block;
    padding: 0;
    line-height: 1.2;
    color: #472b72;
    border-bottom: 1px dotted #472b72;
}

.Attention .attentionDetail p a:hover {
    color: #666666;
    border-bottom: 1px dotted #666666;
}

.Attention .attentionDetail small {
    display: block;
    line-height: 1.5;
}

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

.Attention .attentionDetail > ul > li {
    width: 48%;
}
.Attention .attentionDetail dl {
    margin-bottom: 10px;
}
.Attention .attentionDetail dt {
    color: #472b72;
    font-weight: 700;
}

.Attention .attentionDetail dt::before {
    content: '\f0d7';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.Attention .attentionDetail dl dd {
    display: block;
    padding-left: 20px;
}
.Attention .attentionDetail dl dd small {
    display: inline;
}
.Attention .attentionDetail dl dd > ul {
    display: block;
}
.Attention .attentionDetail dl dd > ul > li {
    line-height: 1.5;
    margin: 0 0 5px 20px;
}

.Attention .attentionDetail dl dd > ul > li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    color: #666;
    font-weight: 900;
    font-size: 80%;
    margin-right: 5px;
    margin-left: -2rem;
}

.Attention .attentionDetail h3 {
    background-color: #e5e5e5;
    color: #472b72;
    font-size: 1.4rem;
    padding: 10px 5px;
    text-align: center;
}

.LowerBtn {
    position: absolute;
    bottom:-20px;
    left: 0;
    right: 0;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0;
    font-size: 150%;
    font-weight: 700;
    text-align: center;
}


@media screen and ( max-width:768px) {
    .Attention .flex-clm2 {
        display: block;
    }
    .Attention .flex-Box {
        width: 100%;
        margin: 30px 0;
    }
    .LowerBtn {
        position: absolute;
        bottom:5%;
        left: 0;
        right: 0;
        width: 90%;
        margin: 0 auto;
    }
}
