@charset "UTF-8";

/* CSS Document */

/*----------------------------------------
PC用レイアウト(768px以上スクリーン)
----------------------------------------*/

/* body全体の初期スタイル調整 */

html,
body {
    width: 100%;
}

body {
    font-size: 62.5%;
    /*emの計算をしやすくするための定番設定*/
    font-family: "YuGothic", "Yu Gothic medium", "Hiragino Sans", "Meiryo", "sans-serif";
    font-weight: normal;
    color: #000;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* リンク文字の設定 */


/* ブラウザのCSSをリセット */

p {
    margin: 0 !important;
    margin: 0 !important;
}

section {
    clear: both;
    overflow: auto;
}

/*----------------------------------------
見出しタグ設定(PC)
----------------------------------------*/

h2 {
    text-align: center;
}

h2 img {
    width: 70%;
    margin-top: 5%;
    margin-bottom: 3%;
}

.contents h2 {
    margin: 0 0 0em;
    padding: 0.3em 0.9em;
    font-size: 2.3em;
    font-weight: normal;
    color: #464646;
    text-align: center;

}

.contents h3 {
    margin: 0 0 0em;
    font-size: 2em;
    font-weight: normal;
    color: #a6a6a6;
    padding: 0.25em 0.5em;
    /*上下 左右の余白*/
    border-left: solid 5px #a6a6a6;
    /*左線*/
}

/*----------------------------------------
全体レイアウト/背景設定(PC)
----------------------------------------*/

/* 全体エリア(全体背景を設定するにはここ) */

.main {
    width: 100%;
    background-image: url(../images/pc_bg.jpg);
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

.fv {
    width: 700px;
    margin: 0 auto;
    box-shadow: 0px 0px 1px #a6a6a6;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/*カラム内部のサイズ*/
#main-contents {
    width: 700px;
    background-color: #fff;
    box-shadow: 0px 0px 1px #a6a6a6;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: 0 auto;
}

#home {
    width: 100%;
}

.contents {
    margin: 0 auto;
    max-width: 700px;
    background: #fff;
    padding: 1% 0;
}

.contents_inner {
    margin: 5% 5%;
    padding: 5% 5%;
    border-radius: 20px;
}

.contents p {
    line-height: 1.8em;
    font-size: 1.6em;
    color: #606060;
}

table {
    margin: 0 auto;
}

.contents td {
    line-height: 1.8em;
    font-size: 1.4em;
    color: #606060;
    padding-left: 8%;
}

/* カラム全体の幅を変更する */



.cta_box {
    background-image: url(../images/cta_area_bg.jpg);
    background-repeat: no-repeat;
    background-size: 100%;

}

.cta_area_01-01 {
    position: relative;
    z-index: 9999;
}

.accordion_wrap_01-01 {
    position: absolute;
    top: 70%;
    left: 6.5%;
    width: 86.9%;
}

.cta_area_01-02 {
    position: relative;
}

.accordion_wrap_01-02 {
    position: absolute;
    top: 46%;
    left: 6.5%;
    width: 86.9%;
}

.accordion {
    margin-bottom: 3%;
    position: relative;
    margin: 0 auto;

}

.accordion_btn {
    cursor: pointer;
    position: relative;
}

.accordion_btn::before {
    content: '';
    display: inline-block;
    border-radius: 20%;
    width: 3%;
    height: 3px;
    background-color: #a6a6a6;
    position: absolute;
    right: 3.97%;
    top: 40%;
    transform: translateY(-50%);
    transition: opacity 1s;
}

.accordion_btn::after {
    content: '';
    display: inline-block;
    border-radius: 20%;
    width: 3%;
    height: 3px;
    background-color: #a6a6a6;
    position: absolute;
    right: 3.97%;
    top: 40%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
}

.accordion_btn.show::before {
    opacity: 0;
}

.accordion_btn.show::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion_content {
    display: none;
}

/*----------------------------------------
よくある質問
----------------------------------------*/

.box_qa {
    background-image: url(../images/qa.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}

.accordion__wrap {
    padding-top: 90%;
    padding-bottom: 20%;
}

.accordion {
    margin: 0 auto;
    margin-bottom: 3%;
    width: 90%;
    position: relative;
}

.accordion__btn {
    cursor: pointer;
    position: relative;
}

.accordion__btn::before {
    content: '';
    display: inline-block;
    border-radius: 20%;
    width: 4%;
    height: 3px;
    background-color: #f28b40;
    position: absolute;
    right: 3.97%;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
}

.accordion__btn::after {
    content: '';
    display: inline-block;
    border-radius: 20%;
    width: 4%;
    height: 3px;
    background-color: #f28b40;
    position: absolute;
    right: 3.97%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
}

.accordion__btn.show::before {
    opacity: 0;
}

.accordion__btn.show::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion__content {
    display: none;
}


/*----------------------------------------
CTAエリア01
----------------------------------------*/

.cta_area_01-02 {
    position: relative;
}

.cta_btn_01 img {
    position: absolute;
    margin-top: -28%;
    left: 5%;
    width: 90%;
    transition-duration: .4s;
}

.cta_btn_01:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cta_area_01-02 .anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
CTAエリア02
----------------------------------------*/

.cta_area_02 {
    position: relative;
}

.cta_btn_02 img {
    position: absolute;
    margin-top: -28%;
    left: 5%;
    width: 90%;
    transition-duration: .4s;
}

.cta_btn_02:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cta_area_02 .anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
選べる3つのコース
----------------------------------------*/

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 5%;
}

.tab-wrap:after {
    content: '';
    width: 100%;
    display: block;
    order: -1;
}

.tab-label.tab01 {
    background: url(../images/s_off.png) no-repeat;
    background-size: contain;
    padding: 10%;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    flex: 1;
}

.tab-label.tab02 {
    background: url(../images/s_off_02.png) no-repeat;
    background-size: contain;
    padding: 10%;
    margin-left: 2%;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    flex: 1;
}

.tab-label:not(:last-of-type) {}

.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
}

.tab-content img {
    width: 100%;
}

.tab-switch:checked+.tab-label.tab01 {
    background: url(../images/s_on.png) no-repeat;
    background-size: contain;
}

.tab-switch:checked+.tab-label.tab02 {
    background: url(../images/s_on_02.png) no-repeat;
    background-size: contain;
}

.tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    opacity: 1;
    transition: .5s opacity;
}

.tab-switch {
    display: none;
}

/*----------------------------------------
スライドショー2
----------------------------------------*/

.flow {
    position: relative;
    overflow: hidden;
}

.slide_show {
    position: absolute;
    max-width: 100%;
    width: 100%;
    bottom: 8.5%;
}

.slide_show img {
    opacity: .5;
    transform: scale(.8);
    transition: opacity .5s, transform .5s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100%;
    height: auto;
}

.slide_show .slick-center img {
    opacity: 1;
    transform: scale(1);
}

.slide_show button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.slide_show button:focus {
    outline: none;
}

.slide_show button.arrow-common {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    width: 14%;
    padding-top: 6%;
    cursor: pointer;
    z-index: 5;
}

.slide_show button.arrow-prev {
    background-image: url(../images/arrow_l.png);
    left: 4%;
    width: 4%;
}

.slide_show button.arrow-next {
    background-image: url(../images/arrow_r.png);
    right: 4%;
    width: 4%;
}

/*----------------------------------------
講師紹介
----------------------------------------*/

.introduction {
    position: relative;
    overflow: hidden;

}

.loop {
    max-width: 700px;
    margin: 0 auto;
    position: absolute;
    bottom: 42.5%;
    bottom: 2.5%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.loop_box {
    display: flex;
    width: 20%;
}

.loop_box img {
    min-width: 110vw;
}

.loop_box img:first-child {
    animation: loop 100s -50s linear infinite;
}

.loop_box img:last-child {
    animation: loop2 100s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

/*----------------------------------------
受講生の声
----------------------------------------*/

.voice {
    position: relative;
}

.voice-wrap {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 90.7%;
    bottom: 3.5%;
    left: 5.5%;
}

.voice-wrap:after {
    content: '';
    width: 100%;
    display: block;
    order: -1;
}

.voice-label {
    margin-bottom: 2%;
}

.voice-label.voice01 {
    background: url(../images/voice01_s-btn_off.png) no-repeat;
    background-size: contain;
    padding: 4.5%;
    order: -1;
    z-index: 1;
    cursor: pointer;
    flex: 1;
}

.voice-label.voice02 {
    background: url(../images/voice02_s-btn_off.png) no-repeat;
    background-size: contain;
    padding: 4.5%;
    order: -1;
    z-index: 1;
    cursor: pointer;
    flex: 1;
}

.voice-label.voice03 {
    background: url(../images/voice03_s-btn_off.png) no-repeat;
    background-size: contain;
    padding: 4.5%;
    order: -1;
    z-index: 1;
    cursor: pointer;
    flex: 1;
}

.voice-label.voice04 {
    background: url(../images/voice04_s-btn_off.png) no-repeat;
    background-size: contain;
    padding: 4.5%;
    order: -1;
    z-index: 1;
    cursor: pointer;
    flex: 1;
}

.voice-content {
    width: 98.3%;
    height: 0;
    overflow: hidden;
}

.voice-content img {
    width: 100%;
}

.voice-switch:checked+.voice-label.voice01 {
    background: url(../images/voice01_s-btn_on.png) no-repeat;
    background-size: contain;
}

.voice-switch:checked+.voice-label.voice02 {
    background: url(../images/voice02_s-btn_on.png) no-repeat;
    background-size: contain;
}

.voice-switch:checked+.voice-label.voice03 {
    background: url(../images/voice03_s-btn_on.png) no-repeat;
    background-size: contain;
}

.voice-switch:checked+.voice-label.voice04 {
    background: url(../images/voice04_s-btn_on.png) no-repeat;
    background-size: contain;
}

.voice-switch:checked+.voice-label+.voice-content {
    height: auto;
    overflow: auto;
    opacity: 1;
    transition: .5s opacity;
}

.voice-switch {
    display: none;
}

/*----------------------------------------
固定ボタン
----------------------------------------*/

.fadein {
    width: 43%;
    position: fixed;
    bottom: 1%;
    left: 26.75%;
    z-index: 9999999;
    transition: .3s;
    /* 非表示にする */
    opacity: 0;
    visibility: hidden;

}

.is-active {
    /* 表示する */
    opacity: 1;
    visibility: visible;
}

.is-hidden {
    visibility: hidden;
    opacity: 0;
}



a.back_btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 30%;
    margin: auto;
    padding: 0.9rem 0;
    font-weight: normal;
    border: 1px solid #a6a6a6;
    color: #a6a6a6;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 1.3em;
}

a.back_btn:hover {
    color: #fff;
    background: #a6a6a6;
}

.back_btn:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}

/*----------------------------------------
フッター部分
----------------------------------------*/

.footer {
    background-color: #a6a6a6;
    padding: 2em 0em;
    text-align: center;
    font-size: 1.4em;
    color: #fff;
}

.footer a {
    color: #fff;
}