@charset "utf-8";

:root {
    --color-red:#F32840;
}

html,
body {
    width: 100%;
    height: 100%;
    color: #9F762C;
    font-weight: 400;
    font-family: sans-serif;
    font-size: 16px;

    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: left;
    line-height: 1.5;
    background-size:100% auto;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

/*@media screen and (max-width: 751px) {*/
/*    html,*/
/*    body {*/
/*        font-size: 3.73333vw;*/
/*    }*/
/*}*/

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    outline: none;
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    display: block;
    width: 100%;
    vertical-align: bottom;
}

h1, h2, h3 {
    font-family: serif;
}

.pcview a:hover{opacity:0.6;}
.pcview a[href*="tel:"]{
    pointer-events: none;
    cursor: default;
}
.pcview a[href*="tel:"]:hover{opacity:1;}
.pcview .sp{display: none !important;}
.mobile .pc{display: none !important;}

/* -----------
  CONTENTS
----------- */

/*******************HEADER*******************/
.header {
    overflow: hidden;
}
.header .line {
    background-color: #CDAC70;
    width: 100%;
    height: 6px
}

.header .synchrolife_logo {
    width: 148px;
    height: 45px;
    margin: 6px auto 24px;
}

.header .pc_menu {
    display: flex;
    margin: 0 auto 24px;
    width: 90vw;
    max-width: 1080px;
    justify-content: space-evenly;
    align-items: center;
}

.header .pc_menu a {
    position: relative;
    color: #9F762C;
    font-weight: 600;
    margin: 0 1.5vw;
    width: 27vw;
    max-width: 324px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.header .pc_menu a::after {
    position: absolute;
    left: 0;
    bottom: -24px;
    content: '';
    width: 100%;
    height: 3px;
    background: #CDAC70;
}

.header .pc_menu .pc_menu_item {
    color: #555555;
}

.header .pc_menu a:hover {
    opacity:1.0;
    color: #9F762C;
}

.header .pc_menu .pc_menu_item::after {
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.header .pc_menu .pc_menu_item:hover::after {
    transform: scale(1, 1);
}

#hamburger {
    display: none;
}

#nav {
    display: none;
}

@media screen and (max-width: 750px) {
    .header .pc_menu {
        display: none;
    }
    .header .synchrolife_logo {
        margin: 10px auto 10px;
    }

    #nav{
        display: block;
        position: absolute;
        height: 100vh;
        width: 80%;
        left: -80%;
        top: 0;
        background: #fffffff2;
        transition: .7s;
        z-index: 100;
    }
    #nav ul li{
        list-style-type: none;
        font-size: 14px;
    }
    #nav a{
        display: block;
        text-decoration: none;
        color: #9F762C;
        font-weight: 600;
        text-align: center;
        margin: 0 15px;
        padding: 10px;
        transition: .5s;
    }
    #nav li a:hover{
        opacity: 0.6;
        border-bottom: none;
    }
    #nav li p {
        color: #7E7E7E;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
    }
    #nav img {
        width: 50%;
        margin: 40px auto 20px;
    }

    #hamburger {
        display: block;
        position: absolute;
        top: 15px;
        left: 30px;
        width: 44px;
        height: 44px;
        border: 2px solid #CDAC70;
        cursor: pointer;
        transition: 1s;
        z-index: 200;
    }
    .inner_line {
        display: block;
        position: absolute;
        left: 0;
        width: 25px;
        height: 2px;
        background-color: #CDAC70;
        transition: 1s;
        border-radius: 4px;
    }
    #line1 {
        top: 12px;
        left: 25%;
    }
    #line2 {
        top: 22px;
        left: 25%;
    }
    #line3 {
        top: 32px;
        left: 25%;
    }

    .in{
        transform: translateX(100%);
    }
    .line_1,.line_2,.line_3{
        background: #CDAC70;
    }
    .line_1 {
        transform: translateY(10px) rotate(-45deg);
        top: 0;
    }
    .line_2 {
        opacity: 0;
    }
    .line_3 {
        transform: translateY(-10px) rotate(45deg);
        bottom: 0;
    }
}
/*******************KEY VISUAL*******************/

.keyvisual {
    width: 100%;
    height: 38.33333vw;
    background:url(https://c.synchrolife.io/campaign/2021_award/assets/img/kv_bg.jpg) no-repeat left top;
    background-size: cover;

}

.keyvisual .kv_sp {
    display: none;
}
.keyvisual .kv_pc {
    position: relative;
    width: 76.66667vw;
    margin: auto;
    top: 9.3333vw;
}

@media screen and (max-width: 750px) {
    .keyvisual {
        height: 128vw;
        background:url(https://c.synchrolife.io/campaign/2021_award/assets/img/kv_bg_sp.jpg) no-repeat left top;
        background-size: cover;
    }

    .keyvisual .kv_pc {
        display: none;
    }
    .keyvisual .kv_sp {
        display: inline;
        position: relative;
        width: 100%;
        margin: auto;
        top: 37.3333vw;
    }
}

/*******************KV INSTALL*******************/

.keyvisual_install {
    width: 100%;
    height: 96px;
    background-color: #CDAC70;
}

.keyvisual_install .install_links {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.keyvisual_install .install_links img {
    width: auto;
    height: 48px;
    margin: 0 8px;
}

.keyvisual_install .install_links .sns {
    width: auto;
    height: 40px;
    margin: 0 8px;
}

.iphone .keyvisual_install .install_links .google{ display:none; }
.android .keyvisual_install .install_links .apple{ display:none; }

@media screen and (max-width: 750px) {
    .keyvisual_install .install_links img {
        width: auto;
        height: 12.8vw;
        max-height: 48px;
        margin: 0 8px;
    }

    .keyvisual_install .install_links .sns {
        width: auto;
        height: 10.6666667vw;
        max-height: 40px;
        margin: 0 8px;
    }
}

/*******************DESCRIPTION*******************/
.description {
    width: 100%;
    height: auto;
    background: url(https://c.synchrolife.io/campaign/2021_award/assets/img/tile_bg.jpg) repeat;
    background-color: rgba(255,255,255,0.5);
    background-blend-mode: lighten;
    padding: 60px 0px;
}

.description .content {
    width: 90%;
    margin: auto;
}

.description img {
    width: 5.1vw;
    height: auto;
    max-width: 61px;
    margin: 0 auto 14px;
}

.description h3 {
    font-size: 28px;
    text-align: center;
    font-weight: bold;
}

.description .red_line {
    background-color: #BD2333;
    width: 40px;
    height: 5px;
    margin: 18px auto 18px;
}

.description p {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 38px;
}

.description span {
    font-size: 24px;
}


@media screen and (max-width: 750px) {
    .description img {
        width: 16.26667vw;
        max-width: 61px;
    }

    .description p {
        text-align: center;
        font-weight: bold;
        font-size: 16px;
        line-height: 32px;
    }

    .description span {
        font-size: 20px;
    }
}
@media screen and (max-width: 350px) {
    .description img {
        width: 16.26667vw;
        max-width: 61px;
    }

    .description p {
        text-align: center;
        font-weight: bold;
        font-size: 4.26666vw;
        line-height: 32px;
    }

    .description span {
        font-size: 5.33333vw;
    }
}

/*******************SHOP HEADING*******************/

.shop_heading {
    background:url(https://c.synchrolife.io/campaign/2021_award/assets/img/heading_bg.png) no-repeat top center;
    height: 206px;
    display: flex;
    justify-content: center;
}

.shop_heading .heading_pc {
    display: block;
    width: 638px;
    margin: auto;
}

.shop_heading .heading_sp {
    display: none;
}

@media screen and (max-width: 750px) {
    .shop_heading .heading_pc {
        display: none;
    }

    .shop_heading .heading_sp {
        display: block;
        width: 100%;
        margin: auto;
    }

    .shop_heading {
        background:url(https://c.synchrolife.io/campaign/2021_award/assets/img/heading_bg_sp.png) no-repeat top center;
    }
}

/*******************SHOP CONTENT*******************/

.ranking_section {
    width: auto;
    height: auto;
    background: url(https://c.synchrolife.io/campaign/2021_award/assets/img/tile_bg.jpg) repeat;
    background-color: rgba(255,255,255,0.5);
    background-blend-mode: lighten;
    padding: 60px 10%;
}

.ranking_section .content_header {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 50px auto 50px;
}

.ranking_section .shop_content {
    width: auto;
    max-width: 1080px;
    margin: 0 auto 12px;
    border: 1px solid #9F762C;
    padding-left: 40px;
    padding-right: 40px;
}

.ranking_section .shop_content .top_100 {
    width: 156px;
    margin: -27.5px auto 0;
}

.ranking_section .shop_content #shop_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ranking_section .shop_content #shop_list .shop_list_item{
    width: 30%;
    margin-bottom: 60px;
}


.ranking_section .shop_content #shop_list .shop_list_item a img {
    width: 100%;
}

.ranking_section .shop_content #shop_list .shop_list_item a .shop_name {
    font-weight: bold;
    font-size: 16px;
    margin: 12px 0 4px;
    color: #9F762C;
}

.ranking_section .shop_content #shop_list .shop_list_item a .shop_area {
    font-weight: normal;
    font-size: 14px;
    color: #000000;
}

.ranking_section .shop_content .shop_more_btn {
    width: 287px;
    margin: 0 auto 60px;
}
.annotation {
    width: 90vw;
    max-width: 1080px;
    color: #7E7E7E;
    margin: auto;
}

@media screen and (max-width: 750px) {
    .ranking_section {
        padding: 60px 6.4vw;
    }
    .ranking_section .shop_content {
        padding-left: 0;
        padding-right: 0;
    }
    .ranking_section .shop_content #shop_list .shop_list_item{
        width: 85%;
        margin-bottom: 30px;
    }
    .ranking_section .shop_content #shop_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ranking_section .shop_content .shop_more_btn {
        width: 76.5333vw;
        margin: 0 auto 30px;
    }
}

/*******************USER*******************/

.ranking_section .user_ttl_pc {
    display: block;
    width: 354px;
    margin: 60px auto 50px;
}

.ranking_section .user_ttl_sp {
    display: none;
}

.ranking_section .user_content {
    width: auto;
    max-width: 1080px;
    margin: 0 auto 12px;
    border: 1px solid #9F762C;
    padding-left: 40px;
    padding-right: 40px;
}

.ranking_section .user_content .top_50 {
    width: 156px;
    margin: -27.5px auto 0;
}

.ranking_section .user_content .emblem_section {
    width: 50%;
    margin: 0 auto 30px;
    background-color: #FFF;
    border: #C4C4C4 1px solid;
}

.ranking_section .user_content .emblem_section p {
    text-align: center;
    color: #7E7E7E;
    font-weight:bold;
    margin-top: 16px;
}

.ranking_section .user_content .emblem_section img {
    width: 105px;
    margin: 16px auto;
}

.ranking_section .user_content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ranking_section .user_content ul li {
    width: 45%;
    margin: auto;
    border-top: #DECDB5 1px solid;
    padding: 12px 0;
}
.ranking_section .user_content ul li a {
    display: flex;
    justify-content: left;
}
.ranking_section .user_image {
    width: 60px;
    margin-right: 16px;
    border-radius: 50%;
    height: 100%;
}

.ranking_section .user_name {
    font-weight: bold;
    font-size: 20px;
}

.ranking_section .user_level {
    font-size: 14px;
    color: #8A6F69;
}

@media screen and (max-width: 750px) {
    .ranking_section .user_ttl_pc {
        display: none;
    }

    .ranking_section .user_ttl_sp {
        display: block;
        width: 87vw;
        margin: 60px auto 50px;
    }

    .ranking_section .user_content .emblem_section {
        width: 100%;
    }

    .ranking_section .user_content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .ranking_section .user_content ul li {
        width: 100%;
    }
}

/*******************SYNCHROLIFE*******************/
.synchrolife{
    background:url(https://c.synchrolife.io/campaign/2021_award/assets/img/synchrolife_mark.svg) no-repeat top center var(--color-red);
    background-size:134px auto;
    background-position-y: 20%;
    text-align:center;
    padding: 92px 30px 60px;
    color: #FFF;
}
.synchrolife h2{
    font-family: sans-serif;
    font-weight:600;
    font-size: 32px;
}
.synchrolife p{
    font-weight:400;
    font-size: 20px;
    letter-spacing:.01em;
    margin: 30px auto 60px;
}

.synchrolife .slife_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background-color: #fff;
    border-radius: 5px;
    width: 327px;
    height: 60px;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
}

.synchrolife .slife_btn p {
    color: #F32840;
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.div_link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 750px) {
    .synchrolife .slife_btn {
        width: 87.2vw;
        max-width: 327px;
        height: 60px;
        box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
    }
}

/*******************INSTALL*******************/
.install{
    background:url(https://c.synchrolife.io/campaign/2021_award/assets/img/download_bg_sp.png) no-repeat center center;
    background-size:cover;
    padding:max(30px, min(12.8vw,80px)) 0 0 ;
    padding:clamp( 30px, 12.8vw, 80px) 0 0 ;
    text-align:center;
}
.install_inner{
    width:79%;
    max-width:670px;
    margin:0 auto;
}
.install_inner .txt{ margin:0 0 8.5vw; }
.install_inner h2{
    margin:0 0 6vw;
    font-family: sans-serif;
    color: #FFF;}
.install_inner h3{
    font-family: sans-serif;
    color: #FFF;
    font-weight:400;
    font-size: 22px;
    line-height:1.45;
    margin-bottom:10.6vw;
}
.install_link{
    width:100%;
    max-width:250px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
}
.mobile .install_link{ display:block; }
.install_link .install_qr{ flex:0 1 38.4%; }
.mobile .install_link .install_qr{ display:none; }
.install_link .install_app{ flex:0 1 54%; }
.install_link .install_app .apple{ margin-bottom:14px; }
.mobile .install_link .install_app{
    width:200px;
    margin:0 auto;
}
.install_link .install_app a,
.install_link .install_app img{
    display:block;
    width:100%;
}
.mobile .install_link .install_app .apple{ margin:0; }
.iphone .install_link .install_app .google{ display:none; }
.android .install_link .install_app .apple{ display:none; }
.install_inner .ph{ padding:0 9%; }

@media screen and (min-width: 751px) {
    .install{
        background:url(https://c.synchrolife.io/campaign/2021_award/assets/img/download_bg_pc.png) no-repeat center center;
        background-size:cover;
    }
    .install_inner{
        display:flex;
        justify-content:space-between;
    }
    .install_inner .txt{
        margin:0;
        order:2;
        flex:0 1 350px;
        padding:68px 30px 0 ;
        box-sizing:border-box;
        max-width:350px;
    }
    .install_inner h2{ margin:0 0 15px; }
    .install_inner h3{ margin-bottom:24px; }
    .install_inner .ph{
        order:1;
        padding:0;
        flex:0 1 240px;
    }
}

footer{
    background-color:#FFF;
    border-top:1px #DFDFDF solid;
}
.f_sns{
    padding:4.3vw 0;
    border-bottom:1px #DFDFDF solid;
    display:flex;
    width:100%;
    margin:0 auto;
    justify-content:center;
}
.f_sns a{
    flex:0 1 10.6vw;
    margin:0 3.2vw;
}
.f_sns a img{width:100%;}
.f_inner .cr{
    color:#aaa;
    line-height:1;
    font-size:14px;
    text-align:center;
    padding:4.3vw 0;
}

@media screen and (min-width: 751px) {
    .f_inner{
        display:flex;
        width:85%;
        max-width:1014px;
        margin:0 auto;
        padding:17px 0;
        align-items:center;
        justify-content:space-between;
    }
    .f_sns{
        padding:0;
        border-bottom:none;
        flex:0 1 136px;
        margin:0;
        order:2;
        justify-content:space-between;
    }
    .f_sns a{
        flex:0 1 24%;
        margin:0;
    }
    .f_inner .cr{
        text-align:left;
        padding:0;
        order:1;
    }
}