@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* ヘッダー */
header{
    display: flex; /* ロゴを左、メニューを右に引き離す */
    justify-content: space-between; /* 上下の真ん中で高さを揃える */
    align-items: flex-end; 
    padding: 14px;
    background-color: #ffffff; 
    border-bottom: 1px solid rgb(194, 0, 0);
    box-sizing: border-box;
}

/* ヘッダーロゴ */
.header-logo {
    float: left;
    margin-left: 30px;
}
.header-logo img {
    width: 193px; 
    height: 100px;
}

/* ヘッダーメニュー */
.header-list {
    font-size: 14px;
    margin-top: 0;
}
.header-list ul {
    list-style: none;              /* 黒丸を消す */
    padding: 0;
    margin: 0;
    display: flex;                 /* 横並びにする */
}
.header-list li{
    
    position: relative;
    display: inline-block;
    font-size: 1em;
    margin-left: 30px;
}
.header-list li a {
    color: black;
    font-size: 16px; 
    font-family: "Noto Sans JP", sans-serif; 
    text-decoration: none;
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 6px;       
    position: relative;  /* 赤い線の位置の基準点 */
}
/* 下線を引くアニメーション */
.header-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;                 /*中央に配置 */
    width: 0;                  /* 最初は横幅「ゼロ」で見えなく */
    height: 2px;               /* 線の太さ */
    background-color: #b31b1b; 
    transition: all 0.5s ease; /* 0.5秒かける */
    transform: translateX(-50%); /* 中央から広がるように*/
}
.header-list li a:hover::after {
    width: 100%;               /* マウスが乗ったら伸ばす */
}

/* ボディタイトル */
.page-header{
    text-align: center;
    padding: 50px 0 30px 0;   
}
/*「RECRUIT」*/
.page-title{
    font-size: 32px;
    letter-spacing: 2px;
    color: #000000;
    margin: 0 0 10px 0;
}
/* 「採用情報」 */
.page-subtitle{
    font-size: 14px;
    color: #000000;
    margin: 0;
}
/* 案内テキスト */
.form-lead{
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
}
.border-long {
    border: none;                 /* いま入っている点線をなくす */
    border-top: 1px solid #e0e0e0; /*薄いグレーの一本線 */
    width: 100%;                  /* 横に広げる */
    margin: 40px auto;            /* 線の上下にすき間を作る */
}

.bodybody{
    width: 1080px;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 0 0 0;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
}
/* コンテンツ */
.recruit-container {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    border-radius: 12px;
    background-color: #f6f6f6; 
    background-image: url(logo.jpg); /* ロゴ画像*/
    background-repeat: no-repeat;
    background-position: center 80%;
    background-size: 60%; 
    background-blend-mode: overlay; 
    box-sizing: border-box;
}
/* 透かしの上に被せる薄いグレーの膜 */
.recruit-container::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(246, 246, 246, 0.45); 
    z-index: 1; /* 写真より手前 */
}
/* 各セクションの配置を背景より前にする */
.recruit-section {
    position: relative;
    z-index: 2;  /* グレーより手前にする */
    margin-bottom: 40px; /* セクションごとのすき間 */
}
.recruit-section:last-child {
    margin-bottom: 0;
}
/* 見出し */
h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}
/* 文章 */
.recruit-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}
/*  ul の標準機能をリセットして横並びにする  */
.work-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    padding: 0;         /* ulの左すき間をゼロにする */
    list-style: none;   /* ulの黒丸を消す */
}

/* li を白いカードに仕立てる */
.work-card li {
    background-color: rgba(255, 255, 255, 0.95); 
    border-radius: 16px; 
    padding: 30px 20px;
    width: 31%; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* 影 */
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}
/* カードのホバーアニメーション */
.work-card li:hover {
    transform: translateY(-5px);
}
.work-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 10px 0;
}
.work-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}
.recruit-text-sub {
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
    margin-top: 35px;
}
/* 募集職種 */
.job-tags {
    margin: 20px 0;
}
.job-tag {
    display: inline-block;
    background-color: #ffffff;
    color: #333333;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* 応募フォーム */
form {
    position: relative;
    z-index: 2;
    max-width: 600px;         
    margin: 40px auto 80px auto;
    padding: 40px;
    border: 2px dashed #ccc; /* グレーの点線の枠線 */
}
.form-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
.form-item label{
    width: auto;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
}
/* 入力欄 */
.form-item input[type="text"],
.form-item input[type="tel"],
.form-item input[type="email"],
.form-item select,
form textarea {
    width: 100%;
    max-width: 600px;
    padding: 12px; 
    border: 1px solid #ccc; /* 薄いグレーの実線枠線 */
    border-radius: 6px;  /* 角を丸く */
    font-size: 14px;
    box-sizing: border-box;
}
/* 備考欄 */
.form-textarea{
    height: 120px;
    resize: vertical;
}

/* フッター */
footer {
    width: 100%;   /*横幅100%広げる */
    margin-top: 100px; /* フォームとのすき間 */
    padding: 80px 0 0 0;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

/* 上のエリア */
.footer-ue {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* 均等に並べる */
    padding: 0 20px;
    box-sizing: border-box;
    justify-content: space-around;
}
.footer-list {
    width: 25%;
    box-sizing: border-box;
}
.footer-list h3 {
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    color: #000000;
    font-weight: bold;
}
/* フッター上のメニュー */
.footer-list ul {
    list-style-type: none;
    padding: 0 0 2px 16px;
    margin: 8px 0 0 16px;
    border-left: 1px solid rgb(194, 0, 0);
}
.footer-list li {
    margin-bottom: 10px;
}
.footer-list li a {
    font-size: 14px;         
    color: #000000;
    text-decoration: none;
}
.footer-list li a:hover {  
    opacity: 0.6;              
}


/* 下のエリア */
.footer-sita {
    padding: 40px;
    text-align: center;        
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
    width: 100%;
    box-sizing: border-box;
}

/* 会社名の文字 */
.footer-sita .company-name {
    font-size: 12px;
    color: #000;
    margin: 0 0 5px 0;
}

/* コピーライト（赤文字） */
.footer-sita .copyright {
    font-size: 10px;
    color: #c20000;    
    font-family: "Avenir Next", sans-serif;
    letter-spacing: 1px;
    margin: 0;
}