@charset "UTF-8";
/*PC 1180px-*/
/*tablet 768px-1179px*/
/*SP -767px*/
@font-face {
    font-family: 'NotoSansJP';
    src: url(../fonts/NotoSansJP.woff) format('woff-variations');
    font-weight: 100 900;
    font-display: swap;
}
:root{
    --main-color: #F19807;
    --sub-color: #F19BB4;
    --sub-color2: #F3F5BD;
    --border-color: #07151F;
    /*--gradation: linear-gradient(45deg, #B67B03 0%, #DAAF08 30%, #FEE9A0 60%, #DAAF08 85%);*/
    --main-txt-color: #07151F;
    --main-font-family: 'Yu Gothic','游ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo', sans-serif;
    --container-width: 1300px;
    --grid-row-gutter: 1rem;
    --grid-column-gutter: 1%;
    --header-height: 100px;
    --box-shadow-lg: 0 0 30px rgba(0, 0, 0, 0.3);
    --box-shasow-sm: 0 0 5px rgba(0, 0, 0, 0.3);
}
html{
    font-size: 125%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}
body{
    font-size: 0.8em;/*16px*/
    line-height: 1.3;
    font-family: var(--main-font-family);
    color: var(--main-txt-color);
}
body.fixed{
    overflow-y: hidden;
}
main{
    overflow-x: clip;
}
a{
    transition: 0.4s ease-in-out;
}
a:not(.btn):hover{
    opacity: 0.5;
}
.container{
    width: 95%;
    max-width: var(--container-width);
    margin: 0 auto;
}
.container.container-full{
    width: 100%;
}
.container.container-sm{
    max-width: 1100px;
}
.container.container-xs{
    max-width: 900px;
}
.container.container-xxs{
    max-width: 700px;
}
@media screen and (max-width: 1179px) {
    html{
        font-size: 62.5%;
    }
    body{
        font-size: 1.4em;/*14px*/
    }
}
@media screen and (min-width: 768px) {
    a[href^='tel:']{
        pointer-events: none;
    }
}
@media screen and (min-width: 1180px) {
    .hidden-lg{
        display: none!important;
    }
}
@media screen and (min-width: 768px) and (max-width: 1179px) {
    .hidden-sm{
        display: none!important;
    }
}
@media screen and (max-width:767px) {
    :root{
        --header-height: 50px;
    }
    .hidden-xs{
        display: none!important;
    }
}
/*Grid*/
.row{
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-column-gutter));
    margin-right: calc(-1 * var(--grid-column-gutter));
    row-gap: var(--grid-row-gutter);
}
.row > *{
    flex: 0 0 auto;
    padding-left: var(--grid-column-gutter);
    padding-right: var(--grid-column-gutter);
}
.row.col1 > *{
    width: 100%;
}
.row.col2 > *{
    width: calc(100% / 2 );
}
.row.col3 > *{
    width: calc(100% / 3);
}
.row.col4 > *{
    width: calc(100% / 4);
}
.row.col5 > *{
    width: calc(100% / 5);
}
.row.col6 > *{
    width: calc(100% / 6);
}
@media screen and (min-width: 768px) and (max-width: 1179px) {
    .row.col1-sm > *{
        width: 100%;
    }
    .row.col2-sm > *{
        width: calc(100% / 2);
    }
    .row.col3-sm > *{
        width: calc(100% / 3);
    }
    .row.col4-sm > *{
        width: calc(100% / 4);
    }
    .row.col5-sm > *{
        width: calc(100% / 5);
    }
    .row.col6-sm > *{
        width: calc(100% / 6);
    }
}
@media screen and (min-width: 1180px){
    .row.col1-lg > *{
        width: 100%;
    }
    .row.col2-lg > *{
        width: calc(100% / 2);
    }
    .row.col3-lg > *{
        width: calc(100% / 3);
    }
    .row.col4-lg > *{
        width: calc(100% / 4);
    }
    .row.col5-lg > *{
        width: calc(100% / 5);
    }
    .row.col6-lg > *{
        width: calc(100% / 6);
    }
}
/*Layout*/
.p-abs{
    position: absolute;
}
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.f-nowrap{
    flex-wrap: nowrap;
}
.j-center{
    justify-content: center;
}
.j-start{
    justify-content: flex-start;
}
.j-end{
    justify-content: flex-end;
}
.j-around{
    justify-content: space-around;
}
.j-between{
    justify-content: space-between;
}
.a-center{
    align-items: center;
}
.a-start{
    align-items: flex-start;
}
.a-end{
    align-items: flex-end;
}
.a-baseline{
    align-items: baseline;
}
.d-col{
    flex-direction: column;
}
.d-row-reverse{
    flex-direction: row-reverse;
}
.d-col-reverse{
    flex-direction: column-reverse;
}
.m-center{
    margin-left: auto;
    margin-right: auto;
}
.m-right{
    margin-left: auto;
    margin-right: 0;
}
.t-center{
    text-align: center;
}
.t-left{
    text-align: left;
}
.t-right{
    text-align: right;
}
.w-100{
    width: 100%!important;
}
.h-100{
    height: 100%;
}
@media screen and (min-width: 1180px) {
    .f-nowrap-lg{
        flex-wrap: nowrap;
    }
}
@media screen and (max-width: 1179px) {
    .d-col-sm{
        flex-direction: column;
    }
    .d-row-sm{
        flex-direction: row;
    }
    .a-baseline-sm{
        align-items: baseline;
    }
    .a-center-sm{
        align-items: center;
    }
    .j-center-sm{
        justify-content: center;
    }
    .w-100-sm{
        width: 100%;
    }
    .t-center-sm{
        text-align: center;
    }
    .t-left-sm{
        text-align: left;
    }
    .t-right-sm{
        text-align: right;
    }
}
@media screen and (max-width: 767px) {
    .d-col-xs{
        flex-direction: column;
    }
    .w-100-xs{
        width: 100%;
    }
    .j-start-xs{
        justify-content: flex-start;
    }
    .t-left-xs{
        text-align: left;
    }
}
/*Spacing*/
.mb-10{
    margin-bottom: 0.5rem;
}
.mb-20{
    margin-bottom: 1.0rem;
}
.mb-30{
    margin-bottom: 1.5rem;
}
.mb-40{
    margin-bottom: 2.0rem;
}
.mb-50{
    margin-bottom: 2.5rem;
}
.mb-60{
    margin-bottom: 3.0rem;
}
.mb-70{
    margin-bottom: 3.5rem;
}
.mb-80{
    margin-bottom: 4.0rem;
}
.mb-90{
    margin-bottom: 4.5rem;
}
.mb-100{
    margin-bottom: 5.0rem;
}
.mb-120{
    margin-bottom: 6.0rem;
}
.mb-150{
    margin-bottom: 7.5rem;
}
.mb-200{
    margin-bottom: 10rem;
}
@media screen and (max-width: 1179px) {
    .mb-10-sm{
        margin-bottom: 1.0rem;
    }
    .mb-20-sm{
        margin-bottom: 2.0rem;
    }
    .mb-30-sm{
        margin-bottom: 3.0rem;
    }
    .mb-40-sm{
        margin-bottom: 4.0rem;
    }
    .mb-50-sm{
        margin-bottom: 5.0rem;
    }
    .mb-60-sm{
        margin-bottom: 6.0rem;
    }
    .mb-70-sm{
        margin-bottom: 7.0rem;
    }
    .mb-80-sm{
        margin-bottom: 8.0rem;
    }
    .mb-90-sm{
        margin-bottom: 9.0rem;
    }
    .mb-100-sm{
        margin-bottom: 10.0rem;
    }
}
/*Text*/
.t-bold{
    font-weight: bold;
}
.t-xs{
    font-size: 0.8em;
}
.t-sm{
    font-size: 0.9em;
}
.t-md{
    font-size: 1.25em;
}
.t-lg{
    font-size: 1.5em;
}
.t-xl{
    font-size: 2em;
}
.t-xxl{
    font-size: 2.5em;
}
.min{
    font-family: 'Times New Roman', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'MS PMincho', serif;
}
.goth{
    font-family: 'Yu Gothic','游ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo', sans-serif;
}
.t-white{
    color: white!important;
}
.t-main{
    color: var(--main-color)!important;
}
.t-sub{
    color: var(--sub-color)!important;
}
.t-sub02{
    color: var(--sub-color2)!important;
}
.bg-main{
    background-color: var(--main-color)!important;
}
.bg-sub{
    background-color: var(--sub-color)!important;
}
.bg-sub02{
    background-color: var(--sub-color2)!important;
}
.bg-white{
    background-color: #fff;
}
.ttl01, .ttl02{
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.ttl01{
    /*text-shadow    : 
    2px  2px 1px var(--sub-color2),
   -2px  2px 1px var(--sub-color2),
    2px -2px 1px var(--sub-color2),
   -2px -2px 1px var(--sub-color2),
    2px  0px 1px var(--sub-color2),
    0px  2px 1px var(--sub-color2),
   -2px  0px 1px var(--sub-color2),
    0px -2px 1px var(--sub-color2);
    color: #fff;*/
    width: fit-content;
    text-align: center;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
}
.ttl01::after{
    content: '';
    display: block;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 0;
    height: 0.7em;
    position: absolute;
    bottom: -0.3em;
    left: -5%;
    z-index: -1;
    transition: 1s 0.2s;
}
.ttl01.active::after{
    width: 110%;
}
.ttl01.ttl-yel::after{
    background-color: #F8EC27;
}
.ttl01.ttl-pink::after{
    background-color: #FEC8D8;
}
.box-ttl{
    font-size: 0.9rem;
    font-weight: bold;
    position: relative;
    line-height: 1.2;
    padding: 0.5em 0;
}
@media screen and (max-width: 1179px) {
    .ttl01,.ttl02{
        font-size: 2rem;
    }
    .ttl01 img{
        height: 30px;
        width: auto; 
    }
    .box-ttl{
        font-size: 1.6rem;
        line-height: 1.2;
    }
}
@media screen and (max-width: 767px){
    .event-ttl.event-ttl-row{
        flex-direction: row;
        align-items: center;
    }
}
/*Parts*/
.tag{
    display: inline-block;
    text-align: center;
    padding: 0.2em 0.5em;
    margin-right: 1em;
    font-weight: bold;
    color: #fff;
    background-color: var(--main-txt-color);
}
.box{
    background-color: #fff;
    border: 0.1rem solid var(--main-txt-color);
    padding: 1.5rem;
    border-radius: 2rem;
}
.box-border{
    border: 2px solid var(--border-color);
}
.box-inner{
    padding: 2rem 1rem;
}
.border{
    border: 2px solid currentColor;
}
/*Button Link*/
.disabled{
    opacity: 0.3;
    pointer-events: none;
}
.btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
    background-image: linear-gradient(to right, transparent 50%, #fff 50%);
    background-size: 200% 100%;
}
.btn.btn-lg{
    max-width: 800px;
    font-size: 20px;
    padding: 1rem;
}
.btn:hover{
    background-position: -100% -100%;
}
.btn span{
    display: inline-block;
}
.btn-sub{
    color: #fff;
    border: 0.1rem solid var(--main-txt-color);
    background-color: var(--main-txt-color);
}
.btn-main{
    color: var(--main-txt-color);
    border: 0.1rem solid var(--main-txt-color);
    background-color: var(--main-color);
}
.btn-sub:hover{
    color: var(--main-txt-color);
}
.sticky-btn{
    position: sticky;
    top: var(--header-height);
    z-index: 1;
    background-color: rgba(255,255,255,0.8);
    padding: 0.5rem 0;
}
.arrow{
    width: 0.8rem;
    height: 0.8rem;
    display: inline-block;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
}
.sns-list > li > a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid;
    color: #fff;
}
.sns-list > .fb > a{
    background-color: #3B5998;
}
.sns-list > .x > a{
    background-color: #000;
}
.sns-list > .in > a{
    background: linear-gradient(225deg, #5478f2 0%, #f23f79 60%, #ffa500 100%);
}
.sns-list > .ln > a{
    background-color: #19BC03;
}
.sns-list > .yt > a{
    background-color: #f92525;
}
.sns-list > li:not(:last-child){
    margin-right: 10px;
}
@media screen and (max-width: 767px) {
    .box-inner{
        padding: 2rem 0;
    }
}
/*Header*/
#header-toggle #check{
    display: none;
}
#header{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: var(--header-height);
    background-color: var(--main-color);
    border-top: 0.1rem solid var(--main-txt-color);
    border-bottom: 0.1rem solid var(--main-txt-color);
    padding: 0 1rem;
}
#header h2{
    margin-right: 1.5rem;
}
#header h2, #header h1{
    line-height: 1;
}
.countdown{
    width: var(--header-height);
    height: var(--header-height);
    line-height: 1;
    font-weight: bold;
    margin: 0 1vw;
    flex-shrink: 0;
    background: #fff;
    border: 0.1rem solid var(--main-txt-color);
}
.countdown .t-md, .countdown .t-xxl{
    color: var(--sub-color);
    text-shadow: 
    1px  1px 1px var(--main-txt-color),
   -1px  1px 1px var(--main-txt-color),
    1px -1px 1px var(--main-txt-color),
   -1px -1px 1px var(--main-txt-color),
    1px  0px 1px var(--main-txt-color),
    0px  1px 1px var(--main-txt-color),
   -1px  0px 1px var(--main-txt-color),
    0px -1px 1px var(--main-txt-color); 
}
.countdown .t-xxl{
    display: block;
}
#header #header-link{
    margin-right: 1.5vw;
}
#header #header-link .header-btn-list{
    margin-right: 1vw;
}
#header #header-link .header-btn-list > li:first-child{
    margin-bottom: 0.5vw;
}
.header-btn-list .btn{
    font-size: 16px;
}
#header-toggle #toggle{
    width: calc(var(--header-height) - 0.5rem);
    height: calc(var(--header-height) - 0.5rem);
    max-width: 90px;
    max-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0.5rem;
    top: 0.25rem;
    z-index: 3;
    /*background-color: #fff;*/
    background-image: url(../images/menu/toggle-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    /*border-radius: 50%;
    border: 0.1rem solid var(--main-txt-color);*/
}
#header-toggle #toggle .menu-txt{
    position: absolute;
    top: 7px;
}
#header-toggle #toggle span, #header-toggle #toggle span::before, #header-toggle #toggle span::after{
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--main-txt-color);
    position: absolute;
    transition: 0.7s;
    border-radius: 10px;
}
#header-toggle #toggle span{
    bottom: 15px;
}
#header-toggle #toggle span::before{
    top: 5px;
}
#header-toggle #toggle span::after{
    bottom: 5px;
}
#header-toggle #header-global{
    position: fixed;
    right: 0;
    top: var(--header-height);
    width: 100%;
    height: calc(100vh - var(--header-height));
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
    background-color: var(--sub-color2);
    padding: 3rem 1.5rem;
    overflow: auto;
}
/*#header-toggle #header-global .menu-wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100vw;
    background-color: var(--main-color);
    overflow: auto;
    padding: 3rem 1.5rem;
    transition: 0.5s;
    opacity: 0;
}*/
#header-toggle #header-global .global-menu .parent-menu > div{
    background-color: #f19bb4;
    background-image: radial-gradient(circle, #ffffff4d 2.5px, transparent 2.5px), radial-gradient(circle, #ffffff4d 2.5px, transparent 2.5px);
    background-position: 0 0, 11px 7px;
    background-size: 22px 14px;
    padding: 10px;
    border: 0.1rem solid var(--main-txt-color);
    border-radius: 10px;
}
#header-toggle #header-global .global-menu .parent-menu img{
    height: 25px;
    width: auto;
}
#header-toggle #header-global .global-menu .child-menu a{
    display: block;
    margin-left: 0.5em;
    margin-right: 0.5em;
    padding: 1em 0.5em;
    padding-right: calc(0.5em + 18px);    
    color: var(--main-txt-color);
    font-weight: bold;
    border-bottom: 1px dashed var(--main-txt-color);
    position: relative;
}
#header-toggle #header-global .global-menu .child-menu a::after{
    content: '';
    display: inline-block;
    width: 18px;
    height: 15px;
    background-image: url(../images/menu/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
}
#header-toggle #header-global .global-menu .child-menu a:hover{
    opacity: 1;
    background-color: #F8EC27;
}
#header-toggle #header-global .btn.btn-sub{
    max-width: 350px;
}
/*Open*/
#header-toggle #check:checked ~ #toggle span{
    background-color: transparent;
}
#header-toggle #check:checked ~ #toggle span::before{
    transform: rotate(45deg);
    top: 0;
}
#header-toggle #check:checked ~ #toggle span::after{
    transform: rotate(-45deg);
    bottom: 0;
}
#header-toggle #check:checked ~ #header-global{
    opacity: 1;
    visibility: visible;
}
/*#header-toggle #check:checked ~ #header-global .menu-wrapper{
    opacity: 1;
    right: 0;
}*/
@media screen and (min-width: 1180px) {
    #header #header-logo{
        max-width: 50%;
    }
    /*#header-toggle #header-global .menu-wrapper{
        width: 30%;
    }*/
}
@media screen and (min-width: 768px){
    #header-toggle #toggle .menu-txt{
        top: 18px;
    }
    #header-toggle #toggle span, #header-toggle #toggle span::before, #header-toggle #toggle span::after{
        width: 30px;
    }
    #header-toggle #toggle span{
        bottom: 30px;
    }
    #header-toggle #toggle span::before{
        top: 9px;
    }
    #header-toggle #toggle span::after{
        bottom: 9px;
    }
    #header{
        padding-right: calc(var(--header-height) + 0.5rem);
    }
    #header-toggle #header-global{
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}
@media screen and (max-width: 1179px) {
    .countdown.hidden-lg{
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0.5em 0;
    }
    .countdown .t-xxl{
        display: inline;
    }
    #header-toggle #header-global .global-menu .parent-menu > div{
        position: relative;
    }
    #header-toggle #header-global .global-menu .parent-menu > div::after{
        content: '';
        display: inline-block;
        width: 30px;
        height: 30px;
        background-image: url(../images/menu/arrow-bottom.svg), url(../images/menu/toggle-bg.svg);
        background-size: 10px, contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        right: 5px;
        top: 0;
        bottom: 0;
        margin: auto;
        transition: 0.5s;
    }    
    #header-toggle #header-global .global-menu .child-menu{
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
        max-height: 0;
    }
    #header-toggle #header-global .global-menu .parent-menu.is-open > div::after{
        background-image: url(../images/menu/arrow-top.svg), url(../images/menu/toggle-bg.svg);
    }
    #header-toggle #header-global .global-menu .parent-menu.is-open .child-menu{
        opacity: 1;
        visibility: visible;
        transition: 0.5s;
        max-height: 1000px;
    }
}
@media screen and (max-width: 767px) {
    .countdown.hidden-lg{
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 0;
    }
    #header-toggle #toggle .menu-txt{
        width: 70%;
    }
    #header #header-logo{
        padding-right: 50px;
    }
    #header h2 img{
        width: auto;
        max-height: 20px;
    }
    #header h1 img{
        width: auto;
        max-height: 40px;
    }
    #header-toggle #header-global .global-menu .parent-menu img{
        height: 20px;
        width: auto;
    }
}
#main-visual{
    position: relative;
}
#main-visual .main-img{
    position: relative;
}
#main-visual .main-container{
    display: flex;
    flex-wrap: wrap;
    background-color: var(--sub-color2);
}
#main-visual .pickup-menu ul{
    row-gap: 0;
    padding: 1.5rem 1rem;
}
#main-visual .pickup-menu ul li{
    margin-top: -5px;
}
@media screen and (min-width: 1180px) {
    #main-visual .pickup-menu{
        width: 22%;
    }
    #main-visual .pickup-menu ul{
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    #main-visual .main-img{
        width: 78%;
    }
}
@media  screen and (max-width: 1179px) {
    #main-visual .main-container{
        flex-direction: column-reverse;
    }
}
#news-section{
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #ccc calc(100% - 1px)),
                linear-gradient(90deg, transparent calc(100% - 1px), #ccc calc(100% - 1px));
    background-size: 2rem 2rem;
    background-repeat: repeat;
    background-position: center center;
    background-color: #F2F2F2;
}
.news-list-container{
    background-color: #fff;
    margin: auto;
    height: 300px;
}
.news-list{
    width: 100%;
    height: 280px;
    overflow-y: auto;
}
.news-list > li{
    display: flex;
    align-items: baseline;
    margin-bottom: 1em;
}
.page-section{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
#dream-race{
    padding-top: 0;
    background-color: var(--sub-color2);
}
.infinite-scroll{
    animation: marquee 90s linear infinite .5s both;
}
.infinite-scroll img{
    max-width: unset;
}
.loop-txt{
    border-top: 0.1rem solid var(--main-txt-color);
    border-bottom: 0.1rem solid var(--main-txt-color);
    padding: 0.5rem 0;
}
.dream-list{
    padding: 1rem;
}
.dream-list > li{
    position: relative;
    text-align: center;
    padding: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1179px) {
    .dream-list > li::before{
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
@media screen and (max-width: 767px) {
    .infinite-scroll img{
        height: 25px;
        width: auto;
    }
    .dream-list > li{
        padding: 0.5rem;
    }
}
#bnr-section{
    border-top: 0.1rem solid var(--main-txt-color);
    border-bottom: 0.1rem solid var(--main-txt-color);
    background-color: var(--sub-color);
    padding: 2rem 0;
}
#bnr-section ul > li{
    display: flex;
}
#bnr-section ul > li > a{
    width: calc(100% - 0.5rem);
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--main-txt-color);
    border-radius: 5px;
    background-color: #fff;
    padding: 4px;
}
#bnr-section ul > li:not(:last-child) > a img{
    border-radius: 5px;
}
#footer{
    background-color: var(--main-color);
    padding-top: 4rem;
    padding-bottom: 2rem;
}
#pagetop{
    cursor: pointer;
    font-weight: bold;
    width: 4.5rem;
    height: 4.5rem;
    max-width: 60px;
    max-height: 60px;
    padding-top: 0.5rem;
    background-image: url(../images/menu/toggle-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /*background-image: var(--gradation);*/
    position: fixed;
    right: 0.5rem;
    bottom: 0.5rem;
    /*border: 4px double var(--border-color);*/
    z-index: 2;
    transition: 0.4s ease-in-out;
}
#pagetop img{
    max-width: 70%;
}
#pagetop:hover{
    opacity: 0.5;
}
#pagetop::after{
    content: '';
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0.5rem;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-135deg);
}
@media screen and (min-width: 1180px) {
    #footer .logo{
        padding-right: 3.5%;
    }
}
@media screen and (max-width: 1179px) {
    #pick-up{
        background-size: 5px, 5px, 80px;
    }
    #bnr-section{
        background-size: 5px, 5px;
    }
}
@keyframes fadein{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes zoomin{
    0%{
        opacity: 0;
        scale: 0;
    }
    100%{
        opacity: 1;
        scale: 1;
    }
}
@keyframes fadeinUp{
    0%{
        opacity: 0;
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes blurOut{
    0%{
        opacity: 0;
        filter: blur(30px);
    }
    100%{
        opacity: 1;
        filter: blur(0);
    }
}
@keyframes clipfromTop {
    0% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
        opacity: 0;
    }

    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        opacity: 1;
    }
}
@keyframes clipfromLeft {
    0% {
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
        opacity: 0;
    }

    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        opacity: 1;
    }
}
@keyframes flipLeft{
    0%{
        transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
        opacity: 0;
    }
    100%{
        transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}
.anime{
    opacity: 0;
}
.active{
    animation-fill-mode: forwards;
}
.fadein.active{
    animation-name: fadein;
    animation-duration: 1.5s;
}
.zoomin.active{
    animation-name: zoomin;
    animation-duration: 1.5s;
}
.fadeinUp.active{
    animation-name: fadeinUp;
    animation-duration:  1.5s;
}
.blurOut.active{
    animation-name: blurOut;
    animation-duration:  1s;
}
.flipLeft.active{
    animation-name: flipLeft;
    animation-duration: 1s;
}
.clipTop.active {
    animation-name: clipfromTop;
    animation-duration: 2s
}
.clipLeft.active{
    animation-name: clipfromLeft;
    animation-duration: 2s;
}
.delay-1{
    animation-delay: 0.2s;
}
.delay-2{
    animation-delay: 0.4s;
}
.delay-3{
    animation-delay: 0.6s;
}
.delay-4{
    animation-delay: 0.8s;
}
.delay-5{
    animation-delay: 1s;
}
.delay-6{
    animation-delay: 1.2s;
}
.delay-7{
    animation-delay: 1.4s;
}
.delay-8{
    animation-delay: 1.6s;
}
.duration-05{
    animation-duration: 0.5s!important;
}
.duration-1{
    animation-duration: 1s!important;
}
.duration-2{
    animation-duration: 2s!important;
}
.duration-3{
    animation-duration: 3s!important;
}
/*下層ページ*/
#under-contents{
    position: relative;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #ccc calc(100% - 1px)),
                linear-gradient(90deg, transparent calc(100% - 1px), #ccc calc(100% - 1px));
    background-size: 2rem 2rem;
    background-repeat: repeat;
    background-position: center center;
    background-color: #F2F2F2;
}
.movie-box{
    aspect-ratio: 16 / 9;
}
.movie-box iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1179px) {

}