@charset "UTF-8";

*,:before,:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid
}

* {
    font-size: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.2;
}

body {
    margin: 0;
    background: var(--color-bg);
    font-size: 15px;
    font-family: var(--font-noto);
    padding-top: 132px;
    width: 100%;
    overflow-x: hidden;
    @media (width < 768px) {
        padding-top: 100px;
    }
}

main {
    display: block
}

p,table,blockquote,address,pre,form,figure,dl {
    margin: 0
}

p {
    font-size: var(--font-size-base);
    letter-spacing: .05em;
    @media (width < 768px) {
        font-size: var(--font-size-base-sp);
    }
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-weight: inherit;
    font-size: inherit
}

ul,ol {
    margin: 0;
    padding: 0;
    list-style: none
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    transition: all ease .3s;
}

table {
    border-color: inherit;
    border-collapse: collapse
}

caption {
    text-align: left
}

td,th {
    padding: 0;
    vertical-align: top
}   

th {
    font-weight: 700;
    text-align: left
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

.pc {
	@media (width < 768px) {
		display: none;
	}
}
.sp {
	display: none;
	@media (width < 768px) {
		display: inherit;
	}
}
.animation {
    opacity: 0;
}
.animated {
    opacity: 0;
}

:root {
    --color-main-1: #0c7433;
    --color-main-2: #389c38;
    --color-main-3: #7fbe25;
    --color-main-4: #0ba29a;    
    --color-bg: #eaeee6;
    --color-font: #212121;
    --font-noto: "Noto Sans JP", sans-serif;
    --font-mincho: "Zen Old Mincho", serif;
    --font-eng: "Roboto Condensed", sans-serif;
    --font-noto-eng: "Roboto Condensed", "Noto Sans JP", sans-serif;
    --font-size-base: 16px;
    --font-size-base-sp: calc(14/375 * 100vw);
    --font-size-1: 80px;
    --font-size-2: 72px;
    --font-size-3: 48px;
    --font-size-4: 40px;
    --font-size-5: 32px;
    --font-size-6: 24px;
    --font-size-7: 20px;
    --radius-1: 200px;
    --radius-2: 160px;
    --radius-3: 150px;
    --radius-4: 120px;
    --radius-5: 80px;
    --radius-6: 40px;
    --radius-1-sp: 20vw;
    --radius-2-sp: 16vw;
    --radius-3-sp: 15vw;
    --radius-4-sp: 12vw;
    --radius-5-sp: 8vw;

    --max-width-1: 1200px;
    --max-width-2: 1080px;
}


@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes fadein {
    0% { opacity: 0;}
    100% { opacity: 1;}
}

@keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translate(0px, 20px); }
  30% {
    opacity: 0;
    transform: translate(0px, 20px); }
  100% {
    opacity: 1;
    transform: translate(0px, 0px); }
}

@keyframes fadeinright {
  0% {
    opacity: 0;
    transform: translate(-3%, 0px); }
  30% {
    opacity: 0;
    transform: translate(-3%, 0px); }
  100% {
    opacity: 1;
    transform: translate(0px, 0px); }
}

@keyframes fadeinleft {
  0% {
    opacity: 0;
    transform: translate(3%, 0px); }
  30% {
    opacity: 0;
    transform: translate(3%, 0px); }
  100% {
    opacity: 1;
    transform: translate(0px, 0px); }
}

.animated.fadein {
    animation: fadein .5s ease-in .1s 1 forwards; 
}
.animated.fadeinup {
    animation: fadeinup .5s ease-in .1s 1 forwards; 
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 132px;
    padding: 32px 4%;
    display: flex;
    z-index: 9999;
    @media (width < 768px) {
        height: 100px;
        padding: 10px 4%;
    }
    .recruit-logo {
        display: flex;
        align-items: center;
        font-family: var(--font-eng);
        letter-spacing: .05em;
        font-weight: 500;
        opacity: 1;
        transition: all ease .3s;
        .logo-img {
            margin-right: 16px;
        }
        @media (width < 768px) {
            .logo-img {
                width: 150px;
                margin-right:12px;
            }
        }
        &:hover {
            opacity: .5;
        }
    }
    .gnavi {
        margin-left: auto;
        ul {
            background: #fff;
            display: flex;
            gap: 40px;
            padding:20px 40px;
            border-radius: 32px;
            box-shadow: 8px 8px 20px rgba(0,0,0,0.05);
            a {
                font-weight: 500;
                &:hover {
                    color: var(--color-main-1);
                }
            }
        }
        @media (width < 768px) {
			position:fixed;
			z-index: -9999;
            display: none;
			opacity: 0;
			top:0;
			left: 0;
			width:100%;
			height: 100vh;
			background: #fff;
			flex-direction: column;
			justify-content: center;
			align-items: flex-start;
			padding: 20vw 15vw;
			transition: all .5s;
            ul {
                background: transparent;
                flex-direction: column;
                box-shadow: none;
                padding: 0;
                gap: 12vw;
                li {
                    a {
                        font-size: calc(20/375*100vw);
                        color: var(--color-main-1);
                        font-weight: 700;
                        padding-left: 8vw;
                        background: url(../images/arrow-tri-mid.png) no-repeat left center;
                        background-size: 4vw auto;
                    }
                }
            }
        }
    }
    @media (width < 768px) {
        &.panelactive {
            .gnavi {
                background: var(--color-bg);
                display: flex;
                opacity: 1;
            }
            .recruit-logo {
                opacity: 0;
                visibility: hidden;
            }
        }
    }
    &.scrolled {
        .recruit-logo {
            opacity: 0;
            visibility: hidden;
        }
    }

    .openbtn{
		display: none;
		position:fixed;
		top:16px;
		right: 8px;
		z-index: 999;
		cursor: pointer;
		width: 64px;
		height:64px;
		span{
			display: inline-block;
			transition: all .4s;
			position: absolute;
			left: 14px;
			height: 2px;
			background-color: var(--color-main-2);
			width: 60%;
            mix-blend-mode: difference;
			&:nth-of-type(1) {
				top:20px;
			}
			&:nth-of-type(2) {
				top:28px;
			}
			&:nth-of-type(3) {
				top:36px;
			}
		}
		&.active {
			span {
				&:nth-of-type(1) {
					top: 28px;
					left: 14px;
					transform: rotate(-45deg);
					width: 60%;
				}
                &:nth-of-type(2) {
                    opacity: 0;
                }
				&:nth-of-type(3) {
					top: 28px;
					left: 14px;
					transform: rotate(45deg);
					width: 60%;
				}
			}
		}
		@media (width < 768px) {
			display: block;
		}
	}
	/* &.scrolled {
		.openbtn {
			span {
				background-color: $main_color;
			}
		}
	} */
}


#footer {
    background: var(--color-main-1);
    color: #fff;
    padding: 80px 4% 100px;
    .pagetop {
        display: none;
        position: fixed;
        right: 24px;
        bottom: 24px;
        background: rgba(255,255,255,.85);
        width: 72px;
        height: 72px;
        border-radius: 100%;
        cursor: pointer;
        transition: all .3s ease;
        box-shadow: 12px 12px 32px rgba(0,0,0,0.08);
        z-index: 99;
        &:hover {
            opacity: .3;
            box-shadow: nonws;
        }
        &:before {
            content: "";
            display: block;
            position: absolute;
            width: 18px;
            height: 11px;
            background: url(../images/arrow-green.svg) no-repeat center;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) rotate(-90deg);
        }
    }
    .footer-contents {
        display: flex;
        margin-bottom: 100px;
        .l-contents {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .logo {
            display: flex;
            align-items: center;
            font-family: var(--font-eng);
            letter-spacing: .05em;
            font-weight: 500;
            img {
                margin-right: 16px;
            }
        }
        .link-corp {
            display: block;
            border: 1px solid #fff;
            background: url(../images/arrow-white.svg) no-repeat;
            background-size: 16px auto;
            background-position: center right 16px;
            color: #fff;
            padding: 16px 48px 16px 24px;
            line-height: 1;
            border-radius: 24px;
            margin-top: 24px;
            &:hover {
                background-color: #fff;
                background-image: url(../images/arrow-green.svg);
                color: var(--color-main-1);
            }
        }
        @media (width < 768px) {
            flex-direction: column;
            margin-bottom: 25vw;
            .l-contents {
                align-items: center;
            }
            .logo {
                margin-right: 20px;
                img {
                    width: 130px;
                }
            }
            .link-corp  {
                font-size: 12px;
                text-align: center;
            }
        }
    }
    .foot-nav {
        margin-left: auto;
        ul {
            display: flex;
            gap: 40px;
            li a:hover {
                opacity: .5;
            }
        }
    }
    .copyright {
        font-size: 12px;
        opacity: .4;
        font-family: var(--font-eng);
        font-weight: 500;
        letter-spacing: .05em;
    }
    @media (width < 768px) {
        padding: 15vw 6vw;
        .pagetop {
            width: 52px;
            height: 52px;
            right: 10px;
            bottom: 10px;
        }
        .foot-nav {
            margin-top: 15vw;
            ul {
                flex-wrap: wrap;
                gap: 4vw;
                li {
                    flex: 1;
                    min-width: 46%;
                }
                a {
                    font-size: calc(13/375*100vw);
                }
            }
        }
        .copyright {
            font-size: 10px;
            text-align: center;
        }
    }
    
}


#contact {
    background: var(--color-bg);
    .inner {
        width: 88%;
        max-width: var(--max-width-1);
        margin: 0 auto;
        padding: 120px 0;
        @media (width < 768px) {
            padding: 18vw 0;
        }
    }
    .fukidashi {
        text-align: center;
        font-size: var(--font-size-5);
        margin-bottom:1.25em;
        color: var(--color-main-1);
        b {
            display: inline-block;
            position: relative;
            padding: 0 1em;
            &:before, &:after {
                content: "";
                display: block;
                width: 3px;
                height: 120%;
                background: var(--color-main-2);
                top: 0;
                position: absolute;
            }
            &:before {
                left: 0;
                transform: rotate(-30deg);
            }
            &:after {
                right: 0;
                transform: rotate(30deg);
            }
        }
        @media (width < 768px) {
            font-size: calc(22/375*100vw);
            b {
               &:before, &:after {
                width: .5vw;
               } 
            }
        }
    }
    .wrap-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4%;
        text-align: center;
        li {
            background: #fff;
            padding: 48px 20px;
            border-top-left-radius: var(--radius-6);
            border-bottom-right-radius: var(--radius-6);
            p {
                color: var(--color-main-1);
                font-weight: 500;
            }
            .tel {
                color: var(--color-main-1);
                font-size: 56px;
                font-family: var(--font-eng);
                font-weight: 500;
                position: relative;
                padding-left:50px;
                margin-bottom: .1em;
                display: inline-block;
                &:before {
                    content: "";
                    display: block;
                    position: absolute;
                    background: url(../images/tel_icon.webp) no-repeat center;
                    background-size: contain;
                    width: 41px;
                    height: 34px;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                }
                &:hover {
                    color: var(--color-main-2);
                }
            }
            &.email a {
                color: var(--color-main-1);
                font-size: var(--font-size-3);
                font-family: var(--font-eng);
                font-weight: 500;
                display: inline-block;
                margin-bottom: .25em;
                &:hover {
                    color: var(--color-main-2);
                }
            }
        }
        @media (width < 768px) {
            grid-template-columns: 1fr;
            gap: 4vw;
            li {
                padding: 6vw 2vw;
                border-top-left-radius: 4vw;
                border-bottom-right-radius: 4vw;
                .tel {
                    font-size: calc(32/375*100vw);
                    padding-left: calc(52/560*100vw);
                    &:before {
                        width: calc(41/580*100vw);
                        height: calc(34/580*100vw);
                    }
                }
                &.email a {
                    font-size: calc(32/375*100vw);
                }
            }
        }
    }
}


.inner {
    padding: 160px 0;
    #infographic & {
        padding: 120px 5% 80px;
    }
    @media (width < 768px) {
        padding: 18vw 0;
        #infographic & {
            padding: 15vw 5% 18vw;
        }
    }
}


/* 採用TOP */
.top-cmn-heading {
    text-align: center;
    margin-bottom: 64px;
    .eng {
        color: var(--color-main-1);
        font-family: var(--font-eng);
        font-size: var(--font-size-1);
        font-weight: 500;
        display: block;
    }
    .jpn {
        font-weight: 600;
        font-family: var(--font-noto-eng);
        font-size: var(--font-size-7);
    }
    @media (width < 768px) {
        margin-bottom: 5vw;
        .eng {
            font-size: 12vw;
        }
        .jpn {
            font-size: calc(14/375*100vw);
        }
    }
}

.mv {
    position: relative;
    aspect-ratio: 1824 / 1120;
    margin: 0 4%;
    @media (width < 768px) {
        aspect-ratio: 750 / 1160;
        margin: 0 4%;
    }
    img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }
    h1 {
        text-align: center;
        font-size: calc(40/1440 * 100vw);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -120%);
        font-family: var(--font-mincho);
        letter-spacing: .05em;
        white-space: nowrap;

        @media (width < 768px) {
            font-size: 5.5vw;
            transform: translate(-50%, -20%);
            margin-left: .25em;
        }
    }
}

#mission {
    color: #fff;
    height: 100vh;
    background: url(../images/bg-mission.webp) no-repeat left center;
    background-size: cover;
    padding: 168px 6%;
    border-top-right-radius: var(--radius-2);
    position: relative;
    width: 92%;
    &:before {
        content: "";
        display: block;
        width: 72px;
        height: 72px;
        background-color: var(--color-main-3);
        filter: blur(80px);
        border-radius: 100%;
        position: absolute;
        right: -2%;
        top: 80px;
        @media (width < 768px) {
            display: none;
        }
    }
    @media (width < 768px) {
        border-top-right-radius: var(--radius-6);
        height: auto;
        padding: 10vw 8%;
        width: 100%;
        overflow: hidden;
    }
    .inner {
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        position: relative;
        max-width: var(--max-width-1);
        margin: 0 auto;
        text-shadow: 1px 1px 20px rgba(0,0,0,0.85);
    }
    h2 {
        font-family: var(--font-mincho);
        letter-spacing: .05em;
        font-size: 32px;
        margin-bottom: 2em;
        line-height: calc(48/32);
        letter-spacing: .15em;
        @media (width < 768px) {
            font-size: calc(24/375 * 100vw);
        }
    }
    p {
        line-height: 2.1;
        letter-spacing: .1em;
    }
    .heading {
        position: absolute;
        font-size: 178px;
        font-family: var(--font-eng);
        color: #fff;
        opacity: .33;
        transform: rotate(90deg) translateY(-150%) translateX(-70%);
        right: 0;
        letter-spacing: 0;
        font-weight: 500;
        @media (width < 768px) {
            font-size:calc(100/375 * 100vw);
            transform: rotate(90deg) translateY(-120%) translateX(-60%);
            opacity: .25;
        }
    }
}

#value {
    background: linear-gradient(to bottom, transparent, transparent 40%, #0c7433 80%);
    width: 100%;
    overflow-x: hidden;
    position: relative;
    &:before {
        content: "";
        display: block;
        width: 100px;
        height: 100px;
        background-color: var(--color-main-2);
        filter: blur(120px);
        border-radius: 100%;
        position: absolute;
        left: 80%;
        top: 480px;
        @media (width < 768px) {
            display: none;
        }
    }
    .wrap-value-box {
        position: relative;
        li {
            position: relative;
            z-index: 1;
        }
        &:before {
            content: "";
            display: block;
            width: 290px;
            height: 290px;
            opacity: .5;
            border: 1px solid #fff;
            position: absolute;
            border-top-left-radius: var(--radius-5);
            border-bottom-right-radius: var(--radius-5);
            top: -50px;
            left: 62%;
            z-index: 3;
            @media (width < 768px) {
                width: 40vw;
                height: 40vw;
                border-top-left-radius: var(--radius-4-sp);
                border-bottom-right-radius: var(--radius-4-sp);
                left: 75%;
                top: -18vw;
           }
        }
        &:after {
            content: "";
            display: block;
            width: 413px;
            height: 413px;
            background: #fff;
            opacity: .15;
            position: absolute;
            border-top-left-radius: var(--radius-5);
            border-bottom-right-radius: 100px;
            bottom: -120px;
            left: calc(50% + 100px);
            z-index: 0;
            @media (width < 768px) {
                width: 34vw;
                height: 34vw;
                border-top-left-radius: var(--radius-5-sp);
                border-bottom-right-radius: var(--radius-5-sp);
                left: calc(50% + 12vw);
                bottom: -15vw;
           }
        }
    }
    .value-box {
        background-repeat: no-repeat;
        background-size: cover;
        color: #fff;
        width: 934px;
        height: 660px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        padding: 112px 120px;
        .label {
            font-size: 28px;
            font-weight: 500;
            font-family: var(--font-eng);
        }
        .eng-heading {
            font-size: var(--font-size-2);
            font-family: var(--font-eng);
            font-weight: 500;
        }
        .heading {
            font-size: var(--font-size-4);
            font-family: var(--font-mincho);
            border-bottom: 1px solid #fff;
            padding-bottom: .25em;
            margin-bottom: .5em;
            letter-spacing: -.025em;
            span {
               letter-spacing: -.15em;
               margin-right: .1em;
            }
        }
        .text {
            line-height: calc(30/16);
        }
        @media (width < 768px) {
            width: 90%;
            height: auto;
            padding: 12vw 8vw;
            .label {
                font-size: calc(15/375*100vw);
            }
            .eng-heading {
                font-size: calc(33/375*100vw);
            }
            .heading {
                font-size: calc(24/375*100vw);
            }
            .text {
                font-size: calc(13/375*100vw);
            }
        }
    }
    .value-box-1 {
        background-image: url(../images/bg-value01.webp);
        border-top-right-radius: 272px;
        border-bottom-left-radius: 272px;
        transform: translateX(-16%);
        @media (width < 768px) {
            border-top-right-radius: var(--radius-2-sp);
            border-bottom-left-radius: var(--radius-2-sp);
            transform: translateX(-6%);
            padding-bottom: 22vw;
        }
    }
    .value-box-2 {
        background-image: url(../images/bg-value02.webp);
        border-top-left-radius: 272px;
        border-bottom-right-radius: 272px;
        margin-top: -160px;
        transform: translateX(22%);
        @media (width < 768px) {
            border-top-left-radius: var(--radius-2-sp);
            border-bottom-right-radius: var(--radius-2-sp);
            transform: translateX(6%);
            margin-top: -15vw;
            padding-bottom: 22vw;
        }
    }
    .value-box-3 {
        background-image: url(../images/bg-value03.webp);
        padding-top: 100px;
        border-top-right-radius: 272px;
        border-bottom-left-radius: 272px;
        margin-top: -100px;
        transform: translateX(-22%);
        .text {
            margin-right: -10px;
            letter-spacing: -.025em;
        }
        @media (width < 768px) {
            border-top-right-radius: var(--radius-2-sp);
            border-bottom-left-radius: var(--radius-2-sp);
            margin-top: -15vw;
            transform: translateX(-6%);
            padding-top: 12vw;
        }
    }
    .work-play-family {
        text-align: center;
        margin-top: 100px;
        @media (width < 768px) {
            margin-top: 12vw;
            img {
                width: 88%;
            }
        }
    }
}

#staff {
    background: #fff;
    position: relative;
    &:before {
        content: "";
        display: block;
        width: 72px;
        height: 72px;
        background-color: var(--color-main-3);
        filter: blur(92px);
        border-radius: 100%;
        position: absolute;
        left: 80%;
        top: 340px;
        @media (width < 768px) {
            display: none;
        }
    }
    .wrap-staff-box {
        padding-bottom: calc(100/1440 * 100vw);
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: calc(1200/1440 * 100vw);
        max-width: 1200px;
        margin: 0 auto;
        gap: calc(96/1440 * 100vw);
        position: relative;
        .staff-box {
            &:nth-of-type(2n) {
                transform: translateY(18%);
            }
            a {
                display: block;
                position: relative;
                &:hover {
                    .photo-staff {
                        figure {
                            img {
                                transform: scale(105%);
                            }
                        }
                    }
                }
            }
        }
        @media (width < 768px) {
            grid-template-columns: 1fr;
            gap: 10vw;
            padding-bottom: 0;
            .staff-box {
                &:nth-of-type(2n) {
                    transform: translate(0);
                }
            }
        }
    }
    .photo-staff {
        border-top-left-radius: var(--radius-5);
        border-bottom-right-radius: var(--radius-5);
        overflow: hidden;
        aspect-ratio: 480/ 640;
        margin-left: calc(64/1440 * 100vw);
        figure {
            position: relative;
            img {
                transition: all ease .7s;
                z-index: 0;
            }
            &:before {
                content: "";
                display: block;
                position: absolute;
                z-index: 1;
                bottom: 0;
                width: 100%;
                height: 18%;
                background: linear-gradient(to bottom, transparent, rgba(0,0,0,.7) 100%);
            }
        }
        @media (width < 768px) {
            border-top-left-radius: var(--radius-5-sp);
            border-bottom-right-radius: var(--radius-5-sp);
            figure:before {
                height: 25%;
            }
        }
    }
    .text-box {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 0;
        left: 0;
        height: 100%;
        padding-top: 32px;
        padding-bottom: 32px;
        z-index: 2;
        @media (width < 768px) {
            padding-bottom: 5vw;
        }
        .number {
            font-family: var(--font-eng);
            font-size: 110px;
            font-weight: 500;
            color: var(--color-main-3);
            opacity: .75;
            margin-bottom: auto;
            @media (width < 768px) {
                font-size: calc(64/375*100vw);
            }
        }
        .heading {
            font-family: var(--font-mincho);
            font-size: var(--font-size-5);
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: column;
            gap: 4px;
            margin-bottom: .75em;;
            span {
                background: #fff;
                display: inline-block;
                padding: 4px 2px 4px 0;
                &.narrow {
                    letter-spacing: -.05em;
                }
            }
            @media (width < 768px) {
                font-size: calc(20/375*100vw);
                gap: 1vw;
            }
        }
        .dept {
            color: #fff;
            font-size: 1rem;
            margin-left: calc(64/1440 * 100vw);
            padding-left: 20px;
            margin-bottom: .5rem;
            @media (width < 768px) {
                font-size:calc(12/375 * 100vw);
                margin-bottom: .25em;
                padding-left: 1em;
            }
        }
        .name {
            color: #fff;
            font-size: var(--font-size-7);
            font-weight: bold;
            margin-left: calc(64/1440 * 100vw);
            padding-left: 20px;
            @media (width < 768px) {
                font-size: calc(16/375 * 100vw);
                padding-left: .85em;
            }
        }
    }
}

.link-blk {
    background: linear-gradient(45deg, #00a29a 0, #54b988 50%, #70c284 100%);
    padding: 100px 0;
    @media (width < 768px) {
        padding: 12vw 0;
    }
    .link-wrap {
        display: flex;
        gap: 16px;
        width: 94%;
        margin: 0 auto;
        li {
            flex: 1;
            a {
                display: flex;
                gap: calc(40/1440 * 100vw);
                height: 100%;
                background: #fff;
                border-top-left-radius: var(--radius-6);
                border-bottom-right-radius: var(--radius-6);
                padding: 32px;
                position: relative;
                align-items: center;
                font-size: var(--font-size-6);
                font-weight: bold;
                box-shadow: 8px 8px 32px rgba(0,0,0,0.08);
                &:hover {
                    opacity: .75;
                    box-shadow: none;
                }
                &:before {
                    content: "";
                    display: block;
                    position: absolute;
                    background: var(--color-main-2) url(../images/arrow-white.svg) no-repeat center;
                    background-size: 16px auto;
                    width: 56px;
                    height: 56px;
                    border-radius: 100%;
                    right: 32px;
                    bottom: 32px;
                }
            }
            figure {
                width: calc(252/1440 * 100vw);
                max-width: 252px;
                aspect-ratio: 1 / 1;
            }
        }
        @media (width < 768px) {
            flex-direction: column;
            width: 88%;
            gap: 4vw;
            li {
                a {
                    font-size: calc(15/375*100vw);
                    border-top-left-radius: var(--radius-5-sp);
                    border-bottom-right-radius: var(--radius-5-sp);
                    padding: 6vw;
                    gap: 4vw;
                     &:before {
                        width: 11vw;
                        height: 11vw;
                        background-size: 3vw auto;
                        right: 2.5vw;
                        bottom: 2.5vw;
                    }
                }
                figure {
                    width: 25vw;
                }
            }
        }
    }
    .link-infographic {
        display: block;
        margin: 48px auto 0;
        max-width: 880px;
        width: 88%;
        box-shadow: 8px 8px 32px rgba(0,0,0,0.08);
        border-radius: min(3vw, 20px);
        overflow: hidden;
        &:hover {
            opacity: .75;
            box-shadow: none;
        }
        @media (width < 768px) {
            margin-top: 8vw;
        }
    }
}



/* 下層 */
.cmn-heading {
    color: var(--color-main-1);
    width: calc(1200/1440 * 100vw);
    margin: 0 auto 80px;
    #vision &, #history & {
        color: #fff;
        .jpn {
            &:before {
                background-image: url(../images/logomark-white.svg);
            }
        }
    }
    .eng {
        font-family: var(--font-eng);
        font-size: var(--font-size-1);
        font-weight: 500;
        line-height: 1;
        margin-bottom: .1em;
        display: block;
    }
    .jpn {
        font-weight: 700;
        font-size: var(--font-size-base);
        position: relative;
        padding-left: 24px;
        &:before {
            content: "";
            display: block;
            width: 16px;
            height: 16px;
            position: absolute;
            background: url(../images/logomark-color.svg) no-repeat left center;
            background-size: contain;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }
    @media (width < 768px) {
        width: 88%;
        margin-bottom: 10vw;
        .eng {
            font-size: calc(40/ 375 * 100vw);
        }
        .jpn {
            font-size: var(--font-size-base-sp);
            padding-left:calc(20/375 * 100vw);
            &:before {
                width:calc(14/375 * 100vw);
                height:calc(14/375 * 100vw);
            }
        }
    }
} 

.page-header {
    height: 620px;
    display: flex;
    align-items: center;
    margin-top: -132px;
    border-bottom-left-radius: var(--radius-1);
    background-repeat: no-repeat;
    background-size: cover;
    #aboutUs & {
        background-image: url(../images/bg-header-about.webp);
        background-position: left 50% top 70%;
    }
    #environment & {
        background-image: url(../images/bg-header-environment.webp);
        background-position: center;
        @media (width < 768px) {
            background-size: cover;
        }
    }
    #infographic & {
        background: #f5f7f3;
        height: 440px;
        padding-top: 40px;
        position: relative;
        &:before {
            content: "";
            display: block;
            position: absolute;
            background: url(../images/search-glass.webp) no-repeat;
            background-size: contain;
            width: 310px;
            height: 317px;
            bottom: -5px;
            right: 5%;
        }
        .page-name {
            font-family: var(--font-noto);
            font-weight: 600;
            b {
                font-weight: 800;
                font-size: var(--font-size-3);
                color: var(--color-main-1);
            }
        }
        @media (width < 768px) {
            height: 75vw;
            &:before {
                width: calc(310/1080*100vw);
                height: calc(317/1080*100vw);
                right: 2%;
                bottom: -2px;
            }
            .page-name {
                font-size: calc(18/375 * 100vw);
                b {
                    font-size: calc(24/375 * 100vw);
                }
            }
        }
    }
    .page-name {
        font-family: var(--font-mincho);
        font-size: var(--font-size-4);
        margin: 0 auto;
        width: calc(1100/1440 * 100vw);
    }
    @media (width < 768px) {
        height: 85vw;
        border-bottom-left-radius: 20vw;
        padding-top: 20vw;
        margin-top: -100px;
        .page-name {
            font-size: calc(24/375 * 100vw);
            letter-spacing: .05em;
            width: 80%;
            margin-top: -5vw;
            text-shadow: -1px -1px 5vw #fff, -1px 1px 5vw #fff, 1px -1px 5vw #fff, 1px 1px 5vw #fff;
        }
    }
        

}

.page-navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: calc(56/1440 * 100vw);
    margin: 48px auto;
    width: 88%;
    li {
        a {
            position: relative;
            padding-left: 28px;
            &:before {
                background: url(../images/icon-arrow-circle.png) no-repeat center;
                background-size: contain;
                content: "";
                display: block;
                position: absolute;
                left: 0;
                height: 20px;
                width: 20px;
                top: 50%;
                transform: translateY(-50%);
                transition: all ease .1s;
            }
            span {
                font-weight: 500;
            }
            &:hover {
                color: var(--color-main-1);
                &:before {
                    top: 60%;
                }
            }
        }
    }
    @media (width < 768px) {
        margin: 8vw auto;
        width: 82%;
        li {
            a {
                font-size: calc(12/375 * 100vw);
                padding-left: calc(20/375 * 100vw);
                &:before {
                    width:calc(16/375 * 100vw);
                    height:calc(16/375 * 100vw);
                }
            }
        }
    }
}

#aboutUs {
    background: #fff;
}

#vision {
    background: var(--color-main-1);
    border-top-right-radius: var(--radius-3);
    color: #fff;
    overflow: hidden;
    .inner {
        padding-bottom: 310px;
    }
    .wrap-message {
        display: flex;
        align-items: flex-end;
        width: calc(1080/1440 * 100vw);
        margin: 0 auto;
    }
    .l-contents {
        flex: 1;
        z-index: 1;
        position: relative;
        max-width: 620px;

        .l-heading {
            font-family: var(--font-mincho);
            font-size: var(--font-size-4);
            letter-spacing: .1em;
            margin-bottom: 1em;
        }
        .l-text {
            line-height: 2;
        }
    }
    .r-contents {
        flex-basis: 50%;
        padding-left: calc(120/1440*100vw);
        text-align: center;
        transform: translateY(52px);
        @media (width < 768px) {
            transform: translate(0);
            padding: 0 5%;
            margin-top: 10vw;
        }
        figure {
            display: block;
            position: relative;
            max-width: 480px;
            img {
                border-top-right-radius: var(--radius-5);
                border-bottom-left-radius: var(--radius-5);
            }
            &:before {
                content: "";
                display: block;
                width: 420px;
                height: 420px;
                background: var(--color-main-2);
                border-top-right-radius: var(--radius-5);
                border-bottom-left-radius: var(--radius-5);
                position: absolute;
                z-index: 0;
                top: 0;
                left: 0;
                transform: translate(-100%, -100%);
            }
            &:after {
                content: "";
                display: block;
                width: 240px;
                height: 240px;
                border: 1px solid var(--color-main-2);
                border-top-left-radius: var(--radius-5);
                border-bottom-right-radius: var(--radius-5);
                position: absolute;
                z-index: 0;
                top: 0;
                left: 0;
                transform: translate(20%, -120%);
            }
        }
        .ceo {
            font-size: 15px;
            line-height: 1.5;
            margin-top: 1em;
            max-width: 480px;
            b {
                font-weight: 500;
                font-size: 20px;
            }
            @media (width < 768px) {
                font-size: calc(12/375*100vw);
                b {
                   font-size: calc(18/375*100vw) ;
                }
            }
        }
    }
    @media (width < 768px) {
        border-top-right-radius: var(--radius-3-sp);
        .inner {
            padding-bottom: 30vw;
        }
        .wrap-message {
            flex-direction: column;
            width: 88%;
        }
        .l-contents {
            .l-heading {
                font-size: calc(24/375 * 100vw);
            }
        }
    }
}

#business {
    background: var(--color-bg);
    border-top-left-radius: var(--radius-3);
    margin-top: -150px;
    .cmn-heading {
        margin-bottom: 0;
    }
    .wrap-business {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        .l-contents {
            width: calc(540/1440 * 100vw);
            padding-right: calc(80/1440 * 100vw);
            position: sticky;
            top: 132px;
            .name-business {
                font-family: var(--font-mincho);
                font-size: var(--font-size-4);
                margin-bottom: 1em;
                margin-top: 3em;
            }
            .text {
                line-height: 2;
            }
        }
        .r-contents {
            flex-basis: 50%;
            background: rgba(255,255,255,.5);
            border-top-left-radius: var(--radius-5);
            padding: 64px calc(72/1440*100vw);
            text-align: center;
            .heading {
                color: var(--color-main-1);
                font-size: var(--font-size-6);
                font-weight: bold;
                letter-spacing: .1em;
                margin-bottom: 1em;
            }
        }
        @media (width < 768px) {
            flex-direction: column;
            gap: 8vw;
            width: 88%;
            margin: 0 auto 8vw;
            .l-contents { 
                width: 100%;
                position: relative;
                top: 0;
                padding-right: 0;
                .name-business {
                    margin-top: 0;
                    font-size: calc(24/375 * 100vw);
                }
            }
            .r-contents {
                border-top-left-radius: var(--radius-5-sp);
                padding: 8vw 5vw;
                .heading {
                    font-size: calc(18/375 * 100vw)
                }
            }
        }
    }
    .office-sec {
        background: #fff;
        width: calc(1280/1440 * 100vw);
        margin: 80px auto 0;
        border-top-left-radius: var(--radius-5);
        border-bottom-right-radius: var(--radius-5);
        padding: 100px calc(100/1440 * 100vw);
        .sub-heading {
            color: var(--color-main-1);
            margin-bottom: -56px;
            .eng {
                font-family: var(--font-eng);
                font-size: var(--font-size-4);
                display: block;
                font-weight: 500;
            }
            .jpn {
                font-size: 16px;
                font-weight: bold;
            }
        }
        .office-wrap {
            display: flex;
            align-items: flex-end;
        }
        .img-map {
            width: calc(700/1440 * 100vw);
            margin-left: calc(-40/1440 * 100vw);
            margin-right: calc(-40/1440 * 100vw);
        }
        .office-info {
            flex: 1;
            margin-right:calc(-40/1440 * 100vw);
            dt {
                font-size: 18px;
                margin-bottom: .4em;
            }
            dd {
                font-size: 14px;
                line-height: 1.4;
                margin-bottom: .25em;
                + dt {
                    margin-top: 2em;
                }
            }
        }
        @media (width < 768px) {
            margin:  0;
            width: 100%;
            border-top-left-radius: var(--radius-5-sp);
            border-top-right-radius: var(--radius-5-sp);
            border-bottom-right-radius: 0;
            padding: 10vw 8vw;
            .sub-heading {
                margin-bottom: 0;
                text-align: center;
                .eng {
                    font-size: calc(24/375 * 100vw);
                }
                .jpn {
                    font-size: var(--font-size-base-sp);
                }
            }
            .office-wrap {
                flex-direction: column;
                align-items: flex-start;
            }
            .img-map {
                width: 100%;
                margin: 0 0 5vw;
            }
            .office-info {
                margin-right: 0;
                dt {
                    font-size: calc(16/375 * 100vw);
                }
                dd {
                    font-size: var(--font-size-base-sp);
                }
            }

        }
    }
    @media (width < 768px) {
        border-top-left-radius: var(--radius-3-sp);
        margin-top: -15vw;
        .cmn-heading {
            margin-bottom: 10vw;
        }
    }
}

#history {
    background: var(--color-main-1);
    color: #fff;
    position: relative;
    border-bottom-left-radius: var(--radius-3);
    width: 100%;
    @media (width < 768px) {
        border-bottom-left-radius:var(--radius-3-sp);
    }
    .wrap-history {
        margin-left: calc(120/1440 * 100vw);
        position: relative;
        .history-box:last-of-type {
            border-top: 0;
        }
    }
    .arrow-box {
        position: absolute;
        display: flex;
        gap: 24px;
        right: calc(120/1440 * 100vw);
        top: -100px;
        .slide-arrow {
            background: #fff;
            width: 72px;
            height: 72px;
            border-radius: 100%;
            cursor: pointer;
            position: relative;
            transition: all .3s ease;
            &.slick-disabled {
                pointer-events: none;
                opacity: .4;
            }
            &:before {
                content: "";
                display: block;
                position: absolute;
                width: 18px;
                height: 11px;
                background: url(../images/arrow-green.svg) no-repeat center;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
            }
            &.prev-arrow {
                &:before {
                    transform: rotate(180deg) translate(50%, 50%);
                }
            }
            &:hover {
                background-color: var(--color-main-3);
            }
        }
        @media (width < 768px) {
            gap: 2vw;
            right: 5%;
            top: -20vw;
            .slide-arrow {
                width: 12vw;
                height: 12vw;
            }
        }
    }
    .history-box {
        width: 400px;
        position: relative;
        border-top: 1px solid #fff;
        padding-top: 56px;
        margin-top: 12px;
        &:before {
            content: "";
            display: block;
            width: 24px;
            height: 24px;
            background: var(--color-main-3);
            border-radius: 100%;
            position: absolute;
            top: -12px;
            left: 0;
        }
        @media (width < 768px) {
            width: calc(274/375*100vw);
            padding-top: calc(48/375*100vw);
        }

    }
    .history-content {
        width: 320px;
        .year {
            font-family: var(--font-noto-eng);
            font-weight: bold;
            font-size: 62px;
            line-height: 1;
            margin-bottom: .5rem;
            span {
                color: var(--color-main-3);
            }
        }
        .text {
            margin-top: 1em;
            font-size: 15px;
            line-height: calc(27/15);
        }

        @media (width < 768px) {
            width: calc(250/375*100vw);
            .year {
                font-size: calc(48/375*100vw);
            }
            .text {
                font-size: calc(13/375*100vw);
            }
        }

    }
}


#initiatives {
    background: var(--color-bg);
    margin-top: -150px;
    border-bottom-right-radius: var(--radius-1);

    .inner {
        padding-top: 310px;
        padding-bottom: 310px;
        background: url(../images/icon-mt.png) no-repeat;
        background-position: left 85% top 400px;
        position: relative;
        @media (width < 768px) {
            background-size: 9vw auto;
            background-position: left 95% top 52vw;
        }
        &:before {
            content: "";
            display: block;
            width: 39px;
            height: 32px;
            background: url(../images/icon-mt.png) no-repeat;
            background-size: contain;
            position: absolute;
            opacity: .25;
            left: calc(85% - 150px);
            top: 370px;
             @media (width < 768px) {
                width: 5vw;
                height: 5vw;
                left: calc(85% - 7vw);
                top: 48vw;
            }
        }
        &:after {
            content: "";
            display: block;
            width: 95px;
            height: 79px;
            background: url(../images/icon-mt.png) no-repeat;
            background-size: contain;
            position: absolute;
            opacity: .25;
            right: 72%;
            bottom: 110px;
             @media (width < 768px) {
                width: 12vw;
                height: 12vw;
                bottom: 10vw;
            }
        }
    }
    .wrap-initiatives-box {
        width: calc(1200/1440 * 100vw);
        max-width: 1440px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;

        > li {
            &:nth-of-type(2n) {
                transform: translateY(28%);
            }
        }

        .initiatives-box {
            background: #fff;
            border-top-left-radius: var(--radius-5);
            border-bottom-right-radius: var(--radius-5);
            padding: 64px;
            position: relative;
        }
        .tag {
            background: var(--color-main-1);
            color: #fff;
            position: absolute;
            font-size: 20px;
            padding: 8px 24px;
            font-family: var(--font-eng);
            font-weight: 500;
            left: -12px;
        }
        .initiatives-heading {
            color: var(--color-main-1);
            font-size: 26px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 1em;
            margin-top: 2.5em;
        }
        .text {
            line-height: 1.8;
        }
    }
    @media (width < 768px) {
        border-bottom-right-radius: 15vw;
        margin-top: -15vw;
        .inner {
            padding-top: 30vw;
            padding-bottom: 30vw;
        }
        .wrap-initiatives-box {
            gap: 8vw;
            grid-template-columns: 1fr;
            > li {
                &:nth-of-type(2n) {
                    transform: translateY(0);
                }
            }
            .initiatives-box {
                border-top-left-radius: 8vw;
                border-bottom-right-radius: 8vw;
                padding: 8vw;
            }
            .tag {
                font-size: calc(18/375 * 100vw);
                padding: 2vw 4vw;
            }
            .initiatives-heading {
                font-size: calc(20/375 * 100vw);
            }
        }
    }
}

#company {
    .tbl-company {
        width: calc(940/1440 * 100vw);
        min-width: 720px;
        margin: 0 auto;
        tr:first-child {
            th,td {
                border-top: 1px solid #555;
            }
        }
        th,td {
            padding-top:32px;
            padding-bottom: 32px;
            border-bottom: 1px solid #555;
            line-height: 1.8;
        }
        th {
            background: var(--color-bg);
             padding-left: calc(24/1440 * 100vw);
        }
        td {
            padding-left: calc(48/1440 * 100vw);
        }
        @media (width < 768px) {
            min-width: 0;
            width: 88%;
            font-size: var(--font-size-base-sp);
            th,td {
                padding: 5vw 3vw;
            }
            th {
                width: 30%;
            }
        }
    }
}


/* 環境を知る */
#environment {
    background: #fff;
    .env-sec {
        &:not(:first-of-type){
            margin-top: -150px;
            @media (width < 768px) {
                margin-top: -15vw;
            }
        }
        &:not(:last-of-type) {
            padding-bottom: 150px;
            @media (width < 768px) {
                padding-bottom: 15vw;
            }
        }
        &:nth-of-type(2n-1) {
            background-color: var(--color-bg);
            border-top-right-radius: var(--radius-3);
            @media (width < 768px) {
                border-top-right-radius:var(--radius-3-sp);
            }
        }
        &:nth-of-type(2n) {
            background-color: #fff;
            border-top-left-radius: var(--radius-3);
            .wrap-enquete .blk-enquete {
                background: #f0f0f0;
            }
             @media (width < 768px) {
                 border-top-left-radius:var(--radius-3-sp);
            }
        }
    }
    .env-sec-heading {
        width: calc(1200/1440 * 100vw);
        margin: 0 auto 80px;
        font-family: var(--font-mincho);
        font-size: var(--font-size-4);
        @media (width < 768px) {
            width: 88%;
            font-size: calc(24/ 375 * 100vw);
            margin-bottom: 8vw;
        }
    }
    .wrap-env-box {
        width: calc(1200/1440 * 100vw);
        margin: 0 auto 1em;
        .env-box {
            display: flex;
            align-items: center;
            gap:calc(40/1440* 100vw);
            margin-bottom: 100px;
            &:nth-of-type(2n-1) {
                padding-right: calc(60/1440*100vw);
                &.animated {
                    animation: fadeinright .5s ease-in .1s 1 forwards; 
                }
            }
            &:nth-of-type(2n) {
                flex-direction: row-reverse;
                padding-left: calc(60/1440*100vw);
                &.animated {
                    animation: fadeinleft .5s ease-in .1s 1 forwards; 
                }
            }
        }
        .env-photo {
            width: calc(560/1440*100vw);
        }
        .env-text {
            flex: 1;
            .env-heading1 {
                color: #fff;
                display: inline-block;
                background: var(--color-main-1);
                font-size: var(--font-size-6);
                font-weight: 500;
                padding: 18px 48px;
                border-top-left-radius: 20px;
                border-bottom-right-radius: 20px;
                margin-bottom: 1.25em;
                position: relative;
                &:before, &:after {
                    background: #fff;
                    opacity: .5;
                    content: "";
                    display: block;
                    position: absolute;
                    width: 16px;
                    height: 16px;
                }
                &:before {
                    clip-path: polygon(0 0, 0 100%, 100% 100%);        
                    left: 5px;
                    bottom: 5px;        
                }
                &:after {
                    clip-path: polygon(0 0, 100% 0, 100% 100%);
                    right: 5px;
                    top: 5px;
                }
            }
            .env-heading2 {
                color: var(--color-main-1);
                font-weight: bold;
                font-size: var(--font-size-5);
                line-height: 1.35;
                margin-bottom: .5em;
            }
            .text {
                line-height: calc(30/16);
            }
        }
        @media (width < 768px) {
            width: 88%;
            .env-box {
                flex-direction: column !important;
                padding: 0 0 !important;
                gap: calc(20/375 * 100vw);
                margin-bottom: 15vw;
                &.animated {
                    animation: fadein .5s ease-in .1s 1 forwards !important; 
                }
            }
            .env-photo {
                width: 100%;
            }
            .env-text {
                padding: 0 0;
                .env-heading1 { 
                    font-size: calc(15/ 375 * 100vw);
                    padding: 3vw 8vw;
                    border-top-left-radius: 4vw;
                    border-bottom-right-radius: 4vw;
                    margin-bottom: .75em;

                    &:before, &:after {
                        width: 3vw;
                        height: 3vw;
                    }
                    &:before {
                        left: 1vw;
                        bottom: 1vw;        
                    }
                    &:after {
                        right: 1vw;
                        top: 1vw;
                    }
                }
                .env-heading2 { 
                    font-size: calc(20/ 375 * 100vw);
                }
            }
        }
    }
    .wrap-staff-comments {
         max-width: 1000px;
         width: 88%;
         margin: 0 auto;
         position: relative;
         .staff-label {
            position: absolute;
            right: 6px;
            top: 6px;
            background: var(--color-main-4);
            color: #fff;padding:10px;
            font-family: var(--font-eng);
            font-weight: 500;
            font-size: var(--font-size-5);
            text-align: center;
            padding: 20px 16px 20px 20px;
            border-bottom-left-radius: var(--radius-6);
            .wrap {
                border-top: 1px solid #fff;
                border-bottom: 1px solid #fff;
                display: block;
                line-height: 1;
                padding: 8px 0;
            }
            .small {
                font-size: 16px;
                display: block;
            }
            @media (width < 768px) {
                right: 0;
                top: 0;
                font-size: calc(20/375 * 100vw);
                border-bottom-left-radius: 6vw;
                padding: 4vw 3.5vw;
                .small {
                    font-size: calc(11/375 * 100vw);
                }
            }
         }
         .photo-staff {
            width: 320px;
            aspect-ratio: 1 / 1;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            @media (width < 768px) {
                width: 100%;
            }
         }
         .staff-comments-box {
            background: #fff;
            border: 2px solid var(--color-main-4);
            display: flex;
            align-items: center;
            position: relative;
            + .staff-comments-box {
                margin-top: 40px;
            }
            @media (width < 768px) {
                display: block;
                + .staff-comments-box {
                    margin-top: 8vw;
                }
            }
         }
         .staff-text {
            flex: 1;
            padding: 16px 40px;
            .heading {
                color: var(--color-main-4);
                font-weight: bold;
                font-size: 28px;
                line-height: calc(38/28);
                margin-bottom: .5em;
            }
            .name {
                margin-bottom: .75em;
                font-size: 15px;
                b {
                    font-size: 1.25em;
                    font-weight: 500;
                }
            }
            .text {
                font-size: 15px;
                line-height: calc(24/15);
            }
            @media (width < 768px) {
                padding: 6vw 5vw;
                .heading {
                    font-size: calc(18/375 * 100vw);
                }
                .name, .text {
                    font-size: calc(13/375 * 100vw);
                }
            }
         }
    }
    .wrap-enquete {
        max-width: var(--max-width-1);
        margin: 80px auto 0;
        border-top-left-radius: var(--radius-5);
        border-bottom-right-radius: var(--radius-5);
        overflow: hidden;
        display: flex;
        justify-content: center;
        #onboarding &,
        #communication & {
            max-width: 720px;
        }
        .blk-enquete {
            flex: 1;
            padding: 48px 40px;
            background: #fff;
            text-align: center;
            .graph {
                display: flex;
                justify-content: center;
                align-items: flex-end;
                margin-top: -8px;
                #motivation &,
                #assesment & {
                    margin-top: 0;
                }
                img {
                    width: auto;
                    max-height: 320px;
                    &:first-of-type {
                        transform: translateX(-24px);
                        #motivation & {
                            transform: translateX(24px);
                            max-height: 300px;
                        }
                        #assesment & {
                            max-height: 300px;
                        }
                    }
                    &:last-of-type {
                        #motivation &,
                        #assesment & {
                            margin-bottom: 40px;
                        }
                    }
                }
            }
        }
        .blk-required {
            text-align: center;
            flex: 1;
            padding: 48px 40px;
            background: linear-gradient(135deg, #0ca59a, #67c39c 50%, #b6dca3 100%);
            .fukidashi {
                margin-bottom: 2.5em;
            }
        }
        @media (width < 768px) {
            border-top-left-radius: 10vw;
            border-bottom-right-radius: 10vw;
            width: 88%;
            margin: 10vw auto 0;
            flex-direction: column;
            .blk-enquete { 
                padding: 8vw 10vw;
                .fukidashi {
                    img {
                        width: 85%;
                    }
                }
                .graph {
                    flex-direction: column;
                    margin-top: 0;
                    img {
                        width: 85%;
                        max-height: none;
                        &:first-of-type {
                           transform: translateX(-12%); 
                           #motivation & {
                            transform: translateX(2%);
                            max-height: none;
                           }
                           #assesment & {
                            max-height: none;
                           }
                        }
                        &:last-of-type {
                            #motivation &,
                            #assesment & {
                                margin: 5vw 0 0 ;
                                transform: translate(0) scale(115%);width: 100%;
                            }
                            #teamwork & {
                                transform: translateX(-10%); 
                                margin-top: 5vw;
                            }
                        }
                    }
                }
            }
            .blk-required {
                padding: 8vw 4vw 8vw;
                .fukidashi {
                    margin-bottom: 1em;
                    img {
                        width: 82%;
                    }
                }
            }
        }
    }
    .flow-wrap {
        display: flex;
        gap: 32px;
        margin-left: calc(80/1440 * 100vw);
        background: linear-gradient(150deg, #00a29a, #62b88f 50%, #b2c88a 100%);
        padding: 64px calc(84/1440*100vw) 64px calc(84/1440*100vw);
        margin-bottom: 100px;
        align-items: center;
        border-top-left-radius: 100px;
        figure {
            width: calc(560/1440*100vw);
        }
        .flow {
            flex: 1;
            max-width: 680px;
        }
        @media (width < 768px) {
            flex-direction: column;
            border-radius: 0;
            margin-left: 0;
            gap: 5vw;
            padding: 8vw 6vw;
            margin-bottom: 8vw;
            figure {
                width: 100%;
            }
        }
    }
    .program-wrap {
        background: linear-gradient(-45deg, #00a29a, #62b88f 50%, #b2c88a 100%); 
        border-top-right-radius: 100px;
        margin-right: calc(80/1440 * 100vw);
        padding: 64px calc(84/1440*100vw) 0 calc(40/1440*100vw);
        margin-bottom: 160px;
        @media (width < 768px) {
            margin-bottom: 8vw;
            padding: 8vw 6vw;
            margin-right: 0;
            border-top-right-radius: 0;
        }
        .env-box {
            display: flex;
            align-items: center;
            gap:calc(40/1440* 100vw);
            margin-bottom: 100px;
            &:nth-of-type(2n-1) {
                padding-right: calc(60/1440*100vw);
            }
            &:nth-of-type(2n) {
                flex-direction: row-reverse;
                padding-left: calc(60/1440*100vw);
            }
            @media (width < 768px) {
                flex-direction: column;
                gap:calc(20/375* 100vw);
                margin-bottom: 0;
                padding: 0 !important;
            }
        }
        .env-photo {
            width: calc(632/1440*100vw);
            margin-bottom: calc(-56/1440*100vw);
            @media (width < 768px) {
                width: 100%;
                margin-bottom: 0;
            }
        }
        .env-text {
            flex: 1;
            padding-bottom:calc(48/1440*100vw);
            .env-heading1 {
                color: var(--color-main-1);
                display: inline-block;
                background: #fff;
                font-size: var(--font-size-6);
                font-weight: 500;
                padding: 18px 48px;
                border-top-left-radius: 20px;
                border-bottom-right-radius: 20px;
                margin-bottom: 1.25em;
                position: relative;
                &:before, &:after {
                    background: var(--color-main-3);
                    opacity: .5;
                    content: "";
                    display: block;
                    position: absolute;
                    width: 16px;
                    height: 16px;
                }
                &:before {
                    clip-path: polygon(0 0, 0 100%, 100% 100%);        
                    left: 5px;
                    bottom: 5px;        
                }
                &:after {
                    clip-path: polygon(0 0, 100% 0, 100% 100%);
                    right: 5px;
                    top: 5px;
                }
            }
            .env-heading2 {
                color: #fff;
                font-weight: bold;
                font-size: var(--font-size-5);
                line-height: 1.35;
                margin-bottom: .5em;
            }
            .text {
                color: #fff;
                line-height: calc(30/16);
            }
            @media (width < 768px) {
                .env-heading1 { 
                    font-size: calc(16/ 375 * 100vw);
                    padding: 3vw 8vw;
                    border-top-left-radius: 4vw;
                    border-bottom-right-radius: 4vw;
                    margin-bottom: .75em;

                    &:before, &:after {
                        width: 3vw;
                        height: 3vw;
                    }
                    &:before {
                        left: 1vw;
                        bottom: 1vw;        
                    }
                    &:after {
                        right: 1vw;
                        top: 1vw;
                    }
                }
                .env-heading2 { 
                    font-size: calc(24/ 375 * 100vw);
                }
            }
        }
    }

    .wrap-slideshow {
        padding: 80px 0;
        position: relative;
        margin-bottom: 100px;
        &:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 8%;
            right: 0;
            bottom: 0;
            background: linear-gradient(-45deg, #00a29a, #62b88f 50%, #b2c88a 100%);
            border-top-left-radius: 100px;
        }
        @media (width < 768px) {
            padding: 0;
            margin-bottom: 15vw;
            &:before {
                display: none;
            }
        }
        .slideshow {
            overflow: hidden;
            display: flex;
            padding: 40px 0;
            .blk-slideshow {
                white-space: nowrap;
                display: flex;
                animation: loop-slide 60s infinite linear 1s both;
                li {
                    padding: 0 32px;
                    width: 480px;
                    figure {
                        background: #fff;
                        padding: 8px;
                        box-shadow: 4px 4px 8px rgba(0,0,0,0.08);
                    }
                    &:nth-of-type(1) {
                        figure {
                            transform: rotate(8deg);
                        }
                    }
                    &:nth-of-type(2) {
                        figure {
                            transform: rotate(-2deg);
                        }
                    }
                    &:nth-of-type(3) {
                        figure {
                            transform: rotate(5deg);
                        }
                    }
                    &:nth-of-type(4) {
                        figure {
                            transform: rotate(-4deg);
                        }
                    }
                    &:nth-of-type(5) {
                        figure {
                            transform: rotate(-1deg);
                        }
                    }
                }
            }
            @media (width < 768px) {
                padding: 4vw 0 6vw;
                .blk-slideshow {
                    li {
                        width: 56vw;
                        padding: 0 4vw;
                        figure {
                            padding: 1vw;
                        }
                    }
                }
            }
        }
    }
}



/* インタビュー */
#interview {
    background: linear-gradient(to bottom, transparent, #fff 400px, #fff 100%);
    padding-bottom: 132px;
    @media (width < 768px) {
        background: linear-gradient(to bottom, transparent, #fff 750px, #fff 100%);
    }
    .interview-header {
        width: calc(1200/1440 * 100vw);
        margin: 0 auto 80px;
        position: relative;
        &:before {
            content: "";
            display: block;
            position: absolute;
            border: 2px solid var(--color-main-3);
            width: calc(230/ 1440 * 100vw);
            height: calc(230/ 1440 * 100vw);
            border-top-left-radius: calc(56/ 1440 * 100vw);
            border-bottom-right-radius: calc(56/ 1440 * 100vw);
            top: -4%;
            right: -7.5%;
            z-index: 2;
        }
        @media (width < 768px) {
            width: 100%;
            overflow: hidden;
            padding: 0 6%;
            margin-bottom: 40px;
            &:before {
                right: -3%;
                top: 0;
                width: calc(230/ 1000 * 100vw);
                height: calc(230/ 1000 * 100vw);
                border-top-left-radius: calc(56/ 1000 * 100vw);
                border-bottom-right-radius: calc(56/ 1000 * 100vw);
            }
        }

        .photo-staff {
            width: 75%;
            aspect-ratio: 988 / 654;
            margin-left: auto;
            margin-top: 20px;
            margin-right: -5%;
            position: relative;
            &:before, &:after {
                content: "";
                display: block;
                position: absolute;
                opacity: .4;
                background: var(--color-main-3);
            }
            &:before {
                width: calc(138/ 1440 * 100vw);
                height: calc(138/ 1440 * 100vw);
                border-top-right-radius: calc(40/ 1440 * 100vw);
                border-bottom-left-radius: calc(40/ 1440 * 100vw);
                top: 5%;
                left: -8%;
            }
            &:after {
                width: calc(320/ 1440 * 100vw);
                height: calc(320/ 1440 * 100vw);
                border-top-right-radius: calc(80/ 1440 * 100vw);
                border-bottom-left-radius: calc(80/ 1440 * 100vw);
                right: 5%;
                bottom: -25%;
                opacity: .33;
            }
            figure {
                display: block;
                width: 100%;
                height: 100%;
                border-top-right-radius: var(--radius-4);
                border-bottom-left-radius: var(--radius-4);
                overflow: hidden;
                img {
                    width: 100%;
                    height: 100%;
                }

            }
            img {
                object-fit: cover;
            }
            @media (width < 768px) {
                width: 100%;
                aspect-ratio: 5 / 4;
                margin-right: -7%;
                &:before {
                    width: calc(138/ 1000 * 100vw);
                    height: calc(138/ 1000 * 100vw);
                    border-top-right-radius: calc(40/ 1000 * 100vw);
                    border-bottom-left-radius: calc(40/ 1000 * 100vw);
                    left: -7%;
                }
                &:after {
                    width: calc(320/ 1000 * 100vw);
                    height: calc(320/ 1000 * 100vw);
                    border-top-right-radius: calc(80/ 1000 * 100vw);
                    border-bottom-left-radius: calc(80/ 1000 * 100vw);
                    right: 3%;
                }
                figure {
                    border-top-right-radius: var(--radius-4-sp);
                    border-bottom-left-radius: var(--radius-4-sp);
                }
            }
        }
        .text-box {
            position: absolute;
            bottom: 4vw;
            .number {
                color: var(--color-main-2);
                font-family: var(--font-eng);
                font-weight: 600;
                font-size: 56px;
                margin-bottom: .3em;
            }
            .heading {
                font-family: var(--font-mincho);
                font-size: var(--font-size-4);
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
                margin-bottom: .75em;;
                span {
                    background: #fff;
                    display: inline-block;
                    padding: 5px 2px 5px 0;
                }
            }
            @media (width < 768px) {
                position: relative;
                bottom: 0;
                margin-top: 1em;
                .number {
                    font-size: calc(32 / 375 * 100vw);
                }
                .heading {
                    font-size: calc(20 / 375 * 100vw);
                    margin-left: -2%;
                    margin-bottom: 0;
                    gap:.25em;
                    span {
                        padding: .25em .25em .25em .25em;
                    }
                }
            }
        }
        .staff-info {
            position: relative;
            padding-left: 52px;
            margin-bottom: 72px;
            &:before {
                content: "";
                display: block;
                position: absolute;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                background: url(../images/arrow-tri-mid.png) no-repeat left center;
                background-size: contain;
                width: 41px;
                height: 51px;
            }
            .name {
                b {
                    font-weight: 500;
                    font-size: var(--font-size-6);
                }
            }
            @media (width < 768px) {
                margin-bottom: 2em;
                font-size: calc(13 / 375 * 100vw);
                padding-left:calc(48 / 480 * 100vw);
                &:before {
                    width: calc(41 / 480 * 100vw);
                    height: calc(51 / 480 * 100vw);                  
                }
                .name {
                    margin-top: .2em;
                    b {
                        font-size: 1.4em;
                    }
                }
            }
        }
    }
    .interview-text {
        width: 88%;
        max-width: var(--max-width-2);
        margin: 0 auto;
        padding-bottom: 100px;
        position: relative;
        .text {
            max-width: 780px;
            margin: 0 auto;
            line-height: 2;
        }

        .interview-photo {
            display: block;
            text-align: center;
            margin: 80px 0;
            position: relative;
            img {
                position: relative;
            }
            &:before {
                content: "";
                display: block;
                position: absolute;
                background: var(--color-main-3);
                opacity: .2;
                width: calc(212/ 1440 * 100vw);
                height: calc(212/ 1440 * 100vw);
                border-top-left-radius: calc(52/ 1440 * 100vw);
                border-bottom-right-radius: calc(52/ 1440 * 100vw);
                bottom: -30%;
                left: -3%;
            }
            @media (width < 768px) {
                margin: 64px 0;
                &:before {
                    bottom: -18%;
                    left: -4%;
                }
            }
        }
    }
    .message {
        .message-box {
            background: var(--color-bg);
            max-width: 880px;
            width: 88%;
            display: flex;
            align-items: center;
            margin: 0 auto;
            padding: 40px 50px;
            border-top-left-radius: var(--radius-6);
            border-bottom-right-radius: var(--radius-6);
            position: relative; 
            &:before {
                content: "";
                display: block;
                width: 213px;
                height: 61px;
                background: url(../images/staff/message.png) no-repeat;
                background-size: contain;
                position: absolute;
                top: -30px;
            }
            @media (width < 768px) {
                display: block;
                padding: 10vw;
                border-top-left-radius: 10vw;
                border-bottom-right-radius: 10vw;
                &:before {
                    width: calc(213/480 * 100vw);
                    height: calc(61/480 * 100vw);
                    left: 7%;
                }
            }
            .photo-staff {
                width: 250px;
                aspect-ratio: 1 / 1;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                 @media (width < 768px) {
                    width: 80%;
                    margin: 0 auto;
                }
            }
            .staff-text {
                flex: 1;
                padding-left: 32px;
                .heading {
                    color: var(--color-main-1);
                    font-weight: bold;
                    font-size: 28px;
                    line-height: calc(38/28);
                    margin-bottom: .5em;
                }
                .name {
                    margin-bottom: 1em;
                    font-size: 14px;
                    b {
                        font-size: 1.25em;
                        font-weight: 500;
                    }
                }
                .text {
                    font-size: 15px;
                    line-height: calc(24/14);
                }
                 @media (width < 768px) {
                    padding: 0;
                    margin-top: 5vw;
                    .heading {
                        font-size: calc(20/375 * 100vw);
                    }
                    .name,.text {
                        font-size: var(--font-size-base-sp);
                    }
                }
            }
        }
    }
}