@charset "UTF-8";
/* CSS Document */

/*キャッチ*/
.service-catch_wrap {
    text-align: center;
}
.service-catch_wrap .service-catch_LB {
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 5.2px;
    color: var(--LB-color);
}
.service-catch_wrap .service-catch_text {
    margin-top: 40px;
    line-height: 2;
    font-weight: 300;
}
.service-catch_wrap .service-catch_LB .sp600 {
    display: none;
}
@media (max-width: 768px) {
    .service-catch_wrap .service-catch_LB {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    .service-catch_wrap .service-catch_text {
        text-align: left;
        margin-top: 24px;
    }
}
@media (max-width: 600px) {
    .service-catch_wrap .service-catch_LB .sp600 {
        display: block;
    }
}

.service-catch_image {
    width: 100%;
    max-height: 400px;
}
.service-catch_image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}


/*製品画像*/
.item_wrap ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.item_wrap ul li img {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .item_wrap ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px; 
    }
}


/*オンラインカタログ*/
.online-catalog {
    background: #F0F0F0;
    padding-top: 64px;
    padding-bottom: 88px;
}
.online-catalog h2 {
    margin-bottom: 40px;
    text-align: center;
}

.online-catalog ul {
    display: flex;
    gap: 32px;
    max-width: 830px;
    margin: 0 auto;
    justify-content: center;
}
.online-catalog ul li a {
    display: block;
}
.online-catalog ul li a img {
    transition: 0.3s;
    max-height: 360px;
} 
.online-catalog ul li a:hover img {
    opacity: 0.8;
}
@media (min-width: 769px) {
    .online-catalog ul li a:hover img {
        transform: scale(1.02);
    }
}

.online-catalog ul li .name {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-align: center;
    margin-top: 24px;
}
.online-catalog ul li .en {
    font-family: Avenir-Book;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 6px;
}
@media (max-width: 768px) {
    .online-catalog {
        padding: 60px 0;
    }
    .online-catalog h2 {
        margin-bottom: 30px;
    }
}
@media (max-width: 600px) {
    .online-catalog ul {
        flex-direction: column;
        width: 78%;
        gap: 36px;
    }
    .online-catalog ul li .name {
        margin-top: 8px;
    }
}


/*関連ページへのボタン*/
.button_wrapper .button_wrap {
    width: 100%;
    display: flex;
    gap: 16px;
}
.button_wrapper .button_wrap a {
    display: inline-block;
    text-align: center;
    width: calc(50% - 8px);
    padding: 28px 60px 29px;
    color: #FFFFFF;
    background: rgb(48,188,235);
    background: linear-gradient(120deg, rgba(48,188,235,1) 0%, rgba(22,86,164,1) 58%);
    background-size: 100%;
    background-position: center;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    transition: 0.3s;
}
.button_wrapper .button_wrap a::after {
    content: '＞';
    font-size: 1.45rem;
    position: relative;
    left: 22px;
    top: 0;
    transition: 0.3s;
}
.button_wrapper .button_wrap a:hover {
    background-size: 150%;
    background-position: 5% 50%;
}
.button_wrapper .button_wrap a:hover::after {
    left: 26px;
}

/*ボタン1つのとき*/
.button_wrap.width100 a {
    margin: 0 auto;
}

@media (max-width: 960px) {
    .button_wrapper .button_wrap a {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .button_wrapper .button_wrap {
        flex-direction: column;
    }
    .button_wrapper .button_wrap a {
        width: 100%;
        padding: 15px 20px 16px;
        font-size: 1.6rem;
    }
    .button_wrapper .button_wrap a::after {
        font-size: 1.4rem;
        left: 15px;
    }
}


/*スタッフのひとこと*/
section.staff-notes {
    margin-top: 100px;
}
.staff-notes .content_wrap {
    display: flex;
    gap: 80px;
    width: 90%;
}
.staff-notes .content_wrap .image_wrap {
    width: 40%;
}
.staff-notes .content_wrap .text_wrap {
    width: 60%;
}
.staff-notes .content_wrap .text_wrap b {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--LB-color);
}
.staff-notes .content_wrap .text_wrap b + p {
    margin-top: 24px;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}
@media (max-width: 960px) {
    .staff-notes .content_wrap {
        gap: 50px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    section.staff-notes {
        margin-top: 80px;
        margin-bottom: 100px;
    }
    .staff-notes .content_wrap {
        flex-direction: column;
        gap: 24px;
    }
    .staff-notes .content_wrap .image_wrap {
        width: 100%;
    }
    .staff-notes .content_wrap .text_wrap {
        width: 100%;
    }
    .staff-notes .content_wrap .text_wrap b + p {
        margin-top: 6px;
    }
}


/*事業内容一覧*/
section.service-list {
    margin-top: 100px;
}
.service-list {
    padding: 80px 0;
    background: #F2F2F2;
}
.service-list h2 {
    text-align: left;
    margin-bottom: 40px;
}

.service-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 64px;
}
.service-list ul li {
    width: calc((100% - 128px) / 3);
}
.service-list ul li > div {
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;
}
.service-list ul li > div a {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    padding-bottom: 16px;
    border-bottom: 1px solid #000000;
    width: 60%;
    padding-right: 24px;
    position: relative;
    transition: 0.3s;
}
.service-list ul li > div a::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--LB-color);
    border-right: 2px solid var(--LB-color);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 30%;
    right: 12px;
    border-radius: 1px;
    transition: 0.25s ease-in-out;
}
.service-list ul li > div img {
    max-width: 116px;
    width: 40%;
}

.service-list ul li > div a:hover {
    color: #5C5C5C;
}
.service-list ul li > div a:hover::after {
    right: 9px;
}

@media (max-width: 1200px) {
    .service-list ul {
        gap: 32px 40px;
    }
    .service-list ul li {
        width: calc((100% - 80px) / 3);
    }
}
@media (max-width: 1100px) {
    .service-list ul {
        gap: 32px;
    }
    .service-list ul li {
        width: calc((100% - 64px) / 3);
    }
}
@media (max-width: 1080px) {
    .service-list ul {
        gap: 24px 32px;
    }
    .service-list ul li {
        width: calc((100% - 32px) / 2);
    }
}
@media (max-width: 700px) {
    .service-list {
        padding: 60px 0;
    }
    .service-list h2 {
        margin-bottom: 32px;
    }
    .service-list ul {
        gap: 24px;
    }
    .service-list ul li {
        width: 100%;
    }
    .service-list ul li > div img {
        max-width: inherit;
        width: 35%;
    }
    .service-list ul li > div a {
        width: 65%;
        font-size: 1.5rem;
    }
}