@charset "utf-8";

/* service.html専用のファイル */

/* 本文 */
.center-info {
    text-align: center;
}
.midashi {
    font-family: "Noto Sans";
    font-weight: 500;
    margin: 3px 0;
}
h1.midashi {
    font-size: 40px;
    text-align: center;
}
h3.midashi {
    font-size: 22px;
    margin: 5px 0;
}
h4.midashi {
    font-size: 18px;
    margin: 3px 0;
}
h5.midashi {
    font-size: 15px;
    margin: 3px 0;
}
.explanation {
    font-size: 40px;
}

/* サービス一覧 */
.small-caption {
    color: #555;
    font-size: 12px;
    margin: 3px 0;
}
.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.service-list-content {
    position: relative;
    flex-basis: 10%;
    background-color: #f0f0f0;
    border-top: 3px solid #04e16b;
    border-radius: 3px;
    box-shadow: 1px 1px 3px #888;
    padding: 4px;
    padding-bottom: 5px;
    margin: 10px 1px;
    text-align: center;
    z-index: 10;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}
.service-list-content:hover {
    filter: brightness(85%);
    transform: translateY(5%);
}
.service-list-content a {
    color: #000;
    text-decoration: none;
}
.service-list-content a:hover {
    transform: translateY(10px);
}
.service-list-image {
    width: 85%;
}
.service-list-name {
    font-size: 12px;
}
.detail-explanation {
    text-align: left;
}
.aid_system {
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.capacity {
    flex-basis: 40%;
}
.capacity table{
    border-collapse: collapse;
    margin: 0 auto;
}
.capacity th, .capacity td {
    border: 1.5px solid #444;
    padding: 10px;
}
.capacity th {
    background-color: #b9fad7;
}
.capacity tr td:nth-of-type(1) {
    text-align: left;
}
.kurikoshi-info {
    flex-basis: 50%;
    width: 100%;
    max-height: 300px;
}

.aid-material {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.aid-item {
    text-align: center;
    flex-basis: 22%;
    margin: 5px;
    padding: 5px;
    background-color: #f4f4f4;
    border-top: 3px solid #04e16b;
    border-radius: 3px;
    box-shadow: 1px 1px 3px #a9bfa9;
}
.aid-item-large {
    flex-basis: 35%;
}
.aid-item .midashi {
    text-align: center;
    margin: 5px 0;
}
.aid-item img {
    height: 160px;
    vertical-align: middle;
}
.price {
    color: #444;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 0 10px;
    vertical-align: middle;
    line-height: 1.7;
}
.aid-item-large .price {
    display: inline-block;
}
.price tr td:nth-of-type(2) {
    padding-left: 5px;
}
.print-caption {
    display: flex;
    justify-content: space-around;
}
.print-caution {
    width: 90%;
}
ul {
    text-align: left;
}
.print-caption ul {
    flex-basis: 50%;
}
.print-caption img {
    display: block;
    flex-basis: 45%;
    max-width: 400px;
    object-fit: contain;
}

.assignment-midashi, .detail-explanation dt, .detail-explanation dd{
    text-align: left;
    margin-left: 10px;
}


/* スマホ表示用 */
@media screen and (max-width: 1000px) {
    .service-list-content {
        flex-basis: 18%;
    }
    .service-list-name {
        font-size: 10px;
    }
    .aid_system {
        display: block;
    }
    .aid-item {
        flex-basis: 42%;
    }
    .aid-item img {
        width: 90%;
        max-height: 170px;
        object-fit: contain;
    }
    .print-caption {
        display: block;
    }
    .print-caption img{
        margin: 0 auto;
    }
    .fade-in {
        transition-delay: none;
    } 
}