@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@200..900&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Zen+Old+Mincho&display=swap');
body{font-family: "Zen Old Mincho", "Noto Serif SC", "Old Standard TT", serif; color: palevioletred;}

.container{
    height: 100vh;
    background-color: #fff;
}

.container>video{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.wrap{
    width: 600px;
    height: 800px;
    position: absolute;
    left: calc(50% - 300px);
    top: calc(50% - 400px);
}

.box{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.box_title{
    font-size: 45px; 
    position: absolute;
    transition: all 0.8s cubic-bezier(0.0, 0.0, 0.58, 1.0);
    text-shadow: 3px 4px palevioletred;
    filter: drop-shadow(2px 2px 14px hotpink);
    font-weight: 900;
    color: white;
    opacity: 0;
}

.box:hover .box_title{
    top: -80px;
    opacity: 1;
    left: -10px;
}

.inner{
    width: 100%;
    height: 100%;
}


/*box1*/
.box1>.inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.icon_box{
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 48.5%;
    height: 32%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: rgba(255, 220, 231, 0.48);
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.4s;
    font-size: 85px;
    color: #fff;
}

.icon_box i{
    opacity: 1;
    transition: all 0.4s;
}

.icon_box:hover{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}
.icon_box:hover i{
    transform: scale(1.3);
    text-shadow: 2px 3px palevioletred;
    filter: drop-shadow(0 0 0.75rem lightpink);
}

/*box2*/
.box2 .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.box2 .inner>div{
    background-color: rgba(255, 220, 231, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s;
    width: 100%;
    height: 69%;
    padding: 50px;
    box-sizing: border-box;
}

.box2 .inner>div:hover{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}

.box2 .inner>div img{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 65%;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.box2 .inner>div>p:nth-of-type(1){
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    color: #fff;
    filter: drop-shadow(0 0 8px hotpink);
    padding-bottom: 20px;
}

.box2 .inner>div>p:nth-of-type(2){
    padding-top: 40px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    filter: drop-shadow(0 0 16px hotpink);
}

.weibo, .hapi{
    background-color: rgba(255, 220, 231, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 49%;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s;
    font-weight: 500;
}

.weibo p, .hapi p{
    transition: all 0.4s;
    font-size: larger;
}

.weibo i, .hapi i{
    font-size: 85px;
    transition: all 0,6s;
    padding-bottom: 20px;
    color: #fff;
}

.weibo:hover i, .hapi:hover i{
    transform: scale(1.3);
    text-shadow: 2px 3px palevioletred;
    filter: drop-shadow(0 0 0.75rem lightpink);
}

.weibo:hover, .hapi:hover{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}

.weibo:hover p, .hapi:hover p{
    text-decoration: underline;
    text-decoration-style: dashed;
    color: hotpink;
    text-underline-offset: 6px;
}

/*box3*/
.box3 .inner{
    box-sizing: border-box;
    padding: 50px;
    background-color: rgba(255, 220, 231, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s;
}

.box3 .inner:hover{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}

.box3 .inner img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.box3 .inner p{
    position: absolute;
    font-size: 70px;
    transition: all 0.6s;
    color: #fff;
    font-weight: 900;
    opacity: 0;
}

.box3 .inner:hover p{
    text-shadow: 2px 3px palevioletred;
    filter: drop-shadow(0 0 8px hotpink);
    opacity: 1;
}

.box3 .inner p:nth-of-type(1){
    bottom: 160px;
    left: 20px;
}

.box3 .inner p:nth-of-type(2){
    bottom: 80px;
    right: 20px;
}
    
/*box4*/
.box4 .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.box4_con{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 220, 231, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s;
    width: 100%;
    height: 24.5%;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
}

.box4_con img{
    position: absolute;
    top: 6px;
    display: block;
    left: 6px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s;
}

.box4_con:hover{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}

.box4_txt{
    position: absolute;
    right: -5%;
    width: 70%;
    color: brown;
    font-size: 18px;
}

.box4_txt>p:nth-child(1){
    font-size: 24px;
    font-weight: 900;
    text-shadow: 1px 2px palevioletred;
    color: lightpink;
    padding-bottom: 20px;
    padding-left: 5px;
    transition: all 0.3s;
}

.box4_con:hover>.box4_txt>p:nth-child(1){
    color: #fff;
    filter: drop-shadow(0 0 8px hotpink);
}

.box4_con:hover img{
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.03);
}

/*box5*/
.box5 .inner{
    box-sizing: border-box;
    padding: 50px;
    background-color: rgba(255, 220, 231, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s;
}

.box5 .inner:hover{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}

.box5 img:nth-of-type(1){
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.box5 img:nth-of-type(2){
    position: absolute;
    width: 120%;
    height: 60%;
    left: -5%;
    top: 32%;
    opacity: 0;
    transition: all 0.6s;
}

.box5:hover img:nth-of-type(2){
    opacity: 0.8;
    transform: scale(1.025);
}

.box5_con{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 38%;
    left: 28%;
}

.box5_con>p:nth-child(1){
    font-size: 55px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: rgba(210, 164, 219, 0.5);
}

.blur{
    background-color: #fff;
    border: 1px solid rgba(210, 164, 219, 0.2);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.box5:hover .blur{
    opacity: 0.2;
}

.box5_txt{
    color: #fff;
    text-align: center;
    border: 4px solid #fff;
    background-color: rgba(210, 164, 219, 0.2);
    padding: 10px 30px;
    font-size: 40px;
    font-weight: 700;
    transition: all 0.6s;
}

.box5_txt a{
    display: block;
}

.box5:hover .box5_txt{
    transform: scale3d(1.1, 1.1, 1.1);
}

/*box6*/
.box6 .inner{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 30px;
    background-color: rgba(255, 220, 231, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s;
}

.box6 video{
    width: 100;
    height: 90%;
}

.box6 .inner p{
    position: relative;
    margin-bottom: 20px;
    font-size: 30px;
    left: 3%;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px palevioletred;
    transition: all 0.4s;
}

.box6:hover .inner p{
    filter: drop-shadow(4px 4px 16px hotpink);
}

.box6:hover .inner{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}

/*box7*/
.box7 .inner{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box7_con{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 32%;
    box-sizing: border-box;
    background-color: rgba(255, 220, 231, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 0.8;
    transition: all 0.4s;
    cursor: pointer;
}

.box7 .inner>.box7_con:nth-child(1):hover .coll_txt>p:nth-child(1){
    filter: drop-shadow(2px 2px 14px hotpink);
    color: #fff;
}

.box7 .inner>.box7_con:nth-child(2):hover .coll_txt>p:nth-child(1){
    filter: drop-shadow(2px 2px 14px hotpink);
    color: #fff;
}

.box7 .inner>.box7_con:nth-child(3):hover .coll_txt>p:nth-child(1){
    filter: drop-shadow(2px 2px 14px hotpink);
    color: #fff;
}

.box7_con:hover{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}

.coll_img{
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-sizing: border-box;
}

.coll_img img{
    width: 300px;
    height: 100%;
    opacity: 1;
}

.coll_txt{
    padding-left: 10px;
    color: brown;
}

.coll_txt>p:nth-child(1){
    font-size: 25px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px palevioletred;
    transition: all 0.3s;
}

.coll_txt>p:nth-child(2){
    line-height: 180%;
}

/*box8*/
.box8 .inner{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background-color: rgba(255, 220, 231, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s;
    box-sizing: border-box;
    overflow: hidden;
}

.box8:hover .inner{
    background-color: rgba(255, 220, 231, 0.8);
    transform: scale(1.03);
}

.form{
    top: 10%;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.form>div:nth-child(1){
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.form>div:nth-child(1) p{
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px palevioletred;
}

.form>div:nth-child(1) input{
    display: block;
    width: 60%;
    height: 40px;
    margin-bottom: 40px;
    box-sizing: border-box;
    border: 3px solid palevioletred;
    font-size: 20px;
    padding-left: 10px;
    color: brown;
}

.form input:focus{
    outline: none;
    font-size: 20px;
}

.form>div:nth-child(1) textarea{
    display: block;
    width: 60%;
    height: 150px;
    margin-bottom: 40px;
    box-sizing: border-box;
    border: 3px solid palevioletred;
    font-size: 20px;
    padding-left: 10px;
    font-family: "Zen Old Mincho", "Noto Serif SC", "Old Standard TT", serif;
    color: brown;
}

.form textarea:focus{
    outline: none;
    font-size: 20px;
}

.form>div:nth-child(2) button{
    margin-top: 20px;
    display: block;
    padding: 15px 23px;
    background-color: palevioletred;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.2s;
}

.form>div:nth-child(2) button:hover{
    background-color: hotpink;
}

/*animation*/
.container{
    perspective: 1300px;
    overflow: hidden;
}

.wrap{
    transform-style: preserve-3d;
}

.box{
    backface-visibility: hidden;
}

.box1{
    transform: rotateY(0deg) translateZ(-764px);
}

.box2{
    transform: rotateY(45deg) translateZ(-764px);
}

.box3{
    transform: rotateY(90deg) translateZ(-764px);
}

.box4{
    transform: rotateY(135deg) translateZ(-764px);
}

.box5{
    transform: rotateY(180deg) translateZ(-764px);
}

.box6{
    transform: rotateY(225deg) translateZ(-764px);
}

.box7{
    transform: rotateY(270deg) translateZ(-764px);
}

.box8{
    transform: rotateY(315deg) translateZ(-764px);
}   

@keyframes move{
    0%{transform: rotateY(0deg);}
    100%{transform: rotateY(360deg);}
}

.wrap{
    animation: move 38s infinite linear;
    background: none;
}

.pause{
    animation-play-state: paused;
}