@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/*==============================================================
X.0 eth
--------------------------------------------------------------*/
/* X.1 home
--------------------------------------------------------------*/
/* hader color */
#header-logo__svg .logotype {
	fill: #FFF;
}
.header-nav a {
	color: #FFF;
}
.link-emplty::after {
	background: url(../eth/icon-empty__wht.svg) no-repeat center / contain;
}
.header-nav__trigger span {
	background-color: #FFF;
}
.header.scroll .header-nav a {
	color: #000;
}
.header.scroll #header-logo__svg .logotype {
	fill: #000;
}
.header.scroll .link-emplty::after {
	background: url(../eth/icon-empty__blk.svg) no-repeat center / contain;
}
.header.scroll .header-nav__trigger span {
	background-color: #000;
}
/* home-title */
.home-title .wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
/* home-link */
.home-link {
    line-height: 0;
}
.home-link a {
    display: block;
}
.home-link i {
    position: absolute;
    color: #FFF;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 0.5rem;
    line-height: 1;
    margin-top: -0.5rem;
}
.home-link video {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 1px solid #FFF;
    box-shadow: 0 0 20px rgba(255, 255, 255, 1);
}
/* home-eth */
.section.home-eth {
    background: url(../eth/home-eth.png) no-repeat center / cover;
}
.home-eth .h2 {
    color: #FFF;
    text-align: center;
}
.home-eth p.desc {
    color: #FFF;
    text-align: center;
}
.home-eth .button {

}
.home-eth .button a {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3rem;
    border: 1px solid #FFF;
}
/* media query : mobile */
@media screen and (max-width:768px) {
    .home-title .wrap {
        flex-direction: column;
        align-items: center;
        padding-bottom: 4rem;
    }
    .home-link {
        max-width: 20rem;
    }
    .home-link video {
        width: 12rem;
    }
    .home-link i strong {
        font-size: 2.6rem;
    }
    .home-link i span {
        font-size: 1.2rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    .home-title .wrap {
        align-items: flex-end;
        gap: 4rem;
        padding-bottom: 10rem;
    }
    .home-title .home-h1 h1 {
        font-size: 3.7rem;
    }
    .home-link {
        max-width: 15rem;
    }
    .home-link i strong {
        font-size: 3rem;
    }
    .home-link i span {
        font-size: 1.5rem;
    }
}

/* X.2 eth page
--------------------------------------------------------------*/
/* eth-mv */
.eth-mv {
    background: RGBA(0,0,0,0.7);
    margin-top: 0;
    padding-top: 6.496rem;
    padding-bottom: 0;
    height: calc(100vh - 6.496rem);
}
.eth-mv .mov {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.eth-mv .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem;
}
.eth-mv .h1 h1 {
    color: #FFF;
    text-align: center;
}
.eth-mv .button {
    max-width: 26rem;
}
.eth-mv .button a {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3rem;
    border: 1px solid #FFF;
    font-size: 2rem;
    font-weight: 500;
    height: 5rem;
}
.eth-mv .button a i {
}
/* eth-data */
.eth-data {
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.eth-data li {
    display: flex;
    align-items: center;
    
    gap: 2rem;
}
.eth-data h3 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    color: #FFF;
}
.eth-data p {
    line-height: 1;
    display: flex;
    align-items: flex-end;
    color: #FFF;
}
.eth-data p i {
    line-height: 1.3;
}
.eth-data p b {
    font-size: 4rem;
}
/* media query : mobile */
@media screen and (max-width:768px) {
    .eth-mv .h1 h1 {
        font-size: 2.6rem;
        text-align: center;
    }
    .eth-mv .container {
        height: calc(100% - 16.4rem);
    }
    .eth-data {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        height: 16.4rem;
    }
    .eth-data li {
        justify-content: space-between;
        width: 100%;
    }
    .eth-data h3 {
    }
    .eth-data p {
        gap: 0.5rem;
    }
    .eth-data p i {
        font-size: 1.2rem;
    }
    .eth-data p b {
        font-size: 2.6rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    .eth-mv .h1 h1 {
        font-size: 3rem; 
    }
    .eth-mv .container {
        height: calc(100% - 10rem);
    }
    .eth-data {
        height: 10rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        gap: 1.5rem;
    }
    .eth-data li {
        justify-content: center;
    }
    .eth-data h3 {
        min-width: 4rem;
    }
    .eth-data p {
        gap: 0.3rem;
    }
    .eth-data p i {
        font-size: 1.5rem;
    }
    .eth-data p b {
        font-size: 3rem;
    }
}
/* eth-attention */
.eth-attention {
    padding: 1rem 0;
}
.eth-attention__contents {
    text-align: center;
}