@charset "UTF-8";

/* header */
.header {
    width: 100%;
    box-sizing: border-box;
}

.mainVisual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main_logo {
    color: var(--primary-white);
}

.logo {
    position: absolute;
    width: 100%;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    z-index: 10;
    overflow: hidden;
}

.logo::after {
    content: "";
    display: block;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-white);
    margin: 0 auto;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.logo h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 8px;
}

.logo p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0.7px;
    margin-bottom: 20px;
}

.image {
    background-image: url(../image/gallery/Tokyo/Special_shinimura_sama94.jpg);
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.image_title {
    background-color: var(--primary-gold);
    color: var(--primary-white);
    padding: 5px 12.8%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 1.15px;

    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}

@media screen and (min-width: 769px) {
    .logo::after{
        height: 3px;
    }

    .logo h1 {
        font-size: 4rem;
        line-height: 45px;
        margin-bottom: 10px;
    }
    
    .logo p {
        font-size: 2rem;
        line-height: 25px; /* 125% */
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .image_title {
        padding: 9px 13%;
        font-size: 2.3rem;
        letter-spacing: 2px;

        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
}/* pc 769px */

/* main */
.main_wrapper {
    padding: 0px 5.1% 40px;
}

.main_top {
    padding: 100px 0px 50px;
}

.main_top p {
    font-size: 1.3rem;
    line-height: 2.5;
    letter-spacing: 1.5px;
}

.privacy {
    margin-bottom: 60px;
}

.title_label {
    font-size: 1.8rem;
    color: var(--primary-red);
    border-bottom: 1.5px solid var(--primary-red);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.privacy_txt {
    font-size: 1.3rem;
    line-height: 2.1;
}

.item_txt {
    position: relative; 
    padding-left: 1.7rem;
    font-size: 1.3rem;
    line-height: 23px;
    margin-top: 15px;
}

.item_txt::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-size: 1.1em; /* 記号のサイズ */
}

.item_txt:first-of-type {
    margin-top: 10px;
}

.item_txt_box {
    padding: 0 4.4%;
}

.privacy_item {
    margin-top: 40px;
}

.item_label {
    font-size: 1.6rem;
}

.item_lead {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 10px;
}

.contact_mail {
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-top: 8px;
}

@media screen and (min-width:769px){
    .main_wrapper {
        padding: 180px 7%;
    }

    .main_top {
        padding: 0;
    }
    
    .main_top p {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 3.5;
        letter-spacing: 1.2px;
        margin-bottom: 150px;
    }

    .privacy {
        margin-bottom: 120px;
    }

    .title_label {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }

    .item_txt {
        font-size: 1.5rem;
        line-height: 30px;
        padding-left: 2.3rem;
    }
    
    .item_txt::before {
        font-size: 1.4em; /* 記号のサイズ */
    }

    .privacy_txt {
        font-size: 1.5rem;
    }

    .item_lead {
        font-size: 1.5rem;
    }
}/* pc 769px */