@charset "utf-8";

/* ------------------------
共通CSS　navi footer その他
--------------------------- */

body{
    font-family: 'Zen Old Mincho', serif;
    background-color: #8B0005;
}
/* ---レイアウト共通class--- */
.mt_10{
    margin-top: 10%;
}
.mt_20{
    margin-top: 20%;
}
.t_center{
    text-align: center;
}
.font_12{
    font-size: 12px;
}
.font_20{
    font-size: 20px;
}
@media screen and (max-width: 767px) {
    .mt_10{
        margin-top: 10dvh;
    }
    .mt_20{
        margin-top: 15dvh;
    }
}
.content-area{
    background-image: url(../img/common/common-back.jpg);
    background-repeat: repeat;
    background-size: auto;
    padding: 0 0 0 350px;
}


.hero-section{
    height: 100dvh;
    display: grid;
    grid-template-columns: 100%;
    /* grid-template-rows: 80% 20%; */
    grid-template-rows: 100%;
}
.top-hero-section{
    height: 100dvh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 80% 20%;
}
.pc-hero-text{
    width: 45%;
    margin: 2em auto;
    line-height: 2em;
    align-self: center;
    font-size: 12px;
}
.sp-hero-text{
    display: none;
}
.hero-text{
    width: 45%;
    margin: 2em auto;
    line-height: 2em;
    align-self: center;
    font-size: 14px;
}

.inq-hero-text{
    margin: 0 auto;
    padding-top: 10em;
}
.vertical{
    writing-mode: vertical-rl;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.5em;
    line-height: 2em;
    background: none!important;
    min-height: 300px;
    margin-top: 2em;
}
.catch{
    padding-top: 2em;
}
/* .header-inner{
    display: grid;
    grid-template-rows: 100%;
    gap: 10%;
    height: 100%;
    justify-items: center;
} */
@media screen and (max-width: 767px) {
    /* TOPページのhero-section 50% /50% */
    .hero-section{
        height: 100dvh;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 50% 50%;
    }
    .sp-hero-section{
        height: calc(100dvh - 60px);
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 25% 50% 25%;
    }
    .vertical {
        writing-mode: vertical-rl;
        font-size: 12px;
        color: #fff;
        letter-spacing: 0.3em;
        line-height: 2em;
        /* width: 100%; */
        margin: auto;
        display: grid;
        align-content: center;
    }
    .pc-hero-text{
        display: none;
    }
    .sp-hero-text{
        display: grid;
        grid-template-rows: 1fr 1fr;
        background: #8A0104;
        align-items: center;
    }
    .catch{
        padding-left: 4em;
        line-height: 2em;
    }
    .hero-text{
        width: 95%;
        margin: 2em auto;
        line-height: 2em;
        align-self: center;
        font-size: 12px;
    }
}
/* ---各ページのヒーローイメージ--- */

.hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* ---各ページのリンクボタン--- */

/* -----------
navi
------------- */
/* left header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 350px;
    height: 100dvh;
    background: #8B0005;
    padding: 150px 0 0 0;
}
.site-info{
    color: #fff;
    font-size: 12px;
    z-index: 20000;
}
.hero-logo-wrap{
    display: block;
    text-align: center;
    z-index: 20000;
}
.hero-header-logo{
    width: 70%;
}

.logowrap{
    display: grid;
    grid-template-rows: 20% 10% 70%;
    gap: 6%;
    justify-items: center;
    z-index: 20000;
}
@media (min-width: 768px) and (max-width: 1400px) {
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2000;
        width: 200px;
        height: 100dvh;
        background: #8B0005;
        padding: 150px 0 0 0;
    }
}
/* top header */
.sub-header{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2001;
    width: fit-content;
    display: flex;
    justify-content: right;
    align-items: center;
    
}
.s-header-recruit,
.s-header-inquiry{
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
}

.s-header-recruit{
    background-color: #8A0104;
    padding: 1.5em 1em;
}
.s-header-inquiry{
    background-color: #4A0103;
    padding: 1.5em 0.5em;
}

.content-area {
    width: 100%;
    padding: 0 0 0 350px;
}
@media (min-width: 768px) and (max-width: 1400px) {
    .content-area {
        width: 100%;
        padding: 0 0 0 200px;
    }
}
@media screen and (min-width: 768px) {
    .sp-vertical{
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .s-header-recruit,
    .s-header-inquiry{
        font-size: 10px;
        font-weight: bold;
        color: #fff;
        display: inline-block;
    }
    .s-header-recruit{
        background-color: #8A0104;
        padding: 2.3em 1em;
    }
    .s-header-inquiry{
        background-color: #4A0103;
        padding: 2.4em 1em;
    }
    .hero-header-logo{
        width: 40%;
    }
    .content-area {
        width: 100%;
        padding: 0;
    }
    .site-info{
        color: #fff;
        font-size: 12px;
        z-index: 20000;
        align-self: baseline;
    }
    .logowrap{
        display: grid;
        gap: 0;
        justify-items: center;
        z-index: 20000;
        align-items: end;
        margin-top: 20%;
    }
}

/* SP版　ヒーローイメージのパーツのgridレイアウト */
@media screen and (max-width: 767px) {
    .hero-image{
        grid-row: 2/3;
    }
    .sp-vertical{
        grid-row: 3/4;
        width: 100%;
        height: 100%;
        background-color: #8A0104;
        color: #fff;
        text-align: center;
        align-content: center;
        font-size: 16px;
    }
}




@media screen and (max-width: 767px) {
    
    /* PCのナビ全体を非表示 */
    .main-header {
        display: none; 
    }
    .pc-hamburger {
        display: none !important;
    }
    
    /* 1. sub-headerをSPの固定トップバーとして上書き */
    .sub-header {
        display: flex; /* 横並びにする */
        position: fixed;
        top: 0;
        left: 0; 
        right: auto;
        width: 100%;
        height: 60px; /* バーの高さ */
        background-color: #8A0104; /* 黄色枠の背景色 */
        z-index: 20001;
        
        /* ボタンとリンクを配置 */
        justify-content: end; 
        align-items: center;
        
        /* 💡 sub-header内の要素がボタンとリンクのみになるように調整が必要です */
    }

    /* 2. SP専用ボタンを sub-header の左上に固定する（sub-header内での固定） */
    /* ただし、sub-headerが fixed なので、子要素を fixed にすると画面全体に固定されます。
       ここは sub-header の flex 配置を利用すべきです。
    */
    .sp-hamburger {
        /* position: static に戻し、flex の子要素として扱う */
        position: static; 
        display: flex !important; /* display: none; から上書き */
        z-index: auto;
        height: 100%; /* sub-headerの高さに合わせる */
        padding-left: 10px; /* 左端に少し余白 */
        padding-right: 10px;
        align-items: center;
        z-index: 30000;
    }

    /* 3. mobile-menu の display を block/flex に戻す */
    .mobile-menu {
        display: flex !important; 
        z-index: 2000; /* アイコン(3001)より下 */
        /* ... その他の fixed 設定は維持 ... */
    }

    /* 4. コンテンツエリアにパディングを追加 */
    .content-area {
        background-image: url(../img/common/common-back.jpg);
        background-repeat: repeat;
        background-size: auto;
        /* padding-top: 60px; sub-headerの高さ分 */
        margin-top: 60px;/* sub-headerの高さ分 */
        padding-left: 0;
       
    }
}
/* -----------
ハンバーガーメニュー
------------- */

/* header.main-header内にボタンがあるため、relativeにしておくと良い */


.hamburger-btn {
    /* メニューの位置を、アップロードされた画像のように左上隅に固定する */
    position: fixed; 
    top: 20px;
    left: 20px;
    width: 50px; /* サイズを少し大きく */
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001; /* メニューよりさらに手前に */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px 0;
}

/* .hamburger-btn:focus {
    outline: 2px solid #fff; /* アクセシビリティのためにフォーカスは残す
} */

.hamburger-line {
    display: block;
    width: 100%;
    height: 1.3px; /* 線の太さ */
    background-color: #e4c5c6;/* デフォルトの線の色（黒など） */
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease; /* アニメーション */
    border-radius: 2px;
}

/* メニューが開いたとき（.is-openクラスが付与されたとき）のアイコンアニメーション */
.hamburger-btn.is-open .hamburger-line:nth-child(1),
.sp-hamburger.is-open .hamburger-line:nth-child(1)
{
    transform: translateY(10px) rotate(45deg); /* 2本目の線の位置に移動して45度回転 */
}

.hamburger-btn.is-open .hamburger-line:nth-child(2),
.sp-hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0; /* 2本目の線を非表示 */
}

.hamburger-btn.is-open .hamburger-line:nth-child(3),
.sp-hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg); /* 2本目の線の位置に移動して-45度回転 */
}

/* メニューが開いたとき、アイコンの色を背景色に合わせて白に変える */
.hamburger-btn.is-open .hamburger-line,
.sp-hamburger.is-open .hamburger-line
 {
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .hamburger-btn,
    .sp-hamburger {
        position: fixed;
        top: 0px;
        left: 20px;
        width: 30px;
        height: 50px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2001;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 10px 0;
    }
}

/* ====================================== */
/* 全画面モバイルメニュー (.mobile-menu) */
/* ====================================== */

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh; /* 画面全体の高さ */
        background-color: #8B0000; /* 画像を参考に濃い赤に設定 */
        color: #fff;
        z-index: 2000; /* アイコンのすぐ後ろ */
        opacity: 0; /* アニメーションのため透明に */
        visibility: hidden; /* デフォルトで非表示 */
        transition: opacity 0.4s ease, visibility 0.4s ease;
        
        /* メニューコンテンツの配置 */
        display: grid; 
        flex-direction: column;
        align-items: flex-start; /* 左寄せ */
        padding: 80px 40px; /* メニューアイコンとの重なりを避けて内側に余白 */
        /*overflow-y: auto;  メニューが多い場合にスクロール可能に */
    }


.mobile-menu.is-open {
    opacity: 1; /* 表示 */
    visibility: visible;
}

@media screen and (max-width: 767px) {
    .mobile-menu.is-open {
        opacity: 1; /* 表示 */
        visibility: visible;
        align-items: center;
        justify-content: center;
    }


        .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh; /* 画面全体の高さ */
        background-color: #8B0000; /* 画像を参考に濃い赤に設定 */
        color: #fff;
        z-index: 2000; /* アイコンのすぐ後ろ */
        opacity: 0; /* アニメーションのため透明に */
        visibility: hidden; /* デフォルトで非表示 */
        transition: opacity 0.4s ease, visibility 0.4s ease;
        
        /* メニューコンテンツの配置 */
        display: grid; 
        flex-direction: column;
        align-items: center; /* 中央寄せ */
        padding: 80px 40px; /* メニューアイコンとの重なりを避けて内側に余白 */
        /*overflow-y: auto;  メニューが多い場合にスクロール可能に */
    }
}
/* ナビゲーションリスト全体 */
.mobile-nav {
    margin-top: 50px;
    justify-self: center;
    text-align: center;
}

.mobile-nav-wrap li {
    margin-bottom: 25px;
}

.mobile-nav-wrap a {
    font-size: 14px; /* スマホサイズでのフォントサイズ */
    font-weight: 700;
    display: block;
    padding: 15px 0;
    transition: color 0.2s ease;
}

.mobile-nav-wrap a:hover {
    color: #ffd700; /* ホバー時の色 */
}

.mobile-menu.is-open .logowrap { /* メニューが開いたときのみロゴを表示 */
    display: flex;
    position: static; /* 画面固定を解除し、メニューの流れに合わせる */
    margin-bottom: 30px;
    /* ロゴのスタイルは.mobile-menu内のデザインに合わせて調整が必要 */
}

/* メニューが開いているときにbodyのスクロールを禁止 */
body.no-scroll {
    /* * 修正前: overflow: hidden; 
     * これだとスクロールバーが消え、ガクつく 
     */

    /* 修正後: スクロールバーは表示したままにするが、操作を無効にする方法 */
    overflow-y: scroll; /* スクロールバーを強制的に表示 */
    padding-right: 15px; /* スクロールバーが消える幅分、右にパディングを追加 */
}

/* PC版での調整（ハンバーガーメニューをメインのナビゲーションとして利用する場合） */
@media (min-width: 1024px) {
    /* PCではメニューを中央寄せにしたり、フォントを大きくする */
    .mobile-menu {
        padding: 100px 40px;
        align-items: center; /* PCでは中央寄せ */
        justify-content: center;
    }

    .mobile-nav-wrap a {
        font-size: 1rem; /* PCでのフォントサイズ */
    }
    
    .hamburger-btn {
        top: 30px;
        left: 30px;
        width: 30px;
        height: 50px;
    }
}

@media screen and (max-width: 767px) {
    .mobile-nav-wrap a {
        font-size: 14px;
    }
    .mobile-nav-wrap li {
        margin-bottom: 10px;
    }
    body.no-scroll {
        padding-right: 0!important; 
    }
}
/* ====================================== */
/* 要素の非表示制御 */
/* ====================================== */

/* sub-headerを非表示にする（アニメーションを適用） */
.sub-header.is-hidden {
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* sub-headerにはデフォルトでtransitionを適用しておくとスムーズに消えます */
.sub-header {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sp-hamburger{
    display: none;
}
@media screen and (max-width: 767px) {
    .sp-hamburger{
        display: block;
    }
    .pc-hamburger{
        display: none;
    }
    .sub-header{
        display: none;
    }
    .sp-fixed-top-bar{
        display: flex!important;
        justify-content: right;
        z-index: 30000;
    }
}


/* ------------------------
footer
--------------------------- */
.site-footer{
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 45px;
    background-color: #8B0005;
}

.footer-main {
    display: grid;
    grid-template-columns: 100%;
    gap: 10%;
    margin-left: -350px;
    justify-items: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.8em;
}
.footer-logo{
    text-align: center;
}
.footer-logo-image{
    width: 40%;
}

.copyright{
    font-size: 9px;
    color: #fff;
    /* margin: auto;
    text-align: center; */
}
.header-copy{
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 2%;
}
@media (min-width: 768px) and (max-width: 1400px) {
    .footer-main {
        display: grid;
        grid-template-columns: 100%;
        gap: 10%;
        margin-left: -200px;
        justify-items: center;
        color: #fff;
        font-size: 12px;
        line-height: 1.8em;
    }
}

@media screen and (max-width: 767px) {
   .site-footer {
        width: 100%;
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
        background-color: rgb(86 1 1);
    }
    .footer-main {
        width: 70%;
        height: auto;
        display: grid;
        grid-template-columns: 100%;
        gap: 15%;
        margin: 0 auto;
        justify-items: center;
        color: #fff;
        font-size: 12px;
        line-height: 1.8em;
        padding: 5em 0;
    }
    .footer-logo-image{
        width: 100%;
        max-width: 145px;
    }

} 


/* <!-- ハンバーガーメニュー修正の追加CSS --> */


/* ---------------------------------------------------- */
/* PC/SP 共通ハンバーガーボタン（1つだけ） */
/* ---------------------------------------------------- */
.hamburger-btn {
    position: fixed;
    /* top: 15px;
    left: 15px;
    width: 40px;
    height: 40px; */
    top: 0px;
    left: 15px;
    width: 35px;
    height: 50px;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 50000; /* 何よりも最前面 */
    cursor: pointer;
}
.hamburger-line {
    width: 100%;
    height: 2px;
    background: #e4c5c6;
    transition: .3s ease;
}

/* ✕アニメーション */
.hamburger-btn.is-open .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger-btn.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
.hamburger-btn.is-open .hamburger-line {
    background: #fff;
}

/* ---------------------------------------------------- */
/* mobile-menu（オーバーレイメニュー） */
/* ---------------------------------------------------- */

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: #8B0000;
        color: #fff;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
        z-index: 40000;
        padding: 100px 40px;
        display: grid;
        grid-template-columns: 30% 40% 30%;
        /* align-items: center;
        flex-direction: row; */
    }

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-logo {
    justify-self: baseline;
}
.mobile-menu-logo img {
    width: 140px;
}
.menu-site-info {
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

/* --- SPトップバー --- */
.sp-top-bar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40000;
    display: flex;
}
@media (min-width: 768px) {
    .sp-top-bar { display: none; }
}

/* --- 左サイドバーは完全削除 --- */
/* .pc-sidebar { … } → もう不要！ */


/* ---------------------------------------------------- */
/* PC／SP 表示切替（構造はそのまま） */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .sp-fixed-top-bar { display: none; }
}

@media (max-width: 767px) {
    .main-header { display: none; }
    .sp-fixed-top-bar {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 45000;
        width: 100%;
        height: 60px;
        background: #8a0104;
    }
}

