@import url("/css/base_new.css"); /*header-footer*/


/* ------------------------------------------- */
/* all CSS */
/* ------------------------------------------- */
.header_all,
.pankuzu,
.all_attention,
.footer_area{
    max-width: 988px;
    width: auto;
}


.logo_area img{
  padding: 0;
}
.main_area{
    font-family: "Meiryo", sans-serif;
}
.main_area p {
    font-size: 16px;
    line-height: 200%;
}

section{
    padding: 30px 20px;
}
.br-sp{
    display: none;
}

/* ------------------------------------------- */
/* parts */
/* ------------------------------------------- */
.header {
    width: 100%;
    height: 630px;

    /* 背景画像を表示 */
    background-image: url(img/header.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 28px;
    padding-right: 28px;
}

.header h2 {
    position: relative;
    z-index: 10;
    color: #e35282;
    display: flex;
    align-items: center;
    font-size: clamp(30px, 5vw, 40px);
    font-weight: bold;
    text-align: center;
}



.introduction{
    background-color: #e35282;
    color: #fff;
}

.introduction p{
    max-width: 720px;
    margin: 0px auto;
}


.navi,.thumbnail,.container, .company{
    max-width: 988px;
    margin: 0px auto;
    padding: 40px 20px 20px;
}

.navi h2,
.thumbnail h2,
.container h2,
.contact-section h2{
    text-align: center;
    color: #e35282;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 15px;
}


.thumbnail img{
    width: 100%;
}

.navi .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
    text-align: center;
}
.navi .product-list a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #333;
}
.product-list svg{
    width: 16px;
    height: 16px;
    position: relative;
    top: -1px;
}




/* ------- container -------*/
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.product {
    background: #eee;
    padding: 15px;
    text-align: center;
    width: 100%;
}
.product img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.products a{
    color: #333;
}
.products a:hover{
    opacity: 0.7;
    filter: brightness(100%);
    text-decoration: none;
}
.product h3 {
    font-weight: bold;
    font-size: 15px;
    margin: 20px 0 5px;
}
.product p {
    font-size: 14px;
    color: #333;
    line-height: 170%;
}
.thumbnail .banner img{
    padding-top: 40px;
}
.thumbnail a:hover{
    opacity: 0.7;
    filter: brightness(100%);
}
.company{
    max-width: 988px;
    margin: 0px auto;
    text-align: center;
    color: #e35282;
    padding-bottom: 80px;
}
.company p{
    font-size: 16px;
    line-height: 170%;
    margin-bottom: 10px;
}

.company .btn a{
    display: inline-block;
    background-color: #e76091;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    height: 55px;
    padding: 20px;
}
.company .btn a:hover{
    opacity: 0.7;
    filter: brightness(100%);
}


.contact-section{
    background-color: #f8cce6;

}
.contact-section p{
    max-width: 380px;
    margin: 0px auto;
}
.contact-section .btn{
    text-align: center;
    margin-top: 15px;
}




@media (max-width: 768px) {
    .br-sp{
        display: block;
    }
    .header{
        height: 230px;
    }
    .header h2 {
        font-size: 20px;
        padding-left: 20px;
    }
    .main_area p,
    .navi .product-list a{
        font-size: 14px;
    }
    .navi h2, .thumbnail h2, .container h2, .contact-section h2 {
        font-size: 16px;
    }
    .products {
        grid-template-columns: 1fr;
    }

    .product-list {
        flex-direction: column;
        align-items: center;
    }
    .company .btn a{
        width: 320px;
    }
    .contact-section{
        text-align: center;
    }
    .header_area h1{
        padding: 4px 7px;
    }
    .pankuzu_t{
        padding: 0 7px 7px;
    }
    .navi_text,
    .logo_area{
        padding: 0 7px;
    }
    .pankuzu_b,
    .all_attention{
        padding: 10px 7px 0;
    }
    .footer_links{
        margin: 0 7px 20px;
    }
}
@media (min-width: 769px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
     .company .btn a{
        width: 55%;
    }
}
@media (min-width: 1024px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}



