@charset "UTF-8";

.jht #course .h3__outer {
    margin-bottom: 60px;
}

/* コースヘッダー */
.jht #course header {
    margin-bottom: 45px;
}

.jht #course .caption {
    position: absolute;
    left: 10%;
    bottom: 10%;
    color: #000;
    line-height: 22px;
    /* text-shadow: 0px 2px 2px #00000054; */
    padding: 1em;
    background-color: #ffffff94;
}

.jht #course .caption h1 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

.jht #course .scroll {
    position: relative;
}

.jht #course .caption p {
    font-size: 14px;
    font-weight: 400;

}

.jht #course .mv__container {
    overflow: hidden;
}

.jht #course .mv__container img {
    aspect-ratio: 3 / 1;
    width: 100%;
    height: auto;
}

@media (max-width:768px) {
    .jht #course .caption {
        left: 6%;
        width: 90%;
    }

    .jht #course .caption p {
        font-size: 13px;
    }

    .jht #course .h3__outer {
        margin-bottom: 30px;
    }

    .jht #course .mv__container img {
        aspect-ratio: 5 / 6;
        height: auto;
    }
}

/* コース名 */
.jht #course .course__name {
    position: relative;
}

.jht #course header h2 {
    padding: 14px 3%;
    color: #fff;
    font-weight: 600;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8vw;
    line-height: 2.8vw;
}

.jht #course .course__img img {
    aspect-ratio: 7/1;
    height: auto;
}

@media (max-width:768px) {
    .jht #course header h2 {
        font-size: 18px;
        line-height: 25px;
        width: 100%;
    }

    .jht #course .course__img {
        overflow: hidden;
    }

    .jht #course .course__img img {
        height: 100px;
        object-fit: cover;
    }
}

.jht #course .wrapper {
    max-width: calc(1100px + 6%);
    padding: 0 6%;
    margin: 0 auto;
}

/* 料金 */
.jht #price.wrapper {
    margin-bottom: 110px;
}

.jht #price p {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.jht #price .price__container {
    margin-top: 1.2em;
    gap: 5%;
    justify-content: center;
}

.jht #price .price__inner {
    width: 47%;
    border: 3px solid #333;
    border-radius: 0 0 20px 20px;
    flex: 1;
    max-width: 65%;
}

.jht #price .price__ttl {
    background-color: #333;
    height: 80px;

}

.jht #price .price__inner p {
    font-weight: 500;
}

.jht #price .price__ttl-left p {
    font-size: 50px;
    color: #333;
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translate(0%, -50%);
}

.jht #price .price__ttl-left {
    background-color: #fff;
    width: 110px;
    background: url(../img/common/price__ttl.webp) no-repeat;
    background-size: cover;
    background-position: left top;
    height: 100%;
    position: relative;
}

.jht #price .price__ttl-right {
    flex-grow: 1;
    text-align: center;
    position: relative;
}

.jht #price .price__ttl-right.a::before {
    background: url(../img/common/price_a.webp) no-repeat;
}

.jht #price .price__ttl-right.b::before {
    background: url(../img/common/price_b.webp) no-repeat;
}

.jht #price .price__ttl-right.a::before,
.jht #price .price__ttl-right.b::before {
    position: absolute;
    content: "";
    background-size: cover;
    height: 80px;
    width: 95px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.jht #price .none::before {
    content: unset;
}

.jht #price .price__ttl-right p {
    font-size: 24px;
    color: #fff;
    text-align: center;
}


.jht #price .price__desc {
    margin: 1.7em 0 0.7em;
}

.jht #price .price__desc span {
    font-size: 0.6em;
}

.jht #price .price__desc p {
    font-size: 40px;
    font-weight: 500;
    color: #c94650;
    margin-bottom: 0.6em;
    position: relative;
}

.jht #price .price__desc small {
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

.jht #price .price__desc p:before,
.jht #price .price__desc p:after {
    position: absolute;
    top: 45%;
    width: 4rem;
    border-top: 3px double;
    content: '';
    color: #333;
}

.jht #price .price__desc p:before {
    left: 0;
}

.jht #price .price__desc p:after {
    right: 0;
}

.jht #price .price__desc table {
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 1.5em;
}

.jht #price .price__desc table td {
    padding: 0.5em 0;
    border-bottom: 1px solid #bbbbbb;
    padding-left: 1em;
}
.jht #price .private__price p {
    text-align: left;
    width: 65%;
    margin: 0 auto;
    padding-top: 3em;
}

@media (max-width:768px) {
    .jht #course .wrapper {
        padding: 0 3%;
    }

    .jht #price .price__inner {
        max-width: 100%;
        width: 100%;
    }

    .jht #price .price__ttl-right p {
        font-size: 17px;
        line-height: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .jht #price .price__desc p {
        font-size: 28px;
    }

    .jht #price .price__desc small {
        font-size: 14px;
    }

    .jht #price .price__container {
        gap: 2em;
    }

    .jht #price .price__ttl {
        height: 65px;
    }

    .jht #price .price__ttl-right {
        width: 100%;
    }

    .jht #price .price__ttl-right.a::before,
    .jht #price .price__ttl-right.b::before {
        background-size: contain;
        height: 65px;
        width: 85px;
    }

    .jht #price p {
        font-size: 14px;
    }

    .jht #price.wrapper {
        margin-bottom: 65px;
    }

    .jht #price .private__price p {
        font-size: 16px;
        width: 100%;
        padding: 0 3%;
        margin-top: 2em;
    }

    .jht #price .price__desc table {
        font-size: 16px;
    }
}

@media (max-width:348px) {

    .jht #price .price__ttl-right.a::before,
    .jht #price .price__ttl-right.b::before {
        height: 60px;
        width: 80px;
    }
}

/* remarkable_points */
.jht #remarkable_points ul {
    padding: 1em 0;
    margin-bottom: 60px;
    background-image: url(../img/common/course_point.webp), url(../img/common/course_point.webp);
    background-repeat: repeat-y, repeat-y;
    background-size: 10%, 10%;
    background-position: left top, right top;

}

.jht #remarkable_points ul li {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.jht #remarkable_points ul li span {
    font-weight: 400;
}

.jht #remarkable_points ul li::after {
    position: absolute;
    display: inline-block;
    content: "";
    border: 20px solid transparent;
    border-top: 17px solid #ffc104;
    left: 50%;
    bottom: -250%;
    transform: translateX(-50%);
}

.jht #remarkable_points ul li:last-child::after {
    content: none;
}

@media (max-width:768px) {
    .jht #remarkable_points ul {
        background-size: 8%;
        background-repeat: repeat-y;
    }

    .jht #remarkable_points ul li {
        font-size: 16px;
        width: 80%;
        margin: 0 auto 3em;
    }

    .jht #remarkable_points ul li:last-child {
        margin-bottom: unset;
    }

    .jht #remarkable_points ul li::after {
        bottom: -3.5em;
    }
}

/* book_btn */
.jht .book__btn {
    color: #fff;
    display: block;
    text-align: center;
    vertical-align: middle;
    background-color: #c94650;
    max-width: 500px;
    margin: 0 auto;
    padding: 1em 0;
    font-size: 30px;
    font-weight: 500;
    border: 3px solid #c94650;
    transition: 0.3s;
    margin-bottom: 75px;
    position: relative;
}

.jht .book__btn::after,
.jht .book__btn::before {
    display: inline-block;
    position: absolute;
    content: "";
    width: 13px;
    height: 10px;
    right: 33%;
    top: 45%;
}

.jht .book__btn::after {
    border-top: 3px solid #fff;
    transform: rotate(45deg);

}

.jht .book__btn::before {
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);

}

.jht .book__btn:hover {
    background-color: #fff;
    color: #c94650;
    opacity: 1;
}

@media (max-width:768px) {
    .jht .book__btn {
        font-size: 20px;
        max-width: 75%;
        min-width: 270px;
    }

    .jht .book__btn::after,
    .jht .book__btn::before {
        width: 11px;
        height: 8px;
        right: 27%;
        top: 40%;
    }
}

/* itinerary */
.jht #itinerary .itinerary__container {
    background-color: #c94650ad;
    padding-bottom: 75px;
    margin-bottom: 75px;
    padding-top: 50px;
}

.jht #itinerary .wrapper {
    background-color: #fff;
    padding: 0;
}

.jht #itinerary .sch {
    empty-cells: show;
    width: 100%;
}

.jht #itinerary .timeline {
    list-style: none;
    position: relative;
}


.jht #itinerary .book__btn {
    margin-top: 60px;
}

.jht #itinerary .timeline__time {
    text-align: center;
    font-size: 18px;
    position: relative;
}

.jht #itinerary .timeline .sch .timeline__time {
    font-weight: 500;
}

.jht #itinerary .timeline .sch td {
    padding: 1.5em 0;
    border-bottom: 5px solid #f7f0f0;
}

.jht #itinerary .timeline .sch .timeline__time {
    padding-left: 1em;
    padding-right: 1.5em;
}
.jht #itinerary .timeline .sch td.timeline__time {
    border-right: 3px solid #c7b083;
}

.jht #itinerary .timeline .sch .timeline__ttl {
    /* padding-left: 3em; */
    padding-left: 1em;
    width: 30%;
}

.jht #itinerary .timeline__ttl {
    font-size: 17px;
}

.jht #itinerary .timeline__required {
    text-align: center;
}


.jht #itinerary .timeline__img {
    margin-top: 1em;
}

.jht #itinerary .sch .timeline__time::after {
    content: "";
    position: absolute;
    /* left: 122%; */
    left: 91%;
    top: calc(1.5em - 2px);
    background: #c94650;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    z-index: 2;
}

.jht #itinerary .sch .timeline__time::before {
    content: "";
    position: absolute;
    /* left: 129.5%; */
    left: 96.5%;
    top: calc(1.5em + 3px);
    background: #fff;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    z-index: 3;
}

/* .jht #itinerary .time_l span {
    display: block;
    width: 100%;
    height: 100%;
    background: #c7b083;
} */

@media (max-width:768px) {

    .jht #itinerary .book__btn {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .jht #itinerary .itinerary__container {
        padding-bottom: 40px;
        padding-top: 0;
    }

    .jht #itinerary .wrapper {
        margin: 0 3%;
    }

    .jht #itinerary .timeline .sch .timeline__ttl {
        width: unset;
    }
}

/* お試し */
.jht #itinerary .table__head {
    background-color: #c94650ad;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.jht #itinerary .table__head th {
    padding-bottom: 15px;
}

.jht #itinerary .sch .table__head .timeline__time::before {
    content: unset;
}

.jht #itinerary .sch .table__head .timeline__time::after {
    content: unset;
}

/* .jht #itinerary .time_l {
    width: 3px;
    position: absolute;
    left: 7.25%;
    z-index: 1;
    transform: translateX(-50%);
    height: calc(100% - 78px);
    top: 78px;
} */

.jht #itinerary .timeline .sch .table__head .timeline__time {
    border-bottom: none;
}

@media (max-width:768px) {

    /* お試し2テーブルレスポンシブ */
    .jht #itinerary .timeline .sch td,
    .jht #itinerary .timeline .sch .timeline__ttl {
        padding: 1em 3% 1em 1.5em;
    }

    .jht #itinerary .timeline__ttl,
    .jht #itinerary .timeline__required,
    .jht #itinerary .timeline__remarks {
        display: block;
        width: 100%;
        empty-cells: hide;
    }
    .jht #itinerary .timeline__ttl.pc-only,
    .jht #itinerary .timeline__required.pc-only,
    .jht #itinerary .timeline__remarks.pc-only{
    display: none;
}
    .jht #itinerary .sch {
        empty-cells: hide;
    }

    .jht #itinerary .timeline .sch .timeline__time {
        padding-left: 3%;
        padding-right: 2em;
    }

    .jht #itinerary .timeline .sch td.timeline__time {
        border-right: 3px solid #c7b083;
    }

    .jht #itinerary .timeline__required {
        text-align: left;
    }

    /* .jht #itinerary .time_l {
        display: none;
    } */

    .jht #itinerary .sch .timeline__time::after {
        left: 89%;
        top: calc(1em - 2px);
    }

    .jht #itinerary .sch .timeline__time::before {
        left: 95%;
        top: calc(1em + 3px);
    }

    .jht #itinerary .table__head th {
        text-align: left;
        padding-left: 1.5em;
        
    }
}

/* details */
.jht #details {
    background-image: url(../img/common/course_detail-left.webp), url(../img/common/course_detail-right.webp);
    background-repeat: repeat-y, repeat-y;
    background-size: 10%, 10%;
    background-position: left top, right top;
    margin-bottom: 75px;
}

.jht #details table {
    font-size: 18px;
    font-weight: 400;
}

.jht #details table tr {
    line-height: 30px;
    border-bottom: 20px solid #ffffff00;
}

.jht #details table th {
    color: #fff;
    font-weight: 400;
    text-align: left;
    width: 220px;
    width: 23%;
    padding-left: 1em;
    position: relative;
    z-index: 1;
}

.jht #details table th::after {
    content: "";
    position: absolute;
    border-right: 13px solid transparent;
    border-top: 30px solid #2850a0;
    right: -13px;
    top: 0;
}
.jht #details table th::before {
    content: "";
    background-color: #2850a0;
    width: 100%;
    height: 30px;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
}

.jht #details table td {
    padding-left: calc(20px + 1em);
}

@media (max-width:768px) {
    .jht #details {
        background-size: 8%;
        background-repeat: repeat-y;
    }

    .jht #details table th,
    .jht #details table td {
        display: block;
        width: 70%;
        margin: 0 auto;
        text-align: center;
        text-indent: -1em;
        font-size: 12px;
    }

    .jht #details table tr {
        border-bottom: none;
        line-height: 22px;
    }

    .jht #details table th {
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }

    .jht #details table th::after {
        border-top: 22px solid #2850a0;
    }
    .jht #details table th::before {
        height: 22px;
    }
}

/* remarks */
.jht #remarks .remarks__container {
    background-color: #eee;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding: 70px 0;
}



.jht #remarks .remarks__container li {
    list-style: decimal;
    padding-left: 1em;
    margin-bottom: 1em;
}

.jht #remarks {
    margin-bottom: 120px;
}

@media(max-width:768px) {
    .jht #remarks {
        margin-bottom: 40px;
    }

    .jht #remarks .remarks__container {
        font-size: 0.7em;
    }

    .jht #remarks .remarks__container {
        padding: 40px 0;
    }

    .jht #remarks .remarks__container li {
        list-style-position: inside;
        text-indent: -1em;
    }
}

/* pickup */

.jht #pickup h3 {
    font-size: 30px;
    font-weight: 600;
    background-color: #c94650;
    color: #fff;
    text-align: center;
    padding: 1.5%;
}

.jht #pickup small {
    font-size: 14px;
    line-height: 18px;
}

.jht #pickup p {
    margin-bottom: 60px;
}

.jht #pickup table {
    width: 100%;
}

.jht #pickup table tbody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #c946514d;
    padding: 20px 0px;
    position: relative;
    margin-bottom: 1em;
}

.jht #pickup table tbody tr {
    width: 100%;
    padding-left: 2em;
    line-height: 2;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    border-right: 2px solid #c94650;
}

.jht #pickup table tbody tr:nth-child(2n) {
    border-right: none;
}

.jht #pickup table tbody tr a {
    color: #000;
    text-decoration: underline;
}

.jht #pickup table tbody th {
    width: 4em;
    vertical-align: top;
}

@media(max-width:768px) {

    .jht #pickup h3 {
        font-size: 20px;
    }

    .jht #pickup table tbody {
        grid-template-columns: repeat(1, 1fr);
    }

    .jht #pickup table tbody tr {
        border-right: none;
        font-size: 12px;
        font-weight: 400;
        padding: 0 1em;
    }

    .jht #pickup small {
        font-size: 10px;
        line-height: 10px;
    }

    .jht #pickup p {
        margin-bottom: 40px;
    }
}