@charset "utf-8";

@import url("common.css");
@import url("article.css");

/*--------------------
Reset
--------------------*/
/* * {text-transform:lowercase;} */
/* *::first-letter {text-transform:capitalize;} */
/* .text-lower::first-letter {text-transform:lowercase;} */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
li {
    list-style: none;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}
img,video {
    vertical-align: bottom;
}
img {
   image-rendering: auto; 
  /* image-rendering: -webkit-optimize-contrast; */
  width:100%;
  height: auto;
  display: block;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
}
input, button, select, textarea {
   vertical-align:middle;
   font-family: inherit;
   font-size: inherit;
}
*,
*::before,
*::after {
   box-sizing: border-box;
}


:root {
  --blue: #1e5a9f;

    /* background: var(--blue); */
}



/* flex */
.flex {
    display: flex;
}

.column {
    display: flex;
    flex-direction: column;
}

/* SP WINDOW */
@media (max-width: 768px) { 
    .pc {
        display: none;
    }

    .spflex {
        display: flex;
    }
    .spcolumn {
        display: flex;
        flex-direction: column;
    }
}

/* PC WINDOW */
@media (min-width: 769px) { 
    .sp {
        display: none;
    }

    .pcflex {
        display: flex;
    }
    .pccolumn {
        display: flex;
        flex-direction: column;
    }
}

/* WINDOW SIZE */
.wd {
    width: calc(100% - 90px);
    max-width: 1220px;
    margin-right:auto ;
    margin-left: auto;
}

/* SP */
@media (max-width: 768px) {
    .wd {
    width: 90%;
    margin-right:auto ;
    margin-left: auto;
}
}


body {
    color: #000000;
    font-family: "Montserrat", "hiragino-kaku-gothic-pron",  sans-serif;;
    font-weight: 400;
    font-size: 16px;
    overflow: visible;
    /* background-image: url(../img/back.png); */
    background-size: cover;
    background-attachment: fixed;
}

html, body {
  overscroll-behavior: none; 
}

@media (max-width: 1200px) {
    body{
        width: 1200px;
    } 
}

@media (max-width: 768px) {
    body{
        width: 100%;
    }
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: #000000;
    transition: all 0.3s ease-in-out;
}

a:hover {
    opacity: 0.5;
}

.hv_big:hover {
    transform: scale(1.05);
}






/* ローディング */
/* loading-screen 全体 */
.loading-screen {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.6s ease 0.3s;
}

/* ローディング文字（灰色） */
.text-sequence-loader-preview {
    font-weight: 700;
    font-size: 40px;
    color: #aaaaaa;
    font-family: "Arial", sans-serif;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: opacity 0.4s ease;
}


.text-sequence-loader-preview span {
    display: inline-block;
    opacity: 0;
    animation: text-appear-animation 0.5s forwards ease-out;
}

@keyframes text-appear-animation {
    to { opacity: 1; }
}


/* ▼ 青い背景（文字より上） */
.loading-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(0);
    z-index: 2;
    transition: opacity 0.6s ease;
    background-color: var(--blue);
}

body.home .loading-screen::after {
    background: none;
    background: linear-gradient(135deg, #667eea 0%, #4b54a2 100%);

}



/* 青フェードイン */
.loading-screen.show-blue::after {
    opacity: 1;
}

/* 青スライド */
.loading-screen.slide-blue::after {
    transform: translateX(100%);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}


@keyframes blueCurtainMove {
    0% { transform: translateX(0); }
    70% { transform: translateX(85%); }
    100% { transform: translateX(100%); }
}


/* 🔸 青がスライドし始める時は中身を非表示 */
.loading-screen.slide-blue .text-sequence-loader-preview {
    opacity: 0;
}

/* 🔸 青スライド時には白背景も消す */
.loading-screen.slide-blue {
    background: transparent;
}

/* 最後に全体消す */
.loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}












/* 背景動画 */
.bg-video {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    min-width: 1200px;

    filter: brightness(0.7);
}

/* 切れないようにサイズを強制調整 */
.bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* 16:9 の最大拡大値 */
    width: 177.78vh;  /* 100vh × 16/9 */
    height: 101vh;
    
    /* 逆パターンに備える：横が狭いスマホ */
    min-width: 100vw;
    min-height: 56.25vw; /* 100vw × 9/16 */

    pointer-events: none; /* 背景として扱う */
    margin-top: -1px;
}


body .bg-video {
    width: 105%;
    height: auto;
    transform: scale(1.05);
    transition: transform 4s ease, width 4s ease;
}

body.home .bg-video {
    width: 110%;
    height: auto;
    transform: scale(1.4);
    transition: transform 3.8s ease, width 3.8s ease;
}

.bg-video.ready,
body.home  .bg-video.ready {
    transform: scale(1);
    width: 100%;
}



@media (max-width: 768px) {
    .bg-video {
        min-width: 100%;
    }
}


main {
    font-size: 1rem;
}

p {
    /* letter-spacing: 0.09rem; */
    line-height: 1.6;
}




.hv {transition: transform 300ms ease;}
.hv:hover {transform: scale(1.05);}








/* スクロールイン */
/* 下からフェードイン */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
     transition-delay: 0.3s;
}

/* フェードイン */
.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.reveal-fade.visible {
    opacity: 1;
     transition-delay: 0.1s;
}



/* 黒スライド（フェードなし） */
.reveal-dark {
    position: relative;
    opacity: 1;              /* ← 最初から見えている */
    transform: none;         /* ← 動かない */
    overflow: hidden;
}

/* 黒幕 */
.reveal-dark::before {
    content:"";
        width: 100%;
    height: 100%;
    position:absolute;
    inset:0;
    background:#000;
    transform:translateX(0);    /* ← 要素を覆っている状態 */
    z-index:2;
    transition: transform 0.6s cubic-bezier(0.8, 0, 1, 1) 0.2s; /* ← 0.4秒待って開始 */
}

/* スクロールインで黒幕だけ右に消える */
.reveal-dark.visible::before {
    transform: translateX(100%);
}




/* 青スライド（フェードなし） */
.reveal-blue {
    position: relative;
    opacity: 1;             /* ← 最初から見えている */
    transform: none;
    overflow: hidden;
}

/* 青幕 */
.reveal-blue::before {
    content:"";
    position:absolute;
    width: 100%;
    height: 100%;
    inset:0;
    background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform:translateX(0);
    z-index:2;
    transition: transform 0.6s cubic-bezier(0.8, 0, 1, 1) 0.2s; /* ← 0.4秒待ってから開始 */
}

body.sub .reveal-blue::before {
    background: var(--blue);
}

/* スクロールインで青幕だけ右に消える */
.reveal-blue.visible::before {
    transform: translateX(105%);
}



/* ▼ 画像の縮小アニメーション -------------------------------- */

/* 初期状態：少し大きい */
.zoom-img img {
    width: 100%;
    transform: scale(1.15);       /* ← 15%拡大した状態 */
    transition: transform 4.1s cubic-bezier(0.2, 0.7, 0.3, 1);
    transform-origin: center center;
}

/* visible で通常サイズへ */
.zoom-img.visible img {
    transform: scale(1.0);
}


.scroll {
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    writing-mode: vertical-rl;
    color: #ffffff;
    display: flex;
        justify-content: center;
    flex-direction: row-reverse;
    align-items: center;
    gap: 1.5rem;
        font-size: 0.8rem;
    letter-spacing: 0.15rem;
}

.scroll:before {
    content: "";
    display: block;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0) 100%);

}


/* TOP メインビジュアル */
.mv {
    color: #ffffff;
    padding-top: 190px;
    padding-bottom: 3rem;
    position: relative;
}


.mv strong {
    font-size: 6rem;
    font-weight: 600;
    display: block;
    line-height: 1.1;
}

.mv span {
    font-size: 1.7rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.8em;
}

.mv small {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}

.mv p {
    padding-top: 2em;
    margin-bottom: 4rem;
}

.mv .mv_link {
    justify-content: space-between;
    align-items: flex-end;
}

.mv a {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    max-height: 85px;
    padding: 0.6rem 2.5rem;
    background: #ffffff;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
    border: solid 2px #000000;
}
.mv a img {
    width: 50px;
    height: 50px;
}
.mv a:hover {
    opacity: 1;
}

.mv_img {
    width: 100%;
    height: 255px;
}

.mv_img img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.mv_img img:nth-child(2) {
    object-position:center 34%;
}


/* MVアニメ初期状態 */
.mv-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.mv-anim.show {
    opacity: 1;
    transform: translateY(0);
}





/*.  TOP メインビジュアル SP */
@media (max-width: 768px) {
.scroll {
    display: none;
}
    .mv {
        padding-top: 15vh;

    }

    .mv strong {
        font-size: 2rem;
        font-weight: 600;
        width: 70%;
        margin-right: auto;
        margin-left: auto;
        letter-spacing: 0.3rem;
        margin-bottom: 1rem;
    }

    .mv span {
        width: 70%;
        margin-right: auto;
        margin-left: auto;
        font-size: 1.1rem;
    }

    .mv small {

        width: 70%;
        margin-right: auto;
        margin-left: auto;
        font-size: 1rem;
    }

    .mv span.mvtit {
        width: 100%;
        margin-bottom: 0;
        text-align: center;
    }

    .mv p {
        text-align: center;
        padding-top: 10px;
        font-size: 15px;
    }

    .mv .mv_link {
        width: 70%;
        margin-right: auto;
        margin-left: auto;
    }
        .mv .mv_link div {
            width: 100%;
        }

    .mv .mv_link a {
        width: 100%;
        justify-content: center;
    }

    .mv_img {
        height: fit-content;
    }

    .mv_img img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: top;
    }

    .mv_img img:nth-child(2) {
        object-position:center 34%;
    }
}

/* TOP CULTURE */
.top_culture {
    padding: 3rem 0;
    color: #ffffff;
    background:     
    linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.81) 30%,
     rgba(0, 0, 0, 0.91));

}

.top_culture h3 {
    max-width: 640px;
        font-size: 4.5rem;
        font-weight: 500;
    text-align: center;
}

.top_culture h3 small {
    display: block;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.top_culture strong {
    max-width: 640px;
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1rem;
}


.top_culture p {
    max-width: 640px;
    margin-bottom: 3rem;
}

.top_culture h4 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

ul.culture_media_list {
    max-width: 800px;
    justify-content: space-between;
}

ul.culture_media_list li {
    width: 170px;
}

ul.culture_media_list li a:hover {

}

a.news_back {
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--blue);
    width: fit-content;
    margin: 0 auto 1.5rem;
}

a.news_back i {
    font-size: 1.3rem;
    transition: all 0.3s ease-in-out;
}

a.news_back:hover i {
    transform: translate(-6px,0);
}





/* TOP CULTURE SP */
@media (max-width: 768px) {
    .top_culture {
        padding-bottom: 2rem;
        
    }

    .top_culture h3 {

    }

    .top_culture h3 small {
        font-size: 0.9rem;
    }

    .top_culture strong {
        font-size: 1rem;
    }
    .top_culture p {
        font-size: 14px;
    }

    ul.culture_media_list {
        gap: 1rem;
        flex-wrap: wrap;

    }
    ul.culture_media_list li {
        width: calc(50% - 0.5rem);

    }


}



/* TOP NEWS */
.top_news {
    background: #373737;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.top_news div:not(.top_news div div) {
    background: #ffffff;
    border-radius: 5px;
    width: 360px;
    height: 680px;
    padding: 1rem;
}

.top_news div h4 {
    font-size: 2.7rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.top_news div a {
    margin-bottom: 0.8rem;
}

.top_news div.news a p {
overflow: hidden;          /* 溢れた部分を隠す */
  text-overflow: ellipsis;   /* 溢れた部分を「...」にする */
  white-space: nowrap;       /* 1行で表示 */
}

.top_news div.news a.page_more {
    margin: auto auto 1rem;
    background: #000000;
    color: #ffffff;
    font-size: 0.9rem;
    width: fit-content;
    padding: 0.8rem 2rem;
    border-radius: 10px;
}

.top_news div.youtube a img {
    margin-bottom: 0.5rem;
}

.top_news div.youtube a {
    margin-bottom: 1.5rem;
}
.top_news div.youtube a p {
    line-height: 1.4;
}

.top_news div.tiktok div {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.7rem;
}

.top_news div.tiktok div a {
    width: calc(50% - 0.4rem);
}

/* TOP NEWS SP */
@media (max-width: 768px) {
    .top_news div:not(.top_news div div) {
        width: 90%;
        height: fit-content;
        margin-right: auto;
        margin-left: auto;
    }

    .top_news div.news a.page_more {
        margin-top: 1rem;
    }

}


/* TOP WORKS */
.top_works {
    background: #ffffff;
    padding: 2.5rem 0 4rem;
}
.top_works h3 {
    text-align: left;
    font-weight: 600;
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.top_works div.team {
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
}

.top_works div.team.rv {
    flex-direction: row-reverse;
    
}
.top_works div.team .imgarea {
    width: 670px;
    height: 520px;
    overflow: hidden;
    border-radius: 10px;
}

.top_works div.team img {
    width: 670px;
    height: 520px;
    object-fit: cover;
    filter: brightness(0.7);
    border-radius: 10px;
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
}

.top_works div.team h4 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.top_works div.team.rv h4 {
    text-align: left;
    padding-left: 1em;
}

.top_works div.team p {
    font-weight: 600;
    margin-bottom: 2rem;
}

.top_works div.team a {
    background: #000000;
    color: #ffffff;
    font-size: 0.9rem;
    width: fit-content;
    padding: 0.8rem 2.5rem;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
    align-items: center;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.top_works div.team a:hover {
    box-shadow: none;
     transform: translate(20px, 20px);
     opacity: 1;
}


.top_works .member {
    background: #f5f5f5ff;
    border-radius: 10px;
    padding: 2.5rem;
}

.top_works .member h4 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.top_works .member div.member_list {
    gap: 2.5rem;
    justify-content: space-between;
}

.top_works .member div.member_list div {
    width: 32%;
}

.top_works .member div.member_list div img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}
.top_works .member div.member_list div:first-child img {
    object-position: center;
}

.top_works .member div.member_list div h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.top_works .member div.member_list div p {
    font-size: 0.9rem;
    font-weight: normal;
}


/* TOP WORKS SP */
@media (max-width: 768px) {
    .top_works {
        background: #ffffff;
        padding: 2.5rem 0 2rem;
    }

    .top_works h3 {
        font-size: 1.5rem;

    }

    .top_works div.team {
        gap: 1.5rem;
        margin-bottom: 3rem;

    }
    .top_works div.team.rv {
        flex-direction: column;
    }

    .top_works div.team .imgarea {
        width: 100%;
        height: auto;
        aspect-ratio: 670 / 400;
        overflow: hidden;
        border-radius: 10px;
    }



    .top_works div.team .imgarea img {
        width: 100%;
        height: auto;
        aspect-ratio: 670 / 400;
    }

    .top_works div.team h4 {
        font-size: 1.5rem;   
        margin-bottom: 1rem; 
    }

    .top_works div.team p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .top_works .member {
        width: 100%;
        border-radius: none;
        padding: 2rem;
    }

    .top_works .member div.member_list {

        gap: 1.5rem;

    }

    .top_works .member div.member_list div {
        width: 100%;
    }

    .top_works .member div.member_list div img {
        order: 999;
        width: 100%;
        height: auto;
        aspect-ratio: 400 / 230;
    }
    .top_works .member div.member_list div p {
        margin-bottom: 1rem;

    }
}


/* TOP COMPANY EXP */
.top_company_exp {
    background: rgba(0, 0, 0, 0.5);
    padding:6rem 0;
    color: #ffffff;
}

.top_company_exp h3 {
    font-size: 2rem;
    text-align: left;
    font-weight: 600;
}


.top_company_exp div {
    justify-content: space-between;
    align-items: center;
}

.top_company_exp div a {
    width: fit-content;
    background: #ffffff;
    color: #000000;
    padding: 0.8rem 3rem;
    align-items: center;
    border-radius: 10px;
    font-weight: 600;
}

.top_company_exp div a:hover {
    transform: translate(20px, 20px);
    opacity: 1;
}


/* TOP COMPANY EXP SP */
@media (max-width: 768px) {

.top_company_exp {
    padding: 3rem 0;
}

.top_company_exp h3 {
    font-size: 1.3rem;
}

.top_company_exp div p {
    margin-bottom: 2rem;

}

}

/* TOP VOICE */
.top_voice {
    background: #f5f5f5ff;
    padding: 3rem 0;
}
.top_voice h3 {
    font-size: 2.3rem;
    margin-bottom: 4rem;
    text-align: center;
}
.voice_wrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 4rem;
}

.voice_wrap::-webkit-scrollbar {
    display: none;
}

.voice_list {
    width: fit-content;
    gap: 1rem;
}

.voice_art {
    width: 380px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    gap: 1rem;
}

.voice_art .name {
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.voice_art .name img {
    width: 60px;
    height: 60px;
    border-radius: 9999px;
    object-fit: cover;
}

.voice_art .name h4 {
    font-size: 1rem;
}

.voice_art .name h4 small {
    font-size: 0.8rem;
    font-weight: normal;
    display: block;
}


.voice_art p {
    font-size: 0.9rem;
}

.voice_art p.job {
    min-height: calc(1.6em * 5) ;
}



.voice_art:first-child {
     margin-left: calc((100vw - 1220px) / 2);
}

.voice_art:last-child {
    margin-right: 40px;
}

.top_voice div.sc {
    text-align: right;
    justify-content: flex-end;
    align-items: center;
}
.top_voice .sc small {
    font-size: 0.9rem;
 }
.top_voice .sc i {
    font-size: 1.1rem;
    margin-left: 0.5rem;
    margin-bottom: 3px;
}

@media (max-width: 1400px) {
    .voice_art:first-child {
        margin-left: 45px;
    }
}

/* TOP VOICE SP */
@media (max-width: 768px) {

    .top_voice {
        padding: 2rem 0;
    }

    .top_voice h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .voice_wrap {
        margin-bottom: 2rem;
    }
    .voice_art {
        width: 70vw;
        padding: 1rem;
        gap: 0.6rem;
    }
    .voice_art p {
        font-size: 0.8rem;
        line-height: 1.5;
    }


    .voice_art:first-child {
        margin-left: 5vw;
    }
    .voice_art:last-child {
    margin-right: 5vw;
    }

}




/* TOP interview */
.top_interview {
    background: #ffffff;
    padding: 3rem 0;
}
.top_interview h3 {
    font-size: 2.3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.interview_wrap {
    gap: 2rem;
    justify-content: space-between;
}

.interview_art {
    width: 33%;
}

.interview_art a {
    width: 100%;
    gap: 1rem;
}
.interview_art img {
    border-radius: 10px;
    aspect-ratio: 400 / 240;
    object-fit: cover;
}

.interview_art h4 {
    font-size: 1.3rem;
}

.interview_art p {
    font-size: 0.9rem;
}


/* TOP interview SP */
@media (max-width: 768px) {
    .top_interview {
        padding: 2rem 0;
    }
    .top_interview h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .interview_wrap {
        gap: 1rem;
    }
    .interview_art {
        width: 100%;
        gap: 0.5rem;
    }

    .interview_art h4 {
        font-size: 1.1rem;
    }

}


/* TOP RECRUIT */
.top_recruit {
    background: #ffffff;
    padding: 3rem 0;
}

.tp_wrap {
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.tp_wrap div {
    align-items: center;
    gap: 2rem;
}

.tp_wrap div strong {
    font-size: 1.5rem;
    text-align: center;
    display: block;
}

.tp_wrap div a {
    background: #000000;
    color: #ffffff;
    font-size: 0.9rem;
    width: fit-content;
    padding: 0.8rem 2.5rem;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
    align-items: center;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
}

.tp_wrap div a:hover {
    box-shadow: none;
     transform: translate(20px, 20px);
     opacity: 1;
}

.tp_wrap .mvarea {
    width: 730px;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
}

.tp_wrap iframe {
    width: 730px;
    height: 520px;
    border-radius: 10px;
}

/* TOP RECRUIT SP */
@media (max-width: 768px) {

    .top_recruit {
        padding: 0rem 0 3rem;
    }
    .tp_wrap {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .tp_wrap .mvarea {
        width: 100%;
        height: 13rem;
    }

    .tp_wrap iframe {
        width: 100%;
        height: 13rem;
    }
    .tp_wrap div strong {
    font-size: 1.1rem;
    text-align: center;
    display: block;
}



}



/* サブページ */
.wh {
    background: #ffffff;
}

.center {
    text-align: center;
}

body:not(.home) .bg-video img {
   object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;

    filter: brightness(0.7);
}
body:not(.home) .mv {
    padding:180px 0;

}


.more_btn {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    width: fit-content;
    padding: 0.8rem 2.5rem;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
    align-items: center;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
     transition-delay: 0!important;
}

.more_btn:hover {
       box-shadow: none;
     transform: translate(20px, 20px);
     opacity: 1;
     transition-delay: 0!important;
}


@media (max-width: 768px) {
    .more_btn {
        width: 70%;
        padding: 0.8rem 0.5rem;
    }
}


.mv h2 {
}

.mv h2 strong {
    font-size: 4.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mv h2 small {
    font-size: 1.6rem;
    font-weight: 600;
}


body.sub .main {
    padding: 3rem 0;
}

body.sub section h3 {
    font-size: 4rem;
    display: block;
    text-align: center;
    font-weight: 600;
    margin-bottom :1rem;
}

body.sub p.main_txt {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    display: block;
}

@media (max-width: 768px) {
    body.sub section h3 {
        font-size: 2rem;
    }
    body.sub p.main_txt {

    font-size: 1.1rem;
    margin-bottom: 2rem;
    }
}

/* ぱんくず */
.breadcrumb {
    background: #ffffff;
    padding-bottom: 2rem;
}

.breadcrumb ul {
    align-items: center;
    gap: 0.5rem;
}
.breadcrumb ul li {
    font-size: 0.8rem;
    line-height: 1;
    color: var(--blue);
}

.breadcrumb ul li i {
    font-size: 1rem;
    line-height: 1;
}
.breadcrumb ul li a {
    font-size: 0.8rem;
    line-height: 1;
    color: var(--blue);
}

.breadcrumb ul li:first-child a {
    color: #989898;
}


/* SP */
@media (max-width: 768px) {
    body:not(.home) .mv {
        padding: 5rem 0;
    }

.mv h2 strong {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 2%;
    margin-bottom: 0.5rem;
    padding: 0;
}

.mv h2 small {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    margin-left: 2%;
}

}



/* SERVICE */
body.service {}


body.service .bg-video img {

}




body.service .art_shadow {
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 50px 5rem;
    border-radius: 10px;
    gap: 2rem;
    margin-bottom: 7rem;
}

body.service .art_shadow h4 {
    color: var(--blue);
    font-size: 3rem;
}

body.service .art_shadow p.exp_txt {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}


body.service .art_shadow .arts {
    gap: 2rem;
    align-items: center;
}

body.service .art_shadow .arts.rv {
    flex-direction: row-reverse;
}


body.service .art_shadow .arts .zoom-img {
    width: 655px;
    height: 305px;
    border-radius: 10px;
 }

 body.service .art_shadow .arts .zoom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
 }

 body.service .art_shadow .arts h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;

 }
 body.service .art_shadow .arts h5 small {
    display: block;
    color: var(--blue);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
 }

 body.service .art_shadow a.more_btn {
    margin-top: 2rem;
 }

 body.service .alignment {
    align-items: center;
    justify-content: center;
 }

  body.service .alignment div {
    width: calc(100% - 500px);

  }

 body.service .alignment h4 {
    color: #000000;
    text-align: left;
    margin-bottom: 2rem;
 }
  body.service .alignment p {
    font-size: 1.2rem;
    width: 80%;
  }
  body.service .alignment img {
    width: 360px;
    /* border: solid 1px #000000; */
  }
 
/* SERVICE SP */
@media (max-width: 768px) {
    body.service .art_shadow {
        padding: 2rem 1rem;
        box-shadow: 0px 0px 31px rgba(0, 0, 0, 0.2);
        margin-bottom: 3rem;
    }

    body.service .art_shadow h4 {
        font-size: 1.4rem;
    }
    body.service .art_shadow p.exp_txt {
        font-size: 0.9rem;
    }

    body.service .art_shadow .arts {
        gap: 1rem;
    }
    body.service .art_shadow .arts.rv {
        flex-direction: column;
    }
    body.service .art_shadow .arts .zoom-img {
        width: 100%;
        height: auto;
        aspect-ratio: 655 / 305;
    }
    body.service .art_shadow .arts h5 {
        font-size: 1.1rem;
        text-align: left;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 0.7rem;
    }
     body.service .art_shadow .arts h5 small {
        display: inline;
        margin-bottom: 0;
        font-size: 1rem;
        line-height: 1.8;
     }
     body.service .alignment p {
        font-size: 1.rem;
     }

     body.service .alignment div {
        width: 100%;
     }

     body.service .alignment h4 {
        text-align: center;
     }
    body.service .alignment p { 
        text-align: center;
        width: 100%;
        font-size: 1.1rem;
    }
    body.service .alignment img {
        width: 100%;
    }
}



/* NEWS */
body.news {}


.news_main {
    padding: 3rem 0;
}


body.news section h3 {
    color: var(--blue);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

ul.news_categorylist {
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 4rem;
}
ul.news_categorylist li a {
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    padding: 0;
    border-bottom: solid 1px #EEEEEE;
    color: var(--blue);
}

ul.news_list {
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 3rem;
}

ul.news_list li {
    width: calc(33.333% - 1.333rem);
        display: none;
            opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

ul.news_list li.show {
    opacity: 1;
    transform: translateY(0);
}


ul.news_list li a {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
    gap: 0.5rem;
}

ul.news_list li a:hover {
    opacity: 1;
    transform:translate(6px,12px);
    box-shadow: none;
}

ul.news_list li a div {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}
ul.news_list li a div img {
    object-fit: contain;
}

ul.news_list li a span {
    display: flex;
    background: var(--blue);
    color: #ffffff;
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: 9999px;
    width: fit-content;
}

ul.news_list li a h4 {
    width: 100%;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: -webkit-box;             
  -webkit-box-orient: vertical;      /* 垂直方向に配置 */
  overflow: hidden;                  /* 溢れた部分を隠す */
  text-overflow: ellipsis;           /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2;             /* 最大行数を2行に設定 */
}

ul.news_list li a small {
    color: #989898;
    font-size: 0.9rem;
}


.newstitle {
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.newstitle span {
        display: flex;
    background: var(--blue);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 2px 10px;
    border-radius: 9999px;
    width: fit-content;
}

.newstitle small {
    color: #989898;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

body.sub section.news_art h3 {
    text-align: left;
    color: #000000;
    font-size: 2rem;
}


.news_shadow {
    border-radius: 10px;
    padding: 4rem 5rem 6rem;
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 5rem;
}
.news_shadow div.article-body {
    width: 100%;
    max-width: 960px;
    margin-right:auto ;
    margin-left:auto ;
    margin-bottom: 6rem;
}


/* NEWS SP */
@media (max-width: 768px) {
    body.news section h3 {
    color: var(--blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

ul.news_categorylist {
    margin-bottom: 2rem;
}

ul.news_list {
    gap: 1rem;
}

ul.news_list li {
    width: 100%;

}

ul.news_list li a div {
    width: 100%;
    height: auto;
    aspect-ratio: 318 / 180;
}

.newstitle span {
    font-size: 0.8rem;
}
.newstitle small {
    font-size: 0.8rem;
}


body.sub section.news_art h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.news_shadow {
    padding: 1.5rem 1.5rem 3rem;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;

}

.news_shadow div.article-body {
    margin-bottom: 3rem;
}

}

/* company */
body.sub.company .main {
    padding-bottom: 0;

}

.company_all {
    max-width: 900px;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
}
.company_all img {
        width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

p.all_exp {
    max-width: 640px;
    font-weight: bold;
    margin-bottom: 4rem;
}

ul.com_action {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 8rem;
}
ul.com_action li {
    background: #ffffff;
    width: 48%;
    padding: 1rem 1.5rem;
    box-shadow: 35px 30px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

ul.com_action li strong {
    color: var(--blue);
    font-size: 2.3rem;
    display: block;
}
ul.com_action li small {
    font-size: 0.95rem;

}

.com_overview {
    gap: 2rem;
    padding-bottom: 3rem;
}

.com_overview .ovtxt {
    width: 40%;
}

.com_overview .ovtxt h3 {
    text-align: left;
}
.com_overview .ovtxt h3 span {
    font-size: 1.5rem;
    margin-top: 1rem;
    display: block;
}

.com_overview .ovtxt dl {
    flex-wrap: wrap;
    gap: 1.5rem 0;
}

.com_overview .ovtxt dl dt {
    width: 6em;
}
.com_overview .ovtxt dl dd {
    width: calc(100% - 6em);
}
.com_overview .ovtxt dl dt.access,
.com_overview .ovtxt dl dd.access {
    width: 100%;
}

.com_overview .ovtxt dl dd.access {
    margin-top: -10px;
}


.com_overview .ovimg {
    width: 60%;
    max-width: 760px;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
}

.com_overview .ovimg img {
    filter: brightness(0.7);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.com_boss {
    color: #ffffff;
    gap: 3rem;
    margin-bottom: 2rem;
}

.com_boss img {
    width: 640px;
}

body.sub section .com_boss div h3 {
    text-align: left;
    font-size: 3rem;
}

.com_boss div p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.com_boss div a {
    width: 80%;
    padding: 2rem ;
    background: #333333;
    color: #ffffff;
    font-size: 1.2rem;
    justify-content: center;
}

.com_boss div a:hover {
    background: #ffffff;
    color: #333333;
    opacity: 1;

}

.bland_exp {
    background: #000;
    color: #ffffff;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

body.sub section .bland_exp h3 {
    font-size: 2.3rem;
    text-align: left;
}

body.sub section .bland_exp p {
    font-size: 1.1rem;
}

.bland_group {
    color: #ffffff;
}

.bland_group .bg_hd {
    width: 100%;
    padding: 1rem;
    border: solid 3px #ffffff;
}

.bland_group .bg_hd h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;

}

.bg_exp {
    gap: 2rem;
    justify-content: space-between;
    padding: 2rem 0;
}
.bg_exp div:first-child {
    width: calc(100% - 610px);

}

.bg_exp div.reveal-dark {
    width: 610px;
    height: 330px;
    background: #ffffff;
    text-align: center;
}

.bg_exp div.reveal-dark img {
    object-fit: contain;
    object-position: center center;
    width: 90%;
    height: 100%;
    margin-left: 5%;
    
}

.bg_exp h5 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.bg_exp h5 small {
    font-size: 1.2rem;
    display: block;
    font-weight: normal;
}
.bg_exp h5.title_sm {
    font-size: 1.3rem;
}


.bland_purpose {
    background: #000000;
    color: #ffffff;
    padding: 2rem 0;
}

body.sub section .bland_purpose h3 {
    font-size: 3rem;
    font-weight: 600;
}

.bp_hd {
    margin-bottom: 3rem;
}

.bp_hd p {
    font-size: 1.1rem;
    display: block;
    width: 90%;
    margin: 0 auto;
}

.bp_exp {
    gap: 3rem;
    align-items: center;
}

.bp_exp h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.bp_exp div.txt_area {
    width: calc(100% - 610px);
}
.bp_exp p {
    font-size: 1.1rem;
}

.bp_exp div.reveal-dark {
    width: 610px;
    height: 409px;
}

.bp_exp div.reveal-dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.sub.company .breadcrumb {
    background: #000000;
}

/* company SP */
@media (max-width: 768px) {

    .company_all {
        width: 90%;
        height: auto;
        aspect-ratio: 900 / 520;
    }

    .company_all {
        margin-bottom: 2rem;
    }

    p.all_exp {
    max-width: 90%;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    }


    ul.com_action {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    ul.com_action li {
        background: #ffffff;
        width: 100%;
        padding: 1rem 1.5rem;
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
    }

    ul.com_action li strong {
        color: var(--blue);
        font-size: 1.8rem;
        display: block;
    }
    ul.com_action li small {
        font-size: 0.95rem;

    }

    .com_overview {
        flex-direction: column-reverse;
    }
    .com_overview .ovimg {
        width: 100%;
        height: auto;
        aspect-ratio: 400 / 230;
    }

    .com_overview .ovtxt {
        width: 100%;
    }
    .com_overview .ovtxt dl {
    flex-wrap: wrap;
    gap: 1rem 0;
}

.com_boss {
    flex-direction: column-reverse;
}
.com_boss div.zoom-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2.5;
}

.com_boss div.zoom-img img {
    object-position:left ;

}

.com_boss div a {
    width: 100%;
}

body.sub section .bland_exp h3 {
    font-size: 1.7rem;
}

.bg_exp {
    flex-direction: column-reverse;
}

.bg_exp div:first-child {
    width: 100%;

}

.bg_exp div.reveal-dark {
    width: 100%;
    height: auto;
    aspect-ratio: 610 / 330;
}

.bg_exp h5 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;

}
body.sub section .bland_purpose h3 {
    font-size: 1.4rem;
}

.bp_exp {
    gap: 1rem;
    flex-direction: column-reverse;
}

.bp_exp div.txt_area {
    width: 100%;
}

.bp_exp div.reveal-dark {
    width: 100%;
    height: auto;
    aspect-ratio: 610 / 409;
}


}


/* ENTRY */
body.entry section.main {
    padding-top: 6rem;

}

.formwrap {
    background: #ffffff;
    border-radius: 10px;

    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    padding: 4rem 0;
    margin-bottom: 5rem;

}

body.entry section h3 {
    color: #000000;
    font-size: 1.7rem;
    margin-bottom: 2rem;
}
p.entry_exp {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.formwrap form {
    width: 640px;
    margin: 0 auto;
}


.contact-form {
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
}

.contact-form .form-row {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  font-weight: 600;
}

.contact-form .required {
  color: #e53935;
  margin-left: 0.2em;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form input[type="file"] {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  background: #f8f7f6;
}

.contact-form ::placeholder {
  color: #d0d0d0;   /* 好きな色に */
  opacity: 1;       /* Safari対策 */
}


.contact-form textarea {
  resize: vertical;
  height: 150px;
}

.contact-form .file-note {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 12px;
  color: #777;
}

.contact-form .checkbox-row {

    width: 300px;
    margin-right:auto;
    margin-left:auto;
}

.contact-form .checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: normal;
}

.contact-form input[type="checkbox"] {
  width: auto;
}

.contact-form button[type="submit"] {
  border: none;
  background: #000000;
  color: #fff;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  opacity: 0.9;
}


.form-row.resume {
    width: 300px;
    margin-right:auto;
    margin-left:auto;
    margin-top: 2rem;
}
.file-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.file-label {
  position: relative;
  border: 1px dashed #ccc;
  padding: 14px 16px;
  cursor: pointer;
  background: #fff;
}

.file-label:hover {
  background: #f9f9f9;
}

.file-input {
  display: none;
}

.file-text {
  font-size: 14px;
  color: #666;
}






/* ENTRY SP */
@media (max-width: 768px) {

    body.entry section.main {
    padding-top: 2rem;
    }

    .formwrap {
        padding: 2rem 1rem;

        box-shadow: 0px 0px 31px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    }

    body.entry section h3 {
        font-size: 1.1rem;
    }
    p.entry_exp {
        font-size: 0.8rem;
        width: 90%;
        margin: 0 auto 2rem;
    }

    .formwrap form {
        width: 96%;
    }

    .contact-form .checkbox-row {
        width: 80%;
    }

    .form-row.resume {
        width: 80%;
    }


}




/* RECRUIT */
body.sub .recruit p.main_txt {
    font-size: 1.1rem;
}

body.sub section h3 {
    margin-bottom: 3rem;
}

.requirement_list {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 8rem;
}

.requirement_list .rl_art {
    width: calc(50% - 1rem);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 30px 40px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 1.5rem;
}

.rl_art h4 {
    color: var(--blue);
    font-size: 2.2rem;
}

.rl_art strong {
    margin-bottom: 0.5rem;
    display: block;
}
.rl_art p {
    font-size: 0.9rem;
    margin-bottom: 2em;
}

.rl_art a {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    color: #ffffff;
    font-size: 1.1rem;
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
        text-align: center;

}

.recruit_exp {
    width: 100%;
    padding: 4rem 0;
    background-image: url(../img/rec_exp.jpg);
    background-size: cover;
    background-position: right;

}

.recruit_exp strong {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.recruit_exp p {
    font-size: 1.2rem;
}

.recruit_boss {
    padding: 2rem 0 0;
}

body.sub.company.recruit .breadcrumb {
    background: #FFFFFF;
    padding: 2rem 0;
}


/* RECRUIT SP */
@media (max-width: 768px) {
    body.sub .recruit p.main_txt {
        font-size: 0.9rem;
        width: 90%;
        margin: 0 auto 2rem;
    }
    .requirement_list {
        margin-bottom: 4rem;
    }

    .requirement_list .rl_art {
        width: 100%;
    }

    body.sub section h3 {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }

    .rl_art h4 { 
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .rl_art strong {
        font-size: 0.9rem;
    }
    .rl_art p {
        font-size: 0.85rem;
    }

    .com_overview .ovtxt h3 span {
    font-size: 1.5rem;
    margin-top: 1rem;
    display: block;
}

.recruit_exp {
    background-image:
  linear-gradient(
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5)
  ),
  url(../img/rec_exp.jpg);
}

.recruit_exp strong {
    font-size: 1.5rem;
}
.recruit_exp p {
    font-size: 1rem;
}


}

/* RECRUIT 募集要項　*/
body.sub .recruit.requirement p.main_txt {
    max-width: 700px;
}

body.sub .recruit.requirement .imgarea {
    border-radius: 10px;
}
body.sub .recruit.requirement .imgarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.sub section.requirement h3 {
    margin-bottom: 1rem;
    padding: 0;

}


.requirement .com_overview {
    gap :3rem;
    max-width: 1000px;
}

.requirement .com_overview .ovtxt {
    width: calc(100% - 485px);
}

.requirement .com_overview .ovtxt p {
    font-size: 1.1rem;
    line-height: 1.45;
}

.requirement .com_overview .imgarea {
    width: 485px;
    height: 520px;
}

.requirement .com_overview .imgarea img {
    filter: brightness(0.7);
}

.appli {

}

body.sub section.requirement .appli h3 {
    text-align: left;
    font-size: 2.1rem;
}

.appli div {
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.appli div span {
    width: 13em;
    font-size: 1.2rem;
    font-weight: bold;
}

.portrait {
    padding: 3rem;
    gap: 3rem;
    align-items: center;
}

.portrait div {
    width: calc(100% - 620px);

}

body.sub section.requirement .portrait h3 {
    text-align: left;
    font-size: 2.1rem;
}

.portrait .imgarea {
    width: 620px;
    height: 410px;
    border-radius: 10px;
    overflow: hidden;
}

.requirement_main {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.799);
    color: #ffffff;
}

.requirement_main div {
    max-width: 900px;

}

body.sub section.requirement .requirement_main h3 {
    text-align: left;
    font-size: 2.5rem;
}

.requirement_main dl {
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 400;
    gap: 1rem 0;
    align-items: center;
}

.requirement_main dl dt {
    width: 200px;
}

.requirement_main dl dd {
    width: calc(100% - 200px);
}

.re_charm {
    padding: 2rem 0;
    align-items: center;
    gap: 2rem;
}

body.sub section.requirement .re_charm h3 {
        text-align: left;
    font-size: 2.2rem;
}

.re_charm .imgarea {
    border-radius: 10px;
    overflow: hidden;
    width: 620px;
    height: 420px;
}

.re_charm div {
    width: calc(100% - 620px);
}

/* RECRUIT 募集要項　SP */
@media (max-width: 768px) {
    .requirement .com_overview {
        gap: 1rem;
    }
.requirement .com_overview .imgarea,
.portrait .imgarea,
.re_charm .imgarea {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 2.5;
}
body.sub section.requirement h3,
body.sub section.requirement .com_overview h3,
body.sub section.requirement .recruit_exp h3,
body.sub section.requirement .portrait h3,
body.sub section.requirement .requirement_main h3,
body.sub section.requirement .re_charm h3 {
    font-size: 1.7rem;
}

.requirement .com_overview .ovtxt {
    width: 100%;
}

.recruit_exp {
    padding: 2rem 0;
}

.portrait {
    padding: 2rem 0;
    gap: 1rem;
}

.portrait div {
    width: 100%;
}

.requirement_main dl {
    gap: 0;
}

.requirement_main dl dt {
    width: 100%;
    border-bottom:solid 1px #cccccca2;
    padding-bottom: 0.1rem;
    margin-bottom: 0.2rem;
    font-weight: bold;
    font-size: 1.1rem;


}

.requirement_main dl dd {
    margin-bottom: 1rem;
    width: 100%;
    font-size: 1rem;
}

.re_charm div {
    width: 100%;
}
}






/* プライバシーポリシー */
.privacy section .main_txt {

    max-width: 800px;
}

.privacy section p {
    max-width: 800px;
    margin-bottom: 1rem;
}

.privacy section p.top_txt {
    margin-bottom: 2rem;

}

body.privacy section h3 {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}
.privacy h4 {
    font-size: 1.3rem;

}
.privacy ul {
    margin-bottom: 1rem;
}


.privacy ul.dot li {
    list-style: disc;
    margin-left: 2em;
}

.privacy ul.num li {
    list-style: decimal;
    margin-left: 2em;
}


/* RECRUIT 募集要項　SP */
@media (max-width: 768px) {
    body.privacy section h3 {
        font-size: 1.5rem;
        padding: 0.5rem 0 0;
    }

    body.privacy section h4 {
        font-size: 1.1rem;
    }

    .privacy section p,
    .privacy section ul li  {
        font-size: 0.9rem;
    }


}

