@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-text: #333;
    --primary-navy: #010022;
    --primary-orange: #E04100;
    --primary-bg: #F5F7F8;
    --primary-black: #1A1A1A;
    --gray0: #FFF;
    --gray10: #F3F3F3;
    --gray60: #BABABA;
}

@media screen and (min-width:1024px) {
:root {

}
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
    /* scroll-behavior: smooth; */
}

body {
    font-family: "Noto Serif JP", serif;
    font-style: normal;
    color: var(--primary-text, #333A3A);
    background-color: var(--gray0, #FFF);
    line-height: 190%;
    overflow-x: hidden;
}
main {

}
section {
    display: flex;
    padding: 20.5vw 0px 33.5vw;
    flex-direction: column;
    align-items: center;
    position: relative;
}
section::before {
    border-style: solid;
    border-width: 50px 100vw 0 0;
    bottom: 0;
    content: "";
    height: 0;
    position: absolute;
}
article {
    background-image: linear-gradient(90deg, #010022, #000);
}
@media (min-width: 768px) {
    section {
        padding: 80px 0px 160px;
    }
    section::before {
        border-width: 100px 100vw 0 0;
    }
}

.pc {
    display: none;
}
@media screen and (min-width: 1024px) {
    .pc {
        display: block;
    }
    .sp {
        display: none !important;
    }
}

h2 {
    margin-bottom: 10.25vw;
}
h2 span {
    font-size: 7.69vw;
    font-weight: 700;
    line-height: 220%;
    letter-spacing: 0.3vw;
    color: var(--primary-text, #333);
    position: relative;
    position: relative;
    display: table-cell;
    padding: 0 0 0 8.56vw;
}
h2 span:before {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
    width: 8.71vw;
    height: 0.51vw;
	background-color: var(--primary-orange, #E04100);
	left:0;
	transform: rotate(-56deg);
}
p {
    font-size: 4.1vw;
    font-weight: 500;
    line-height: 153%;
    color: var(--primary-text, #333);
}
img {
    width: 100%;
}
@media screen and (min-width: 768px) {
    h2 {
        margin-bottom: 40px;
    }
    h2 span {
        font-size: 36px;
        line-height: 183.333%;
        letter-spacing: 1.44px;
        padding: 0 0 0 40px;
    }
    h2 span:before {
        width: 36px;
        height: 2px;
    }
    p {
        font-size: 16px;
        line-height: 190%;
    }
}
@media screen and (min-width: 1024px) {

}

/*==========================
header
==========================*/
.header {

}
.pc-header__wrap {
    display: none;
}

.header__topic,
.nav__topic {
    font-size: 2rem;
    font-family: Noto Sans JP;
    line-height: 1.3;
}

.header__topic a,
.nav__topic a {
    display: flex;
    align-items: center;
}

.header__topic span,
.nav__topic span {
    font-size: 0.8rem;
    letter-spacing: 1.6px;
    margin: 0 17px 0 18px;
}

/* .nav初期表示 */
.nav {
    background: rgba(var(--primary-greenR), 0.97);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    padding-left: 4.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__topic {
    color: var(--primary-whiteLow);
}

.nav__list {
    margin-top: 67px;
}

.nav__item {
    color: var(--primary-white);
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}

.nav__item::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background-color: var(--primary-white);
    margin-right: 16px;
}

.nav__btnEntry {
    color: var(--primary-white);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 4px;
    background-color: var(--primary-green);
    padding: 12px 0 12px 16px;
    display: flex;
    align-items: center;
    transition: 0.4s;
}

.nav__btnEntry::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icon-arrow.svg);
    background-size: contain;
    background-position: center;
    margin: 0 8px;
}

.nav__btnEntry:hover {
    opacity: 0.5;
}

.nav__item:last-of-type {
    display: none;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 64px;
    height: 64px;
}

.h-fix {

}

.h-fixbtn {
    position: fixed;
    z-index: 9999;
    top: 20px;
    right: 90px;
    width: 130px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background: var(--primary-orange, #E04100);
    color: var(--gray0, #FFF);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* .header pc */
@media screen and (min-width:1260px) {
    .pc-header__wrap {
        display: block;
    }
    .h-fix {
        display: none;
    }

    .header {
        padding: inherit;
        height: inherit;
        display: inherit;
    }
    .pc-header {
        display: flex;
        justify-content: space-between;
        padding-right: 2%;
        max-width: 1500px;
        width: 91.6%;
        position: fixed;
        z-index: 9999;
        background-color: #fff;
        top: 30px;
        right: 0;
        left: 0;
        margin: 0 auto;
        box-shadow: 4px 4px 7px 0px rgba(1, 0, 34, 0.10);
    }
    .header .h-logo {
        display: flex;
    }

    .header .h-logo img {
        height: 60px;
    }

    .header .pc-nav { 
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .header .pc-nav li{
        position: relative;
    }

    .header .pc-nav li a {
        font-size: 14px;
        color: var(--primary-text, #333);
        font-weight: 700;
    }
    .header .pc-nav li:last-of-type a {
        color: var(--gray0, #FFF);
    }
    .header .pc-nav li a:hover {
        color: var(--primary-orange, #E04100);
    }
    .header .pc-nav li:last-of-type a:hover {
        color: var(--gray0, #FFF);
    }

    .header .pc-nav li::after {
        position: absolute;
        content: "/";
        right: -16px;
        font-size: 14px;
        font-weight: 700;
    }

    .header .pc-nav li:nth-last-child(2)::after {
        content: none;
    }

    .pc-nav__entry {
        width: 130px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        background: var(--primary-orange, #E04100);
        color: var(--gray0, #FFF);
        margin-left: 10px;
    }
    .pc-nav__entry:hover {
        background: var(--primary-navy, #010022);
    }

}
/*========= ナビゲーション ===============*/

#g-nav{
    position:fixed;
    z-index: 999;
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;
    background:#F3F3F3;
    transition: all 0.6s;
  }
  
  #g-nav.panelactive{
    right: 0;
  }
  
  #g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /*ナビゲーション*/
  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 31%;
    left: 65%;
    transform: translate(-50%,-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }
  
  #g-nav li{
    list-style: none;
    text-align: left;
  }
  
  #g-nav li a{
    color: var(--primary-text, #333);
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
    font-weight: bold;
  }
  @media (min-width: 1024px) {

  }
  /*========= ナビゲーション ===============*/
  
  /*========= ハンバーガー ===============*/
  .openbtn{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:20px;
    right: 20px;
    background: var(--gray0, #FFF);
    cursor: pointer;
    width: 50px;
    height:50px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 2px;
      background: var(--primary-black, #1A1A1A);
      width: 45%;
    }
  
  .openbtn span:nth-of-type(1) {
    top:15px; 
  }
  
  .openbtn span:nth-of-type(2) {
    top:23px;
  }
  
  .openbtn span:nth-of-type(3) {
    top:31px;
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%;
  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }
  @media (min-width: 1260px) {
    .openbtn {
      display: none;
    }
  }
  /*========= ハンバーガー ===============*/
  

/*==========================
キービジュ
==========================*/
.mainVisual {
    background-image: url(../img/KVSP.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    height: 159vw;
    align-items: flex-start;
}
.mainVisual::before {
    border-color: transparent var(--primary-bg, #F5F7F8) transparent transparent;
}
h1 {
    color: #FFF;
    font-family: "EB Garamond", serif;
    font-size: 15.38vw;
    font-weight: 600;
    line-height: 90%;
    text-shadow: 4px 4px 7px rgba(1, 0, 34, 0.30);
    margin-top: 69vw;
    padding-left: 3.58vw;
}
h1 span {
    color: var(--primary-orange, #E04100);
}
.mainVisual ul {
    display: flex;
    width: 92.3vw;
    padding: 2.56vw 0px;
    align-items: center;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    justify-content: center;
    margin: 4.87vw 0 0 3.58vw;
}
.mainVisual ul li {
    width: 30.76vw;
}
.mainVisual ul li:first-child {
    width: 25.64vw;
}



/*====== スクロールダウン =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:9%;
	bottom:0px;
    /*全体の高さ*/
	height:46px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
    font-family: "EB Garamond", serif;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #fff;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 10rem;
    }
    .scrolldown1 span {
        font-size: 1.3rem;
    }
    .mainVisual {
        height: inherit;
    }
    .mainVisual ul {
        max-width: 500px;
    }
}
@media screen and (min-width:1024px) {
    .mainVisual {
        background-image: url(../img/KVPC.jpg);
        height: 890px;
        background-size: cover;
    }
    .mainVisual::before {
        border-color: transparent var(--primary-bg, #F5F7F8) transparent transparent;
    }
    h1 {
        font-size: 10rem;
        line-height: 100%;
        text-shadow: 4px 4px 7px rgba(1, 0, 34, 0.30);
        margin-top: 444px;
        padding-left: 0;
        margin-left: auto;
        padding-right: 10.5%;
        text-align: right;
    }
    h1 span {
    }
    
    /*====== スクロールダウン =======*/
    
    /*スクロールダウン全体の場所*/
    .scrolldown1{
        /*描画位置※位置は適宜調整してください*/
        position:absolute;
        bottom: 0px;
        height: 160px;
        right: 5%;
        left: inherit;
    }
    
    /*Scrollテキストの描写*/
    .scrolldown1 span{
        /*描画位置*/
        position: absolute;
        left:-15px;
        top: -15px;
        /*テキストの形状*/
        color: #fff;
        font-size: 1.3rem;
        letter-spacing: 0.05em;
        font-family: "EB Garamond", serif;
    }
    
    /* 線の描写 */
    .scrolldown1::after{
        content: "";
        /*描画位置*/
        position: absolute;
        top: 0;
        /*線の形状*/
        width: 1px;
        height: 30px;
        background: #fff;
        /*線の動き1.4秒かけて動く。永遠にループ*/
        animation: pathmove 1.4s ease-in-out infinite;
        opacity:0;
    }
    
    /*高さ・位置・透過が変化して線が上から下に動く*/
    @keyframes pathmove{
        0%{
            height:0;
            top:0;
            opacity: 0;
        }
        30%{
            height:30px;
            opacity: 1;
        }
        100%{
            height:0;
            top:50px;
            opacity: 0;
        }
    }
}

@media (min-width: 1024px) and (max-width: 1259px) {
    .mainVisual ul {
        width: 500px;
        padding: 0;
        position: absolute;
        top: -40px;
        height: 68px;
    }
}

@media screen and (min-width:1260px)  {
    .mainVisual ul {
        display: none;
    }
}




@media screen and (min-width:1700px) {
    .mainVisual {
        background-size: contain;
        background-position: center;
    }
}


/*==========================
採用メッセージ
==========================*/
.message {
    justify-content: flex-end;
    gap: 15.3vw;
    background: var(--primary-bg, #F5F7F8);
}
.message::before {
    border-color: transparent var(--primary-navy, #010022) transparent transparent;
}
.message .flex-l {
    display: flex;
    width: 92.3vw;
    flex-direction: column;
    align-items: center;
} 
.message .flex-l p {
    line-height: 200%;
}
.message .flex-r img {
    width: 92.3vw;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .message {
        gap: 40px;
    }
}

@media screen and (min-width:1024px) {
    .message {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 120px;
        background: var(--primary-bg, #F5F7F8);
        padding: 80px 40px 160px;
    }
    .message::before {
        border-color: transparent var(--primary-navy, #010022) transparent transparent;
    }
    .message .flex-l {
        display: flex;
        width: fit-content;
        flex-direction: column;
        align-items: flex-start;
    } 
    .message .flex-l p {
        line-height: 200%;
    }
    .message .flex-r img {
        width: 400px;
    }
}


/*==========================
募集職種
==========================*/
.application-details {
    background: var(--primary-navy, #010022);
}
.application-details::before {
    border-color: transparent var(--primary-bg, #F5F7F8) transparent transparent;
}
.application-details h2 span {
    color: var(--gray0, #FFF)
}
.application-details .w-wrap {
    display: flex;
    width: 92.3vw;
    padding: 11.79vw 7.69vw;
    flex-direction: column;
    align-items: center;
    gap: 6.15vw;
    background: var(--gray0, #FFF);
}
.application-details .w-wrap h3 {
    color: var(--primary-text, #333);
    text-align: center;
    font-size: 5.64vw;
    font-style: normal;
    font-weight: 700;
    line-height: 163.636%;
    border-bottom: 1px solid var(--primary-text, #333);
}
.application-details .w-wrap p {
    text-align: center;
    line-height: 200%;
}
.application-details .w-wrap p span {
    font-weight: bold;
}
.application-details .btn-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 7.69vw;
    margin-top: 15.38vw;
}
.application-details .btn-wrap a {
    color: var(--gray0, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 190%;
    letter-spacing: 0.64px;
    display: flex;
    width: 270px;
    height: 60px;
    padding: 0px 60px 2px 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gray0, #FFF);
}
.application-details .btn-wrap a:hover {
    color: var(--primary-orange, #E04100);
    border: 1px solid var(--primary-orange, #E04100);
}
.application-details .btn-wrap a::after {
    content: "";
    background: var(--gray0, #FFF);
    height: calc(tan(60deg) * 16px / 2);
    width: 16px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.application-details .btn-wrap a:hover:after {
    background: var(--primary-orange, #E04100);
}
@media (min-width: 768px)  {
    .application-details .w-wrap {
        width: 700px;
        padding: 40px;
        gap: 20px;
    }
    .application-details .w-wrap h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .application-details .btn-wrap {
        flex-direction: row;
        gap: 80px;
        margin-top: 60px;
    }
}
@media screen and (min-width:1024px) {

}


/*==========================
一日の流れ
==========================*/
.schedule {
    background: var(--primary-bg, #F5F7F8);
}
.schedule::before {
    border-color: transparent var(--gray0, #FFF) transparent transparent;
}
.schedule .schedule-wrap {
    background-image: url(../img/scale.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    margin-bottom: 15.38vw;
}
.schedule .schedule-wrap ul {
    display: flex;
    width: fit-content;
    padding-top: 1.28vw;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12.82vw;
    margin-left: 11.53vw
}
.schedule .schedule-wrap ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7.69vw;
}
.schedule .schedule-wrap ul li h3 {
    position: relative;
    color: var(--primary-text, #333);
    font-size: 5.12vw;
    font-weight: 500;
    line-height: 150%;
}
.schedule .schedule-wrap ul li h3::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 24px;
    height: 1px;    
    background-color: var(--primary-navy, #010022);
    margin-left: 15px;
}
.schedule .schedule-wrap ul li .job-details {
    color: var(--primary-text, #333);
    font-size: 4.1vw;
    font-style: normal;
    font-weight: 500;
    line-height: 190%;
    letter-spacing: 0.16vw;
}
.schedule .schedule-wrap ul li .job-details ul {
    list-style: disc;
    padding-left: 4.5vw;
    gap: 0;
    margin-left: 0;
}
.schedule .schedule-wrap ul li .job-details ul li {
    display:list-item;
}
.schedule .schedule-wrap ul li .job-details ul li::marker {
    font-size: 3.1vw;
}
.schedule .schedule-wrap ul li img {
    width: 76.92vw;
    margin-top: 7.69vw;
}
.job-description-wrap {
    display: flex;
    width: 92.3vw;
    padding: 12.82vw 5.12vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7.69vw;
    border: 1px solid var(--gray60, #BABABA);
    background: var(--gray0, var(--gray0, #FFF));
}
@media (min-width: 768px) and (max-width: 1023px) {
    .schedule .schedule-wrap {
        margin-bottom: 80px;
    }
    .schedule .schedule-wrap ul {
        gap: 40px;
    }
    .schedule .schedule-wrap ul li {
        gap: 20px;
    }
    .schedule .schedule-wrap ul li h3 {
        font-size: 2rem;
    }
    .schedule .schedule-wrap ul li .job-details {
        font-size: 1.6rem;
    }
    .schedule .schedule-wrap ul li .job-details ul li::marker {
        font-size: 1.6rem;
    }
    .schedule .schedule-wrap ul li img {
        max-width: 600px;
        margin: 40px auto 0;
    }
    .job-description-wrap {
        width: 700px;
        padding: 40px;
        gap: 30px;
    }
}
@media screen and (min-width:1024px) {
    .schedule .schedule-wrap {
        width: fit-content;
        padding-left: 25px;
        margin-bottom: 60px;
    }
    .schedule .schedule-wrap ul {
        gap: 50px;
        margin: 0 auto;
    }
    .schedule .schedule-wrap ul li {
        flex-direction: row;
        gap: 68px;
    }
    .schedule .schedule-wrap ul li h3 {
        font-size: 20px;
    }
    .schedule .schedule-wrap ul li .job-details {
        font-size: 16px;
        letter-spacing: 0.64px;
    }
    .schedule .schedule-wrap ul li .job-details ul {
        padding-left: 25px;
    }
    .schedule .schedule-wrap ul li .job-details ul li::marker {
        font-size: 13px;
    }
    .schedule .schedule-wrap ul li img {
        width: 350px;
        margin-top: 0;
    }
    .schedule .schedule-wrap ul li .job-details__pc {
        display: flex;
        width: 787px;
        justify-content: space-between;
        align-items: flex-start;
    }
    .job-description-wrap {
        flex-direction: row;
        max-width: 1128px;
        padding: 5.32% 6.2%;
        justify-content: center;
        align-items: center;
        gap: 5.32%;
    }
    .job-description-wrap img {
        width: 400px;
    }
    
}

/*==========================
社員インタビュー
==========================*/
.interview {
    background: var(--gray0, #FFF);
}
.interview::before {
    content: none;
}
.interview .list-of-people {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15.38vw;
}
.interview ul li {
    width: 92.3vw;
}
.interview ul li .interview-wrap {
    display: flex;
    flex-direction: column;
    padding: 12.82vw 7.69vw;
    align-items: flex-start;
    gap: 10.25vw;
    margin: 0 auto;
}
.interview ul li .interview-wrap.color-z {
    background: var(--primary-black, #1A1A1A);
}
.interview ul li .interview-wrap.color-f {
    background: var(--primary-navy, #010022);
}
.interview ul li .interview-wrap .flex-r {
    width: 76.92vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10.25vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: -10%;
    background-size: 87%;
}
.interview ul li .interview-wrap.color-z .flex-r {
    background-image: url(../img/Interview-orsp.png);
}
.interview ul li .interview-wrap.color-f .flex-r {
    background-image: url(../img/Interview-gysp.png);
}
.interview ul li .interview-wrap .flex-r h3 {
    color: var(--gray0, #FFF);
    font-size: 6.15vw;
    font-weight: 500;
    line-height: 133.333%;
    letter-spacing: 0.24vw;
}
.interview ul li .interview-wrap .flex-r ul li {
    width: 76.92vw;
    color: var(--gray0, #FFF);
    font-size: 4.1vw;
    font-weight: 500;
    line-height: 190%;
    letter-spacing: 0.16vw;
}
/* アコーディオン */
.interview ul li .accordion {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
}
.interview ul li .accordion.color-z {
    border-right: 1px solid var(--primary-black, #1A1A1A);
    border-bottom: 1px solid var(--primary-black, #1A1A1A);
    border-left: 1px solid var(--primary-black, #1A1A1A);
}
.interview ul li .accordion-title {
    color: var(--primary-text, #333);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0.64px;
    text-align: center;
    padding: 9px 4vw 9px 0;
    width: 100%;
}
.interview ul li .accordion-title__close {
    display: none;
}
.interview ul li .accordion-content {
    display: none;
    padding: 52px 10px 30px;
}
.interview ul li .accordion-content p {
    color: var(--primary-text, #333);
    font-size: 3.84vw;
    font-weight: 500;
    line-height: 190%;
    letter-spacing: 0.15vw;
}
  /* 矢印 */
.interview ul li .accordion-title {
    position: relative;
}
.interview ul li .accordion-title::after {
    border-right: solid 2px var(--primary-text, #333);
    border-top: solid 2px var(--primary-text, #333);
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 24%;
    top: 35%;
    transform: rotate(135deg);
}
.interview ul li .accordion-title.open {
display: none;
}
.interview ul li .accordion-title__close.open {
    display: block;
    }
.interview ul li .accordion-title__close.open::after {
    border-right: solid 2px var(--primary-text, #333);
    border-top: solid 2px var(--primary-text, #333);
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 36%;
    top: 45%;
    transform: rotate(-45deg);
}
.accordion-content ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12.82vw;
}
.accordion-content ul li {
    display: flex;
    width: 76.92vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.69vw;
}
.accordion-content ul li h3 {
    color: var(--primary-orange, #E04100);
    font-size: 5.64vw;
    font-weight: 500;
    line-height: 163.636%;
    letter-spacing: 0.22vw;
}
@media (min-width: 768px) and (max-width: 1023px) {
    .interview ul li .interview-wrap {
        width: 700px;
        padding: 40px;
        gap: 40px;
    }
    .interview ul li .accordion {
        width: 700px;
        padding: 10px;
    }
    .interview ul li .interview-wrap .flex-r {
        width: 570px;
        gap: 4rem;
        margin: 0 auto;
        background-position-x: 30%;
        background-position-y: -22%;
        background-size: 70%;
    }
    .interview ul li .interview-wrap .flex-r h3 {
        font-size: 3rem;
    }
    .interview ul li .interview-wrap .flex-r ul li {
        width: auto;
        font-size: 1.6rem;
    }
    .interview ul li .accordion-content {
        padding: 30px 10px;
    }
    .interview ul li .accordion-content ul {
        gap: 50px;
    }
    .interview ul li .accordion-content ul li {
        width: 620px;
        gap: 30px;
    }
    .interview ul li .accordion-content ul li h3 {
        font-size: 2.4rem;
    }
    .interview ul li .accordion-content p {
        font-size: 1.6rem;
    }
    .tb-n {
        display: none;
    }
}
@media screen and (min-width:1024px) {
    .tb-n {
        display: block;
    }
    .interview {
        padding: 0 40px 160px;
    }
    .interview::before {

    }
    .interview .list-of-people {
        gap: 60px;
        max-width: 1128px;
        width: 100%;
    }
    .interview ul li {
        max-width: 1128px;
        width: 100%;
    }
    .interview ul li .interview-wrap {
        flex-direction: row;
        padding: 70px 92px 50px;
        align-items: flex-end;
        gap: 130px;
        margin: 0 auto;
    }
    .interview ul li .interview-wrap img {
        max-width: 450px;
    }
    .interview ul li .interview-wrap .flex-r {
        width: inherit;
        gap: 25px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position-x: right;
        background-position-y: -10%;
        background-size: 87%;
        padding-bottom: 30px;
    }
    .interview ul li .interview-wrap.color-z {
        background-image: url(../img/Interview-orsp.png);
        background-repeat: no-repeat;
        background-position-x: 82%;
        background-position-y: 28%;
        background-size: 608px;
    }
    .interview ul li .interview-wrap.color-f {
        background-image: url(../img/Interview-gysp.png);
        background-repeat: no-repeat;
        background-position-x: 80%;
        background-position-y: 28%;
        background-size: 608px;
    }
    .interview ul li .interview-wrap.color-z .flex-r {
        background-image: none;
    }
    .interview ul li .interview-wrap.color-f .flex-r {
        background-image: none;
    }
    .interview ul li .interview-wrap .flex-r h3 {
        font-size: 24px;
        line-height: 140%;
        letter-spacing: 0.96px;
    }
    .interview ul li .interview-wrap .flex-r ul li {
        width: inherit;
        font-size: 16px;
        letter-spacing: 0.64px;
        line-height: 170%;
    }
    /* アコーディオン */
    .interview ul li .accordion {
        margin-left: auto;
        margin-right: auto;
        position: relative;
        width: 100%;
    }
    .interview ul li .accordion.color-z {
        border-right: 1px solid var(--primary-black, #1A1A1A);
        border-bottom: 1px solid var(--primary-black, #1A1A1A);
        border-left: 1px solid var(--primary-black, #1A1A1A);
    }
    .interview ul li .accordion-title {
        color: var(--primary-text, #333);
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        line-height: 200%;
        letter-spacing: 0.64px;
        text-align: center;
        padding: 0 2.56vw 0 0;
        width: 100%;
    }
    .interview ul li .accordion-title__close {
        display: none;
    }
    .interview ul li .accordion-content {
        display: none;
        padding: 52px 10px 30px;
    }
    .interview ul li .accordion-content p {
        font-size: 16px;
        line-height: 190%;
        letter-spacing: 0.64px;
    }
      /* 矢印 */
    .interview ul li .accordion-title {
        position: relative;
        padding: 9px 0;
    }
    .interview ul li .accordion-title::after {
        border-right: solid 2px var(--primary-text, #333);
        border-top: solid 2px var(--primary-text, #333);
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        position: absolute;
        right: 40%;
        top: 35%;
        transform: rotate(135deg);
    }
    .interview ul li .accordion-title.open {
    display: none;
    }
    .interview ul li .accordion-title__close.open {
        display: block;
        }
    .interview ul li .accordion-title__close.open::after {
        border-right: solid 2px var(--primary-text, #333);
        border-top: solid 2px var(--primary-text, #333);
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        position: absolute;
        right: 45%;
        top: 48%;
        transform: rotate(-45deg);
    }
    .accordion-content ul {
        gap: 50px;
    }
    .accordion-content ul li {
        width: 800px;
        gap: 30px;
    }
    .accordion-content ul li h3 {
        font-size: 24px;
        line-height: 150%;
        letter-spacing: 0.96px;
    }
}


/*==========================
募集要項
==========================*/
.Application-details {
    background: var(--primary-bg, #F5F7F8);
    gap: 2.56vw;
}
.Application-details::before {
    border-color: transparent var(--primary-bg, #F5F7F8) transparent transparent;
    top: -50px;
}
.Application-details::after {
    border-style: solid;
    border-width: 50px 100vw 0 0;
    bottom: 0;
    content: "";
    height: 0;
    position: absolute;
    border-color: transparent var(--primary-black, #1A1A1A) transparent transparent;
}
.Application-details table tbody tr {
    display: flex;
    width: 82.05vw;
    padding: 7.69vw 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.15vw;
    border-bottom: 1px solid var(--gray60, #BABABA);
}
.Application-details table tbody tr th {
    color: var(--primary-navy, #010022);
    font-size: 4.61vw;
    font-weight: 700;
    line-height: 144.444%;
    letter-spacing: 0.18vw;
}
.Application-details table tbody tr td {
    color: var(--primary-text, #333);
    font-size: 4.1vw;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0.16vw;
}
@media (min-width: 768px) and (max-width: 1023px) {
    .Application-details::before {
        top: -100px;
    }
    .Application-details::after {
        border-width: 100px 100vw 0 0;
    }
    .Application-details table tbody tr {
        width: 700px;
        padding: 30px 0px;
        margin: 0 auto;
        gap: 10px;
    }
    .Application-details table tbody tr th {
        font-size: 1.8rem;
    }
    .Application-details table tbody tr td {
        font-size: 1.6rem;
    }
}
@media screen and (min-width:1024px) {
    .Application-details {
        gap: 50px;
    }
    .Application-details::before {
        top: -100px;
    }
    .Application-details::after {
        border-width: 100px 100vw 0 0;
    }
    .Application-details table tbody tr {
        display: flex;
        width: 800px;
        padding: 30px 0px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: inherit;
    }
    .Application-details table tbody tr th {
        font-size: 18px;
        letter-spacing: 0.72px;
    }
    .Application-details table tbody tr td {
        width: 618px;
        font-size: 16px;
        line-height: 190%;
        letter-spacing: 0.64px;
    }
    .btn, a.btn, button.btn {
        padding: 20px 40px;
    }
}





/* ボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-flat {
  overflow: hidden;
  padding: 2.2rem 4.6rem 2.2rem 3.6rem;
  color: #fff;
  border-radius: 0;
  background: var(--primary-orange, #E04100);
  margin-top: 7.69vw;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 170%;
  height: 500%;

  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);

  background: var(--primary-navy, #010022);
}

a.btn-flat:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

a.btn-flat span::after {
    content: '';
    position: absolute;
    top: 48%;
    right: -12px;
    transform: rotate(45deg) translateY(-50%);
    width: 7.5px;
    height: 7.5px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: var(--gray0, #FFF);
}
/* ボタン */
@media screen and (min-width:768px) {
    a.btn-flat {
        margin-top: 50px;
    }
}

/*==========================
店舗紹介
==========================*/
.shop {
    background: var(--primary-black, #1A1A1A);
    gap: 17.94vw;
}
.shop::before {
    border-color: var(--primary-black, #1A1A1A) transparent transparent transparent;
    bottom: -50px;
}
.shop h2 span {
    color: var(--gray0, #FFF);
}
.shop .shop-list {
    width: 82.05vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16.66vw;
}
.shop .shop-list li div {
    width: 82.05vw;
    display: flex;
    padding: 4.12vw 7.69vw 9.25vw 7.69vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4vw;
    background: var(--gray10, #F3F3F3);
}
.shop .shop-list li div h3 {
    color: var(--primary-navy, #010022);
    font-size: 4.61vw;
    font-style: normal;
    line-height: 144.444%;
    letter-spacing: 0.18vw;
}
.shop .shop-list li div p {
    color: var(--primary-text, #333);
}
.shop .shop-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10.25vw;
}
.shop .shop-brand li a img {
    width: 58.97vw;
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media (min-width: 768px) and (max-width: 1099px) {
    .shop  {
        padding: 80px 0;
        gap: 40px;
    }
    section.shop::before {
        border-width: 50px 100vw 0 0;
    }
    .shop .shop-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 50px 30px;
        justify-content: space-between;
    }
    .shop .shop-list li {
        width: 47%;
    }
    .shop .shop-list li div {
        width: 100%;
        gap: 10px;
        padding: 20px 30px 40px;
        height: 220px;
    }
    .shop .shop-list li div h3 {
        font-size: 1.8rem;
    }
    .shop .shop-list li div.shop3 {
        height: 160px;
    }
}
@media (min-width: 768px) {
    .shop .shop-brand {
        flex-direction: row;
        gap: 40px;
        margin-top: 30px;
    }
    .shop .shop-brand li a img {
        width: 200px;
        -webkit-transition: all .3s;
        transition: all .3s;
    }    
    .shop .shop-brand li a img:hover {
        transform: scale(1.1,1.1);
    }  
}
@media screen and (min-width:1100px) {
    .shop {
        padding: 80px 0px 70px 0px;
        gap: 70px;
    }
    .shop::before {
        border-color: var(--primary-black, #1A1A1A) transparent transparent transparent;
        bottom: -100px;
    }
    .shop .shop-list {
        max-width: 1060px;
        width: fit-content;
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: space-between;
        gap: 65px 50px;
        flex-wrap: wrap;
    }
    .shop .shop-list li {

    }
    .shop .shop-list li img {
        max-width: 320px;
        width: 100%;
    }
    .shop .shop-list li div {
        max-width: 320px;
        width: 100%;
        padding: 12px 30px 40px 30px;
        gap:5px;
    }
    .shop .shop-list li div.shop1 {
        height: 161px;
    }
    .shop .shop-list li div.shop2 {
        height: 184px;
    }
    .shop .shop-list li div.shop3 {
        height: 131px;
    }
    .shop .shop-list li div h3 {
        font-size: 18px;
        line-height: 144.444%;
        letter-spacing: 0.72px;
    }
    .shop .shop-brand {
        flex-direction: row;
        gap: 40px;
    }
    .shop .shop-brand li a img {
        width: 230px;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    
    .shop .shop-brand li a img:hover {
        transform: scale(1.1,1.1);
    } 
    
}

/*==========================
footer
==========================*/
.footer {
    background-image: url(../img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    height: 64.1vw;
    background-size: 140%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 27.56vw 0 12.56vw;
}
.footer a {
    color: var(--gray0, #FFF);
    margin-bottom: 12.82vw;
    font-size: 3.84vw;
    line-height: 190%; /* 30.4px */
    letter-spacing: 0.64px;
}
.footer p {
    color: var(--gray0, #FFF);
    font-size: 3.58vw;
    font-weight: 500;
    line-height: 26px; /* 185.714% */
}
/* @media (min-width: 768px) and (max-width: 1023px) {
    .footer {
        height: 400px;
        padding-top: 80px;
    }
} */
@media screen and (min-width: 768px) {
    .footer {
        height: 400px;
        background-size: 140%;
        background-position-x: left;
        background-position-y: 10%;
        padding: 0;
    }
    .footer a {
        margin-top: 170px;
        font-size: 1.6rem;
        margin-bottom: 60px;
    }
    .footer p {
        font-size: 1.6rem;
    }
}




/*==========================
下層のfooter
==========================*/
.lower-footer {
    background-color: #1A1A1A;
    background-image: none;
}

@media screen and (min-width: 768px) {
    .lower-footer {
        height: 220px;
    }
    .lower-footer a {
        margin: 60px 0;
        text-decoration: underline;
        font-size: 1.4rem;
    }
}

/*==========================
プラボリ
==========================*/
.privacy {
    padding: 30vw 5vw 20vw;
    background: var(--primary-bg, #F5F7F8);
}
.privacy::before {
    content: none;
}

.privacy .box-white {
    padding: 10vw 6vw;
    background-color: #fff;
}

.privacy .privacy-ttl {
    font-size: 5.64vw;
    text-align: center;
    font-weight: 600;
    color: inherit;
    text-shadow: none;
    line-height: inherit;
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 6vw;
}

.privacy .box-white .privacy-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10vw;
}

.privacy .box-white .privacy-wrap .privacy-text p {
    font-size: 3.84vw;
    line-height: 200%;
}

.privacy .box-white .privacy-wrap .privacy-text dl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5vw;
}

.privacy .box-white .privacy-wrap .privacy-text dl dt {
    font-size: 4.61vw;
}

.privacy .box-white .privacy-wrap .privacy-text dl dd {
    font-size: 3.84vw;
    line-height: 200%;
}

@media screen and (min-width: 768px) {
    .privacy {    
        padding: 120px 20px 60px;
    }
    
    .privacy .box-white {
        max-width: 900px;
        padding: 50px;
    }
    
    .privacy .privacy-ttl {
        font-size: 24px;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .privacy .box-white .privacy-wrap {
        gap: 40px;
    }
    
    .privacy .box-white .privacy-wrap .privacy-text p {
        font-size: 15px;
    }
    
    .privacy .box-white .privacy-wrap .privacy-text dl {
        gap: 20px;
    }
    
    .privacy .box-white .privacy-wrap .privacy-text dl dt {
        font-size: 18px;
    }
    
    .privacy .box-white .privacy-wrap .privacy-text dl dd {
        font-size: 15px;
    }
}