@charset "UTF-8";

/* ↓PC（横幅640px超）の場合 */
html {
    /* 1rem = 1pxと定義 */
    font-size: 1px;
}

/* ↓スマホ（横幅640px以上）の場合 */


@media screen and (max-width: 640px) {
    html {
        font-size: .75px;
    }

}

body {
    font-size: 16rem;
    color: #000000;
    font-family: "Noto Sans JP";
    font-feature-settings: 'palt' on;
    min-width: 375px;
    position: relative;
    margin: 0 auto;
    background: #DFDFDF;
}
.wrap {
    overflow: hidden;
}

.maru {
    font-family: "Zen Maru Gothic", serif;
}




.inner {
    padding: 0 10px;
    margin: 0 auto;
    position: relative;
}

/* グローバルまたは共通スタイルとして定義 */
:root {
    /* Desktop SVGs */
    --tooth-svg-downward: url('data:image/svg+xml;utf8,<svg width="30" height="15" viewBox="0 0 30 15" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 15,15 30,0" fill="white"/></svg>');
    --tooth-svg-upward: url('data:image/svg+xml;utf8,<svg width="30" height="15" viewBox="0 0 30 15" xmlns="http://www.w3.org/2000/svg"><polygon points="0,15 15,0 30,15" fill="white"/></svg>');

    /* Mobile SVGs */
    --tooth-svg-downward-mobile: url('data:image/svg+xml;utf8,<svg width="22" height="11" viewBox="0 0 22 11" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 11,11 22,0" fill="white"/></svg>');
    --tooth-svg-upward-mobile: url('data:image/svg+xml;utf8,<svg width="22" height="11" viewBox="0 0 22 11" xmlns="http://www.w3.org/2000/svg"><polygon points="0,11 11,0 22,11" fill="white"/></svg>');
}

/*fv
================================================*/


#fv {
    position: relative;
    margin: 0 auto ;
    background: url(../img/bg_fv.png) center top no-repeat;
    background-size: 100% auto;
}

#fv::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: #000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 11.7%;
}

#fv::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 11.75%;
    transform: translateY(100%);
    left: 0;
    width: 100%;
    aspect-ratio: 1280 / 405;
    background-image: url(../img/bg_fv_bottom.png);
    background-size: cover;
}

#fv h1 {
    position: relative;
    z-index: 2;
    width: 84.21%;
    margin: 0 auto;
    padding-top: 4%;
    padding-left: 2.65%; 
}

#fv h1 img {
    width: 100%;
    height: auto;
}


@media screen and (max-width:670px) {
    #fv {
        background: url(../img/bg_fv_s.png) center top no-repeat;
        background-size: 100% auto;
        padding-bottom: 115px;
    }
    
    #fv h1 {
        width: 100%;
        padding-top: 8.4%;
        padding-left: 0;
        margin-bottom: 19px;
    }
    
    #fv::before {
        bottom: 0;
    }

    #fv::after {
        bottom: 1px;
        transform: translateY(100%);
        aspect-ratio: 786 / 612;
        background-image: url(../img/bg_fv_bottom_s.png);
    }
}


/*about
================================================*/

.about {
    position: relative;
}


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

.about .inner {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 3.4%;
}

.about .txt {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.9;
    margin-bottom: 70px;
    padding: 30px 20px;
    background-color: #FFFFFF;
}

.about .note {
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    margin-top: 70px;
    max-width: 638px;
    margin: 70px auto 0;
}

.about .note span {
    width: 49px;
    min-width: 49px;
}

.about .note a {
    text-decoration: underline;
}

.about .note a:hover {
    text-decoration: none;
}

@media screen and (max-width:670px) {


    .about .inner {
        padding: 0 20px;
    }
    .about .txt {
        font-size: 14px;
        padding: 50px 20px;
        line-height: 1.9;
        margin-bottom: 20px;
        border-radius: 5px;
    }

    .about .note {
        display: none;
    }

}


/*parts
================================================*/

.btn a {
    display: block;
    width: 100%;
    position: relative;
}

.btn a>img {
    width: auto;
}

.btn a i {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    margin: auto;
    transition: all .5s;
}


.btn a::after {
    transition: all .5s;
}

.btn a:hover::after {
    right: 43px;
}

.btn a:hover i {
    right: 36px;
}

.btn a i img {
    width: 100%;
    height: auto;
    display: block;
}


.btn_line a {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg_line.png);
    background-size: cover;
    aspect-ratio: 859 / 168;
    padding-bottom: 2px;
    position: relative;
    max-width: 428px;
}

.btn_line a:after {
    content: "";
    position: absolute;
    width: 20px;
    height: fit-content;
    aspect-ratio: 20.11 / 23.22;
    background-color: #fff;
    clip-path: polygon(0 0,100% 50%,0 100%);
    top: 0;
    bottom: 0;
    margin: auto;
    right: 47px;
}

.btn_fanclub a {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg_fanclub.png);
    background-size: cover;
    aspect-ratio: 859 / 168;
    padding-bottom: 2px;
    position: relative;
    max-width: 428px;
}

.btn_fanclub a:after {
    content: "";
    position: absolute;
    width: 20px;
    height: fit-content;
    aspect-ratio: 20.11 / 23.22;
    background-color: #fff;
    clip-path: polygon(0 0,100% 50%,0 100%);
    top: 0;
    bottom: 0;
    margin: auto;
    right: 47px;
}


.btn_entry a {
    background: url(../img/bg_entry.png) center top no-repeat;
    background-size: cover;
    max-width: 515px;
    aspect-ratio: 515.34 / 70;
    margin: 0 auto;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: .05em;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3px;
}


.btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 862px;
    margin: 30px auto 0;
    gap: 20px;
}

.btns>li {
    display: flex;
    flex-direction: column;
    width: calc((100% - 20px) / 2);
}

@media screen and (max-width:1110px) {
    .btns {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .btns>li {
        width: 100%;
        max-width: 360px;
    }

    .btn a>img {
        height: 22px;
    }

    
    .btn_line a {
        font-size: 30px;
    }

    .btn_line a:after {
        width: 16px;
        right: 40px;
    }

    
    .btn_fanclub a {
        font-size: 30px;
    }

    .btn_fanclub a:after {
        width: 16px;
        right: 40px;
    }

    .btn_entry a {
        max-width: 353px;
        font-size: 21px;
        padding: 0;
    }

    .btn_entry a span {
        font-size: 21px;
    }

    .btn_entry a>img {
        height: 16px;
        width: auto;
    }

    .btn_entry a i {
        display: block;
        width: 20px;
        height: 20px;
        right: 28px;
        bottom: 1px;
    }

    .btn a i {
        width: 14px;
        height: 14px;
    }
}


/*course
================================================*/

#course {
    position: relative;
    z-index: 2;
    padding-top: 8.3%;
    padding-bottom: 40px;
}

.fig_course01 {
    position: absolute;
    z-index: 1;
    top: 6%;
    width: 11%;
    right: 8%;
}

.fig_course02 {
    position: absolute;
    z-index: 1;
    top: 44%;
    width: 10%;
    left: 7.7%;
}

.fig_course03 {
    position: absolute;
    z-index: 1;
    bottom: 17%;
    width: 9.5%;
    right: 6.8%;
}

#course .inner {
    max-width: 770px;
    margin: 0 auto;
}


#course img {
    max-width: 100%;
    height: auto;
}

#course h3 {
    margin-bottom: 15px;
}

#course ul {
    display: flex;
    flex-direction: column;
    gap: 65px;
}

#course li {
    position: relative;
}

#course li span {
    position: absolute;
    z-index: -1;
    right: 64px;
    bottom: -40px;
    transform: translateX(100%);
}

#course li span img {
    width: auto;
    height: 185px;
}


.course-box {
    padding: 30px 50px;
    background-color: #fff;
    display: flex;
    gap: 20px;
}

.course-box figure {
    max-width: 280px;
}

.course-box div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-box dl {
    display: flex;
    gap: 10px;
    align-items: center;
}

.course-box dt {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    padding: 7px 8px;
    border-radius: 100vmax;
    color: #fff;
    position: relative;
    z-index: 1;
}

.course-box dt::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #000;
    transform: skew(-15deg);
    z-index: -1;
}

.course-box dd {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
}

.course-box P {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
}


@media screen and (max-width:1160px) {

    .fig_course01,
    .fig_course02,
    .fig_course03 {
        display: none;
    }
}

@media screen and (max-width:670px) {

    #course {
        padding-top: 53%;
        padding-bottom: 56px;
    }
    
    #course .inner {
        padding: 0 20px;
    }
    
    .course-box {
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .course-box p {
        font-size: 14px;
    }

    
    .course-box figure {
        margin: 0 auto;
    }


    #course li span {
        transform: translateX(0);
    }

    #course li:nth-of-type(1) span {
        right: -31px;
        bottom: auto;
        top: -90px;
    }

    #course li:nth-of-type(2) span {
        left: -30px;
        right: auto;
        bottom: auto;
        top: -90px;
    }

    #course li:nth-of-type(3) span {
        right: -36px;
        bottom: -56px;
    }

    #course li span img {
        height: 119px;
    }
    

    .fig_course01 {
        display: block;
        max-width: 130px;
        width: 100%;
        left: 50%;
        top: 14px;
        transform: translateX(13px);
    }

    .fig_course02 {
        display: block;
        width: 100%;
        position: absolute;
        top: -20px;
        right: 50%;
        max-width: 122px;
        z-index: 1;
        left: auto;
    }

    .fig_course03 {
        display: block;
        width: 100%;
        position: absolute;
        top: auto;
        bottom: -43px;
        right: 54px;
        max-width: 93px;
        z-index: 1;
        left: auto;
    }
}


/*more
================================================*/

#more {
    position: relative;
    z-index: 1;
    padding-top: 160px;
    padding-bottom: 215px;
}

#more::before {
    position: absolute;
    content: "";
    z-index: 1;
    width: 100%;
    top: 10%;
    bottom: -10%;
    left: 0;
    background-image: radial-gradient(at 0% 100%, #f25b41, #e01616);
}

#more::after {
    position: absolute;
    content: "";
    z-index: 1;
    aspect-ratio: 2560 / 2923;
    width: 100%;
    min-width: 1280px;
    top: -370px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/bg_more.png);
    background-size: cover;
}


#more .inner {
    position: relative;
    z-index: 2;
}

#tit_more {
    max-width: 945px;
    margin: 0 auto 60px;
}

#tit_more img {
    max-width: 100%;
    height: auto;
}

#more .txt {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 190%;
    margin: 0 auto 69px;
    color: #231815;
    background-color: #fff;
    padding: 50px 40px;
    max-width: 800px;
    border-radius: 5px;
}

#more .txt span {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .05em;
    display: inline-block;
    margin-top: 10px;
    font-weight: 400;
    color: #4C4C5A;
    border-radius: 5px;
}

#more h3 {
    max-width: 995px;
    margin: 0 auto;
}

#more h3 img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width:670px) {
    #more {
        padding: 88px 0 57px;
        background-image: radial-gradient(at 0% 100%, #f25b41, #e01616);
    }

    
    #more::before {
        background-image: url(../img/bg_terms.png);
        background-size: cover;
        min-width: 1280px;
        bottom: -560px;
        left: -570px;
        top: auto;
        transform: translateX(0);
        aspect-ratio: 2560 / 2237;
    }

    #more::after {
        min-width: 1280px;
        left: -180px;
        top: -430px;
        transform: translateX(0);
    }

    #more .inner {
        padding: 0;
    }


    #tit_more {
        padding: 0;
        margin-bottom: 18px;
        max-width: 340px;
    }
    
    #more h3 {
        padding: 0 20px;
        position: relative;
        width: 400px;
        margin-bottom: 30px;
    }

    #more .txt {
        font-size: 16px;
        padding: 42px 20px;
        line-height: 1.9;
        margin: 0 20px 90px;
        font-weight: 500;
    }

    #more .txt span {
        font-size: 14px;
        text-align: left;
        line-height: 1.4;
        margin: 10px 0 0;
        letter-spacing: .05em;
        display: inline-block;
    }

}

#flow {
    display: flex;
    flex-wrap: wrap;
    max-width: 1085px;
    margin: 30px auto 0;
    gap: 20px 25px;
    position: relative;
}

#flow>li {
    background: #fff;
    display: flex;
    flex-direction: column;
    width: calc((100% - 25px) / 2);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}


#flow>li h4 {
    position: absolute;
    padding: 7px 24px 11px;
    top: 0;
    left: 0;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    background-color: #000;
}

#flow>li h4 span {
    font-size: 27px;
}


#flow ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

#flow ul>li {
    display: flex;
    flex-direction: column;
}

#flow ul>li:nth-of-type(1) {
    flex: 1;
    text-align: center;
    min-width: 278px;
}

#flow ul>li:nth-of-type(2) {
    max-width: 200px;
    flex: 1;
}

#flow ul>li:nth-of-type(1) p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0 0 8px;
    color: #484848;
}

#flow ul>li:nth-of-type(1) span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #484848;
}

#flow ul>li:nth-of-type(1) p strong {
    font-size: 30px;
    font-weight: 700;
    color: #E01616;
    letter-spacing: .1em;
}

.arrow_b {
    width: 43px;
    margin: 0 auto 8px;
}

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

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

.fig_flow01_s {
    display: none;
}

#more>.btn_fanclub {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
}


@media screen and (max-width:960px) {

    #flow {
        max-width: 680px;
        margin: 50px auto 0;
    }

    #flow ul {
        flex-direction: column;
    }

    #flow>li {
        width: 100%;
    }

    #flow>li {
        padding: 60px 20px 50px;
    }

    #flow>li h4 {
        font-size: 16px;
    }

    #flow>li h4 span {
        font-size: 20px;
    }

    #flow>li h3 {
        padding: 12px;
    }

    #flow>li h3 img {
        height: 21px;
        width: auto;
    }

    #flow ul {
        padding: 0;
    }

    #flow ul>li:nth-of-type(1) {
        width: 100%;
        margin: 0 0 16px;
        flex: 1;
    }

    #flow ul>li:nth-of-type(2) {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    #flow ul>li:nth-of-type(1) p {
        font-size: 16px;
    }

    #flow>li:nth-of-type(3) p {
        font-size: 20px!important;
    }

    #flow ul>li:nth-of-type(1) p strong {
        font-size: 22px;
    }

    #flow li ul span {
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
        line-height: 1.4;

    }

    #flow ul>li:nth-of-type(1) p:last-of-type {
        margin-bottom: 0;
    }

    #flow ul>li:nth-of-type(1) p span {
        font-size: 16px;
    }

}

@media screen and (max-width:670px) {

    #flow {
        margin: 0 auto 0;
        padding: 0 20px;
    }


}

/*main
================================================*/


#main {
    padding: 0 0 10%;
    position: relative;
    z-index: 2;
}

#main::after {
    position: absolute;
    content: "";
    z-index: 1;
    width: 100%;
    aspect-ratio: 1281 / 1118.32;
    background-image: url(../img/bg_terms.png);
    background-size: cover;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}


#main .inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#main ol {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#main ol li {
    padding: 30px 32px;
    background: #FFF;
    color: #4C4C5A;
    margin: 0 auto;
    width: 100%;
}

#main ol li h3 {
    text-align: center;
    font-size: 27px;
    font-weight: 900;
    line-height: 150%;
    padding: 0 0 16px;
    border-bottom: 3px solid #CCCCCC;
    margin: 0 0 16px;
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    color: #4C4C5A;
}

#main ol li h3 span {
    display: block;
    max-width: 36px;
}

#main ol li h3 img {
    display: block;
    width: 100%;
    height: auto;
}

#main ol li p {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.05em;
    color: #4C4C5A;
}

#main ol li p small {
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
}

#main ol li p.text-left {
    text-align: left;
}

#main ol li p span {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.7px;
    padding: 8px 0 0;
}

#main ol li p.note {
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    letter-spacing: .05em;
}

#main ol li p.suppl {
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    color: #4C4C5A;
    text-align: left;
}

#main h2 {
    margin-bottom: 20px;
}


#main h2 img {
    width: 100%;
}

.fig_main {
    position: relative;
    z-index: 2;
    max-width: 336px;
    margin: 0 auto 62px;
    display: block;
}

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

#terms {
    margin-bottom: 60px;
}

#announcement {
    margin-bottom: 60px;
}

@media screen and (max-width:670px) {

    #main {
        padding: 0 0 28%;
        gap: 60px;
    }

    #main::after {
        display: none;
    }

    .fig_main {
        max-width: 246px;
        margin-bottom: 76px;
    }

    #main .inner {
        padding: 0 20px;
    }


    #main h2 {
        margin: 0 auto 20px;
        max-width: 400px;
    }

    #main ol li {
        border-radius: 5px;
    }
    
    #main ol li h3 {
        font-size: 22px;    
        line-height: 150%;
        padding: 0 0 22px;
        display: flex;
        gap: 18px;
        text-align: left;
        margin-bottom: 26px;
    }


    #main ol li p {
        font-size: 20px;
        font-weight: 900;
    }

    #main ol li p small {
        font-size: 16px;
        line-height: 1.5;
        display: inline-block;
    }

    #main ol li p.note {
        text-align: center;
    }
    
}


@media screen and (max-width:670px) {
    #announcement .box {
        max-width: 600px;
        margin: 0 auto;
        padding: 18px 12px;
        border-radius: 8px;
    }
}

@media screen and (max-width:450px) {
    .badge {
        width: 101px;
        height: 99px;
    }
}

/*info
================================================*/

#info {
    background-color: #000000;
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

#info::before {
    content: "";
    position: absolute;
    z-index: 1;
    aspect-ratio: 1280 / 342.97;
    width: 100%;
    top: 1px;
    transform: translateY(-100%);
    background-image: url(../img/info_top.png);
    background-size: cover;
}

#info .inner {
    max-width: calc(1280px + 24px * 2);
    margin: 0 auto;
}

#info h3 {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 40px;
    font-weight: 700;
    line-height: 90%;
    margin: 0 auto 40px;
}

#caution {
    max-width: 767px;
    margin: 0 auto 80px;
}

#caution ul {
    padding-left: 1.25em;
    margin: 0 auto 32px;
}


#caution li {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 190%;
    list-style-type: disc;

}

#caution p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 190%;
}

#contact p {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.25px;
}

#contact p a {
    text-decoration: none;
    transition: .3s;
    -webkit-transition: .3s;
}

#contact p a:hover {
    opacity: .75;
}

@media screen and (max-width:670px) {
    #info::before {
        aspect-ratio: 786 / 328;
        top: 1px;
        transform: translateY(-100%);
        background-image: url(../img/info_top_s.png);
    }

    #info .inner {
        padding: 0;
    }

    #info h3 {
        font-size: 30px;
        margin: 0 auto 32px;
    }

    #caution {
        padding: 0 20px;
    }

    #caution li,
    #caution p {
        font-size: 13.5px;
    }

    #contact p {
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.938px;
    }
}

/*footer
================================================*/
#footer {
    padding: 40px 10px;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
}

#footer .inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #000;
}

#footer ul {
    margin: 0 auto 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
}

#footer ul li {
    display: flex;
    flex-direction: column;
    margin: 0 0 40px;
}

#footer li img {
    height: 51px;
    width: auto;
}

#footer div {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 16px 0;
    margin: 0 0 16px;
}

#footer div p:nth-of-type(1) {
    margin: 0 0 16px;
    font-size: 14px;
}

#footer div p:nth-of-type(2) {
    font-size: 18px;
    line-height: 1.66;
}

#footer .inner>p {
    font-size: 12px;
}

@media screen and (max-width:670px) {
    #footer div p:nth-of-type(2) {
        font-size: 14px;
        line-height: 1.66;
    }
    
}


/*bits
================================================*/
@media screen and (min-width:1000px) {}

.pc_none {
    display: none !important;
}

.sp_none {
    display: block !important;
}

@media screen and (max-width:670px) {
    .pc_none {
        display: block !important;
    }

    .sp_none {
        display: none !important;
    }
}


@media screen and (max-width:960px) {
    .fig_more01 {
        display: none!important;
    }
    .fig_more02 {
        display: none!important;
    }
}


/*
@media screen and (max-width:670px) {
  dl {
    display: flex;
    flex-wrap: wrap;
  }
  dt,
  dd {
    display: flex;
    flex-direction: column;
  }
}
*/