@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=auto");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700&display=auto");


:root {
    
    /* フォント */
    --font-gothic:"Zen Kaku Gothic New", sans-serif;
    --font-mincho:"Zen Old Mincho", serif;
    
    /* 基準の幅 */
    --base-vw: 1920; 
    --main-width:1400;
    
    --gradient: linear-gradient(90deg,rgba(172, 61, 206, 1) 0%, rgba(103, 99, 224, 1) 100%);
    --gradient-backward: linear-gradient(-90deg,rgba(172, 61, 206, 1) 0%, rgba(103, 99, 224, 1) 100%);
}

/* COMMON */

body,
html {
    --s: calc(18 / var(--base-vw) * 100vw);
    
    font-family: var( --font-gothic);
    font-weight: 400;
    font-size: max(var(--s), 16px);
    line-height: 1.6;
    font-feature-settings: "palt";
    overflow-wrap: break-word;
    scroll-behavior: smooth;
}
.inner {
    max-width: 1400px;
    margin: 0 auto;
}
img {
    width: 100%;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    transition: all .3s;
}
a img:hover {
    opacity: 0.8;
}
.fc_pink {
    color: #c43288;
}

h2 {
    --s: calc(50 / var(--base-vw) * 100vw);
    --b: calc(120 / var(--base-vw) * 100vw);
    
    font-size: max(var(--s), 24px);
    font-family: var(--font-mincho);
    text-align: center;
    position: relative;
    margin-bottom: var(--b);
}
h2:before {
    --w: calc(330 / var(--base-vw) * 100vw);
    --h: calc(38 / var(--base-vw) * 100vw);
    --calc: calc(65 / var(--base-vw) * 100vw);
    --s: calc(-1 * var(--calc));/*数値をマイナスに*/
    
    content: "";
    background: url("../../images/img_ornament.png") no-repeat;
    background-size: var(--w),var(--h);
    width: var(--w);
    height: var(--h);
    display: inline-block;
    left: 0;
    right: 0;
    bottom: var(--s);
    margin: auto;
    position: absolute;
}
.area_btn {
    --t: calc(50 / var(--base-vw) * 100vw);
    margin-top: var(--t);
    display: flex;
    justify-content: center;
}
.btn {
    color:#747474;
    background: #D4D4D4;
    margin-right: 30px;
    width: 326px;
    text-align: center;
    padding: 20px;
    font-family: var(--font-mincho);
    font-weight: 600;
}
.btn:last-of-type {
    margin-right: 0;
}
.btn a {
    text-decoration: none;
    display: block;
    padding: 20px;
    margin: -20px;
    background: #f2eff9;
    color: #4433aa;
    transition: all .3s;
    position: relative;
}
.btn a:after {
    content: "";
    clip-path: polygon(50% 0%, 100% 100%, 50% 50%, 6% 100%);
    background: #4433aa;
    width: 13px;
    height: 9px;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(90deg)
}
.btn a:hover {
    background: #f9eefe;
    color: #8431ad;
}
.btn a:hover:after {
    background: #8431ad;
}
.btn.btn_gradient a {
    background: var(--gradient);
    color: #FFFFFF;
}
.btn.btn_gradient a:after {
    background: #ffffff;
}
.btn.btn_gradient a:hover {
    background: var(--gradient-backward);
}

/* HEADER */
header {
    background: url("../../images/img_mv.jpg") no-repeat;
    overflow: hidden;
    position: relative;
}
header .header_inner h1 {
    margin-right: auto;
}
header .header_inner h1 img {
    --w: calc(266 / var(--base-vw) * 100vw);
    
    width: var(--w);
    height: auto;
}
header .menu_trigger {
    --w: calc(120 / var(--base-vw) * 100vw);
    --h: calc(108 / var(--base-vw) * 100vw);
    --s: calc(20 / var(--base-vw) * 100vw);
    
    width: max(var(--w), 60px);
    height: max(var(--h), 54px);
    background: var(--gradient);
    position: fixed;
    right: var(--s);
    top: var(--s);
    cursor: pointer;
    z-index: 9000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .menu_trigger:hover {
    background: var(--gradient-backward);
}
header .menu_trigger div {
    --w: calc(50 / var(--base-vw) * 100vw);
    --h: calc(62 / var(--base-vw) * 100vw);
    
    width: max(var(--w), 25px);
    height: max(var(--h),31px);
    position: relative;
}
header .menu_trigger div > span {
    --s: calc(12 / var(--base-vw) * 100vw);
    --ls:calc(3 / var(--base-vw) * 100vw);
    
    font-size: max(var(--s), 6px);
    height: 2px;
    transition: all .3s;
    position: absolute;
    background: #ffffff;
    left: 0;
    right: 0;
    margin: auto;
    width:100%;
    color: #FFFFFF;
    font-family: var( --font-mincho);
    font-weight: 500;
    letter-spacing: var(--ls);
}
header .menu_trigger div > span:nth-of-type(1) {
    --t: calc(0 / var(--base-vw) * 100vw);
    top: var(--t);
}
header .menu_trigger div > span:nth-of-type(2) {
    --t: calc(17 / var(--base-vw) * 100vw);
    top: max(var(--t), 8px);
}
header .menu_trigger div > span:nth-of-type(3) {
    --t: calc(34 / var(--base-vw) * 100vw);
    top: max(var(--t), 16px);
}
header .menu_trigger div > span:nth-of-type(4) {
    --t: calc(51 / var(--base-vw) * 100vw);
    top: max(var(--t), 24px);
    background: none;
}
header .menu_trigger.open div > span:nth-of-type(1) {
    --t: calc(12 / var(--base-vw) * 100vw);
    top: var(--t);
        --s: calc(6 / var(--base-vw) * 100vw);
    transform: translateY(var(--s)) rotate(-40deg);
}
header .menu_trigger.open div > span:nth-of-type(2) {
    opacity: 0;
}
header .menu_trigger.open div > span:nth-of-type(3) {
    --t: calc(24 / var(--base-vw) * 100vw);
    top: var(--t);
    --s: calc(-6 / var(--base-vw) * 100vw);
    transform: translateY(var(--s)) rotate(40deg);
}

header .header_nav_inner {
    display: none;
    z-index: 8999;
    background: #82699f;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
}
header #mv {
    position: absolute;
}
header #mv .txt01 img {
    --w: calc(356 / var(--base-vw) * 100vw);
    --s: calc(60 / var(--base-vw) * 100vw);
    
    width: var(--w);
    margin-bottom:  var(--s);
    height: auto;
}
header #mv .txt02 img {
    --w: calc(850 / var(--base-vw) * 100vw);
    --s: calc(50 / var(--base-vw) * 100vw);
    
    width: var(--w);
    margin-bottom:  var(--s);
    height: auto;
}
header #mv .txt03 img {
    --w: calc(720 / var(--base-vw) * 100vw);
    width: var(--w);
    height: auto;
}
header .header_nav_inner {
    color: #FFFFFF;
    text-align: center;
}
header .header_nav_inner > div {
    --t: calc(150 / var(--base-vw) * 100vw);
    position: relative;
    display: inline-block;
    text-align: left;
    margin-top: var(--t);
}
header .header_nav_inner .header_ttl {
    --s: calc(50 / var(--base-vw) * 100vw);
    
    font-size: max(var(--s), 35px);
    text-align: center;
    font-family: var(--font-mincho);
    line-height: 1.4;
}
header .header_nav_inner .header_ttl span {
    --s: calc(30 / var(--base-vw) * 100vw);
    
    font-size: max(var(--s), 25px);
}
header .heder_nav_list li {
    --s: calc(40 / var(--base-vw) * 100vw);
    --fs: calc(35 / var(--base-vw) * 100vw);
    
    margin: var(--s) 0;
    font-size: max(var(--fs), 25px);
    font-family: var(--font-mincho);
    position: relative;
}
header .heder_nav_list li:before {
    content: "";
    background: url("../../images/img_ornament02.png") no-repeat;
    width: 42px;
    height: 38px;
    position: absolute;
    left: -64px;
    top: 0;
    bottom: 0;
    margin: auto;
}
header .heder_nav_list li a {
    text-decoration: none;
    transition: all .3s;
}
header .heder_nav_list li a:hover {
    color: #e2c9ff;   
}

/* --- アニメーション用 --- */
.txt01 {
  opacity: 0;
  animation: fade-in 1s ease forwards;
}
.txt02 {
  mask-image: linear-gradient(to right, black 50%, transparent 50%);
  mask-size: 200% 100%;
  mask-position: 100% 0;
  transform: translateX(-10px);
  animation: mask-reveal-fast 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.7s;
}
.txt03 {
  opacity: 0;
  transform: translateX(-40px);
  animation: glide-right 1.3s ease-out forwards;
  animation-delay: 1.1s;
}
@keyframes fade-in {
  to { opacity: 1; }
}
@keyframes mask-reveal-fast {
  to {
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
    transform: translateX(0);
  }
}
@keyframes glide-right {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* FOOTER */
footer {
    --s: calc(60 / var(--base-vw) * 100vw);
    
    background: #160821;
    text-align: center;
    color: #FFFFFF;
    padding: var(--s) var(--s);
}
footer .copyright {
    --mt: calc(60 / var(--base-vw) * 100vw);
    --s: calc(14 / var(--base-vw) * 100vw);
    
    margin-top: var(--mt);
    font-family: var(--font-mincho);
    font-size: max(var(--s), 10px);
}
footer .logo {
    --w: calc(330 / var(--base-vw) * 100vw);
    width: var(--w);
    margin: 0 auto;
}

/* COMPANIES */
#companies {
    --s: calc(100 / var(--base-vw) * 100vw);
    
    padding: var(--s);
    background: #E5E1EE;
    background: linear-gradient(90deg,rgba(229, 225, 238, 1) 0%, rgba(242, 240, 246, 1) 50%, rgba(229, 225, 238, 1) 100%);
}
#companies .company {
    --mt: calc(70 / var(--base-vw) * 100vw);
    margin-top: var(--mt);
    position: relative;
}
#companies .company:before {
    content: "";
    height: 3px;
    width: 100%;
    background: var(--gradient);
    position: absolute;
    display: block;
}
#companies .company h3 {
    --s: calc(28 / var(--base-vw) * 100vw);
    --l: calc(40 / var(--base-vw) * 100vw);
    --t: calc(30 / var(--base-vw) * 100vw);
    
    font-size: max(var(--s), 18px);
    font-family: var(--font-mincho);
    background: #f0e9f4;
    padding: var(--t) var(--l);
}
#companies .company_inner {
    --l: calc(30 / var(--base-vw) * 100vw);
    --t: calc(40 / var(--base-vw) * 100vw);
    --b: calc(50 / var(--base-vw) * 100vw);
    
    background: #fcfcfc;
    padding: var(--t) var(--l) var(--b) var(--l);
}
#companies .company_info .recruit_info dl {
    --t: calc(20 / var(--base-vw) * 100vw);
    padding: var(--t) 0;
    display: flex;
    border-bottom: 1px solid #e2e2e2;
}
#companies .company_info .recruit_info dt {
    color: #7463a6;
}
#companies .area_news {
    --mt: calc(50 / var(--base-vw) * 100vw);
    --s: calc(30 / var(--base-vw) * 100vw);
    
    padding: var(--s);
    margin-top: var(--mt);
    background: #f7f6fa;
}
#companies .area_news h4 {
    font-family: var(--font-mincho);
    font-size: 22px;
}
#companies .area_news dl {
    --mt: calc(28 / var(--base-vw) * 100vw);
    
    margin-top: var(--mt);
    display: flex;
}
#companies .area_news .news p {
    margin-top: 15px;
}
#companies .area_news dl dt {
    color: #7463a6;
}
#companies .area_news dl.new dt span {
    position: relative;
}
#companies .area_news dl.new dt span:after {
    content: "NEW";
    position: absolute;
    font-size: 12px;
    color: #FFFFFF;
    background: #ce000f;
    padding: 0px 6px 2px 6px;
    right: -54px;
    top: 3px;
}
@media screen and (min-width: 749px) {
    .sp_only {
        display: none;
    }
    
    /* HEADER */
    header {
        background-size: 100vw auto;
        aspect-ratio: 32 / 17;
    }
    header .header_gradient {
        height: 100%;
        width: 62%;
        overflow: hidden;
        background: rgba(0, 0, 0, 10.05);
        background: linear-gradient(90deg,rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
    }
    header .header_inner {
        --s: calc(20 / var(--base-vw) * 100vw);
        display: flex;
        margin: var(--s);
        overflow: hidden;
    }
    header #mv {
        --l: calc(100 / var(--base-vw) * 100vw);
        --b: calc(150 / var(--base-vw) * 100vw);

        left: var(--l);
        bottom: var(--b);
    }
    /* COMPANIES */
    #companies .company_info {
        display: flex;
    }
    #companies .company_info .recruit_image {
        width: 32%;
        margin-right: 3%;
    }
    #companies .company_info .recruit_info {
        width: 65%;
    }
    #companies .company_info .recruit_info dt {
        width: 18%;
        margin-right: 1%;
        font-weight: 500;
    }
    #companies .company_info .recruit_info dd {
        width: 81%;
    }
    #companies .area_news dl dt {
        --w: calc(160 / var(--base-vw) * 100vw);
        width: var(--w);
        min-width: 138px;
    }
    #companies .area_news dl dd {
        width: 100%;
    }
    
}
@media screen and (max-width: 750px) {
    body,
    html {
        font-size: 14px;
    }
    .pc_only {
        display: none;
    }
    h2 {
        margin-top: 15px;
        margin-bottom: 50px;
    }
    h2:before {
        background-size: 165px 18px;
        width: 165px;
        height: 18px;
        bottom: -30px;
    }
    /* HEADER */
    header {
        background-size: auto 100%;
        aspect-ratio: 375 / 592;
        background-position: center;
    }
    header .header_gradient {
        height: 100%;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.35);
    }
    header .header_inner {
        padding: 20px 10px;
    }
    header .header_inner h1 img {
        width: 133px;
    }
    header .menu_trigger {
        top: 0;
        right: 0;
    }
    header .menu_trigger div > span {
        letter-spacing: 0.1rem;
    }
    header #mv {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
    }
    header #mv .txt01 img {
        width: 36%;
        margin-bottom:  26px;
    }
    header #mv .txt02 img {
        width: 97%;
        margin-bottom:  25px;
    }
    header #mv .txt03 img {
        width: 95%;
    }
    header .header_nav_inner .header_ttl {
        font-size: 25px;
    }
    header .header_nav_inner .header_ttl span {
        font-size: 15px;
    }
    header .heder_nav_list li{
        font-size: 16px;
        margin: 30px 20px;
    }
    header .header_nav_inner > div {
        margin-top: 70px;
    }
    header .heder_nav_list li:before {
        background-size: 20px 17px;
        width: 20px;
        height: 17px;
        left: -30px;
    }
    /* FOOTER */
    footer .logo {
        width: 50%;
        padding: 15px;
    }
    
    /* COMPANIES */
    #companies {
        padding-left: 10px; 
        padding-right: 10px; 
    }
    #companies .company {
        margin-top: 30px;
    }
    #companies .company h3 {
        padding: 10px;
    }
    #companies .company_inner {
        padding: 15px;
    }
    #companies .company_info .recruit_image {
        text-align: center;
    }
    #companies .company_info .recruit_image img {
        width: 80%;
    }
    #companies .company_info .recruit_info dl {
        flex-direction: column;
    }
    #companies .company_info .recruit_info dt {
        font-size: 16px;
        padding-top: 10px;
    }
    #companies .company_info .recruit_info dd {
        padding-bottom: 10px;
    }
    #companies .company_info .recruit_info dt,
    #companies .company_info .recruit_info dd {
        width: 100%;
    }
    #companies .area_btn {
        flex-direction: column;
    }
    #companies .area_btn .btn {
        width: 100%;
        margin-top: 15px;
    }
    #companies .area_news {
        padding: 15px 10px;
    }
    #companies .area_news h4 {
        font-size: 17px;
        text-align: center;
    }
    #companies .area_news dl {
        flex-direction: column;
    }
    #companies .area_news dt {
        margin-top: 12px;
        display: inline-block;
    }
    #companies .area_news dl.new dt span:after {
        top: 0;
        right: -42px;
        font-size: 10px;
    }
    
    
}