@charset "UTF-8";
:root {
    --font-family-main: "Zen Kaku Gothic New", sans-serif;
    --font-family-accent: "Jost", sans-serif;
    --font-family-sub: "Noto Sans JP", sans-serif;
    --color-main-text: #202020;
    --color-sub-text: #ffffff;
    --color-accent-1: #E62F2B;
    --color-title-gradient: linear-gradient(90deg, #DA3E3B 0%, #FF7341 50%, #FBA681 100%);
    --h1-font-size: 3rem;
    --h1-font-size-sp: 2.3rem;
    --h1-font-size-en: 1.1rem;
    --h1-font-size-en-sp: 0.8rem;
    --h2-font-size: 2.5rem;
    --h2-font-size-sp: 1.8rem;
    --h2-font-size-en: 1.3rem;
    --h2-font-size-en-sp: 0.9rem;
    --h3-font-size: 1.8rem;
    --h3-font-size-sp: 1.4rem;
    --h3-font-size-en: 0.9rem;
    --main-text-font-size: 1rem;
    --small-text-font-size: 0.9rem;
    --vivid01: linear-gradient( to right, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    --orange03: linear-gradient(to right, #F57504, #FBA55A);
}

body {
    color: var(--color-main-text);
}
.main {
    max-width: 100%;
}

.sp-only {
    display: none;
}
.pc-only {
    display: block;
}
/* ~~~~~~~~~~~~~~~
メインビジュアル 
~~~~~~~~~~~~~~~~~~~~*/

.hero {
    width: 100%;
    aspect-ratio: 1474 / 751;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__content {
    padding-top: 25%;
}
.hero__title--home {
    color: #fff;
    display: block;
}

.home_hero__title--en {
    font-size: var(--h1-font-size-en);
    font-family: var(--font-family-accent);
    font-weight: 500;
    position: absolute;
    margin-top: 32px;
}
.hero__slider {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero__slide-image--sp {
    display: none;
}


.hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero__slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__slide img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}
.hero__inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero__tel {
    display: inline-block;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-left: auto;
    align-self: flex-end;
    width: min(25.7vw, 360px);
    bottom: 20px;
}
.hero__tel li {
    margin-bottom: 12px;
}
.hero__tel01 {
    position: relative;
}
.tel-bubble {
    width: 84%;
    position: absolute;
    top: -48%;
    left: 50%;
    transform: translateX(-50%);
}
.hero__tel li a:hover {
    opacity: 1;
}

.service-icons {
    background-color: #F7F7F7;
}
.service-icons__inner {
    width: 60%;
}

.service-icons__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
}

.service-icons__item {
    width: 23%;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: -3%;
    position: relative;
    z-index: 10;
}
.service-icons__item img {
    width: 100%;
}
.service-icons__item:hover {
    transform: translateY(-5px);
    opacity: 1;
}
.service-icons__item a:hover {
    opacity: 1;
}
.service-icons__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
}

/* ~~~~~~~~~~~~~~~~~~~~~
サービスについて 
~~~~~~~~~~~~~~~~~~~~~~*/

.service {
    padding: clamp(60px, 10%, 80px) 0;
    background-color: #F7F7F7;
}
.service__content {
    margin: 2% auto 5.7%;
    max-width: 1100px;
}
.service__items {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}
.service__list {
    font-size: var(--small-text-font-size);
    text-align: left;
    font-weight: 500;
    padding: 0;
}
.service__list li {
    position: relative;
    padding-left: 24px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #D6D6D6;
}
.service__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('../images/common_check.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
}
.service__item--text {
    display: flex;
    gap: 6%;
}

.service__item {
    width: 30%;
    text-align: center;
    padding: min(2.2vw, 32px) min(1.7vw, 24px) min(1.4vw, 20px);
    box-shadow: 0 4px 10px rgba(67, 67, 67, 0.1);
    border-radius: 10px;
    margin-bottom: clamp(20px, 4%, 30px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
}

.service__item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service__icon {
    width: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service__icon img {
    aspect-ratio: 1 /1;
}

.service__subtitle {
    font-size: clamp(18px, 4vw, 20px);
    font-weight: bold;
    margin-bottom: 15px;
}

.service__link {
    display: block;
    width: 86%;
    margin-inline: auto;
    border: 1px solid #E62F2B;
    border-radius: 24px;
    color: var(--color-accent-1);
    padding-block: 10px;
    font-weight: bold;
}
.service__link:hover {
    border: 1px solid transparent;
    color: #fff;
    background-color: var(--color-accent-1);
    opacity: 1;
}
.service__more {
    display: flex;
    align-items: flex-end;
    width: 30%;
    padding-bottom: min(1.4vw, 20px);
    margin-bottom: clamp(20px, 4%, 30px);
}
.service__more a img {
    display: inline-block;
    transition: opacity 0.3s ease; 
}
.service__more a {
    position: relative;
    display: inline-block;
}

.service__more a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/home_to-service_hov.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service__more a:hover img {
    opacity: 0;
}

.service__more a:hover {
    opacity: 1;
}

.service__more a:hover::before {
    opacity: 1;
}
.products {
    padding: clamp(60px, 10%, 80px) 0;
    background-color: #fff;
}

.products__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4%;
}

.products__item {
    width: 48%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: clamp(20px, 4%, 30px);
}

.products__item img {
    width: 98%;
    object-fit: contain;
}
/* ~~~~~~~~~~~~~~~~
about
~~~~~~~~~~~~~~~~ */
.about {
    padding: clamp(60px, 10%, 80px) 0;
    background-image: url(../images/home_bg_about-pc.png);
    background-size: cover;
    background-position: top right;
    padding: clamp(60px, 10%, 80px) 0;
    color: var(--color-main-text);
}

.about__more .common-button img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.stats__inner {
    margin-bottom: min(8.3vw, 120px);
}

.about__content {
    margin-top: 3.8%;
}
.about .section__title {
    color: var(--color-main-text);
}

.about .section__title::after {
    background-color: #fff;
}

.about__text {
    max-width: 800px;
    text-align: left;
    font-size: var(--main-text-font-size);
    line-height: 1.75;
    margin-bottom: 5.4%;
    font-weight: 500;
}


.about__more {
    display: flex;
    margin-left: 0;
}
.about__more--arrow {
    width: 9%;
    height: 9%;
}

/* ~~~~~~~~~~~~~~~~~
実績・事例
~~~~~~~~~~~~~~~~ */
.cases__wrapper {
    background-image: url(../images/home_bg_red.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: bottom;
    background-color: #fff;
    width: 100%;
}
.cases {
    color: #fff;
    padding: min(6.9vw, 100px) 0 min(13vw, 190px);
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
}
.cases__title-en {
    font-size: var(--h2-font-size-en);
    display: block; 
    font-family: var(--font-family-accent);
    font-weight: 500;
}
.cases__desc {
    font-size: var(--main-text-font-size);
    line-height: 1.75;
    margin-block: 1.94% 70px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.cases__sub-title--en {
    font-size: var(--h3-font-size-en);
    display: block; 
    font-family: var(--font-family-accent);
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}
.cases__sub-title--en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background-color: #fff;
}
.cases__sub-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cases__sub-desc {
    font-size: var(--main-text-font-size);
    line-height: 1.5;
    font-weight: 500;
}
.cases__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4%;
    margin-bottom: 6.94%;
}
.cases__item {
    width: 260px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cases__image {
    width: 260px;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
}

.cases__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases__text {
    padding: 20px 24px;
    font-size: var(--small-text-font-size);
    color: var(--color-main-text);
    line-height: 1.28;
    font-weight: 500;
    height: 94px;
}
.cases__item-link {
    color: var(--color-main-text);
    font-size: var(--small-text-font-size);
    display: block;
    width: 260px;
    height: 100%;
}

.cases__bottom-content {
    background-color: rgba(230, 230, 230, 0.3);
    padding: min(1.6vw, 24px) min(4.17vw, 60px) ;
    font-size: var(--main-text-font-size);
    line-height: 1.5;
    padding: 20px;
    margin-top: 20px;
    font-weight: 500;
}

.swiper-wrapper {
    gap: 20px;
}
.swiper-pagination {
    opacity: 0;
}

@media screen and (max-width: 1099px) {
    .cases {
        padding-inline: 20px;
    }
        /* Swiperの基本スタイル */
    .swiper-container {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
        position: relative;
        padding-bottom: 30px; 
    }
    
    .swiper-pagination {
        position: absolute;
        bottom: 0 !important;
        left: 0;
        right: 0;
        text-align: center;
        opacity: 1;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        display: inline-block;
        border-radius: 50%;
        background: #fff;
        margin: 0 4px;
        opacity: 1;
        border: 1px solid #ccc;
    }
    
    .swiper-pagination-bullet-active {
        background-color: #f5911e; 
        border: 2px solid #fff;
        height: 10px;
        width: 10px;
    }
}
/* ~~~~~~~~~~~~~~~~~~~
会社概要 
~~~~~~~~~~~~~~~~~~~~~~~~*/
.company {
    padding: 8.3% 0;
    background-color: #fff;
}
.company__inner {
    margin-right: 0;
    padding-left: 11.8%;
}
.company__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4%;
}
.company__image {
    width: 43%;
    height: auto;
}
.company__links {
    width: min(36vw, 520px);
    margin-top: 6.67%;
}

.company__links li {
    margin-bottom: 16px;
}

/* ~~~~~~~~~~~~~~~~~~~
採用情報
~~~~~~~~~~~~~~~~ */
.recruit {
    background-image: url(../images/home_bg_recruit-pc.jpg);
    background-position: top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding-block: 5.56% 4.17%;
}
.recruit__inner {
    width: 37.5%;
    background-color: #fff;
    margin-inline: auto;
    padding: min(4.1vw, 60px) min(4.1vw, 60px) min(3.3vw, 48px);

}
.recruit__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    font-size: var(--main-text-font-size);
    line-height: 1.75;
    margin-top: 1.9%;
    font-weight: 500;
}

.recruit__image {
    width: 48%;
    margin-bottom: clamp(20px, 4%, 30px);
}

.recruit__button {
    margin-top: 6.67%;
}

.recruit__text {
    width: 48%;
}

.recruit__text p {
    margin-bottom: 30px;
    font-size: clamp(14px, 3vw, 16px);
}

/* ~~~~~~~~~~~~~
お知らせ 
~~~~~~~~~~~~~~~*/
.news {
    padding: clamp(60px, 10%, 80px) 0;
    background-color: #fff;
}

.news__inner {
    display: flex;
    gap: min(8.3vw, 120px);
}
.news__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.news__content {
    flex-shrink: 0;
    width: 72%;
}

.news .common-button img {
    height: 48px !important;
}

.news__item {
    border-bottom: 1px solid #D6D6D6;
}

.news__link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: min(1.9vw, 28px) min(1.6vw, 24px);
}

.news__link-top {
    display: flex;
}

.news__date {
    width: 100px;
    color: #E62F2B;
    font-size: var(--small-text-font-size);
    font-family: var(--font-family-accent);
    font-weight: 400;
}

.news__category {
    min-width: 80px;
    background: var(--vivid01);
    color: #fff;
    text-align: center;
    padding: 2px 12px;
    border-radius: 3px;
    font-size: var(--small-text-font-size);
    font-weight: 500;
    margin-right: 20px;
}

.news__title {
    flex: 1;
    font-size: var(--main-text-font-size);
    margin-top: 5px;
    font-weight: 500;
}

.news .common-button img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* ~~~~~~~~~~~~~~~~~~
よくある質問
~~~~~~~~~~~~~~~~~~~~~~~ */
.faq-contact__wrapper {
    background-image: url(../images/home_bg_contact-pc.png);
}
.faq {
    padding: clamp(60px, 10%, 80px) 20px;
}

.faq .common-button img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.faq__inner {
    background-color: #fff;
    border: 1px solid #E62F2B;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    padding: min(2.7vw, 40px) min(5.6vw, 82px) min(2.7vw, 40px) min(4.1vw, 60px);
    box-shadow: 2px 2px 10px 3px rgba(0, 0, 0, 0.1);
}
.faq__list li {
    font-size: var(--main-text-font-size);
    margin-bottom: 8px;
    background-color: #F3F3F3;
    padding: 12px 20px 12px 16px;
    font-weight: 500;
}
.faq__list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero__button-sp {
    display: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~
レスポンシブ対応 - モバイル調整
~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }
    .pc-only {
        display: none;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~
    hero
    ~~~~~~~~~~~~~~~~~~~~~~~~*/
    .hero {
        height: 100svh;
        width: 100%;
        aspect-ratio: 375 / 685;
        min-height: 500px;
    }
    .hero__slider {
        top: 80px;
    }
    .hero__content {
        padding-top: 95px;
    }
    .hero__button-sp {
        display: inline-block;
        position: relative;
        z-index: 50;
        width: 100%;
        bottom: -20%;
        background-color: #F7F7F7;
    }
    .tel-sp {
        display: block;
        width: 100%;
        max-width: 400px;
        padding-inline: 20px;
        margin-top: -20px;
        position: relative; 
        left: 50%;
        transform: translateX(-50%);
    }
    .tel-sp li {
        margin-bottom: 24px;
        display: inline-block;
        margin-top: -5%;
    }

    .hero__title {
        font-size: 36px;
        position: relative;
        line-height: initial;
        height: 100%;
    }

    .home_hero__title--en {
        writing-mode: vertical-rl;
        right: 0;
        top: 0;
        margin-top: 0;
    }

    .hero__slide-image--pc {
        display: none;
    }
    .hero__slide-image--sp {
        display: block;
    }


    /*~~~~~~~~~~~~~~~~~~~
    サービスアイコン 
    ~~~~~~~~~~~~~~~~~~~~*/
    .service {
        padding: clamp(60px, 10%, 80px) 0;
        background-color: #F7F7F7;
        margin-top: 0; 
    }
    .service-icons__inner {
        width: 100%;
    }
    .service-icons__item {
        width: 47%;
        margin-top: 0;
    }
    .service-icons {
        background-color: #F7F7F7;
        margin-top: 0; 
        padding-top: 20px;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~
    サービスについて 
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .service__item {
        width: 47.5%;
        padding: 1rem 0.8rem;
    }
    .service__content {
        margin: 5.3% auto 7.4%;
    }
    .service__item--text {
        flex-direction: column;
        gap: 16px;
    }
    .service__icon img {
        width: 100%;
    }
    .service__icon {
        margin-inline: auto;
    }
    .service__link {
        font-size: var(--small-text-font-size);
        width: 100%;
    }
    .service__more-sp {
        max-width: 360px;
        margin-inline: auto;
    }

    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    アバウト
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    .about {
        background-image: url(../images/home_bg_about-sp.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        padding-top: 21%;
    }
    .about__text {
        font-size: var(--h2-font-size-);
        margin-bottom: 76%;
    }
    .about__more {
        width: 100%;
    }
    .about__more .common-button img {
        min-height: 60px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .about__more .sp-button {
        max-width: 100%;
    }
    .about img {
        width: 100%;
    }

    /*~~~~~~~~~~~~~~~~~~~~~~~~~
    実績、事例
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    .cases__wrapper {
        background-image: url(../images/home_bg_red-sp.png);
        background-size: 100% auto;
        background-position: bottom;
    }
    .cases {
        padding: min(16vw, 60px) min(5.3vw, 20px) min(32vw, 120px);
    }
    .cases__title-en {
        font-size: var(--h2-font-size-en-sp);
    }
    .cases__desc {
        margin-bottom: 36px;
        font-size: 1rem;
        font-weight: 500;
    }
    .cases__list {
        display: block;
        margin-bottom: 30px;
    }
    
    .cases__item {
        width: 260px;
        height: 294px; 
        margin: 0;
    }
    
    .cases__image {
        height: 220px;
    }

    /* ~~~~~~~~~~~~~~~~~~~~~~~~
    取扱商品について 
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .products__item {
        width: 100%;
    }
    .products {
        padding-bottom: 0;
    }
    
    /* ~~~~~~~~~~~~~~~~~~~~~~~
    実績数 
    ~~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .stats__item {
        width: 48%;
    }
    .stats__inner {
        margin-bottom: 16%;
    }
    
    /* ~~~~~~~~~~~~~~~~~~~
    会社概要
    ~~~~~~~~~~~~~~~~~~~~~~~~ */
    .company {
        padding: 21.33% 0 21.33% 20px;
    }
    .company__info, 
    .company__image {
        width: 100%;
    }
    .company__links {
        width: 100%;
        padding-top: 28px;
        margin: 0;
    }

    .company__inner {
        padding: 0;
    }
    .company__image {
        padding-left: 40px;
        padding-top: 40px;
    }
    /* ~~~~~~~~~~~~~~~~~~
    採用情報
    ~~~~~~~~~~~~~~~~~ */
    .recruit {
        background-image: url(../images/home_bg_recruit-sp.jpg);
        padding-inline: 20px;
        padding-top: 56%;
    }
    .recruit__image,
    .recruit__text {
        width: 100%;
    }
    .recruit__inner {
        width: 100%;
        padding: 40px 20px 0;
    }
    .recruit__button {
        width: 100%;
    }

    /* ~~~~~~~~~~~~~~~~~~
    ニュース
    ~~~~~~~~~~~~~~~~~~~ */
    .news__content {
        width: 100%;
    }
    .news__inner {
        flex-direction: column;
        align-items: baseline;
        margin-bottom: 40px;
    }
    .news__link {
        flex-direction: column;
        align-items: flex-start;
    }
    .news__link-top {
        display: flex;
        gap: 12px;
    }
    .news__date {
        width: 100%;
    }
    .news__category {
        width: 100%;
    }

    .news__left {
        width: 100%;
    }
    /* ~~~~~~~~~~~~~~~~~~
    よくある質問
    ~~~~~~~~~~~~~~~~~ */
    .faq {
        padding: clamp(60px, 10%, 80px) 20px 0;
        background-color: #fff;
    }
    .faq__inner {
        flex-direction: column;
    }
    .faq .button__moreinfo img {
        min-height: 60px;
        width: 100%;
        object-fit: contain;
        padding-inline: 0;
    }
    .faq .button__moreinfo {
        padding-inline: 0;
    }
}
