@charset "UTF-8";
/***** DISPLAY *****/
.u-inline-block{
    display: inline-block !important;
}
.u-block{
    display: block;
}
.u-flex{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.u-flex__wrap{
    flex-wrap: wrap;
}
.flex_half {
    width: calc(50% - 10px);
}
@media screen and (max-width: 768px){
    .u-flex{
        flex-direction: column;
    }
    .flex_half{
        width: 100%;
    }
    .check.u-flex{
        align-items: flex-start;
        flex-direction: row;
    }
}
@media screen and (max-width: 480px){
    .u-flex.flex-direction_half{
        flex-direction: inherit;
    }
}
/***** FONT *****/
.u-bold{
    font-weight: bold;
}
.u-normal{
    font-weight: normal;
}
.u-style_normal{
    font-style: normal;
}

/***** TEXT *****/
/* 文字サイズ */
.text__main{
    font-size: 20px;
    font-weight: bold;
}
.text__large{
    font-size: 24px;
    font-weight: bold;
}
.text__middle{
    font-size: 18px;
}
.text__sub{
    font-size: 16px;
}
.text__small{
    font-size: 12px;
}
/* 文字揃え */
.u-left{
    text-align: left;
}
.u-right{
    text-align: right;
}
.u-center{
    text-align: center;
}
.u-nowrap{
    white-space: nowrap;
}
/* 文字色 */
.u-white{
    color: #fff;
}
.u-red{
    color: #ff0606;
}
.u-semi_red{
    color: #ef3f36;
}
.u-pink{
    color: #ef59a1;
}
.u-blue{
    color: #3995C1;
}
.u-green{
    color: #3eb134;
}
.u-co_green{
    color: #7fc7a4;
}
.u-co_orange{
    color: #faaf3e;
}
.u-co_purple{
    color: #a96cad;
}
.u-emp-red{
    text-emphasis: dot #f80d0d;
    -webkit-text-emphasis: dot #f80d0d;
    color: #f80d0d;
}
/* 見出し */
.title{
    font-size: 10px;
    font-weight: bold;
    color: #fff;
}
.box{
    margin-bottom: 80px;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 0px 16px rgba(22, 103, 163, 0.2);
    background-color: #E0EFFB;
}
/* サブタイトル */
.subtitle{
    padding: 12px 20px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: solid 6px;
}
.subtitle.-blue{
    border-color: #217bba;
}
body .subtitle.-orange{
    border-color: #f7941d;
}
/* 背景グラデーション.ver */
.subtitle.-bgon{
    text-shadow: 2px 3px 4px #fff, 0 1px 0 #ccc;
    background: linear-gradient(30deg, #fff 30%, #E0EFFB 100%);
    border-color: #3995C1;
    color: #000;
}
.subtitle.-coral{
    border-color: lightcoral;
}
/* パンくずの下を空けないver */
.breadcrumb{
    margin-bottom: 0;
}
.bookbox{
    margin: 0 0 7em;
}
/* リンク非活性 */
.inactive{
    pointer-events: none;
    position: relative;
}
.inactive::before{
    content: "準備中";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff264d;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

/***** BACKGROUND & BORDER *****/
/* BORDER */
body .u-border{
    border:1px solid;
}
body .u-border-t{
    border-top:1px solid;
}
body .u-border-b{
    border-bottom:1px solid;
}
body .u-border-l{
    border-left:1px solid;
}
body .u-border-r{
    border-right:1px solid;
}
body .u-borderColor{
    border-color:#b3d8f7;
}
body .u-borderColor-w{
    border-color:#fff;
}
body .u-borderColor-pink{
    border-color:#ef59a1;
}
body .u-borderColor-green{
    border-color:#00a650;
}
body .u-borderColor-blue{
    border-color:#3995C1;
}
body .u-bo_blue{
    border-color: #58ccf5;
}
body a.u-bo_blue:hover{
    background-color: #58ccf5;
    color: #fff;
}
body .u-borderColor-orange{
    border-color:#f7941d;
}
body .u-bo_orange{
    border-color: #faaf3e;
}
body .u-bo_coral{
    border-color: #f08080;
}
body a.u-bo_orange:hover{
    background-color: #faaf3e;
    color: #fff;
}
body .u-bo_green{
    border-color: #7fc7a4;
}
body a.u-bo_green:hover{
    background-color: #7fc7a4;
    color: #fff;
}
body .u-bo_purple{
    border-color: #a96cad;
}
body a.u-bo_purple:hover{
    background-color: #a96cad;
    color: #fff;
}
body .u-co_blue{
    color: #58ccf5;
}
body .u-border-w{
    border: 2px solid #fff;
}
body .u-co_coral{
    color: #f08080;
}
/* SHADOW */
.u-border-blue_s{
    background: linear-gradient(30deg, #fff 30%, #E0EFFB 100%);
}
.u-border-green_s{
    background: linear-gradient(to right, #fff 80%, rgba(255, 255, 255, 0) 100%);
}
.u-border-orange_s{
    background: linear-gradient(to right, #fff 80%, rgba(255, 255, 255, 0) 100%);
}
.u-border-pink_s{
    background: linear-gradient(to right, #fff 80%, rgba(255, 255, 255, 0) 100%);
}
/* BACKGROUND */
body .u-bg-w{
    background-color: #fff;
}
body .u-bg-pink{
    background-color: #ef59a1;
}
body .u-bg-green{
    background-color: #00a650;
}
body .u-bg-middleGreen{
    background-color: #59c98c;
}
body .u-bg-lightGreen{
    background-color: #eafff3;
}
body .u-bg-blue{
    background-color: #3995C1;
}
body .u-bg-orange{
    background-color: #f7941d;
}
body .u-bg-middleOrange{
    background-color: #FFF4CC;
}
body .u-bg-lightOrange{
    background-color: #fffae6;
}
body .u-bg-coral{
    background-color: #f08080;
}
body .u-bg-middleCoral{
    background-color: #f09e9a;
}
body .u-bg-lightCoral{
    background-color: #fadeeb;
}
body .u-bg-black{
    background-color: #3a3a3a;
}
body .u-bg-purple{
    background-color: #9933cc;
}
body .u-bg-lightPurple{
    background-color: #f8e8fb;
}

/***** カード *****/
.card{
    margin-top: 20px;
    background-color: #fff;
}
.card.-cream{
    background-color: #FFF4CC;
}
.card.-pink{
    background-color: #fff0f5;
}
.card.-blue{
    background-color: #d6eafd;
}
.card.-green{
    background-color: #e6fbe6;
}
.card__inner{
    padding: 20px;
}

/***** MARGIN *****/
.u-m-0{
    margin: 0 !important;
}
.u-mt-0{
    margin-top: 0 !important;
}
.u-mt-12{
    margin-top: 12px !important;
}
.u-mt-20{
    margin-top: 20px !important;
}
.u-mt-40{
    margin-top: 40px !important;
}
.u-mb-0{
    margin-bottom: 0 !important;
}
.u-mb-12{
    margin-bottom: 12px !important;
}
.u-mb-20{
    margin-bottom: 20px !important;
}
.u-mr-8{
    margin-right: 8px !important;
}
.u-mb-40{
    margin-bottom: 40px !important;
}
.u-mcenter{
    margin: 0 auto;
}
@media screen and (max-width: 768px){
    .u-mt-40{
        margin-top: 2.5rem !important;
    }
    .u-mb-40{
        margin-bottom: 2.5rem !important;
    }
}
/***** PADDING *****/
.u-p-12{
    padding: 12px !important;
}
.u-p-20{
    padding: 20px !important;
}
.u-pt-20{
    padding-top: 20px !important;
}
.u-pt-40{
    padding-top: 40px !important;
}
.u-pl-12{
    padding-left: 12px !important;
}
.u-pr-12{
    padding-right: 12px !important;
}
.u-pb-20{
    padding-bottom: 20px !important;
}
.u-pb-40{
    padding-bottom: 40px !important;
}
@media screen and (max-width: 768px){
    .u-pt-40{
        padding-top: 2.5rem !important;
    }
    .u-pb-40{
        padding-bottom: 2.5rem !important;
    }
}

/***** ボタン *****/
.btn__doublebox{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media screen and (max-width: 768px){
    .btn__doublebox{
        flex-direction: column;
        gap: 0px;
    }
}
.btn__box{
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    color: #fff;
}
/* 四角いボタン */
.btn__link{
    display: block;
    text-align: center;
    text-decoration: none;
    width: 44.5%;
    padding: 0.65rem 0.55rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 2px black;
}
.btn__link.-wide{
    min-width: 240px;
    max-width: 332px;
    width: 100%;
}
.btn__link.-sakura{
    min-width: 240px;
    width: 100%;
}
.btn__link:hover{
    opacity: 0.5;
}
.btn__link:link,
.btn__link:visited,
.btn__link:active{
    color: #fff;
}
.btn__text{
    display: block;
    padding: 0.5rem 0.1rem;
    border: 3px solid white;
}
.btn__link.-two{
    background-color: rgb(36, 170, 225);
}
.btn__link.-three{
    background-color: rgb(33, 123, 186);
}
.btn__link.-four{
    background-color: rgb(243, 137, 184);
}
.btn__link.-five{
    background-color: rgb(247, 148, 29);
}
.btn__link.-six{
    background-color: rgb(239, 63, 54);
}
.btn__link.-seven{
    background-color: rgb(0, 180, 80);
}
@media screen and (max-width: 767px){
    .btn__link{
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        padding: 0.3rem;
    }
    .btn__text{
        display: block;
        padding: 0.3rem 1rem;
        border: 1px solid white;
        text-shadow: 0.5px 0.5px 1px black;
        width: auto;
    }
}
/* List Pattern */
.coursesGrid{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    margin: 0 auto 1rem;
}
.courseItem{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 15px;
}
.courseInfo{
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
}
.cartMainbutton{
    background: #ffffff;
    width: 400px;
    margin: 0 auto 0 0;
}
@media screen and (max-width: 768px){
    .courseItem .btn__link{
        max-width: 100%;
    }
    .courseItem .btn__link .btn__text{
        padding: 1.5vh 0;
    }
    .courseItem{
        grid-template-columns: 1fr;
    }
    .cartMainbutton{
        width: 100%;
    }
}
/* テーブル用 */
.btn__box.-table{
    margin: 0px auto 20px;
}
.btn__box.-unclick{
    pointer-events: none;
    opacity: 0.5;
}
.btn__ex{
    font-weight: bold;
    font-size: 20px;
    color: #f7941d;
}
.btn__ex.-pink{
    color: #ef59a1;
}
.btn__btn{
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    background-color: #f7941d;
    border: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.btn__btn:hover{
    opacity: 0.6;
}
.btn__btn.-pink{
    background-color: #ef59a1;
}
.btn__btn.-blue{
    background-color: #3995C1;
}
.btn__btn.-purple{
    background-color: #d1b3ff;
}
/* ★習熟度*/
.btn__btn.-green{
    background-color: lightseagreen;
}
.btn__btn.-disable{
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.3;
}
.btn__inner{
    display: inline-block;
    min-width: 350px;
    padding: 12px;
    border: 3px solid #fff;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}
@media screen and (max-width: 768px){
    .btn__inner{
        min-width: 252px;
        font-size: 16px;
    }
}
@media screen and (max-width: 400px){
    .btn__inner {
        font-size: 15px;
    }
}
.btn:hover{
    opacity: 0.7;
}
.btn-inner{
    display: block;
    text-align: center;
    padding: 10px;
    min-width: 350px;
    border: 3px solid #fff;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}
/*::::::教材 説明文字:::::::*/
.btn__setsumei{
    text-align: center;
    font-size: 1.35em;
    font-weight: bold;
}
@media screen and (max-width: 767px){
    .btn__setsumei{
        font-size: 1.1em;
    }
}

/* トップイメージ下にリンク */
.toplink{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px){
    .toplink{
        flex-wrap: wrap;
        align-items: center;
    }
}

/***** テーブル *****/
.table-kouza{
    margin-top: 20px;
    border: 1px solid #008000;
    border-collapse: collapse;
    background-color: #fff;
}
.table-kouza.alone{
    margin: 10px 20px 0;
    width: calc(100% - 40px);
}
@media screen and (max-width: 768px){
    .table-kouza.alone{
        margin: 0;
        width: 100%;
    }
}
.table-kouza__header{
    background-color: #008000;
    color: #fff;
    font-weight: bold;
}
@media screen and (max-width: 768px){
    .table-kouza__header{
        display: none;
    }
}
/* 色かえ */
.table-kouza.-blue .table-kouza__header,
.table-kouza.-blue th{
    background-color: #3995C1;
}
body .table-kouza.-orange,
body .table-kouza.-orange th,
body .table-kouza.-orange tr,
body .table-kouza.-orange td,
body .table-kouza.-orange .table-kouza__header{
    border-color: #f7941d;
}
body .table-kouza.-blue,
body .table-kouza.-blue th,
body .table-kouza.-blue tr,
body .table-kouza.-blue td,
body .table-kouza.-blue .table-kouza__header{
    border-color: #3995C1;
}
body .table-kouza.-purple,
body .table-kouza.-purple th,
body .table-kouza.-purple tr,
body .table-kouza.-purple td,
body .table-kouza.-purple .table-kouza__header{
    border-color: #800080;
}
.table-kouza__header th{
    padding: 8px;
    border: 1px solid #008000;
    text-align: center;
}
.table-kouza__min{
    min-width: 164px;
}
@media screen and (max-width: 768px){
    .table-kouza__items{
        display: flex;
        flex-direction: column;
        border: 1px solid #008000;
    }
}
.table-kouza__items td{
    padding: 12px 8px;
    vertical-align: middle;
    border: 1px solid #008000;
    font-weight: bold;
}
@media screen and (max-width: 768px){
    .table-kouza__items td{
        padding: 8px;
        border-style: dotted;
        line-height: 2;
    }
}
.table-kouza__name{
    min-width: 160px;
}
.table-kouza__name.-w240{
    width: 240px;
}
.table-kouza__name.-blue{
    background-color: #eaf8ff;
}
@media screen and (max-width: 768px){
    .table-kouza__name.-w240{
        width: inherit;
    }
}
.table-kouza__name.-nowrap{
    white-space: nowrap;
}
.table-kouza__name.-sponly,
.Orgtable-Wrap.-sponly{
    display: none;
}
.text__main.u-p-12.-sponly{
    display: none !important;
}
@media screen and (max-width: 768px){
    .table-kouza__name.-sponly{
        display: block;
    }
    .text__main.u-p-12.-sponly{
        display: block !important;
    }
    .Orgtable-Wrap.-sponly{
        display: flex;
    }
    .Orgtable-Wrap.-sponly .u-bold.u-pink{
        padding-top: 10px;
    }
}
@media screen and (max-width: 768px){
    .table-kouza__name.-pconly,
    .Orgtable-Wrap.-pconly{
        display: none;
    }
    .u-inline-block.u-pink.-pconly{
        display: none !important;
    }
}
.table-kouza__name.-pink{
    background-color: #ffe4ef;
}
.table-kouza__sp{
    display: none;
}
@media screen and (max-width: 768px){
    .table-kouza__sp{
        display: inline-block;
        background-color: #999;
        margin-right: 8px;
        padding: 2px 8px;
        font-weight: normal;
        color: #fff;
        line-height: 1.5;
    }
}
.table-kouza__small{
    display: inline-block;
    margin-right: 8px;
    padding: 0 4px;
    font-weight: normal;
    background-color: #ef59a1;
    color: #fff;
}
.table-kouza__small.-blue{
    background-color: #3995C1;
}
.table-kouza__price{
    text-align: right;
    min-width: 140px;
}
@media screen and (max-width: 768px){
    .table-kouza__price{
        text-align: left;
    }
}
@media screen and (max-width: 768px){
    .table-kouza__cartbox{
        margin-top: 12px;
        text-align: center;
    }
}
.table-kouza__cart{
    display: inline-block;
    margin-left: auto;
    padding: 4px 8px;
    background-color: #ef59a1;
    border-radius: 20px;
    box-shadow: none;
    cursor: pointer;
    text-align: center;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold;
    min-width: 140px;
    transition: all 0.3s ease;
}
.table-kouza__cart:hover{
    opacity: 0.7;
}
.kouzabox__sub{
    margin-top: 20px;
    background: linear-gradient(to right, #fff 80%, rgba(255,255,255,0) 100%);
    padding: 12px;
    border-bottom: 4px solid purple;;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
.kouzabox__sub.-orange{
    border-color: #f7941d;
}
.kouzabox__sub.-coral{
    border-color: #f08080;
}

/***** アクセス *****/
.access{
    padding: 20px 0;
}
.access__map{
    text-decoration: underline !important;
    font-weight: bold;
    font-size: 20px;
}
.access__map.-td{
    text-decoration: underline !important;
    font-size: inherit;
}
.access__map span{
    text-decoration: underline;
}
.access__list{
    margin-top: 20px;
    padding: 20px;
    background-color: #eee;
}
@media screen and (max-width: 768px){
    .access__list{
        padding: 12px;
    }
}
.access__item{
    margin-left: 20px;
    list-style: disc;
}

/***** 動画 *****/
.movie{
    aspect-ratio: 16/9;
    width: 100%;
    text-align: center;
}

/***** 期間 *****/
.period{
    padding: 20px;
    background-color: #fff;
    border: 2px solid #d1b3ff;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px){
    .period{
        padding: 12px;
    }
}
.period ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
.period li{
    display: inline-block;
    position: relative;
    margin-top: 8px;
    margin-left: 12px;
    font-weight: bold;
    font-size: 16px;
}
.period li::before{
    content: "";
    position: absolute;
    display: inline-block;
    width: 12px;
    height: 12px;
    left: -12px;
    top: 5px;
    background-color: #d1b3ff;
    margin-right: 4px;
}

/***** 的中画像 *****/
.tekichu__pr{
    /* display: inline-block; */
    background: linear-gradient(180deg, transparent 60%, yellow 60%, yellow 100%);
    font-weight: bold;
    color: #f92019;
}
.tekichu__box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}
@media screen and (max-width: 768px){
    .tekichu__box{
        flex-direction: column;
    }
}
@media screen and (max-width: 768px){
    .tekichu__img{
        width: 100%;
        max-width: 400px;
    }
}
.tekichu__arr{
    width: 16px;
    height: 16px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: orange;
}
@media screen and (max-width: 768px){
    .tekichu__arr{
        transform: rotate(90deg);
    }
}

/***** 受講生の声 *****/
.voices{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media screen and (max-width: 768px){
    .voices{
        flex-direction: column;
        align-items: center;
    }
}
.voices__voice{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
@media screen and (max-width: 768px){
    .voices__voice{
        width: 100%;
    }
}
.voices__comment{
    position: relative;
    background-color: #FFF;
    padding: 12px;
    min-height: 148px;
    border-radius: 12px;
}
.voices__comment.-long{
    min-height: 240px;
}
@media screen and (max-width: 768px){
    .voices__comment{
        min-height: inherit !important;
    }
}
.voices__comment::after{
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background-color: #FFF;
    transform: rotate(45deg);
    left: calc(50% - 10px);
}
.voices__image{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid orange;
    background-color: #fff;
    overflow: hidden;
}
.voices__image.-red{
    border-color: #f92019;
}
/* Ver.1.0 */
.voices__voice.-two{
    width: 50%;
}
@media screen and (max-width: 768px){
    .voices__voice.-two{
        width: 100%;
    }
}
.voices__comment.-short{
    min-height: inherit;
}
/* Ver.2.0 */
.jyukousei{
    margin: 0px 25px 15px 25px;
    display: grid;
}
.jyukousei_section{
    border-bottom: dashed rgb(153, 137, 195);
    padding-bottom: 15px;
}
.voice{
    font-size: 1rem;
    font-weight: normal;
    padding: 25px 20px 5px 0px;
    width: 80%;
    float: right;
}
.voice2{
    font-size: 0.8rem;
    font-weight: normal;
    padding: 25px 0px 5px 0px;
    width: 80%;
    float: right;
}
img.jyukousei_image{
    width: 10%;
}
@media screen and (max-width: 767px){
    .voice{
        font-size: 1rem;
        font-weight: normal;
        padding: 15px 0px 5px 10px;
    }
    img.jyukousei_image{
        width: 15%;
    }
}

/***** セットプラン *****/
.setplan{
    background: linear-gradient(90deg, pink 0%, #b3d8f7 100%);
    padding: 20px;
}
@media screen and (max-width: 768px){
    .setplan{
        padding: 10px;
    }
}
.setplan__inner{
    background-color: #fff;
    padding: 20px;
}
@media screen and (max-width: 768px){
    .setplan__inner{
        padding: 10px;
    }
}
.setplan__title{
    font-size: 24px;
    font-weight: bold;
    color: #f92019;
}
@media screen and (max-width: 768px){
    .setplan__title{
        font-size: 20px;
    }
}
.setplan__rubi{
    text-emphasis: dot red;
    -webkit-text-emphasis: dot red;
    font-weight: bold;
}
.setplan__pr{
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}
.setplan__box{
    margin-top: 20px;
    padding: 20px;
    background-color: #E0EFFB;
}
@media screen and (max-width: 768px){
    .setplan__box{
        padding: 20px 10px;
    }
}
.setplan__lists{
    display: flex;
    gap: 20px;
}
@media screen and (max-width: 768px){
    .setplan__lists{
        flex-direction: column;
    }
}
.setplan__sub{
    font-size: 16px;
    font-weight: bold;
}
.setplan__content{
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}
@media screen and (max-width: 768px){
    .setplan__content{
        padding: 10px;
    }
}
.setplan__list{
    margin-top: 12px;
    padding-left: 20px;
    list-style-type: disc;
}
.setplan__item{
    border-bottom: 1px solid #E0EFFB;
    padding: 8px;
}
@media screen and (max-width: 768px){
    .setplan__item{
        padding: 8px 0px;
    }
}
.setplan__price{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(90deg, pink 0%, #fff 20%);
    border: 4px solid pink;
}
@media screen and (max-width: 768px){
    .setplan__price{
        flex-direction: column;
        text-align: center;
    }
}
.setplan__pricebox{
    font-weight: bold;
}
.setplan__arrow{
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 24px;
    height: 24px;
    background-color: #800080;
    display: inline-block;
}
@media screen and (max-width: 768px){
    .setplan__arrow{
        transform: rotate(90deg);
    }
}
.setplan__special{
    color: #f92019;
    font-weight: bold;
    font-size: 20px;
}
.kaitou{
    margin-top: 20px;
    padding: 12px;
    background-color: #fff0f5;
}

/** アンカーリンク **/
.annnai__link{
    display: inline-block;
    padding: 12px;
    font-weight: bold;
    border-radius: 20px;
    border: 4px solid;
    background-color: #fff;
    transition: all 0.3s ease;
}
.annnai__link:hover{
    opacity: 0.5;
}
.annnai__link.-purple{
    border-color: #800080;
}
.annnai__link.-pink{
    border-color: #ef59a1;
}
.annnai__link.-green{
    border-color: #008000;
}
.annnai__link.-blue{
    border-color: #217bba;
}
.annnai__link.-red{
    border-color: #f92019;
}
/* ★超直前 */
.annnai__link.-coral{
    border-color: #f08080;
}
.catch{
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.kougi{
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    border: 1px solid #ef59a1;
}
.kougi.-gray{
    border-color: #efefef;
    background-color: #fff;
}
.kougi__text{
    padding: 12px;
}
/* カーソル */
.pointCursor{
    cursor: pointer;
}

/***** 吹き出し *****/
.-cution{
    position: relative;
    display: block !important;
    padding: 4px 6px 2px 8px;
    width: 75px;
    max-width: 100%;
    color: #fff;
    font-size: 12px;
    background: #dc2528;
    line-height: normal;
    top: 0;
    left: -18px;
    margin-bottom: 8px;
}

/***** END EVENT *****/
.whiteEnd{
    position: relative;
    overflow: hidden;
}
.whiteEnd::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
}
.whiteEnd a,
a.whiteEnd{
    pointer-events: none;
}
.endComment::after,
.junbiComment::after{
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.8);
    color: #ff0c0c;
    font-weight: bold;
    font-size: 16px;
}
.endComment::after{
    content: "終了しました。";
    text-shadow: 1px 1px 2px #666666;
}
.junbiComment::after{
    content: "準備中";
    text-shadow: 1px 1px 2px #666666;
}
.-endEvent{
    position: relative;
}
.-endEvent::after{
    content: "満席につき終了いたしました。";
    position: absolute;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.8);
    color: #ff0c0c;
    font-weight: bold;
    font-size: 16px;
}
.-endEvent a{
    pointer-events: none;
}
.table-kouza__items.-end{
    position: relative;
    pointer-events: none;
}
.table-kouza__items.-end .table-kouza__cartbox{
    padding-bottom: 24px;
}
.table-kouza__items.-end::after{
    content: "終了しました";
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    justify-content: flex-end;
    align-items: flex-end;
    top: 0%;
    left: 0%;
    padding: 10px;
    color: #f92019;
    font-weight: bold;
    font-size: 1.2em;
}
.table-kouza__items.-manseki::after{
    content: "満席になりました" !important;
}
.table-kouza__items.-jyunbi::after{
    background-color: rgba(255, 255, 255, 0.7);
    content: "準備中" !important;
}
.-preparation{
    pointer-events: none;
    opacity: 0.5;
    position: relative;
}
.-preparation::after{
    background-color: rgba(255, 255, 255, 0.7);
    content: "準備中";
}
.-unclick{
    pointer-events: none;
    opacity: 0.5;
    position: relative;
}
.fullClosed{
    position: relative;
}
.fullClosed::after{
    content: "満席につき締め切り！";
    color: #f92019;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: right;
    background: rgba(255, 255, 255, 0.6);
    height: 100%;
    top: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
/** Toggle **/
#open8 table{
    padding: 20px;
    display: block;
    border: none;
}
/***** ★スクロール位置 *****/
.margin_adjust{
    padding-top: 140px;
    margin-top: -140px;
}
@media screen and (max-width: 768px){
    .margin_adjust{
        padding-top: 100px;
        margin-top: -100px;
    }
}
.-Xlarge img{
    width: 49%;
}
@media screen and (max-width: 768px){
    .-Xlarge img{
        width: 100%;
    }
}
/** PC/SP表示切替 **/
.-sponly{
    display: none !important;
}
@media screen and (max-width: 768px){
    .-sponly{
        display: block !important;
    }
    .-pconly{
        display: none !important;
    }
}
/** 各種ブレイクポイント **/
@media screen and (max-width: 768px){
    .catch{
        font-size: 20px;
    }
    .kougi{
        flex-direction: column;
    }
}
@media screen and (min-width: 768px) and (max-width: 853px){
    .annnai__link{
        font-size: 15px;
    }
}
@media screen and (min-width: 641px) and (max-width: 768px){
    body .kouzabox .kouzabox__sub a{
        font-size: 0.9rem;
    }
}
@media screen and (min-width: 377px) and (max-width: 391px){
    .text__main{
        font-size: 1.1rem;
    }
}
@media screen and (max-width: 376px){
    .kouzabox .kouzabox__sub a{
        font-size: 1rem;
    }
    .catch.-radius h3{
        font-size: 1.2rem;
    }
    .annnai__link{
        font-size: 0.9rem;
    }
    body .annnai__link.-purple{
        font-size: 0.86rem;
    }
    .text__main{
        font-size: 1.09rem;
    }
    .-spfont08rem{
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 345px){
    .text__main{
        font-size: 1.04rem;
    }
    body .box .kouzabox .kouzabox__sub a{
        font-size: 0.85rem;
    }
}
/** キャラクター画像入りコンテンツ **/
/* チェックリスト */
.check__list{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 32px;
}
.check__item{
    display: inline-block;
    border-bottom: 1px solid red;
    margin-top: 16px;
    font-size: 20px;
    font-weight: bold;
}
.check__item::before{
    content: '✔';
    color: red;
    display: inline-block;
    width: 24px;
    margin-left: -32px;
}
@media screen and (max-width: 671px){
    .check__list{
        max-width: 100%;
        width: 100%;
        align-items: center;
    }
    .lucky.-right{
        max-width: max-content;
        width: 100%;
        margin: 0 auto;
    }
    .lucky__img{
        max-height: 170px;
    }
}
@media screen and (max-width: 450px){
    .check__list{
        align-items: flex-start;
        padding-left: 35px;
    }
    .check__item{
        font-size: 1rem;
        text-align: left;
    }
}
@media screen and (max-width: 370px){
    .card__inner{
        padding: 20px 10px;
    }
}
@media screen and (max-width: 350px){
    .kougi__box .text__main{
        font-size: 1rem;
    }
    .btn__inner{
        font-size: 14px;
    }
    .subtitle.-bgon.-coral h4{
        font-size: 16px;
    }
    .check__list{
        padding-left: 25px;
    }
}
/* キャラクター */
.lucky{
    max-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lucky.-left{
    justify-content: flex-start;
}
.lucky.-right{
    justify-content: flex-end;
}
.lucky.-up{
    margin-top: -60px;
}
.lucky.-down{
    margin-bottom: -60px;
}
@media screen and (max-width: 700px){
    .lucky.-down{
        margin-bottom: -40px;
    }
}
.lucky__voice{
    position: relative;
    background-color: #fff0f5;
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #ef59a1;
    z-index: 1;
}
.lucky__voice.-lerge{
    font-size: 16px;
}
.lucky__voice.-white{
    background-color: #fff;
}

.lucky__voice.-white::after{
    background-color: #fff;
}
.lucky__voice::after{
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 12px;
    right: -6px;
    width: 16px;
    height: 16px;
    background-color: #fff0f5;
    transform: rotate(45deg);
    z-index: 0;
}
.lucky__img{
    max-height: 140px;
}
.kokuban{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: darkolivegreen;
    border: 4px solid burlywood;
    margin-top: 20px;
    padding: 12px;
    color: #fff;
    font-size: 20px;
}
@media screen and (max-width: 700px){
    .kokuban{
        flex-direction: column;
        gap: 0px;
        font-size: 16px;
    }
}
/** JSで制御 **/

/** END **/