/* ----------------------------------------------
カラー
----------------------------------------------- */
:root{
    --color-bk: #212121;
    --color-wh: #fff;
    --color-red: #C6001B;
    --color-gray: #F2F2F2;
    --color-gray02: #727283;
    --color-transparent: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------
フォント
----------------------------------------------- */

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Heavy.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Bold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Normal.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Light.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-ExtraLight.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

:root{
    --font-jp: "Source Han Code JP", sans-serif;
    --font-en: "IBM Plex Sans", sans-serif;
}


/* ----------------------------------------------
アニメーション
----------------------------------------------- */

/*1.フェードインアニメーションの指定*/
.scrollanime {
    opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

/*2.アップダウン*/
.updown {
    transform: translateY(-100px);
}
.downup {
    transform: translateY(100px);
}

/*3.スライドイン*/

.slide-right {
    transform: translateX(50px);
}
.slide-left {
    transform: translateX(-50px);
}

.slideUp {
    animation-name: slideUp;
    animation-fill-mode: forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

/*4.フェードイン*/
.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slideAnimeLeftRight {
    animation-name:slideTextX100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
    from {
        transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
    }
    
    to {
        transform: translateX(0);/*要素を元の位置に移動*/
        opacity: 1;
    }
}

.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

/*5.アニメーションの開始を遅らせる*/
.delay01 {
    animation-delay: 0.5s;
}

.delay02 {
    animation-delay: 1s;
}

.delay03 {
    animation-delay: 1.5s;
}

.delay04 {
    animation-delay: 2s;
}

.delay05 {
    animation-delay: 2.5s;
}

/* ----------------------------------------------
PC・SPの切り替え
----------------------------------------------- */
@media screen and (min-width: 769px) {
    .pc{
        display:block;
    }
    
    .sp{
        display: none;
    }

          /* スクロールバーの全体 */
::-webkit-scrollbar {
  width: 8px;
}

/* スクロールバーのトラック部分（背景） */
::-webkit-scrollbar-track {
  background: var(--color-bk);
}

/* スクロールバーのつまみ（ドラッグ部分） */
::-webkit-scrollbar-thumb {
  background: var(--color-wh);
  border-radius: 4px;
}

/* ホバー時 */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox用の細いスクロールバー */
body {
  scrollbar-width: thin;
  scrollbar-color: var(--color-wh) #f1f1f1; /* thumb, track */
}
}

@media screen and (max-width: 768px) {
    .pc{
        display: none;
    }
    
    .sp{
        display: block;
    }
}

/* ----------------------------------------------
コンテンツ
----------------------------------------------- */
body.open{
    position: fixed;
    overscroll-behavior: none;
}


.l-container {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin-inline: auto;
    padding-inline: 40px;
}

.l-container.-small {
    max-width: 1010px;
}


main{
    position: relative;
    overflow: hidden;
}

.bg-bk{
    background: var(--color-bk);
}

.bg-wh{
    background: var(--color-wh);
}

.bg-gray{
    background: var(--color-gray);
}

.bg-gray02{
    background: #3A3A3A;
}

@media screen and (max-width: 768px) {
    .l-container {
        padding-inline: 32px;
    }
    
    main{
        position: relative;
    }
}

/* ----------------------------------------------
header
----------------------------------------------- */
.l-header {
    position: fixed;
    top: 0!important;
    left: 0!important;
    width: 100%;
    height: 100px;
    padding: 0;
    z-index: 9999;
    color: var(--color-wh);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.theme-default {
    color: var(--color-bk);
}

.theme-default .c-btn__primary{
    border-color: var(--color-bk);
}

.theme-default .c-btn__primary span{
    color: var(--color-bk);
}

.theme-default .p-header__logo svg path,
body.wh .p-header__logo svg path{
    fill: var(--color-bk);
}

.recruit .p-header__logo svg path{
    fill: var(--color-wh);
}

.recruit .animation .p-header__logo svg path{
    fill: var(--color-bk);
}

.l-header__wrap01{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.p-header__logo a {
    display: block;
}

.p-header__logo svg{
    width: 100%;
    height: auto;
}

.c-drawer{
    display: none;
}

.p-globalNav__listItem > a{
    display: block;
    font-size: 0.875em;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.05em;
    position: relative;
}

.p-globalNav__listItem > a{
    font-weight: 800;
    letter-spacing: 0;
    font-size: 1.25em;
}

.p-global_submenu{
    font-size: 0.75em;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
    position: relative;
}

.p-globalNav__listItem.blank a::after {
    content: '';
    top: 0.5em;
    right: 0;
    position: absolute;
    vertical-align: middle;
    line-height: 1;
    width: 14px;
    height: 13px;
    background: url(../img/common/link-icon.svg) no-repeat center center / cover;
}

.p-global_submenu.blank::after {
    content: '';
    top: 0.5em;
    right: 0;
    position: absolute;
    vertical-align: middle;
    line-height: 1;
    width: 14px;
    height: 13px;
    background: url(../img/common/link-icon.svg) no-repeat center center / cover;
}

.p-megamenu__left h3{
    font-size: clamp(2.5em,3em,3vw);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.p-globalNav__submenu li a,
.p-globalNav__submenu li span{
    font-size: 1em;
    font-weight: 600;
}

.p-globalNav__submenu li.recruit a,
body.recruit .p-globalNav__submenu li.recruit a{
    color: var(--color-red);
}

.p-globalNav__submenu li.blank a{
    width: 100%;
    position: relative;
    padding-right: 20px;
    display: block;
}

.p-globalNav__submenu li.blank a::after{
    content: '';
    width: 16px;
    height: 14.8px;
    background: url(../img/common/link-icon.svg) no-repeat center center / cover;
    position: absolute;
    top:50%;
    right: 0;
    transform: translateY(-50%);
}

.theme-default .p-globalNav__submenu li.blank a::after{
    background: url(../img/common/link-icon_bk.svg) no-repeat center center / cover;
}

.l-header.animation.theme-default,
body.recruit-page .l-header,
body.wh .l-header,
body.recruit .l-header.animation{
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-bk);
}

.recruit .theme-default .p-globalNav__listItem > a,
.recruit .theme-default .c-btn__primary span{
    color: var(--color-wh);
}

.recruit .p-globalNav__listItem > a.black{
    color: var(--color-bk);
}

.recruit .theme-default .p-globalNav__contactBtn .c-btn__primary{
    border-color: var(--color-wh);
}

.recruit .l-header.animation.theme-default .p-globalNav__listItem > a,
.recruit .l-header.animation.theme-default .c-btn__primary span,
.recruit .l-header .p-globalNav__contactBtn .c-btn__primary.black span{
    color: var(--color-bk);
}

.recruit .l-header.animation.theme-default .p-globalNav__contactBtn .c-btn__primary,
.recruit .l-header .p-globalNav__contactBtn .c-btn__primary.black{
    border-color: var(--color-bk);
}

.recruit .l-header .p-globalNav__contactBtn .c-btn__primary.black{
    border-color: var(--color-bk);
    background: transparent;
    color: var(--color-bk);
}

.recruit .l-header.animation.theme-default .p-globalNav__contactBtn .c-btn__primary:hover span{
    color: var(--color-wh);
}



@media screen and (min-width: 1025px) {
    
    .l-header.animation{
        height: 100px;
        background: rgba(33, 33, 33, 0.8);
    }
    
    .p-header__logo {
        width: calc(79vw / 14.40);
        max-width: 79px;
        position: relative;
        margin-top: 30px;
        margin-left: 72px;
        z-index: 999;
        transition: ease 0.4s;
    }
    
    .p-header__logo.animation{
        width: calc(50vw / 14.40);
    }
    
    .p-globalNav{
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding-top: 30px;
        padding-right: 72px;
    }

    .p-globalNav__contactBtn{
        position: relative;
        top:-5px;
    }
    
    .p-globalNav .c-btn__primary{
        min-width: 150px;
        font-size: 1em;
    }
    
    .l-header__drawerWrap{
        margin-left: auto;
    }
    
    .p-globalNav__listItem{
        position: relative;
        z-index: 3;
    }
    
    .p-header__menu{
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
    }
    
    .p-header__menuItem{
        font-size: clamp(0.68em, 1.2vw, 0.875em);
    }
    
    .p-globalNav__listItem > a,
    .p-globalNav__submenu a,
    .p-globalsubMenu__list a{
        position: relative;
    }


    .p-globalNav__listItem > a.js-menu{
        padding-bottom: 42px;
    }

    .p-globalNav__listItem > a.js-menu::before{
       bottom: 40px;
    }
    
    .p-globalsubMenu__list{
        display: flex;
        flex-direction: column;
        gap: 20px 0;
        margin-top: 20px;
    }
    
    .p-globalsubMenu__list li a{
        font-weight: 400;
        line-height: 1.6;
    }
    
    .p-globalNav__listItem > a:hover,
    .p-globalNav__submenu a:hover{
        opacity: 1;
    }
    
    
    .p-globalNav__listItem > a::before,
    .p-globalNav__submenu a::before{
        content: '';
        background: var(--color-wh);
        width: 0;
        opacity: 0;
        height: 2px;
        left: 0;
        bottom: 0;
        position: absolute;
        transition: width .4s;
    }
    
    .p-globalNav__listItem > a:hover::before,
    .p-globalNav__submenu a:hover::before{
        width: 100%;
        opacity: 1;
    }
    
    .theme-default .p-globalNav__listItem > a,
    .theme-default .p-globalNav__submenu a{
        color: var(--color-bk);
    }
    
    .theme-dark .p-globalNav__listItem > a,
    .theme-dark .p-globalNav__submenu a{
        color: var(--color-wh);
    }
    
    .recruit .l-header .p-globalNav__listItem > a.js-menu::before,
    .recruit .l-header .p-globalNav__submenu a::before,
    .theme-default .p-globalNav__listItem > a.js-menu:hover::before,
    .theme-default .p-globalNav__submenu a:hover::before,
    .recruit-page .p-globalNav__listItem > a.js-menu:hover::before,
    .recruit-page .p-globalNav__submenu a:hover::before,
    .recruit-page .p-globalNav__listItem > a:before,
    .wh .p-globalNav__listItem > a.js-menu:hover::before,
    .wh .p-globalNav__submenu a:hover::before,
    .wh .p-globalNav__listItem > a:before,
    .recruit .animation .p-globalNav__listItem > a::before{
        background: var(--color-bk);
    }

    .recruit-page .p-globalNav__submenu li.blank a::after,
    .wh .p-globalNav__submenu li.blank a::after,
    body.recruit .p-globalNav__submenu li.blank a::after{
        background: url(../img/common/link-icon_bk.svg) no-repeat center center / cover;
    }
    
    .theme-dark .p-globalNav__listItem > a:hover::before,
    .theme-dark .p-globalNav__submenu a:hover::before{
        background: var(--color-wh);
    }
    
    
    .p-globalNav__list01{
        display: flex;
        justify-content: flex-end;
        gap: 0 24px;
    }
    
    .p-globalNav__list01:first-child{
        margin-right: 24px;
    }
    
    .p-globalNav__list01 + .p-globalNav__list01{
        margin-right: 40px;
    }
    
    .p-globalNav__megaMenu{
        opacity: 0;
        transition: ease 0.3s;
        display: flex;
        gap: 0 calc(120vw / 13);
        width: 100vw;
        height: auto;
        position: fixed;
        top:100px;
        left: 0;
        padding: calc(40vw / 13) calc(120vw / 13) 60px calc(120vw / 13);
        z-index: 2;
        visibility: hidden;
        background: transparent;
    }
    
    .p-globalNav__listItem:hover .p-globalNav__megaMenu{
        height: auto;
        opacity: 1;
        top:100px;
        transition: ease 0.3s;
        visibility: visible;
    }
    
    .p-globalNav__bg{
        content: '';
        transition: ease .4s;
        width: 100vw;
        height: 0;
        position: fixed;
        top:0;
        left: 0;
        opacity: 0;
        background: rgba(33, 33, 33, 0.8);
        border-bottom: 1px solid var(--color-wh);
        z-index: 1;
        transition: ease .4s;
    }
    
    .p-globalNav__bg.is-active{
        opacity: 1;
        transition: ease .4s;
    }
    .animation .p-globalNav__bg{
        top:100px;
    }
    
    .theme-default .p-globalNav__bg,
    body.recruit-page .p-globalNav__bg,
    body.wh .p-globalNav__bg,
    body.recruit .p-globalNav__bg{
        background: rgba(255, 255, 255, 0.9);
    }
    
    .p-globalNav__megaMenu .c-arr__icon01.white{
        width: 60px;
        height: 60px;
    }
    
    .p-globalNav__megaMenu .c-arr__icon01::before{
        width: 18px;
        height: 10px;
    }
    
    .p-globalNav__megaMenu .c-btn__secondary{
        font-size: 1.25em;
    }
    
    body.recruit-page .p-globalNav__megaMenu .c-arr__icon01.white,
     .theme-default .p-globalNav__megaMenu .c-arr__icon01.white,
     body.recruit .p-globalNav__megaMenu .c-arr__icon01.white,
     body.wh .p-globalNav__megaMenu .c-arr__icon01.white{
        border-color: var(--color-bk);
    }
    
    body.recruit-page .p-globalNav__megaMenu .c-arr__icon01::after,
    .theme-default .p-globalNav__megaMenu .c-arr__icon01::after,
    body.recruit .p-globalNav__megaMenu .c-arr__icon01::after,
    body.wh .p-globalNav__megaMenu .c-arr__icon01::after{
        background: var(--color-red);
    }
    
    body.recruit-page .p-globalNav__megaMenu .c-btn__secondary:hover .c-arr__icon01.white,
    .theme-default .p-globalNav__megaMenu .c-btn__secondary:hover .c-arr__icon01.white,
    body.recruit .p-globalNav__megaMenu .c-btn__secondary:hover .c-arr__icon01.white,
    body.wh .p-globalNav__megaMenu .c-btn__secondary:hover .c-arr__icon01.white{
        border-color: var(--color-red);
    }
    
    body.recruit-page .p-globalNav__megaMenu .c-arr__icon01::before,
    .theme-default .p-globalNav__megaMenu .c-arr__icon01::before,
    .wh .p-globalNav__megaMenu .c-arr__icon01::before,
    body.recruit .p-globalNav__megaMenu .c-arr__icon01::before{
        background: url(../img/common/btn-arrow01_s_bk.svg) no-repeat center center / cover;
    }
    
    body.recruit-page .p-globalNav__megaMenu .c-btn__secondary:hover .c-arr__icon01::before,
    .theme-default .p-globalNav__megaMenu .c-btn__secondary:hover .c-arr__icon01::before,
    .wh .p-globalNav__megaMenu .c-btn__secondary:hover .c-arr__icon01::before,
    body.recruit .p-globalNav__megaMenu .c-btn__secondary:hover .c-arr__icon01::before{
        background: url(../img/common/btn-arrow01_s_wh.svg) no-repeat center center / cover;
    }
    
    
    .p-globalNav__submenu{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        max-height: 300px;
        gap: 32px calc(80vw / 13);
    }
    
    .p-globalNav__submenu li{
        width: calc(200vw / 13);
        max-width: 200px;
    }
    
    .p-megamenu__left{
        width: calc(350vw / 13);
        min-width: calc(350vw / 13);
        border-right: 1px solid var(--color-wh);
    }
    
    .theme-default .p-megamenu__left,
    body.recruit-page .p-megamenu__left,
    body.wh .p-megamenu__left,
    body.recruit .p-megamenu__left{
        border-right: 1px solid var(--color-bk);
    }

    body.recruit .p-megamenu__left,
    body.recruit .p-globalNav__submenu li span{
        color: var(--color-bk);
    }
    
    .p-globalNav__listItem02{
        display: none;
    }
    
    .theme-default .p-globalNav__contactBtn .c-btn__primary{
        color: var(--color-bk);
        border-color: var(--color-bk);
        background: transparent;
    }
    
    .theme-default .animation .p-globalNav__contactBtn .c-btn__primary{
        color: var(--color-wh);
        border-color: var(--color-wh);
    }
    
    .theme-default .c-btn__primary:hover span{
        color: var(--color-wh);
    }
    
    .theme-default .c-btn__primary::before {
        background: var(--color-bk);
    }
    
    .theme-default .c-btn__primary:hover span,
    body.recruit .p-globalNav__contactBtn .c-btn__primary span{
        color: var(--color-wh);
    }

    body.recruit-page .l-header,
    body.wh .l-header{
      background: rgba(255, 255, 255, 0.9);
      color: var(--color-bk);
    }

    body.recruit-page .p-globalNav__listItem > a,
    body.recruit-page .theme-default .c-btn__primary span,
    body.wh .p-globalNav__listItem > a{
      color: var(--color-bk);
    }

    body.recruit-page .theme-default .p-globalNav__contactBtn .c-btn__primary,
    body.wh .theme-default .p-globalNav__contactBtn .c-btn__primary{
      border-color: var(--color-wh);
    }

    body.recruit-page.l-header .p-globalNav__listItem > a,
    body.recruit-page .l-header.c-btn__primary span,
    body.wh .l-header .p-globalNav__listItem > a,
    body.wh .l-header .c-btn__primary span,
    body.recruit .l-header.animation .c-btn__primary span,
    body.recruit .p-globalNav__submenu a,
    body.recruit .l-header .p-globalNav__contactBtn .c-btn__primary:hover span{
      color: var(--color-bk);
    }

    body.recruit-page .l-header .p-globalNav__contactBtn .c-btn__primary,
    body.wh .l-header .p-globalNav__contactBtn .c-btn__primary,
    body.recruit .l-header.animation .p-globalNav__contactBtn .c-btn__primary{
      border-color: var(--color-bk);
      background: transparent;
      color: var(--color-bk);
    }

    body.recruit-page .l-header .p-globalNav__contactBtn .c-btn__primary::before,
    body.wh .l-header .p-globalNav__contactBtn .c-btn__primary::before,
    body.recruit .l-header.animation .p-globalNav__contactBtn .c-btn__primary::before{
        background: var(--color-bk);
    }

    body.recruit-page .l-header .p-globalNav__contactBtn .c-btn__primary:hover span,
    body.wh .l-header .p-globalNav__contactBtn .c-btn__primary:hover span,
    body.recruit .l-header .c-btn__primary span,
    body.recruit .l-header.animation .p-globalNav__contactBtn .c-btn__primary:hover span{
      color: var(--color-wh);
    }

    body.recruit-page .animation .p-header__logo svg path,
    body.wh .animation .p-header__logo svg path{
      fill: var(--color-bk);
    }
    
}

@media screen and (max-width: 1024px) {
    
    .l-header{
        height: 70px;
    }
    
    .l-header.animation{
        background: rgba(33, 33, 33, 0.8);
    }
    
    .p-header__logo{
        width: auto;
        position: fixed;
        top: 20px;
        left: 20px;
        margin-top: 0;
        margin-left: 0;
        transition: ease 0.4s;
        z-index: 999;
    }
    
    .p-header__logo svg{
        width: 60px;
        transition: ease 0.4s;
    }

    body.recruit-page .p-header__logo svg path,
    body.wh .p-header__logo svg path{
      fill: var(--color-bk);
    }

    body.recruit-page .open.p-header__logo svg path,
    body.wh .open.p-header__logo svg path{
      fill: var(--color-wh);
    }
    
    .p-header__logo .p-header__logoLink.top{
        width: 55px;
    }
    
    .p-header__logo.animation svg{
        width: 70px;
        height: auto;
        transition: ease 0.4s;
    }
    
    .p-header__logo.open svg path{
        fill:var(--color-wh);
    }
    
    .p-header__logo img{
        width: 65px;
    }
    
    .l-header__drawerWrap.open{
        right: 0;
    }
    
    .c-drawer{
        width: 50px;
        height: 50px;
        display: block;
        position: absolute;
        top:10px;
        right: 20px;
    }
    
    .navbar_toggle {
        position: absolute;
        z-index: 999;
        width: 50px;
        height: 50px;
        right: 0;
        top: 0;
    }
    
    .navbar_toggle_icon {
        position: relative;
        display: block;
        height: 1px;
        width: 50px;
        -webkit-transition: ease 0.5s;
        transition: ease 0.5s;
        transform: translateX(-50%);
        left: 50%;
        background: var(--color-wh);
    }
    
    .theme-default .navbar_toggle_icon,
    body.recruit-page .navbar_toggle_icon,
    body.wh .navbar_toggle_icon,
    body.recruit .animation .navbar_toggle_icon{
        background: var(--color-bk);
    }
    
    .theme-default .open .navbar_toggle_icon,
    body.recruit-page .open .navbar_toggle_icon,
    body.wh .open .navbar_toggle_icon{
        background: var(--color-wh);
    }
    
    .navbar_toggle_icon:nth-child(1) {
        top: 20px;
        transition: 0.4s;
    }
    
    .navbar_toggle_icon:nth-child(2) {
        top: 20px;
        margin-top: 11px;
        transition: 0.4s;
    }
    
    .c-drawer.open .navbar_toggle_icon:nth-child(1) {
        top: 25px;
        left: 0;
        transition: 0.4s;
        transform: rotate(18deg);
    }
    
    .c-drawer.open .navbar_toggle_icon:nth-child(2) {
        top: 18px;
        left: 0;
        margin-top: 6px;
        transition: 0.4s;
        transform: rotate(-20deg);
    }
    
    .l-header__drawerWrap{
        position: fixed;
        width: 100%;
        height: 100dvh;
        top:0;
        right: -100%;
        background: var(--color-bk);
        transition: ease 0.4s;
        overflow-y: scroll;
        padding: 160px 0 0 0;
        color: #fff;
        display: flex;
        flex-direction: column;
    }
    
    .p-globalNav{
        width: 100%;
        height: 100dvh;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .p-globalNav__megaMenu{
        display: none;
        padding-bottom: 20px;
    }
    
    .p-globalNav__listItem{
        width: 100%;
    }
    
    .p-globalNav__listItem > a{
        padding-bottom: 8px;
        font-weight: 500;
        font-size: 1.25em;
    }
    
    .p-globalNav__listItem > a.js-menu{
        border-bottom: 1px solid #fff;
    }
    
    .p-globalNav__list01{
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: calc((100% / 2) - 56px);
    }
    
    .p-globalNav__list01:first-child{
        margin-right: 48px;
    }
    
    .p-globalNav__list01 + .p-globalNav__list01{
        margin-bottom: 38px;
    }
    
    .p-globalNav__listItem .js-menu::after{
        content: '';
        width: 8px;
        height: 8px;
        display: inline-block;
        vertical-align: middle;
        color: var(--color-wh);
        line-height: 1;
        border: 1px solid var(--color-wh);
        border-left: 0;
        border-bottom: 0;
        box-sizing: border-box;
        transform: rotate(135deg);
        position: absolute;
        top: 10px;
        right: 0;
        transition: ease 0.4s;
        z-index: 3;
    }
    
    .p-globalNav__listItem .js-menu.open::after{
        transform: rotate(-45deg);
    }
    
    .p-megamenu__left h3,
    .p-megamenu__left .c-btn__left{
        display: none;
    }
    
    .p-globalNav__submenu li a,
    .p-globalNav__submenu li span{
        font-size: 0.875em;
        font-weight: 500;
    }
    
    .p-globalsubMenu__list li a{
        font-size: 0.75em;
        font-weight: 400;
        position: relative;
        padding-left: 1em;
        display: block;
    }
    
    .p-globalsubMenu__list li a::before{
        content: '';
        width: 8px;
        height: 1px;
        background: var(--color-wh);
        position: absolute;
        left: 0;
        top:6px;
    }
    
    .p-globalNav__submenu{
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-left: 16px;
        margin-top: 16px;
    }
    
    .p-globalsubMenu__list{
        display: flex;
        flex-direction: column;
        gap: 16px 0;
        margin-top: 16px;
        margin-bottom: 16px;
    }
    
    .p-globalNav__contactBtn{
        display: flex;
        justify-content: flex-end;
        padding-inline: 32px;
        margin-top: auto;
        margin-left: auto;
        margin-bottom: 24px;
    }
    
    .p-globalNav__contactBtn .c-btn__primary{
        max-width: 130px;
        font-size: 1em;
        padding: 8px 20px;
    }
    
    .p-globalNav__list02{
        display: flex;
        flex-direction: column;
        width: 100%;
        border-top: 1px solid var(--color-wh);
    }
    
    .p-globalNav__listItem02{
        width: 100%;
        border-bottom: 1px solid var(--color-wh);
    }
    
    .p-globalNav__listItem02 a {
        display: flex;
        align-items: center;
        background: var(--color-bk);
        position: relative;
        gap: 0 5.56%;
        width: 100%;
        height: 100px;
        padding: 16px 32px;
    }
    
    .p-globalNav__linkLeft {
        width: 44.44%;
        flex-grow: 1;
    }
    
    .p-globalNav__listItem02 + .p-globalNav__listItem02{
        border-bottom: none;
    }
    
    .p-globalNav__listItem02 h3 {
        font-weight: 600;
        font-size: 2em;
        margin-bottom: 0;
    }
    
    .p-globalNav__listItem02 h3 span {
        display: block;
        font-weight: 400;
        font-size: 0.375em;
        margin-top: 8px;
    }
    
    .p-globalNav__listItem02 .c-arr__icon01{
        width: 60px;
        height: 60px;
    }
    
    .p-globalNav__listItem02 .c-arr__icon01::before {
        content: '';
        width: 18px;
        height: 10px;
        background: url(../img/common/btn-arrow01_wh.svg) no-repeat center center / cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: ease 0.4s;
        z-index: 3;
    }
    /*
    .c-arr__icon01::after{
        display: none;
    }
        */
    
    .p-globalNav__bg{
        display: none;
    }
    
    .theme-default .l-header__drawerWrap .c-btn__primary{
        border-color: var(--color-wh);
    }
    
    .theme-default .l-header__drawerWrap .c-btn__primary span{
        color: var(--color-wh);
    }
    
    
}

/* ----------------------------------------------
footer
----------------------------------------------- */
.l-footer {
    position: relative;
    background: var(--color-bk);
    color: #fff;
    z-index: 999;
}

.l-footer__wrap01{
    width: 100%;
    /* max-width: 1440px; */
    margin-inline: auto;
    padding-inline: 64px;
    padding-block: 80px 100px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0 80px;
}

.p-footer__title{
    width: 80px;
}
.p-footer__access{
    letter-spacing: 0.1em;
}

.p-footer__access address{
    font-size: 1em;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
}


.l-footer__wrap02{
    width: 100%;
    /* max-width: 1440px; */
    margin-inline: auto;
    padding-inline: 64px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.p-footerNav__list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 40px;
}

.p-footerNav__listGroup {
    display: flex;
    gap: 40px;
}

.p-footerNav__extra ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}


.p-footerNav__listItem > a{
    display: block;
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    position: relative;
}

.p-footer__megaMenu{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    border-top: 1px solid #fff;
    padding-top: 20px;
}

.p-footer__megaMenu .p-subMenu{
    font-size: 0.825em;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    position: relative;
}

.p-footer__megaMenu .p-subMenu.js-menu{
    cursor: pointer;
}

.p-footer__megaMenu .p-subMenu.js-menu::after{
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-wh);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(135deg);
    position: absolute;
    top: 6px;
    right: 2px;
    transition: ease 0.4s;
    z-index: 3;
}

.p-footer__megaMenu .p-subMenu.js-menu.open::after{
    transform: rotate(-45deg);
}

.p-footer__megaMenu .p-subMenu__list{
    transition: ease 0.4s;
    opacity: 0;
    height: 0;
}

.p-footer__megaMenu .js-menu.open .p-subMenu__list{
    transition: ease 0.4s;
    opacity: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    margin-top: 20px;
    padding-bottom: 20px;
}

.p-footer__megaMenu .p-subMenu__list li{
    font-size: 0.875em;
    font-weight: 400;
}


.p-footerCopy{
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
    width: 100%;
    /* max-width: 1440px; */
    padding: 64px 64px 32px 64px;
    margin-inline: auto;
    text-align: right;
}

.p-footerIcon__list{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 8px 16px;
    background: var(--color-wh);
}

.p-footerIcon__list li:first-child{
    width: 70px;
}

.p-footerIcon__list li:nth-child(2){
    width: 60px;
}

.p-footerIcon__list li:nth-child(3){
    width: 70px;
}

.p-footerNav__list02{
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    gap: 0 40px;
    font-size: 0.825em;
    font-weight: 500;
}

.p-footerNav__listItem02 a{
    text-decoration: underline;
    vertical-align: middle;
    position: relative;
}


.p-footerNav__listItem02:first-child a::after{
    content: '';
    display: inline-block;
    position: absolute;
    background: url(../img/common/link-icon.svg) no-repeat center center/cover;
    width: 19px;
    height: 19px;
    right: -26px;
    top:50%;
    transform: translateY(-50%);
}

.p-footer__linkItem{
    color: #fff;
}

.p-footer__linkItem a{
    display: flex;
    align-items: center;
    padding: 40px 13.89%;
    background: var(--color-bk);
    gap: 0 5.56%;
}

.p-footer__linkLeft{
    width: 44.44%;
    flex-grow: 1;
}

.p-footer__linkItem h3{
    font-weight: 700;
    font-size: clamp(1em, 3em, 4vw);
}

.p-footer__linkItem h3 span{
    display: block;
    font-weight: 400;
    font-size: 0.292em;
    margin-top: 8px;
}

.p-footer__linkItem p{
    font-size: 1em;
    line-height: 1.688;
}

.p-footer__linkItem i{
    margin-left: auto;
}

.p-footer__linkItem a:hover{
    opacity: 1;
}

#page-top{
    width: 75px;
    text-align: center;
    display: block;
    font-weight: 700;
    font-size: 1em;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility 0s linear .2s; /* フェードアウト時に遅延でvisibilityを切替 */
}

/* 表示状態（fadeIn） */
#page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity .2s ease; /* フェードインは即時visibility */
}

.pagetop__arrow{
    width: 50px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.pagetop__arrow::before,
.pagetop__arrow::after{
    content: '';
    position: absolute;
    content: '';
    bottom: 16px;
    width: 30px;
    height: 1px;
    background: var(--color-wh);
}

.theme-default .pagetop__arrow::before,
.theme-default .pagetop__arrow::after{
    background: var(--color-bk);
}

.pagetop__arrow::before{
    left: -1.5px;
    transform: rotate(-37deg);
}

.pagetop__arrow::after{
    right: -1.5px;
    transform: rotate(37deg);
}

.pagetop__text{
    margin-top: 8px;
    color: var(--color-wh);
}

.theme-default .pagetop__text{
    color: var(--color-bk);
}

@media screen and (min-width: 769px) {
    
    .l-footer{
        display: flex;
        flex-direction: column;
    }
    
    .p-footer__wrap02Right{
        margin-left: auto;
    }
    
    .p-footerNav__listItem{
        width: calc(200vw / 14.4);
    }
    
    .p-footerNav__listItem > a,
    .p-footer__megaMenu .p-subMenu a{
        display: block;
        transition: ease 0.3s;
        position: relative;
    }
    
    .p-footerNav__listItem > a:hover,
    .p-footer__megaMenu .p-subMenu a:hover{
        opacity: 0.7;
    }

    .p-footer__megaMenu .p-subMenu__list .blank a{
        padding-right: 20px;
    }

    .p-footer__megaMenu .p-subMenu__list .blank a:after{
        content: '';
        width: 14px;
        height: 12.8px;
        background: url(../img/common/link-icon.svg) no-repeat center center / cover;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    
    .p-footer__link{
        display: flex;
    }
    
    .p-footer__linkItem{
        width: 50%;
        border-top: 1px solid var(--color-wh);
        border-bottom: 1px solid var(--color-wh);
    }
    
    .p-footer__linkItem + .p-footer__linkItem{
        border-left: 1px solid var(--color-wh);
    }
    
    .p-footer__linkItem a{
        transition: ease 0.4s;
    }
    
    .p-footer__linkItem a:hover{
        color: var(--color-bk);
        background: var(--color-gray);
    }
    
    .p-footer__linkItem a:hover    .c-arr__icon01.white{
        border-color: var(--color-bk);
    }
    
    .p-footer__linkItem a .c-arr__icon01.white::after{
        background: var(--color-bk);
    }
    
    .p-footer__linkItem a:hover .c-arr__icon01.white::before{
        background: url(../img/common/btn-arrow01_wh.svg) no-repeat center center / cover;
    }
    
    .p-footerNav__listItem02 a,
    .p-footerIcon__list li a{
        transition: 0.3s;
    }
    
    #page-top{
        width: 75px;
        text-align: center;
        display: block;
        transition: all .3s ease;
        font-size: 1em;
        position: fixed;
        bottom: 40px;
        right: 72px;
        z-index: 50;
    }

    .recruit-page #page-top,
    .recruit #page-top{
        display: none!important;
    }
    
    #page-top a:hover {
        text-decoration: none;
        opacity: .5;
    }
    
}




@media screen and (max-width: 768px) {
    
    #page-top{
        width: 75px;
        text-align: center;
        display: block;
        font-size: 1em;
        position: relative;
        z-index: 50;
        padding-top: 120px;
    }

    .recruit-page #page-top,
    .recruit #page-top{
        display: none!important;
    }
    
    .p-footer__link{
        border-top: 1px solid var(--color-wh);
    }
    
    .p-footer__linkItem{
        border-bottom:1px solid var(--color-wh);
    }
    
    .p-footer__linkItem p{
        display: none;
    }
    
    .p-footer__linkItem a {
        width: 100%;
        padding: 16px 32px;
        height: 100px;
    }
    
    .p-footer__linkLeft {
        width: 44.44%;
        flex-grow: 1;
    }
    
    .p-footer__linkItem h3{
        font-size: 2em;
        margin-bottom: 0;
    }
    
    .p-footer__linkItem h3 span {
        font-size: 0.375em;
        margin-top: 8px;
    }
    
    .l-footer__wrap01{
        padding: 40px 32px 0 32px;
        align-items: center;
        gap: 0 24px;
    }
    
    .p-footer__title{
        width: 60px;
    }
    
    .p-footer__title img{
        width: 60px;
    }
    
    .p-footer__access address{
        margin-bottom: 0;
        font-size: 0.75em;
    }
    
    .l-footer__wrap01 .c-btn__primary{
        display: none;
    }
    
    .p-footerNav__list{
        display: none;
    }
    
    .l-footer__wrap02{
        padding-top: 72px;
        padding-inline: 36px;
        justify-content: flex-end;
    }
    
    .p-footerIcon__list{
        justify-content: center;
        padding: 8px 8px;
        gap: 16px;
    }
    
    .p-footer__wrap02Right{
        display: flex;
        flex-direction: column;
    }
    
    .p-footerIcon__list li:first-child{
        width: 55px;
    }
    
    .p-footerIcon__list li:nth-child(2) {
        width: 45px;
    }
    
    .p-footerIcon__list li:nth-child(3) {
        width: 55px;
    }
    
    .p-footerNav__list02{
        font-size: 0.75em;
    }
    
    .p-footerNav__listItem02:first-child a::after{
        width: 15px;
        height: 15px;
        right: -20px;
    }
    
    .p-footerCopy{
        font-size: 10px;
        padding: 16px 36px 24px 36px;
    }
    
    
    
}

/* ----------------------------------------------
ボタン
----------------------------------------------- */


.c-btn__center {
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 40px;
}


.c-btn__center + .c-btn__center {
    margin-top: 80px;
}

.c-btn__left{
    margin-right: auto;
    margin-left: 0;
}

.c-btn__left+.c-btn__left{
    margin-top: 40px;
}


.c-btn__primary {
    position: relative;
    display: inline-block;
    color: #fff;
    text-align: center;
    font-size: 1.25em;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: ease 0.4s;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--color-wh);
    border-radius: 72px;
    padding: 10px 32px;
    z-index: 2;
    overflow: hidden;
}

.c-btn__primary span{
    position: relative;
    z-index: 2;
}

.c-btn__primary.red{
    border-color: var(--color-red);
    color: var(--color-red);
    background: var(--color-wh);
}

.p-news__detail .c-btn__primary.red{
    text-decoration: none;
}

.c-btn__primary.blank i{
    width: 19px;
    height: 19px;
    display: inline-block;
    margin-left: 8px;
    position: relative;
    top:2px;
    background: url(../img/common/link-icon.svg) no-repeat center center /cover;
    transition: ease 0.3s;
    z-index: 2;
}


.c-btn__secondary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 20px;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: ease 0.4s;
}

.c-btn__secondary.white{
    color: var(--color-wh);
}

.c-btn__secondary.red{
    color: var(--color-red);
}

.c-btn__secondary.red .c-arr__icon02{
    background: rgba(255, 255, 255, 0.2);
    width: 100px;
    height: 100px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--color-red);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.c-btn__secondary.red .c-arr__icon02::before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    border: 1px solid var(--color-red);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(-50%, -50%) rotate(135deg);
    position: absolute;
    top: 48%;
    left: 50%;
    transition: ease 0.4s;
    z-index: 3;
}

.c-btn__secondary.red:hover .c-arr__icon02::before,
.c-btn__secondary.red:active .c-arr__icon02::before {
    border-color: var(--color-wh);
}

.c-btn__secondary.red .c-arr__icon02:after{
    content: '';
    width: 100%;
    height: 0;
    background: var(--color-red);
    position: absolute;
    top: 0;
    left: 0;
    transition: ease 0.4s;
}

.c-btn__secondary.red:hover .c-arr__icon02:after,
.c-btn__secondary.red:active .c-arr__icon02:after{
    height: 100%;
}

.c-btn__secondary.red:hover,
.c-btn__secondary.red:active{
    color: var(--color-bk);
}

.c-btn__center .c-btn__secondary{
    width: auto;
}


.c-arr__icon01{
    width: 100px;
    height: 100px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--color-red);
    position: relative;
    background: transparent;
    z-index: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
}

.c-arr__icon01.mideum{
    width: 80px;
    height: 80px;
}

.c-arr__icon01.white{
    border: 1px solid var(--color-wh);
    background: rgba(255, 255, 255, 0.2);
}

.c-arr__icon01.black{
    border: 1px solid var(--color-bk);
    background: rgba(255, 255, 255, 0.2);
}

.c-arr__icon01::before{
    content: '';
    width: 36px;
    height: 20px;
    background: url(../img/common/btn-arrow01.svg) no-repeat center center/cover;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: ease 0.4s;
    z-index: 3;
}

.c-arr__icon01.mideum::before{
    width: 24px;
    height: 13px;
    transform: translate(-50%,-50%) rotateY(180deg);
}

.c-arr__icon01.white::before{
    background: url(../img/common/btn-arrow01_wh.svg) no-repeat center center/cover;
}

.c-arr__icon01.black::before{
    background: url(../img/common/btn-arrow01_bk.svg) no-repeat center center/cover;
}

.c-arr__icon01::after{
    content: '';
    width: 0;
    height: 100%;
    border-radius: 50%;
    background: var(--color-red);
    top:0;
    left: 0;
    position: absolute;
    transition: ease 0.4s;
    z-index: 2;
}

.c-arr__icon01.white::after{
    background: var(--color-wh);
}

.c-arr__icon01.black::after{
    background: var(--color-bk);
}


.c-category__center{
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 40px
}

.c-category__btn {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 340px;
    padding-block: 14px 18px;
    color: var(--color-bk);
    text-align: center;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 0.2em;
    transition: ease 0.4s;
    background: var(--color-bg);
    border: 1px solid var(--color-bk);
}

.c-category__btn.jp{
    font-size: 14px;
    padding: 15px 10px;
    max-width: 340px;
}

.c-category__btn::before{
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/common/resume-icon.svg) no-repeat center / cover;
    position: absolute;
    top: 13px;
    left: 20px;
}

.c-btn__right{
    margin-left: auto;
    width: max-content;
}




@media screen and (min-width: 769px) {
    
    .c-btn__primary::before {
        content: '';
        width: 0;
        height: 100%;
        background: var(--color-wh);
        position: absolute;
        top:0;
        left: 0;
        border-radius: 72px;
        transition: ease 0.4s;
        z-index: 1;
    }
    
    .c-btn__primary:hover::before{
        width: 100%;
    }
    
    .c-btn__primary:hover{
        color: var(--color-bk);
        opacity: 1;
    }
    
    .c-btn__primary.red::before{
        background: var(--color-red);
    }
    
    .c-btn__primary.red:hover{
        color: var(--color-wh);
        border-color: var(--color-red);
    }
    
    .c-btn__center a+a{
        margin-left: 40px;
    }
    
    .c-btn__primary.jp{
        font-size: 14px;
        padding: 15px 10px;
    }
    
    a:hover .c-arr__icon01::before{
        background: url(../img/common/btn-arrow01_wh.svg) no-repeat center center/cover;
    }
    
    a:hover .c-arr__icon01.white::before{
        background: url(../img/common/btn-arrow01_bk.svg) no-repeat center center/cover;
    }
    
    a:hover .c-arr__icon01::after{
        width: 100%;
    }
    
    .c-btn__secondary:hover{
        opacity: 1;
        color: var(--color-red);
    }
    
    button.c-btn__secondary:hover{
        color: var(--color-wh);
    }
    
    button .c-arr__icon02.white::after{
        content: '';
        width: 100%;
        height: 0;
        background: var(--color-wh);
        position: absolute;
        top:0;
        left: 0;
        transition: ease 0.4s;
    }
    
    button.c-btn__secondary:hover .c-arr__icon02::before{
        border-color: var(--color-bk);
    }
    
    button:hover .c-arr__icon02.white::after{
        height: 100%;
    }
    
    .c-btn__primary.blank:hover i{
        background: url(../img/common/link-icon_bk.svg) no-repeat center center /cover;
    }
    
    
    
}

@media screen and (max-width: 768px) {
    
    .c-btn__primary{
        padding: 8px 20px;
        max-width: 130px;
        width: 100%;
        font-size: 0.875em;
    }
    
    .c-btn__primary.blank{
        max-width: 150px;
    }
    
    .c-btn__primary.blank i{
        width: 15px;
        height: 15px;
    }
    
    .c-btn__primary.jp{
        font-size: 14px;
        padding: 15px 10px;
        max-width: 280px;
    }
    
    .c-btn__center{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    
    .c-btn__center a+a{
        margin-top: 20px;
    }
    
    .c-btn__center + .c-btn__center {
        margin-top: 40px;
    }
    
    .c-btn__secondary {
        width: 100%;
        font-size: 1.25em;
    }

    .c-btn__secondary.red .c-arr__icon02{
        width: 60px;
        height: 60px;
    }

    .c-btn__secondary.red .c-arr__icon02::before{
        width: 12px;
        height: 12px;
    }
    
    .c-btn__center {
        gap: 20px;
    }
    
    .c-arr__icon01,
    .c-arr__icon01.mideum{
        width: 60px;
        height: 60px;
    }
    
    .c-arr__icon01::before,
    .c-arr__icon01.mideum::before{
        width: 18px;
        height: 10px;
    }

     .c-btn__primary::before {
        content: '';
        width: 0;
        height: 100%;
        background: var(--color-wh);
        position: absolute;
        top:0;
        left: 0;
        border-radius: 72px;
        transition: ease 0.2s;
        z-index: 1;
    }
    
    /*
    .c-btn__primary:active::before{
        width: 100%;
    }
    
    .c-btn__primary:active{
        color: var(--color-bk);
        opacity: 1;
    }
    
    .c-btn__primary.red::before{
        background: var(--color-red);
    }
    
    .c-btn__primary.red:active{
        color: var(--color-wh);
        border-color: var(--color-red);
    }
    
    a:active .c-arr__icon01::before{
        background: url(../img/common/btn-arrow01_wh.svg) no-repeat center center/cover;
    }
    
    a:active .c-arr__icon01.white::before{
        background: url(../img/common/btn-arrow01_bk.svg) no-repeat center center/cover;
    }
    
    a:active .c-arr__icon01::after{
        width: 100%;
    }
    
    .c-btn__secondary:active{
        opacity: 1;
        color: var(--color-red);
    }
    
    button.c-btn__secondary:active{
        color: var(--color-wh);
    }

    */
    
    button .c-arr__icon02.white::after{
        content: '';
        width: 100%;
        height: 0;
        background: var(--color-wh);
        position: absolute;
        top:0;
        left: 0;
        transition: ease 0.2s;
    }
    
     /*
    button.c-btn__secondary:active .c-arr__icon02::before{
        border-color: var(--color-bk);
    }
    
    button:active .c-arr__icon02.white::after{
        height: 100%;
    }
    
    .c-btn__primary.blank:active i{
        background: url(../img/common/link-icon_bk.svg) no-repeat center center /cover;
    }

    */
    
    
    
}




/* ----------------------------------------------
タイトル
----------------------------------------------- */

.c-heading__wrap {
    position: relative;
    width: 100%;
    background: var(--color-wh);
    border-bottom: 1px solid var(--color-bk);
}

.bg-bk .c-heading__wrap {
    background: var(--color-bk);
    border-bottom: 1px solid var(--color-wh);
}

.c-heading__imageBox {
    width: 100%;
    height: 100%;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
}

.c-heading__imageBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left: 0;
}

.c-heading__imageBox::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(25, 47, 96, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}


.c-heading__txtBox{
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 260px 80px 80px 80px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 1em;
}

.c-heading__txtBox .jp{
    font-weight: 600;
}

.bg-bk .c-heading__txtBox{
    color: var(--color-wh);
}

.c-heading__txtBox > h1 {
    font-weight: 700;
    text-align: left;
    font-size: clamp(1.875em,5em,5vw);
    line-height: 1;
    position: relative;
}

.c-heading__txtBox > h1 span{
    font-size: 0.2em;
    font-weight: 600;
}

.c-heading__txtBox h2{
    font-size: clamp(1.25em,2em,2vw);
    font-weight: 600;
    position: relative;
    padding-left: 1em;
    margin-top: auto;
    line-height: 1.3;
}

.c-heading__txtBox h2::before{
    content: '-';
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
}


.p-largeImage__wrap{
    width: 100%;
    height: 420px;
    position: relative;
}

.p-largeImage__wrap{
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.p-largeImage__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.p-largeImage__image::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(25, 47, 96, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.p-largeImage__wrap .l-container{
    position: relative;
    height: 100%;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
}

.p-largeImage__title{
    font-size: 1.875em;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.p-largeImage__title span{
    font-size: 0.667em;
    font-weight: 300;
    display: block;
}

.p-largeImage__wrap.left .l-container{
    justify-content: flex-start;
}


.c-title01 {
    margin-bottom: 80px;
    /*font-size: clamp(4em,6.25em,6.25vw);*/
    font-size: clamp(4em,5em,5vw);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: center;
    position: relative;
    color: #fff;
}

.c-title01.jp {
    font-weight: 600;
}

.c-title01.jp span{
    font-weight: 700;
}

.c-title01 .red{
    color: var(--color-red);
}


.c-title01.small{
    font-size: 3em;
}

.c-title01 span{
    font-size: 0.16em;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 16px;
    color: #fff;
}

.c-title01.small span{
    font-size: 0.35em;
}

.c-title01.-left{
    text-align: left;
    text-indent: -4px;
}

.c-title01.-left.small{
    text-indent: -2px;
}

.c-title01.-left span{
    text-indent: 2px;
}

.c-title01.-left.small span{
    text-indent: 1px;
}

.bg-wh .c-title01,
.bg-wh .c-title01 span {
    color: var(--color-bk);
}

.bg-wh .c-title01 span.red {
    color: var(--color-red);
}

.c-title02{
    font-size: clamp(1.5em,2.25em,2.5vw);
    font-weight: 600;
    line-height: 2;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 24px;
}

.c-title02.narrow{
    letter-spacing: -0.02em;
}

.c-title02.-left{
    line-height: 1.2;
}

.c-title02.center{
    justify-content: center;
}

.bg-bk .c-title02{
    color: var(--color-wh);
}

.c-title02::before{
    content: '';
    width: 14px;
    height: 14px;
    background: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.c-title02 > span{
    font-size: 0.75em;
    margin-left: -20px;
    margin-right: -20px;
}

.c-title03{
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.c-title03.-center{
    text-align: center;
}

.c-title03.large{
    font-size: 2em;
    margin-bottom: 64px;
}

.c-title04{
    position: relative;
    z-index: 2;
    font-size: clamp(3.8em, 5em, 5vw);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 72px;
}

.c-title04 .small{
    font-size: 0.4em;
    color: var(--color-red);
    display: flex;
    align-items: center;
    gap: 0 24px;
}

.c-title04 .small::before{
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-red);
    border-radius: 50%;
}

.bg-bk .c-title04 span{
    color: var(--color-wh);
}


.c-title04 .large{
    display: block;
    font-weight: 700;
}

h4.c-title03,
h5.c-title03{
    font-size: 1em;
    line-height: 1.4;
}

h4.c-title03.large{
    font-size: 1.5em;
    line-height: 1.667;
}

h6{
    margin-bottom: 8px;
}

@media screen and (min-width: 769px) {
    .c-heading__txtBox > h1 span {
        position: absolute;
        bottom: -1.5em;
        left: 0;
    }
}



@media screen and (max-width: 768px) {
    
    .c-heading__txtBox {
        position: relative;
        padding: 140px 20px 40px 20px;
        flex-direction: column;
        gap: 16px 0;
    }
    
    .c-heading__txtBox > h1{
        font-size: 2.5em;
    }
    
    .c-heading__txtBox > h1 span{
        font-size: 0.35em;
        display: block;
        margin-top: 8px;
    }
    
    .p-largeImage__wrap{
        height: 250px;
    }
    
    .p-largeImage__wrap .l-container{
        justify-content: flex-start;
    }
    
    .p-largeImage__title{
        font-size: 1.25em;
    }
    
    .p-largeImage__title span{
        font-size: 0.8em;
        letter-spacing: 0.2em;
    }
    
    .c-title01 {
        margin-bottom: 32px;
        font-size: 3em;
    }
    
    .c-title01.small {
        font-size: 1.8em;
    }
    
    .c-title01 span{
        font-size: 0.25em;
        margin-top: 8px;
    }
    
    .c-title01.-left span {
        text-indent: -1px;
    }
    
    .c-title01.small span{
        font-size: 0.3em;
    }
    
    .c-title02{
        font-size: 1.125em;
        margin-bottom: 24px;
        gap: 0 8px;
        line-height: 1.6;
    }
    
    .c-title02::before{
        width: 10px;
        height: 10px;
        border-radius: 10px;
    }

    .c-title02 > span{
        margin-left: 0;
        margin-right: 0;
    }

    
    .c-title03{
        font-size: 1em;
    }
    
    .c-title03.large{
        font-size: 1.2em;
    }
    
    h5.c-title03{
        font-size: 0.875em;
        margin-bottom: 8px;
    }
    
    .c-title04{
        font-size: 3em;
    }
    
    h4.c-title03.large{
        font-size: 1em;
        line-height: 1.667;
    }
    
    .c-title04 .small{
        gap: 0 8px;
    }
    
    h6{
        font-size: 0.875em;
    }

    .c-title03.large{
        margin-bottom: 40px;
    }

    .c-title04 .small::before{
        width: 10px;
        height: 10px;
        border-radius: 10px;
    }
    
    
}

/* ----------------------------------------------
テキスト
----------------------------------------------- */

.c-text__box{
    margin-bottom: 120px;
}

.c-small__text {
    font-size: 0.75em;
    font-weight: 400;
    line-height: 1.6;
}

.c-reg__text {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.8;
    word-break: break-all;
}

.c-mid__text {
    font-size: 1.875em;
    font-weight: 500;
    line-height: 1.8;
}

.c-small__text a,
.c-reg__text a,
.c-mid__text a {
    text-decoration: underline;
}

.center{
    text-align: center;
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

.c-list__disc,
.c-list__number{
    padding-left: 1em;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    line-height: 1.8;
    word-break: break-all;
}

.c-list__disc{
    list-style-type: disc;
}

.c-list__number{
    list-style-type: decimal;
}

.indent{
    padding-left: 1.2em;
}



@media screen and (max-width: 768px) {
    
    .c-reg__text {
        font-size: 0.875em;
    }
    
    .c-mid__text{
        font-size: 1.25em;
    }
    
    .center{
        text-align: left;
    }
    
    .c-list__disc,
    .c-list__number{
        font-size: 0.875em;
        line-height: 1.7;
    }

    .c-list__disc p{
        font-size: 0.875em;
    }
    
}



/* ----------------------------------------------
レイアウト
----------------------------------------------- */



/* ----------------------------------------------
テーブル
----------------------------------------------- */


.c-table__block{
    width: 100%;
    display: block;
}

.c-table__primary{
    border-collapse: collapse;
    border-spacing: 10px;
}

.bg-bk .c-table__primary{
    color: var(--color-wh);
}

.c-table__primary,
.c-table__primary tbody{
    width: 100%;
}

.c-table__primary tr{
    border-bottom: 1px solid var(--color-bk);
}

.bg-bk .c-table__primary tr{
    border-bottom: 1px solid var(--color-wh);
}

.c-table__primary tr:first-child th,
.c-table__primary tr:first-child td{
    padding-top:0;
}

.c-table__primary th,
.c-table__primary td{
    padding: 24px 40px;
}

.c-table__primary th{
    width: calc(320vw / 9.3);
    text-align: left;
    font-size: 1em;
    font-weight: 600;
    line-height: 1.8;
}

.c-table__primary td{
    width: calc(610vw / 9.3);
    text-align: left;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    vertical-align: middle;
}

.c-table__primary th+td:before{
    content: '';
    position: absolute;
    width: 1px;
    height: calc(100% - 48px);
    top:50%;
    left: 0;
    background: var(--color-bk);
    transform: translateY(-50%);
}

.bg-bk .c-table__primary th+td:before{
    background: var(--color-wh);
}

.c-table__primary tr:first-child th+td:before{
    height: calc(100% - 24px);
    top:0;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    
    .c-table__block.sp-scroll{
        overflow-y: scroll;
        height: 400px;
    }
    
    .c-table__block.sp-scroll_x{
        overflow-x: scroll;
    }
    
    .c-table__block.sp-scroll_x .c-table__primary{
        width: 700px;
    }
    
    .c-table__primary th{
        width: 100%;
        padding: 16px 8px;
        font-size: 0.813em;
        display: block;
        border-bottom: 1px solid var(--color-bk);
    }
    
    .c-table__block.sp-scroll_x .c-table__primary th,
    .c-table__block.sp-scroll_x .c-table__primary td{
        display: table-cell;
        width: auto;
    }
    
    .bg-bk .c-table__primary th{
        border-bottom: 1px solid var(--color-wh);
    }
    
    .c-table__primary td{
        width: 100%;
        padding: 16px 8px;
        font-size: 0.813em;
        display: block;
    }
    
    .c-table__primary th+td:before{
        display: none;
    }
    
    .c-table__primary tr:first-child th, .c-table__primary tr:first-child td{
        padding-top: 16px;
    }
}


/* ----------------------------------------------
pankuzu
----------------------------------------------- */
.c-pankuzu__wrap{
    width: 100%;
    padding-block: 20px;
    border-bottom: 1px solid var(--color-bk);
    background: var(--color-wh);
}

.bg-bk .c-pankuzu__wrap{
    border-bottom: 1px solid var(--color-wh);
    background: var(--color-bk);
}

.p-pankuzu__list{
    width: 100%;
    max-width: 1380px;
    margin-inline: auto;
    padding-inline:40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.p-pankuzu__list li+li{
    padding-left: 20px;
}

.p-pankuzu__list li+li::before{
    content: '';
    top: 40%;
    left: 0;
    position: absolute;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid #000;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(-50%,-25%) rotate(45deg);
}

.bg-bk .p-pankuzu__list{
    color: var(--color-wh);
}

.bg-bk .p-pankuzu__list li+li::before{
    color: var(--color-bk);
    border: 0.1em solid var(--color-wh);
    border-left: 0;
    border-bottom: 0;
}

.p-pankuzu__item{
    font-size: 0.875em;
    font-weight: 400;
    position: relative;
}

.p-pankuzu__item.current{
    font-weight: 600;
}


@media screen and (max-width: 768px) {

    .c-pankuzu__wrap{
        padding-block: 16px;
    }

    .p-pankuzu__list{
        padding-inline: 16px;
        gap: 8px 8px;
    }

    .p-pankuzu__item{
        font-size: 12px;
    }
    
    .p-pankuzu__list li+li{
        padding-left: 8px;
    }
}

/* ----------------------------------------------
タブ・カテゴリーナビ
----------------------------------------------- */

.c-sortNav__block{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.c-heading__wrap .c-sortNav__block{
    justify-content: flex-end;
    padding-inline: 80px;
}

.c-heading__wrap .c-category__list{
    justify-content: flex-end;
}

.c-category__list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 24px;
}

.bg-bk .c-category__list{
    color: var(--color-wh);
}

.c-category__item{
    font-size: 1em;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.c-category__item + .c-category__item {
    padding-left: 24px;
    border-left: 1px solid var(--color-bk);
}

.bg-bk .c-category__item + .c-category__item {
    border-left: 1px solid var(--color-wh);
}

.c-category__item.current{
    color: var(--color-red);
    position: relative;
}

.c-heading__wrap .c-category__item.current{
    color: var(--color-bk);
}

.bg-bk .c-heading__wrap .c-category__item.current{
    color: var(--color-wh);
}

.c-category__item.current::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background: var(--color-red);
}

.c-category__item + .c-category__item::after{
    width: calc(100% - 24px);
    left: 24px;
}

.c-heading__wrap .c-category__item.current::after{
    background: var(--color-bk);
}

.bg-bk .c-heading__wrap .c-category__item.current::after{
    background: var(--color-wh);
}

.c-archive__select{
    min-width: 170px;
    margin-left: auto;
    cursor: pointer;
    text-align: left;
    height: 62px;
    padding: 16px 70px 16px 20px;
    border: 1px solid var(--color-bk);
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.1578em;
    border-radius: 10px;
    position: relative;
}

.c-archive__select option {
  font-size: 1em; /* Firefoxで拡大されるのを防ぐ */
  color: var(--color-bk);
}

.c-archive__selectWrap{
    position: relative;
    margin-left: auto;
    padding-bottom: 1px;
}

.c-archive__selectWrap::after{
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-bk);
    z-index: 1;
    overflow: hidden;
    background: var(--color-wh);
    top:50%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.c-archive__selectWrap::before{
    content: '';
    position: absolute;
    right: 36px;
    top: 25px;
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 1px var(--color-bk);
    border-right: solid 1px var(--color-bk);
    transform: rotate(135deg);
    z-index: 2;
    pointer-events: none;
}

.js-tab__listBlock{
    border-bottom: 1px solid var(--color-red);
}

.js-tab__listBlock.wh{
    border-bottom: 1px solid var(--color-wh);
}

.js-tab__list{
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin-inline: auto;
}

.js-tab__list.work,
.js-tab__list.recruit,
.js-tab__list.col-5,
.js-tab__list.col-4,
.js-tab__list.col-7{
    max-width: 1300px;
}

.js-tab__list.recruit{
    max-width: 100%;
}

.js-tab__list.col-2 .js-tab__item{
    width: calc(100% / 2);
}

.js-tab__list.col-4 .js-tab__item{
   /* width: calc(100% / 4);*/
   line-height: 1.5;
    padding: 24px 40px;
}

.js-tab__list.col-5 .js-tab__item{
    /* width: calc(100% / 5);*/
    line-height: 1.5;
    padding: 9.5px 40px;
}

.js-tab__list.col-7 .js-tab__item{
    /* width: calc(100% / 7);*/
    line-height: 1.5;
    padding:24px 40px;
}
    

.js-tab__listBlock.wh .js-tab__item{
  color: var(--color-wh);
}

.js-tab__item{
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    line-height: 100px;
    color: var(--color-gray02);
    position: relative;
    font-size: 1em;
}

.js-tab__list.work .js-tab__item,
.js-tab__list.recruit .js-tab__item,
.js-tab__list.col-5 .js-tab__item{
    line-height: 1.5;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*
.js-tab__list.col-7 .js-tab__item{
    line-height: 2;
    padding: 32px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    */

.js-tab__item.current{
    color: var(--color-bk);
}

.js-tab__item.current::after{
    content: '';
    width: 100%;
    height: 3px;
    background: var(--color-red);
    position: absolute;
    bottom: 0;
    left: 0;
}

.js-tab__listBlock.wh .js-tab__item.current::after{
  background: var(--color-wh);
}


@media screen and (min-width: 769px) {
    
    .c-category__item a{
        position: relative;
        transition: ease 0.4s;
        display: block;
    }

    .c-category__item > a{
        padding-block: 8px;
    }
    
    
    .c-category__item a:hover{
        color: var(--color-red);
    }
    
    .c-category__item > a::after{
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: 4px;
        left: 0;
        background: var(--color-red);
        transition: ease 0.4s;
    }
    
    .c-category__item > a:hover::after{
        width: 100%;
    }
    
    .c-category__item > a:hover{
        opacity: 1;
    }

    .c-category__item a.sub{
        padding-right: 16px;
    }

    .c-category__item a.sub::before{
        content: '';
        position: absolute;
        right: 0;
        top: 14px;
        content: '';
        width: 8px;
        height: 8px;
        border: 0;
        border-top: solid 1px var(--color-wh);
        border-right: solid 1px var(--color-wh);
        transform: rotate(135deg);
        z-index: 2;
    }

    .c-category__item a.sub:hover::before{
        border-color: var(--color-red);
    }

    .c-category__item a.blank{
        padding-right: 28px;
    }

    .c-category__item a.blank::before{
        content: '';
        position: absolute;
        right: 0;
        top:8px;
        background: url(../img/common/link-icon.svg) no-repeat center center /cover;
        width: 20px;
        height: 20px;
    }

    .c-category__subList {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        position: static; /* スマホではドロップダウンでなく展開型も可 */
        transition: none;
    }

    .c-category__subList.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .bg-bk .c-heading__wrap .c-category__item.current a::after{
        display: none;
    }

    .bg-bk .c-heading__wrap .c-category__item.current a:hover{
        color: var(--color-wh);
    }
}


@media screen and (max-width: 768px) {
    
    .js-tab__list.work,
    .js-tab__list.recruit,
    .js-tab__list.col-4,
    .js-tab__list.col-5,
    .js-tab__list.col-7{
        flex-wrap: wrap;
    }
    
    .js-tab__list.recruit,
    .js-tab__listBlock.wh .js-tab__list{
        position: relative;
        z-index: 2;
        top: 2px;
    }
    
    
    .js-tab__list.work .js-tab__item{
        width: 50%;
        padding: 16px 8px;
        font-size: 0.8em;
        text-align: center;
        border-top: 1px solid var(--color-red);
    }
    
    .js-tab__list.recruit .js-tab__item{
        width: 50%;
        padding: 16px 8px;
        font-size: 0.8em;
        text-align: center;
        border-bottom: 1px solid var(--color-red);
    }

    .js-tab__list.col-4 .js-tab__item,
    .js-tab__list.col-5 .js-tab__item,
    .js-tab__list.col-7 .js-tab__item{
        width: 50%;
        padding: 16px 8px;
        font-size: 0.8em;
        text-align: center;
        line-height: 1.5;
    }

    .js-tab__listBlock.wh .js-tab__item{
      border-bottom: 1px solid var(--color-wh);
    }

    .js-tab__listBlock.wh .js-tab__list::after{
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0;
        background: var(--color-bk);
        z-index: 2;
    }
    
    
    .js-tab__list.recruit::after{
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0;
        background: var(--color-wh);
        z-index: 2;
    }
    
    .js-tab__list.work .js-tab__item:nth-child(1),
    .js-tab__list.work .js-tab__item:nth-child(2){
        border-top: none;
    }
    
    .js-tab__list.work .js-tab__item:last-child{
        width: 100%;
    }
    
    .c-category__item .sub + i{
        position: absolute;
        top:50%;
        right: 4px;
        width: 25px;
        height: 25px;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .c-category__item .sub + i::before{
        content: '';
        position: absolute;
        right: 8px;
        top: 6px;
        content: '';
        width: 8px;
        height: 8px;
        border: 0;
        border-top: solid 1px var(--color-wh);
        border-right: solid 1px var(--color-wh);
        z-index: 2;
        transform: rotate(135deg);
    }

    .c-category__item a.blank::before{
        content: '';
        position: absolute;
        right: 6px;
        top:12px;
        background: url(../img/common/link-icon.svg) no-repeat center center /cover;
        width: 15px;
        height: 15px;
    }


    .c-category__item a:active{
        color: var(--color-red);
    }
    
    .c-category__item > a::after{
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: 4px;
        left: 0;
        background: var(--color-red);
        transition: ease 0.4s;
    }
    
    .c-category__item > a:active::after{
        width: 100%;
    }
    
    .c-category__item > a:active{
        opacity: 1;
    }

    .c-category__item a.sub{
        padding-right: 16px;
    }
/*
    .c-category__item a.sub::before{
        content: '';
        position: absolute;
        right: 0;
        top: 14px;
        content: '';
        width: 8px;
        height: 8px;
        border: 0;
        border-top: solid 1px var(--color-wh);
        border-right: solid 1px var(--color-wh);
        transform: rotate(135deg);
        z-index: 2;
    }
        */

    .c-category__item a.sub:active::before{
        border-color: var(--color-red);
    }
}


@media screen and (max-width: 768px) {
    
    .c-sortNav__block{
        flex-direction: column;
        gap: 24px 0;
        margin-bottom: 0;
        position: relative;
    }
    
    .c-sortNav__block::after{
        content: '';
        width: calc((100% / 2) - 1px);
        height: 1px;
        background: var(--color-wh);
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 2;
    }
    
    .c-sortNav__block::before{
        content: '';
        width: calc(100% / 2);
        height: 1px;
        background: var(--color-wh);
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 2;
    }
    
    .bg-bk .c-sortNav__block::after,
    .bg-bk .c-sortNav__block::before{
        background: var(--color-bk);
    }
    
    .c-category__list{
        gap: 0;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        border-top: 1px solid var(--color-bk);
        height: calc(auto - 1px);
    }
    
    .bg-bk .c-category__list{
        border-color:var(--color-wh) ;
    }
    
    .c-heading__wrap .c-sortNav__block{
        padding-inline: 0;
    }
    
    .c-category__item{
        font-size: 0.75em;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding-inline: 8px;
        border-bottom: 1px solid var(--color-bk);
    }
    
    .bg-bk .c-category__item{
        border-color:var(--color-wh) ;
    }
    
    .c-category__item:nth-of-type(odd){
        border-right: 1px solid var(--color-bk);
    }
    
    .bg-bk .c-category__item:nth-of-type(odd){
        border-right: 1px solid var(--color-wh);
    }
    
    
    
    .c-category__item + .c-category__item{
        padding-left: 8px;
        border-left: none;
    }
    
    .bg-bk .c-category__item + .c-category__item{
        border-left: none;
    }
    
    .c-category__item.current::after{
        display: none;
    }
    
    .c-heading__wrap .c-category__item.current,
    .bg-bk .c-heading__wrap .c-category__item.current{
        color: var(--color-red);
    }
    
    /*
    .c-category__item.current::after{
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }
    
    .c-category__item + .c-category__item.current::after{
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }
    
    */
    
    .c-archive__select{
        min-width: 150px;
        padding: 8px 56px 8px 16px;
        height: 50px;
        font-size: 0.875em;
        border-radius: 5px;
    }
    
    .c-archive__selectWrap::after{
        right: 16px;
        width: 35px;
        height: 35px;
    }
    
    .c-archive__selectWrap::before{
        top:20px;
        right: 29px;
    }
    
    .c-category__item.current::after{
        bottom: -2px;
    }
    
    .js-tab__item{
        line-height: 60px;
        font-size: 1em;
    }

}

/* ----------------------------------------------
フォーム
----------------------------------------------- */

.c-form__select select,
.c-form__inputText input[type=text],
.c-form__inputText input[type=email],
.c-form__inputText input[type=tel],
.c-form__textarea{
    border: 1px solid #727283;
    padding: 16px;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.1em;
    width: 100%;
    color: var(--color-gray02);
}

.c-form__textarea textarea{
    width: 100%;
    resize: block;
}

.c-form__select select,
.c-form__inputText input[type=text],
.c-form__inputText input[type=email],
.c-form__inputText input[type=tel]{
    line-height: 1;
    min-height: 55px;
}

.c-form__inputText input::placeholder,
.c-form__textarea textarea::placeholder{
    color: var(--color-gray02);
    opacity: 0.7;
}

.c-form__select{
    position: relative;
}

.c-form__select select{
    cursor: pointer;
    color: var(--color-gray02);
    padding-right: 40px;
    line-height: 1;
}

.c-form__select::after{
    content: '';
    position: absolute;
    right: 18px;
    top: 20px;
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #727283;
    border-right: solid 2px #727283;
    transform: rotate(135deg);
    z-index: 2;
    pointer-events: none;
}

.c-form__radiobtn{
    padding-block: 8px;
}

.c-form__radiobtn label .wpcf7-list-item-label {
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding: 0 10px 0 40px;
    font-size: 1.25em;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.c-form__radiobtn input[type=radio] {
    display: none;
}

.c-form__radiobtn label .wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #727283;
    border-radius: 50%;
    background-color: var(--color-wh);
}

.c-form__radiobtn input[type=radio]:checked+.wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--color-red);
}

.c-btn__submit{
    background: var(--color-wh);
    color: var(--color-red);
    border: 1px solid var(--color-red);
    position: relative;
    text-align: center;
    border-radius: 70px;
    font-weight: 600;
    font-size: 1.25em;
    padding: 16px;
    min-width: 300px;
    transition: ease 0.4s;
}

.c-btn__reset{
    background: var(--color-wh);
    color: var(--color-bk);
    border: 1px solid var(--color-bk);
    position: relative;
    text-align: center;
    border-radius: 70px;
    font-weight: 600;
    font-size: 1.25em;
    padding: 16px;
    min-width: 300px;
    transition: ease 0.4s;
}

@media screen and (min-width: 769px) {
    
    .c-form__radiobtn .wpcf7-form-control{
        display: flex;
        gap: 0 40px;
    }
    
    .c-btn__submit:hover{
        background: var(--color-red);
        color: var(--color-wh);
    }
    
    .c-btn__reset:hover{
        background: var(--color-bk);
        color: var(--color-wh);
    }
}

@media screen and (max-width: 768px) {
    .c-form__radiobtn .wpcf7-form-control{
        display: flex;
        flex-direction: column;
        gap: 16px 0;
    }

     .c-btn__submit:active{
        background: var(--color-red);
        color: var(--color-wh);
    }
    
    .c-btn__reset:active{
        background: var(--color-bk);
        color: var(--color-wh);
    }
}



/* ----------------------------------------------
Utility
----------------------------------------------- */

.u-visuallyhidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
}

.u-scrollPrevent {
    position: fixed;
    z-index: -1;
    width: 100%;
}