@charset "UTF-8";
#schedule-list .category-wrap {
    display: flex;
    gap: 40px;
    justify-content: end;
}
#schedule-list .category-wrap li {
    border-bottom: 0;
    padding: 0;
}
#schedule-list .category-wrap li a {
    font-family: var(--en);
    font-size: 1.6rem;
}
#schedule-list .category-wrap li.on a {
    opacity: 0.5;
}
#schedule-list .list li {
    padding: 0 16px 32px 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color1);
}
#schedule-list .list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#schedule-list .list li a .leftBox {
    width: 20.61%;
}
#schedule-list .list li a .leftBox .imgWrap {
    overflow: hidden;
}
#schedule-list .list li a .leftBox .imgWrap img {
    width: 100%;
    transition: 0.4s all;
}
#schedule-list .list li a:hover .leftBox .imgWrap img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#schedule-list .list li a .rightBox {
    width: 75.86%;
}
#schedule-list .list li a .rightBox .tag {
    font-family: var(--jpMin);
    font-size: 1.4rem;
    background: var(--color1);
    padding: 6px 10px;
    min-width: 107px;
    text-align: center;
    color: #fff;
    display: inline-block;
    transition: 0.4s all;
    margin-bottom: 16px;
}
#schedule-list .list li a:hover .rightBox .tag {
    background: var(--color2);
    color: #aaa;
}
#schedule-list .list li a .rightBox .ttl {
    font-family: var(--jpMin);
    font-size: clamp(1.6rem, 4.26vw, 1.8rem);
    margin-bottom: 16px;
    transition: 0.4s all;
}
#schedule-list .list li a .rightBox .detail {
    font-size: clamp(1.2rem, 3.2vw, 1.4rem);
    line-height: 1.5;
    transition: 0.4s all;
}
#schedule-list .list li a:hover .rightBox .ttl,
#schedule-list .list li a:hover .rightBox .detail {
    opacity: 0.5;
}
#schedule-list .list li a .rightBox .tag#end {
    background: var(--color2);
    opacity: 0.5;
}
@media screen and (max-width: 768px) {
    #schedule-list .list li a .leftBox {
        width: 30.61%;
    }
    #schedule-list .list li a .rightBox {
        width: 65.86%;
    }
    #schedule-list .category-wrap {
        margin-bottom: 32px;
    }
    #schedule-list .list li a .rightBox .tag {
        font-size: 1.2rem;
        min-width: 80px;
        margin-bottom: 10px;
    }
    #schedule-list .list li a .rightBox .ttl {
        margin-bottom: 10px;
    }
    #schedule-list .list li {
        padding: 0 0 32px 0;
    }
    #schedule-list .category-wrap {
        justify-content: flex-start;
        margin-bottom: 16px;
    }
}
@media screen and (max-width: 500px) {
    #schedule-list .list li a {
        display: block;
    }
    #schedule-list .list li a .leftBox {
        width: 100%;
        margin: 0 auto 24px;
    }
    #schedule-list .list li a .rightBox {
        width: 100%;
    }
}
/* schedule_detail */
#schedule_detail .hero {
    margin-bottom: 40px;
}
#schedule_detail h3 {
    padding-bottom: 0;
    border-bottom: none;
    font-size: clamp(1.6rem, 4.26vw, 2.4rem);
    font-family: var(--jpMin);
    font-weight: 500;
    margin-bottom: 40px;
}
#schedule_detail .inner {
    display: flex;
    justify-content: space-between;
}
#schedule_detail .inner .left {
    width: 60.19%;
}
#schedule_detail .inner .left .anchor-link {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
#schedule_detail .inner .left .anchor-link li a {
    position: relative;
    padding-left: 20px;
    transition: 0.4s all;
    font-size: 1.2rem;
}
#schedule_detail .inner .left .anchor-link li a::after {
    content: "";
    background-image: url(../img/anchor-link.gif);
    width: 11px;
    height: 11px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#schedule_detail .inner .left .anchor-link li a:hover {
    opacity: 0.5;
}
#schedule_detail .inner .left table {
    width: 100%;
}
#schedule_detail .inner .left th,
#schedule_detail .inner .left td {
    border: solid 1px #bfbfbf;
    border-collapse: collapse;
    text-align: center;
    padding: 16px 0;
}
#schedule_detail .inner .left td span {
    text-align: center;
    display: block;
}
#schedule_detail .inner .left thead th {
    padding: 10px 0;
    background-color: #f2f2f2;
    font-size: 1.2rem;
}
#schedule_detail .inner .right {
    width: 34.91%;
}
#schedule_detail .inner .right .linkBtn li {
    margin-bottom: 16px;
}
#schedule_detail .inner .right .linkBtn li a {
    font-size: 1.4rem;
    width: 100%;
    padding: 20px 0;
    background: var(--color1);
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 5px;
    transition: 0.4s all;
}
#schedule_detail .inner .right .linkBtn li a.gray {
    background: #fff;
    color: #7b7b7b;
    border: 1px solid #7b7b7b;
    font-weight: bold;
    transition: 0.4s all;
}
#schedule_detail .inner .right .linkBtn li a:hover,
#schedule_detail .inner .right .linkBtn li a.gray:hover {
    opacity: 0.5;
}
/* accordion */
.accordion-list:not(:first-child) {
    margin-top: 10px;
}
.accordion-title {
    cursor: pointer;
    font-size: 1.4rem;
    padding: 16px 24px 16px 0;
    position: relative;
    border-bottom: 1px solid #cccccc;
    font-family: var(--jpMin);
}
.accordion-title span {
    position: absolute;
    left: 0;
    font-family: var(--jpMin);
    font-size: 1.8rem;
    font-weight: initial;
}
.accordion-title:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    height: 1px;
    width: 15px;
    background: #333;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}
.accordion-title:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    height: 1px;
    width: 15px;
    background: #333;
    transition: all .3s ease-in-out;
}
.accordion-title.open:before {
    transform: rotate(180deg);
}
.accordion-title.open:after {
    opacity: 0;
}
.accordion-text {
    display: none;
    padding: 24px 0;
    position: relative;
}
.accordion-text p {
    font-size: 1.3rem;
    line-height: 1.8;
}
.accordion-text ul li {
    font-size: 1.3rem;
    text-indent: -1rem;
    padding-left: 1rem;
    margin-bottom: 0;
    line-height: 1.8;
}
.accordion-text span {
    position: absolute;
    left: 0;
    font-family: var(--jpMin);
    font-size: 1.6rem;
    font-weight: initial;
}
@media screen and (max-width: 900px) {
    #schedule_detail .inner .left .anchor-link {
        gap: 5%;
    }
}
@media screen and (max-width: 768px) {
    #schedule_detail .hero {
        margin-bottom: 24px;
    }
    #schedule_detail h3 {
        margin-bottom: 16px;
    }
    #schedule_detail .inner {
        display: block;
    }
    #schedule_detail .inner .left,
    #schedule_detail .inner .right {
        width: 100%;
    }
    #schedule_detail .inner .left table {
        margin-bottom: 40px;
    }
    #schedule_detail .inner .right {
        display: flex;
        flex-wrap: wrap;
    }
    #schedule_detail .inner .right .notice {
        width: 100%;
        order: 1;
    }
    #schedule_detail .inner .right .linkBtn {
        width: 100%;
        order: 2;
        margin-top: 24px;
    }
    #schedule_detail .inner .right .linkBtn li:last-child {
        margin-bottom: 0;
    }
    #schedule_detail .inner .left th,
    #schedule_detail .inner .left td {
        padding: 16px 1%;
    }
}