@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --font-sans-serif: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --font-en: 'Avenir','Poppins', sans-serif;
    --font-en2:"Prompt", sans-serif;
    --font-zen-kaku:"Zen Kaku Gothic New", sans-serif;
    --main-black: #1a1a1a;
    --main-black2:#101010;
    --main-blue: #00a5e3;
    --main-lightblue: #ccedf9;
    --main-lightblue2: #bfe8f8;
    --main-lightblue3: #e0f4fc;
    --main-darkblue: #00154b;
    --main-blue_grad: linear-gradient(35deg,#00154b,#004da0 77%);
    --main-green:#abcd03;
    --main-yellow:#DAEF79;
    --main-lightgreen:#f2f7d9;
    --main-red:#D65D8E;
    --main-pink:#FFAACC;
    --main-lightred:#fceaf1;
    --main-orange:#f78826;
    --main-gray: #eeeeef;
    --color-gray: #999999;
    --color-gray2: #666666;
    --text-blue:#0098d9;
    --link-blue:#003ebb;
    --text-red:#ed1c24;
    --bg-gray:#f2f2f2;
    --bg-gray2:#f7f7f7;
    --bg-gray3:#f0f1f2;
    --bg-gray4: #f8f8f8;
    --bg-black:#333333;
    --bg-black2:#1a1a1a;
    --bg-lightgreen:#fcfdf5;
    --main-gray_border: #cccccc;
    --color-cate1-bg:#fff2e5;
    --color-cate2-bg:#f5f9e1;
    --color-cate3-bg:#e0f4fc;
    --color-cate4-bg:#fceaf1;
    --color-cate1-text:#ff9326;
    --color-cate2-text:#abcd03;
    --color-cate3-text:#0099e6;
    --color-cate4-text:#e9528e;
    --border-gray:#e6e6e6;
    --border-gray2:#d9d9d9;
    --border-gray3:#C1C1C1;
    --border-gray4:#bebebe;
    --border-blue: #0a0e0f;
    --box-shadow_sharp: 0 5px 0 rgba(0,0,0,.1);
    --inner-width--pc: 1200px;
    --inner-width-contents: 1000px;
    --inner-width--sp: 92%;
    --inner-width--sp_vw: 92vw;
    --inner-width: var(--inner-width--pc);
    --inner-sidespace--sp: 4%;
    --inner-sidespace--sp_vw:4vw;
    --trans-ease: .3s ease;
    --LineHeight: calc(1em + 12px);
    --blocksLineHeight: 1.5;
    --blocksLHmargin: calc((var(--blocksLineHeight) - 1) / 2 * 1em);
    --header-hit:90px;
}
@media screen and (max-width:767px){
    :root{
        --inner-width: var(--inner-width--sp);
        --inner-width-contents: var(--inner-width--sp);
        --header-hit:60px;
    }
}
/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: 1200px;
    background: #fff;
    color: var(--main-black);
    font-family: var(--font-sans-serif);
    font-size: 17px;
    font-size: 1.7rem;
    line-height: normal;
    text-align: left;
    word-wrap: break-word;
}
*{
    letter-spacing: .02em;
}
.sp{
    display: none;
}
a[href^="tel:"]{
    pointer-events: none;
}
/*--- sp ---*/
@media screen and (max-width:767px){
    body{
        min-width: 320px;
        font-size: 1.4rem;
    }
    body.is--min_win-height{
        position: relative;
    }
    body.is--min_win-height .footer{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    body.is--min_win-height .footer .page-top-btn-block{
        display: none;
    }
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    a[href^="tel:"]{
        pointer-events: auto;
        text-decoration: underline;
    }
    img{
        width: 100%;
        height: auto;
    }
}
/*-------------
data-effect
-------------*/
*[data-effect^="fade"]{
    opacity: 0;
    transition: transform .8s ease,opacity .8s ease;
}
*[data-effect^="fade-left"]{
    transform: translateX(-50px);
}
*[data-effect^="fade-right"]{
    transform: translateX(50px);
}
*[data-effect^="fade-up"]{
    transform: translateY(50px);
}
*[data-effect^="fade"].effected{
    opacity: 1;
    transform: none;
}
@media screen and (max-width:767px){
    *[data-effect^="fade"]{
        transition: transform .4s ease,opacity .4s ease;
    }
}
/*-------------
common
-------------*/
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
.preload *,
.preload *::before,
.preload *::after{
    transition: none!important;
}
*:has(> wbr){
    word-break: keep-all;
}
.textCenter,
.txt_c{
    text-align: center;
}
.textRight,
.txt_r{
    text-align: right;
}
.textIndent,
.txt_ind {
    text-indent: -1em;
    padding-left: 1em;
}
.textRed,
.txtRed{
    color: var(--text-red);
}
.textNowrap{
    white-space: nowrap;
}
@media screen and (min-width:769px){
    .textLink:not(:hover){
        text-decoration: underline;
    }
}
@media screen and (max-width:767px){
    .textLink:not(:active){
        text-decoration: underline;
    }
}
.textSmall{
    font-size: .7em;
}
.mB5,
.m_b5{
	margin-bottom: 5px!important;
}
.mB10,
.m_b10{
	margin-bottom: 10px!important;
}
.mB15,
.m_b15{
	margin-bottom: 15px!important;
}
.mB20,
.m_b20{
	margin-bottom: 20px!important;
}
.mB30,
.m_b30{
	margin-bottom: 30px!important;
}
.mR10,
.m_r10{
	margin-right: 10px!important;
}
.floatL,
.l{
    float: left;
}
.floatR,
.r{
    float: right;
}

/*-------------
accordion
-------------*/
.accordion-btn:not(.is--ready){
    pointer-events: none;
}
.accordion-btn.is--ready{
    cursor: pointer;
}
@media screen and (max-width:767px){
    .accordion-btn--sp:not(.is--ready){
        pointer-events: none;
    }
    .accordion-btn--sp.is--ready{
        cursor: pointer;
    }
}
.accordion-btn:not(.accordion--open):not([data-target-class]) + *:not(.accordion-container),
.accordion-content{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width:767px){
    .accordion-btn--sp:not(.accordion--open):not([data-target-class]) + *:not(.accordion-container),
    .accordion-content--sp{
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
}
.accordion-container{
    overflow: hidden;
    transition: height .3s ease;
}
.accordion-container.is--hit_low{
    transition: height .2s ease;
}
.accordion-container:not(.is--open){
    height: 0!important;
}
@media screen and (min-width:769px){
    .accordion-container.is--limit_sp{
        height: auto!important;
    }
}

/*-------------
cookie consent
-------------*/
.not-concent-msg-box{
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 100%);
    width: 100%;
}
.not-concent-msg-box:has(._loaded) .not-concent-msg{
    display: none;
}
.not-concent-msg{
    position: relative;
    z-index: 1;
    background: var(--bg-color1);
}
.not-concent-msg-box .not-concent-msg{
    transform: translateX(-100%);
}
.not-concent-box{
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    align-items: center;
    gap: min(30px, 4.6875vw) 0;
    width: 100%;
    height: 100%;
    padding: min(50px, 6.25vw) min(40px, 4.6875vw);
}
.not-concent-box__msg{
    display: flex;
    align-items: center;
    align-self: flex-end;
    position: relative;
    min-height: 62px;
    padding-left: 70px;
    color: #333;
    font-size: 1.6rem;
    line-height: calc(1em + 14px);
}
.not-concent-box__msg::before{
    position: absolute;
    top: 7px;
    left: 0;
    width: 50px;
    height: 50px;
    border: solid 5px #999;
    border-radius: 50%;
    background: linear-gradient(to top, #999 0 6px, rgba(255,255,255,0) 6px 9px, #999 9px) no-repeat center / 6px 26px;
    content: "";
}
@media screen and (max-width:767px){
    .not-concent-box__msg{
        min-height: 58px;
        padding-left: 50px;
        font-size: 1.3rem;
        line-height: calc(1em + 10px);
    }
    .not-concent-box__msg::before{
        top: 4px;
        width: 40px;
        height: 40px;
        border-width: 4px;
        background: linear-gradient(to top, #999 0 4px, rgba(255,255,255,0) 4px 7px, #999 7px) no-repeat center / 4px 20px;
    }
}
.not-concent-box__alt{
    display: flex;
    justify-content: flex-start;
    align-self: flex-start;
}
.not-concent-box__alt-btn{
    min-width: 50%;
    overflow: hidden;
    border-radius: 99px;
}
.not-concent-box__alt-btn a{
    display: flex;
    align-items: center;
    position: relative;
    min-height: 60px;
    padding: 8px 55px 9px 25px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" id="a" width="16" height="16" data-name="svg" viewBox="0 0 16 16"><defs><style>.b{fill:%23fff}</style></defs><path d="M14 13c0 .551-.449 1-1 1H3c-.551 0-1-.449-1-1V3c0-.551.449-1 1-1h2V0H3a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3v-2h-2z" class="b"/><path d="M8 0v2h4L5 9l2 2 7-7v4h2V0z" class="b"/></svg>') no-repeat center right 24px / 16px 16px, var(--main-color2);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .04em;
    line-height: calc(1em + 3px);
    word-break: break-all;
}
@media screen and (max-width:767px){
    .not-concent-box__alt-btn a{
        min-height: 50px;
        padding: 8px 45px 9px 20px;
        background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" id="a" width="14" height="14" data-name="svg" viewBox="0 0 14 14"><defs><style>.b{fill:%23fff}</style></defs><path d="M12 11c0 .551-.449 1-1 1H3c-.551 0-1-.449-1-1V3c0-.551.449-1 1-1h2V0H3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V9h-2z" class="b"/><path d="M7 0v2h3L4 8l2 2 6-6v3h2V0z" class="b"/></svg>') no-repeat center right 21px / 14px 14px, var(--main-color2);
        font-size: 1.4rem;
    }
}
.movies-not-concent{
    width: 720px;
    max-width: 100%;
    height: 405px;
    background: #fff;
}
.movies-not-concent .not-concent-msg-box{
    height: 100%;
}
@media screen and (max-width:767px){
    .movies-not-concent{
        height: auto;
    }
}

/*-------------
header
-------------*/
.header{
    position: fixed;
    z-index: 99;
    width: 100%;
    background:transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.header.is-scrolled{
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(12px);
}
/* body:not(.top) .header{
    border-bottom: solid 1px var(--border-gray);
} */
body.is-open{
    overflow: hidden;
}
.header-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
    min-height: var(--header-hit);
    margin: 0 auto;
}
.header-logo{
    flex: 0 0 auto;
    margin-right: 30px;
    padding-left: 40px;
}
.header-menu{
    flex: 0 1 100%;
    margin-left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/*--- tb ---*/
@media screen and (max-width:1140px){
    .header-nav-list-item.tb:nth-of-type(6){
        display: block;
    }
}
/*--- tb ---*/
@media screen and (max-width:1120px){
    .header-nav-list-item.tb:nth-of-type(5){
        display: block;
    }
}
/*--- tb ---*/
@media screen and (max-width:1000px){
    .header-nav-list-item.tb:nth-of-type(4){
        display: block;
    }
}
/*--- tb ---*/
@media screen and (max-width:880px){
    .header-nav-list-item.tb:nth-of-type(3){
        display: block;
    }
}
/*--- sp ---*/
@media screen and (max-width:767px){
    .header-nav-list-item.tb{
        display: none!important;
    }
}
/*.header-nav*/
.header-nav-list-item{
    border-bottom: solid 1px var(--main-gray_border);
}
.header-nav-list-item.tb{
    display: none;
}
/*--- sp ---*/
@media screen and (max-width:767px){
    .header-nav-list-item.tb{
        display: none;
    }
}
.header-nav-list-item__link{
    padding: 15px 30px 15px 0;
    box-sizing: border-box;
    display: block;
    font-size: 1.5rem;
    position: relative;
}
.header-nav-list-item__link:before {
    position: absolute;
    top: calc(50% - 2px);
    right: 21px;
    transform: rotate(45deg);
    width: 4px;
    height: 4px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    content: "";
    z-index: 1;
}
.header-nav-list-item__link:after {
    position: absolute;
    top: calc(50% - 7.5px);
    right: 15px;
    border-radius: 50%;
    background: var(--bg-black);
    width: 15px;
    height: 15px;
    content: "";
}
.header-nav-list-item_pass{
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
    border-radius : 10px;
}
.header-nav-list-item_pass a{
    background: #fff;
    border-radius : 10px;
    padding: 15px;
    box-sizing: border-box;
}
.header-nav:not(.is--active),
.header-nav:not(.is--active) *{
    z-index: -99!important;
    pointer-events: none!important;
}
.header-nav:not(.is--show){
    opacity: 0;
}
.header-nav:not(.is--show) .header-nav-wrapper{
    transform: translateX(100%);
    transition: all ease .3s;
}
.header-nav{
    width: 100%;
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 100px 40px 40px;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity var(--trans-ease);
    cursor: pointer;
}
.header-nav-wrapper{
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    position: absolute;
    top:0;
    right: 0;
    width: auto;
    height: 100%;
    margin: 0;
    padding: 100px 0 40px;
    background: var(--bg-gray);
    transform: translateX(0);
    transition: all ease .3s;
    z-index: 1;
    cursor: auto;
}
.header-nav-inner{
    width: 460px;
    overflow: auto;
    height: calc(100vh - 140px);
    padding: 0 40px 20px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}
.header-nav-title{
    font-size: 1.8rem;
    font-weight: 500;
    padding-left: 15px;
    border-left: solid 3px #E9518E;
    margin-bottom: 10px;
}
.header-nav-title.en{
    font-family: var(--font-en2);
    font-weight: 500;
}
.header-nav-title:not(:first-of-type){
    margin-top: 25px;
}
.header-nav-title:nth-child(3n+2){
    border-color: #AACD06;
}
.header-nav-title:nth-child(3n){
    border-color: #1BA5E3;
}
.header-nav-inner .top-line{
    margin-top: 50px;
    border-top:solid 1px var(--main-gray_border);
}
/* .header-nav-list{
    width: 380px;
    overflow: auto;
    height: calc(100vh - 140px);
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
} */
/* Chrome, Safari, Edge用の設定 */
.header-nav-inner::-webkit-scrollbar {
    width: 4px;
}
.header-nav-inner::-webkit-scrollbar-track {
    background: transparent;
}
.header-nav-inner::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.header-nav-inner::-webkit-scrollbar-thumb:hover {
    background: #999; 
}
.header-nav-btn{
    cursor: pointer;
    display: block;
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 5px;
    padding-top: 35px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    margin-right: 10px;
    letter-spacing: 0.1rem;
    transition: all ease .3s;
}
.header-nav-btn span:before{
    content: "";
    background: var(--main-black);
    width: 40px;
    height: 2px;
    position: absolute;
    top: 29px;
    left: 10px;
    border-radius: 3px;
}
.header-nav-btn span:after{
    content: "";
    background: var(--main-black);
    width: 40px;
    height: 2px;
    position: absolute;
    top: 11px;
    left: 10px;
    border-radius: 3px;
}
.header-nav-btn.menu--open{
    background: var(--main-black);
    color: #fff;
    position: absolute;
    top: 15px;
    right: 40px;
    margin-right: 0;
    transition: all ease .3s;
}
.header-nav-btn::before,
.header-nav-btn::after{
    position: absolute;
    top: 20px;
    left: 10px;
    width: 40px;
    height: 2px;
    background: var(--main-black);
    content: "";
    transition: transform var(--trans-ease);
    border-radius: 3px;
}
.header-nav-btn.menu--open::before{
    transform: rotate(45deg);
    background: #fff;
}
.header-nav-btn.menu--open::after{
    transform: rotate(-45deg);
    background: #fff;
}
.header-nav-btn.menu--open span:after,
.header-nav-btn.menu--open span:before{
    content: none;
}
/*--- sp ---*/
@media screen and (max-width:767px){
    /* .wrapper.header-menu--open > *:not(.header){
        filter: blur(2px);
    } */
    /* .header-menu:before{
        content: "";
        background: #fff;
        width: 100%;
        height: 50px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    } */
    .header-wrapper{
        max-width: inherit;
    }
    .header-logo{
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
        height: 50px;
        margin: 0;
        padding-left: var(--inner-sidespace--sp);
        border-bottom: solid 1px var(--bg-darkblue);
        margin-right: 0;
        z-index: 10;
    }
    .header-logo img{
        width: auto;
        height: 40px;
    }
    .header-btn1{
        width: var(--inner-width--sp);
        margin: 0 auto 20px;
    }
    .header-btn2{
        width: var(--inner-width--sp);
        margin: 0 auto 20px;
    }
    .header-tel-bnr{
        width: 100%;
        margin-top: auto;
        border: none;
    }
    .header-tel-bnr__link{
        width: 100%;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: solid 1px var(--bg-darkblue);
    }
    .header-tel-bnr__link img{
        display: block;
        width: 260px;
        margin: 0 auto;
    }
    .header-nav-inner .top-line{
        margin-top: 30px;
        border-top:solid 1px var(--main-gray_border);
    }
    /* .header-nav-list{
        width: 100%;
        margin: 0 auto 10px;
        box-sizing: border-box;
        overflow: auto;
        height: calc(100vh - 70px);
        padding-bottom: 20px;
    } */
    .header-nav-list-item:last-of-type{
        border-bottom: none;
    }
    .header-nav-list-item__link {
        padding: 15px 35px 15px 5px;
    }
    .header-nav-list-item__link:after {
        right: 5px;
    }
    .header-nav-list-item__link:before {
        right: 11px;
    }
    .header-nav-list-item_pass {
        width: var(--inner-width);
        margin: 0 auto;
    }
    .header-nav-list-item_pass a:before{
        right: 26px;
    }
    .header-nav-list-item_pass a:after{
        right: 20px;
    }
    .header-nav-btn{
        width: 50px;
        height: 50px;
        padding-top: 30px;
        font-size: 12px;
        font-size: 1.2rem;
        margin-right: 50px;
    }
    .header-nav-btn::before, 
    .header-nav-btn::after{
        top: 20px;
        left: 10px;
        width: 30px;
        height: 2px;
    }
    .header-nav-btn span:after {
        width: 30px;
        height: 2px;
        position: absolute;
        top: 13px;
        left: 10px;
    }
    .header-nav-btn span:before {
        width: 30px;
        height: 2px;
        position: absolute;
        top: 27px;
        left: 10px;
    }
    .header-nav-btn.menu--open{
        top: 5px;
        right: var(--inner-sidespace--sp);
    }
    .header-nav{
        padding: 0;
    }
    .header-nav-wrapper{
        width: 100%;
        padding: 70px 0;
        height: auto;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
    }
    .header-nav-inner{
        width: 100%;
        padding: 0 var(--inner-sidespace--sp) 20px;
    }
}
/*header-entry-btn*/
.header-entry-btn{
    width: 140px;
    height: 44px;
    background: var(--main-red);
    border-radius: 10px 0 0 10px;
}
.header-entry-btn a{
    font-size: 14px;
    font-size: 1.4rem;
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
    position: relative;
}
.header-entry-btn a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: calc(50% + 2px);
    width: 7px;
    height: 1px;
    background: #fff;
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.header-entry-btn a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: calc(50% + 2px);
    width: 20px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}
@media (any-hover: hover){
    .header-entry-btn a:hover::after{
        transform: translateX(10px);
    }
    .header-entry-btn a:hover::before {
        transform: translateX(10px) rotate(45deg);
    }
}
/*sp*/
@media screen and (max-width:767px){
    .header-entry-btn{
        position: absolute;
        top: 10px;
        right: 0;
        width: 40px;
        height: 120px;
    }
    .header-entry-btn a{
        padding-left: 0;
        writing-mode: vertical-rl;
        align-items: center;
        justify-content: center;
        padding-bottom: 20px;
    }
    .header-menu--open_fixed .header-entry-btn{
        opacity: 0;
        z-index: -1;
    }
    .header-entry-btn a::after {
        content: "";
        position: absolute;
        right: 10px;
        top: auto;
        bottom: 20px;
        width: 20px;
        height: 1px;
        background: #fff;
        transition: all 0.3s;
    }
    .header-entry-btn a::before {
        content: "";
        position: absolute;
        right: 10px;
        top: auto;
        bottom: 20px;
        width: 8px;
        height: 1px;
        background: #fff;
        transform-origin: right top;
        transform: rotate(45deg);
        transition: all 0.3s;
    }
    .header-entry-btn a:hover::after,
    .header-entry-btn a:hover::before {
        right: 10px;
    }
}
/*-------------
footer
-------------*/
.footer{
    width: 100%;
    background: #fff;
    margin-top: -40px;
    padding: 50px 0 20px;
    box-sizing: border-box;
    position: relative;
    border-radius: 40px 40px 0 0;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 8px;
}
.footer-content{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-wrapper{
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 0;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.footer-wrapper:after{
    content: none;
}
.footer-logo{
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.footer-info-text{
    font-size: 1.3rem;
    color: var(--main-black2);
    line-height: calc(1em + 11px);
}
.footer-inner{
    margin-right: 35px;
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.footer-inner-list{
    min-width: 170px;
    line-height: calc(1em + 11px);
}
.footer-inner--items__link{
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (any-hover: hover){
    .footer-inner--items__link:hover{
        text-decoration: underline;
    }
}
.footer-inner--items__link:before{
    content: "";
    background: url(../../../recruit_images/icon_link.svg) no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
}
/* footer-pagetop-btn */
.footer-pagetop-block{
    position: absolute;
    top: 30px;
    right: 40px;
    width: 100%;
    height: 105px;
}
.footer-pagetop-btn{
    display: block;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 99;
    width: 17px;
    height: 80px;
    transition: opacity ease .3s;
    z-index: 10;
}
.footer-pagetop-btn img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-pagetop-btn.is--fixed{
    position: absolute;
}
.footer-pagetop-btn:not(.is--show){
    opacity: 0;
    pointer-events: none;
}
.footer-copy{
    font-family: var(--font-zen-kaku);
    font-size: 1.0rem;
    margin-left: 40px;
    margin-top: 15px;
}
@media screen and (min-width:769px){
    .footer-pagetop-btn img{
        transition: transform ease .3s;
    }
    .footer-pagetop-btn:hover img{
        transform: translateY(-10px);
    }
}
/* sp */
@media screen and (max-width:767px){
    .footer{
        width: 100%;
        margin-top: -20px;
        padding: 25px 0 30px;
        box-sizing: border-box;
        border-radius: 20px 20px 0 0;
    }
    .footer-wrapper{
        width: var(--inner-width);
        margin: 0 auto;
        flex-flow: column;
        padding: 0;
        gap: 20px;
    }
    .footer-logo {
        width: 150px;
        margin: 0 auto;
    }
    .footer-inner {
        margin-right: 0;
        display: flex;
        gap: 0;
        position: relative;
        z-index: 1;
        border-top: solid 1px var(--border-gray3);
        border-bottom: solid 1px var(--border-gray3);
        padding: 20px 0;
        box-sizing: border-box;
    }
    .footer-inner-list {
        min-width: inherit;
        width: 50%;
        line-height: calc(1em + 16px);
    }
    .footer-info-text {
        font-size: 1.2rem;
        color: var(--main-black2);
        line-height: calc(1em + 11px);
    }
    .footer-copy {
        margin-left:var(--inner-sidespace--sp);
        margin-top: 10px;
    }
     /* footer-pagetop-btn */
    .footer-pagetop-block{
        top: auto;
        bottom: 0;
        right: 0;
    }
    .footer-inner--items__link {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }
}
/*--------------------
bnr-sec
--------------------*/
.bnr-sec{
    padding: 100px 0;
    box-sizing: border-box;
    background: url(../../../recruit_images/bnr-sec.jpg) no-repeat;
    background-size: cover!important;
    position: relative;
}
.bnr-sec.is-footer{
    padding-bottom: 160px;
}
.bnr-sec + .footer{
    margin-top: -60px;
}
.bnr-sec:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
}
.bnr-sec-text{
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}
.bnr-sec-btn.btn1{
    margin-top: 20px;
}
/* sp */
@media screen and (max-width:767px){
    .bnr-sec {
        padding: 30px 0;
        box-sizing: border-box;
        background: url(../../../recruit_images/bnr-sec@sp.jpg) no-repeat;
        background-size: cover;
        position: relative;
        display: flex;
        flex-flow: column;
        justify-content: center;
        width: 100%;
        aspect-ratio: 25 / 12;
    }
    .bnr-sec.is-footer {
        padding-bottom: 50px;
    }
    .bnr-sec + .footer{
        margin-top: -20px;
    }
    .bnr-sec-text {
        font-size: 1.6rem;
        z-index: 1;
    }
    .bnr-sec-btn.btn1{
        margin-top: 15px;
    }
}
/*-------------------
btn
-------------------*/
.btn1{
    width: 250px;
    height: 50px;
    margin: 0 auto;
}
.btn1 a{
    font-size: 1.8rem;
    font-weight: 500;
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
    position: relative;
    background: var(--main-red);
    border-radius: 30px;
    padding: 0 20px;
}
.btn1 a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: calc(50% + 2px);
    width: 7px;
    height: 1px;
    background: #fff;
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.btn1 a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: calc(50% + 2px);
    width: 20px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}
@media (any-hover: hover){
    .btn1 a:hover::after{
        transform: translateX(10px);
    }
    .btn1 a:hover::before {
        transform: translateX(10px) rotate(45deg);
    }
}
/* sp */
@media screen and (max-width:767px){
    .btn1 {
        width: 190px;
        height: 40px;
        margin: 0 auto;
    }
    .btn1 a{
        font-size: 1.4rem;
        font-weight: 500;
        display: flex;
        width: 100%;
        height: 100%;
        color: #fff;
        display: flex;
        align-items: center;
        padding-left: 15px;
        position: relative;
        background: var(--main-red);
        border-radius: 30px;
        padding: 0 20px;
    }
}
/*-------------
contents
-------------*/
.contents{
    padding-top: var(--header-hit);
    padding-bottom: 200px;
}
.contents.top{
    padding-bottom: 80px;
}
/* sp */
@media screen and (max-width:767px){
    .contents{
        padding-bottom: 70px;
    }
    .contents.top{
        padding-bottom: 50px;
    }
    .header-menu--open_fixed{
        width: 100%;
        height: 100%;
        /* position: fixed; */
    }
}
/*-------------
top-mainvisual
-------------*/
.top-mainvisual{
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    min-height: 600px;
    margin: 0 auto 50px;
    min-width: 1024px;
}
.top-mainvisual-slider-item img{
    width: 100%;
    height: auto;
}
.top-mainvisual-slider-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(0% - (1920px - 100vw) * 0.4);
    left: max(-26%, calc(0% - (1920px - 100vw) * 0.4));
    width: 100%;
    height: calc(100% + 1px);
    background: url(../../../recruit_images/top_mainvisual_bg_pc.svg) no-repeat;
    background-size: contain;
    z-index: 10;
}
/*1920px以上*/
@media screen and (min-width:1920px){
.top-mainvisual-slider-item::before {
left:0;
}
}
.top-mainvisual .keen-slider-arrow{
    display: none;
}
.top-mainvisual-catch{
    position: absolute;
    top: 50%;
    left: 90px;
    transform: translateY(-50%);
    z-index: 1;
}
.top-mainvisual-catch-main-title{
    font-size: 5.0rem;
    font-weight: bold;
    letter-spacing: 1rem;
    -webkit-text-stroke: 2px #fff;
    stroke: #fff;
    paint-order: stroke fill;
}
.top-mainvisual-catch-main-text{
    width: 300px;
    margin-top: 20px;
    background: #fff;
    border-radius: 10px;
    font-size: 1.4rem;
    padding: 20px;
    box-sizing: border-box;
    margin-left: -20px;
    line-height: calc(1em + 11px);
}
/*sp*/
@media screen and (max-width:767px){
    .top-mainvisual{
        min-width: inherit;
        max-width: inherit;
        min-height: inherit;
        width: 100%;
        height: auto;
        margin: 0 auto 25px;
    }
    .top-mainvisual-slider-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -26%;
        width: 100%;
        height: 100%;
        background: url(../../../recruit_images/top_mainvisual_bg_sp.svg) no-repeat;
        background-size: contain;
        z-index: 10;
    }
    .top-mainvisual-catch {
        position: absolute;
        top: calc(var(--header-hit) + 10px);
        left: var(--inner-sidespace--sp);
        z-index: 1;
    }
    .top-mainvisual-catch-main-title{
        font-size: 2.4rem;
        font-weight: bold;
        letter-spacing: 0.2rem;
    }
    .top-mainvisual-catch-main-text {
        width: var(--inner-width);
        margin-top: 20px;
        background: #fff;
        border-radius: 10px;
        font-size: 1.4rem;
        padding: 0;
        box-sizing: border-box;
        line-height: calc(1em + 11px);
        margin: 25px auto 0;
    }
}
#js-top-mainvisual-slider.top-mainvisual-slider {
    display: block;
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    /* aspect-ratio: 1440 / 770;  */
    overflow: hidden;
    min-height: 600px;
}
/*sp*/
@media screen and (max-width: 767px) {
    #js-top-mainvisual-slider.top-mainvisual-slider {
        height: auto;
        aspect-ratio: 750 / 551;
        min-height: inherit;
    }
}
.top-mainvisual-slider-item.keen-slider__slide {
    position: absolute!important; 
    top: 0;
    left: 0;
    width: 100%!important;
    height: 100%;
    opacity: 0; 
    z-index: 0;
    transform: none !important; 
}
#js-top-mainvisual-slider .top-mainvisual-slider-item picture{
    width: 100%;
    height: 100%;
}
.top-mainvisual-slider-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}
/*sp*/
@media screen and (max-width: 767px) {
    .top-mainvisual-slider-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}
.top-mainvisual .keen-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: -20px;
    left: 13.2%;
    z-index: 10;
}
.top-mainvisual .keen-slider-dot {
    width: 40px;
    height: 4px;
    background: #000;
    border-radius: 0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}
.top-mainvisual .keen-slider-dot--active {
    background: #e95295; 
}
/*sp*/
@media screen and (max-width:767px){
    .top-mainvisual .keen-slider-dots {
        display: none;
    }
}
/*-------------
top
-------------*/
/*top-my_navi*/
.top-my_navi{
    width: 770px;
    height: 80px;
    background: var(--main-yellow);
    margin: 0 auto 20px;
    border: solid 2px var(--main-black2);
    border-radius: 10px;
    display: flex;
    gap: 50px;
    align-items: center;
    overflow: hidden;
}
.top-my_navi-icon{
    min-width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.top-my_navi-icon::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -25px;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--main-black2);
    border-right: 2px solid var(--main-black2);
    transform: rotate(45deg);
    z-index: 1;
}
.top-my_navi-text {
    flex: 0 1 100%;
    text-align: center;
}
/*sp*/
@media screen and (max-width:767px){
    .top-my_navi{
        width: var(--inner-width);
        height: 70px;
        padding: 10px;
        box-sizing: border-box;
        gap: 30px;
        border-width: 1px;
        margin-bottom: 25px;
    }
    .top-my_navi-icon {
        min-width: 40px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .top-my_navi-icon img {
        width: 30px;
        height: auto;
    }
    .top-my_navi-icon::before {
        content: "";
        position: absolute;
        top: -35%;
        right: 5px;
        width: 1px;
        height: 100%;
        background-color: var(--main-black2);
        transform-origin: top right;
        transform: rotate(-32deg);
        z-index: 1;
    }
    .top-my_navi-icon::after {
        content: "";
        position: absolute;
        top: auto;
        bottom: -35%;
        right: 5px;
        width: 1px;
        height: 100%;
        background-color: var(--main-black2);
        border: none;
        transform-origin: bottom right;
        transform: rotate(32deg);
        z-index: 1;
    }
    .top-my_navi-text {
        font-size: 1.3rem;
    }
}
/*top-sec-title*/
.top-sec-title{
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.top-sec-title::before {
    display: block;
    font-family: var(--font-en2);
    color: var(--main-black2);
    font-size: 5.6rem;
    font-weight: 500;
    line-height: calc(1em + 7px);
    content: attr(data-title-en);
    margin-bottom: 5px;
}
/*sp*/
@media screen and (max-width:767px){
    .top-sec-title{
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .top-sec-title::before {
        display: block;
        font-family: var(--font-en2);
        color: var(--main-black2);
        font-size: 3.2rem;
        font-weight: 500;
        line-height: calc(1em + 7px);
        content: attr(data-title-en);
        margin-bottom: 0;
    }
}
/*title1*/
.title1{
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.title1::before {
    display: block;
    font-family: var(--font-en2);
    color: var(--main-black2);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: calc(1em + 7px);
    content: attr(data-title-en);
    margin-bottom: 5px;
}
/*sp*/
@media screen and (max-width:767px){
    .title1{
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .title1::before {
        display: block;
        font-family: var(--font-en2);
        color: var(--main-black2);
        font-size: 3.2rem;
        font-weight: 500;
        line-height: calc(1em + 7px);
        content: attr(data-title-en);
        margin-bottom: 0;
    }
}
/*top-news*/
.top-news{
    width: 100%;
    padding: 70px 0;
    box-sizing: border-box;
}
.top-news-wrapper{
    width: 1000px;
    margin: 0 auto;
    position: relative;
}
.top-news-list{
    border: solid 1px #707070;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
}
.top-news-btn{
    text-align: right;
}
.top-news-btn a{
    font-family: var(--font-en2);
    font-size: 1.3rem;
    font-weight: normal;
    position: relative;
    padding-right: 25px;
}
.top-news-btn a::before {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% + 3px);
    width: 7px;
    height: 1px;
    background: var(--main-black2);
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.top-news-btn a::after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% + 3px);
    width: 16px;
    height: 1px;
    background: var(--main-black2);
    transition: all 0.3s;
}
@media (any-hover: hover){
    .top-news-btn a:hover::after{
        transform: translateX(10px);
    }
    .top-news-btn a:hover::before {
        transform: translateX(10px) rotate(45deg);
    }
}
/*news*/
.news-article-list{
    width: 780px;
    margin: 0 auto;
}
.news-article-list-item:not(:last-child) {
    border-bottom: solid 1px #707070;
}
.news-article-list-item-inner {
    display: block;
    padding: 30px 70px 30px 140px;
    position: relative;
}
.news-article-list-item-inner:after{
    content: "";
    background: url(../../../recruit_images/icon_news.svg) no-repeat;
    background-size: cover;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.news-article-list-item__date{
    font-size: 1.5rem;
    color: var(--main-black2);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}
.news-article-list-item__cate{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 73px;
    height: 24px;
    padding: 0 5px;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
    border-radius: 3px;
}
.news-article-list-item__title{
    font-size: 1.4rem;
    line-height: calc(1em + 10px);
}
@media (any-hover: hover){
    .news-article-list-item-inner:hover .news-article-list-item__title{
        text-decoration: underline;
    }
}
/*sp*/
@media screen and (max-width:767px){
    .top-news{
        width: var(--inner-width);
        padding: 0 0 60px;
        margin: 0 auto;
    }
    .top-news-wrapper{
        width: 100%;
        margin: 0 auto;
    }
    .top-news-list {
        border: solid 1px #707070;
        width: 100%;
        padding: 10px 10px 20px;
        box-sizing: border-box;
        border-radius: 10px;
    }
    .top-news-btn{
        margin-right: 5px;
    }

    /*news*/
    .news-article-list{
        width: 100%;
    }
    .news-article-list-item-inner {
        display: block;
        padding: 15px 35px 15px 0;
        position: relative;
    }
    .news-article-list-item-head{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .news-article-list-item__date{
        font-size: 1.3rem;
        position: static;
        margin: 0 8px 0 0;
    }
    .news-article-list-item-inner:after{
        width: 24px;
        height: 24px;
        right: 0;
        top: auto;
        bottom: 15px;
    }
}

/*top-message*/
.top-message {
    position: relative;
    width: 100%;
    padding: 60px 0 90px;
    overflow: hidden;
    margin-top: 80px;
}
.top-message::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 64%;
    background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
    transform: skewX(-30deg);
    border-radius: 30px;
    z-index: -1;
}
.top-message::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 15%;
    width: 75%;
    height: 64%;
    background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
    opacity: 0.4;
    transform: skewX(-30deg) scale(0.6);
    border-radius: 30px;
    z-index: -2;
}
.top-message__inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.top-message__img-inner{
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.top-message__title {
    font-size: 4.0rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}
.top-message__text {
    font-size: 1.4rem;
    color: #fff;
    max-width: 422px;
    line-height: calc(1em + 11px);
}
.top-message__image-container {
    margin-top: -80px;
}
.top-message__img {
    display: block;
    margin-left: auto;
    width: 680px;
    max-width: 680px;
    height: auto;
    margin-right: -110px;
}
@media screen and (max-width: 767px) {
    .top-message {
        position: relative;
        width: 100%;
        padding: 0 0 40px;
        overflow: hidden;
        margin-top: 30px;
    }
    .top-message::before,
    .top-message::after {
        content: none;
    }
    .top-message__title {
        font-size: 2.1rem;
        margin-bottom: 10px;
    }
    .top-message__inner {
        padding: 40px var(--inner-sidespace--sp);
        position: relative;
    }
    .top-message__inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: -25%;
        width: 125%;
        height: 100%;
        background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
        transform: skewX(-25deg);
        border-radius: 0 20px 20px 20px;
        z-index: -1;
    }
    .top-message__inner::after {
        content: "";
        position: absolute;
        bottom: -20%;
        right: -20%;
        width: 80%;
        height: 100%;
        background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
        opacity: 0.4;
        transform: skewX(-25deg);
        border-radius: 0 20px 20px 20px;
        z-index: -2;
    }
    .top-message__img-inner{
        padding: 0 var(--inner-sidespace--sp);
    }
    .top-message__image-container {
        margin-top: 10px;
    }
    .top-message__img {
        width: 100%;
        max-width: inherit;
        height: auto;
        margin-right: 0;
    }
}

/*top-movie*/
.top-movie{
    position: relative;
    padding-bottom: 180px;
    overflow: hidden;
    margin-top: 80px;
}
.top-message + .top-movie{
    margin-top: 0;
}
.top-movie-wrapper{
    width: 1000px;
    margin: 0 auto;
}
.top-movie-wrapper iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}
.top-movie::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 120px;
    width: 65%;
    height: 390px;
    background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
    opacity: 0.4;
    transform: skewX(-30deg);
    border-radius: 30px;
    z-index: -1;
}
.top-movie::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 80px;
    width: 27%;
    height: 180px;
    background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
    opacity: 0.4;
    transform: skewX(-30deg);
    border-radius: 20px;
    z-index: -2;
}
/*sp*/
@media screen and (max-width: 767px) {
    .top-movie{
        position: relative;
        padding-bottom: 70px;
        margin-top: 30px;
    }
    .top-message + .top-movie{
        margin-top: 30px;
    }
    .top-movie-wrapper{
        width: var(--inner-width);
        margin: 0 auto;
    }
    .top-movie-wrapper iframe{
        border-radius: 5px;
    }
    .top-movie::before {
        right: -25%;
        bottom: 40px;
        width: 87%;
        height: calc(80% - 70px);
        border-radius: 10px;
    }
    .top-movie::after {
        right: -20%;
        bottom: 20px;
        width: 47%;
        height: calc(60% - 70px);
        border-radius: 10px;
    }
}

/*top-about*/
.top-about{
    overflow: hidden;
    width: 100%;
    padding-bottom: 160px;
}
.top-about .top-sec-title{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.top-about-list-item:not(:last-child){
    margin-bottom: 120px;
}
.top-about-list-item{
    min-height: 330px;
    position: relative;
}
.top-about-list-item__img{
    position: absolute;
    top: 0;
    left: -200px;
}
.top-about-list-item:nth-of-type(even) .top-about-list-item__img {
    position: absolute;
    top: 0;
    right: -200px;
    left: auto;
}
.top-about-list-item__link{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 110px;
    box-sizing: border-box;
    position: relative;
}
.top-about-list-item__link::before {
    content: "";
    position: absolute;
    top: 70px;
    right: -100px;
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
    opacity: 0.4;
    transform: skewX(-30deg);
    border-radius: 20px;
    z-index: -1;
}
.top-about-list-item:nth-of-type(even) .top-about-list-item__link{
    justify-content: flex-start;
}
.top-about-list-item:nth-of-type(even) .top-about-list-item__link::before {
    left: -100px;
    right: auto;
}
.top-about-list-item__link-wrapper{
    width: 290px;
    padding-bottom: 50px;
}
.top-about-list-item__link-title{
    width: fit-content;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-right: 45px;
    box-sizing: border-box;
}
.top-about-list-item__link-text{
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
}
.top-about-list-item__link-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% + 3px);
    width: 7px;
    height: 1px;
    background: var(--main-black2);
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.top-about-list-item__link-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% + 3px);
    width: 25px;
    height: 1px;
    background: var(--main-black2);
    transition: all 0.3s;
}
@media (any-hover: hover){
    .top-about-list-item__link a:hover .top-about-list-item__link-title::after{
        transform: translateX(10px);
    }
    .top-about-list-item__link a:hover .top-about-list-item__link-title::before {
        transform: translateX(10px) rotate(45deg);
    }
}
/*pc1200px以上*/
@media screen and (min-width: 1400px) {
    .top-about-list-item__img{
        left: auto;
        right: 40%;
    }
    .top-about-list-item:nth-of-type(even) .top-about-list-item__img{
        right: auto;
        left: 40%;
    }
}
/*sp*/
@media screen and (max-width: 767px) {
    .top-about{
        overflow: hidden;
        width: 100%;
        margin-bottom: 80px;
        padding-bottom: 0;
    }
    .top-about .top-sec-title{
        width: var(--inner-width);
        margin-left: auto;
        margin-right: auto;
    }
    .top-about-list-item {
        min-height: inherit;
    }
    .top-about-list-item:not(:last-child) {
        margin-bottom: 40px;
    }
    .top-about-list-item__img {
        position: relative;
        width: 110%;
        margin-left: -5%;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }
    .top-about-list-item:nth-of-type(even) .top-about-list-item__img {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }
    .top-about-list-item__img::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: -40%;
        width: 80%;
        height: 100%;
        background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
        opacity: 0.4;
        transform: skewX(-30deg);
        border-radius: 5px;
        z-index: -1;
    }
    /* 1個目、4個目、7個目... (奇数 / 3n+1) */
    .top-about-list-item:nth-child(3n+1) .top-about-list-item__img {
        width: 110%;
        margin-left: -5%;
    }
    /* 2個目、5個目... (3n+2) */
    .top-about-list-item:nth-child(3n+2) .top-about-list-item__img {
        margin-left: auto;
        transform: translateX(5%);
    }
    /* 3個目、6個目... (3n) */
    .top-about-list-item:nth-child(3n) .top-about-list-item__img {
        margin-left: auto;
        transform: translateX(-19%);
    }
    .top-about-list-item:nth-child(3n+2) .top-about-list-item__img::before {
        right: auto;
        left: -40%;
    }
    .top-about-list-item:nth-child(3n) .top-about-list-item__img::before{
        right: -10%;
    }
    .top-about-list-item__link {
        width: var(--inner-width);
        margin: 0 auto;
        display: block;
        padding-top:0;
        margin-top: 20px;
    }
    .top-about-list-item__link-wrapper {
        width: 100%;
        padding-bottom: 0;
    }
    .top-about-list-item__link::before{
        content: none;
    }
    .top-about-list-item__link-title {
        width: fit-content;
        font-size: 2.0rem;
        font-weight: 600;
        margin-bottom: 10px;
        position: relative;
        padding-right: 30px;
        box-sizing: border-box;
    }
    .top-about-list-item__link-title::after {
        width: 20px;
    }
}
/*top-pickup*/
.top-pickup{
    padding: 0 0 100px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #E4EBEB 0%, rgba(228, 235, 235, 0) 100%);
    border-radius: 40px 40px 0 0;
}
.top-pickup .top-sec-title{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-20px);
}
.top-pickup-list{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-flow: row wrap;
}
.top-pickup-list__item{
    width: calc((100% - 60px) / 3);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.top-pickup-list__item-bg{
    position: relative;
}
.top-pickup-list__item-bg:before{
    content: "";
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.top-pickup-list__item-bg img{
    width: 100%;
    height: auto;
    transition: all ease .4s;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.top-pickup-list__item-text{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-flow: column;
    gap: 20px;
    z-index: 1;
}
.top-pickup-list__item-text p{
    font-size: 2.2rem;
    font-weight: 600;
    min-height: 64px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    line-height: calc(1em + 10px);
    position: relative;
    box-sizing: border-box;
    padding-bottom: 40px;
}
.top-pickup-list__item-text p::before {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: 0;
    width: 7px;
    height: 1px;
    background: #fff;
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.top-pickup-list__item-text p::after {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: 0;
    width: 20px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}
.top-pickup-list__item-icon{
    max-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (any-hover: hover){
    .top-pickup-list__item a:hover .top-pickup-list__item-bg img {
        transform: scale(115%);
        transition: all ease .4s;
    }
    .top-pickup-list__item a:hover .top-pickup-list__item-text p::after{
        transform: translateX(10px);
    }
    .top-pickup-list__item a:hover .top-pickup-list__item-text p::before  {
        transform: translateX(10px) rotate(45deg);
    }
}
/*sp*/
@media screen and (max-width: 767px) {
    .top-pickup{
        padding: 0 0 60px;
        border-radius: 20px 20px 0 0;
}
    .top-pickup .top-sec-title {
        width: var(--inner-width);
        margin-left: auto;
        margin-right: auto;
        transform: translateY(-20px);
        margin-bottom: 10px;
    }
    .top-pickup-list {
        width: var(--inner-width);
        margin: 0 auto;
        display: flex;
        gap: 15px;
        flex-flow: row wrap;
    }
    .top-pickup-list__item{
        width: calc((100% - 15px) / 2);
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }
    .top-pickup-list__item-icon{
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .top-pickup-list__item:last-child .top-pickup-list__item-icon{
        width: 60px;
        height: 50px;
    }
    .top-pickup-list__item-text{
        gap: 10px;
    }
    .top-pickup-list__item-text p {
        font-size: 1.6rem;
        font-weight: 600;
        min-height: 48px;
        display: flex;
        align-items: center;
        text-align: center;
        color: #fff;
        line-height: calc(1em + 8px);
        padding-bottom: 15px;
    }
}

/*top-join*/
.top-join .top-sec-title{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.top-join__container {
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    gap: 30px; /* カード間の隙間 */
}
.top-join__container-item{
    flex: 1;
    z-index: 1;
}
.top-join__container-item:nth-of-type(2){
    position: relative;
    z-index: 2;
}
.top-join__card {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end; /* 下揃え */
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    overflow: visible; /* 人物がはみ出すように */
    transition: opacity 0.3s ease;
}
.top-join__card:hover {
    opacity: 0.9;
}
.top-join__card--new {
    background: linear-gradient(120deg, #AACD06 0%, #1BA5E3 100%);
}
.top-join__card--mid {
    background: linear-gradient(120deg, #E9518E 0%, #1BA5E3 100%);
}
.top-join__card-content {
    position: relative;
    z-index: 2;
}
.top-join__card-main-title {
    display: flex;
    gap: 15px;
}
.top-join__card-main-title .jp {
    font-size: 5.6rem;
    font-weight: 500;
    writing-mode: vertical-rl;
    letter-spacing: 2.4rem;
    line-height: 1;
}
.top-join__card-main-title .en {
    font-family: var(--font-en2);
    font-size: 2.4rem;
    font-weight:100;
    line-height: 1.2;
    opacity: 0.7;
}
.top-join__card-link {
    width: fit-content;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 30px;
    box-sizing: border-box;
}
.top-join__card-link::before {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% + 3px);
    width: 7px;
    height: 1px;
    background: #fff;
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.top-join__card-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% + 3px);
    width: 20px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}
@media (any-hover: hover){
    .top-join__card:hover .top-join__card-link::after{
        transform: translateX(10px);
    }
    .top-join__card:hover .top-join__card-link::before  {
        transform: translateX(10px) rotate(45deg);
    }
}
.top-join__card-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 245px;
    z-index: 1;
}
.top-join__card-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
}
/*sp */
@media screen and (max-width: 767px) {
    .top-join .top-sec-title {
        width: var(--inner-width);
        margin-bottom: 30px;
    }
    .top-join__container {
        width: var(--inner-width);
        flex-direction: column;
        gap: 40px;
        margin: 0 auto;
    }
    .top-join__card {
        padding: 20px;
    }
    .top-join__card-main-title .jp {
        font-size: 4.1rem;
        letter-spacing: 1.5rem;
    }
    .top-join__card-main-title .en{
        font-size: 1.8rem;
    }
    .top-join__card-link {
        font-size: 1.4rem;
        padding-right: 30px;
    }
    .top-join__card-image {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 52%;
        z-index: 1;
    }
}
/*------------
footer-pickup
--------------*/
.footer-pickup{
    background: none;
    padding-bottom: 150px;
}
.footer-pickup .top-sec-title{
    transform: none;
    margin-bottom: 40px;
}
/*sp */
@media screen and (max-width: 767px) {
    .footer-pickup{
        background: none;
        padding-bottom: 70px;
    }
    .footer-pickup .top-sec-title{
        transform: none;
        margin-bottom: 25px;
    }
}
/*------------
footer-about
--------------*/
.footer-about{
    padding: 0 0 100px;
    box-sizing: border-box;
}
.footer-about .top-sec-title{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.footer-about-list{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-flow: row wrap;
}
.footer-about-list__item{
    width: calc((100% - 60px) / 3);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.footer-about-list__item-bg{
    position: relative;
}
.footer-about-list__item-bg:before{
    content: "";
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.footer-about-list__item-bg img{
    width: 100%;
    height: auto;
    transition: all ease .4s;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.footer-about-list__item-text{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-flow: column;
    gap: 20px;
    z-index: 1;
}
.footer-about-list__item-text p{
    font-size: 2.2rem;
    font-weight: 600;
    min-height: 64px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    line-height: calc(1em + 10px);
    position: relative;
    box-sizing: border-box;
    padding-bottom: 40px;
}
.footer-about-list__item-text p::before {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: 0;
    width: 7px;
    height: 1px;
    background: #fff;
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.footer-about-list__item-text p::after {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: 0;
    width: 20px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}
.footer-about-list__item-icon{
    max-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (any-hover: hover){
    .footer-about-list__item a:hover .footer-about-list__item-bg img {
        transform: scale(115%);
        transition: all ease .4s;
    }
    .footer-about-list__item a:hover .footer-about-list__item-text p::after{
        transform: translateX(10px);
    }
    .footer-about-list__item a:hover .footer-about-list__item-text p::before  {
        transform: translateX(10px) rotate(45deg);
    }
}
/*sp*/
@media screen and (max-width: 767px) {
    .footer-about{
        padding: 0 0 60px;
        border-radius: 20px 20px 0 0;
    }
    .footer-about .top-sec-title {
        width: var(--inner-width);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }
    .footer-about-list {
        width: var(--inner-width);
        margin: 0 auto;
        display: flex;
        gap: 10px;
        flex-flow: column;
    }
    .footer-about-list__item{
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }
    .footer-about-list__item a{
        display: flex;
    }
    .footer-about-list__item-icon{
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer-about-list__item:last-child .footer-about-list__item-icon{
        width: 60px;
        height: 50px;
    }
    .footer-about-list__item-bg{
        width: 50%;
    }
    .footer-about-list__item-text{
        background: linear-gradient(110deg, #3cb1e6 0%, #d977a1 100%);
        width: 50%;
        height: auto;
        position: static;
        gap: 10px;
    }
    .footer-about-list__item-text p {
        font-size: 1.6rem;
        font-weight: 600;
        min-height: 48px;
        display: flex;
        align-items: center;
        text-align: center;
        color: #fff;
        line-height: calc(1em + 8px);
        padding-bottom: 15px;
    }
    .footer-about-list__item-bg:before{
        content: none;
    }
}
/*-------------
page-header
-------------*/
.page-header-main{
    overflow: hidden;
}
.page-img{
    display: flex;
    position: relative;
    margin-bottom: 70px;
}
.page-img::before {
    content: "";
    position: absolute;
    left: -16%;
    bottom: -90px;
    width: 35%;
    height: 180px;
    background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
    opacity: 0.4;
    transform: skewX(-40deg);
    border-radius: 10px;
    z-index: -1;
}
.page-img::after {
    content: "";
    position: absolute;
    left: calc(50% + 100px);
    bottom: -40px;
    width: calc(50% - 100px);
    height: 180px;
    background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
    opacity: 0.4;
    transform: skewX(-40deg);
    transform-origin: left bottom;
    border-radius: 10px;
    z-index: -1;
}
.page-header{
    width: 780px;
    margin: 0 auto 40px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.page-header__title{
    font-size: 3.2rem;
    font-weight: bold;
}
.page-header__text{
    margin-top: 20px;
    font-size: 1.5rem;
    line-height: calc(1em + 12px);
    text-align: center;
}
/*--- sp ---*/
@media screen and (max-width:767px){
    .page-img{
        height: 5px;
        margin-bottom: 25px;
    }
    .page-img img{
        display: none;
    }
    .page-img::before {
        content: "";
        position: absolute;
        left: -2.6%;
        top: 0;
        bottom: auto;
        width: 88%;
        height: 5px;
        background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
        opacity: 0.4;
        transform: skewX(-40deg);
        border-radius: 10px;
        z-index: -1;
    }
    .page-img::after{
        content: none;
    }
    .page-header{
        width: var(--inner-width);
        margin: 0 auto 20px;
    }
    .page-header__title{
        font-size: 1.9rem;
        font-weight: bold;
    }
    .page-header__text{
        margin-top: 18px;
        font-size: 1.4rem;
        text-align: left;
    }
}
/*----------------------------
type
-----------------------------*/
.type{
    overflow: hidden;
}
.type-wrapper{
    width: 780px;
    margin: 20px auto 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
}
.type .type-wrapper:before{
    content: "";
    background: url(../../../recruit_images/type_bg001.png) no-repeat;
    background-size: contain;
    width: 1083px;
    height: 441px;
    position: absolute;
    top: 100px;
    left: -790px;
    z-index: -1;
}
.type .type-wrapper:after{
    content: "";
    background: url(../../../recruit_images/type_bg002.png) no-repeat;
    background-size: contain;
    width: 1083px;
    height: 441px;
    position: absolute;
    right: -790px;
    bottom: -220px;
    z-index: -1;
}
/* スタートエリア */
.type .step1 {
    width: 100%;
    text-align: center;
    position: relative;
}
.type .step1:before{
    content: "";
    background: url(../../../recruit_images/type001.png) no-repeat;
    background-size: contain;
    width: 190px;
    height: 400px;
    position: absolute;
    left: -30px;
    bottom: -80px;
}
.type .step1:after{
    content: "";
    background: url(../../../recruit_images/type002.png) no-repeat;
    background-size: contain;
    width: 190px;
    height: 400px;
    position: absolute;
    right: -30px;
    bottom: -80px;
}
.type .step1-title {
    font-family: var(--font-en2);
    font-size:5.6rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1;
}
.type .step1-btn {
    width: 400px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.0rem;
    background-color: var(--main-yellow);
    border: 2px solid var(--main-black2);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 0 rgba(16,16,16,0.2);
    margin: 0 auto;
    position: relative;
    top: 0;
    transition: all 0.1s ease;
}
@media (any-hover: hover){
    .type .step1-btn:hover {
        top: 4px;
        box-shadow: 0 4px 0 rgba(16,16,16,0.2);
    }
}
.type .step1-btn:active {
    top: 10px;
    box-shadow: 0 0 0 rgba(16,16,16,0.2);
}
.type .step-arrow {
    margin-top: -40px;
    z-index: -1;
    position: relative;
    margin-bottom: 20px;
}
.type .quiz-card {
    width: 100%;
    background-color: #F8F8F8;
    border: 1px solid var(--main-black2);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 6px 0 rgba(16,16,16,0.2);
    text-align: center;
}
.type .quiz-card.q2{
    position: relative;
}
.type .quiz-card__number {
    font-family: var(--font-en2);
    font-size: 5.6rem;
    color: var(--main-yellow);
    -webkit-text-stroke: 2px var(--bg-black2); 
    line-height: 1;
    margin-bottom: 40px;
    font-weight: 500;
}
.type .quiz-card__text {
    font-size: 2.0rem;
    margin-bottom: 30px;
    font-weight: 600;
}
.type .quiz-card__options {
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}
.type .quiz-card__btn {
    background-color: #fff;
    border: 2px solid var(--main-black2);
    border-radius: 30px;
    padding: 7px 30px;
    font-size: 1.8rem;
    cursor: pointer;
    min-width: 100px;
    transition: all 0.2s ease;
}
@media (any-hover: hover){
    .type .quiz-card__btn:hover {
        background-color: var(--main-pink);
    }
}
.type .quiz-card__btn.is-active {
    background-color: var(--main-pink);
}
.type .result-wrapper {
    position: relative;
    width: 100%;
    max-width: 780px;
    background-color: #F8F8F8;
    border: 1px solid var(--main-black2);
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0 6px 0 rgba(16, 16, 16, 0.2);
    text-align: center;
    margin: 0 auto;
    position: relative;
}
.type .result-wrapper:before{
    content: "";
    background: url(../../../recruit_images/type_bg001.png) no-repeat;
    background-size: contain;
    width: 1083px;
    height: 441px;
    position: absolute;
    top: 50%;
    left: -790px;
    transform: translateY(-50%);
    z-index: -1;
}
.type .result-wrapper:after{
    content: "";
    background: url(../../../recruit_images/type_bg001.png) no-repeat;
    background-size: contain;
    width: 1083px;
    height: 441px;
    position: absolute;
    right: -790px;
    bottom: -100px;
    z-index: -1;
}
.type .result-title {
    font-size: 2.8rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
    letter-spacing: 0.5rem;
}
.type .result-chara-top {
    position: absolute;
    top: -20px;
    right: 60px;
    width: 133px;
    z-index: 0;
}
.type .result-chara-top img {
    width: 100%;
    height: auto;
}
.type .result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    text-align: center;
    position: relative;
}
.type .result-label {
    width: fit-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 270px;
    padding: 6px 24px;
    font-size: 1.6rem;
    background-color: #fff;
    border: 2px solid var(--main-black2);
    border-radius: 30px;
    font-weight: 500;
    margin: 0 auto 30px;
}
.type .result-label::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--main-black2);
    border-radius: 2px;
    z-index: 1;
}
.type .result-label::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #fff;
    z-index: 2;
}
.type .result-type-name {
    font-size: 2.8rem;
    font-weight: bold;
}
.type .result-desc {
    font-size: 1.8rem;
    line-height: calc(1em + 12px);
    font-weight: bold;
}
.type .result-divider {
    border: none;
    border-top: 1px solid #707070;
    margin: 25px 0;
    width: 100%;
}
.type .result-partner-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}
.type .result-chara-left {
    width: 180px;
    position: absolute;
    left: 0;
    bottom: -40px;
}
.type .result-chara-left img {
    width: 100%;
    height: auto;
}
.type .member-section {
    margin-top: 50px;
    text-align: center;
}
.type .member-title-bubble {
    display: inline-block;
    padding: 8px 24px;
    font-size: 0.85rem;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}
.type .member-grid {
    display: flex;
    justify-content: center;
}
.type .member-card {
    flex: 1;
    max-width: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.type .member-thumb {
    width: 142px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}
.type .member-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.type .member-taglist{
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-flow: row wrap;
    margin-bottom: 10px;
}
.type .member-tag {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    font-size: 1.4rem;
    padding: 2px 12px;
    border: 1px solid #999;
    border-radius: 5px;
    color: #707070;
    background-color: #fff;
}
.type .member-text {
    font-size: 1.4rem;
    line-height: calc(1em + 10px);
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}
.type .member-text:after{
    content: "";
    background: #BFBFBF;
    position: absolute;
    width: calc(100% - 40px);
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.type .member-link {
    font-size: 1.2rem;
    padding-bottom: 25px;
    position: relative;
}
.type .member-link::before {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: 0;
    width: 7px;
    height: 1px;
    background: var(--main-black2);
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.type .member-link::after {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: 0;
    width: 20px;
    height: 1px;
    background: var(--main-black2);
    transition: all 0.3s;
}
@media (any-hover: hover){
    .member-card a:hover .member-link::after{
        transform: translateX(10px);
    }
    .member-card a:hover .member-link::before {
        transform: translateX(10px) rotate(45deg);
    }
}
/*--- sp ---*/
@media screen and (max-width:767px){
    .type{
        padding-bottom: 80px;
    }
    .type-wrapper {
        width: var(--inner-width);
        margin: 70px auto 0;
    }
    .type .type-wrapper:before {
        width: 360px;
        height: 147px;
        position: absolute;
        top: 65px;
        left: auto;
        right: 50%;
    }
    .type .type-wrapper:after {
        width: 360px;
        height: 147px;
        position: absolute;
        right: auto;
        left: 50%;
        bottom: -125px;
    }
    .type .step1-title {
        font-family: var(--font-en2);
        font-size: 3.68rem;
    }
    .type .step1-btn {
        width: 190px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 600;
        box-shadow: 0 8px 0 rgba(16, 16, 16, 0.2);
        margin: 0 auto;
        position: relative;
        top: 0;
        transition: all 0.1s ease;
    }
    .type .step1:before {
        content: "";
        background: url(../../../recruit_images/type001.png) no-repeat;
        background-size: contain;
        width: 95px;
        height: 200px;
        position: absolute;
        left: -4.6875%;
        bottom: -50px;
    }
    .type .step1:after {
        content: "";
        background: url(../../../recruit_images/type002.png) no-repeat;
        background-size: contain;
        width: 95px;
        height: 200px;
        position: absolute;
        right: -5.6875%;
        bottom: -50px;
    }
    .type .step-arrow {
        width: 40px;
        margin-top: -25px;
        z-index: -1;
        position: relative;
        margin-bottom: 10px;
    }
    .type .quiz-card {
        border: 2px solid var(--main-black2);
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 6px 0 rgba(16, 16, 16, 0.2);
        text-align: center;
    }
    .type .quiz-card__number {
        font-size: 4.5rem;
        line-height: 1;
        margin-bottom: 25px;
    }
    .type .quiz-card__text {
        font-size: 1.4rem;
        text-align: left;
        margin-bottom: 30px;
        font-weight: 600;
    }
    .type .quiz-card__options {
        max-width: inherit;
        gap: 10px;
        margin: 0 auto;
    }
    .type .quiz-card__btn {
        background-color: #fff;
        border: 2px solid var(--main-black2);
        border-radius: 30px;
        padding: 7px 20px;
        font-size: 1.3rem;
        cursor: pointer;
        min-width: inherit;
    }
    .quiz-card + .step-arrow{
        margin-top: -30px;
    }
    .type .result-wrapper {
        width: var(--inner-width);
        border: 2px solid var(--main-black2);
        padding: 30px 25px 50px;
        text-align: center;
        margin: 0 auto;
    }
    .type .result-wrapper:before {
        width: 360px;
        height: 147px;
        position: absolute;
        top: 65px;
        left: auto;
        right: 50%;
    }
    .type .result-wrapper:after {
        width: 360px;
        height: 147px;
        position: absolute;
        right: auto;
        left: 50%;
        bottom: -40px;
    }
    .type .result-title {
        font-size: 2.7rem;
        margin-bottom: 30px;
    }
    .type .result-chara-top {
        position: absolute;
        top: -40px;
        right: 0;
        width: 70px;
        z-index: 0;
    }
    .type .result-label {
        width: 100%;
        min-width: inherit;
        font-size: 1.5rem;
        padding: 10px 5px;
        background-color: #fff;
        border: 2px solid var(--main-black2);
        border-radius: 30px;
        font-weight: 500;
        margin: 0 auto 15px;
    }
    .type .result-label::after {
        bottom: -8px;
        width: 16px;
        height: 16px;
    }
    .type .result-label::before {
        bottom: -10px;
        width: 16px;
        height: 16px;
    }
    .type .result-type-name {
        font-size: 2.1rem;
        font-weight: bold;
    }
    .type .result-item {
        margin: 30px 0;
    }
    .type .result-desc {
        font-size: 1.4rem;
        line-height: calc(1em + 12px);
        font-weight: bold;
        text-align: left;
    }
    .type .result-partner-headline{
        flex-flow: column;
    }
    .type .result-chara-left {
        width: 120px;
        margin: 0 auto -30px;
        position: static;
    }
    .type .member-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .type .member-text:after{
        width: 100%;
    }
    .type .member-thumb{
        width: 115px;
        margin-bottom: 15px;
    }
    .type .member-taglist{
        margin-bottom: 10px;
    }
    .type .member-tag {
        width: fit-content;
        min-width: inherit;
        font-size: 1.3rem;
        padding: 2px 12px;
        background-color: #fff;
    }
}
/*----------------------------
occupation
-----------------------------*/
.occupation-list{
    width: 1000px;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px auto 70px;
    flex-flow: row wrap;
}
.occupation-list-items a{
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: #fff;
    padding: 5px 40px 5px 20px;
    background: #4AB7E8;
    border-radius: 25px;
    position: relative;
    box-sizing: border-box;
}
.occupation-list-items a:before{
    content: "";
    position: absolute;
    right: 15px;
    top: calc(50% + 2px);
    width: 7px;
    height: 1px;
    background: #fff;
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.occupation-list-items a::after {
    content: "";
    position: absolute;
    right: 15px;
    top: calc(50% + 2px);
    width: 17px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}
@media (any-hover: hover){
    .occupation-list-items a:hover::after{
        transform: translateX(10px);
    }
    .occupation-list-items a:hover::before {
        transform: translateX(10px) rotate(45deg);
    }
}
/*--- sp ---*/
@media screen and (max-width:767px){
    .occupation-list{
        width: var(--inner-width);
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 5px auto 25px;
    }
    .occupation-list-items a {
        font-size: 1.3rem;
        padding: 8px 35px 8px 15px;
        background: #4AB7E8;
        border-radius: 25px;
        position: relative;
        box-sizing: border-box;
    }
    .occupation-list-items a:before{
        right: 10px;
    }
    .occupation-list-items a::after {
        right: 10px;
    }
}
/*occupation-main*/
.occupation-main{
    overflow: hidden;
}
.occupation-sec{
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0 90px;
    background: linear-gradient(to bottom, #f0f7f7 0%, #fff 33%,#fff 66%,#f0f7f7 100%);
    border-radius: 40px;
    position: relative;
}
.occupation-sec:not(:last-child){
    margin-bottom: 40px;
}
.occupation-sec-title{
    width: 1000px;
    margin: 0 auto 30px;
}
.occupation-sec-title__main{
    font-size: 2.4rem;
    font-weight: bold;
}
.occupation-sec-title__img{
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -10px;
    top: 20px;
}
.occupation-sec-main{
    width: 1000px;
    margin: 0 auto 70px;
    position: relative;
    min-height:530px
}
.occupation-sec-main__text{
    min-width: 390px;
    max-width: 390px;
}
.occupation-sec-main__pho{
    position: absolute;
    top: -90px;
    right: calc((1000px - 1440px) / 2);
}
.occupation-sec-main__pho img{
    border-radius: 10px 0 0 10px;
}
.occupation-sec-main__text-sec:not(:last-child){
    margin-bottom: 50px;
}
.occupation-sec-main__text-sec:first-child{
    margin-bottom: 30px;
}
.occupation-sec-main__text-sec-title{
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: solid 1px #BFBFBF;
    margin-bottom: 10px;
}
.occupation-sec-main__text-sec-title + *{
    padding-right: 45px;
    box-sizing: border-box;
}
.occupation-cate{
    display: flex;
    gap: 10px;
    flex-flow: row wrap;
}
.occupation-cate li{
    width: 80px;
    height: 34px;
    border-radius: 4px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.occupation_new{
    background: #AACD06;
}
.occupation_halfway{
    background: var(--main-red);
}
.occupation-place{
    display: flex;
    gap: 10px;
    flex-flow: row wrap;
}
.occupation-place li{
    background: #B1B1B1;
    width: 56px;
    height: 30px;
    border-radius: 4px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.occupation-sec-main__text-sec-text{
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
}
/*--- 1440px以下の場合 ---*/
@media screen and (max-width:1440px){
    .occupation-sec-title__img{
        justify-content: flex-start;
        width: calc((100% - 1000px) / 2);
    }
    .occupation-sec-title__img img{
        max-width: 100%;
    }
}
/*--- sp ---*/
@media screen and (max-width:767px){
    .occupation-sec {
        padding: 30px 0 40px;
        background: linear-gradient(to bottom, #f0f7f7 0%, #fff 33%, #fff 66%, #f0f7f7 100%);
        border-radius: 20px;
        position: relative;
    }
    .occupation-sec:not(:last-child){
        margin-bottom: 70px;
    }
    .occupation-sec-title{
        width: var(--inner-width);
        display: flex;
        flex-flow: column-reverse;
        align-items: center;
        gap: 20px;
    }
    .occupation-sec-title__main {
        font-size: 1.6rem;
        text-align: center;
    }
    .occupation-sec-title__img{
        width: 100px;
        height: auto;
        justify-content: center;
        align-items: center;
        position: static;
    }
    .occupation-sec-main {
        width: var(--inner-width);
        position: relative;
        margin: 0px auto 50px;
    }
    .occupation-sec-main__pho {
        position: static;
        margin-bottom: 45px;
    }
    .occupation-sec-main__text {
        min-width: inherit;
        max-width: inherit;
    }
    .occupation-sec-main__text-sec-title + * {
        padding-right: 0;
    }
    .occupation-sec-main__text-sec-title{
        padding-bottom: 3px;
    }
    .occupation-sec-main__text-sec:first-child {
        margin-bottom: 35px;
    }
    .occupation-sec-main__text-sec:not(:last-child) {
        margin-bottom: 35px;
    }
    .occupation-cate li {
        width: 60px;
        height: 30px;
        font-size: 1.4rem;
    }
    .occupation-place li {
        width: 50 px;
        height: 28px;
        font-size: 1.3rem;
        font-weight: 600;
    }
    .occupation-sec-main{
        min-height:inherit;
    }
}
/*-----------------------
sec-interview
------------------------*/
.sec-interview{
    width: 1000px;
    margin: 0 auto;
    background: #EFF2F2;
    padding: 60px 25px;
    box-sizing: border-box;
    border-radius: 10px;
}
.sec-interview .title1{
    margin-top: -75px;
}
.sec-interview .member-grid {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}
.sec-interview .member-card {
    flex: 1;
    max-width: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec-interview .member-thumb {
    width: 142px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}
.sec-interview .member-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.member-thumb img{
    transition: all ease .4s;
}
@media (any-hover: hover){
    .member-card a:hover .member-link::after{
        transform: translateX(10px);
    }
    .member-card a:hover .member-link::before {
        transform: translateX(10px) rotate(45deg);
    }
    .member-thumb img{
        transition: all ease .4s;
    }
    .member-card a:hover .member-thumb img{
        transform: scale(115%);
        transition: all ease .4s;
    }
}
/*colum3*/
.sec-interview .colum3{
    width: 850px;
    margin: 0 auto;
}
.sec-interview .colum3 .member-grid {
    gap: 38px;
}
.sec-interview .colum3 .member-card {
    width: calc((100% - 76px) / 3);
    min-width: calc((100% - 76px) / 3);
    max-width: calc((100% - 76px) / 3);
}
/*colum4*/
.sec-interview .colum4{
    width: 850px;
    margin: 0 auto;
}
.sec-interview .colum4 .member-grid {
    gap: 38px;
}
.sec-interview .colum4 .member-card {
    width: calc((100% - 114px) / 4);
    min-width: calc((100% - 114px) / 4);
    max-width: calc((100% - 114px) / 4);
}
.sec-interview .member-taglist{
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-flow: row wrap;
    margin-bottom: 10px;
}
.sec-interview .member-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    font-size: 1.4rem;
    padding: 2px 12px;
    border: 1px solid #999;
    border-radius: 5px;
    color: #707070;
    background-color: #fff;
}
.sec-interview .member-text {
    font-size: 1.4rem;
    line-height: calc(1em + 10px);
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
}
.sec-interview .member-text:after{
    content: "";
    background: #BFBFBF;
    width: calc(100% - 40px);
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.sec-interview .member-link {
    font-size: 1.2rem;
    padding-bottom: 25px;
    position: relative;
    text-align: center;
}
.sec-interview .member-link::before {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: 0;
    width: 7px;
    height: 1px;
    background: var(--main-black2);
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.sec-interview .member-link::after {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: 0;
    width: 20px;
    height: 1px;
    background: var(--main-black2);
    transition: all 0.3s;
}
/*--- sp ---*/
@media screen and (max-width:767px){
    .sec-interview {
        width: 100%;
        margin: 0 auto;
        background: #EFF2F2;
        padding: 40px var(--inner-sidespace--sp);
        box-sizing: border-box;
        border-radius: 0;
    }
    .sec-interview .title1 {
        margin-top: -60px;
        margin-bottom: 40px;
    }
    .sec-interview .member-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .sec-interview .member-thumb{
        width: 115px;
        margin-bottom: 15px;
    }
    .sec-interview .member-taglist{
        margin-bottom: 10px;
    }
    .sec-interview .member-tag {
        width: fit-content;
        min-width: inherit;
        font-size: 1.3rem;
        padding: 2px 12px;
        background-color: #fff;
    }
    .sec-interview .colum3{
        width: 100%;
    }
    .sec-interview .colum3 .member-grid {
        gap: 20px;
    }
    .sec-interview .colum3 .member-card {
        width: calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
    .sec-interview .colum4 {
        width: 100%;
    }
    .sec-interview .colum4 .member-grid {
        gap: 20px;
    }
    .sec-interview .colum4 .member-card {
        width: calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
    .sec-interview .member-text:after {
        width: 100%;
    }
}

/*-------------------------------------
20260518追記
---------------------------------------*/

/*-------------------
interview
---------------------*/
.interview-main {
    max-width: 1000px;
    margin: 0 auto;
}
.interview-filter{
    margin-bottom: 40px;
}
.interview-filter .filter-panel {
    background-color: #F8F8F8;
    border-radius: 20px;
    padding: 40px 50px;
    box-sizing: border-box;
    box-shadow: 0 6px 0 rgba(16, 16, 16, 0.1);
}
.interview-filter .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}
.interview-filter .filter-title {
    display: flex;
    align-items: center;
    font-size: 1.9rem;
    font-weight: bold;
    gap: 8px;
}
.interview-filter .filter-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 19px;
}
.interview-filter .filter-reset {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
    padding-left: 25px;
    border-left: solid 1px #BEBEBE;
}
.interview-filter .reset-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 39px;
    height: 39px;
    background: #fff;
    border-radius: 50%;
    position: relative;
}
.interview-filter .filter-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}
.interview-filter .filter-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.interview-filter .filter-label {
    width: 80px;
    font-size: 1.6rem;
    font-weight: bold;
    flex-shrink: 0;
}
.interview-filter .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}
.interview-filter .toggle-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}
.interview-filter .toggle-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.interview-filter .slider {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
    background-color: #ccc;
    border-radius: 10px;
    transition: background-color 0.2s;
}
.interview-filter .slider::before {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s;
}
.interview-filter .toggle-btn input:checked + .slider {
    background-color: #A2D026;
}
.interview-filter .toggle-btn input:checked + .slider::before {
    transform: translateX(16px);
}
.interview-filter .toggle-btn .text {
    font-size: 1.6rem;
}
.interview-link{
    width: fit-content;
    margin: 20px 0 0 auto;
}
.interview-link a{
    font-size: 1.4rem;
    text-decoration: underline;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
    padding-left: 22px;
    box-sizing: border-box;
}
.interview-link a:after {
    position: absolute;
    top: calc(50% - 9px);
    left: 0;
    border-radius: 50%;
    background: var(--bg-black);
    width: 18px;
    height: 18px;
    content: "";
}
.interview-link a:before {
    position: absolute;
    top: calc(50% - 4px);
    left: 6px;
    transform: rotate(135deg);
    width: 6px;
    height: 6px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    content: "";
    z-index: 1;
}
/*sp*/
@media screen and (max-width: 767px) {
    .interview-main {
        max-width: 1000px;
        width: var(--inner-width);
        margin: 0 auto;
    }
    .interview-filter .filter-panel {
        padding: 20px;
    }
    .interview-filter .filter-title {
        font-size: 1.6rem;
    }
    .interview-filter .filter-reset {
        font-size: 1.4rem;
        cursor: pointer;
        padding-left: 20px;
    }
    .interview-filter .reset-icon {
        width: 36px;
        height: 36px;
    }
    .interview-filter .reset-icon img{
        width: 21px;
    }
    .interview-filter .filter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }
    .interview-filter .filter-label {
        width: 100%;
        font-size: 1.4rem;
        padding-top: 0;
    }
    .interview-filter .toggle-btn .text {
        font-size: 1.4rem;
    }
    .interview-filter .filter-options {
        width: 100%;
        gap: 12px 16px;
    }
    .interview-filter .filter-row:last-child .filter-options {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 10px 20px;
    }
    .interview-filter .filter-row:last-child .toggle-btn {
        width: auto;
    }
}

/*interview-link-sec*/
.interview-sec:not(:last-child){
    margin-bottom: 100px;
}
.interview-link-sec-title{
    display: flex;
    flex-flow: column;
    gap: 10px;
    position: relative;
    margin-bottom: 50px;
}
.interview-link-sec-title__main{
    font-size: 3.2rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: solid 1px #BEBEBE;
}
.interview-link-sec-title__main::before {
    display: block;
    font-family: var(--font-en2);
    color: #1BA5E3;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: calc(1em + 7px);
    content: attr(data-title-en);
    padding-left: 40px;
}
.interview-link-sec-title__main:after{
    content: "";
    background:#1BA5E3;
    position: absolute;
    left: 8px;
    top: 1px;
    width: 15px;
    height: 18px;
    transform: skewX(-40deg);
    border-radius: 2px;
    z-index: -2;
}
/*sp*/
@media screen and (max-width: 767px) {
    .interview-link-sec-title {
        margin-bottom: 30px;
    }
    .interview-link-sec-title__main {
        font-size: 1.9rem;
    }
    .interview-link-sec-title__main::before {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    .interview-link-sec-title__main::after {
        content: "";
        background: #1BA5E3;
        position: absolute;
        left: 5px;
        top: 3px;
        width: 8px;
        height: 9px;
        transform: skewX(-40deg);
        border-radius: 2px;
        z-index: -2;
    }
}
/*interview-grid*/
.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 50px;
}
.interview-card-wrapper {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.interview-card-wrapper.is-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.interview-card-wrapper.is-leave {
    display: block;
    opacity: 0;
    transform: translateY(20px);
}
.interview-card {
    display: block;
    text-decoration: none;
    width: 100%;
}
.interview-card__thumb {
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}
.interview-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease .4s;
}
.interview-card__year {
    font-size: 1.6rem;
    font-weight: bold;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0 20px 0 0;
}
.interview-card__year::before {
    content: "";
    position: absolute;
    top: -20px; 
    left: 0;
    width: 20px;  
    height: 20px; 
    background: radial-gradient(circle at 100% 0%, transparent 20px, #fff 21px);
    
    z-index: 2; 
    pointer-events: none;
}
.interview-card__meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.interview-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.interview-card__tag-cate {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    background-color: #AACD06;
    border-radius: 18px;
    letter-spacing: 0.2rem;
    margin-right: -0.2rem;
}
.interview-card__tag-type {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    background-color: #E9518E;
    border-radius: 18px;
}
.interview-card__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}
.interview-card__title {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    flex: 1;
}
.interview-card__btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: solid 1px var(--main-black2);
    background-color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    margin-bottom: 5px;
}
.interview-card__btn img {
    width: 100%;
    height: auto;
    display: block;
}
@media (any-hover: hover) {
    .interview-card:hover .interview-card__thumb img  {
        transform: scale(115%);
        transition: all ease .4s;
    }
    .interview-card:hover .interview-card__btn {
        background-color: #f0f0f0;
    }
}
/*sp*/
@media screen and (max-width: 767px) {
    .interview-sec:not(:last-child) {
        margin-bottom: 50px;
    }
    .interview-grid {
        grid-template-columns: 100%; /* スマホは1列の縦並び */
        gap: 30px;
    }
    .interview-card {
        display: flex;
        text-decoration: none;
        width: 100%;
        gap: 15px;
        align-items: flex-start;
    }
    .interview-card__thumb {
        width: 45%;
        min-width: 45%;
        height: auto;
        aspect-ratio: 5 / 4;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 0;
        position: relative;
    }
    .interview-card__title {
        font-size: 1.4rem;
    }
    .interview-card__meta {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .interview-card__tags{
        gap: 5px;
    }
    .interview-card__btn {
        position: relative;
        width: 30px;
        height: 30px;
    }
    .interview-card__body {
        gap: 10px;
    }
    .interview-card__tag-cate {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 12px;
        font-size: 1.2rem;
        font-weight: bold;
        color: #fff;
        background-color: #AACD06;
        border-radius: 18px;
        letter-spacing: 0.2rem;
        margin-right: -0.2rem;
    }
    .interview-card__tag-type {
        display: flex;
        align-items: center;
        padding: 5px 12px;
        font-size: 1.2rem;
        font-weight: bold;
        color: #fff;
        background-color: #E9518E;
        border-radius: 18px;
    }
    .interview-card__year {
        font-size: 1.4rem;
        width: 100px;
        height: 30px;
        border-radius: 0 10px 0 0;
    }
    .interview-card__year::before {
        content: "";
        position: absolute;
        top:-10px;
        left: 0;
        width: 10px;
        height: 10px;
        background: radial-gradient(circle at 100% 0%, transparent 10px, #fff 11px);
    }
}
.more-btn-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.more-btn-container::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: var(--main-black2);
    z-index: 1;
}
.more-btn {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 60px;
    background-color: #fff;
    border: 1px solid var(--main-black2);
    border-radius: 30px;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--main-black2);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s, opacity 0.2s;
}
.more-btn-container.is-hidden {
    display: none !important;
}
@media (any-hover: hover) {
    .more-btn:hover {
        background-color: #f9f9f9;
    }
}
/*sp*/
@media screen and (max-width: 767px) {
    .more-btn-container {
        margin: 40px auto;
    }
    .more-btn {
        position: relative;
        z-index: 2;
        width: 240px;
        height: 50px;
        background-color: #fff;
        border: 1px solid var(--main-black2);
        border-radius: 27px;
        font-size: 1.4rem;
    }
}
/*---------------------
.sec-interview .colum3
----------------------*/
@media screen and (max-width: 767px) {
    .sec-interview .colum3 .member-grid {
        flex-flow: column;
        gap: 30px;
    }
    .sec-interview .colum3 .member-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    .sec-interview .colum3 .member-card a{
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }
    .sec-interview .colum3 .member-thumb {
        width: 36.5%;
        min-width: 36.5%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 0;
    }
    .sec-interview .colum3 .member-taglist {
        display: flex;
        gap: 5px;
        justify-content: flex-start;
        flex-flow: row wrap;
        margin-bottom: 10px;
    }
    .sec-interview .colum3 .member-text {
        font-size: 1.3rem;
        margin-bottom: 0;
        padding-bottom: 15px;
        text-align: left;
        position: relative;
        padding-right: 20px;
        border-bottom: solid 1px #BFBFBF;
    }
    .sec-interview .colum3 .member-text::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 15px;
        width: 7px;
        height: 1px;
        background: var(--main-black2);
        transform-origin: right top;
        transform: rotate(45deg);
        transition: all 0.3s;
    }
    .sec-interview .colum3 .member-text::after {
        content: "";
        position: absolute;
        right: 0;
        left: auto;
        bottom: 15px;
        width: 20px;
        height: 1px;
        background: var(--main-black2);
        transition: all 0.3s;
        transform: none;
    }
    .sec-interview .colum3 .member-link{
        display: none;
    }
}
/*----------------
interview-detail
-----------------*/
.interview-detail{
    width: 1000px;
    margin: 0 auto;
}
.interview-detail-job{
    margin-bottom: 50px;
}
.interview-detail-main{
    margin-bottom: 120px;
}
.interview-detail-mai-title{
    margin-bottom: 20px;
}
.interview-detail-mai-title__main{
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 10px;
}
.interview-detail-mai-title__cate{
    display: flex;
    gap: 6px;
}
.interview-detail-mai-title__cate p{
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    padding: 3px 10px;
    box-sizing: border-box;
    border-radius: 4px;
}
.interview-detail-mai-title__cate .job{
    background: var(--main-red);
}
.interview-detail-mai-title__cate .type{
    background: #1BA5E3;
}
.interview-detail-movie{
    margin-bottom: 60px;
}
.interview-detail-movie iframe,
.interview-detail-movie video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}
.interview-detail-qa{
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.interview-detail-qa-sec:not(:last-child){
    margin-bottom: 60px;
}
.interview-detail-qa-title{
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}
.interview-detail-qa-title:before{
    content: "Q";
    font-family: var(--font-en2);
    font-size: 4.8rem;
    color: #75BBDB;
    -webkit-text-stroke: 2px var(--bg-black2);
    line-height: 1;
    font-weight: 500;
}
.interview-detail-qa-text{
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
}
/*sp*/
@media screen and (max-width: 767px) {
    .interview-detail-main{
        margin-bottom: 60px;
    }
    .interview-detail-job .sec-interview,
    .interview-detail-type .sec-interview{
        border-radius: 10px;
    }
    .interview-detail{
        width: var(--inner-width);
        margin: 0 auto;
    }
    .interview-detail-movie {
        margin-bottom: 40px;
    }
    .interview-detail-qa-title {
        font-size: 1.6rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    .interview-detail-qa-sec:not(:last-child) {
        margin-bottom: 40px;
    }
}
/*interview-detail-schedule*/
.interview-detail-schedule {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 890px;
    margin: 0 auto 120px;
    box-sizing: border-box;
}
.interview-detail-schedule-main {
    width: auto;
    max-width: 500px;
    min-width: 350px;
}
.interview-detail-schedule-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #BFBFBF;
}
.interview-detail-schedule-list {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    box-sizing: border-box;
    gap: 15px;
}
.interview-detail-schedule-list::before {
    content: "";
    position: absolute;
    left: 129px;
    top: 0;
    bottom: 25px;
    width: 3px;
    height: 100%;
    background-color: #C4E7F7;
    z-index: 1;
}
.interview-detail-schedule-list-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}
.interview-detail-schedule-list-item__time {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 30px;
    background-color: #1BA5E3;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 6px;
    flex-shrink: 0;
    z-index: 2;
}

.interview-detail-schedule-list-item__time::after {
    content: "";
    position: absolute;
    left: 100%; 
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #1BA5E3;
    border-right: 0;
}
.interview-detail-schedule-list-item::after {
    content: "";
    position: absolute;
    left: 124px; 
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #1BA5E3;
    border: solid 2px #fff;
    border-radius: 50%;
    z-index: 3;
}
.interview-detail-schedule-list-item__info {
    font-size: 1.4rem;
    font-weight: 500;
    padding-left: 40px;
}
.interview-detail-schedule__pho {
    width: 476px;
    flex-shrink: 0;
}

.interview-detail-schedule__pho img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
/* 該当なしメッセージのスタイル */
.no-match-message {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .interview-detail-schedule {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 80px;
    }
    .interview-detail-schedule-title {
        font-size: 1.8rem;
    }
    .interview-detail-schedule-main {
        width: 100%;
        max-width: 100%;
    }
    .interview-detail-schedule-list {
        padding: 10px 0;
    }

    .interview-detail-schedule__pho {
        width: 100%;
        max-width: 100%;
    }
    .interview-detail-schedule-list-item::after {
        content: "";
        border: solid 1px #fff;
    }
}

/*20260520追記*/
/*------------------
society
-------------------*/
.society{
    overflow: hidden;
}
.society .content-main{
    width: 1000px;
    margin: 0 auto;
}
.society-sec{
    border: solid 1px #BEBEBE;
    border-radius: 30px;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    background: #fff;
}
.society-sec::after {
    content: "";
    position: absolute;
    left: 80px;
    bottom: -60px;
    width: 175px;
    height: 90px;
    background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
    opacity: 0.4;
    transform: skewX(-40deg);
    transform-origin: left bottom;
    border-radius: 10px;
    z-index: -1;
}
.society-sec:nth-of-type(even){
    flex-flow: row-reverse;
    justify-content: flex-end;
}
.society-sec:nth-of-type(even)::after {
    left: auto;
    right: 150px;
}
.society-sec:nth-of-type(odd) .society-sec-img{
    margin-left: -100px;
}
.society-sec:nth-of-type(even) .society-sec-img{
    margin-right: -100px;
}
.society-sec:not(:last-child){
    margin-bottom: 30px;
}
.society-sec-img {
    position: relative;
    width: 510px;
}
.society-sec-img:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #F0F0F0;
    position: absolute;
    z-index: 0;
    right: -20px;
    bottom: -20px;
}
.society-sec-info{
    padding-top: 10px;
    min-width: 430px;
}
.society-sec-info-title{
    font-size: 2.4rem;
    font-weight: 600;
    padding-left: 20px;
    border-left: solid 5px #E9518E;
    margin-bottom: 20px;
    line-height: calc(1em + 6px);
}
.society-sec:nth-child(3n+2) .society-sec-info-title{
    border-color: #AACD06;
}
.society-sec:nth-child(3n) .society-sec-info-title{
    border-color: #1BA5E3;
} 
.society-sec-info-text{
    font-size: 1.4rem;
    font-weight: normal;
    line-height: calc(1em + 13px);
    margin-bottom: 50px;
}
.society-sec-info-product{
    background: #F8F8F8;
    border-radius: 10px;
    padding: 25px 20px;
    box-sizing: border-box;

}
.society-sec-info-product dt{
    margin-top: -40px;
    font-size: 2.0rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.society-sec-info-product dd{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(1em + 13px);
}
/*sp*/
@media screen and (max-width: 767px) {
    .society .content-main {
        width: var(--inner-width);
        margin: 30px auto 0;
    }
    .society-sec {
        border-radius: 10px;
        padding: 15px 15px 0;
        box-sizing: border-box;
        display: flex;
        gap: 30px;
        flex-flow: column;
        position: relative;
        background: #fff;
    }
    .society-sec:nth-of-type(even) {
        flex-flow: column;
        justify-content: center;
    }
    .society-sec-img {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }
    .society-sec:nth-of-type(odd) .society-sec-img {
        margin-left: auto;
    }
    .society-sec:nth-of-type(even) .society-sec-img {
        margin-right: auto;
    }
    .society-sec-img img{
        border-radius: 7px;
    }
    .society-sec-img:after {
        content: "";
        width: 100%;
        height: 100%;
        background: #F0F0F0;
        position: absolute;
        z-index: 0;
        right: 0;
        bottom: -10px;
        border-radius: 7px;
    }
    .society-sec-info {
        padding-top: 0;
        min-width: inherit;
    }
    .society-sec-info-title {
        font-size: 1.9rem;
        font-weight: 600;
        padding-left: 15px;
        margin-bottom: 20px;
        line-height: calc(1em + 8px);
    }
    .society-sec-info-text {
        margin-bottom: 40px;
    }
    .society-sec-info-product dt {
        margin-top: -35px;
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    .society-sec-info-product {
        border-radius: 0 0 10px 10px;
        padding: 20px 15px 30px;
        width: calc(100% + 30px);
        margin-left: -15px;
    }
    .society-sec::after {
        content: "";
        position: absolute;
        left: auto;
        top: -52px;
        right: -30px;
        bottom: auto;
        width: 135px;
        height: 72px;
        background: linear-gradient(90deg, #00AEEF 0%, #A5438D 100%);
        opacity: 0.4;
        transform: skewX(-30deg);
        transform-origin: left bottom;
        border-radius: 5px;
        z-index: -1;
    }
    .society-sec:nth-of-type(even)::after {
        left: -70px;
        right: auto;
    }
}
/*society-sec-img slder*/
.society-sec-img .keen-slider--navigation-wrapper{
    z-index: 1;
}
.society-sec-img .keen-slider-arrow--right {
    width: 52px;
    height: 52px;
    background:url(../../../recruit_images/icon_next.svg) no-repeat center / contain;
    right: -25px;
}
.society-sec-img .keen-slider-arrow--left {
    width: 52px;
    height: 52px;
    background:url(../../../recruit_images/icon_prev.svg) no-repeat center / contain;
    left: -25px;
}
.society-sec-img .keen-slider-dots{
    position: absolute;   
    bottom: 16px;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0;
}
.society-sec-img .keen-slider-dot{
    width: 14px;
    height: 14px;
    border: solid 1px #BEBEBE;
    background: #fff;
    box-sizing: border-box;
}
.society-sec-img .keen-slider-dot--active {
    background: #AACD06;
    pointer-events: none;
}
.is-single-slide .keen-slider-arrow,
.is-single-slide .keen-slider-dots {
    display: none;
}
/*sp*/
@media screen and (max-width: 767px) {
    .society-sec-img .keen-slider-arrow--right {
        width: 40px;
        height: 40px;
        right: -25px;
    }
    .society-sec-img .keen-slider-arrow--left {
        width: 40px;
        height: 40px;
        left: -25px;
    }
    .society-sec-img .keen-slider-dots {
        bottom: 8px;
    }
    .society-sec-img .keen-slider-dot{
        width: 10px;
        height: 10px;
    }
}
/*------------------
data
-------------------*/
.data .content-main{
    width: 1000px;
    margin: 0 auto;
}
.data-sec:not(:last-child){
    margin-bottom: 80px;
}
.data-sec-title{
    font-size: 2.8rem;
    font-weight: 600;
    padding: 10px 10px 10px 30px;
    box-sizing: border-box;
    background: #F8F8F8;
    border-left: solid 5px #E9518E;
    margin-bottom: 40px;
}
.data-sec:nth-child(3n+2) .data-sec-title{
    border-color: #AACD06;
}
.data-sec:nth-child(3n) .data-sec-title{
    border-color: #1BA5E3;
} 
.data-list{
    display: flex;
    gap: 20px;
    flex-flow: row wrap;
}
.data-list-item{
    width: calc((100% - 40px) / 3);
    border: solid 1px var(--main-black2);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 20px;
}
.data-list-item__title{
    background: #F8F8F8;
    border-radius: 18px;
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 5px;
    box-sizing: border-box;
}
.data-list-item__info{
    display: flex;
    flex-flow: column;
    gap: 20px;
    align-items: center;
}
.data-list-item__img{
    width: 100%;
    height: auto;
    display: block;
    justify-content: center;
    align-items: center;
}
.data-list-item__text{
    font-size: 3.6rem;
    font-weight: 900;
}
.data-list-item__text p{
    font-size: initial;
}
/*sp*/
@media screen and (max-width: 767px) {
    .data .content-main{
        width: var(--inner-width);
        margin: 20px auto 0;
    }
    .data-sec:not(:last-child){
        margin-bottom: 50px;
    }
    .data-sec-title {
        font-size: 1.8rem;
        font-weight: 600;
        padding: 7px 7px 7px 15px;
        border-width: 3px;
        margin-bottom: 20px;
    }
    .data-list {
        display: flex;
        gap: 10px;
        flex-flow: column;
    }
    .data-list-item {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        display: flex;
        flex-flow: column;
        align-items: center;
        gap: 10px;
    }
    .data-list-item__title {
        background: #F8F8F8;
        border-radius: 18px;
        width: 100%;
        text-align: center;
        font-size: 1.4rem;
        padding: 7px 5px;
        box-sizing: border-box;
    }
    .data-list-item__info {
        display: flex;
        flex-flow: row;
        gap: 7px;
        align-items: center;
    }
    .data-list-item__img,
    .data-list-item__text{
        width: calc((100% - 7px) / 2);
    }
    .data-list-item__text{
        font-size: 3.0rem;
        text-align: center;
    }
}
/*-------------
movie
-------------*/
.movies-movie{
    margin-bottom: 60px;
    margin-top: 40px;
}
.movies-movie iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}
.movies-cate{
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}
@media screen and (max-width:767px){
    .movies-movie{
        margin-top: 0;
        margin-bottom: 30px;
    }
    .movies-cate{
        margin-bottom: 24px;
    }
}
.movies-cate-btn{
    display: none;
}
@media screen and (max-width:767px){
    .movies-cate{
        border: solid 1px #BEBEBE;
        border-radius: 5px;
        padding: 15px;
        box-sizing: border-box;
    }
    .movies-cate-btn{
        display: flex;
        align-items: center;
        position: relative;
        padding: 0 0 0 21px;
        background: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: .04em;
        line-height: 1;
        transition: border .3s ease, background .3s ease;
    }
    .movies-cate-btn::before{
        position: absolute;
        top: calc(50% - 8px);
        left: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: linear-gradient(to top, #fff, #fff) no-repeat 4px 7px / 8px 2px, 
        linear-gradient(to right, #fff, #fff) no-repeat 7px 4px / 2px 8px, 
        #AACD06;
        content: "";
        transition: transform .3s ease;
    }
    .movies-cate-btn._open::before{
        transform: rotate(90deg);
        background: linear-gradient(to right, #fff, #fff) no-repeat 7px 4px / 2px 8px, 
        #AACD06;
    }
}
.movies-cate-nav{
    position: relative;
    z-index: 1;
}
@media screen and (max-width:767px){
    .movies-cate-nav{
        width: 100%;
        transition: opacity .3s ease;
        margin-top: 15px;
    }
    .movies-cate-nav:not(._show){
        opacity: 0;
        z-index: -999;
        pointer-events: none;
        height: 0;
        display: none;
    }
}
.movies-cate-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.movies-cate-list-item{
    flex: 0 0 auto;
    min-width: 96px;
}
@media screen and (max-width:767px){
    .movies-cate-list{
        flex-direction: column;
        gap: 4px 0;
    }
    .movies-cate-list-item{
        width: 100%;
    }
}
.movies-cate-list-item a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 60px;
    padding: 3px 55px 5px 30px;
    border-radius: 30px;
    background: #F8F8F8;
    border: solid 1px #BEBEBE;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
    transition: background .3s ease, color .3s ease;
}
@media screen and (min-width:768px){
    .movies-cate-list-item a:hover{
        background: #fce5ee;
    }
}
@media screen and (max-width:767px){
    .movies-cate-list-item a{
        min-height: 40px;
        padding: 3px 35px 3px 10px;
        border-radius: 3px;
        font-size: 1.4rem;
        justify-content: flex-start;
        border: none;
    }
}
.movies-cate-list-item a:after {
    position: absolute;
    top: calc(50% - 4px);
    right: 36px;
    transform: rotate(135deg);
    width: 6px;
    height: 6px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    content: "";
    z-index: 1;
}
.movies-cate-list-item a:before {
    position: absolute;
    top: calc(50% - 9px);
    right: 30px;
    border-radius: 50%;
    background: #1BA5E3;
    width: 18px;
    height: 18px;
    content: "";
}
@media screen and (max-width:767px){
    .movies-cate-list-item a::after{
        right: 16px;
    }
    .movies-cate-list-item a:before {
        right: 10px;
    }
}

/* movies-sect */
.movies-sect:not(:last-child){
    margin-bottom: 60px;
}
@media screen and (max-width:767px){
    .movies-sect:not(:last-child){
        margin-bottom: 37px;
    }
}
.movies-sect-title{
    font-size: 2.8rem;
    font-weight: 600;
    border-bottom: solid 2px #e6e6e6;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}
.movies-sect-title::after {
    content: "";
    background: #E9518E;
    width: 120px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
}

/* movies-list */
.movies-list{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 44px;
}
.movies-list-item{
    flex: 0 0 auto;
    width: 304px;
}
@media screen and (max-width:767px){
    .movies-list{
        gap: min(22px, 3.75vw) min(20px, 3.125vw);
    }
    .movies-list-item{
        width: calc(50% - min(10px, 1.5625vw));
    }
}
.movies-list-thumb{
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--main-gray);
}
@media screen and (max-width:767px){
    .movies-list-thumb{
        margin-bottom: 6px;
        border-radius: 5px;
    }
}
.movies-list-thumb::before{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
    content: "";
    transition: opacity .3s ease;
}
@media screen and (min-width:768px){
    [data-modal-youtube]:hover .movies-list-thumb::before{
        opacity: 1;
    }
}
.movies-list-thumb::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 1px 8px rgba(0,0,0,.2);
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42"><path d="M17.531 13.345C16.139 12.523 15 13.222 15 14.9v12.201c0 1.678 1.139 2.377 2.531 1.555l10.425-6.16c1.392-.822 1.392-2.168 0-2.991z" style="fill:%23abcd03"/></svg>') no-repeat center / contain, #fff;
    content: "";
    transition: background .3s ease;
}
@media screen and (min-width:768px){
    [data-modal-youtube]:hover .movies-list-thumb::after{
        background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42"><path d="M17.531 13.345C16.139 12.523 15 13.222 15 14.9v12.201c0 1.678 1.139 2.377 2.531 1.555l10.425-6.16c1.392-.822 1.392-2.168 0-2.991z" style="fill:%23fff"/></svg>') no-repeat center / contain, #ABCD03;
    }
}
.movies-list-thumb::after{
    width: min(42px, 9.375vw);
    height: min(42px, 9.375vw);
    box-shadow: 0 1px 8px rgba(0,0,0,.2);
}
.movies-list-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.movies-list-title{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 10px);
    letter-spacing: .04em;
    transition: color .3s ease;
}
@media screen and (min-width:768px){
    [data-modal-youtube]:hover .movies-list-title{
        color: var(--main-color3);
    }
}
@media screen and (max-width:767px){
    .movies-list-title{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.4rem;
        line-height: calc(1em + 7px);
    }
}
/*--------------------
base
-----------------------*/
.base .content-main{
    margin-top: 40px;
}
.base-sec:not(:last-child){
    margin-bottom: 100px;
    padding-bottom:100px;
    border-bottom:solid 1px #BEBEBE;
}
.base-sec-title{
    width: 1200px;
    margin: 0 auto 50px;
    position: relative;
}
.base-sec-title__img{
    border-radius: 20px 20px 20px 0;
    position: relative;
    overflow: hidden;
}
.base-sec-title__img:before{
    content: "";
    background: linear-gradient(90deg, #1BA4E2 0%, #BD6394 100%);
    mix-blend-mode: hard-light; 
    opacity: 0.4;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.base-sec-title__main{
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 2;
    padding: 30px 60px 0 100px;
    border-radius: 0 20px 0 0;
    box-sizing: border-box;
}
.base-sec-title__main::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 0%, transparent 20px, #fff 21px);
    z-index: 2;
    pointer-events: none;
}
.base-sec-title__main span{
    padding-left: 20px;
    box-sizing: border-box;
    font-size: 3.2rem;
    font-weight: 600;
    border-left: solid 5px #E9518E;
}
.base-sec-text{
    width: 1000px;
    margin: 0 auto 80px;
    font-size: 1.6rem;
    line-height: calc(1em + 16px);
}
/*sp*/
@media screen and (max-width:767px){
    .base .content-main{
        margin-top: 5px;
    }
    .base-sec:not(:last-child){
        margin-bottom: 70px;
        padding-bottom:70px;
    }
    .base-sec-title {
        width: 100%;
        margin: 0 auto 25px;
    }
    .base-sec-text {
        width: var(--inner-width);
        margin: 0 auto 50px;
        font-size: 1.4rem;
        line-height: calc(1em + 13px);
    }
    .base-sec-title__img {
        border-radius: 0;
    }
    .base-sec-title__main {
        padding: 15px 20px 0 var(--inner-sidespace--sp);
        border-radius: 0 15px 0 0;
        box-sizing: border-box;
    }
    .base-sec-title__main span {
        padding-left: 12px;
        font-size: 1.9rem;
        border-left: solid 4px #E9518E;
    }
    .base-sec-title__main::before{
        top: auto;
        right: -15px;
        left: auto;
        bottom: 0;
        width: 15px;
        height: 15px;
        background: radial-gradient(circle at 100% 0%, transparent 15px, #fff 16px);
    }
}
/*base-sec-in-charge*/
.base-sec-in-charge {
    width: 1000px;
    margin: 0 auto 50px;
    position: relative;
}
.base-sec-in-charge-title {
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 8px 30px;
    background-color: #AACD06;
    color: #ffffff;
    font-size: 2.0rem;
    font-weight: bold;
    border-radius: 40px;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.base-sec-in-charge-text {
    background-color: #F0F0F0;
    border-radius: 20px;
    padding: 50px 80px 40px;
    box-sizing: border-box;
}
.base-sec-in-charge-text-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 23px 50px;
}
.base-sec-in-charge-text-list li {
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
    flex: 0 1 auto;
}
.base-sec-in-charge-text-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #1BA5E3;
    border-radius: 50%;
}
/*sp*/
@media screen and (max-width:767px){
    .base-sec-in-charge {
        width: var(--inner-width);
        margin: 0 auto 40px;
    }
    .base-sec-in-charge-title {
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        padding: 5px 30px;
        font-size: 1.6rem;
        font-weight: bold;
        border-radius: 20px;
    }
    .base-sec-in-charge-text {
        border-radius: 10px;
        padding: 35px 30px 30px;
        box-sizing: border-box;
    }
    .base-sec-in-charge-text-list {
        gap: 15px 20px;
    }
    .base-sec-in-charge-text-list li {
        font-size: 1.4rem;
        position: relative;
        padding-left: 10px;
    }
    .base-sec-in-charge-text-list li::before {
        width: 8px;
        height: 8px;
    }
}
/**/
/* 全体のコンテナ設定 */
.base-area {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.base-tab-buttons {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 5px 20px 0;
    box-sizing: border-box;
    margin: 0;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.base-tab-buttons + .base-tab-contents{
    border-top: solid 1px #BEBEBE;
    padding-top: 25px;
}
.base-tab-buttons::-webkit-scrollbar {
    display: none;
}
.base-tab-btn {
    padding: 17px 20px;
    font-size: 1.6rem;
    background-color: #ffffff;
    border: 1px solid #BEBEBE;
    border-bottom: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex: 0 0 auto; 
    position: relative;
    z-index: 1;
}
.base-tab-btn:before{
    content: "";
    width: calc(100% - 48px);
    height: 2px;
    background: #1BA5E3;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translate(-50%);
    opacity: 0;
    transition: all ease .3s;
}
.base-tab-btn:hover {
    background-color: #f9f9f9;
}
.base-tab-btn.active {
    border-bottom: 2px solid #ffffff;
    margin-bottom: -1px;
    z-index: 3;
}
.base-tab-btn.active:before{
    opacity: 1;
    transition: all ease .3s;
}
.base-tab-contents {
    position: relative;
    z-index: 2;
    margin-top: -1px;
}
.base-tab-content {
    display: none;
    padding: 0;
}
.base-tab-content.active {
    display: block;
}
.base-map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.base-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}
/*sp*/
@media screen and (max-width: 767px) {
    .base-tab-buttons{
        padding: 5px var(--inner-sidespace--sp) 0;
    }
    .base-tab-btn {
        font-size: 1.4rem;
        padding: 8px 10px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    .base-tab-content {
        display: none;
        padding: 0 var(--inner-sidespace--sp) 0;
    }
    .base-tab-buttons + .base-tab-contents {
        padding-top: 20px;
    }
    .base-map-wrapper iframe {
        height: auto;
        aspect-ratio: 5 / 4;
    }
    .base-tab-btn:before {
        content: "";
        width: calc(100% - 20px);
    }
}
/*base-sec-image*/
.base-sec-image {
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}
.js-keen-slider--center {
    overflow: visible !important;
}
.base-sec-image__slid {
    position: relative;
    box-sizing: border-box;
}
.base-sec-image__slid img {
    border: solid 1px #BEBEBE;
    width: 100%;
    height: auto;
    display: block;
}
.base-sec-image__slid .catch {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(180deg, transparent 0%, rgba(16,16,16,0.6) 100%);
}
/*pc*/
@media (min-width: 768px) {
    .base-sec-image__slid {
        min-width: 780px !important;
        max-width: 780px !important;
    }
    .js-keen-slider--center.is-single-slide {
        display: flex;
        justify-content: center;
        overflow: visible !important;
    }
    .js-keen-slider--center.is-single-slide .keen-slider__slide {
        min-width: 780px !important;
        max-width: 780px !important;
    }
    .base-sec-image .keen-slider-arrow--left {
        left: calc(50% - 420px);
    }
    .base-sec-image .keen-slider-arrow--right {
        right: calc(50% - 420px);
    }
    .base-sec-image .keen-slider--thumbnail__slide {
        min-width: 111px !important;
        max-width: 111px !important;
    }
    .base-sec-image .keen-slider--thumbnail__slide img{
        border: none;
    }
}
/*sp*/
@media (max-width: 767px) {
    .base-sec-image{
        margin-bottom: 25px;
    }
    .base-sec-image__slid {
        min-width: 84% !important;
        max-width: 84% !important;
    }
    .base-sec-image .keen-slider-arrow--left {
        left: 10px;
    }
    .base-sec-image .keen-slider-arrow--right {
        right: 10px;
    }
    .base-sec-image .keen-slider--thumbnail__slide {
        flex: 1;
        min-width: calc((100% - 24px) / 4) !important;
        max-width: calc((100% - 24px) / 4) !important;
    }
    .base-sec-image__slid .catch{
        font-size: 1.2rem;
        padding: 10px;
    }
    .base-sec-image .keen-slider--thumbnail__slide img{
        border: none;
    }
}
.base-sec-image .keen-slider--navigation-track {
    position: relative;
    width: 100%;
}
.base-sec-image .keen-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 0;
    transition: background-color 0.2s ease;
}
.base-sec-image .keen-slider-arrow--right {
    background: url(../../../recruit_images/icon_next.svg) no-repeat center / contain;
}
.base-sec-image .keen-slider-arrow--left {
    background: url(../../../recruit_images/icon_prev.svg) no-repeat center / contain;
}
/* サムネイル全体のコンテナ */
.base-sec-image .keen-slider--thumbnail {
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden !important;
}
/* 各サムネイルの基本設定 */
.base-sec-image .keen-slider--thumbnail__slide {
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}
.base-sec-image .keen-slider--thumbnail__slide img {
    border: 1px solid #BEBEBE;
    width: 100%;
    height: auto;
    display: block;
}
.base-sec-image .keen-slider--thumbnail__slide--active img{
    border-color: var(--main-black2);
    border-width: 2px;
}
.base-sec-image .keen-slider--thumbnail .catch {
    display: none !important;
}
/*sp*/
@media screen and (max-width: 767px) {
    .base-sec-image .keen-slider-arrow{
        width: 40px;
        height: 40px;
    }
    .base-sec-image .keen-slider--thumbnail{
        width: 100%!important;
        padding: 0 8%;
        overflow: visible!important;
    }
}
/*--------------------
faq
----------------------*/
.faq .content-main{
    width: 1000px;
    display: flex;
    gap: 40px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}
.faq-submenu{
    width: 240px;
    min-width: 240px;
}
.faq-submenu-list{
    background: #F8F8F8;
    border-radius: 15px;
    padding: 10px 20px;
    box-sizing: border-box;
    box-shadow: 0 6px 0 rgba(16, 16, 16, 0.1);
}
.faq-submenu-list--item:not(:last-child){
    border-bottom: solid 1px #BEBEBE;
}
.faq-submenu-list--item a{
    position: relative;
    font-size: 1.6rem;
    padding: 15px 30px 15px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.faq-submenu-list--item a:before {
    position: absolute;
    top: calc(50% - 9px);
    right: 0;
    border-radius: 50%;
    background: #1BA5E3;
    width: 18px;
    height: 18px;
    content: "";
}
.faq-submenu-list--item a:after {
    position: absolute;
    top: calc(50% - 4px);
    right: 6px;
    transform: rotate(135deg);
    width: 6px;
    height: 6px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    content: "";
    z-index: 1;
}
.faq-submenu-etc{
    width: 100%;
    height: 60px;
    margin-top: 20px;
}
.faq-submenu-etc a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    font-weight: 600;
    gap: 10px;
    border-radius: 30px;
    border: solid 1px var(--bg-black2);
    transition: all ease .3s;
}
.faq-submenu-etc a:before{
    content: "";
    background: url(../../../recruit_images/icon_mail.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    
}
@media (any-hover: hover){
    .faq-submenu-etc a:hover{
        background: #fce5ee;
        transition: all ease .3s;
    }
}
.faq-main{
    width: 100%;
    flex: 1;
}
.faq-sec:not(:last-child){
    margin-bottom: 90px;
}
.faq-sec-title{
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.faq-sec-list-sec{
    border-top: solid 1px #707070;
}
.faq-sec-list-sec:last-child{
    border-bottom: solid 1px #707070;
}
.faq-sec-list-title{
    padding: 30px 40px 30px 50px;
    box-sizing: border-box;
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
}
.faq-sec-list-title:before{
    content: "Q";
    color: #E9518E;
    font-family: var(--font-en2);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #E9518E;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 25px;
}
.faq-sec-list-title::after {
    position: absolute;
    top: calc(50% - 9px);
    right: 0;
    width: 18px;
    height: 18px;
    background: 
    linear-gradient(to top, var(--main-black2), var(--main-black2)) no-repeat 0 8px / 18px 2px, 
    linear-gradient(to right, var(--main-black2), var(--main-black2)) no-repeat 8px 0 / 2px 18px;
    content: "";
    transition: transform .3s ease;
}
.faq-sec-list-title.accordion--open::after {
    transform: rotate(180deg);
    background: linear-gradient(to right, var(--main-black2), var(--main-black2)) no-repeat 0 8px / 18px 2px;
}
.faq-sec-list-title.accordion--open{
    padding-bottom: 20px;
}
.faq-sec-list-text{
    font-size: 1.4rem;
    padding-top: 10px;
    padding-bottom: 30px;
    padding-left: 50px;
    position: relative;
    line-height: calc(1em + 11px);
}
.faq-sec-list-text:before{
    content: "A";
    color: #E9518E;
    font-family: var(--font-en2);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F0F0;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
}
.faq-sec-list-text a{
    color: #1BA5E3;
    text-decoration: underline;
}
.faq-form iframe{
    width: 100%;
    height: auto;
}
/*sp*/
@media screen and (max-width: 767px) {
    .faq .content-main {
        width: var(--inner-width);
        display: flex;
        flex-flow: column;
        gap: 50px;
        margin-top: 5px;
    }
    .faq-submenu {
        width: 100%;
    }
    .faq-submenu-list {
        width: 100%;
        border-radius: 10px;
        padding: 25px 20px;
        min-width: inherit;
        display: flex;
        flex-flow: row wrap;
        gap: 15px 20px;
    }
    .faq-submenu-list--item {
        border-bottom: solid 1px #BEBEBE;
    }
    .faq-submenu-list--item a {
        position: relative;
        font-size: 1.4rem;
        padding: 0 25px 10px 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }
    .faq-submenu-list--item a:before {
        position: absolute;
        top: calc(50% - 11px);
        right: 0;
        border-radius: 50%;
        background: #1BA5E3;
        width: 14px;
        height: 14px;
        content: "";
    }
    .faq-submenu-list--item a:after {
        position: absolute;
        top: calc(50% - 7px);
        right: 5px;
        transform: rotate(135deg);
        width: 4px;
        height: 4px;
        border-top: solid 1px #fff;
        border-right: solid 1px #fff;
        content: "";
        z-index: 1;
    }
    .faq-submenu-etc{
        width: 170px;
        height: 54px;
        border-radius: 27px;
    }
    .faq-submenu-etc a {
        font-size: 1.4rem;
    }
    .faq-sec:not(:last-child) {
        margin-bottom: 50px;
    }
    .faq-sec-title {
        font-size: 1.9rem;
    }
    .faq-sec-list-title.accordion--open {
        padding-bottom: 10px;
    }
    .faq-sec-list-title {
        padding: 25px 35px 25px 50px;
    }
    .faq-sec-list-title::after {
        position: absolute;
        top: calc(50% - 8px);
        right: 0;
        width: 16px;
        height: 16px;
        background: 
        linear-gradient(to top, var(--main-black2), var(--main-black2)) no-repeat 0 7px / 16px 2px, 
        linear-gradient(to right, var(--main-black2), var(--main-black2)) no-repeat 7px 0 / 2px 16px;
        content: "";
        transition: transform .3s ease;
    }
    .faq-sec-list-title.accordion--open::after {
        background: linear-gradient(to right, var(--main-black2), var(--main-black2)) no-repeat 0 7px / 16px 2px;
    }
    .faq-sec-list-text {
        padding-bottom: 25px;
    }
}

/*20260522追記*/
/*-------------------
job
---------------------*/
.job .content-main{
    width: 1000px;
    margin: 50px auto 0;
}
.job-table{
    padding: 60px;
    box-sizing: border-box;
    border-radius: 30px;
    background: #F8F8F8;
    border: solid 1px #BEBEBE;
}
.job-table:not(:last-of-type){
    margin-bottom: 80px;
}
.job-table-title{
    color: #1BA5E3;
    font-size: 3.2rem;
    font-weight: 600;
    padding-left: 50px;
    position: relative;
    margin-bottom: 30px;
}
.job-table-title:before {
    content: "";
    background: #1BA5E3;
    position: absolute;
    left: 12px;
    top: 12px;
    width: 16px;
    height: 30px;
    transform: skewX(-40deg);
    border-radius: 2px;
    z-index: 0;
}
.recruit-new .job-table-title{
    color: #E9518E;
}
.recruit-new .job-table-title:before{
    background: #E9518E;
}
.job-table-info{
    width: 100%;
    border-bottom: solid 1px #BEBEBE;
}
.job-table-info tr th{
    width: 190px;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 20px 20px 20px 0;
    box-sizing: border-box;
    border-top: solid 1px #1BA5E3;
}
.recruit-new .job-table-info tr th{
    border-top: solid 1px #E9518E;
}
.job-table-info tr td{
    font-size: 1.6rem;
    padding: 20px 0;
    box-sizing: border-box;
    border-top: solid 1px #BEBEBE;
    line-height: calc(1em + 11px);
}
.job-table-info tr td p{
    font-size: 1.6rem;
    line-height: calc(1em + 11px);
}
.job-table-info tr td p:not(:last-child){
    margin-bottom: 15px;
}
.job-table-btn{
    width: fit-content;
    min-width: 500px;
    min-height: 70px;
    margin: 40px auto 0;
}
.job-table-btn a{
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    background: #AACD06;
    display: flex;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 70px;
    box-shadow: 0 6px 0 rgba(16, 16, 16, 0.1);
    border-radius: 35px;
    position: relative;
    top: 0;
    transition: all 0.1s ease;
}
@media (any-hover: hover) {
    .job-table-btn a:hover {
        top: 4px;
        box-shadow: 0 4px 0 rgba(16, 16, 16, 0.1);
    }
}
.job-table-btn a:active {
    top: 10px;
    box-shadow: 0 0 0 rgba(16, 16, 16, 0.1);
}
/*sp*/
@media screen and (max-width: 767px) {
    .job .content-main{
        width: var(--inner-width);
        margin: 5px auto 0;
    }
    .job-table {
        padding: 30px 15px 40px;
        box-sizing: border-box;
        border-radius: 10px;
    }
    .job-table:not(:last-of-type){
        margin-bottom: 50px;
    }
    .job-table-title {
        font-size: 1.9rem;
        padding-left: 40px;
        position: relative;
        margin-bottom: 20px;
    }
    .job-table-title:before {
        content: "";
        position: absolute;
        left: 12px;
        top: 4px;
        width: 12px;
        height: 21px;
        transform: skewX(-40deg);
        border-radius: 2px;
        z-index: 0;
    }
    .job-table-btn {
        width: 100%;
        min-width: inherit;
        min-height: 54px;
        margin: 40px auto 0;
    }
    .job-table-btn a {
        font-size: 1.4rem;
        font-weight: 600;
        min-height: 54px;
        box-shadow: 0 6px 0 rgba(16, 16, 16, 0.1);
        border-radius: 27px;
    }
    .job-table-info {
        border-bottom: solid 1px #BEBEBE;
    }
    .job-table-info tr th {
        font-size: 1.4rem;
        width: 100%;
        display: block;
        padding: 20px 0 12px;
    }
    .job-table-info tr td{
        font-size: 1.4rem;
        display: block;
        width: 100%;
        padding: 0 0 20px;
        border-top: none;
    }
    .job-table-info tr:not(:first-child) th {
        border-top: solid 1px #BEBEBE;
    }
    .recruit-new .job-table-info tr:not(:first-child) th {
        border-top: solid 1px #BEBEBE;
    }
}
/*job-sec*/
.job-sec:not(:last-of-type){
    margin-bottom: 80px;
}
.job-sec-title{
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 40px;
}
.job-sec-title::before {
    color: #1BA5E3;
    width: fit-content;
    display: block;
    font-family: var(--font-en2);
    color: var(--main-black2);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(1em + 7px);
    content: attr(data-title-en);
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: solid 2px #1BA5E3;
}
.recruit-new .job-sec-title::before,
.internship .job-sec-title::before{
    color: #E9518E;
    border-color: #E9518E;
}
/*sp*/
@media screen and (max-width: 767px) {
    .job-sec:not(:last-of-type){
        margin-bottom: 50px;
    }
    .job-sec-title{
        font-size: 1.9rem;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .job-sec-title::before {
        font-size: 1.4rem;
        padding-bottom: 3px;
        margin-bottom: 8px;
    }
}

/* ==========================================
   共通・PC用スタイル（基本のベース設定）
   ========================================== */
.job-sec-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
    counter-reset: step-counter; /* 数字の自動カウント */
}

/* 各ステップの白い外枠 */
.job-sec-step-item {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #BEBEBE;
    box-sizing: border-box;
    min-height: 64px;
    padding: 20px 20px 20px 128px; /* 左側にリボン用のスペースを確保 */
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(1em + 8px);
}

/* ==========================================
   追加された .step 要素（ピンクのリボン全体）
   ========================================== */
.job-sec-step .step {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    background: #E9518E;
    width: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 28px;
    box-sizing: border-box;
    clip-path: polygon(0 0, 100% 0, 72px 100%, 0 100%);
}
.job-sec-step .step::before {
    content: "STEP";
    color: #ffffff;
    font-family: var(--font-en2);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.0;
    margin-bottom: 2px;
}
.job-sec-step .step::after {
    counter-increment: step-counter;
    content: counter(step-counter, decimal-leading-zero);
    color: #ffffff;
    font-family: var(--font-en2);
    font-size: 3.0rem;
    font-weight: 500;
    line-height: 1.0;
}
.job-sec-step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 13px 0 13px;
    border-color: #BEBEBE transparent transparent transparent;
    z-index: 10;
}
.job-sec-step-item-inner {
    width: 100%;
    position: relative;
    z-index: 2;
}


/*sp*/
@media screen and (max-width: 767px) {
    .job-sec-step-item {
        min-height: 50px; 
        padding: 10px 10px 10px 80px;
        font-size: 1.4rem;
    }
    .job-sec-step .step {
        left: -1px;
        width: 74px;
        padding-right: 18px;
        clip-path: polygon(0 0, 100% 0, 52px 100%, 0 100%);
    }
    .job-sec-step .step::before {
        font-size: 1.2rem;
        margin-bottom: 1px;
    }
    .job-sec-step .step::after {
        font-size: 2.2rem;
    }
}
/*job-sec-text*/
.job-sec-text{
    margin-bottom: 40px;
}
/*sp*/
@media screen and (max-width: 767px) {
    .job-sec-text{
        margin-bottom: 25px;
    }
}
/*job-entry-btn*/
.job-entry-btn{
    display: flex;
    gap: 50px;
    justify-content: center;
}
.job-entry-btn-list{
    flex: 0 1 100%;
    min-width: 480px;
    width: 100%;
    border-radius: 20px;
}
.job-entry-btn-list a{
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    border: solid 1px #BEBEBE;
    box-sizing: border-box;
    box-shadow: 5px 5px 0 rgba(16, 16, 16, 0.2);
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 240px;
    box-sizing: border-box;
    transition: all 0.1s ease;
}
@media (any-hover: hover) {
    .job-entry-btn-list a:hover {
        top: 3px;
        box-shadow: 3px 3px 0 rgba(16, 16, 16, 0.2);
        transition: all 0.1s ease;
    }
}
.job-entry-btn-list a:active {
    top: 10px;
    box-shadow: 0 0 0 rgba(16, 16, 16, 0.2);
}
.job-entry-btn-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.job-entry-btn-bg:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(27,167,226,0.9) 0%,rgba(105,133,188,0.7) 50%, rgba(189,99,148,0.6) 100%);
    border: solid 4px #fff;
    box-sizing: border-box;
    border-radius: 20px;
    z-index: 1;
}
.job-entry-btn-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.job-entry-btn-text{
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: calc(1em + 10px);
    position: relative;
    z-index: 1;
    padding: 35px;
    box-sizing: border-box;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    padding-bottom: 67px;
    box-sizing: border-box;
}
.job-entry-btn-text::before {
    content: "";
    position: absolute;
    left: 62px;
    bottom: 40px;
    width: 14px;
    height: 2px;
    background: #fff;
    transform-origin: right top;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.job-entry-btn-text::after {
    content: "";
    position: absolute;
    left: 35px;
    bottom: 40px;
    width: 40px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}
@media (any-hover: hover) {
    .job-entry-btn-list a:hover .job-entry-btn-text::before {
        transform: translateX(10px) rotate(45deg);
    }
    .job-entry-btn-list a:hover .job-entry-btn-text::after {
        transform: translateX(10px);
    }
}
/*pc*/
@media screen and (min-width: 768px) {
    .job-entry-btn-list:only-child .job-entry-btn-text{
        padding-bottom: 35px;
        padding-right: 77px;
    }
    .job-entry-btn-list:only-child .job-entry-btn-text::before {
        content: "";
        position: absolute;
        left: auto;
        right: 35px;
        top: calc(50% + 2px);
        bottom: auto;
        width: 14px;
        height: 2px;
        background: #fff;
        transform-origin: right top;
        transform: rotate(45deg);
        transition: all 0.3s;
    }
    .job-entry-btn-list:only-child .job-entry-btn-text::after {
        content: "";
        position: absolute;
        left: auto;
        right: 35px;
        top: calc(50% + 2px);
        bottom: auto;
        width: 40px;
        height: 2px;
        background: #fff;
        transition: all 0.3s;
    }
}
/*sp*/
@media screen and (max-width: 767px) {
    .job-entry-btn {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-flow: column;
    }
    .job-entry-btn-list {
        flex: 0 1 100%;
        min-width: inherit;
        width: 100%;
        border-radius: 10px;
    }
    .job-entry-btn-list a {
        border-radius: 10px;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 170px;
    }
    .job-entry-btn-bg:before{
        content: "";
        border-radius: 10px;
        z-index: 1;
    }
    .job-entry-btn-text {
        width: 100%;
        height: 100%;
        min-height: 170px;
        display: flex;
        align-items: center;
        color: #fff;
        font-size: 1.6rem;
        font-weight: bold;
        position: relative;
        z-index: 1;
        padding: 35px;
        box-sizing: border-box;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        padding-bottom: 67px;
        box-sizing: border-box;
    }
}
/*job-link*/
.job-link {
    position: relative;
    background: #ffffff;
    border: 1px solid #BEBEBE;
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: 0 6px 0 rgba(16, 16, 16, 0.1); /* ほんのりとしたドロップシャドウ */
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 40px;
}
.job-link-title {
    position: relative;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}
.job-link-title::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 100%;
    background: #1BA5E3;
}
.job-link-main {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}
.job-link-main-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1BA5E3;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    min-width: 210px;
    min-height: 60px;
    padding: 10px 45px 10px 35px; /* 右側の矢印分を考慮した余白 */
    border-radius: 30px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    position: relative;
}
.job-link-main-item a::before {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background-color: #ffffff;
    display: inline-block;
    transition: all ease .3s;
}
.job-link-main-item a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50%);
    right: 21px;
    transition: all ease .3s;
}
@media (any-hover: hover) {
    .job-link-main-item a:hover {
        opacity: 0.85;
    }
    .job-link-main-item a:hover::before  {
        transform: translateY(calc(-50% + 5px));
    }
    .job-link-main-item a:hover::after {
        transform: translateY(5px) rotate(45deg);
    }
}
.job-link-note {
    font-size: 1.6rem;
    margin: 0;
    line-height: calc(1em + 11px);
}
.job-link-note a {
    color: #1BA5E3;
    text-decoration: underline;
}
/*sp*/
@media screen and (max-width: 767px) {
    .job-link {
        border-radius: 10px;
        padding: 25px 15px 35px;
        margin-bottom: 50px;
    }
    .job-link-title {
        position: relative;
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    .job-link-title::before {
        left: -15px;
        width: 3px;
        height: 100%;
    }
    .job-link-main {
        gap: 15px;
        margin-bottom: 20px;
    }
    .job-link-main-item{
        width: calc((100% - 15px) / 2);
    }
    .job-link-main-item a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 1.4rem;
        font-weight: bold;
        min-width: inherit;
        min-height: 54px;
        padding: 10px 35px 10px 25px;
        border-radius: 27px;
    }
    .job-link-main-item a::after {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        transform: rotate(45deg);
        position: absolute;
        top: calc(50% - 3px);
        right: 16px;
        transition: all ease .3s;
    }
    .job-link-main-item a::before {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 12px;
        background-color: #ffffff;
        display: inline-block;
        transition: all ease .3s;
    }
    .job-link-note {
        font-size: 1.4rem;
        margin: 0;
    }
}
/*----------------
type追記
------------------*/
.submit-wrapper {
    width: 780px;
    margin: 50px auto 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
}
.submit-wrapper .step-arrow{
    text-align: center;
}
@media screen and (max-width: 767px) {
    .submit-wrapper {
        width: var(--inner-width);
        margin: 40px auto 0;
    }
    .submit-wrapper .step-arrow {
        text-align: center;
        margin: -25px auto;
    }
}
/*---------------------
entry
----------------------*/
.entry .content-main{
    margin-top: 40px;
}
.entry .top-my_navi{
    margin-top: 50px;
    margin-bottom: 0;
}
.entry-sec{
    padding: 80px 0 120px;
    box-sizing: border-box;
    background: #F8F8F8;
    border-radius: 40px 40px 0 0;
}
.entry-sec-wrapper{
    width: 1000px;
    margin: 0 auto;
}
.entry-sec2{
    margin-top: -40px;
    padding: 80px 0 0;
    box-sizing: border-box;
    background: #fff;
    border-radius: 40px 40px 0 0;
    scroll-margin-top:10px;
}
.entry-sec2-wrapper{
    width: 100%;
    margin: 0 auto 0;
}
.entry-sec-title{
    font-size: 3.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-flow: column;
    gap: 15px;
}
.entry-sec-title::before {
    content: attr(data-title-en);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en2);
    font-weight: 500;
    color: #fff;
    width: fit-content;
    font-size: 1.6rem;
    font-weight: 500;
    background: #E9518E;
    height: 32px; 
    padding: 0 20px 0 20px; 
    box-sizing: border-box;
    margin: 0 auto;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.entry-sec2 .entry-sec-title::before {
    background: #1BA5E3;
}
.entry-sec2-text{
    width:1000px;
    margin:0 auto 20px;
    text-align:center;
}
/*sp*/
@media screen and (max-width: 767px) {
    .entry-sec {
        padding: 30px 0 70px;
        box-sizing: border-box;
        background: #F8F8F8;
        border-radius: 20px 20px 0 0;
    }
    .entry-sec-wrapper {
        width: var(--inner-width);
        margin: 0 auto;
    }
    .entry-sec2{
        margin-top: -20px;
        padding: 30px 0 0;
        border-radius: 20px 20px 0 0;
        scroll-margin-top: 30px;
    }
    .entry-sec2-wrapper{
        width: 100%;
        margin: 0 auto;
    }
    .entry-sec-title {
        font-size: 1.9rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        gap: 10px;
    }
    .entry-sec-title::before {
        font-size: 1.1rem;
        height: 20px;
        padding: 0 20px 0 20px;
        box-sizing: border-box;
        margin: 0 auto;
        clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }
    .entry-sec2-text{
        width:var(--inner-width);
        margin:0 auto 20px;
    }
    .entry .top-my_navi {
        margin-top: 30px;
        margin-bottom: 0;
    }
}
/*--------------------
internship
---------------------*/
.internship .content-main{
    width: 100%;
    margin-top: -20px;
}
.internship-sec1{
    width: 1000px;
    margin: 0 auto 80px;
}
.internship-sec-text{
    font-size: 1.5rem;
    line-height: calc(1em + 12px);
}
.internship-sec-text p:not(:last-of-type){
    margin-bottom: 20px;
}
.internship-sec-text:not(:last-of-type){
    margin-bottom: 40px;
}
.internship-btn1{
    width: 500px;
    min-height: 70px;
    margin: 0 auto;
}
.internship-btn1 a {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    background: #1BA5E3;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 70px;
    box-shadow: 0 6px 0 rgba(16, 16, 16, 0.1);
    border-radius: 35px;
    position: relative;
    top: 0;
    transition: all 0.1s ease;
}
@media (any-hover: hover) {
    .internship-btn1 a:hover {
        top: 4px;
        box-shadow: 0 4px 0 rgba(16, 16, 16, 0.1);
    }
}
.internship-btn1 a:active {
    top: 10px;
    box-shadow: 0 0 0 rgba(16, 16, 16, 0.1);
}
.internship-btn1 a img{
    width: 20px;
}
/*sp*/
@media screen and (max-width: 767px) {
    .internship .content-main {
        width: 100%;
        margin-top: 5px;
    }
    .internship-sec1 {
        width: var(--inner-width);
        margin: 0 auto 50px;
    }
    .internship-sec-text{
        font-size: 1.4rem;
    }
    .internship-sec-text p:not(:last-of-type){
        margin-bottom: 15px;
    }
    .internship-sec-text:not(:last-of-type){
        margin-bottom: 25px;
    }
    .internship-btn1 {
        width: 100%;
        min-width: inherit;
        min-height: 54px;
        margin: 0 auto;
    }
    .internship-btn1 a {
        font-size: 1.4rem;
        font-weight: 600;
        min-height: 54px;
        box-shadow: 0 6px 0 rgba(16, 16, 16, 0.1);
        border-radius: 27px;
    }
}
/*internship-schedule*/
.internship-schedule{
    margin-bottom: 80px;
}
.internship-schedule-wrapper{
    width: 1000px;
    margin: 0 auto 50px;
}
.internship-schedule-main{
    background: #F8F8F8;
    padding: 50px 35px 80px;
    box-sizing: border-box;
}
.internship-schedule-main-wrapper{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.internship-schedule-main-item{
    width: calc((100% - 10px) / 2);
}
.internship-schedule-main-title{
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 20px;
}
.schedule-calendar iframe {
    width: calc(100% - 3px) !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    display: block;
    margin: 0 auto;
}
.internship-schedule-main-item .not-concent-msg{
    background: #fff;
}
/*sp*/
@media screen and (max-width: 767px) {
    .internship-schedule{
        margin-bottom: 50px;
    }
    .internship-schedule-wrapper{
        width: var(--inner-width);
        margin: 0 auto 40px;
    }
    .internship-schedule-main {
        padding: 40px var(--inner-sidespace--sp);
        box-sizing: border-box;
    }
    .internship-schedule-main-wrapper {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-flow: column;
    }
    .internship-schedule-main-item {
        width: 100%;
    }
    .schedule-calendar iframe{
        aspect-ratio: 2 / 3; 
    }
}
.internship-sec{
    width: 1000px;
    margin: 0 auto;
}
.internship-sec:not(:last-of-type){
    margin-bottom: 80px;
}
/*sp*/
@media screen and (max-width: 767px) {
    .internship-sec{
        width: var(--inner-width);
        margin: 0 auto;
    }
    .internship-sec:not(:last-of-type){
        margin-bottom: 50px;
    }
}
/*internship-sec-app*/
.internship-sec-app {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
:where(.internship-sec-app-body) :is(h1,h2,h3,h4,h5,h6) + *,
:where(.internship-sec-app-body) :is(h1,h2,h3,h4,h5,h6) + * > *:first-child{
    margin-top: 0!important;
}
.internship-sec-app-body :where(h1,h2){
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: solid 1px var(--border-gray);
    font-size: 2.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.internship-sec-app-body :where(h1,h2):not(:first-child){
    margin-top: 40px;
}
.internship-sec-app-body :where(h1,h2)::before{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 1px;
    background: var(--main-red);
    content: "";
}
.internship-sec-app-body h3 {
    position: relative;
    background: #F8F8F8;
    font-size: 2.4rem;
    font-weight: bold;
    padding: 10px 10px 10px 36px;
    margin: 0;
    line-height: 1.4;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.internship-sec-app-body h3:not(:first-child){
    margin-top: 40px;
}
.internship-sec-app-body h3::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #AACD06;
    border-radius: 50%;
}
.internship-sec-app-body h4 {
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: solid 4px var(--main-blue);
    font-size: 2.1rem;
    font-weight: bold;
}
.internship-sec-app-body h4:not(:first-child){
    margin-top: 30px;
}
.internship-sec-app-body h5 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: bold;
}
.internship-sec-app-body h5:not(:first-child){
    margin-top: 20px;
}
.internship-sec-app-body h6 {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: bold;
}
.internship-sec-app-body h6:not(:first-child){
    margin-top: 15px;
}
.internship-sec-app-body p:not(:last-of-type){
    margin-bottom: 20px;
}
.internship-sec-app-body p {
    font-size: 1.5rem;
    line-height: calc(1em + 12px);
    margin: 0;
}
.internship-sec-app-body ul {
    margin: 0;
    list-style-type: none; 
}
.internship-sec-app-body li {
    font-size: 1.5rem;
    line-height: calc(1em + 12px);
    position: relative;
    padding-left: 15px;
}
/* ★新設：小さくしたカスタムドット */
.internship-sec-app-body li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: calc((1em + 12px) / 2); 
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: var(--main-black2); /* 本文と同じ黒系の色 */
    border-radius: 50%; /* 正円にする */
}
.internship .bnr-sec:not(:last-of-type){
    margin-bottom: 80px;
}
/*sp*/
@media screen and (max-width: 767px) {
    .internship-sec-app {
        gap: 30px;
    }
    .internship-sec-app-body :where(h1,h2){
        margin-bottom: 15px;
        padding-bottom: 11px;
        font-size: 1.7rem;
    }
    .internship-sec-app-body :where(h1,h2):not(:first-child){
        margin-top: 30px;
    }
    .internship-sec-app-body :where(h1,h2)::before{
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100px;
        height: 1px;
        background: var(--main-red);
        content: "";
    }
    .internship-sec-app-body h3 {
        font-size: 1.6rem;
        padding: 10px 10px 10px 35px;
        margin-bottom: 15px;
    }
    .internship-sec-app-body h3:not(:first-child){
        margin-top: 30px;
    }
    .internship-sec-app-body h3::before {
        left: 10px;
        width: 12px;
        height: 12px;
    }
    .internship-sec-app-body h4 {
        margin-bottom: 15px;
        padding-left: 8px;
        border-left-width: 3px;
        font-size: 1.5rem;
    }
    .internship-sec-app-body h4:not(:first-child){
        margin-top: 20px;
    }
    .internship-sec-app-body h5 {
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    .internship-sec-app-body h5:not(:first-child){
        margin-top: 15px;
    }
    .internship-sec-app-body h6 {
        margin-bottom: 8px;
        font-size: 1.4rem;
    }
    .internship-sec-app-body h6:not(:first-child){
        margin-top: 12px;
    }
    .internship-sec-app-body p:not(:last-of-type){
        margin-bottom: 10px;
    }
    .internship-sec-app-body p {
        font-size: 1.4rem;
        padding: 0 10px;
    }
    .internship-sec-app-body li {
        font-size: 1.4rem;
        padding-left: 14px;
    }
    .internship .bnr-sec:not(:last-of-type){
        margin-bottom: 50px;
    }
}
/*internship-voice*/
.internship-voice{
    display: flex;
    flex-flow: column;
    gap: 15px;
}
.internship-voice-item{
    padding: 25px 40px;
    box-sizing: border-box;
    background: #F8F8F8;
    border-radius: 0 20px 20px 20px;
    box-shadow: 6px 6px 0 rgba(16, 16, 16, 0.1);
    position: relative;
    margin-left: 30px;
}
.internship-voice-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    background-color: #F8F8F8; 
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.internship-voice-item p{
    font-size: 1.5rem;
    line-height: calc(1em + 12px);
}
.internship-voice-item__user{
    font-size: 1.6rem;
    font-weight: 600;
    color: #1BA5E3;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.internship-voice-item__user img{
    width: 15px;
}
/*sp*/
@media screen and (max-width: 767px) {
    .internship-voice-item{
        padding: 20px 15px;
        box-sizing: border-box;
        background: #F8F8F8;
        border-radius: 0 10px 10px 10px;
        margin-left: 20px;
    }
    .internship-voice-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -20px;
        width: 20px;
        height: 20px;
    }
    .internship-voice-item p{
        font-size: 1.4rem;
    }
    .internship-voice-item__user {
        font-size: 1.4rem;
        font-weight: 600;
        margin-top: 15px;
        gap: 10px;
    }
}
/*internship-flow*/
.internship-flow {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #BEBEBE;
    border-radius: 20px;
    box-sizing: border-box;
}
.internship-flow-main {
    position: relative;
    padding: 40px 40px 40px 40px;
    counter-reset: flow-counter; 
}
.internship-flow-main::before {
    content: "";
    position: absolute;
    left: 70px;
    top: 0;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, #BEBEBE 0%, #BEBEBE 95%, transparent 100%);
    z-index: 1;
}
.internship-flow-main::after{
    content: "";
    background: #BEBEBE;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: 65px;
}
.internship-flow-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
    min-height: 60px;
    box-sizing: border-box;
}
.internship-flow-item::before {
    counter-increment: flow-counter;
    content: counter(flow-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #E9518E;
    color: #ffffff;
    font-family: var(--font-en2);
    font-size: 2.4rem;
    font-weight: 500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.internship-flow-title {
    font-size: 2.0rem;
    font-weight: bold;
    padding-top: 15px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: calc(1em + 8px);
}
.internship-flow-body p {
    font-size: 1.5rem;
    line-height: calc(1em + 12px);
    margin-bottom: 8px;
}
.internship-flow-body p:last-child {
    margin-bottom: 0;
}
.internship-flow-body a {
    color: #1BA5E3;
    text-decoration: underline;
}
.internship-flow-note {
    background-color: #F8F8F8;
    padding: 40px;
    border-radius: 0 0 20px 20px;
}
.internship-flow-note p {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    line-height: calc(1em + 12px);
}
/*sp*/
@media screen and (max-width: 767px) {
    .internship-flow {
        border-radius: 10px;
    }
    .internship-flow-main {
        padding: 25px 15px 30px 15px; 
    }
    .internship-flow-main::before {
        left: 35px;
        top: 0;
        bottom: 25px;
    }
    .internship-flow-main::after {
        left: 30px;
}
    .internship-flow-item {
        padding-left: 55px; 
        margin-bottom: 25px;
        min-height: 42px;
    }
    .internship-flow-item::before {
        width: 42px;
        height: 42px;
        font-size: 1.8rem;
    }
    .internship-flow-title {
        font-size: 1.6rem;
        padding-top: 8px;
        margin-bottom: 10px;
    }
    .internship-flow-body {
        padding-top: 8px;
    }
    .internship-flow-body p {
        font-size: 1.4rem;
    }
    .internship-flow-note {
        padding: 25px 15px;
    }
    .internship-flow-note p {
        font-size: 1.4rem;
        font-weight: normal;
    }
}

/*-------------
culture
-------------*/
.cult-nav{
    position: relative;
    width: var(--inner-width-contents);
    margin: 34px auto 80px;
    padding: 45px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow_sharp);
    background: var(--bg-gray4);
}
@media screen and (max-width:767px){
    .cult-nav{
        margin: 18px auto 55px;
        padding: 40px 18px 25px;
    }
}
.cult-nav-head{
    position: absolute;
    top: -34px;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
}
.cult-nav-head::before{
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: -20px;
    z-index: -1;
    left: calc(50% - 12px);
    width: 24px;
    height: 22px;
    background: var(--border-gray4);
    content: "";
}
.cult-nav-head-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 190px;
    min-height: 50px;
    padding: 9px 15px 11px; 
    border: solid 1px var(--border-gray4);
    border-radius: 10px;
    background: #fff;
    font-size: min(24px, 2rem);
    font-weight: 600;
    line-height: calc(1em + 8px);
    letter-spacing: .1em;
    text-align: center;
    white-space: nowrap;
}
.cult-nav-head-inner::after{
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: -19px;
    left: calc(50% - 11px);
    width: 22px;
    height: 22px;
    background: #fff;
    content: "";
}
@media screen and (max-width:767px){
    .cult-nav-head{
        top: -18px;
    }
    .cult-nav-head::before{
        bottom: -15px;
        z-index: -1;
        left: calc(50% - 9px);
        width: 18px;
        height: 17px;
    }
    .cult-nav-head-inner{
        min-width: 140px;
        min-height: 36px;
        padding: 6px 15px; 
        border-radius: 5px;
        font-size: min(20px, 1.6rem);
    }
    .cult-nav-head-inner::after{
        bottom: -14px;
        left: calc(50% - 8px);
        width: 16px;
        height: 17px;
    }
}
.cult-nav-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 30px;
}
@media screen and (max-width:767px){
    .cult-nav-list{
        gap: 15px 18px;
    }
}
.cult-nav-list-item:not(:last-child){
    position: relative;
    padding-right: 31px;
}
@media screen and (max-width:767px){
    .cult-nav-list-item:not(:last-child){
        padding-right: 19px;
    }
}
.cult-nav-list-item:not(:last-child)::after{
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(30deg);
    width: 1px;
    height: 100%;
    background: var(--border-gray4);
    content: "";
}
.cult-nav-list-item a{
    display: flex;
    align-items: center;
    position: relative;
    min-height: 40px;
    padding: 0 28px 1px 0;
    font-size: 2rem;
    font-weight: 600;
    line-height: calc(1em + 3px);
    letter-spacing: .05em;
}
@media screen and (max-width:767px){
    .cult-nav-list-item a{
        min-height: 28px;
        padding-right: 22px;
        font-size: 1.4rem;
    }
}
@media (any-hover: hover){
    .cult-nav-list-item a:hover{
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 1px;
    }
}
.cult-nav-list-item a::after{
    position: absolute;
    top: calc(50% - 9px);
    right: 0;
    transform: rotate(45deg);
    width: 18px;
    height: 18px;
    background: linear-gradient(to top, #fff, #fff) no-repeat bottom 7px right 7px / 6px 1px, 
    linear-gradient(to top, #fff, #fff) no-repeat bottom 7px right 7px / 1px 6px, 
    var(--main-blue);
    border-radius: 50%;
    content: "";
}
@media screen and (max-width:767px){
    .cult-nav-list-item a::after{
        top: calc(50% - 7px);
        width: 14px;
        height: 14px;
        background: linear-gradient(to top, #fff, #fff) no-repeat bottom 6px right 6px / 4px 1px, 
        linear-gradient(to top, #fff, #fff) no-repeat bottom 6px right 6px / 1px 4px, 
        var(--main-blue);
    }
}

/* cult-sect */
.cult-sect{
    width: var(--inner-width-contents);
    margin: 0 auto;
}
.cult-sect:not(:last-child){
    margin-bottom: 80px;
}
@media screen and (max-width:767px){
    .cult-sect:not(:last-child){
        margin-bottom: 60px;
    }
}
.cult-sect-title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 23px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: calc(1em + 5px);
    letter-spacing: .05em;
}
.cult-sect-title::before{
    display: block;
    opacity: .4;
    margin-bottom: 2px;
    background: linear-gradient(to right, #1ba4e2, #bd6394);
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(0,0,0,0);
    font-family: var(--font-en2);
    font-size: 56px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    content: attr(data-en);
}
@media screen and (max-width:768px){
    .cult-sect-title{
        font-size: 1.9rem;
    }
    .cult-sect-title::before{
        font-size: 34px;
    }
}

/* cult-gallery */
.cult-gallery{
    display: grid;
    gap: 17px 18px;
}
.cult-gallery:not(:last-child){
    margin-bottom: 38px;
}
@media screen and (max-width:767px){
    .cult-gallery{
        grid-template-columns: repeat(2, calc(50% - 7.5px));
        grid-template-rows: unset;
        gap: 14px 15px;
    }
    .cult-gallery:not(:last-child){
        margin-bottom: 15px;
    }
}
.cult-gallery-item{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
}
@media screen and (max-width:767px){
    .cult-gallery-item{
        display: block;
    }
}
.cult-gallery-pic{
    position: relative;
    height: 188px;
    margin-bottom: 5px;
    overflow: hidden;
    background: var(--main-black2);
}
.cult-gallery-pic::after{
    --my-line-color: var(--main-black2);
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border: solid 1px var(--border-gray4);
    border-radius: 50%;
    background: linear-gradient(to top, var(--my-line-color), var(--my-line-color)) no-repeat center / 14px 2px, 
    linear-gradient(to right, var(--my-line-color), var(--my-line-color)) no-repeat center / 2px 14px, 
    #fff;
    content: "";
}
@media screen and (max-width:768px){
    .cult-gallery-pic{
        height: unset;
        aspect-ratio: 5 / 4;
        margin-bottom: 7px;
    }
    .cult-gallery-pic::after{
        width: 30px;
        height: 30px;
    }
}
@media (any-hover: hover){
    .cult-gallery-item:hover .cult-gallery-pic::after{
        --my-line-color: var(--main-red);
        border-color: #fff;
    }   
}
.cult-gallery-pic-wrap{
    position: relative;
    width: 100%;
    height: 100%;
    transition: opacity var(--trans-ease);
}
@media (any-hover: hover){
    .cult-gallery-item:hover .cult-gallery-pic-wrap{
        opacity: .7;
    }   
}
.cult-gallery-pic-wrap::before{
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 1px var(--border-gray4);
    content: "";
}
.cult-gallery-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cult-gallery-pic._pos-top img{
    object-position: top center;
}
.cult-gallery-pic._pos-btm img{
    object-position: bottom center;
}
.cult-gallery-caption{
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: calc(1em + 10px);
    text-align: center;
}
@media screen and (max-width:767px){
    .cult-gallery-caption{
        font-size: 1.1rem;
        line-height: calc(1em + 6px);
    }
}
@media screen and (min-width:768px){
    .cult-gallery._1on4{
        grid-template-columns: 490px repeat(2, 1fr);
        grid-template-rows: auto 1fr auto auto;
    }
    .cult-gallery._1on4 .cult-gallery-item:first-child{
        grid-column: 1 / 2;
        grid-row: 1 / 5;
    }
    .cult-gallery._2on1{
        grid-template-columns: 1fr 604px;
        grid-template-rows: auto 1fr auto auto;
    }
    .cult-gallery._2on1 .cult-gallery-item:nth-child(3){
        grid-column: 2 / 3;
        grid-row: 1 / 5;
    }
    .cult-gallery._1on2{
        grid-template-columns: 604px 1fr;
        grid-template-rows: auto 1fr auto auto;
    }
    .cult-gallery._1on2 .cult-gallery-item:first-child{
        grid-column: 1 / 2;
        grid-row: 1 / 5;
    }
    .cult-gallery._1on4 .cult-gallery-item:first-child .cult-gallery-pic,
    .cult-gallery._2on1 .cult-gallery-item:nth-child(3) .cult-gallery-pic,
    .cult-gallery._1on2 .cult-gallery-item:first-child .cult-gallery-pic{
        grid-row: 1 / 4;
        height: unset;
        min-height: 446px;
    }
    .cult-gallery._2x2{
        grid-template-columns: repeat(2, calc(50% - 10px));
    }
    .cult-gallery._2x2 .cult-gallery-pic{
        min-height: 446px;
    }
}
@media screen and (max-width:767px){
    .cult-gallery._1on4 .cult-gallery-item:first-child,
    .cult-gallery._2on1 .cult-gallery-item:nth-child(3),
    .cult-gallery._1on2 .cult-gallery-item:first-child{
        grid-column: 1 / 3;
        grid-row: unset;
    }
    .cult-gallery._1on4 .cult-gallery-item:first-child .cult-gallery-pic,
    .cult-gallery._2on1 .cult-gallery-item:nth-child(3) .cult-gallery-pic,
    .cult-gallery._1on2 .cult-gallery-item:first-child .cult-gallery-pic{
        grid-row: unset;
        aspect-ratio: 23 / 17;
    }
}
.cult-gallery._2on1 .cult-gallery-item:nth-child(n+4),
.cult-gallery._1on2 .cult-gallery-item:nth-child(n+4),
.cult-gallery._2x2 .cult-gallery-item:nth-child(n+5){
    display: none;
} 

/* culture-modal */
.culture-modal{
    width: 710px;
    padding: 40px;
}
@media screen and (max-width:767px){
    .culture-modal{
        width: 100%;
        padding: var(--inner-sidespace--sp) var(--inner-sidespace--sp) 25px;
    }
}
.culture-modal-pic{
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}
@media screen and (max-width:768px){
    .culture-modal-pic{
        margin-bottom: 20px;
        border-radius: 5px;
    }
}
.culture-modal-pic::before{
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 1px var(--border-gray4);
    border-radius: inherit;
    content: "";
}
.culture-modal-pic img{
    width: 100%;
    height: auto;
}
.culture-modal-pic__group{
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 15px 5px;
    border-radius: 99px;
    background: rgba(255,255,255,.8);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: calc(1em + 3px);
}
@media screen and (max-width:767px){
    .culture-modal-pic__group{
        top: 10px;
        left: 10px;
        font-size: 1.4rem;
    }
}
.culture-modal-catch{
    position: relative;
    margin-bottom: 12px;
    padding: 2px 0 3px 10px;
    border-left: solid 6px var(--main-red);
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: .05em;
    line-height: calc(1em + 7px);
}
@media screen and (max-width:767px){
    .culture-modal-catch{
        margin-bottom: 9px;
        border-left-width: 4px;
        font-size: 1.6rem;
    }
}
.culture-modal-body{
    font-size: 1.4rem;
    letter-spacing: .05em;
    line-height: calc(1em + 13px);
}
@media screen and (max-width:767px){
    .culture-modal-body{
        font-size: 1.2rem;
        line-height: calc(1em + 11px);
    }
}
.culture-modal-close{
    display: block;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    transition: background var(--trans-ease);
}
@media (any-hover: hover){
    .culture-modal-close:hover{
        background: var(--bg-gray3);
    }
}
.culture-modal-close-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 71px;
    padding-bottom: 1px;
    border-top: solid 1px var(--border-gray4);
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: calc(1em + 3px);
}
.culture-modal-close-inner::before{
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    background: linear-gradient(to top, currentColor, currentColor) no-repeat center / 2px 100%,
    linear-gradient(to right, currentColor, currentColor) no-repeat center / 100% 2px;
    content: "";
}
@media screen and (max-width:767px){
    .culture-modal-close-inner{
        height: 51px;
        font-size: 1.4rem;
    }
    .culture-modal-close-inner::before{
        width: 16px;
        height: 16px;
    }
}

/*-------------
type/list
-------------*/
.contents.all-type{
    overflow: hidden;
}
.all-type-list{
    position: relative;
    z-index: 0;
    width: var(--inner-width-contents);
    margin: 0 auto;
}
.all-type-list::before{
    content: "";
    background: url(../images/type_bg001.png) no-repeat;
    background-size: contain;
    width: 1083px;
    height: 441px;
    position: absolute;
    top: 500px;
    left: -790px;
    z-index: -1;
}
@media screen and (max-width:767px){
    .all-type-list::before{
        width: 360px;
        height: 147px;
        position: absolute;
        top: 390px;
        left: auto;
        right: 50%;
    }
}
.all-type-list::after{
    content: "";
    background: url(../images/type_bg001.png) no-repeat;
    background-size: contain;
    width: 1083px;
    height: 441px;
    position: absolute;
    right: -790px;
    bottom: -100px;
    z-index: -1;
}
@media screen and (max-width:767px){
    .all-type-list::after{
        width: 360px;
        height: 147px;
        position: absolute;
        right: auto;
        left: 50%;
        bottom: -40px;
    }
}
.all-type-list-item{
    position: relative;
    width: 100%;
    max-width: 780px;
    background-color: #F8F8F8;
    border: 1px solid var(--main-black2);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 6px 0 rgba(16, 16, 16, 0.2);
    text-align: center;
    margin: 0 auto;
    position: relative;
}
.all-type-list-item:not(:last-child){
    margin-bottom: 20px;
}
@media screen and (max-width:767px){
    .all-type-list-item{
        width: var(--inner-width-contents);
        border: 2px solid var(--main-black2);
        padding: 20px 20px 30px;
        text-align: center;
        margin: 0 auto;
    }
}
.all-type-list-head{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: solid 1px var(--border-gray4);
}
@media screen and (max-width:767px){
    .all-type-list-head{
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }
}
.all-type-list__block{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.all-type-list__block:not(:last-child){
    margin-bottom: 30px;
}
@media screen and (max-width:767px){
    .all-type-list__block:not(:last-child){
        margin-bottom: 20px;
    }
}
.all-type-list-label{
    width: fit-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 270px;
    padding: 6px 24px;
    font-size: 1.6rem;
    background-color: #fff;
    border: 2px solid var(--main-black2);
    border-radius: 30px;
    font-weight: 500;
    margin: 0 auto 20px;
}
@media screen and (max-width:767px){
    .all-type-list-label{
        width: 100%;
        min-width: inherit;
        font-size: 1.5rem;
        padding: 10px 5px;
        background-color: #fff;
        border: 2px solid var(--main-black2);
        border-radius: 30px;
        font-weight: 500;
        margin: 0 auto 15px;
    }
}
.all-type-list-label::before{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--main-black2);
    border-radius: 2px;
    z-index: 1;
}
.all-type-list-label::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #fff;
    z-index: 2;
}
@media screen and (max-width:767px){
    .all-type-list-label::after{
        bottom: -8px;
        width: 16px;
        height: 16px;
    }
    .all-type-list-label::before{
        bottom: -10px;
        width: 16px;
        height: 16px;
    }
}
.all-type-list-type-name{
    font-size: 2.8rem;
    font-weight: bold;
}
@media screen and (max-width:767px){
    .all-type-list-type-name{
        font-size: 2.1rem;
        font-weight: bold;
    }
}
.all-type-list-desc{
    font-size: 1.8rem;
    line-height: calc(1em + 12px);
    font-weight: bold;
}
@media screen and (max-width:767px){
    .all-type-list-desc{
        font-size: 1.4rem;
        line-height: calc(1em + 12px);
        font-weight: bold;
        text-align: left;
    }
}
/*.quiz-card__number*/
.quiz-card__number span{
    font-size: 2.4rem;
    -webkit-text-stroke: 1px var(--bg-black2);
}
/*------------------
form-complete
-------------------*/
.form-complete .content-main{
    width: 1000px;
    margin: 50px auto 0;
}
.form-complete-title{
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.form-complete-text{
    text-align: center;
    line-height: calc(1em + 12px);
}
.form-complete .internship-btn1{
    margin-top: 40px;
}
/*sp*/
@media screen and (max-width: 767px) {
    .form-complete .content-main{
        width: var(--inner-width);
        margin: 5px auto 0;
    }
    .form-complete-title{
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: center;
    }
.form-complete .internship-btn1{
    margin-top: 30px;
}
}

/*------------------
formmailer-embed
-------------------*/
.formmailer-embed iframe._alt:not(:last-of-type){
    dhisplay:none;
}
/*------------------
all-type-list-item-chara
-------------------*/
.all-type-list-item-chara{
    position: absolute;
    top: -20px;
    right: 10px;
    width: 133px;
    z-index: 0;
}
.all-type-list-type-name-chara{
    width: 180px;
    position: absolute;
    left: 0;
    bottom: -40px;
}
.all-type-list-type-name-chara img{
    width: 100%;
    height: auto;
}
@media screen and (max-width: 767px) {
    .all-type-list-item-chara{
        position: absolute;
        top: -10px;
        right: -20px;
        width: 70px;
        z-index: 0;
    }
    .all-type-list-type-name{
        -webkit-text-stroke: 6px #F8F8F8;
        paint-order: stroke fill;
    }
    .all-type-list-type-name-chara {
        width: 120px;
        margin: 0 auto -30px;
        position: static;
    }
}
