@charset "utf-8";
/* CSS Document */

:root {
    --font-base: "Zen Kaku Gothic New", sans-serif;
    --font-sub: "M PLUS 1 Code", monospace;
    --font-catch: "Klee One", cursive;
}

html {
    scroll-behavior: smooth;
}
@media (max-width: 1024px){
    html,
    body{
        overflow-x: hidden;
    }
}

body {
    font-family: var(--font-base);
	font-weight: 500;
    color: #2C3539;
    line-height: 1.7;
    overflow-x: clip;
}

.font-sub {
    font-family: var(--font-sub);
}

.font-catch {
    font-family: var(--font-catch);
}


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

.pc {
    display: block;
}

.sp {
    display: none;
}
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (max-width: 768px) {
    .inner {
        width: calc(100% - 32px);
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* MV */
.mv {
    position: relative;
    width: 100%;
    height: min(100vh, 900px);
    overflow: hidden;
}

.mv__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mv__media img,
.mv__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mv__content {
    position: relative;
    z-index: 1;
    height: 100%;
}
@media (max-width: 1024px){

    .mv__media img{
        object-position: 20% center;
		transform: scale(1.2) translateY(25px);
    }

}


.header {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
	display: flex;
    justify-content: space-between;
    align-items: self-start;
    padding: 0 40px;
}


.header__logo img {
    display: block;
    width: 126px;
    height: auto;
}
@media (max-width: 768px) {
    .header {
        top: 20px;
        padding: 0 16px;
    }

    .header__logo img {
        width: 100px;
    }
}


.header__hamburger {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 60px;
    height: 50px;
    border: 1px solid #fff;
    background: rgba(63, 75, 79, 0.2);
    cursor: pointer;
    z-index: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 11px;
}

.header__hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
}

@media (max-width: 768px) {
	    .header__hamburger {
        top: 20px;
        right: 16px;
    }
}
/* ==========================
   Drawer
========================== */

.header-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform .45s ease;
    z-index: 200;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-drawer.is-open {
    transform: translateX(0);
}

.drawer__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 190;
}

.drawer__overlay.is-open {
    opacity: 1;
    visibility: visible;
}


/* ==========================
   Close Button
========================== */

.drawer__close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
}

.drawer__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 2px;
    background: #2C3539;
}

.drawer__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* ==========================
   Navigation
========================== */

.drawer__nav {
    margin-top: 220px;
}

.drawer__list {
    display: flex;
    flex-direction: column;
    gap: 42px;
    text-align: center;
}

.drawer__list a {
    color: #2C3539;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    transition: color .3s ease;
}

.drawer__list a:hover {
    color: #FF7A4A;
}


/* ==========================
   SNS
========================== */

.drawer__sns{
	display: flex;
    align-items: center;
	padding: 50px 15px 20px;
    gap: 30px;
}
.drawer__sns-link {
    display: block;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}

.drawer__sns-link--mail {
    background-image: url("../../../common/img/lightnest-imgs/menu_mail.svg");
}

.drawer__sns-link--mail:hover {
    background-image: url("../../../common/img/lightnest-imgs/menu_mail_on.svg");
}

.drawer__sns-link--line {
    background-image: url("../../../common/img/lightnest-imgs/menu_line.svg");
}

.drawer__sns-link--line:hover {
    background-image: url("../../../common/img/lightnest-imgs/menu_line_on.svg");
}

/* ==========================
   SP
========================== */

@media (max-width:768px){

    .header-drawer{
        width:100%;
    }

    .drawer__close{
        top:24px;
        right:16px;
    }

    .drawer__nav{
        margin-top:140px;
    }

    .drawer__list{
        gap:30px;
    }

}

/* ==========================
   Scroll
========================== */

.scroll {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll__text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .08em;
}

.scroll__line {
    position: relative;
    width: 1px;
    height: 64px;
    background: rgba(255,255,255,.25);
    overflow: hidden;
}

.scroll__line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2.2s cubic-bezier(.55,0,.45,1) infinite;
}

@keyframes scrollLine {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(200%);
    }

}
@media (max-width:768px){

    .scroll{
        bottom:20px;
    }

    .scroll__text{
        font-size:1.4rem;
    }

    .scroll__line{
        height:48px;
    }

}


/* ==========================
   Common
========================== */

/* Inner */
.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.content-bg{
	position: relative;
	overflow-x: visible;

    background:
        linear-gradient(
            90deg,
            #FFECD1 23%,
            #F5FAF7 60%,
            #D5F4F7 100%
        );
}
.content-bg__circle{
    position:absolute;
    left:50%;
    bottom:0;
    transform:translate(-50%,78%);
    width: clamp(1400px, 180vw, 2200px);
    height: clamp(1400px, 180vw, 2200px);
    border-radius:40%;
    background:#fff;
    z-index:0;
}

@media (max-width:1200px){
    .content-bg__circle{
        transform:translate(-50%,72%);
    }
}

@media (max-width:768px){
    .content-bg__circle{
        transform:translate(-50%,20%);
		width: 180vw;
		height: 180vw;
    }
}

.content-bg > section{
    position:relative;
    z-index:1;
}




/* Section */
.section {
    padding: 120px 0;
    position: relative;
}

/* Section Title */
.heading-en {
    margin-bottom: 12px;
    font-family: var(--font-sub);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
    color: #FF7A4A;
    text-transform: uppercase;
}

.heading-ja {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .08em;
}

/* Card */
.card {
    padding: 56px 60px;
    background: #fff;
    border: 1px solid #D8D8D8;
    border-radius: 12px;
}

/* Button */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-width: 240px;
    min-height: 56px;
    padding: 0 32px;
    background: #fff;
    border: 1px solid #CFCFCF;
    border-radius: 9999px;
    color: #2C3539;
    text-decoration: none;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

/* Fade */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fade-up.is-active {
    opacity: 1;
    transform: translateY(0);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}


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

    .inner {
        padding: 0 16px;
    }

    .section {
        padding: 80px 0;
    }

    .heading-en {
        margin-bottom: 8px;
        font-size: 1.2rem;
    }

    .heading-ja {
        font-size: 2rem;
    }

    .card {
        padding: 32px 24px;
    }

    .btn {
        width: 100%;
        min-width: auto;
    }
	    .flex-between {
        flex-direction: column;
        gap: 40px;
    }

}


/* ==========================
   Concept
========================== */

.concept__inner {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
	min-height:75vh;
}

.concept__left {
    position: sticky;
    top: 120px;
    align-self: start;
}

.concept__right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.concept__title {
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
}
.concept__title span{
	font-size: 1rem;
}

.concept__right p {
    font-size: 1.2rem;
    line-height: 2.1;
}

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

    .concept__inner{
        display:block;
		min-height:auto;
    }

    .concept__left{
        position:static;
        margin-bottom:48px;
    }

    .concept__right{
        gap:20px;
    }

    .concept__title{
        font-size:2rem;
    }

    .concept__right p{
        font-size:1rem;
        line-height:1.9;
    }

}


/* ==========================
MISSION / VISION / VALUES
========================== */

.mvv{
    padding-top:40px;
}

.mvv__top{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
    margin-bottom:90px;
}

.mvv__box{
    width:100%;
}
.mvv__bottom p.heading-en,
.mvv__bottom h2.mvv__lead{
	text-align: center;
}

.mvv__lead{
    margin-top:22px;
    font-size:2.25rem;
    font-weight:600;
    line-height:1.65;
    letter-spacing:.04em;

}

.mvv__values{
    text-align:center;
}

.mvv__cards{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:48px;
}

.mvv-card{
    width:296px;
    min-height:340px;
    padding:90px 34px 40px;
    background:#fff;
    border:1px solid #A7A7A7;
    border-radius:180px 180px 14px 14px;
}

.mvv-card__title{
    margin-bottom:28px;
    font-size:1.65rem;
    font-weight:500;
    text-align:center;
}

.mvv-card p{
    font-size:1rem;
    line-height:2;
}
@media (max-width:768px){

.mvv__top{
    grid-template-columns:1fr;
    gap:56px;
    margin-bottom:64px;
}

.mvv__box{
    max-width:none;
}

.mvv__lead{
    margin-top:16px;
    font-size:1.85rem;
}

.mvv__cards{
    flex-direction:column;
    align-items:center;
    gap:24px;
	margin-top: 30px;
}

.mvv-card{
    width:100%;
    max-width:260px;
    min-height:auto;
    padding:72px 24px 36px;
    border-radius:150px 150px 14px 14px;
}

.mvv-card__title{
    margin-bottom:20px;
    font-size:1.7rem;
}


}



/* ==========================
WORKS
========================== */

.works{
    padding-top: 40px;
	padding-bottom: 80px;
}

.works__box{
	max-width:1100px;
	margin:0 auto;
    padding:72px 56px;
    background:#fff;
    border:1px solid #A7A7A7;
    border-radius:10px;
}

.works__heading{
    display:flex;
    align-items:flex-end;
    gap:18px;
    margin-bottom:48px;
}

.works__heading .heading-ja{
    font-size:2.4rem;
	font-weight: 500;
    line-height:1;
}

.works__heading .heading-en{
    margin-bottom: 0;
    line-height: 0.8;
}

.works__list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;

}

.works__list ul{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.works__list li{
    position:relative;
    padding-left:14px;
    line-height:1.7;
}


@media (max-width:768px){

.works{
    padding-top:0;
}

.works__box{
    padding:40px 24px;
}

.works__heading{
    gap:12px;
    margin-bottom:32px;
}


.works__list{
    grid-template-columns:1fr;
    gap:24px;
}

.works__list ul{
    gap:18px;
}


}

/* ==========================
RECRUIT
========================== */

.recruit{
    padding-top:40px;
}

.recruit__box{
    max-width:1100px;
    margin:0 auto;
    padding:72px 56px;
    background:#fff;
    border:1px solid #A7A7A7;
    border-radius:10px;
}

.recruit__heading{
    display:flex;
    align-items:flex-end;
    gap:18px;
    margin-bottom:48px;
}

.recruit__heading .heading-ja{
    font-size:2.4rem;
    line-height:1;
	font-weight: 500;
}

.recruit__heading .heading-en{
    margin-bottom:0;
	line-height: 0.8;
}

.recruit__title{
    margin-bottom:20px;
    font-size:1.5rem;
    font-weight:600;
    line-height:1.5;
}

.recruit__text{
    margin-bottom:48px;
}

.recruit__text p{
    font-size:1rem;
    line-height:2;
}

.recruit__text p + p{
    margin-top:15px;
}

.recruit__table{
    border-top:1px solid #E0E6E8;
}

.recruit__row{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:28px;
    padding:18px 8px;
    border-bottom:1px solid #E0E6E8;
}

.recruit__row dt{
    font-size:1rem;
    font-weight:500;
}

.recruit__row dd{
    font-size:1rem;
    line-height:1.8;
}

.recruit__row small{
    display:block;
    margin-top:5px;
    font-size:0.9rem;
    line-height:1.8;
}

@media (max-width:768px){

.recruit{
    padding-top:0;
}

.recruit__box{
    padding:40px 24px;
}

.recruit__heading{
    gap:12px;
    margin-bottom:32px;
}


.recruit__text{
    margin-bottom:32px;
}


.recruit__row{
    grid-template-columns:1fr;
    gap:10px;
    padding:15px 0;
}


}


/* ==========================
COMPANY
========================== */

.company{
    background:#fff;
	padding-top: 40px;
}

.company__heading{
    margin-bottom:64px;
    text-align:center;
}

.company__heading .heading-en{
    margin-bottom: 20px;
    line-height: 0.8;
}

.company__heading .heading-ja{
    font-size:2.4rem;
    line-height:1.4;
	font-weight: 500;
}

.company__table{
    max-width:900px;
    margin:0 auto;
    border-top:1px solid #E0E6E8;
}

.company__row{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:36px;
    padding:20px;
    border-bottom:1px solid #E0E6E8;
}

.company__row dt{
    font-size:1rem;
    font-weight:700;
    line-height:1.5;
}

.company__row dd{
    font-size:1rem;
    line-height:1.7;
}

.company__row small{
    font-size:0.9rem;
    line-height:1.5;
}

.company__row a{
    color:#FF7A4A;
    text-decoration:none;
}

.company__row a:hover{
    text-decoration:underline;
}

@media (max-width:768px){

.company__heading{
    margin-bottom:40px;
}

.company__heading .heading-ja{
    font-size:2rem;
}

.company__table{
    max-width:none;
}

.company__row{
    grid-template-columns:1fr;
    gap:10px;
    padding:20px 0;
}

.company__row dt{
    font-size:1rem;
}

.company__row dd{
    font-size:1rem;
}

.company__row small{
    font-size:0.85rem;
}

}


/* ==========================
CONTACT
========================== */

.contact{
    position:relative;
    overflow:hidden;
	padding: 100px 0 90px;
	
	    background: linear-gradient(
        40deg,
        #FFDDAC 6%,
        #FFECD1 50%,
        #F5FAF7 70%,
        #D5F4F7 100%
    );

}

.contact__inner{
    position:relative;
    z-index:2;
    text-align:center;
}

.contact__bg-text{
    position:absolute;
    top:115px;
    left:50%;
    transform:translateX(-50%);
    font-size:8.75rem;
    font-weight:700;
    line-height:1;
    letter-spacing:.08em;
    color:rgba(255,255,255,.55);
    user-select:none;
    pointer-events:none;

}

.contact .heading-ja{
    margin-top:80px;
    margin-bottom:28px;
    font-size:2.375rem;
    line-height:1.4;
	font-weight: 500;
}

.contact__text{
    margin-bottom:56px;
    font-size:1rem;
    line-height:2;
}

.contact__buttons{
    display:flex;
    justify-content:center;
    gap:40px;
}

.contact__btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    width:314px;
    height:60px;
    background:#fff;
    border:1px solid #A7A7A7;
    border-radius:999px;
    color:#2C3539;
    text-decoration:none;
    transition:
        border-color .3s,
        color .3s,
        box-shadow .3s;
}
.contact__icon{
    position:relative;
    width:18px;
    height:18px;
    flex-shrink:0;
}

.contact__icon img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    transition:opacity .3s;
}
.contact__icon-hover{
    opacity:0;
}
.contact__btn:hover .contact__icon-normal{
    opacity:0;
}
.contact__btn:hover .contact__icon-hover{
    opacity:1;
}

.contact__btn:hover{
    border-color:#FF7A4A;
    color:#FF7A4A;
    box-shadow:0 6px 18px rgba(255,122,74,.15);
}

.contact__btn img{
    width:18px;
}

.contact__btn span{
    font-size:1.25rem;
    font-weight:500;

}
@media (max-width:768px){

.contact{
    padding:50px 0 80px;
}

.contact__bg-text{
    top:74px;
    font-size:4.5rem;
}

.contact .heading-ja{
    margin-top:40px;
    margin-bottom:20px;
    font-size:2rem;
}

.contact__text{
    margin-bottom:36px;
    font-size:.9375rem;
}

.contact__text br{
    display:none;
}

.contact__buttons{
    flex-direction:column;
    align-items:center;
    gap:16px;
}

.contact__btn{
    width:100%;
    max-width:340px;
    height:56px;

}

.contact__btn span{
    font-size:1rem;
}
}


/* ==========================
Footer
========================== */

.footer{
    padding: 14px 0;
    background: #fff;
}

.footer__copyright{
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2C3539;
    text-align: center;
}

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


    .footer__copyright{
        font-size: 0.75rem;
    }

}