@charset "UTF-8";
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
    color: #1f1f1f;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    overflow-x: hidden;
    box-shadow: 0px 12px 25px rgba(54, 54, 54, 0.5) !important;
}
img{
    display: inline-block;
    width: 100%;
    vertical-align:top;
}

.wrapper{
    max-width: 750px !important;
    width: 100%;
    margin: 0 auto;
}
.pc{
    display: block; 
}
.sp{
    display:none;
}
@media screen and (max-width:768px) {
    .wrapper{
        max-width: 768px !important;
    }
    .pc{
        display: none; 
    }
    .sp{
        display: block;
    }
}

/*クリック時の青枠を消す*/
*:focus {
    outline: none;
    }


.bold{
    font-weight: bold !important;
}
.teC {
    text-align: center;
}

.content {
    width: 90%;
    text-align: center;
    margin: auto 5%;
    background: #fff;
    box-shadow: 0px 10px 10px rgba(54, 54, 54, 0.5) !important;
}
.content2 {
    width: 90%;
    text-align: center;
    margin: auto 5%;
}

.anno{
    font-size: 0.8em !important;
    line-height: 1.5em !important;
    font-weight: normal !important;
}

.anno2{
    font-size: 0.8em !important;
    line-height: 1.5em !important;
    font-weight: normal !important;
    display: inline-block;
}
.anno-container {
    text-align: right; /* 親要素で右寄せ */
}

.mt5{
    margin-top: 5% !important;
}
.mt15{
    margin-top: 15% !important;
}

@media screen and (max-width:768px) {
    .anno2{
        font-size: 10px !important;
        line-height: 1.5em !important;
        font-weight: normal !important;
        display: inline-block;
    }
}


/*-----------------------動画-----------------------*/
.responsive {
    width: 100%;
    aspect-ratio: 16/9;
}

iframe {
    width: 100%;
    height: 100%;
}

.video {
    width: 70%;
    padding: 3% 2%;
    background: #fff;
    box-shadow: 0px 10px 10px rgba(163, 163, 163, 0.4) !important;
}

/*-----------------------fv-----------------------*/
.fv {
    position: relative;
}
header {
    position: fixed;
    max-width: 750px;
    width: 100%;
    top: 0; 
    left: 0; 
    right: 0;
    /*position: absolute;*/
    margin: 0 auto;
    background: #fff;
    box-shadow: 0px 10px 10px rgba(163, 163, 163, 0.2) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 2%;
    z-index: 100;
    box-sizing: border-box;
}
header h1{
    text-align: left;
}
header img {
    width: 75%;
}
.mv {
    padding-top: 125px;
    
}
.h_btn img{
    width: 100%;
}
@media screen and (max-width:768px) {
    header {
        padding: 3% 4% 2%;
    }
    .mv {
    padding-top: 70px;
    
}
}


/*-----------------------cta-----------------------*/
.cta-area {
    padding: 20% 0;
    background: linear-gradient(40deg, #c10000, #ff2400);
}

.cta-area .icon{
    display: block;
    width: 70%;
    margin: 0 auto;
}

/*-----------------------cta2-----------------------*/
/*.cta2 {
    background: url(../img/cta_bg.png) no-repeat;
    background-size: contain;
    margin: 5% 0 0;
}*/
.cta2 .content2{
    text-align: center;
    margin: 0 auto;
    padding: 10% 0 8%;
}

/*-----------------------spring_cp-----------------------*/
.spring_cp {
    position: relative;
}
.spring_cp .btn{
    position: absolute;
    bottom: 25px;
}


/*-----------------------media-----------------------*/
.media .content2 h2 img {
    width: 70%;
    margin-bottom: 10%;
}


/*-----------------------intro-----------------------*/
.intro {
    background: #eaeaea;
    padding: 25% 0 20%;
}
.intro .content h2 img{
    margin-top: -7%;
}
.intro .content img {
    width: 90%;
    margin-bottom: 10%;
}

.marketing{
    padding: 10% 0 20%;
}
.marketing .content img {
    margin-bottom: 10%;
}



/* アコーディオン */
#readMoreBlock {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    gap: 35px;
  }
  
  .readMoreInner {
    width: 100%;
    margin: 0 auto;
    padding: 25px 0 45px;
    border-radius: 3px;
    box-sizing: border-box;
    background: #FFF;
  }
  .readMoreContainer {
    position: relative;
    height: auto;
    max-height: 50px;
    overflow: hidden;
    transition: max-height 0.6s;
  }
  .readMoreContainer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: 1s;
    background: linear-gradient(to bottom, transparent 40%, #ffffff 100%);
    pointer-events: none;
  }
  .readMoreContainer.show:after {
    z-index: -1;
    opacity: 0;
  }
  .readMoreBtn {
    display: block;
    margin: 0 auto;
    padding: 8px 40px;
    border: 0;
    color: #ffffff;
    background-color: #363636;
    cursor: pointer;
    letter-spacing: 0.13em;
    width: 60%;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    border-radius: 50px;
    background-color: #363636;
    filter: drop-shadow(13px 13px 10px rgba(0, 0, 0, 0.3));

    -webkit-transition: all 10s;
    -moz-transition: all 10s;
    -ms-transition: all 10s;
    -o-transition: all 10s;
    transition: all 10s;
}
.readMoreContainer p:last-child {
    margin-bottom: 20px;
}


/*career-up*/
.career-up{
    padding: 10% 0;
    background-image: linear-gradient(#e6e6e6 1px, transparent 0), linear-gradient(90deg, #e6e6e6 1px, transparent 0);
    background-size: 30px 30px;
}
.career-up img{
    width: 100%;
    margin: 0 auto;
}
.case{
    margin: 10% 0 15%;
    padding: 30% 0 23%;
    background: url(../img/case_bg.png) no-repeat;
    background-size: cover;
}
/*slider*/
.slick .slick-prev:before, .slick .slick-next:before {
    font-size: 50px;
    color: #000;
}
.slick .slick-next:before, .slick .slick-prev:before {
    content: "";
    display: inline-block;
    background-image: url(../img/work-style_arrow_r.png);
    background-size: contain;
    background-repeat: no-repeat;
    align-items: top;
    vertical-align: middle;
    cursor: pointer;
    width: 100%;
    max-width: 60px;
    height: 60px;
}
.slick .slick-prev:before {
    background-image: url(../img/work-style_arrow_l.png);
}
.slick .slick-next {
    right: 2vw;
}
.slick .slick-prev{
    left: 2vw;
}
.slick .slick-prev, .slick .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 48%;
    display: block;
    width: 25px;
    height: 25px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
/*スライダー共通*/
.sliderArea {
    max-width: 100%;
    margin: 5% auto 0 auto;
    padding: 0 25px;
    padding: 0 5px;
}
.sliderArea.w300 {
    max-width: 300px;
}
.slick-slide {
    margin: 0 5px;
}
.slick-slide img {
    width: 100%;
    height: auto;
    margin-bottom: 3%;
}
.slick-prev, .slick-next {
    z-index: 1;
}
.slick-prev:before, .slick-next:before {
    opacity: 1 !important;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: 0;
}
.slick-active {
    opacity: 1;
}
.slick-current {
    opacity: 1;
}
.case .slick-dots li button:before {
    font-family: 'slick';
    font-size: 15px;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #194f8c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.work-style .ttl{
    width: 50%;
}


/*-----------------------recommend-----------------------*/
.recommend{
    padding: 20% 0;
    background-color: #ffd6d5;
}

.recommend .content {
    width: 90%;
    text-align: center;
    margin: auto 5%;
    background: #fff;
    box-shadow: 0px 6px 10px rgba(266, 65, 58, 0.3) !important;
}
.recommend h2 {
    margin-bottom: 5%;
}
.recommend .box{
    width: 80%;
    padding: 7% 5%;
    margin: 5% auto;
    text-align: left;
}
.recommend .box h4{
    position: relative;
    margin: 7% 0 5%;
    padding: 0 35px;
    text-align: center;
    color: #e2413a;
    font-size: 1.3em;
    font-weight: bold;
}
.recommend .box h4:before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background: #e2413a;
}
.recommend .box h4 span {
    position: relative;
    padding: 0 0.5em;
    background: #fff;
}

.recommend .box p{
    /*margin-top: 4%;*/
    font-weight: bold;
    font-size: 1em;
    line-height: 1.8em;
    text-align: justify;
}

.recommend .box .name {
    text-align: center;
    line-height: 1.5;
    font-size: 1.2em;
    background-color: #ffe3e2;
    padding: 3% 1% 5%;
    margin-bottom: 3%;
    letter-spacing: 0.15rem;
}
.recommend .box .name span {
    font-size: 80%;
    color: #e2413a;
}

/*-----------------------course-----------------------*/
.course {
    background: #fff;
    padding: 10% 0 20%;
}
.course .content2 h2 img{
    width: 70%;
}
.course .content2 img {
    margin-bottom: 10%;
}
.course .box {
    width: 94%;
    text-align: center;
    margin: auto;
    padding: 5% 3%;
    background-color: #eaeaea;
    box-shadow: 0px 10px 10px rgba(54, 54, 54, 0.3) !important;
}


/*-----------------------course-----------------------*/
.course {
    background: #eaeaea;
    padding: 25% 0 20%;
}
.course .content2 h2 img{
    width: 70%;
}
.course .content2 img {
    margin-bottom: 10%;
}


/*動画講座一覧*/
.accordion {
    margin: 5% auto 10%;
    width: 100%;
}
.accordion .toggle {
    display: none;
}
.accordion .Label {
    /*タイトル*/
    padding: 2%;
    display: block;
    color: #fff;
    background: #e2413a;
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
}
.accordion .Label::after {
    /*タイトル横の矢印*/
    content: "";
    width: 9px;
    height: 9px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 6px);
    right: 30px;
    transform: rotate(135deg);
}
.accordion .Label,
.accordion .list {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.accordion .list {
    /*本文*/
    height: 0;
    margin-bottom: 17px;
    padding: 1% 0 0 0;
    overflow: hidden;
    text-align: left;
}
.toggle:checked+.Label+.list {
    /*開閉時*/
    height: auto;
    padding: 3% 0 0 0;
    transition: all .3s;
}
.toggle:checked+.Label::after {
    transform: rotate(-45deg) !important;
}

/*動画講座一覧*/
.course .list .scroll{
    overflow:scroll;
    overflow-x: hidden;
    height: 500px;
}

.course table {
    width: 100% !important;
    font-size: 1em;
    text-align: center !important;
}
.course table th {
    background-color: #696969;
    color: #fff;
    padding: 2% 1%;
    border: solid 2px #eaeaea;
    text-align: center;
    font-size: 0.9em;
    font-weight: bold;
    vertical-align: middle;
}
.course table th:first-of-type {
    width: 8%;
}
.course table th:nth-child(2) {
    width: 20%;
}
.course table td {
    vertical-align: middle !important;
    border: solid 2px #eaeaea;
    padding: 0.5%;
    background-color: #fff;
    font-size: 1.2em;
    text-align: left;
}

/*-----------------------instructor-----------------------*/
.instructor{
    padding: 20% 0;
    text-align: center;
}
.instructor .ttl img {
    display: block;
    width: 70%;
    margin: 0 auto 6%;
}
.instructor h3 {
    position: relative;
    padding: 2%;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin: 5% 0 7%;
}
.instructor h3:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #000;
}
.instructor p{
    font-size: 1.2em;
    padding: 0 1%;
    width: 80%;
    margin: 0 auto 7%;
    text-align: justify;
    line-height: 1.8;
    
}
.instructor .slick2 img{
    width: 60%;
    margin: 0 auto;
}
.instructor h3 img {
    width: 30% !important;
    margin: auto;
    text-align: center;
}

/*slider*/
.slick2 .slick-prev:before, .slick2 .slick-next:before {
    font-size: 50px;
    color: #000;
}
.slick2 .slick-next:before, .slick2 .slick-prev:before {
    content: "";
    display: inline-block;
    background-image: url(../img/instructor_arrow_r.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    align-items: top;
    vertical-align: middle;
    cursor: pointer;
    width: 100%;
    max-width: 60px;
    height: 60px;
}
.slick2 .slick-prev:before {
    background-image: url(../img/instructor_arrow_l.jpg);
}
.slick2 .slick-next {
    right: 5vw;
}
.slick2 .slick-prev{
    left: 5vw;
}
.slick2 .slick-prev, .slick2 .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 48%;
    display: block;
    width: 43px;
    height: 43px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

@media screen and (max-width: 760px) {
.instructor p{
    font-size: 0.7rem;
    width: 80%;
    text-align: center;
}

.instructor h3 {
    font-size: 1.6em;
}

.course table td{
    font-size: 10.9px;
}
}


/*-----------------------price-----------------------*/
.price {
    padding: 20% 0;
    background: #eaeaea;
}
.price .ttl img{
    width: 50%;
}
.price table {
    background: #fff;
    font-size: 0.8em !important;
}

.price table {
    width: 100% !important;
    font-size: 0.9em;
    text-align: center !important;
}
.price table tr:first-child td{
    padding: 2% 1%;
    font-weight: bold;
    color: #fff;
}
.price table tr:first-of-type th{
    background: #fff;
}
.price table th:first-of-type {
    width: 21%;
}
.price table tr:first-child td:first-of-type {
    background: linear-gradient(40deg, #c10000, #ff2400);
    width: 26%;
}
.price table tr:first-child td:nth-of-type(2) {
    background: #e2413a;
    width: 26%;
}
.price table tr:first-child td:nth-of-type(3) {
    background: #f87b77;
    width: 26%;
}
.price table th {
    background: #4f4f4f;
    color: #fff;
    padding: 2% 1%;
    vertical-align: middle !important;vertical-align: middle !important;
    border: solid 2px #fff;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
}
.fcR {
    color: #c10000;
}
.fsL {
    font-size: 120%;
    font-weight: bold;
}
.frame{
    border: 4px solid #c10000 !important;
}

.price table td {
    vertical-align: middle !important;
    border: solid 2px #fff;
    padding: 0.5% 0;
    background: #fff2f2;
}

/*-----------------------company-----------------------*/
.company {
    /*padding: 10% 0 20%;*/
}
.company .ttl img{
    display: block;
    margin: 0 auto;
    width: 70%;
}
.company .btn {
    width: 80%;
}



/*-----------------------from-----------------------*/
.form {
    margin-top: 40px;
    background-color: #fff;
}
.form .inner {
    box-sizing: border-box;
    padding: 20px 0 50px;
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
}

.form .table table {
    width: 100%;
    text-align: left;
    border-spacing: 10px;

}
.form .table table th{
    width: 100%;
    font-weight: bold;
    padding-top: 20px;
}
.form .table table th, .form .table table td {
display: block;
font-size: 1em;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}
input,
textarea,
select {
    padding: 10px;
    font-size: 1em;
    letter-spacing: 1px;
    border: none;
    width: 100%;
    border-radius: 5px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    box-sizing: border-box;
    color: #555;
    background-color: #ececec;
    margin: 5px 0;
}
textarea {
    width: 100%;
    height: 150px;
    resize: vertical;
}
textarea:focus {
    outline: 1px solid #86cbff;
}
input:focus {
    outline: 1px solid #86cbff;
}
input.noneboder,
input.noneboder:focus {
    outline: none;
    border: none;
}

.submit {
    text-align: center;
    margin-top: 50px;
}
.button {
    position: relative;
    width: 90%;
    height: 60px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    background-image: linear-gradient(40deg, #c10000, #ff2400);
    border-radius: 40px;
    border: none;
    letter-spacing: 1px;
    line-height: 0em;
    font-size: 1.3em;
}
.must {
    background: #c10000;
    color: #fff;
    font-size: 0.8em;
    font-weight: normal;
    text-align: center;
    line-height: 1.5em;
    box-sizing: border-box;
    padding: 2px 7px 3px;
    border-radius: 5px;
    margin: 0 10px 0 0;
}
@media screen and (max-width: 760px) {
    #contact .inner {
        padding: 10px;
        width: 98%;
    }
}


/*-----------------------Q&A-----------------------*/
.qa{
    padding: 20% 0;
}
.qa .ttl{
width: 50%;
margin-bottom: 5%;
}

.Qa-Box {
    width: 95%;
    margin: 0 auto;
    text-align: left;
}
.Qa-Box p{
    font-size: 1.1em !important;
    font-weight: bold !important;
    text-align: justify;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
    display: flex;
    align-items: baseline;
    margin: 30px 0 10px;
}

.Qa-Box .Qa dt p {
    margin: 0;
    padding-left: 10px;
    font-weight: bold;
    width: 100%;
}

.Qa-Box .Qa dd p {
    margin: 0;
    padding-left: 10px;
    width: 100%;
}

.Qa-Box .Qa dt::before {
    content: "";
    display: flex;
    background-image: url(../img/icon_p.png);
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 40px;
    height: 40px;
}

.Qa-Box .Qa dd::before {
    content: "";
    display: flex;
    background-image: url(../img/icon_a.png);
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 40px;
    height: 40px;
}

.Qa-Box .Qa dd:nth-child(even){
    padding-bottom: 4%;
    border-bottom: solid 1px #c10000;
}


/*-----------------------footer-----------------------*/
footer{
    background: #3e3e3e;
    padding: 8% 4% 10%;
    color: #fff;
    font-size: 0.9em;
    line-height: 2em;
    text-align: center;
}
footer .content3 {
    text-align: center;   
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列に設定 */
    gap: 5px; /* 要素間の間隔 */
}
footer a{
    color: #fff;
    text-decoration: none;
    text-align: center;
}
@media screen and (max-width: 760px) {
    footer .content3 {
        grid-template-columns: 1fr; /* 1列に切り替え */
    }
}

/*フォーム確認画面：利用規約同意*/
.legal_area {
    width: 95%;
    margin: auto;
}
.legal_area .ttl{
    position: relative;
    font-size: 1.2em;
    font-weight: bold;
}
.legal_area .ttl:before {
    position: absolute;
    bottom: -8px;
    left: calc(50% - 50px);
    width:100px;
    height: 2px;
    content: '';
    border-radius: 3px;
    background: #000;
}
.legal_area .sub{
    text-align: center;
    margin: 25px 0 10px;
    font-size: 0.9em;
}
.legal_box {
    width: 80%;
    overflow: auto;
    height: 300px;
    background: #eeeeee;
    padding: 4% 3%;
    margin: 10px auto;
    text-align: left;
    border-radius: 10px;
}
.legal_box p{
    font-size: 80%;
}
.legal_box h3 {
    font-weight: bold;
}
/*スクロールバーの横幅指定*/
.scrollArea.deco::-webkit-scrollbar {
    width: 10px;
}
/*スクロールバーの背景色・角丸指定*/
.scrollArea.deco::-webkit-scrollbar-track {
  border-radius: 10px;
	background: #f2f2f2;
}
/*スクロールバーの色・角丸指定*/
.scrollArea.deco::-webkit-scrollbar-thumb {
  border-radius: 10px;
	background:#858585;
}


/*-----------------------terms-----------------------*/
.terms {
    background: #eeeeee;
}
.terms h2 {
    font-weight: bold;
    text-align: center !important;
    font-size: 1.8rem;
    margin-bottom: 2%;
}
.terms h3 {
    font-size: 1.2rem;
    margin-bottom: 1%;
}
.terms .content2 {
    padding-top: 145px;
    padding-bottom: 50px;
    text-align: justify;
}
.terms ol {
    padding-left: 20px;
    list-style-type:decimal;
}
.terms ul {
    padding-left: 20px;
    list-style: disc;
}

.terms li.none {
    list-style: none !important;
}

.terms footer .content3 {
    padding-top: 1%;
    padding-bottom: 1%;
}

/*-----------------------legal-----------------------*/
.legal {
    background: #eeeeee;
}
.legal h2 {
    font-weight: bold;
    text-align: center !important;
    font-size: 1.8rem;
    margin-bottom: 2%;
}
.legal h3 {
    font-size: 1.2rem;
    margin-bottom: 1%;
}
.legal .content2 {
    padding-top: 145px;
    padding-bottom: 50px;
    text-align: justify;
}
.legal ol {
    padding-left: 20px;
    list-style-type:decimal;
}
.legal ul {
    padding-left: 20px;
    list-style: disc;
}

.legal li.none {
    list-style: none !important;
}

.legal footer .content3 {
    padding-top: 1%;
    padding-bottom: 1%;
}