@charset "utf-8";
/*========= FV ===============*/
.mainVisual {
    position: relative;
    height: 100vh;
    background:
        linear-gradient(rgba(var(--font-black-rgb), 0.4)),
        url('../images/mainvisualbg.webp') no-repeat right 15% / auto 115%;
    z-index: 10;
}

.mainImg {
    position: absolute;
    right: 9%;
    top: 15%;
    height: 100%;
    width: 80%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 5;
}

.year {
    font-family: "Bebas Neue", "Oswald", sans-serif;
    font-size: clamp(2.8rem, 4vw, 5.6rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--font-white); /* fallback */
    background: var(--gradient03);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mainText {
    font-size: clamp(2.6rem, 3.47vw, 4rem);
    font-weight: 700;
    display: inline;
    line-height: 1.6;
    margin: 0;
    padding: 0.1em 0.3em;
    color: var(--font-white);
    background-color: var(--main-purple);
    background: linear-gradient(
        90deg,
        #eeffa8 0%,
        #c6e645 8%,
        #8EC21F 20%,
        #5a7a10 48%,
        #6a9014 68%,
        #8EC21F 85%,
        #7aa818 100%
    );
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.subText {
    font-size: clamp(1.8rem, 1.66vw, 2.4rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--font-white);
}

.mainTitle {
    position: absolute;
    right: 7%;
    color: var(--font-white);
    font-size: clamp(6rem, 9.72vw, 14rem);
    font-weight: 700;
    z-index: 4;
    text-align: right;
    line-height: 1;
}

.mainTitle--top {
    color: var(--font-white); /* fallback */
    background: var(--gradient03);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
}

.mainTitle--bottom {
    bottom: 0;
    left: 7%;
    right: auto;
    font-size: clamp(4rem, 5.55vw, 8rem);
    text-align: left;
    background: var(--main-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 6;
}

.subTitle {
    position: absolute;
    top: 56%;
    left: 7%;
    transform: translateY(-50%);
    z-index: 6;
}

.sidename {
    position: absolute;
    right: clamp(-12rem, -6.94vw, -10rem);
    top: 50%;
    color: var(--font-white);
    font-size: clamp(1.4rem, 1.3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    transform: rotate(90deg);
    pointer-events: none;
    z-index: 10;
}

.sidename span {
    color: #8EC21F;
    background: linear-gradient(90deg, #eeffa8 0%, #c6e645 8%, #8EC21F 20%, #5a7a10 48%, #6a9014 68%, #8EC21F 85%, #7aa818 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MAINVISUAL SP */
@media (max-width: 1024px) {
    .subTitle {
        top: 65%;
    }
} /* MAINVISUAL SP 1024px */

@media (max-width: 768px) {
    .mainImg {
        top: 11%;
        right: 5%;
        width: 95%;
    }

    .subTitle {
        top: 55%;
    }
} /* MAINVISUAL SP 768px */

@media (max-width: 480px) {
    #header {
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        border-color: transparent;
        box-shadow: none;
    }

    #header::before {
        content: none;
    }

    .mainVisual {
        height: 95vh;
    }

    .mainImg {
        right: 0%;
        top: 5rem;
        height: initial;
        width: 110%;
    }

    .mainTitle--top {
        left: 0;
        right: auto;
        font-size: 6rem;
    }

    .mainTitle--bottom {
        top: auto;
        bottom: 0;
        font-size: 3.5rem;
    }

    .header__topic img {
        display: none;
    }

    .mainText {
        font-size: 3rem;
    }

    .subTitle {
        top: 80%;
        left: 5%;
    }

    .sidename {
        top: 23%;
    }

    .pcBr {
        display: none;
    }
    
} /* MAINVISUAL SP 480px */

/*========= BTN FIX ===============*/
.btn-fix__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8em;
    width: 220px;
    height: 80px;
    background: var(--gradient02);
    font-size: clamp(1.4rem, 1.25vw, 1.8rem);
    font-weight: 700;
    color: var(--font-white);
    transition: all .3s;
}

.btn-fix__link:hover {
    background: var(--main-purpleHigh);
}

.btn-fix__link::after,
.btn-fix__link::before {
    content: '';
    position: absolute;
    left: -25%;
    top: -25%;
    border: 1px solid var(--font-white);
    width: 150%;
    height: 150%;
    opacity: 1;
    animation: 1s circleanime linear infinite;
}

.btn-fix__link::before {
    animation-delay: .5s;
}

@keyframes circleanime {
    0% {
        transform: scale(0.68);
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.btn-fix__link span {
    position: relative;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.btn-fix__link span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border: 11px solid transparent;
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-color: var(--font-white);
}

.btn-fix {
    position: fixed;
    right: 2%;
    bottom: 2%;
    z-index: 100;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    justify-content: right;
}

@media (max-width: 768px) {
    .btn-fix__link {
        width: 100px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .btn-fix {
        left: 50%;
        right: auto;
        bottom: 10px;
        transform: translateX(-50%);
    }

    .btn-fix__link {
        width: 300px;
        height: 55px;
        font-size: 1.6rem;
        gap: 1rem;
    }

    .btn-fix__link::after,
    .btn-fix__link::before {
        display: none;  /* アニメーション装飾を非表示 */
    }

    .btn-fix__link span {
        width: 2rem;
        height: 2rem;
    }

    .btn-fix__link span::after {
        border-top-width: 8px;
        border-bottom-width: 8px;
        border-left-width: 10px;
    }
}

/*========= ABOUT ===============*/
#about {
    position: relative;
    height: 70vh;
    text-align: center;
    color: var(--font-white);
    background: linear-gradient(
        to bottom,
        rgba(var(--font-black-rgb), 1) 0%,
        rgba(var(--font-black-rgb), 0.98) 40%,
        rgba(var(--font-black-rgb), 0.92) 62%,
        rgba(var(--font-black-rgb), 0.72) 78%,
        rgba(var(--font-black-rgb), 0.36) 90%,
        rgba(var(--font-black-rgb), 0) 100%
    );
}

#video-area {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

#video-area::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(var(--font-black-rgb), 0.4);
    pointer-events: none;
    z-index: 1;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-bg--sp {
    display: none;
}

.about__contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: var(--font-white);
    text-shadow: 0 0 15px var(--font-black);
}

.about__topic span {
    color: var(--main-purple);
    font-size: clamp(2.4rem, 4.44vw, 6.4rem);
    font-weight: 700;
    margin-right: 0.3rem;
}

.about__topic {
    font-size: clamp(1.4rem, 2.22vw, 3.2rem);
    color: var(--font-white);
    line-height: 2;
}

.about__text {
    max-width: 70ch;
    margin-inline: auto;
    text-align: left;
    line-height: 2;
}

.about__text span {
    color: var(--main-purple);
    font-size: 2rem;
}

/* ABOUT SP */
@media (max-width: 768px) {
    #about {
        height: 60vh;
    }

    .about__contents {
        top: 60%;
        width: 75%;
    }

    .about__contents {
        top: 60%;
    }

    .video-bg--pc {
        display: none;
    }

    .video-bg--sp {
        display: block;
    }
}/* ABOUT SP 768px */
@media (max-width: 480px) {
    #about {
        height: 50vh;
    }
}

/*========= LUXY ===============*/
.strength__title {
    color: var(--main-purple);
    font-size: clamp(1.8rem, 2.22vw, 3.2rem);
    line-height: 1;
    font-weight: 700;
}

#luxy {
    color: var(--font-white);
    padding: 10% 7% 0;
}

.area {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5% 10%;
    overflow: visible;
    min-height: 400px;
    font-weight: 700;
}

#luxy .luxy-el {
    will-change: transform;
}

#luxy .box {
    display: block;
    grid-row: 1;
    position: relative;
    z-index: 2;
    padding: 3rem;
    text-align: center;
    background: rgba(0, 0, 0, 0);
}

.box__title {
    font-size: 2rem;
    line-height: 1.8;
    
}

.number {
    font-size: 5rem;
    font-family: "Oswald", sans-serif;
    line-height: 1.5;
    color: var(--main-purple);
}

#luxy .box2 {
    margin-right: -7rem;
    padding: 1rem;
    background: rgba(var(--font-white-rgb), 0.3);
}

.check {
    position: relative;
    padding-left: 1.8em;
    font-size: clamp(1.4rem, 1.38vw, 2rem);
}

.check::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--main-purpleHigh);
}

#luxy figure {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1;
    width: 100%;
    margin-right: -8rem;
}

#luxy figure img {
    width: 72%;
    max-width: 320px;
}

.count-up {
    font-size: 14rem;
    font-weight: 400;
    color: var(--main-purple);
}

/* LUXY SP */
@media (max-width: 768px) {
    #luxy .area {
        grid-template-columns: 1fr;
        row-gap: 2rem;
        min-height: auto;
    }

    #luxy .box {
        margin-left: 0;
        padding: 1.5rem;
    }

    #luxy .box2 {
        margin-right: 0;
    }

    #luxy .area:last-child .box2 {
        margin-right: 0;
    }

    #luxy figure {
        margin-right: 0;
        grid-column: auto;
        grid-row: auto;
    }

    #luxy figure img {
        margin: 0 auto;
    }
}
/*========= ADVANTAGE ===============*/
.section--advantage {
    color: var(--font-white);
    width: 100%;
}

.section--advantage .inner {
    width: min(1200px, 100%);
    margin-inline: auto;
}

.advantage__list {
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
}

/* titleframe 装飾: 全セクション見出し共通 */
.advantage__heading,
.luxy__heading {
    position: relative;
    display: inline-block;
}

.advantage__heading::after,
.luxy__heading::after {
    content: "";
    position: absolute;
    left: clamp(-1.2rem, -0.8vw, -0.4rem);
    top: clamp(-1.2rem, -0.8vw, -0.4rem);
    width: clamp(110px, 11vw, 170px);
    height: clamp(110px, 11vw, 170px);
    background: url('../images/titleframe.webp') no-repeat left center / contain;
    pointer-events: none;
    z-index: 1;
}

.advantage__heading .en,
.advantage__heading .advantage__title,
.luxy__heading .en,
.luxy__heading .strength__title {
    position: relative;
    z-index: 2;
}

.logoImg {
    width: clamp(80px, 7.22vw, 104px);
}

.advantage__title p {
    font-size: 3.2rem;
    color: var(--main-purple);
    line-height: 1.2;
}

.mrl1 {
    margin-left: 0.5rem;
}

.advantage__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(6rem, 9vw, 12rem);
    align-items: end;
}

.advantage__contents {
    min-width: 0;
    width: 100%;
}

.advantage__topic {
    font-size: clamp(2.2rem, 2vw, 3rem);
    line-height: 1.4;
    font-weight: 700;
    text-wrap: balance;
}

.advantage__text {
    font-size: clamp(1.2rem, 1.25vw, 1.8rem);
    line-height: 1.9;
    text-wrap: pretty;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    row-gap: 0.35em;
    width: 100%;
}

.advantage__text li {
    margin: 0;
}

@media (max-width: 1024px) {
    .advantage__item {
        grid-template-columns: 1fr;
        row-gap: 1.2rem;
        align-items: start;
    }
}
/*========= RANDOM UP ===============*/
.panel {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*========= MISSION ===============*/
.section--mission {
    position: relative;
    margin-bottom: -10%;
    padding: 0 7% 10%;
    border-radius: 120px 0 120px 0;
    overflow: hidden;
    z-index: 1;
}

.section--mission::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/missionbg.webp') no-repeat center / cover;
    z-index: 0;
    pointer-events: none;
}

.section--mission > * {
    position: relative;
    z-index: 1;
}

#mission .randomUp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(2rem, 4vw, 4rem);
    row-gap: clamp(1.5rem, 3vw, 3rem);
    width: 100%;
    max-width: 680px;
    margin-inline: 0;
}

#mission .randomUp .panel img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.titlename {
    position: relative;
    color: rgba(var(--font-white-rgb), 0.4);
    font-size: clamp(2.8rem, 7.64vw, 11rem);
    text-align: center;
    font-weight: 800;
    line-height: 0.8;
}

#mission .ruby {
    position: absolute;
    top: clamp(1rem, 2.78vw, 4rem);
    left: 50%;
    color: var(--font-white);
    font-size: clamp(1.2rem, 1.25vw, 1.8rem);
}

.mission__text {
    color: var(--font-white);
    max-width: 64ch;
    margin-inline: auto;
    text-align: left;
    line-height: 2;
}

@media (max-width: 768px) {
    #mission .randomUp {
        grid-template-columns: 1fr;
        row-gap: 2rem;
        max-width: 100%;
    }

    #mission .ruby {
        left: 40%;
    }

    .section--mission {
        border-radius: 40px 0 40px 0;
    }
}

/*========= NEWS ===============*/
.section--news {
    position: relative;
    background: var(--font-white);
    padding: 20% 7% 5%;
}

.news__frame {
    display: flex;
    justify-content: space-around;
}

#news .ruby {
    color: var(--main-purple);
}

#news .sidename {
    left: 1%;
    transform: translateY(-50%);
    color: rgba(var(--font-black-rgb), 0.1);
    font-size: clamp(4.4rem, 4.44vw, 6.4rem);
    writing-mode: vertical-lr;
}

.news__list {
    width: 760px;
}

.news__item:first-child::before {
    display: none;
}

.news__title {
    line-height: 1.5;
}

.news__item {
    position: relative;
    line-height: 1;
    padding: 3rem;
}

.news__item::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(var(--font-black-rgb), 0.5);
}

.news__item::before {
    top: 0;
}

.news__item:nth-of-type(3)::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(var(--font-black-rgb), 0.5);
}

.news__item::after {
    bottom: 0;
}

.news:first-of-type a {
    padding-top: 0;
}

.news a {
    padding: 18px 0 16px;
    padding-right: 24px;
    border-bottom: 1px solid rgba(var(--font-white-rgb), 0.5);
    display: block;
}

.news__day {
    font-family: "Oswald", sans-serif;
    font-size: 1.7rem;
}

.news__category {
    padding: 0 clamp(5px, 0.69vw, 10px);
    border-radius: 7px;
    color: var(--font-white);
    background: var(--main-purple);
    line-height: 1.6;
}

.news__category:hover {
    background: rgba(var(--main-purple-rgb), 0.5);
}

.news__contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.news__arrow {
    width: 1.6em;
    height: 1.6em;
    color: var(--font-white);
    fill: currentColor;
    stroke: currentColor;
    margin-left: 2rem;
    flex-shrink: 0;
}

/* NEWS SP */
@media (max-width: 1080px) {
    .news__frame {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .news__frame {
        display: block;
        width: initial;
    }
} /* NEWS SP 768px */

@media (max-width: 480px) {
    #news .sidename {
        left: -3%;
    }

    .news__list {
        margin-left: 3rem;
    }
    
        #news .sidename {
            left: 0;
            top: 10%;
            font-size: clamp(2.2rem, 8vw, 3.2rem);
            line-height: 1;
            writing-mode: vertical-lr;
            letter-spacing: 0.05em;
            height: auto;
            right: auto;
            transform: none;
            white-space: nowrap;
        }
    
        #recruit .sidename {
            right: 0;
            left: auto;
            top: 10%;
            font-size: clamp(2.2rem, 8vw, 3.2rem);
            line-height: 1;
            writing-mode: vertical-lr;
            letter-spacing: 0.05em;
            height: auto;
            transform: none;
            white-space: nowrap;
        }
}

/*========= SERVICE ===============*/
.inner {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}

#p-top__service .section__heading {
    padding: clamp(2rem, 4.86vw, 8rem) 0;
    color: var(--font-white);
    text-align: center;
}

#p-top__service .section__heading h2 {
    color: rgba(var(--font-black-rgb), 0.5);
}

#p-top__service .section__heading p {
    color: var(--main-color);
}

#p-top__service .ruby {
    font-size: clamp(1.8rem, 2.22vw, 3.2rem);
}

#p-top__service {
    z-index: 1;
    background: var(--font-white);
    padding: 0;
}

#p-top__service:before {
    height: 36rem;
    width: 100%;
    content: "";
    background: url('../images/servicebg.webp') no-repeat left center / contain;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.service__list {
    display: flex;
    gap: 2rem;
}

.service__list li a {
    display: block;
}

.service__list li .img {
    width: 100%;
    height: auto;
    aspect-ratio: 344 / 229;
    overflow: hidden;
}

.service__list li .text {
    padding: 3rem;
    text-align: center;
    background-color: #dceffa;
}

.service__list li .text p {
    font-size: clamp(1.2rem, 1.25vw, 1.8rem);
    line-height: 1.8;
    color: var(--main-color);
}

.service__list li .text p span {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.6rem, 0.83vw, 1.2rem);
    letter-spacing: normal;
    color: rgba(var(--main-color-rgb), 0.2);
    display: block;
    line-height: 1.2;
    white-space: nowrap;
}

.service__text li {
    min-height: 2.8em;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.service__btn {
    display: inline-block;
    padding: 0.5rem 0;
    border: 1px solid var(--font-black);
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    transition: background 0.25s, color 0.25s;
}

@media screen and (max-width: 768px){
    #p-top__service {
        position: relative;
        background: var(--font-white) url('../images/servicebg_sp.webp') no-repeat center top / cover;
        padding-bottom: 10%;
    }

    #p-top__service:before {
        display: none;
    }

    .service__text {
        padding-left: 10%;
    }

    .service__list {
        flex-direction: column;
    }

    .service__list li {
        width: 85%;
        margin: 0 auto;
    }

    .service__list li .text p span {
        font-size: 1rem;
    }

    #p-top__service .section__heading {
        padding: 4rem 0;
    }
}

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

/*========= VARIOUS ===============*/
.section--various {
    padding: 8% 7% 12% 0;
    background: var(--font-white);
}

.various__title {
    position: relative;
}

#various .titlename {
    text-align: left;
    padding-bottom: 2rem;
    font-size: clamp(3.2rem, 5.55vw, 8rem);
    /* font-size: clamp(2.4rem, 4.44vw, 6.4rem); */
    color: rgba(var(--font-black-rgb), 0.1);
}

#various .ruby {
    position: absolute;
    top: 30%;
    left: 20%;
    color: var(--font-black);
}

.zoomOutText {
    width: clamp(160px, 22.22vw, 320px);
}

.zoomOutText span.mask {
    position: relative;
    display: block;
    line-height: 0;
    overflow: hidden;
    transition: .3s ease-in-out;
}

.zoomOutText span.mask::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: rgba(var(--main-color-rgb), 0.3);
    transition: background .3s ease-in-out;
}

.zoomOutText:hover span.mask::before {
    inset: 10px;
    background: rgba(var(--main-color-rgb), 0.5);
}

.zoomOutText img {
    width: 100%;
    height: auto;
    transform: scale(1.2);
    filter: blur(0);
    transition: .3s ease-in-out;
}

.zoomOutText:hover img {
    transform: scale(1);
    filter: blur(2px);
}

.zoomOutText span.cap {
    position: absolute;
    top: 50%;
    left: 48%;
    opacity: 1;
    transition: .5s ease-in-out;
    transform: translate(-50%, -50%);
    font-size: clamp(1.3rem, 1.25vw, 1.8rem);
    font-weight: 700;
    color: var(--font-white);
    line-height: 1.5;
    z-index: 3;
}

.zoomOutText:hover span.cap {
    opacity: 1;
}

.various__list {
    position: absolute;
    left: 5%;
    bottom: -15%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: fit-content;
    margin: 0 auto;
    z-index: 1;
}

@media screen and (max-width: 768px){
    .section--various {
        padding: 8% 7% 10% 7%;
    }

    #various .titlename {
        font-size: clamp(2.2rem, 4.44vw, 6.4rem);
        padding-bottom: 3rem;
    }

    #various .ruby {
        top: 40%;
        left: 2%;
        margin-bottom: 1rem;
        font-size: clamp(1.4rem, 2vw, 2rem);
    }

    .various__list {
        position: relative;
        left: auto;
        bottom: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        margin: 0 auto;
    }

    .zoomOutText {
        width: 100%;
    }
}

/*========= RECRUIT ===============*/
.section--recruit {
    padding: 15% 7%;
    display: flex;
    justify-content: space-around;
    background: var(--gradient03);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* 下部右上がり10%カット */
}

#recruit .ruby {
    color: var(--main-color);
}

.recruit__text {
    line-height: 1.5;
}

#recruit .sidename {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(var(--main-color-rgb), 0.1);
    font-size: clamp(4.4rem, 4.44vw, 6.4rem);
    writing-mode: vertical-lr;
}

#recruit .btn::before {
    background: rgba(var(--main-color-rgb), 0.3);
}

.randomUp {
    display: flex;
    width: 800px;
}

@media screen and (max-width: 768px){
    .section--recruit {
        display: block;
        padding: 7%;
    }

    .randomUp {
        width: 600px;
        display: flex;
        margin: 3rem auto 10rem;
    }
} /*  SP 768px */

@media screen and (max-width: 480px){
    .randomUp {
        width: 320px;
    }

    #recruit .sidename {
        right: -7%;
        top: 30%;
    }
}

/*========= CONTACT ===============*/
.section--contact {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 7% 8%;
    color: var(--font-white);
}

.contact__card {
    position: absolute;
    top: -17%;
    left: 0;
    z-index: 1;
    background: var(--gradient02);
    padding: clamp(2rem, 2.08vw, 3rem) clamp(4rem, 6vw, 8rem);
    width: min(720px, 86%);
}

#contact .sidename {
    position: relative;
    margin-top: -5%;
    left: -1.4rem;
    transform: translateY(-50%);
    letter-spacing: 0.1em;
    font-size: clamp(3.5rem, 5.55vw, 8rem);
    line-height: 1;
    z-index: 10;
    mix-blend-mode: screen;
}

#contact .sidename span {
    background: #ffaa00;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact__text {
    font-size: clamp(1.6rem, 1.39vw, 2rem);
    line-height: 1.8;
    text-align: center;
}

.contact__action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact__btn {
    display: inline-block;
    padding: 1.1rem 2.4rem;
    border: 1px solid var(--font-white);
    font-size: clamp(1.2rem, 1.25vw, 1.8rem);
    transition: background 0.25s, color 0.25s;
}

.contact__btn:hover {
    background: var(--font-white);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.contact__deco {
    position: absolute;
    right: 0;
    left: auto;
    bottom: -20%;
    text-align: left;
    color: rgba(var(--font-white-rgb), 0.5);
    font-size: clamp(5rem, 6.94vw, 10rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.contact__deco span {
    color: var(--main-purple);
}


