.for-sp {
    display: none;
}

.for-pc {
    display: block;
}

.table-title {
    background-color: #034e7b;
}

.table-sub-title {
    background-color: #dbeaf7;
}

.top-title {
    position: relative;
    font-size: 20px;
    font-weight: 600;
}

.top-title::after {
    content: "";
    display: block;
    width: 350px;
    height: 5px;
    background: #ff5723;
    position: absolute;
    top: 10px;
}

.top-title::before {
    content: "";
    display: block;
    width: 350px;
    height: 5px;
    background: #ff5723;
    position: absolute;
    top: 10px;
    right: 0;
}


/*ハンバーカーメニュー*/

.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

.hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}

.globalMenuSp ul {
    background: #FFF;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #eae8e8;
}

.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    border-bottom: 1px solid #eae8e8;
}

.globalMenuSp ul li:hover {
    background: #ddd;
}

.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
    text-decoration: none;
}

.globalMenuSp.active {
    transform: translateY(0%);
}

.li-customize li {
    list-style: none;
    padding: 0.70rem 0.5rem;
    font-size: 14px;
}


/*ハンバーカーメニュー*/

#navbarResponsive .nav-link:hover {
    -ms-transform: scale(1.2);
    /* IE 9 */
    -webkit-transform: scale(1.2);
    /* Safari 3-8 */
    transform: scale(1.2);
}

#mainContent {
    margin: 3.5em 0em 0em 0em;
    min-height: 785px;
}

.masthead {
    margin-top: 0em;
}


/*講師の皆様へフォントサイズ*/

.customize-font {
    font-size: 13px;
}


/*講師の皆様へフォントサイズ*/

.top-screen {
    background: #00000061;
    padding: 3em;
}

.border-coustomize {
    border-top: 1px solid #64a19d;
}

.content-title {
    font-size: 25px;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    top: 30px;
    display: inline-block;
    left: 0px;
    width: 60px;
    border-bottom: 3px solid #ff5723;
    margin-top: 5px;
}

.traine-text {
    font-size: 14px;
}

.table-font {
    font-size: 13px;
    color: #3a3a3a;
}

.top-table-title-bg {
    background: #034e7b;
    color: #FFF;
}

.top-result-title-bg {
    background: #5886a2;
    color: #FFF;
}

.btn-customize {
    padding: 5px 15px;
    border-radius: 5px;
    color: #FFF;
    background: #607D8B;
    border: none;
    box-shadow: 5px 2px 5px black;
}

.btn-customize:hover {
    background: #ff5723;
    box-shadow: 2px 2px 5px black;
}

.btn-customize-register {
    padding: 5px 15px;
    border-radius: 5px;
    color: #FFF;
    background: #17a2b8;
    border: none;
    box-shadow: 5px 2px 5px black;
}

.btn-customize-register:hover {
    background: #034e7b;
    box-shadow: 2px 2px 5px black;
}

.header-logo-title {
    color: #506d91;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    right: 0px;
    top: 15px;
    font-size: 1.5rem;
}

@media screen and (min-width:769px) and (max-width:1200px) {
    .top-title::before {
        content: "";
        display: block;
        width: 25%;
        height: 5px;
        background: #ff5723;
        position: absolute;
        top: 10px;
        right: 0;
    }
    .top-title::after {
        content: "";
        display: block;
        width: 25%;
        height: 5px;
        background: #ff5723;
        position: absolute;
        top: 10px;
    }
    .header-logo-title {
        font-size: 1rem;
    }
}

@media screen and (max-width:768px) {
    .for-sp {
        display: block;
    }
    .for-pc {
        display: none !important;
    }
    .top-title::before {
        display: none;
    }
    .top-title::after {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        background: #ff5723;
        position: absolute;
        top: 30px;
    }
    .sp-logo {
        float: left !important;
    }
    .sp-right {
        text-align: left !important;
        padding-left: 15px;
    }
    .sp-btn {
        padding: 0.5em 1em 0.5em 1em;
    }
}

.d-title {
    font-weight: bolder;
    color: #5b5c5d;
}

@media screen and (max-width:414px) {
    .top-screen {
        background: #00000061;
        padding: 1.5em;
    }
    .footer-title-size {
        font-size: 15px;
        text-align: center;
    }
    .a-sp-fontSize {
        font-size: 13px;
    }
    .footer-p-size {
        font-size: 11px;
    }
    .top-title {
        font-size: 17px !important;
        letter-spacing: 2px !important;
        font-weight: 900;
    }
    .masthead h2 {
        max-width: 100%;
        font-size: 13px;
        line-height: 25px;
        text-align: left;
    }
}

.ins-title {
    color: #506d91;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    right: 35px;
    top: 5px;
}

.ins-hp-title {
    color: #506d91;
    font-size: xx-large;
}

.post-content h3 {
    background: #f7f7f7;
    border-left: solid #f89174 5px;
    padding: 14px 12px;
    border-bottom: solid 3px #dadada;
    clear: both;
}

.box-title {
    font-size: 18px;
}

.session li {
    padding: 0px 5px 0px 5px;
}

.box3 {
    padding: 0.2em 0.5em;
    margin: 2em 0;
    background: #d6ebff;
    box-shadow: 0px 0px 0px 10px #d6ebff;
    border: dashed 2px white;
}

.box3 p {
    margin: 0;
    padding: 0;
}

.box4 {
    padding: 0.2em 0.5em;
    margin: 2em 0;
    background: #d6ebff;
    box-shadow: 0px 0px 0px 10px #d6ebff;
    border: dashed 2px white;
}

.box4 p {
    margin: 0;
    padding: 0;
}

.box6 {
    padding: 0.5em 1em;
    background: -moz-linear-gradient(#506d91, #506d91);
    background: -webkit-linear-gradient(#506d91, #506d91);
    background: linear-gradient(to right, #506d91, #506d91);
    color: #FFF;
}

.box6 p {
    margin: 0;
    padding: 0;
}

.top-btn-customize {
    padding: 10px;
    width: 234px;
    max-width: 100%;
    box-shadow: 10px 8px 10px #6f6d6d;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    height: 88px;
    font-size: 14px;
    background-color: #d6ac2e !important;
    color: #fff;
    border-color: #d6ac2e;
    /* vertical-align: middle;
    display: table-cell; */
}

.sp-p-top {
    padding-top: 33px;
}

.top-btn-customize:hover {
    box-shadow: 10px 8px 10px #b3b0b0;
    text-decoration: none;
    color: #e0e0e0;
    background: #5886a2;
}

.content-list {
    list-style: disc;
    padding-left: 15px;
    line-height: 25px;
}

.right-mark-list {
    list-style: none;
    padding-left: 0px !important;
}

.right-mark-list li:before {
    content: ' ✔ ';
}

.list-red:before {
    color: #dc3545;
}

.right-mark-list li {
    display: flex;
}

.schedules {
    width: 110px;
    /* height: 138px; */
    background: #659ce0;
    clip-path: polygon(100% 0, 115% 60%, 50% 100%, 0 68%, 0 0, 50% 30%);
    padding-top: 60px;
    font-size: 11px;
    color: #fff;
}

.schedule-text {
    width: 100%;
    /* height: 95px; */
    border: solid 2px #659ce0;
    padding: 10px;
}

.schedule-child {
    margin-top: -5px;
}

@media screen and (min-width:770px) {
    .schedules {
        height: 138px;
    }
    .schedule-text {
        height: 95px;
        border-radius: 0px 10px 10px 0px;
    }
    .schedule-container {
        display: flex;
    }
}

@media screen and (max-width:770px) {
    .schedules {
        height: 138px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .schedule-text {
        border-radius: 10px 10px 10px 10px;
        padding-bottom: 0px !important;
    }
}

.p-vertical-middle {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    /* 縦方向中央揃え（Safari用） */
    align-items: center;
    /* 縦方向中央揃え */
    -webkit-justify-content: center;
    /* 横方向中央揃え（Safari用） */
    justify-content: center;
    /* 横方向中央揃え */
}

.download-link a {
    color: #0a89f4;
}

.show_div {
    display: block !important;
}

.hide_div {
    display: none !important;
}

.div-title {
    background-color: #ededed;
    font-size: larger;
    font-weight: bolder;
    color: #5b5c5d;
}

.material-sub-title {
    padding: 5px 20px;
    font-weight: bold;
    font-size: 20px;
}