.set {
    opacity: 0;
    -webkit-animation: bodyset .5s ease-out forwards 5.5s;
    -moz-animation: bodyset .5s ease-out forwards 5.5s;
    -o-animation: bodyset .5s ease-out forwards 5.5s;
    animation: bodyset .5s ease-out forwards 5.5s;
}

@-webkit-keyframes bodyset {

    100% {
        opacity: 1;
    }
}

@-moz-keyframes bodyset {

    100% {
        opacity: 1;
    }
}

@-o-keyframes bodyset {

    100% {
        opacity: 1;
    }
}

@keyframes bodyset {

    100% {
        opacity: 1;
    }
}

/*fv*/
.fvwarp {
    padding: 3em;
    font-family: 'RocknRoll One', sans-serif;
    text-align: center;
    margin: auto;
    height: calc(100vh - 6em - 50px);
    display: table;
}

.fvwarp .rogo {
    max-width: 450px;
    margin: 2em auto 0;
    display: table-cell;
    vertical-align: middle;
}

.fvwarp .rogo img {
    width: 100%;
}

/*news*/
.news {
    max-width: fit-content;
    width: 90%;
    margin: 8em auto;
}

.news .title {
    color: #E96000;
    font-size: 25px;
}

.news .subtitle {
    font-size: 14px;
    color: #EFC33F;
    margin: 1em 0;
}

.news ul {
    list-style: none;
    max-width: 600px;
}

.news li a {
    color: #707070;
    text-decoration: none;
    padding: 0.5em;
}

.news li a:hover {
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.news li a::before {
    content: "\f068";
    font-weight: 900;
    font-size: 0.5em;
    font-family: "Font Awesome 5 Free";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right: 1em;
}

.news li .day {
    margin-left: 1em;
    margin-right: 2em;
}

.news li .text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 10em);
}

.news .newsbtn {
    margin: 1em 1em 0 auto;
    width: fit-content;
}

.news .newsbtn a {
    display: block;
    background: #F8F9FA;
    font-size: 12px;
    padding: 1em;
    color: #707070;
    text-decoration: none;
    border-radius: 10px
}

.news .newsbtn a:hover {
    background: #707070;
    color: #fff;
    transition: all 0.5s ease;
}

/*コンタクトボタン*/
.contactwarp .btn {
    width: 90%;
    max-width: 250px;
    margin: 2em auto 10em;
}

.contactwarp .btn a {
    display: block;
    width: 100%;
    border: 1px solid #E96000;
    color: #E96000;
    text-align: center;
    border-radius: 30px;
    padding: 1em;
    text-decoration: none;
    position: relative;
    box-sizing: border-box;
}

.contactwarp .btn a:hover {
    background: #E96000;
    color: #fff;
    transition: all 0.5s ease;
}

.contactwarp .btn a::after {
    content: "\f105";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
    display: block;
}

/*スプラッシュ*/
.splash {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-animation: splashhide .5s ease-out forwards 5.0s;
    -moz-animation: splashhide .5s ease-out forwards 5.0s;
    -o-animation: splashhide .5s ease-out forwards 5.0s;
    animation: splashhide .5s ease-out forwards 5.0s;
}

@-webkit-keyframes splashhide {
    99% {
        opacity: 0;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-200%);
    }
}

@-moz-keyframes splashhide {
    99% {
        opacity: 0;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-200%);
    }
}

@-o-keyframes splashhide {
    99% {
        opacity: 0;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-200%);
    }
}

@keyframes splashhide {
    99% {
        opacity: 0;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-200%);
    }
}

.splash_logo {
    font-family: 'RocknRoll One', sans-serif;
    position: absolute;
    margin: -15px 0 0 -25px;
    top: 50vh;
    z-index: 5;
    left: 50vw;
    width: fit-content;
    text-align: center;
    height: 30px;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    opacity: 1;
    will-change: opacity;
    -webkit-animation: logo .3s ease-in 2.5s forwards, off .6s ease-in-out 1.5s forwards;
    -moz-animation: logo .3s ease-in 2.5s forwards, off .6s ease-in-out 1.5s forwards;
    -o-animation: logo .3s ease-in 2.5s forwards, off .6s ease-in-out 1.5s forwards;
    animation: logo .3s ease-in 2.5s forwards, off .6s ease-in-out 1.5s forwards;
    transform: translate(-50%, -50%);
}
.splash_logo span{
    opacity: 0;
}
@-webkit-keyframes logospan {
    100% {
        opacity: 1;
    }
}
.splash_logo span:nth-child(1){
    -webkit-animation: logospan .1s ease-in .1s forwards;
    -moz-animation: logospan .1s ease-in .1s forwards;
    -o-animation: logospan .1s ease-in .1s forwards;
    animation: logospan .1s ease-in .1s forwards;
}
.splash_logo span:nth-child(2){
    -webkit-animation: logospan .1s ease-in .15s forwards;
    -moz-animation: logospan .1s ease-in .15s forwards;
    -o-animation: logospan .1s ease-in .15s forwards;
    animation: logospan .1s ease-in .15s forwards;
}
.splash_logo span:nth-child(3){
    -webkit-animation: logospan .1s ease-in .2s forwards;
    -moz-animation: logospan .1s ease-in .2s forwards;
    -o-animation: logospan .1s ease-in .2s forwards;
    animation: logospan .1s ease-in .2s forwards;
}
.splash_logo span:nth-child(4){
    -webkit-animation: logospan .1s ease-in .25s forwards;
    -moz-animation: logospan .1s ease-in .25s forwards;
    -o-animation: logospan .1s ease-in .25s forwards;
    animation: logospan .1s ease-in .25s forwards;
}
.splash_logo span:nth-child(5){
    -webkit-animation: logospan .1s ease-in .3s forwards;
    -moz-animation: logospan .1s ease-in .3s forwards;
    -o-animation: logospan .1s ease-in .3s forwards;
    animation: logospan .1s ease-in .3s forwards;
}
.splash_logo span:nth-child(6){
    -webkit-animation: logospan .1s ease-in .35s forwards;
    -moz-animation: logospan .1s ease-in .35s forwards;
    -o-animation: logospan .1s ease-in .35s forwards;
    animation: logospan .1s ease-in .35s forwards;
}
.splash_logo span:nth-child(7){
    -webkit-animation: logospan .1s ease-in .4s forwards;
    -moz-animation: logospan .1s ease-in .4s forwards;
    -o-animation: logospan .1s ease-in .4s forwards;
    animation: logospan .1s ease-in .4s forwards;
}
.splash_logo span:nth-child(8){
    -webkit-animation: logospan .1s ease-in .45s forwards;
    -moz-animation: logospan .1s ease-in .45s forwards;
    -o-animation: logospan .1s ease-in .45s forwards;
    animation: logospan .1s ease-in .45s forwards;
}
.splash_logo span:nth-child(9){
    -webkit-animation: logospan .1s ease-in .5s forwards;
    -moz-animation: logospan .1s ease-in .5s forwards;
    -o-animation: logospan .1s ease-in .5s forwards;
    animation: logospan .1s ease-in .5s forwards;
}
.splash_logo span:nth-child(10){
    -webkit-animation: logospan .1s ease-in .55s forwards;
    -moz-animation: logospan .1s ease-in .55s forwards;
    -o-animation: logospan .1s ease-in .55s forwards;
    animation: logospan .1s ease-in .55s forwards;
}
.splash_logo span:nth-child(11){
    -webkit-animation: logospan .1s ease-in .6s forwards;
    -moz-animation: logospan .1s ease-in .6s forwards;
    -o-animation: logospan .1s ease-in .6s forwards;
    animation: logospan .1s ease-in .6s forwards;
}
.splash_logo span:nth-child(12){
    -webkit-animation: logospan .1s ease-in .65s forwards;
    -moz-animation: logospan .1s ease-in .65s forwards;
    -o-animation: logospan .1s ease-in .65s forwards;
    animation: logospan .1s ease-in .65s forwards;
}
.splash_logo span:nth-child(13){
    -webkit-animation: logospan .1s ease-in .7s forwards;
    -moz-animation: logospan .1s ease-in .7s forwards;
    -o-animation: logospan .1s ease-in .7s forwards;
    animation: logospan .1s ease-in .7s forwards;
}
.splash_logo span:nth-child(14){
    -webkit-animation: logospan .1s ease-in .75s forwards;
    -moz-animation: logospan .1s ease-in .75s forwards;
    -o-animation: logospan .1s ease-in .75s forwards;
    animation: logospan .1s ease-in .75s forwards;
}


.splash_svg {
    position: relative;
    margin: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
}

.splash_svg svg {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.splash_svg svg rect {
    width: 100%;
    height: 100%;
    fill: #f5d300;
    stroke: 0;
    -webkit-clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
    clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
    -webkit-animation: expand .7s ease-in forwards 3.7s;
    -moz-animation: expand .7s ease-in forwards 3.7s;
    -o-animation: expand .7s ease-in forwards 3.7s;
    animation: expand .7s ease-in forwards 3.7s;
}

.splash_minimize {
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}

.splash_minimize svg {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.splash_minimize svg rect {
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
    clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
    -webkit-animation: scale .2s ease-out forwards 2s, hide 1.3s ease-out forwards 2.2s;
    -moz-animation: scale .2s ease-out forwards 2s, hide 1.3s ease-out forwards 2.2s;
    -o-animation: scale .2s ease-out forwards 2s, hide 1.3s ease-out forwards 2.2s;
    animation: scale .2s ease-out forwards 2s, hide 1.3s ease-out forwards 2.2s;
    fill: #E96000;
}

@-webkit-keyframes scale {
    100% {
        -webkit-clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
        clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
    }
}

@-moz-keyframes scale {
    100% {
        -webkit-clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
        clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
    }
}

@-o-keyframes scale {
    100% {
        -webkit-clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
        clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
    }
}

@keyframes scale {
    100% {
        -webkit-clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
        clip-path: polygon(45vw 40vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
    }
}

@-webkit-keyframes hide {
    100% {
        fill: transparent;
    }
}

@-moz-keyframes hide {
    100% {
        fill: transparent;
    }
}

@-o-keyframes hide {
    100% {
        fill: transparent;
    }
}

@keyframes hide {
    100% {
        fill: transparent;
    }
}

@-webkit-keyframes off {
    100% {
        opacity: 0;
    }
}

@-moz-keyframes off {
    100% {
        opacity: 0;
    }
}

@-o-keyframes off {
    100% {
        opacity: 0;
    }
}

@keyframes off {
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes on {
    100% {
        opacity: 1;
    }
}

@-moz-keyframes on {
    100% {
        opacity: 1;
    }
}

@-o-keyframes on {
    100% {
        opacity: 1;
    }
}

@keyframes on {
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes logo {
    100% {
        color: #292929;
    }
}

@-moz-keyframes logo {
    100% {
        color: #292929;
    }
}

@-o-keyframes logo {
    100% {
        color: #292929;
    }
}

@keyframes logo {
    100% {
        color: #292929;
    }
}

@-webkit-keyframes type {
    0% {
        width: 0;
    }
}

@-moz-keyframes type {
    0% {
        width: 0;
    }
}

@-o-keyframes type {
    0% {
        width: 0;
    }
}

@keyframes type {
    0% {
        width: 0;
    }
}

@-webkit-keyframes type2 {
    0% {
        width: 0;
    }

    50% {
        width: 0;
    }

    100% {
        width: 100;
    }
}

@-moz-keyframes type2 {
    0% {
        width: 0;
    }

    50% {
        width: 0;
    }

    100% {
        width: 100;
    }
}

@-o-keyframes type2 {
    0% {
        width: 0;
    }

    50% {
        width: 0;
    }

    100% {
        width: 100;
    }
}

@keyframes type2 {
    0% {
        width: 0;
    }

    50% {
        width: 0;
    }

    100% {
        width: 100;
    }
}

@-webkit-keyframes expand {
    25% {
        -webkit-clip-path: polygon(0vw 0vh, 55vw 40vh, 55vw 58vh, 45vw 58vh);
        clip-path: polygon(0vw 0vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
        fill: white;
    }

    50% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 45vw 60vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 45vw 60vh);
        fill: #f5d300;
    }

    75% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 0vw 100vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 0vw 100vh);
        fill: white;
    }

    100% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
        fill: #f5d300;
    }
}

@-moz-keyframes expand {
    25% {
        -webkit-clip-path: polygon(0vw 0vh, 55vw 40vh, 55vw 58vh, 45vw 58vh);
        clip-path: polygon(0vw 0vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
        fill: white;
    }

    50% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 45vw 60vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 45vw 60vh);
        fill: #f5d300;
    }

    75% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 0vw 100vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 0vw 100vh);
        fill: white;
    }

    100% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
        fill: #f5d300;
    }
}

@-o-keyframes expand {
    25% {
        -webkit-clip-path: polygon(0vw 0vh, 55vw 40vh, 55vw 58vh, 45vw 58vh);
        clip-path: polygon(0vw 0vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
        fill: white;
    }

    50% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 45vw 60vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 45vw 60vh);
        fill: #f5d300;
    }

    75% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 0vw 100vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 0vw 100vh);
        fill: white;
    }

    100% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
        fill: #f5d300;
    }
}

@keyframes expand {
    25% {
        -webkit-clip-path: polygon(0vw 0vh, 55vw 40vh, 55vw 58vh, 45vw 58vh);
        clip-path: polygon(0vw 0vh, 55vw 40vh, 55vw 60vh, 45vw 60vh);
        fill: white;
    }

    50% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 45vw 60vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 45vw 60vh);
        fill: #f5d300;
    }

    75% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 0vw 100vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 55vw 60vh, 0vw 100vh);
        fill: white;
    }

    100% {
        -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
        clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
        fill: #f5d300;
    }
}

/*727px以下　SP表示処理*/
@media screen and (max-width: 727px) {
    .splash_logo {
        height: auto;
        margin: auto;
        width: 90%;
        line-height: 1.5;
        font-size: 0.9em;
    }
}