@charset "UTF-8";

/* ========================================
   共通設定・変数 (テーマカラー)
======================================== */
:root {
    --color-main-blue: #4BA3D3;
    --color-text: #333333;
    --color-bg-light: #F0F8FF;
}

html { scroll-behavior: smooth;
 }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--color-text);
    line-height: 1.8;
    background-color: #fff;
    width: 100%;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }

.inner { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }

.sec-header { text-align: center; margin-bottom: 40px; }
.sec-icon { height: 40px; margin-bottom: 10px; }
.icon-blue { filter: invert(59%) sepia(48%) saturate(760%) hue-rotate(167deg) brightness(88%) contrast(85%); }
.sec-title { font-size: 28px; font-weight: bold; letter-spacing: 0.1em; color: var(--color-text); display: flex; flex-direction: column; align-items: center; }
.sec-en { display: block; font-size: 14px; color: var(--color-main-blue); font-weight: normal; letter-spacing: 0.2em; margin-top: 5px; }

/* ========================================
   共通：テキストリンク
======================================== */
.text-link {
    color: var(--color-main-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: bold;
    transition: 0.3s;
}

.text-link:hover {
    opacity: 0.6;
    text-decoration: none;
}

/* ========================================
   ヘッダー
======================================== */
.header { width: 100%; background-color: #fff; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #eee; }
.header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1300px; margin: 0 auto; padding: 15px 20px; }
.logo { margin-left: 0px; }
.logo img { height: 40px; }
.global-nav { margin-left: auto; margin-right: 30px; }
.nav-list { display: flex; gap: 25px; }
.nav-item a { display: flex; flex-direction: column; align-items: center; font-size: 11px; font-weight: bold; transition: opacity 0.3s; color: var(--color-text); }
.nav-item a:hover { opacity: 0.6; }
.nav-icon { height: 24px; margin-bottom: 5px; }

.btn-header { display: flex; align-items: center; background-color: var(--color-main-blue); color: #fff; font-size: 14px; font-weight: bold; padding: 10px 24px; border-radius: 30px; transition: 0.3s; }
.btn-header:hover { background-color: #388cbd; transform: translateY(2px); }
.btn-search-icon { height: 16px; margin-right: 8px; }
.nav-item-sp {
    display: none;
}

/* ========================================
   ヒーローエリア (メインビジュアル)
======================================== */
.hero-wrapper {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding-top: 60px;
    padding-bottom: 150px;
    overflow-x: clip;
    overflow-y: visible;
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.hero-text { width: 45%; padding-top: 0px; padding-left: 100px; }
.hero-catch { 
    font-size: 28px; 
    font-weight: normal; 
    line-height: 1.6; 
    color: var(--color-text);
    border-bottom: none; 
    display: block; 
    position: relative; 
    padding-bottom: 8px; 
    margin-bottom: 8px; 
}
.hero-catch::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;        
    width: 365px;    
    border-bottom: 2px dotted #333; 
}
.hero-lead { 
    font-size: 14px; 
    color: #666; 
    letter-spacing: 0.1em; 
    border-top: none; 
    padding-top: 0;
    margin-top: 0;
    margin-left: 14px;
}

.hero-images { width: 55%; position: relative; height: 500px; }

.deco { position: absolute; z-index:5; }
.deco-pink { top: 170px; left: -280px; width: 100px; }
.deco-yellow { bottom: -30px; left: 30px; width: 140px; }
.deco-blue { top: 15px; right: 105px; width: 120px; }

.hero-img-main { 
    position: absolute; 
    top: 10px; 
    right: 150px; 
    width: 380px; 
    height: 380px; 
    object-fit: cover; 
    border-radius: 50%;   
    z-index: 3; 
}
.hero-shadow-blue {
    position: absolute;
    width: 380px;       
    height: 380px;      
    border-radius: 50%; 
    z-index: 2;         
    top: 20px;     
    right: 140px;  
}

.hero-img-sub { 
    position: absolute; 
    bottom: 50px; 
    left: -250px; 
    width: 250px; 
    height: 250px; 
    object-fit: cover; 
    border-radius: 50%; 
    z-index: 4; 
}

.wave-top {
    position: absolute;
    top: 30px; 
    left: -10%;
    width: 120%;
    max-width: none;
    z-index: 1; 
}

/* ========================================
   1分でわかる
======================================== */
.sec-about { 
    background-color: transparent; 
    padding-top: 40px; 
    position: relative; 
    z-index: 10; 
    margin-top: -100px; 
}
.about-intro {
    text-align: center;  
    font-weight: bold;   
    line-height: 2;      
    margin-bottom: 40px; 
    margin-top: 0px;
    max-width: 1100px;   
    margin-left: auto;  
    margin-right: auto;
    font-size: 15px;
}
.about-card {
    display: flex; 
    background-color: #fff; 
    border-radius: 15px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
    padding: 30px 40px; 
    align-items: center; 
    gap: 40px;
    max-width: 1100px;   
    margin-left: auto;  
    margin-right: auto; 
}
.about-card-text { 
    width: 60%; 
}
.about-card-text h3 { 
    font-size: 26px; 
    background: none;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: currentcolor;
    color: #333; 
    margin-top: 10px;  
    text-align: left; 
    font-weight: normal;  
    margin-bottom: 20px; 
}
.about-card-text p { 
    font-size: 14px; 
    line-height: 2; 
    text-align: left;
    font-weight: normal;
} 

.about-card-img { 
    width: 40%; 
    border-radius: 10px; 
    overflow: hidden; 
}

/* ========================================
   データで見る
======================================== */
.sec-data { background-color:transparent;
    
}
.sec-data .inner { padding-top: 60px; }
.sec-data .sec-icon,
.sec-data .sec-title {
    position: relative;
    z-index: 10;
}
.data-content { 
    position: relative;
    z-index: 10;
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    background-color:var(--color-bg-light);
    padding: 50px 40px;  
    border-radius: 20px; 
    max-width: 1100px;    
    margin: 0 auto;      
}

.data-box {
    background-color: #fff; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); padding: 30px; width: 45%; text-align: center;
}

.data-box-title { 
    font-size: 18px; 
    color: #333; 
}

.data-img { max-height: 200px; width: auto; margin: 0 auto; display: block; }
.data-img-gender { max-height: 180px; }

/* ========================================
   求める人物像
======================================== */
.sec-person {
    background-image: url('images/bg-person.png'); 
    background-size: cover; 
    background-position: center; 
    padding:10px 0; 
    margin-top: -40px; 
}
.sec-person .inner {
    padding-top: 70px; 
    padding-bottom: 20px;
}
.person-content { 
    width: fit-content; 
    max-width: 100%;     
    margin: 0 auto;      
}

.check-list { 
    list-style: none; 
    padding-left: 0; 
}

.check-list li {
    position: relative; 
    padding-left: 40px;  
    margin-bottom: 25px; 
    font-weight: bold;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;    
}

.check-list li::before {
    content: '✔'; 
    position: absolute; 
    left: 0; 
    top: -2px; 
    color: var(--color-main-blue); 
    font-size: 22px; 
}
/* ========================================
   働き方改革
======================================== */
.sec-work { background-color: #fff; }
.sec-work .inner {
    padding-top: 35px;
    padding-bottom: 30px;
}
.work-content { max-width: 600px; margin: 0 auto; text-align: center; }
.diamond-list { text-align: left; display: inline-block; }
.diamond-list li {
    position: relative; padding-left: 25px; margin-bottom: 15px; font-weight: bold; font-size: 16px;
}
.diamond-list li::before {
    content: '◆'; position: absolute; left: 0; top: 0; color: var(--color-main-blue); font-size: 14px;
}

/* ========================================
   よくある質問
======================================== */
.sec-faq {
    background-image: url('images/bg-faq.png'); 
    background-size: cover; background-position: center; padding: 0px 0;
}
.faq-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background-color: #fff; border-radius: 10px; padding: 25px 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.faq-q { font-weight: bold; font-size: 16px; margin-bottom: 15px; display: flex; align-items: center; color: var(--color-main-blue); border-bottom: 1px dashed #666; padding-bottom: 15px;}
.faq-icon-q { font-size: 20px; font-weight: bold; margin-right: 10px; }
.faq-a { font-size: 15px; display: flex; align-items: flex-start; }
.faq-icon-a { font-size: 20px; font-weight: bold; margin-right: 10px; color: #999; line-height: 1; }
.sec-faq .inner {
    padding-top: 30px;
    padding-bottom: 40px;
}

/* ========================================
   お仕事を探す
======================================== */
.sec-recruit { background-color: #fff; padding-bottom: 0px; }
.sec-recruit .inner {
    padding-top: 40px;
    padding-bottom: 40px;
}
.recruit-intro { text-align: center; margin-bottom: 50px; font-weight: bold; }
.recruit-gallery { display: flex; justify-content: space-between; gap: 30px; }
.job-card { width: 32%; text-align: center; }
.job-img { width: 100%; border-radius: 10px; margin-bottom: 15px; }
.job-name { font-size: 16px; font-weight: bold; margin-bottom: 15px; }
/* ========================================
   お仕事を探すのボタン
======================================== */
.btn-job {
    display: inline-block; 
    background-color: var(--color-main-blue); 
    color: #fff; 
    padding: 8px 50px 8px 25px; 
    border-radius: 30px; 
    font-size: 14px; 
    font-weight: bold; 
    transition: 0.3s;
    position: relative; 
}

.btn-job:hover { 
    background-color: #388cbd; 
    transform: translateY(-2px); 
}

.btn-job::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px; 
    transform: translateY(-50%); 
    
    width: 18px;  
    height: 18px; 
    background-color: #fff; 
    border-radius: 50%;     
}

.btn-job::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px; 
    transform: translateY(-50%);
    
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--color-main-blue); 
}

/* ========================================
   フッターエリア
======================================== */
.footer {
    position: relative; 
    width: 100%;
    overflow: hidden;
}
.wave-bottom-wrapper { 
    line-height: 0; 
    width: 100%; 
}
.wave-bottom { 
    width: 100%; 
} 

.copyright {
    position: absolute; 
    bottom: 30px;       
    left: 50%;          
    transform: translateX(-50%); 
    
    font-size: 12px;
    color: var(--color-text); 
    width: 100%;
    text-align: center;
    z-index: 10;        
}
/* ========================================
   ページトップへ戻るボタン
======================================== */
.page-top-btn {
    position: fixed; 
    bottom: 20px;    
    right: 20px;      
    width: 60px;     
    z-index: 90;     
    transition: 0.3s;
}
.page-top-btn:hover {
    transform: translateY(-5px); 
    opacity: 0.8;                
}

.mobile-menu-btn {
    display: none; 
}

/* =======================================
   タブレット用の設定（画面幅769px 〜 1100px）
======================================= */
@media screen and (min-width: 769px) and (max-width: 1100px) {
    .hero-inner {
        width: 1100px !important; 
        max-width: none !important;
        margin-left: calc(50vw - 550px) !important; 
        transform: scale(calc(100vw / 1100)); 
        transform-origin: top center; 
    }
}

/* =======================================
   ここから下はスマホ用の設定（画面幅768px以下）
======================================= */
@media screen and (max-width: 768px) {
    .header-inner {
        display: flex;
        justify-content: space-between; 
        align-items: center; 
        padding: 10px 15px; 
    }
    .header-action {
        display: none; 
    }

    .global-nav {
        position: absolute; 
        top: 100%;          
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95); 
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); 
        
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
        transform: translateY(-10px); 
    }

    .global-nav.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 30px 0;
        gap: 30px; 
    }
    .nav-item a {
        font-size: 14px; 
    }

    .mobile-menu-btn span { transition: 0.3s; }
    .mobile-menu-btn p { transition: 0.3s; }
    
    .mobile-menu-btn.is-active span:nth-of-type(1) { transform: translateY(6px) rotate(45deg); }
    .mobile-menu-btn.is-active span:nth-of-type(2) { opacity: 0; }
    .mobile-menu-btn.is-active span:nth-of-type(3) { transform: translateY(-6px) rotate(-45deg); }
    .mobile-menu-btn.is-active p { opacity: 0; }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        background-color: var(--color-main-blue); 
        cursor: pointer;
    }
    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: #fff;
        margin-bottom: 4px;
    }
    .mobile-menu-btn p {
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        margin: 0;
        margin-top: 2px;
    }

    .hero-wrapper {
        padding-top: 40px; 
        padding-bottom: 50px; 
    }

    .hero-inner {
        flex-direction: column; 
        padding-top: 0px; 
    }

    .hero-text {
        width: 100%;
        padding-left: 15px; 
        padding-right: 15px;
        margin-top: -10px; 
    }
    .hero-catch {
        font-size: 20px; 
    }
    .hero-catch::after {
        width: 320px; 
        left: 5px;
    }
    .hero-lead {
        margin-left: 5px;
    }

    .hero-images {
        width: 100%;
        height: 250px; 
        margin-top: 30px; 
    }

    .hero-img-main {
        width: 210px;   
        height: 210px;
        right: 20px;   
        top: -20px;
    }
    .hero-shadow-blue {
        width: 210px;   
        height: 210px;
        right: 10px;    
        top: -15px;
    }

    .hero-img-sub {
        width: 160px;
        height: 160px;
        left: 40px;    
        bottom: 10px;  
        z-index: 4;
    }

    .deco-pink { 
        width: 55px; 
        top: 80px;    
        left: 20px;   
    }
    .deco-blue { 
        width: 60px; 
        top: -30px;    
        right: 15px;  
    }
    .deco-yellow { 
        display: block; 
        width: 70px;    
        bottom: 80px;  
        left: 210px;    
    }

    .wave-top {
        top: 250px; 
    }

    .page-top-btn {
        width: 45px;   
        right: 15px;   
        bottom: 15px;
    }

    .sec-about {
        margin-top: -100px; 
    }
    .sec-header {
        margin-bottom: 15px; 
    }

    .sec-title {
        font-size: 20px; 
    }
    .sec-en {
        font-size: 12px; 
    }

    .about-intro {
        font-size: 12px;   
        line-height: 1.8;  
        padding: 0 15px;   
        margin-bottom: 30px;
    }

    .about-card {
        flex-direction: column; 
        padding: 20px;          
        gap: 20px;              
    }

    .about-card-text, 
    .about-card-img {
        width: 100%; 
    }

    .about-card-text h3 {
        font-size: 20px;
    }

    .sec-data .inner {
        padding-top: 20px; 
        padding-bottom: 40px; 
    }

    .recruit-gallery {
        flex-direction: column; 
        gap: 40px;              
    }
    .job-card {
        width: 100%; 
    }

    .footer {
        overflow: hidden; 
    }
    .wave-bottom {
        width: 150%;       
        max-width: none;
        margin-left: -25%; 
    }

    .copyright {
        bottom: 13px;    
        font-size: 10px; 
    }
    
    .data-content {
        display: flex;
        flex-direction: column; 
        align-items: center;    
        gap: 40px;              
    }

    .data-box {
        width: 100%; 
        max-width: 400px; 
    }
    .nav-item-sp {
        display: block;
    }
}

/* ========================================
   セカンドページの共通タイトルエリア
======================================== */
.page-header {
    background-color:#dfedf5;
    padding-top: 25px;    
    padding-bottom: 10px; 
    text-align: center;
    margin-bottom: 100px;
}
/* ========================================
   セカンドページのタイトル文字
======================================== */
.page-header .sec-title {
    font-size: 32px; 
    color: var(--color-text); 
    letter-spacing: 0.1em; 
}

.page-header .sec-en {
    font-size: 16px; 
    color: var(--color-main-blue); 
    margin-top: 0px; 
    letter-spacing: 0.2em; 
}
/* ========================================
   セカンドページ：最初の一文（リード文）
======================================== */
.lead-text {
    text-align: center; 
    font-size: 16px;    
    line-height: 2;     
    color: var(--color-text); 
    margin-top: -60px;     
    margin-bottom: 60px; 
}