@charset "utf-8";

:root {
    --mainColor: #FFB100;
    --mainColorFC: #FFC70A;
    --subColor: #FFE99F;
    --checkColor: rgba(255, 199, 10, 0.05);
    --commonColor: #FFFADE;
    --white: #fff;
    --mainFont: "Noto Sans JP", sans-serif;
    --titleFont: "hoss-round-wide", sans-serif;;
}


 
/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--mainColor);
    z-index: 9999;
}

.action {
    opacity:0;
    transition: 1s ease-out;
}
.loaded .action {
    opacity:1;
}
.action.act02 img,
.action.act03 img {
    transform: scale(1.1);
    transition: 1s ease-out;
}
.loaded .action.act01 {
    transition-delay: 1.5s;
}
.loaded .action.act02 {
    transition-delay: 2s;
}
.loaded .action.act02 img,
.loaded .action.act03 img {
    transition-delay: 2s;
    transform: scale(1);
}
.loaded .action.act03 {
    transition-delay: 2.25s;
}
.loaded .action.act04 {
    transition-delay: 2.75s;
}

.mainWrap .anim.fade {
    opacity: 0;
    transition: all .5s ease-out;
}
.mainWrap .anim.fade.on {
    opacity: 1;
}

@media screen and (max-width: 960px){}



/*===================================================
	ALL
====================================================*/
body {
    background: var(--commonColor);
    background-image: repeating-linear-gradient(45deg, var(--checkColor), var(--checkColor) 40px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 80px), repeating-linear-gradient(315deg, var(--checkColor), var(--checkColor) 40px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 80px);
}

.mainWrap {
    position: relative;
    z-index: 1;
    color: var(--mainColor);
    font-family: var(--mainFont);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}
.mainWrap img {
    display: block;
}

.container {}

section {
    position: relative;
    padding: 0 0 120px;
}

section .frameBox {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
section .frameBox .titBox {
    position: relative;
    background: var(--subColor);
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}
section .frameBox .titBox h3 {
    font-family: var(--titleFont);
    font-size: 60px;
    color: var(--white);
    font-weight: 800;
    text-shadow: -2px -2px 0 var(--mainColor), 2px -2px 0 var(--mainColor), -2px 2px 0 var(--mainColor), 2px 2px 0 var(--mainColor), 5px 5px 0 var(--mainColor);
}
section .frameBox .titBox .crown {
    position: absolute;
    width: 120px;
    top: -45px;
    left: 40px;
}
section .frameBox .titBox .crown.right {
    left: initial;
    right: 40px;
}
section .frameBox .titBox .roof {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

section .inBox {
    width: calc(100% - 30px);
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--mainColor);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 80px 60px 60px;
}

@media screen and (min-width:961px) {
    
    .sp {
        display: none;
    }

    a {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

}

@media screen and (max-width:960px) {
    
    .pc {
        display: none;
    }

    body {}

    .mainWrap {
        font-size: 14px;
    }

    .container {}

    section {}

    section .frameBox {}
    section .frameBox .titBox {
        padding: 25px 10px;
    }
    section .frameBox .titBox h3 {
        font-size: 42px;
        line-height: 1.2;
        text-shadow: -2px -2px 0 var(--mainColor), 2px -2px 0 var(--mainColor), -2px 2px 0 var(--mainColor), 2px 2px 0 var(--mainColor), 4px 4px 0 var(--mainColor);
    }
    section .frameBox .titBox .crown {
        width: 70px;
        top: -30px;
        left: 20px;
    }
    section .frameBox .titBox .crown.right {
        width: 70px;
        top: -30px;
        right: 20px;
    }
    section .frameBox .titBox .roof {}

    section .inBox {
        padding: 40px 20px 20px;
    }
    section .inBox h3 {}

    .mainWrap .copy {}

}



/*===================================================
    bnr
====================================================*/
.bnr {
    position: fixed;
    z-index: 100;
    max-width: 175px;
    width: 15%;
    bottom: 30px;
    right: 30px;
}
.bnr a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.bnr a .main {
    display: block;
    width: 100%;
    height: auto;
}
.bnr a .main img {
    animation: bnrAnim 30s linear infinite;
}
@keyframes bnrAnim {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-360deg);
    }
}
.bnr a .bnrTxt {
    position: absolute;
    width: 70%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.bnr a .bnrItem {
    position: absolute;
}
.bnr a .bnrItem.bnrItem01 {
    right: -15%;
    top: -25%;
    transform: translate(-15%, 25%);
    width: 50%;
}
.bnr a .bnrItem.bnrItem02 {
    left: 6%;
    bottom: 9%;
    transform: translate(-6%, 9%);
    width: 20%;
}

@media screen and (min-width:961px) {

.bnr a .bnrItem.bnrItem01 img,
.bnr a .bnrItem.bnrItem02 img {
    transition: all 0.5s;
}
.bnr a:hover .bnrItem.bnrItem01 img {
    transform: translate(10px, -10px);
}
.bnr a:hover .bnrItem.bnrItem02 img {
    transform: translate(-10px, 10px);
}

}

@media screen and (max-width:960px) {

    .bnr {
        max-width: 120px;
        width: 25%;
        bottom: 15px;
        right: 15px;
    }
    .bnr a {}
    .bnr a .main{}
    .bnr a .bnrTxt{}
    .bnr a .bnrItem {}
    .bnr a .bnrItem.bnrItem01 {}
    .bnr a .bnrItem.bnrItem02 {}

}
    


/*===================================================
    heroView
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    margin: 0 auto 100px;
    overflow: clip;
}

#heroView .roof {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

#heroView .heroInner {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 65vh;
    aspect-ratio: 1 / 1;
    z-index: 2;
}
#heroView .heroInner .main {
    overflow: clip;
    width: 100%;
    height: 100%;
    border-radius: 1000px 1000px 0 0;
    border: 3px solid var(--mainColor);
    box-shadow: 6px 6px var(--mainColor);
}
#heroView .heroInner .main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
#heroView .heroInner .topTxt {
    position: absolute;
    left: 50%;
    z-index: 2;
}
#heroView .heroInner .topTxt.topTxt01 {
    top: -27%;
    transform: translate(-50%, 27%);
    width: 90%;
}
#heroView .heroInner .topTxt.topTxt02 {
    bottom: -27%;
    transform: translate(-50%, -27%);
    width: 75%;
}
#heroView .heroInner .topTxt .logo {    
    display: block;
    width: 45%;
    margin: 0 auto 5%;
}
#heroView .heroInner .topTxt .logo img {}

#heroView .leftBox {
    position: absolute;
    width: 32%;
    max-width: 600px;
    height: 85vh;
    left: 0;
    bottom: 0;
    z-index: -1;
}
#heroView .leftBox .leftItem {
    position: absolute;
}
#heroView .leftBox .leftItem.leftItem01 {
    width: 27%;
    left: -5%;
    top: 5%;
    transform: translate(5%, -5%);
}
#heroView .leftBox .leftItem.leftItem02 {
    width: 30%;
    left: 15%;
    bottom: 5%;
    transform: translate(-15%, -5%);
}
#heroView .leftBox .leftItem.leftItem03 {
    width: 30%;
    right: 5%;
    top: 5%;
    transform: translate(5%, -5%);
}
#heroView .leftBox .leftItem.leftItem04 {
    width: 48%;
    left: 55%;
    top: 40%;
    transform: translate(-55%, -40%);
    z-index: -1;
}
#heroView .leftBox .leftItem.leftItem05 {
    width: 22%;
    right: 15%;
    top: 55%;
    transform: translate(5%, -55%);
    z-index: -1;
}
#heroView .leftBox .leftItem.leftItem06 {
    width: 18%;
    left: 55%;
    top: 50%;
    transform: translate(-55%, -50%);
    z-index: -1;
}

#heroView .rightBox {
    position: absolute;
    width: 32%;
    max-width: 600px;
    height: 85vh;
    right: 0;
    bottom: 0;
    z-index: -1;
}
#heroView .rightBox .rightItem {
    position: absolute;
}
#heroView .rightBox .rightItem.rightItem01 {
    width: 30%;
    left: 7%;
    bottom: 15%;
    transform: translate(-7%, 15%);
}
#heroView .rightBox .rightItem.rightItem02 {
    width: 18%;
    right: 5%;
    top: 10%;
    transform: translate(5%, -10%);
}
#heroView .rightBox .rightItem.rightItem03 {
    width: 52%;
    left: 30%;
    top: 40%;
    transform: translate(-30%, -40%);
    z-index: -1;
}
#heroView .rightBox .rightItem.rightItem04 {
    width: 40%;
    right: 22%;
    top: 22%;
    transform: translate(22%, -22%);
    z-index: -1;
}
#heroView .rightBox .rightItem.rightItem05 {
    width: 35%;
    left: 32%;
    top: 20%;
    transform: translate(-32%, -20%);
    z-index: -1;
}

#heroView .leftBox .leftItem.leftItem01 img {animation: fuwafuwa 5.7s infinite;}
#heroView .leftBox .leftItem.leftItem02 img {animation: fuwafuwa 5.2s infinite;}
#heroView .leftBox .leftItem.leftItem03 img {animation: fuwafuwa 6.3s infinite;}
#heroView .leftBox .leftItem.leftItem04 img {animation: fuwafuwa 5.4s infinite;}
#heroView .leftBox .leftItem.leftItem05 img {animation: fuwafuwa 5.3s infinite;}
#heroView .leftBox .leftItem.leftItem06 img {animation: fuwafuwa 6.1s infinite;}
#heroView .rightBox .rightItem.rightItem01 img {animation: fuwafuwa 5.7s infinite;}
#heroView .rightBox .rightItem.rightItem02 img {animation: fuwafuwa 5.2s infinite;}
#heroView .rightBox .rightItem.rightItem03 img {animation: fuwafuwa 6.3s infinite;}
#heroView .rightBox .rightItem.rightItem04 img {animation: fuwafuwa 5.4s infinite;}
#heroView .rightBox .rightItem.rightItem05 img {animation: fuwafuwa 5.1s infinite;}

@keyframes fuwafuwa {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0px);
	}	
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

	#heroView {
        min-height: 600px;
        margin: 0 0 50px;
        height: 100svh;
	}

    #heroView .roof {
        min-width: 800px;
    }

    #heroView .heroInner {
        width: 80%;
        max-width: 400px;
        height: initial;
        aspect-ratio: 1 / 1.2;
    }
    #heroView .heroInner .main {}
    #heroView .heroInner .main img {}
    #heroView .heroInner .topTxt {}
    #heroView .heroInner .topTxt.topTxt01 {
        width: 110%;
        top: -35%;
        transform: translate(-50%, 35%);
    }
    #heroView .heroInner .topTxt.topTxt02 {
        width: 80%;
        bottom: -20%;
        transform: translate(-50%, -20%);
    }
    #heroView .heroInner .topTxt .logo {}
    #heroView .heroInner .topTxt .logo img {}

    #heroView .heroInner .action.act04 {}
	#heroView .heroInner .heroItem {
        position: absolute;
    }
    #heroView .heroInner .heroItem.heroItem01 {
        top: -38%;
        right: -12%;
        transform: translate(12%, 38%);
        width: 30%;
    }
	#heroView .heroInner .heroItem.heroItem02 {
        top: 90%;
        left: -15%;
        transform: translateX(15%);
        width: 28%;
    }
	#heroView .heroInner .heroItem.heroItem03 {
        top: 90%;
        right: -15%;
        transform: translateX(-15%);
        width: 26%;
    }
	#heroView .heroInner .heroItem.heroItem04 {
        top: -32%;
        left: -8%;
        transform: translate(8%, 32%);
        width: 20%;
    }
	#heroView .heroInner .heroItem.heroItem05 {
        top: 25%;
        left: -12%;
        transform: translate(12%, -25%);
        width: 8%;
    }
	#heroView .heroInner .heroItem.heroItem06 {
        top: 16%;
        right: -15%;
        transform: translate(-15%, -16%);
        width: 12%;
    }

    #heroView .heroInner .heroItem.heroItem01 img {animation: fuwafuwa 5.7s infinite;}
	#heroView .heroInner .heroItem.heroItem02 img {animation: fuwafuwa 6.3s infinite;}
	#heroView .heroInner .heroItem.heroItem03 img {animation: fuwafuwa 5.4s infinite;}
	#heroView .heroInner .heroItem.heroItem04 img {animation: fuwafuwa 5.2s infinite;}
	#heroView .heroInner .heroItem.heroItem05 img {animation: fuwafuwa 5.8s infinite;}
	#heroView .heroInner .heroItem.heroItem06 img {animation: fuwafuwa 6.1s infinite;}

    @keyframes fuwafuwa {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0px);
        }	
    }

}



/*===================================================
    Profile
====================================================*/
#profile {}
            
#profile .frameBox .titBox {}
#profile .frameBox .titBox h3 {}
#profile .frameBox .titBox .crown {}
#profile .frameBox .titBox .roof {}

#profile .inBox {}

#profile .inBox .profileList {}
#profile .inBox .profileList li {
    display: flex;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px dashed var(--mainColor);
    font-size: 18px;
}
#profile .inBox .profileList li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}
#profile .inBox .profileList .tit {
    width: 25%;
}
#profile .inBox .profileList .txt {
    width: 75%;
}

@media screen and (min-width: 961px) {}
        
@media screen and (max-width: 960px) {

    #profile {}
                
    #profile .frameBox .titBox {}
    #profile .frameBox .titBox h3 {}
    #profile .frameBox .titBox .crown {}
    #profile .frameBox .titBox .roof {}

    #profile .inBox {
        padding: 40px 20px 30px;
    }

    #profile .inBox .profileList {}
    #profile .inBox .profileList li {
        font-size: 14px;
    }
    #profile .inBox .profileList li:last-child {}
    #profile .inBox .profileList .tit {
        width: 30%;
    }
    #profile .inBox .profileList .txt {
        width: 70%;
    }

}



/*===================================================
    Q&A
====================================================*/
#qa {}
            
#qa .frameBox .titBox {}
#qa .frameBox .titBox h3 {}
#qa .frameBox .titBox .crown {}
#qa .frameBox .titBox .roof {}

#qa .inBox {}

/* accord */
#qa .inBox .op_accord {
    margin: 0 auto 15px;
}
#qa .inBox .op_accord:last-child {
    margin: 0 auto;
}
#qa .inBox .op_accord .accordionList {}
#qa .inBox .op_accord .accordionList .accordionTit{
    position: relative;
    padding: 20px;
    background: var(--commonColor);
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
#qa .inBox .op_accord .accordionList .accordionTit.open {
    border-radius: 20px 20px 0 0;
}
#qa .inBox .op_accord .accordionList .accordionTit .icon {
    width: 40px;
    margin: 0 25px 0 0;
}
#qa .inBox .op_accord .accordionList .accordionTit .txt {}
#qa .inBox .op_accord .accordionList .accordionTit span {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s ease;
}
#qa .inBox .op_accord .accordionList .accordionTit span::before,
#qa .inBox .op_accord .accordionList .accordionTit span::after {
    content: "";
    position: absolute;
    background: var(--mainColor);
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    transition: 0.3s ease;
}
#qa .inBox .op_accord .accordionList .accordionTit span::after {
    transform: translateY(-50%) rotate(90deg);
}
#qa .inBox .op_accord .accordionList .accordionTit.open span::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}
#qa .inBox .op_accord .accordionList .accordionDetail {
    display: none;
    padding: 0 40px 40px;
    background: var(--commonColor);
    border-radius: 0 0 20px 20px;
}
#qa .inBox .op_accord .accordionList .accordionDetail .photo {
    margin: 0 auto;
}
#qa .inBox .op_accord:nth-child(1) .accordionList .accordionDetail .photo {
    width: 62.5%;
}
#qa .inBox .op_accord:nth-child(2) .accordionList .accordionDetail .photo {
    width: 90%;
}
#qa .inBox .op_accord:nth-child(3) .accordionList .accordionDetail .photo {}

@media screen and (min-width: 961px) {}
        
@media screen and (max-width: 960px) {

    #qa {}
                
    #qa .frameBox .titBox {}
    #qa .frameBox .titBox h3 {}
    #qa .frameBox .titBox .crown {}
    #qa .frameBox .titBox .roof {}

    #qa .inBox {}

    /* accord */
    #qa .inBox .op_accord {}
    #qa .inBox .op_accord:last-child {}
    #qa .inBox .op_accord .accordionList {}
    #qa .inBox .op_accord .accordionList .accordionTit{
        padding: 20px 35px 20px 20px;
    }
    #qa .inBox .op_accord .accordionList .accordionTit .icon {
        width: 30px;
        margin: 0 15px 0 0;
    }
    #qa .inBox .op_accord .accordionList .accordionTit .txt {}
    #qa .inBox .op_accord .accordionList .accordionTit span {
        right: 15px;
        width: 15px;
        height: 15px;
    }
    #qa .inBox .op_accord .accordionList .accordionTit span::before,
    #qa .inBox .op_accord .accordionList .accordionTit span::after {}
    #qa .inBox .op_accord .accordionList .accordionTit span::after {}
    #qa .inBox .op_accord .accordionList .accordionTit.open span::after {}
    #qa .inBox .op_accord .accordionList .accordionDetail{
        padding: 0 20px 20px;
    }
    #qa .inBox .op_accord .accordionList .accordionDetail .photo {}

}



/*===================================================
    Recommend Movie
====================================================*/
#movie {}
            
#movie .frameBox .titBox {}
#movie .frameBox .titBox h3 {}
#movie .frameBox .titBox .crown {}
#movie .frameBox .titBox .roof {}

#movie .inBox {}

#movie .inBox .movTxt {
    text-align: center;
    font-weight: bold;
    margin: 0 auto 30px;
}

#movie .inBox .mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#movie .inBox .mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (min-width: 961px) {}
        
@media screen and (max-width: 960px) {

    #movie {}
                
    #movie .frameBox .titBox {}
    #movie .frameBox .titBox h3 {
        line-height: 1.1;
    }
    #movie .frameBox .titBox .crown {}
    #movie .frameBox .titBox .roof {}

    #movie .inBox {}

    #movie .inBox .movTxt {
        margin: 0 auto 15px;
    }

    #movie .inBox .mov {}
    #movie .inBox .mov iframe {}

}



/*===================================================
   sns
====================================================*/
#sns {}

#sns .snsList {
    display: flex;
    align-items: center;
    justify-content: center;
}
#sns .snsList li {
    width: 120px;
    margin: 0 20px 0 0;
}
#sns .snsList li:nth-child(2) {
        margin: 60px 20px 0 0;
}
#sns .snsList li:last-child {
    margin: 0;
}
#sns .snsList li a {}
#sns .snsList li a img {}
#sns .snsList li:nth-child(1) a img {animation: fuwafuwaBubble 5.7s infinite;}
#sns .snsList li:nth-child(2) a img {animation: fuwafuwaBubble 5.2s infinite;}
#sns .snsList li:nth-child(3) a img {animation: fuwafuwaBubble 6.3s infinite;}

@keyframes fuwafuwaBubble {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0px);
	}	
}

@media screen and (min-width: 961px) {

    #sns .snsList li a img {
        transition: all 0.5s;
    }
    #sns .snsList li a:hover img {
        opacity: 0.7;
    }

}
        
@media screen and (max-width: 960px) {

    #sns {}

    #sns .snsList {}
    #sns .snsList li {
        max-width: 120px;
        width: 25%;
    }
    #sns .snsList li:last-child {}
    #sns .snsList li a {}

    @keyframes fuwafuwaBubble {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-15px);
        }
        100% {
            transform: translateY(0px);
        }	
    }

}



/*===================================================
    Fan Club
====================================================*/
#fc {
    position: relative;
    background: var(--mainColorFC);
    padding: 100px 0;
    margin: 50px auto 350px;
}

#fc .frame {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    overflow: clip;
}
#fc .frame.top {
    bottom: 100%;
}
#fc .frame.bottom {
    top: 100%;
}

#fc h3 {
    text-align: center;
    font-family: var(--titleFont);
    font-size: 60px;
    color: var(--white);
    margin: 0 auto 40px;
    font-weight: 800;
}

#fc .fcBox {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 60px;
    background: var(--white);
    border: 2px solid var(--mainColor);
    border-top: none;
    border-radius: 20px;
    padding: 0 60px 60px;
    text-align: center;
}
#fc .fcBox:last-child {
    margin: 0 auto;
}

#fc .fcBox .num {
    display: inline-block;
    background: var(--commonColor);
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
    font-size: 40px;
    border: 2px solid var(--mainColor);
    border-top: none;
    line-height: 1;
    margin: 0 auto 30px;
    font-family: var(--titleFont);
    font-weight: 900;
}

#fc .fcBox .fcTit {
    font-weight: bold;
    font-size: 24px;
    margin: 0 auto 30px;
}

#fc .fcBox .fcTxt {
    margin: 0 auto 60px;
}
#fc .fcBox .fcTxt p {
    margin-bottom: 5px;
}
#fc .fcBox .fcTxt p:last-child {
    margin-bottom: 0;
}

#fc .fcBox .clickBox {
    position: relative;
    width: 35%;
    margin: 0 auto;
}
#fc .fcBox .clickBox .box {}
#fc .fcBox .clickBox .box a {}
#fc .fcBox .clickBox .box a img {} 
#fc .fcBox .clickBox .box.box01 {}
#fc .fcBox .clickBox .box.box02 {}
#fc .fcBox .clickBox .click {
    position: absolute;
    top: 10%;
    left: -60%;
    transform: translate(60%, -10%);
    width: 50%;
}
#fc .fcBox .clickBox .click.click01 {}
#fc .fcBox .clickBox .click.click02 {
    top: 30%;
    left: -60%;
    transform: translate(60%, -30%);
}
#fc .fcBox .clickBox .cursor {
    position: absolute;
    bottom: 6%;
    right: -3%;
    transform: translate(3%, 6%);
    width: 21%;
    -webkit-animation: cursorAnim 1.5s steps(1, start) 0s infinite;
    animation: cursorAnim 1.5s steps(1, start) 0s infinite;
    transform-origin: right bottom;
}
#fc .fcBox .clickBox .cursor.cursor01 {}
#fc .fcBox .clickBox .cursor.cursor02 {
    bottom: -3%;
    right: 0%;
    transform: translate(0%, 3%);
}
@-webkit-keyframes cursorAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes cursorAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

#fc .fcBox .pcOnly {
    font-size: 13px;
    padding: 20px 0 0;
}

@media screen and (min-width: 961px) {

    #fc .fcBox .clickBox .box a,
    #fc .fcBox .thumb a {
        pointer-events: none;
    }

}
        
@media screen and (max-width: 960px) {

    #fc {
        padding: 40px 0;
        margin: 20px auto 200px;
    }

    #fc .frame img {
        min-width: 700px;
        margin: 0 auto;
    }
    #fc .frame.top {}
    #fc .frame.bottom {}

    #fc h3 {
        font-size: 42px;
        margin: 0 auto 30px;
    }

    #fc .fcBox {
        padding: 0 20px 20px;
        margin: 0 auto 30px;
    }
    #fc .fcBox:last-child {}

    #fc .fcBox .num {
        padding: 5px 15px;
        font-size: 30px;
        margin: 0 auto 20px;
    }

    #fc .fcBox .fcTit {
        margin: 0 auto 20px;
        font-size: 16px;
    }

    #fc .fcBox .fcTxt {
        margin: 0 auto 20px;
    }
    #fc .fcBox .fcTxt p {}
    #fc .fcBox .fcTxt p:last-child {}

    #fc .fcBox .clickBox {
        width: 50%;
    }
    #fc .fcBox .clickBox .box {}
    #fc .fcBox .clickBox .box a {}
    #fc .fcBox .clickBox .box a img {} 
    #fc .fcBox .clickBox .box.box01 {}
    #fc .fcBox .clickBox .box.box02 {}
    #fc .fcBox .clickBox .click {}
    #fc .fcBox .clickBox .cursor {}

    #fc .fcBox .pcOnly {
        display: none;
    }

}



/*===================================================
    footer
====================================================*/
#footer {
    position: relative;
}

#footer .cloud {}
#footer .cloud.cloud01 {
    width: 55%;
    max-width: 1030px;
}
#footer .cloud.cloud02 {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 74%;
    max-width: 1375px;
}

#footer .copyBox {
    position: absolute;
    left: 7.5%;
    bottom: 30%;
    transform: translate(-7.5%, 30%);
}
#footer .copyBox .logo {
    width: 120px;
    margin: 0 0 20%;
}
#footer .copyBox .logo a {}
#footer .copyBox .copy {
    font-size: 11px;
    text-align: center;
    color: var(--white);
}

@media screen and (min-width: 961px) {}
        
@media screen and (max-width: 960px) {

    #footer {}

    #footer .cloud {}
    #footer .cloud.cloud01 {
        width: 70%;
        max-width: 500px;
    }
    #footer .cloud.cloud02 {
        width: 80%;
        max-width: 550px;
    }

    #footer .copyBox {
        left: 10%;
        bottom: 35%;
        transform: translate(-10%, 35%);
    }
    #footer .copyBox .logo {
        margin: 0 0 10%;
        width: 100px;
    }
    #footer .copyBox .logo a {}
    #footer .copyBox .copy {
        font-size: 10px;
    }

}