@charset "UTF-8";

/* header */
.header{
    border-bottom: 33px solid #3572a8;
}
.header-inner{
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin: 0 auto;
    align-items: center;
}
@media only screen and (max-width: 620px){
    .header-inner{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .header-inner img:first-child{
        margin-bottom: 1rem;
    }
}
.container{
    padding: 6rem 2rem 4rem;
}
/* post-area */
.post-area{
    width: 80%;
    max-width: 1024px;
    margin: 0 auto;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}
.section{
    margin-bottom: 4rem;
}
.mb-4{
    margin-bottom: 1.5rem;
}
.text-green{
    color: green;
}
.text-blue{
    color: blue;
}
a{
    color: #007bff;
    text-decoration: underline;
}
h2{
    font-size: 20px;
    text-align: left;
    padding-bottom: 10px;
    margin-bottom: 27px;
    font-weight: bold;
}
h3 {
    margin: 4rem 0;
    padding: 0.5rem;
    background: #cccccc;
    border: 1px solid #cccccc;
    font-weight: bold;
    font-size: 1.8rem;
}
h4{
    font-size: 1.6rem;
}
p{
    line-height: 2;
    font-size: 1.4rem;
}
hr{
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #b5b5b5;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
p.text-right{
    text-align: right;
}
.paragraph{
    margin-bottom: 3rem;
}
table {
    border: 1px solid #cccccc;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 auto 40px auto;
    width: 100%;
}
table th {
    color: #ffffff;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #cccccc;
    text-align: center;
    vertical-align: top;
    background: #b5b5b5;
}
table td {
    padding: 10px;
    border: 1px solid #cccccc;
    text-align: center;
    vertical-align: top;
}
table.venue tr.day-1{
    background: #ddffc8;
}
table.venue tr.day-2{
    background: #ffffec;
}
table.venue tr.day-3{
    background: #e3fcff;
}
table.venue tr.day-4{
    background: #fff3ec;
}
table.venue tr.day-5{
    background: #ececff;
}
table.venue tr.day-6{
    background: #f8ffec;
}
/* 参加と申し込み */
table.invisible-table{
    border: none;
}
table.invisible-table th,
table.invisible-table td{
    border: none;
    text-align: left;
}
table.invisible-table th{
    background: #FFF;
    color: #333333;
    white-space: nowrap;
    vertical-align: middle;
}
table.certification-list a{
    display: block;
}
table.certification-list th,
table.certification-list td{
    vertical-align: middle;
}
table.certification-list td.text-left{
    text-align: left;
}
/* 写真 */
.photos{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.venue-images{
    width: 49%;
}
.venue-images img{
    max-width: 100%;
}
.photos-2 .venue-images{
    width: 30%;
}
/* list */
ol{
    padding: revert;
    margin: revert;
}
ol li{
    list-style: decimal;
    line-height: 1.6;
}
@media only screen and (max-width: 620px){
    .photos{
        flex-direction: column;
        justify-content: space-around;
    }
    .venue-images{
        width: 98%;
        margin-bottom: 1rem;
    }
}
@media only screen and (max-width: 1139px){
    .post-area{
        width: 100%;
    }
}
/* accordion */
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}
/* 受講証明サンプル */
.certificate-samples{
    display: flex;
    justify-content: space-around;
}
.certificate-samples .certificates{
    display: flex;
    flex-direction: column;
    width: 31%;
    /* border: 1px solid #CCC; */
}
.certificate-samples .certificates p{
    font-weight: bold;
}
.certificate-samples .certificates a{
    display: block;
    margin-top: auto;
}
.certificate-samples .certificates img{
    max-width: 100%;
    border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.go-detail {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 0.4rem 0.4rem 0.4rem 50px;
    transition: all .5s ease;
    font-size: 110%;
    color: #007bff;
    font-weight: bold;
}
.go-detail:hover{
    background: #dee9f3;
}
/*アイコンの＋と×*/
.go-detail::before,
.go-detail::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #007bff;
}
.go-detail::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.go-detail::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.go-detail.close{
    margin-bottom: 3rem;
}
.go-detail.close::before{
	transform: rotate(45deg);
}

.go-detail.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f9f9f9;
	margin:0 3% 3% 3%;
    padding: 3%;
}
.entry-btn{
    display: flex;
    justify-content: space-around;
}
.entry-btn a{
    display: block;
    text-decoration: none;
    color: #FFF;
    font-weight: bold;
    font-size: 1.8rem;
    background: #007bff;
    border-radius: 0.2rem;
    padding: 1rem 4rem;
}
.entry-btn a:hover{
    background: #53a6ff;
    transition: 0.5s;
}
/* お問合せ */
#contact{
    max-width: 1200px;
    margin: 0 auto;
}
.contact-box{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}
.contact-box > div{
    width: 48%;
}
.titleLineBlack{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    font-family: 'Sansita One', cursive;
}
.titleLineBlack span{
    margin: 0 20px;
}
.titleLineBlack:after,
.titleLineBlack:before{
    content: "";
    width: 30%;
    height: 2px;
    background: black;
    display: block;
}
.sub-title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 22px;
}
.c-button {
    margin: 0 auto;
    color: #ffffff;
    background-color: #3572a8;
    font-size: 18px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-style: none;
}
.btn-contact{
    margin: 4rem 0;
    display: flex;
    justify-content: space-around;
}
@media only screen and (max-width: 620px){
    .contact-box{
        display: flex;
        justify-content: space-around;
        flex-direction: column;
    }
    .contact-box > div{
        width: 100%;
    }
    .contact-box > div:first-child{
        margin-bottom: 1rem;
    }
}
.entry-btn.disabled a{
    background: #CCC;
    pointer-events: none;
}
.text-center{
    text-align: center;
}
/* 過去のテーマ */
#theme-archive-area{
    margin-bottom: 3rem;
}
table.theme-archive{
    margin-bottom: 0;
}
table.theme-archive td,
table.theme-archive th{
    vertical-align: middle;
}