/* style.css */
@charset "UTF-8";

/* ========================
   Main Visual
======================== */
.fv {
    background: url('./../images/fv_pc.png') center/cover no-repeat;
    color: #fff;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.fv-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Contrail One';
    font-size: 5.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.21rem;
}

.subtitle {
    display: inline-block;
    color: #000;
    background-color: #fff;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 0.2em 0.5em;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0078d4;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #005ea6;
}

@media (max-width: 900px) {
    .fv {
        min-height: 100vh;
    }

    .fv-inner {
        width: 100%;
        margin: 0;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 0.875rem;
    }
}

/* ========================
   Features
======================== */
.features {
    background-image: url(./../images/feature_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    padding: 1rem;
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
    min-height: 30rem;
    display: flex;
    align-items: center;
}

.features-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-item {
    font-size: 1.1rem;
}

.features-subtitle {
    color: #0070c0;
    font-size: 0.85rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.features-text {
    text-shadow: 0 2px 12px rgba(255, 255, 255, 1);
}

@media (max-width: 900px) {
    .features {
        margin: 0;
        background-position: right 3rem;
        background-size: 300px;
    }

    .features-text {
        margin-top: 190px;
        margin-bottom: 2rem;
    }
}

/* ========================
   About
======================== */
.about {
    padding: 5.5rem 0;
    background: #f6f9fa;
}

.about-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 4.5rem;
}

.about-inner ul {
    display: flex;
    gap: 32px;
    justify-content: center;
    padding: 0;
    margin: 1rem 0 0 0;
    list-style: none;
}

.about-inner ul li {
    flex: 1;
    background: #fff;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-inner ul li img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    margin-bottom: 16px;
}

.about-inner ul li h4 {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0 1rem;
}

.about-inner ul li h4 span {
    text-align: center;
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-right: 8px;
    color: #0082d8;
    font-family: 'Coda Caption';
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.about-inner ul li p {
    color: #333;
    padding: 1rem;
}
@media (max-width: 900px) {
    .about {
        margin-top: 0;
        padding: 1.5rem 0;
    }

    .about-text {
        margin-bottom: 2rem;
    }

    .about-inner ul {
        flex-direction: column;
    }

    .about-inner ul li {
        width: 100%;
    }

    .about-inner ul li h4 {
        font-size: 1rem;
    }

    .about-inner ul li h4 span {
        font-size: 0.8em;
    }
}

/* ========================
   Product
   
   ======================== */
.product {
    padding: 4.5rem 0;
}

.product-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-text {
    text-align: left;
    margin-bottom: 4.5rem;
}

.recruit-subtitle {
    color: #0070c0;
    font-size: 0.85rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 900px) {
    .product {
        padding: 1.5rem 0;
    }

    .product-text {
        margin-bottom: 2rem;
    }

    .product-list {
        margin: -20px;
        overflow: hidden;
        padding: 1.5rem 0;
    }

    .product-list li {
        text-align: center;
    }

    .product-list img {
        width: 100%;
        height: auto;
    }

    .product-list .slick-slide {
        margin: 0 0.25rem;
    }
}

/* ========================
   Recruit
======================== */
.recruit {
    padding: 1.5rem 0;
    background-color: #f6f9fa;
    background-image: url(./../images/recruit_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    padding: 1rem;
    margin-top: 4.5rem;
    min-height: 30rem;
    display: flex;
    align-items: center;
    border-top: 4.5rem solid #f6f9fa;
    border-bottom: 4.5rem solid #f6f9fa;
}

.recruit-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.recruit-subtitle {
    color: #0070c0;
    font-size: 0.85rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    gap: 10px;
    position: relative;
    margin-top: 5rem;
}

.arrow-circle {
    width: 5.5rem;
    height: 5.5rem;
    border: 2px solid #0082d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    transition: 0.3s;
    border-radius: 5rem;
    background: #0082d8;
    box-shadow: 0 4px 6px 0 rgba(0, 82, 136, 0.3);
}

.arrow-btn:hover {
    color: #0070c0;
    transition: 0.3s;
}

.arrow-btn:hover .arrow-circle {
    background: #fff;
    transform: scale(1.05);
    transition: 0.3s;
}

.arrow {
    position: relative;
    display: block;
    width: 40px;
    height: 2px;
    background: #fff; /* 横線の色 */
}

.arrow-btn:hover .arrow {
    background: #0082d8;
}

.arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}

.arrow-btn:hover .arrow::after {
    border-right: 2px solid #0082d8;
    border-bottom: 2px solid #0082d8;
}

@media (max-width: 900px) {
    .recruit {
        margin-top: 0;
        padding: 0;
        background-image: none;
        display: block;
    }

    .arrow-btn {
        margin: 2rem 0;
    }

    .arrow-circle {
        width: 2.5rem;
        height: 2.5rem;
        border: 2px solid #0070c0;
    }

    .arrow {
        width: 20px;
    }

    .arrow::after {
        width: 6px;
        height: 6px;
    }
}

/* ========================
   Company
======================== */
.company {
    padding: 4.5rem 0;
    background: url(./../images/company_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.company-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.company-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 5fr; /* 2等分 */
    gap: 0rem 2rem;
}

.company-list dt,
.company-list dd {
    border-bottom: 1px solid #a1a1a1;
    padding: 2rem 0;
    font-weight: bold;
}

.company-list dt:first-of-type,
.company-list dd:first-of-type {
    border-top: 1px solid #a1a1a1;
}

.company-subtitle {
    color: #0070c0;
    font-size: 0.85rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.company-map {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .company {
        padding: 1.5rem 0;
    }

    .company-list {
        grid-template-columns: 1fr 3fr;
        gap: 0rem 1rem;
    }

    .company-list dt,
    .company-list dd {
        padding: 1rem 0;
        font-weight: normal;
    }

    .company-map {
        margin-top: 2rem;
    }

    .company-map iframe {
        height: 250px;
    }
}
