@charset "utf-8";

body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    border-top: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.8;
    opacity: 0;
}
body.anim{
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode:forwards;
    animation-timing-function: ease;
    animation-iteration-count: 1;
}
@keyframes fadeIn{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
img {
    display: block;
    height: auto;
    width: 100%;
}

.main {
    width: 600px;
    margin: 0 auto;
    padding: 110px 0 250px;
}

.topTitle {
    margin-bottom: 36px;
    text-align: center;
}

.topTitle-tag {
    display: block;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 12px;
    border: 2px solid #6C808B;
    color: #6C808B;
    font-family: "Shippori Mincho", "Noto Sans JP", serif;
    font-size: 20px;
    width: fit-content;
}

.topTitle-ttl {
    padding-bottom: 8px;
    border-bottom: 2px double #000;
    color: #6C808B;
    font-family: "Shippori Mincho", "Noto Sans JP", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
}

.topTitle-subttl {
    margin-top: 8px;
    color: #6C808B;
    font-family: "Shippori Mincho", "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.topSection {
    margin-bottom: 55px;
}

.topSection-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.topSection-img {
    width: 148px;
    flex-shrink: 0;
}

.topSection-text {
    width: 415px;
}

.topSection-text-desc,
.productSection-item-text-desc {
    font-size: 12px;
    line-height: 2;
    text-align: justify;
}

.topSection-text-desc {
    margin-bottom: 20px;
}

.topSection-text-btn {
    background-color: #6C818C;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    padding: 17px 24px;
    color: #fff;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 1;
    transition: opacity 0.3s;
    position: relative;
}
.topSection-text-btn::before{
    content: '';
    border: 1px solid #fff;
    display: block;
    width: 170px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.topSection-text-btn::after{
    content: '';
    aspect-ratio: 7/9;
    display: block;
    width: 10px;
    background-image: url("../../images/arw_01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 15px;
}

.topSection-text-btn:hover {
    opacity: 0.75;
}

.topSection-info {
    padding-top: 28px;
    padding-bottom: 22px;
    box-sizing: border-box;
    background: #EEEDED;
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}

.productSection-wrap {
    margin-bottom: 55px;
}

.productSection-item-text-desc {
    margin-bottom: 22px;
}

.br_sp {
    display: none;
}


@media screen and (max-width: 768px){
    .main {
        width: auto;
        margin: 0;
        padding: 120px 10% 170px
    }

    .topTitle {
        margin-bottom: 30px;
    }

    .topTitle-tag {
        margin-bottom: 7px;
        padding: 12px 10px;
        font-size: 20px;
    }

    .topTitle-ttl {
        padding-bottom: 11px;
        font-size: 32px;
        line-height: 1.3;
    }

    .topTitle-subttl {
        margin-top: 11px;
        font-size: 16px;
    }

    .topSection {
        margin-bottom: 50px;
    }

    .topSection-wrap {
        display: block;
        margin-bottom: 45px;
    }

    .topSection-img {
        width: 240px;
        margin: 0 auto 34px;
    }

    .topSection-text {
        width: auto;
    }

    .topSection-text-desc,
    .productSection-item-text-desc {
        font-size: 12px;
    }

    .topSection-text-desc {
        margin-bottom: 34px;
    }

    .topSection-text-btn {
        width: 200px;
        margin: 0 auto;
        padding: 17px 0;
        font-size: 16px;
    }
    .topSection-text-btn::before{
        width: 188px;
        height: 40px;
    }
    .topSection-text-btn::after{
        margin-left: 17px;
    }

    .topSection-info {
        width: 100%;
        padding: 28px 15px;
        font-size: 12px;
        line-height: 2;
    }

    .productSection-wrap {
        margin-bottom: 85px;
    }

    .productSection-item-text-desc {
        margin-bottom: 18px;
    }

    footer {
        margin-bottom: 50px;
    }

    .br_sp {
        display: block;
    }
    .br_sp {
        display: block;
    }
}

