/* 共通 */
html {
    scroll-behavior: smooth;
}

footer {
    display: none;
}

.pg_ttl {
    display: none;
}

.oc_field-renew {
    display: none;
}

.sns_icon {
    display: none;
}

img {
    width: 100%;
    height: auto;
}

.sp_only {
    display: none;
}

@media screen and (max-width:768px) {
    .sp_only {
        display: block;
    }
}

#page_top {
    display: none;
    visibility: hidden;
}

#fixed_floating {
    display: none;
    visibility: hidden;
}

/* 表示 */

.u-d-n {
    display: none
}

@media (min-width: 769px) {
    .u-pc-d-n {
        display: none
    }

    .u-pc-d-i {
        display: inline
    }
}

/* contents */
.wrapper {
    position: relative;
    z-index: 4;
    width: 600px;
    margin-left: auto;
    margin: 0 auto;
    padding-top: 0 !important;
    border: 5px solid #fff476;
}

@media screen and (min-width:769px) {
    .wrapper {
        margin-top: 90px;
    }
}

@media screen and (max-width:768px) {
    .wrapper {
        margin-top: 50px;
        width: 92%;
    }
}

.lp_bg {
    background: repeating-linear-gradient(-45deg, #ea6d8d, #ea6d8d 5px, #ed839e 5px, #ed839e 10px);
    background-color: #ea6d8d;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100%;
}

.fece_bg {
    position: fixed;
    bottom: 0;
    width: 500px;
}

.cont-midashi {
    /*background-image: repeating-linear-gradient(90deg, #e6e6e2, #e6e6e2 1px, transparent 1px, transparent 12px), repeating-linear-gradient(0deg, #e6e6e2, #e6e6e2 1px, #fff 1px, #fff 12px);*/
    background-color: #fff;
    padding: 2em 0 2em;
}

.cont-midashi .btn_tokuten {
    margin: 0 auto;
    padding: 0.5em;
    width: 540px;
    animation: move_a 2s infinite;
    transition: .3s all;
}

@keyframes move_a {
    0% {
        transform: translate(0px, 4px);
    }

    5% {
        transform: translate(0px, -4px);
    }

    10% {
        transform: translate(0px, 4px);
    }

    15% {
        transform: translate(0px, -4px);
    }

    20% {
        transform: translate(0px, 4px);
    }

    25% {
        transform: translate(0px, -4px);
    }

    30% {
        transform: translate(0px, 0px);
    }
}


.midashi {
    text-align: center;
    padding: 2em 1em 0;
    margin-top: 0;
    line-height: 1.8;
    font-size: 1.8rem;
}

.cont-midashi .btn_floating {
    margin: 0 auto;
    padding: 0.5em;
    width: 220px;
    animation: move_a 2s infinite;
    transition: .3s all;
}

@keyframes move_a {
    0% {
        transform: translate(0px, 4px);
    }

    5% {
        transform: translate(0px, -4px);
    }

    10% {
        transform: translate(0px, 4px);
    }

    15% {
        transform: translate(0px, -4px);
    }

    20% {
        transform: translate(0px, 4px);
    }

    25% {
        transform: translate(0px, -4px);
    }

    30% {
        transform: translate(0px, 0px);
    }
}

@media screen and (max-width:768px) {
    .cont-midashi .btn_tokuten {
        width: 320px;
    }

    .midashi-txt {
        font-size: 1.5rem;
        padding: 2rem 0.5em 5em;
    }

    .cont-midashi .btn_floating {
        font-size: 1.5rem;
    }
}

.cont-event_detail {
    background: #ffffff;
}

/*タブを横並びに*/
.tab-label {
    display: block;
    float: left;
    width: 49.8%;
    text-align: center;
}

.tab-label-heading {
    position: relative;
}

.tab-label {
    position: relative;
    z-index: 4;
}

.tab-label-heading:not(:last-of-type) .tab-label {
    margin-right: 2px !important;
}

/*ラジオボタンを全て非表示に*/
input[name="tab-radio-1"] {
    display: none;
}

input[name="tab-radio-2"] {
    display: none;
}

#tab-a+h2 .tab-label,
#tab-c+h2 .tab-label {
    background: #00a3c4;
    color: #fff;
}

#tab-b+h2 .tab-label,
#tab-d+h2 .tab-label {
    background: #ea6f8e;
    color: #fff;
}

.tab-label {
    position: relative;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 15px;
    transition: .3s;
    line-height: 3.2rem;
}

.tab-label::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.5;
    pointer-events: none;
}

.tab-label span {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff57f;
}

/* 選択されたタブの見た目 */
input:checked+h2>.tab-label {
    color: #ffffff !important;
    transition: .3s;
}

input:checked+h2>.tab-label::after {
    content: none;
}

.tab-panel {
    clear: both;
    display: none;
    border: 5px solid #00a3c4;
    transition: .3s;
}

#tab-a:checked~.tab-panel,
#tab-c:checked~.tab-panel {
    border: 5px solid #00a3c4;
}

#tab-b:checked~.tab-panel,
#tab-d:checked~.tab-panel {
    border: 5px solid #ea6f8e;
}

/* 選択されているチェックボックスに応じてパネルを表示 */
#tab-a:checked~.panel-a,
#tab-b:checked~.panel-b,
#tab-c:checked~.panel-c,
#tab-d:checked~.panel-d {
    display: block;
}

.tab-panel>div {
    padding: 1em 0.5em;
    text-align: center;
    padding-bottom: 1em;
}

.tab-inner {
    margin: 1em auto;
    font-size: 1.6rem;
}


@media screen and (max-width:768px) {
    .tab-label {
        width: 49.6%;
        height: 90px;
        font-size: 2.2rem;
    }

    .tab-label span {
        font-size: 1.4rem;
        line-height: 1.8rem;
        display: inline-block;
    }

    .tab-inner .midashi {
        font-size: 1.5rem;
    }

    .panel-b .midashi {
        font-size: 1.5rem;
    }

}


/* タイトル_tlt */

.cont-kouza h2 {
    width: 40%;
    margin-bottom: 1em;
}

.cont-koutsuhi h2 {
    width: 98%;
    text-align: center;
    margin: 2em auto 1em;
}

.cont-access h2 {
    width: 40%;
    text-align: center;
    margin: 2em auto 1em;
}

@media screen and (max-width:768px) {
    .cont-kouza h2 {
        width: 60%;
    }

    .cont-koutsuhi h2 {
        width: 100%;
    }

    .cont-access h2 {
        width: 60%;
    }
}

/* イベント詳細 */
.event_title {
    margin: .5em
}

.event_txt {
    text-align: justify;
    margin: 2rem 1rem;
}

.cont-kouza {
    margin: 2rem auto;
}

.event_detail_day1 {
    width: 95%;
    margin: 20px auto;
}

.event_detail_day1 h2 {
    width: 100%;
    margin-bottom: 20px;
    padding: 5px;
    border-radius: 0 0 20px 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.content1,
.content5 {
    background-color: #ea6d8d;
}

.content2 {
    background-color: #00a3c4;
}

.content3 {
    background-color: #e73e23;
}

.content4 {
    background-color: #6cba5a;
}

.content6 {
    background-color: #905ca2;
}

.event_content {
    position: relative;
    margin-bottom: 20px;
    padding: 5px;
}

.event_detail {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: justify;
}

.event_content:nth-of-type(even) .event_detail {
    flex-direction: row-reverse;
}

.detail_text {
    width: 50%;
}

.detail_text_kouza {
    width: 100%;
}

.detail_img {
    width: 48%;
    text-align: center;
}

.detail_img img {
    width: 100%;
}

@media screen and (max-width:768px) {
    .event_detail_day1 h2 {
        font-size: 1.8rem;
    }

    .event_detail {
        flex-direction: column !important;
        align-items: center;
    }

    .detail_text {
        width: 100%;
        margin-bottom: 20px;
    }

    .detail_img {
        width: 100%;
        max-width: 325px;
    }
}

/* 講座ボタン */

.modal__trigger.graphic,
.modal__trigger2.graphic {
    background: #e50012;
}

.modal__trigger.visual,
.modal__trigger2.visual {
    background: #2ca253;
}

.modal__trigger.illust,
.modal__trigger2.illust {
    background: #ea6133;
}

.modal__trigger.comic,
.modal__trigger2.comic {
    background: #7fbe26;
}

.modal__trigger.manga,
.modal__trigger2.manga {
    background: #efa91c;
}

.modal__trigger.figure,
.modal__trigger2.figure {
    background: #44babc;
}

.modal__trigger.product,
.modal__trigger2.product {
    background: #289ad7;
}

.modal__trigger.interior,
.modal__trigger2.interior {
    background: #3b67a9;
}

.modal__trigger.architects,
.modal__trigger2.architects {
    background: #75539e;
}

.modal__trigger.fashion,
.modal__trigger2.fashion {
    background: #FA5CA6;
}

.modal__trigger.total,
.modal__trigger2.total {
    background: #1d2a75;
}

.gd {
    color: #e50012;
}

.vi {
    color: #2ca253;
}

.il {
    color: #ea6133;
}

.ci {
    color: #7fbe26;
}

.mg {
    color: #efa91c;
}

.fid {
    color: #44babc;
}

.pd {
    color: #289ad7;
}

.id {
    color: #3b67a9;
}

.ad {
    color: #75539e;
}

.fad {
    color: #FA5CA6;
}

.tot {
    color: #1d2a75;
}

.kouza_wrap {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.kouza_detail {
    position: relative;
    width: 49.5%;
    margin-top: 1.2rem;
}

.kouza_detail+.kouza_detail::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #a0a0a0;
}

.btn_wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn_application {
    position: relative;
    text-align: center;
    text-decoration: none;
    margin: 1.4rem auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border-radius: 100vh;
    color: #fff;
    box-shadow: 0px 4px 0 #b2b2b2;
    display: block;
    transition: .3s;
    font-size: 1.6rem;
}

._day1 {
    width: 230px;
}

.btn_application:hover {
    transform: translate(0, 4px);
    box-shadow: 0 0px 0 #000000;
}

.btn_application.graphic {
    background: #e50012;
}

.btn_application.visual {
    background: #2ca253;
}

.btn_application.illust {
    background: #ea6133;
}

.btn_application.comic {
    background: #7fbe26;
}

.btn_application.manga {
    background: #efa91c;
}

.btn_application.figure {
    background: #44babc;
}

.btn_application.product {
    background: #289ad7;
}

.btn_application.interior {
    background: #3b67a9;
}

.btn_application.architects {
    background: #75539e;
}

.btn_application.fashion {
    background: #FA5CA6;
}

.btn_application.total {
    background: #1d2a75;
}

@media screen and (max-width:768px) {
    .kouza_wrap {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .kouza_detail {
        width: 100%;
    }

    .kouza_detail+.kouza_detail::before {
        left: 0;
        top: -10px;
        width: 100%;
        height: 1px;
    }

    .btn_application {
        font-size: 1.2rem;
    }

    ._day1 {
        width: 136px;
    }
}


/* 交通費特典 */

@media (min-width: 769px) {
    .anchor {
        display: block;
        padding-top: 70px;
        margin-top: -70px;
    }
}

.cont-access .caution {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff1475;
    margin-bottom: 0;
}

.cont-access .caution:after {
    content: none;
}

.cont-access,
.cont-koutsuhi {
    position: relative;
    margin: 0 1em;
    text-align: center;
}

.access_campus {
    font-size: 2.6rem !important;
    font-weight: 600;
    color: #ea6d8d;
}

.cont-access p {
    position: relative;
    margin: 1em auto;
    font-size: 1.6rem;
}

.map_wrap {
    margin-bottom: 2rem;
}

.map_wrap iframe {
    width: 100%;
    height: 250px;
    vertical-align: bottom;
}

@media screen and (max-width: 768px) {
    .cont-access p {
        margin: 1.2rem auto;
        font-size: 1.5rem;
    }
}

.fuwafuwa {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
    position: absolute;
    top: 40px;
    width: 130px;
    right: -40px;
    z-index: 1;
}

@keyframes floating-y {
    0% {
        transform: translateY(-10%);
    }

    100% {
        transform: translateY(10%);
    }
}

/* 交通費サポート */

.cont-koutsuhi table {
    border-collapse: collapse;
    position: relative;
}

.cont-koutsuhi th,
td {
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 1.6rem;
    color: #1a2652;
    vertical-align: middle;
}

.cont-koutsuhi input {
    width: 100%;
    padding: 10px;
    border: 1px solid #EEE;
    box-sizing: border-box;
}

.cont-koutsuhi .tatemi {
    width: 100%;
}

.cont-koutsuhi th {
    border: 1px solid #DDD;
    background: #e3f5ff;
    padding: 10px 20px;
    width: 50%;
}

.cont-koutsuhi td {
    border: 1px solid #DDD;
    padding: 10px 20px;
    background: #fff;
    text-align: left;
}

.cont-koutsuhi td span {
    font-size: 2.4rem;
    font-weight: bold;
}

.koutsuhi-txt {
    font-size: 1.4rem;
    line-height: 2.6rem;
    text-align: left;
    margin: 2rem auto;
}

.koutsuhi-txt a {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .cont-koutsuhi th {
        width: 50%;
    }
}

/* ご利用にいただくにあたって */
.cont-attention {
    max-width: 600px;
    padding: 1em;
    overflow: hidden;
}

.cont-attention_header {
    background-color: #ea6d8d;
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.cont-attention_content {
    background-color: #e5f4f9;
    padding: 20px;
}

.cont-attention_content ul {
    list-style-type: none;
    padding: 0;
}

.cont-attention_content li {
    margin-bottom: 10px;
    text-indent: -8px;
    text-align: justify;
}

.cont-attention_content li::before {
    content: "\2022";
    /* Bullet point */
    color: #ea6d8d;
    font-weight: bold;
}

.cont-attention_content span {
    color: #ea6d8d;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/*予約ボタン*/

.reservation_banner {
    display: flex;
    justify-content: center;
}

.btn_reservation {
    position: relative;
    display: block;
    color: #fff476;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    width: 260px;
    margin: 1em auto;
    padding: 1rem;
    font-weight: bold;
    border-radius: 100vh;
    box-shadow: 1px 2px 0 #000000;
    transition: .3s;
    border: 2px solid #000;

}

.btn_reservation:hover {
    transform: translate(0, 4px);
    box-shadow: 0 0px 0 #000000;
}

@media screen and (min-width: 769px) {}

@media screen and (max-width:768px) {
    .reservation_banner {
        width: 100%;
        left: 0;
        z-index: 9;
    }

    .btn_reservation {
        padding: 0.7em;
        width: 48%;
        font-size: 1.2rem;
    }
}

.date_0323 {
    background: #00a3c4;
}

.date_0330 {
    background: #ea6d8d;
}

/* modal */
.modal {
    height: 23em;
}

.modal .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 5px;
}

/* モーダルを開くボタン */
.modal__trigger,
.modal__trigger2 {
    cursor: pointer;
    float: left;
    margin: 10px 4px;
    font-weight: bold;
    color: #FFF;
    border-radius: 40px;
    width: 48%;
    text-align: center;
    padding: 8px 5px;
    box-shadow: 2px 3px 0 #000000;
    transition: .3s all;
}

.modal__trigger:hover,
.modal__trigger2:hover {
    transform: translate(0, 3px);
    box-shadow: 0 0px 0 #000000;

}

/* モーダル本体 */
.modal__wrapper,
.modal__wrapper2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.modal__layer,
.modal__layer2 {
    height: 100%;
    background: rgba(50, 50, 50, 0.85);
    cursor: pointer;
}

.modal__container,
.modal__container2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(100% - 40px, 560px);
    padding: 20px;
    background: #fff;
    border-radius: 15px;
}

.modal__inner {
    position: relative;
    height: 100%;
    padding: 45px 5px 10px;
}

/* モーダル内のコンテンツ */


.modal__content p {
    font-size: 2rem;
    margin: 4px auto;
    font-weight: bold;
}

.modal__content ul {
    margin: 0 auto;
    width: 98%;
    max-height: 460px;
    overflow-y: scroll;
}

.modal__content ul li img {
    width: 90%;
}

.modal__content dt {
    font-weight: bold;
    margin: 1rem auto;
}

.modal__content dd {
    text-align: justify;
}

/* モーダルを閉じるボタン */
.modal__close,
.modal__close2 {
    position: absolute;
    top: 0;
    right: 10px;
    width: 44px;
    height: 44px;
    background: rgb(50, 50, 50);
    cursor: pointer;
    transition: opacity 0.6s;
}

.modal__close:hover,
.modal__close2:hover {
    opacity: 0.6;
}

.modal__close:before,
.modal__close:after,
.modal__close2:before,
.modal__close2:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    content: "";
}

.modal__close:before,
.modal__close2:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after,
.modal__close2:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}



@media screen and (max-width:767px) {
    .modal {
        height: 26em;
    }

    .modal .inner {
        padding: 0;
    }

    .modal__content ul {
        max-height: 400px;
    }

    .modal__trigger,
    .modal__trigger2 {
        width: 47%;
        font-size: 1.2rem;
        margin: 8px 4px;
    }

    .modal__content dt,
    .modal__content dd {
        font-size: 1.6rem;
    }
}


/* 花びらアニメーション */

@media screen and (min-width:769px) {
    .sakura {
        position: fixed;
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 0;
    }

    .sakura li {
        width: 18px;
        position: absolute;
        list-style: none;
        top: -50px;
        animation: fall 4s linear infinite, rotate1 2s ease-in-out infinite alternate;
    }

    @keyframes fall {
        to {
            top: 150%;
        }
    }

    @keyframes rotate1 {
        from {
            transform: translateX(0px) rotate(0deg);
        }

        to {
            transform: translateX(200px) rotate(-80deg) rotateX(180deg);
        }
    }

    @keyframes rotate2 {
        from {
            transform: translateX(200px) rotate(-45deg);
        }

        to {
            transform: translateX(0px) rotate(0deg);
        }
    }

    .sakura li:nth-child(1) {
        left: 0;
        animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
    }

    .sakura li:nth-child(2) {
        left: 5vw;
        animation: fall 15s linear infinite, rotate1 2s ease-in-out infinite alternate;
    }

    .sakura li:nth-child(3) {
        left: 15vw;
        animation: fall 9s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
    }

    .sakura li:nth-child(4) {
        left: 30vw;
        animation: fall 8s linear infinite, rotate2 4s ease-in-out infinite alternate;
    }

    .sakura li:nth-child(5) {
        left: 40vw;
        animation: fall 10s linear infinite, rotate1 4s ease-in-out infinite alternate;
    }

    .sakura li:nth-child(6) {
        left: 55vw;
        animation: fall 11s linear infinite, rotate2 3s ease-in-out infinite alternate;
    }

    .sakura li:nth-child(7) {
        left: 65vw;
        animation: fall 7s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
    }

    .sakura li:nth-child(8) {
        left: 70vw;
        animation: fall 7s linear infinite, rotate1 3s ease-in-out infinite alternate;
    }



    @keyframes fall {
        to {
            top: 150%;
        }
    }

    @keyframes rotate1 {
        from {
            transform: translateX(0px) rotate(0deg);
        }

        to {
            transform: translateX(200px) rotate(-80deg) rotateX(180deg);
        }
    }

    @keyframes rotate2 {
        from {
            transform: translateX(200px) rotate(-45deg);
        }

        to {
            transform: translateX(0px) rotate(0deg);
        }
    }
}

@media screen and (max-width:768px) {
    .sakura {
        display: none;
    }

}