*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: unset;
    vertical-align: top;
}
html,body{
    width: 100%;
    min-width: unset;
    height: 100%;
    background-color: #fff;
    color: #000;
    font-size: 19.2px;
    line-height: 1.75;
    letter-spacing: .045em;
    font-weight: 400;
}
h1{
    font-size: 2.08rem;
}
h2{
    font-size: 1.45rem;
}
h1,h2{
    font-weight: 900;
    line-height: 1.3em;
}
.h3{

}
small{
    font-size: .625rem;
    display: inline-block;
}
.small{
    font-size: .625rem;
}
img{
    width: 100%;
    height: auto;
}
.bk_red{
    background-color: #C80019;
}
.bk_black{
    background-color: #000;
}
.bk_gray{
    background-color: #E7E7E7;
}
.bk_white{
    background-color: white;
}

.bd-top_red{
    border-top: 3px solid #C80019;
}
.bd-top_black{
    border-top: 2px solid #000;
}
.white{
    color: white;
}
.red{
    color: #C80019;
}
.black{
    color: #000;
}
.spacer_xs{
    margin-top: 0.5rem;
}
.spacer_s{
    margin-top: 1rem;
}
.spacer_m{
    margin-top: 2.1rem;
    /* 50px */
}
.spacer_l{
    margin-top: 4.16rem;
    /* 100px */
}
.mb_1em{
    margin-bottom: 1em;
}
.center{
    text-align: center;
}
.bold{
    font-weight: 700;
}
.bold_black{
    font-weight: 900;
}
._btn{
    font-size: calc(1rem + 1px);
}
._btn a{
    padding: 0.3rem 1rem;
    border-radius: 100px;
    display: inline-block;
    min-width: 17rem;
    transition: .1s ease;
    letter-spacing: .08em;
}
._btn a:hover{
    background-color: #333;
}
._btn a.bk_white:hover{
    background-color: rgba(255,255,255,.85);
}
.btnConbo.flex{
    gap: 1.5rem;
}
/* FLEX */
.flex{
    display: flex;
    flex-wrap: unset;
}
.f_column{
    flex-direction: column;
}
.f_wrap{
    flex-wrap: wrap;
}
.f_grow{
    flex-grow: 1;
}
.f_1{
    flex:1;
}
.f_align_center,
header{
    align-items: center;
}
.f_justify_center{
    justify-content: center;
}
.f_justify_end{
    justify-content: end;
}
.f_justify_between{
    justify-content: space-between;
}
.f_row_reverse{
    flex-direction: row-reverse;
}

header{
    border-bottom: 2px solid #C80019;
}
/* POSITION */
.fixed{
    position: fixed;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}

/* CONTENT */
header{
    height: 100%;
}
.header_wrap{
    width: 100%;
    height: 90px;
    background-color: rgba(255,255,255,1);
    top: 0;
    left: 0;
    z-index: 99;
}
header .logo{
    /* flex-basis: 417px; */
    max-width: 100px;
    padding-left: 24px;
}
.header_nav_wrap,
.header_nav_wrap ul{
    height: 100%;
}
.parentmenuWrap{
    height: 100%;
}
.header_nav_wrap .parentmenu > li{
    cursor: pointer;
}
.header_nav_wrap .parentmenu > li span.menuTitle{
    padding: 0 0.5rem;
    height: 100%;
    font-size: 0.7rem;
}
.parentmenu > li > a span{
    color: white;
}
.parentmenu li:hover{
    /* background-color: rgba(255,255,255,.3);
    box-shadow: 0 0 4px rgba(0,0,0,.3); */
    color: #444;
}
.sp_menu{
    display: none;
}
.sp_menu span{
    display: block;
    height: 2px;
    background-color: #000;
    position: absolute;
    transition: all .3s ease-in-out;
}
.sp_menu span:first-child{
    top: calc(50% - 4px);
    width: 70%;
    left: 15%;
}
.sp_menu span:last-child{
    top: calc(50% + 4px);
    width: 50%;
    left: 35%;
}
.sp_menu.sp_menu_open span:first-child{
    transform: rotate(20deg);
    top: calc(50% );
}
.sp_menu.sp_menu_open span:last-child{
    transform: rotate(-20deg);
    top: calc(50% );
    width: 70%;
    left: 15%;
}
.readBtn{
    display: none;
}
@media screen and (max-width: 930px) {
    .sp_menu_open .header_wrap{
        background-color: rgba(255,255,255,1);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter:blur(8px);
    }
    .header_wrap {
        height: 60px;
    }
    header .logo {
        /* max-width: 55%; */
        padding-top: 6px;
    }
    .sp_menu{
        display: block;
        width: 60px;
        height: 100%;
        float: right;
        margin-right: 24px;
    }
    .parentmenuWrap{
        position: relative;
        top: 60px;
        right: 0;
    }
    .parentmenuWrap{
        position:absolute;
        right: -330px;
        top: 62px;
        width: 330px;
        height: calc(100vh - 60px);
        background-color: rgba(255, 255,255, 1);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        transition: all .3s ease-in-out;
    }
    .header_nav_wrap .parentmenuWrap.sp_menu_open{
        right: 0;
    }
    .header_nav_wrap .parentmenu {
        width: 100%;
        height: 96%;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: scroll;
        flex-direction: column;
    }
    .header_nav_wrap .parentmenu.sp_menu_open {
        right: 0;
        flex-direction: column;
    }
    .header_nav_wrap .parentmenu > li {
        border-left: none;
        padding: 1rem 2rem;
        width: calc(100% - 4rem);
        justify-content: flex-start;
        display: block;
        position: relative;
    }
    .parentmenu li:hover {
        background: unset;
        box-shadow: unset;
    }
    .header_nav_wrap .parentmenu > li::before {
        content: "";
        width: 100%;
        height: 1px;
        background-color: white;
        position: absolute;
        top: 3.4rem;
        left: 0;
    }
    .header_nav_wrap .parentmenu > li .readBtn {
        font-size: 1.5rem;
        font-weight: bold;
        position: absolute;
        top: 0.5rem;
        right: 24px;
        display: inline-block;
        width: 3rem;
        text-align: center;
    }
    .header_nav_wrap .parentmenu > li .readBtn::after {
        content: "+";
        display: inline-block;
        transition: all .3s ease-in-out;
    }
    .header_nav_wrap .parentmenu > li .readBtn.listOpen::after {
        transform: rotate(-45deg);
    }
    .slideshow_wrap {
        height: calc(100vh - 110px);
    }
    .header_nav_wrap .parentmenu > li span.menuTitle {
        padding-left: 0;
        font-size: 0.9rem;
    }
    .header_nav_wrap .parentmenu > li span br {
        display: none;
    }
}

section{
    padding: 4.16rem 0;
    position: relative;
    z-index: 3;
}
section.fv_section{
    /* padding: 0; */
}
section.herosection{
    padding: 4.16rem 0 calc(4.16rem / 2);
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

footer{
    padding-top: 5rem;
}
.footer_logo {
    max-width: 295px;
    padding: 0 24px;
    margin: 5rem auto;
}
.snshead{
    max-width: 175px;
    padding: 0 24px;
    margin: 0 auto;
}
.snswrap{
    max-width: 520px;
    padding: 0 24px;
    margin: 2rem auto;
}
.snswrap li a {
    display: inline-block;
    width: 40px;
}
.copywrap{
    margin: 3rem 0 1rem;
}
@media (min-width: 768px) and (max-width: 1304px) {
    
}
@media screen and (max-width: 768px) {
    html,body{
        font-size: 14px;
    }
    .header_nav_wrap .parentmenu > li span.menuTitle {
        height: auto;
    }
    .footer_logo{
        width: 155px;
    }
    .snshead {
        width: 100px;
        margin-top: 15px;
    }
    .snswrap{
        gap: 24px;
        justify-content: center;
    }
    .snswrap li a{
        width: calc(40px * 0.8);
    }
    .modal_image_wrap{
        padding: 0;
        width: 100%;
        height: 100%;
    }
}


.footer_generate{
    max-width: 698px;
    margin: 0 auto;
    margin-top: 8rem;
}

.welcometophoenix{
    max-width: 960px;
    margin: 0 auto;
}
.index_list{
    gap: 20px;
}
.index_list li{
    padding: 20px;
    letter-spacing: .13em;
    flex-basis: calc(50% - 50px);
    gap: 20px;
    cursor:pointer;
    transition: .1s ease-in;
}
.index_list li:hover{
    background-color: #EEE;
}
.index_list li > div{
    flex-basis: 50%;
}
.list_main_imgWrap{
    display: flex;
    align-items: center;
}
.index_list li > div:first-child::after{
    content: url("/files/user/LP/2024-25/beginners-guide/arrow_red.svg");
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    margin-top: 1.2rem;
    margin-left: calc(50% - (1.75rem / 2));
}
.list_num_svg{
    height: 3.2rem;
    margin-top: 1.2rem;
}
.list_num_title{
    font-size: 0.83rem;
    /* margin-top: 0.8rem; */
}
.list_title{
    font-size: 1.16rem;
    margin-top: 1rem;
}
.head_caption img{
    height: 4.83rem;
    width: auto;
}
.head_caption h1{
    margin-bottom: 6.13rem;
}
.head_caption.no_space h1{
    margin-bottom: 0.7rem;
}
.numcaption{
    margin: 1.66rem 0 2.5rem;
}
.pointList{
    gap: 4.16rem;
}
.pointList li > div.flex{
    gap: 2rem;
}
.pointList li:nth-child(even) .flex{
    flex-direction: row-reverse;
}
.pointList li > div.flex > div{
    flex-basis: 50%;
}
.pointList li div.listhasBtn{
    flex-basis: 100%;
}
.pointwrap{
    width: 6.6rem;
    margin-top: 1rem;
    display: inline-block;
}
.pointcaption{
    margin: 0.7em 0 1em;
}
.playerlist{
    gap: 1rem;
}
.playerlist li{
    flex-basis: calc(100% / 3 - 0.67rem);
    transition: all .2s ease;
}
.playerlist li:hover{
    box-shadow: 0 0 1rem #bbb;
}
.zenshin_zenryoku img{
    max-width: 715px;
}
.rurlecaption span{
    background-color: #C80019;
    padding: 0 0.7em;
}
.rurlecaption::after{
    content: "";
    width: 100%;
    height: 2px;
    background-color: white;
    display: block;
    position: absolute;
    top:50%;
    z-index: -1;
}
.ruleWrap.flex{
    gap: 4.16rem;
}
.ruleWrap.flex > div{
    flex-basis: 50%;
}
.ruleImg{
    padding-right: 2rem;
}
.mapwrap{
    aspect-ratio: 2 / 1;
    width: 100%;
}
.accessWrap{
    font-size: .833rem;
}
.mapwrap iframe{
    width: 100%;
    height: 100%;
}
.accessWrap.flex{
    gap: 2.5rem;
}
.accessWrap.flex > div{
    flex-basis: 50%;
}
.trafic-iconwrap{
    height: 2.9rem;
    margin-bottom: .7rem;
}
.trafic-iconwrap img{
    width: auto;
    height: 100%;
}
.yomigaeru{
    vertical-align:middle;
    line-height:1.3em;
}
.yomigaeru img{
    width:1em;
    height:1em;
}
@media screen and (max-width: 1080px) {
    .index_list{
        justify-content: center;
    }
    .index_list li{
        flex-basis: 70%;
    }
    .index_list li > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media screen and (max-width: 768px) {
    .index_list li{
        flex-basis: 100%;
        margin-left: -24px;
        margin-right: -24px;
        gap: 1rem;
    }
    .pointList li:nth-child(even) .flex,
    .pointList li > div.flex{
        flex-direction: column;
        gap: 1rem;
    }
    .playerlist li{
        flex-basis: calc(50% - 0.5rem);
    }
    .zenshin_zenryoku img{
        width: 80%;
    }
    .ruleWrap.flex,
    .accessWrap {
        gap: 1rem;
        flex-direction: column;
    }
    .ruleWrap.flex > div {
        flex-basis: 100%;
    }
    .ruleImg{
        padding:0 1rem;
        margin-top: 2rem;
    }
    .head_caption img {
        height: 4rem;
    }
    
}