/*
blog
*/
.blog-page {
    text-align: center;
    margin: 50px;
}
.top-button {
    position: relative;
    text-decoration: none;
    color: #fff;
    background-color: rgb(160, 94, 51);
    font-weight: bold;
    font-size: 20px;
    padding: 20px 50px;
    border-radius: 35px;
}

.card {
    border: #ccc 1px solid;
    border-radius: 5px;
    margin-bottom: 15px;
}
.card > h4 {
    font-size: 30px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.card-set {
    display: flex;
}
.card-before, .card-after {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}
.card-left, .card-right {
    width: 50%;
    text-align: center;
    margin: 0 20px;
}
.card-left strong, .card-right strong {
    font-size: 25px;
}
.card-text {
    margin: 0 20px;
}

/*
select-button
*/
.select-list {
    display: flex;
    justify-content: center;
    justify-content: space-around;
}
.select-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
    text-decoration: none;
    background-color: rgb(160, 94, 51);
}
.select-text {
    color: #fff;
    margin-top: 10px;
    margin-left: 8px;
    font-weight: bold;
}
.topics-set{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 15px;
    padding: 15px;
}
.topic-min{
    font-size: 15px;
    border: #ccc 1px solid;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;   
} 
.topic-min img {
    width: 100%;
    height: 100px;
    
}
.campaign {
    display: inline-block;
    text-align: center;
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 75px;
    color: #637ee0;
}
@media screen and (max-width: 768px) {
    .topics-set {
        font-size: 12px;
        left: 15px;
        margin-top: 3px;
    }
    .topic-min img {
        height: 65px;
        margin-top: 5px;
    }
}


/*
section
*/
.section {
    margin: 0 5%;
    position: relative;
}
.section h2 {
    font-size: 40px;
}
.section h3 {
    font-size: 27px;
    margin-left: 20px;
}
h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 50px;
}
.title_pop {
    margin-bottom: 20px;
    font-weight: bold;
    color: rgb(156, 76, 22);
}
.heading {
    font-family: "Dancing Script", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", cursive;
    font-size: 160px;
    font-weight: bold;
    color: rgb(156, 76, 22);
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 5px;
    transform: translateY(-20%);
    z-index: -1;
}
@media screen and (max-width: 768px) {
    .heading {
        font-size: 120px;
    }
}

/*
footer
*/
footer {
    background-color: #333;
    z-index: 1;
    border-top: #333 solid 1px;
}
.footer-p {
    color: #fff;
    text-align: center;
    margin-top: 5px;
}
.sns {
    width: 100%;
    display: flex;
    justify-content: center;
}
.sns-title {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}
.sora {
    font-size: 25px;
    text-align: center;
    color: #fff;
}
address {
    text-align: center;
    color: #fff;
}
hr {
    margin-top: 15px;
}
small {
    color: #757575;
}
.copy {
    text-align: center;
}

/*
smart-phone
*/

@media screen and (max-width: 414px) {
    .heading {
        font-size: 100px;
    }
    .title_pop {
        margin-bottom: -20px;
    }
    .card > h4 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .card-left > strong, .card-right > strong {
        font-size: 18px;
    }
    .card-text {
        font-size: 12px;
    }
}