@charset "UTF-8";


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    line-height: 1.6;
    color: #131b35;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    text-decoration: none;
    font-family: "M PLUS Rounded 1c", Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    line-break: strict;
    -webkit-text-size-adjust: 100%;
}

* {
    float: none;
    position: static;
}

img {
    vertical-align: top;
}

a {
    text-decoration: none;
    color: #131b35;
}

h1 {
    font-size: clamp(2.8rem, calc(1.3rem + 3.75vw), 5.8rem);
    text-align: center;
    font-family: "Roboto", sans-serif;
    color: white;
    letter-spacing: 3px;
    white-space: nowrap;
    font-weight: 600;
}

.h1small {
    font-size: clamp(2.2rem, calc(1.0rem + 3.2vw), 4.6rem);
    line-height: 1.1;
    margin-top: 2%;
}

h2 {
    font-size: clamp(1.5rem, calc(0.9rem + 1.5vw), 2.7rem);
    padding: 1.4rem 3rem;
    color: #131b35;
    background: #f4ffdf;
    -webkit-box-shadow: 5px 5px 0 #7fc303;
    border: #131b35 solid 1px;
    box-shadow: 7px 7px 0 #7fc303;
    width: 100%;
    margin: 40px auto;
}


p {
    font-size: clamp(1.1rem, calc(0.9rem + 0.58vw), 1.7rem);
}


small {
    font-size: clamp(1rem, calc(0.9rem + 0.5vw), 1.4rem);
}


.flex {
    display: flex;
}



.fixedheader {
    border-bottom: solid 3px #ddd;
    border-top: solid 14px #3cb148;
    height: 90px;
    padding: 0 10%;
    margin: 0 auto;
    position: relative;
}

.fixedheader::after {
    content: "";
    width: 90%;
    height: 1px;
    background-color: #3cb148;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.fixedheader img {
    height: 70px;
}


header {
    z-index: 99;
    position: sticky;
    position: -webkit-sticky;
    top: 8px;
    width: 86%;
    margin: auto;

}

.stickyheader {
    background: #FFF;
    border-radius: 10px;
    height: 88px;
    padding: 0 2% 0 3%;
    margin: 1% 3%;
    align-items: center;
    position: relative;
}

.bg_layer {
    background-image: url(/images/global_navi_bg.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100.4%;
    height: 91px;
    border-radius: 10px;
    z-index: -1;
}

header img {
    height: 78px;
    margin-top: 10px;
}

@media screen and (max-width: 770px) {
    .fixedheader {
        height: 70px;
        padding: 0 5%;
    }

    .innerfixedheader {
        width: 100%;
    }


    .innerfixedheader img {
        max-width: 27vw;
        object-fit: contain;
        height: 64px;
        object-position: 100% 30%;

    }

    header {
        width: 98%;
    }

    header img {
        height: 54px;
    }

    .stickyheader {
        height: 70px;
    }

    .bg_layer {
        width: 101.4%;
        height: 74px;
    }

}


.span-container,
.checkbox {
    width: 35px;
    height: 30px;
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.checkbox {
    opacity: 0;
    z-index: 100;
}

.span-container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    z-index: 90;
}

.span-container span {
    width: 100%;
    height: 3px;
    background: #737373;
    border-radius: 5px;
    transition: all 250ms ease-out;
    transform-origin: 0 0;
}

.checkbox:checked~.span-container span:nth-last-child(1) {
    transform: rotate(-45deg) translate(-2px, 3px);
}

.checkbox:checked~.span-container span:nth-last-child(2) {
    transform: rotate(0deg) scale(0.2, 0.2);
    opacity: 0;
}

.checkbox:checked~.span-container span:nth-last-child(3) {
    transform: rotate(45deg) translate(2px, -3px);
}

.nav-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    z-index: 50;
    background: rgb(255, 255, 255, 0.95);
    transition: all 250ms ease-out;
    transform: translateX(-100%);
}

.nav-container a {
    text-decoration: none;
    font-size: 2.4rem;
    margin: 1rem 0.8rem;
    position: relative;
    white-space: nowrap;
    text-align: center;

}


.checkbox:checked~.nav-container {
    transform: translateX(0%);
}



@media screen and (min-width: 770px) {


    .checkbox,
    .span-container {
        display: none;
    }

    .nav-container {
        position: relative;
        width: auto;
        height: 100%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        z-index: 50;
        background: transparent;
        transition: none;
        transform: none;
    }

    .nav-container a {
        font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    }

}

@media screen and (min-width: 770px) and (max-width: 1300px) {
    .nav-container {
        display: inline-block;
        align-content: center;
    }

    .stickyheader {
        height: 120px;
        padding: 0 6% 0 ;
    }

    .bg_layer {
        height: 124px;
    }
}

@media screen and (max-width: 770px) {
    .nav-container div {
        flex-direction: column;
    }

}



.whitebtn {
    padding: 0.1em 1.5em;
    border-radius: 20px;
    color: #3cb148;
    border: solid 1px #3cb148;
}


.greenbtn {
    background: #3cb148;
    padding: 0.1em 1.5em;
    border-radius: 20px;
    color: white;
}

.nav-container i {
    margin-right: 0.4em;
}

video {
    filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
    outline: none;
    border: none;
    display: block;
}

.main_video {
    max-width: 100vw;
    height: 70vh;
    margin: 1% auto;
}

.section_tab {
    background-color: #3cb148;
    padding: 8% 0%;
}

/*tabの形状*/
.tab {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
}

.tab li {
    width: 18%;
    min-width: 18em;
}

.tab li a {
    display: block;
    margin: 0 4%;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.8rem;
    background-color: rgb(255, 255, 255, 0.7);
    white-space: nowrap;
    color: #707070;
    font-weight: 600;

    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 3px #3cb148;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
    background: #fff;
    font-weight: 700;

    border-bottom: solid 1.6px #fff;
    color: #555555;
    border-top: solid 3px #3cb148;
    border-left: solid 3px #3cb148;
    border-right: solid 3px #3cb148;
    border-bottom: none;
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 1s;
    animation-fill-mode: forwards;

}


/*エリアの表示非表示と形状*/
.area {
    display: none;
    /*はじめは非表示*/
    opacity: 0;
    /*透過0*/
    background: #fff;
    padding: 5em 4% 4em;
    width: 80%;
    margin: auto;

}


/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.p-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 20px;
}

.p-box p {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.14rem;
    -webkit-text-stroke-color: #131b35;
    text-shadow: 2px 1px #c3daf1;
    font-size: clamp(1.9rem, calc(1.4rem + 2.8vw), 3.6rem);
    text-align: center;
    letter-spacing: 0.4rem;
    font-weight: 600;
    white-space: nowrap;
}

.p-box p::before,
.p-box p::after {
    font: var(--fa-font-solid);
    content: "\f715";
    display: inline-block;
    transform: rotate(18deg);
    font-size: 20px;
    text-shadow: none;
}

.p-box p::before {
    margin-right: 0.5em;
}


.p-box p::after {
    transform: scale(-1, 1) rotate(18deg);
    margin-left: 0.5em;
}


h3 {
    font-size: clamp(1.6rem, calc(0.9rem + 1.6vw), 2.7rem);
    padding: 0.8em;
    width: 32vw;
    min-width: 16em;
    font-weight: 600;
    display: block;
    margin: 2em auto 1em;
    position: relative;
    color: #555555;
    white-space: nowrap;
    text-align: center;

}

h3::before {
    content: "";
    background-image: linear-gradient(to right, #131b35 14px, transparent 2px),
        linear-gradient(to right, #131b35 14px, transparent 2px);
    background-size: 16px 1.4px;
    background-position: left top, left bottom;
    background-repeat: repeat-x, repeat-x;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

#kaishaannai img {
    width: 380px;
}


.to-companypagebtn {
    text-align: center;
    margin: 6em auto 4em;
}


.to-companypagebtn a {
    background: #19b5ca;
    color: white;
    padding: 0.8em 3em;
    border-radius: 9999px;
    font-size: 20px;
    box-shadow: #707070 4px 3px 3px;
}


/*表示するテキストが切り替わる*/
.btntextchange {
    /*テキストの基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    border: 3px solid #7fc303;
    border-radius: 4px;
    min-width: 300px;
    padding: 80px 40px;
    font-size: 2.4rem;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: #333;
    margin: 40px 0 20px -10px;
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s;
    background: #fff;
}


.bg_layer2 {
    background-image: url(/images/btn_bg.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 103%;
    height: 105%;
    border-radius: 10px;
    z-index: -2;
}


/*hoverした際の変化*/
.btntextchange:hover {
    color: #fff;
}

.btntextchange:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #7fc303;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: top;
}

/*hoverした際の形状*/
.btntextchange:hover:before {
    transform: scale(1, 1);
}

.btntextchange span {
    /*絶対配置でテキストの位置を決める*/
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*アニメーションの指定*/
    transition: all .1s;
    /*ブロック要素にしてテキスト折り返しなし*/
    display: block;
    white-space: nowrap;
    z-index: 9999;
}

/*差し替わるテキストの設定*/
.btntextchange span:nth-child(2) {
    opacity: 0;
    /*透過0に*/
}

/*hoverするとテキストが入れ替わる設定*/
.btntextchange:hover span:nth-child(1) {
    opacity: 0;
    /*透過0に*/
}

.btntextchange:hover span:nth-child(2) {
    opacity: 1;
    /*不透明に*/
}


.flowimg img {
    width: 90%;
    margin: 60px 6%;
}

.section_gallery {
    background-image: linear-gradient(90deg, #3cb048, #94cf9a);
    padding: 30px 0;
}

.section_gallery img {
    width: 40vw;
}

.txt_anime {
    overflow: hidden;
}

.txt_anime p {
    animation: animetxt 20s linear infinite;
    transform: translateX(100%);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    font-size: clamp(6rem, calc(3.6rem + 6vw), 10.8rem);
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 3px;
}

@keyframes animetxt {
    100% {
        transform: translateX(-100%);
    }
}


.section_aida {
    padding: 2% 0;
    text-align: center;
}

.section_aida img {
    width: 44vw;
}

.section_aida p {
    text-align: center;
    font-size: clamp(1.4rem, calc(1rem + 1vw), 2rem);
    line-height: 1.4;
}



@media screen and (max-width: 770px) {

    .main_video {
        height: auto;
        margin: 2% 0 0;
    }


    .tab li {
        width: 38%;
        min-width: 6em;
    }

    .tab li a {
        font-size: 1.3rem;
        padding: 8px 0;
    }

    .area {
        width: 100%;
    }

    .p-box p {
        -webkit-text-stroke-width: 0.09rem;


    }

    .to-companypagebtn {
        margin: 4em auto 1.5em;
    }

    .to-companypagebtn a {
        padding: 0.6em 3em;
        font-size: 16px;
    }

    #kaishaannai img {
        width: 70%;
        margin: 20px auto;
    }


    .btntextchange {
        min-width: 200px;
        padding: 60px 40px;
        font-size: 1.8rem;
        margin: 20px 0 20px -10px;
    }

    .section_aida img {
        width: 80%;
    }

    .flowimg img {
        width: 70%;
        margin: 20px 15%;
    }



}


.bikewrap {
    overflow: hidden;
    text-align: center;
    position: relative;
}

.bikewrap img {
    width: 140vw;
    margin-left: -20vw;
    margin-top: 10%;
}

.animated {
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes bike-riding {
    from {
        -webkit-animation-timing-function: linear;
        -webkit-transform: translate(-50vw, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
        opacity: 1.0;
    }

    to {
        -webkit-animation-timing-function: linear;
        -webkit-transform: translate(100vw, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
        opacity: 1;
    }
}

@keyframes bike-riding {
    from {
        animation-timing-function: linear;
        transform: translate(-50vw, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
        opacity: 1.0;
    }

    to {
        animation-timing-function: linear;
        transform: translate(100vw, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
        opacity: 1;
    }
}

.bike-riding {
    -webkit-animation-name: bike-riding;
    animation-name: bike-riding;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    position: absolute;
    top: 50%;
    /* 180px -> 9vw */
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15vw;
    /* 300px -> 15vw */
    height: 15vw;
    /* 300px -> 15vw */
    overflow: hidden;
}

@media screen and (max-width: 780px) {
    .bike-riding {
        top: 60%;
    }
}

@media screen and (max-width: 480px) {
    .bike-riding {
        top: 62%;
    }

}


.cyclist {
    position: relative;
    animation: ride 1s linear infinite;
    top: 0.5vw;
    /* 10px -> 0.5vw */
}

@keyframes ride {
    0% {
        transform: scaleY(1);
    }

    25% {
        transform: scaleY(1.02);
    }

    50% {
        transform: scaleY(1);
    }

    75% {
        transform: scaleY(1.02);
    }

    100% {
        transform: scaleY(1);
    }
}

.bike {
    position: relative;
    background-color: #e5383b;
    width: 4.5vw;
    /* 90px -> 4.5vw */
    height: 0.25vw;
    /* 5px -> 0.25vw */
    border-radius: 0.25vw;
    /* 5px -> 0.25vw */
    box-shadow: inset 0.075vw -0.075vw rgba(0, 0, 0, 0.1);
    /* 1.5px -> 0.075vw */
}

.bike:before,
.bike:after {
    content: "";
    position: absolute;
    background-color: #e5383b;
    width: 0.2vw;
    /* 4px -> 0.2vw */
    height: 3.5vw;
    /* 70px -> 3.5vw */
    top: -0.25vw;
    /* -5px -> -0.25vw */
}

.bike:before {
    transform: rotate(35deg);
    left: 3.15vw;
    /* 63px -> 3.15vw */
    box-shadow: -3vw 2.125vw #e5383b, 0px -0.75vw #e5383b;
    /* -60px 42.5px 0px -15px */
}

.bike:after {
    transform: rotate(-35deg);
    left: 1.225vw;
    /* 24.5px -> 1.225vw */
    box-shadow: 3vw 2.125vw #e5383b, 0px -0.75vw #e5383b;
    /* 60px 42.5px 0px -15px */
}

.leftTyre,
.rightTyre {
    width: 3.75vw;
    /* 75px -> 3.75vw */
    height: 3.75vw;
    /* 75px -> 3.75vw */
    position: absolute;
    border: 0.25vw solid #333;
    /* 5px -> 0.25vw */
    border-radius: 50%;
    z-index: 1;
    top: 0.75vw;
    /* 15px -> 0.75vw */
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.leftTyre {
    left: -3.5vw;
    /* -70px -> -3.5vw */
}

.rightTyre {
    left: 3.875vw;
    /* 77.5px -> 3.875vw */
}

.leftTyre:before,
.rightTyre:before {
    content: "";
    position: absolute;
    width: 3.375vw;
    /* 67.5px -> 3.375vw */
    height: 3.375vw;
    /* 67.5px -> 3.375vw */
    border-radius: 50%;
    border: 0.2vw solid #fcfffc;
    /* 4px -> 0.2vw */
}

.leftTyre:after,
.rightTyre:after {
    content: "";
    position: absolute;
    width: 0.05vw;
    /* 1px -> 0.05vw */
    height: 3.625vw;
    /* 72.5px -> 3.625vw */
    left: 1.875vw;
    /* 37.5px -> 1.875vw */
    top: 0;
    background-color: #fcfffc;
}

.spokes {
    position: absolute;
    width: 3.625vw;
    /* 72.5px -> 3.625vw */
    height: 0.05vw;
    /* 1px -> 0.05vw */
    background-color: #fcfffc;
    top: 1.875vw;
    /* 37.5px -> 1.875vw */
}

.spokes:before,
.spokes:after {
    content: "";
    position: absolute;
    width: 3.625vw;
    /* 72.5px -> 3.625vw */
    height: 0.05vw;
    /* 1px -> 0.05vw */
    background-color: #fcfffc;
    left: 0.075vw;
    /* 1.5px -> 0.075vw */
}

.spokes:before {
    transform: rotate(45deg);
}

.spokes:after {
    transform: rotate(-45deg);
}

.wheel {
    z-index: 6;
    position: absolute;
    border-radius: 50%;
    background-color: #a4161a;
    width: 0.5vw;
    /* 10px -> 0.5vw */
    height: 0.5vw;
    /* 10px -> 0.5vw */
    top: 2.625vw;
    /* 52.5px -> 2.625vw */
    left: -1.625vw;
    /* -32.5px -> -1.625vw */
    box-shadow: 7.375vw 0 #a4161a, 3.65vw 0px #a4161a;
    /* 147.5px 73px */
}

.wheel:before {
    content: "";
    position: absolute;
    width: 1.25vw;
    /* 25px -> 1.25vw */
    height: 1.25vw;
    /* 25px -> 1.25vw */
    border-radius: 100%;
    border-top: 0.275vw solid #333;
    /* 5.5px -> 0.275vw */
    border-left: 0.2vw solid #e5383b;
    /* 4px -> 0.2vw */
    border-bottom: 0.2vw solid transparent;
    /* 4px -> 0.2vw */
    border-right: 0.2vw solid transparent;
    /* 4px -> 0.2vw */
    transform: rotate(80deg);
    top: -3.5vw;
    /* -70px -> -3.5vw */
    left: 6.005vw;
    /* 120.1px -> 6.005vw */
}

.shadow {
    position: absolute;
    width: 13vw;
    /* 260px -> 13vw */
    height: 0.375vw;
    /* 7.5px -> 0.375vw */
    background-color: rgba(0, 0, 0, 0.2);
    top: 12.75vw;
    /* 255px -> 12.75vw */
    left: 1.125vw;
    /* 22.5px -> 1.125vw */
    border-radius: 0.25vw;
    /* 5px -> 0.25vw */
    animation: scale 2s linear infinite;
}

@keyframes scale {
    0% {
        transform: scaleX(1);
    }

    25% {
        transform: scaleX(0.9);
    }

    50% {
        transform: scaleX(1);
    }

    75% {
        transform: scaleX(0.9);
    }

    100% {
        transform: scaleX(1);
    }
}

.pedals {
    position: relative;
    z-index: 7;
    width: 1.25vw;
    /* 25px -> 1.25vw */
    height: 1.25vw;
    /* 25px -> 1.25vw */
    border: 0.125vw solid #ba181b;
    /* 2.5px -> 0.125vw */
    border-radius: 50%;
    top: 2.125vw;
    /* 42.5px -> 2.125vw */
    left: 1.5vw;
    /* 30px -> 1.5vw */
    animation: spin 1s linear infinite;
}

.pedals:before {
    content: "";
    position: absolute;
    border-radius: 0.25vw;
    /* 5px -> 0.25vw */
    background-color: #adb5bd;
    height: 0.75vw;
    /* 15px -> 0.75vw */
    width: 0.125vw;
    /* 2.5px -> 0.125vw */
    left: 0.55vw;
    /* 11px -> 0.55vw */
    top: -0.125vw;
    /* -2.5px -> -0.125vw */
}

.chain {
    position: absolute;
    top: 2.025vw;
    /* 40.5px -> 2.025vw */
}

.chain:before,
.chain:after {
    content: "";
    position: absolute;
    background-color: #333;
    width: 3.5vw;
    /* 70px -> 3.5vw */
    height: 0.05vw;
    /* 1px -> 0.05vw */
    left: -1.5vw;
    /* -30px -> -1.5vw */
}

.chain:before {
    top: 0.5vw;
    /* 10px -> 0.5vw */
    transform: rotate(-10deg);
}

.chain:after {
    top: 1.175vw;
    /* 23.5px -> 1.175vw */
    transform: rotate(10deg);
}

.girl {
    position: absolute;
}

.top {
    position: absolute;
    width: 2vw;
    /* 40px -> 2vw */
    height: 2vw;
    /* 40px -> 2vw */
    border-top: 1.25vw solid #e9d8a6;
    /* 25px -> 1.25vw */
    border-left: 1.25vw solid #e9d8a6;
    /* 25px -> 1.25vw */
    border-top-left-radius: 100%;
    top: -4.75vw;
    /* -95px -> -4.75vw */
    left: -0.45vw;
    /* -9px -> -0.45vw */
}

.top:before {
    content: "";
    position: absolute;
    width: 1.25vw;
    /* 25px -> 1.25vw */
    height: 1.25vw;
    /* 25px -> 1.25vw */
    border-radius: 50%;
    background-color: #e9d8a6;
    left: 1.25vw;
    /* 25px -> 1.25vw */
    top: -1.25vw;
    /* -25px -> -1.25vw */
    box-shadow: -0.25vw 0.25vw #e9d8a6;
    /* -5px 5px -> -0.25vw 0.25vw */
}

.rightArm,
.leftArm {
    position: absolute;
    width: 0.375vw;
    /* 7.5px -> 0.375vw */
    height: 2.5vw;
    /* 50px -> 2.5vw */
    border-radius: 0.5vw;
    /* 10px -> 0.5vw */
    transform: rotate(-30deg);
}

.rightArm {
    background-color: #deab90;
    left: 3.25vw;
    /* 65px -> 3.25vw */
    top: -4.375vw;
    /* -87.5px -> -4.375vw */
    z-index: 8;
}

.leftArm {
    background-color: #cd9777;
    left: 2.625vw;
    /* 52.5px -> 2.625vw */
    top: -4.625vw;
    /* -92.5px -> -4.625vw */
    z-index: -1;
}

.rightArm:before,
.leftArm:before {
    content: "";
    position: absolute;
    width: 0.375vw;
    /* 7.5px -> 0.375vw */
    height: 2.5vw;
    /* 50px -> 2.5vw */
    border-radius: 0.5vw;
    /* 10px -> 0.5vw */
    top: 2.125vw;
    /* 42.5px -> 2.125vw */
    left: 0.375vw;
    /* 7.5px -> 0.375vw */
    transform: rotate(-20deg);
}

.rightArm:before {
    background-color: #deab90;
}

.leftArm:before {
    background-color: #cd9777;
}

.head {
    position: absolute;
    background-color: #cd9777;
    width: 1vw;
    /* 20px -> 1vw */
    height: 0.5vw;
    /* 10px -> 0.5vw */
    top: -4.75vw;
    /* -95px -> -4.75vw */
    left: 2.75vw;
    /* 55px -> 2.75vw */
    z-index: -1;
    transform: rotate(-20deg);
}

.head:before,
.head:after {
    content: "";
    position: absolute;
    background-color: #deab90;
    border-radius: 50%;
}

.head:before {
    width: 1.875vw;
    /* 37.5px -> 1.875vw */
    height: 1.875vw;
    /* 37.5px -> 1.875vw */
    left: 0.75vw;
    /* 15px -> 0.75vw */
    top: -0.75vw;
    /* -15px -> -0.75vw */
}

.head:after {
    width: 0.5vw;
    /* 10px -> 0.5vw */
    height: 0.5vw;
    /* 10px -> 0.5vw */
    left: 1.95vw;
    /* 39px -> 1.95vw */
    top: 0.625vw;
    /* 12.5px -> 0.625vw */
}

.hair {
    position: absolute;
    width: 2vw;
    /* 40px -> 2vw */
    height: 1vw;
    /* 20px -> 1vw */
    border-radius: 0 50% 0 0;
    /* 0 100% 0 0 */
    background-color: #bb3e03;
    top: -6.125vw;
    /* -122.5px -> -6.125vw */
    left: 3.55vw;
    /* 71px -> 3.55vw */
    z-index: 10;
}

.hair:after {
    content: "";
    position: absolute;
    height: 1vw;
    /* 20px -> 1vw */
    width: 1vw;
    /* 20px -> 1vw */
    border-radius: 50%;
    background-color: #bb3e03;
    left: -0.5vw;
    /* -10px -> -0.5vw */
}

.hair:before {
    content: "";
    position: absolute;
    width: 2vw;
    /* 40px -> 2vw */
    height: 0.625vw;
    /* 12.5px -> 0.625vw */
    border-radius: 50% 0 / 100% 0;
    /* 50% 0/100% 0 */
    background-color: #ee9b00;
    transform-origin: right;
    left: -2.1vw;
    /* -42px -> -2.1vw */
    top: 0.925vw;
    /* 18.5px -> 0.925vw */
    animation: hair 1s linear infinite;
}

@keyframes hair {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0);
    }
}

.strap {
    position: absolute;
    background-color: #333;
    width: 0.175vw;
    /* 3.5px -> 0.175vw */
    height: 0.175vw;
    /* 3.5px -> 0.175vw */
    border-radius: 50%;
    top: -4.925vw;
    /* -98.5px -> -4.925vw */
    left: 4.925vw;
    /* 98.5px -> 4.925vw */
}

.strap:after {
    content: "";
    position: absolute;
    background-color: #333;
    width: 0.175vw;
    /* 3.5px -> 0.175vw */
    height: 1.5vw;
    /* 30px -> 1.5vw */
    border-radius: 0.25vw;
    /* 5px -> 0.25vw */
    transform: rotate(-15deg);
    top: -0.55vw;
    /* -11px -> -0.55vw */
    left: -0.75vw;
    /* -15px -> -0.75vw */
}

.strap:before {
    content: "";
    position: absolute;
    background-color: #ee9b00;
    width: 1.5vw;
    /* 30px -> 1.5vw */
    height: 0.75vw;
    /* 15px -> 0.75vw */
    border-radius: 1.25vw 1.25vw 1.25vw 0;
    /* 50px 50px 50px 0 */
    left: -1.5vw;
    /* -30px -> -1.5vw */
    top: -0.75vw;
    /* -15px -> -0.75vw */
}

.trousers {
    position: absolute;
    top: -2.25vw;
    /* -45px -> -2.25vw */
    left: -0.5vw;
    /* -10px -> -0.5vw */
}

.rightLeg {
    position: absolute;
    background-color: #0a9396;
    width: 3vw;
    /* 60px -> 3vw */
    height: 0.925vw;
    /* 18.5px -> 0.925vw */
    top: 0.425vw;
    /* 8.5px -> 0.425vw */
    left: 0.3vw;
    /* 6px -> 0.3vw */
    border-radius: 0 0.25vw 0 0.75vw;
    /* 0 5px 0 15px */
    transform-origin: top left;
    z-index: 7;
    animation: rotate 1s linear infinite;
}

.trousers:after {
    content: "";
    position: absolute;
    width: 1.5vw;
    /* 30px -> 1.5vw */
    height: 1.5vw;
    /* 30px -> 1.5vw */
    border-radius: 0 0.625vw 1.25vw 1.25vw;
    /* 0 12.5px 25px 25px */
    left: -0.125vw;
    /* -2.5px -> -0.125vw */
    background-color: #0a9396;
    transform: rotate(20deg);
}

.trousers:before {
    content: "";
    position: absolute;
    background-color: #333;
    width: 1.625vw;
    /* 32.5px -> 1.625vw */
    height: 0.625vw;
    /* 12.5px -> 0.625vw */
    border-radius: 0.5vw;
    /* 10px -> 0.5vw */
    left: -0.5vw;
    /* -10px -> -0.5vw */
    top: 1.25vw;
    /* 25px -> 1.25vw */
}

.leftLeg {
    position: absolute;
    background-color: #005f73;
    width: 3vw;
    /* 60px -> 3vw */
    height: 0.925vw;
    /* 18.5px -> 0.925vw */
    top: 0.35vw;
    /* 7px -> 0.35vw */
    left: 0.325vw;
    /* 6.5px -> 0.325vw */
    border-radius: 0 0.25vw 0 0.75vw;
    /* 0 5px 0 15px */
    transform-origin: top left;
    z-index: -4;
    animation: rotate 1s linear infinite;
    animation-delay: .5s;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(15deg);
    }

    55% {
        transform: rotate(30deg);
    }

    80% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0);
    }
}

.calf {
    position: absolute;
    transform-origin: top;
    width: 0.825vw;
    /* 16.5px -> 0.825vw */
    height: 3vw;
    /* 60px -> 3vw */
    background-color: #0a9396;
    left: 2.175vw;
    /* 43.5px -> 2.175vw */
    top: 0.225vw;
    /* 4.5px -> 0.225vw */
    border-radius: 0 0.25vw 0 0;
    /* 0 5px 0 0 */
    animation: cycle 1s linear infinite;
}

.leftcalf {
    position: absolute;
    transform-origin: top;
    width: 0.825vw;
    /* 16.5px -> 0.825vw */
    height: 3vw;
    /* 60px -> 3vw */
    background-color: #005f73;
    left: 2.175vw;
    /* 43.5px -> 2.175vw */
    top: 0.225vw;
    /* 4.5px -> 0.225vw */
    border-radius: 0 0.25vw 0 0;
    /* 0 5px 0 0 */
    animation: cycle 1s linear infinite;
    animation-delay: .5s;
}

.leftcalf:before,
.calf:before {
    content: "";
    position: absolute;
    background-color: #bb3e03;
    width: 1.375vw;
    /* 27.5px -> 1.375vw */
    height: 0.75vw;
    /* 15px -> 0.75vw */
    border-radius: 0 0.5vw 0 0;
    /* 0 10px 0 0 */
    top: 2.975vw;
    /* 59.5px -> 2.975vw */
    box-shadow: inset 0 -0.25vw #fff;
    /* 5px -> 0.25vw */
}

.leftcalf:after,
.calf:after {
    content: "";
    position: absolute;
    background-color: #333;
    width: 0.875vw;
    /* 17.5px -> 0.875vw */
    height: 0.25vw;
    /* 5px -> 0.25vw */
    border-radius: 0.25vw;
    /* 5px -> 0.25vw */
    top: 3.75vw;
    /* 75px -> 3.75vw */
    left: 0.25vw;
    /* 5px -> 0.25vw */
}

@keyframes cycle {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-27deg);
    }

    50% {
        transform: rotate(-32deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0);
    }
}

.video2 {
    width: 100vw;
    height: 44vh;
    object-fit: cover;
    margin: 1% auto;
}



.section_saiyou {
    background: #3cb148;
    padding: 8% 0 9%;
}

.saiyouinner {
    width: 80%;
    border-radius: 8px;
    border: solid #131b35 3px;
    background: #FFF;
    padding: 4% 2% 6%;
    margin: auto;
}

.saiyouinner p {
    text-align: center;
}

.saiyouinner ul {
    justify-content: space-around;
}

.saiyouinner li {
    width: 30%;
}

.saiyouinner img {
    margin: 0 18% 20px;
    width: 64%;
    max-height: 400px;
}

.step {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #3cb148;
    position: relative;
    margin: 24px auto 12px;
}

.step p {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -26%);
    font-weight: 700;
    font-size: 30px;
}

.step::before {
    content: "STEP";
    color: white;
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 18px;

}


.big {
    font-size: clamp(1.8rem, calc(0.1rem + 2vw), 3.4rem);
    text-align: center;
    color: #3cb048;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 1.6em;
}

.big2 {
    font-size: clamp(1.4rem, calc(0.7rem + 1.75vw), 2.8rem);
    text-align: center;
    color: #3cb048;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 0.6em;
}

.to-recruitpagebtn {
    margin: 3em auto 0;
    text-align: center;
}

.to-recruitpagebtn a {
    box-shadow: #707070 4px 3px 3px;
    font-size: clamp(2rem, calc(1.6rem + 1vw), 2.8rem);
    font-weight: 600;
    text-align: center;
    line-height: 1;
    display: inline-block;
    color: #fff;
    padding: 0.6em 2.4em;
    border-radius: 9999px;
    text-decoration: none;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #94cf9a 0%, #94cf9a 25%, #3cb048 51%, #3cb048 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
}

.to-recruitpagebtn a:hover {
    color: #fff;
    background-position: 99% 50%;
}


footer {
    padding: 2%;
}

footer p {
    text-align: center;
    font-size: clamp(1.15rem, calc(9px + 0.5vw), 1.4rem);

}

footer .small {
    font-size: clamp(1rem, calc(8.5px + 0.5vw), 1.3rem);
}

@media screen and (min-width: 770px) {
    .pc-none {
        display: none;
    }
}


.topimage {
    position: relative;
    margin-top: -60px;
    overflow: hidden;
}

.topimage img {
    width: 100vw;
    height: 62vh;
    object-fit: cover;
}

.topcaption {
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.topcaption span {
    font-size: clamp(4.4rem, calc(2.0rem + 6vw), 9.2rem);
    color: white;
}

@media screen and (max-width: 770px) {
    .video2 {
        height: 30vh;
    }

    .step {
        width: 50px;
        height: 50px;
    }

    .step p {
        transform: translate(-50%, -23%);
        font-size: 20px;
    }

    .step::before {
        top: 13%;
        font-size: 13px;
    }

    .saiyouinner {
        width: 90%;
    }

    .saiyouinner li {
        width: 33%;
    }


    .saiyouinner img {
        margin: 0 5% 10px;
        width: 90%;
        max-height: 400px;
    }

    .to-recruitpagebtn {
        margin: 2em auto 0;
    }

    .to-recruitpagebtn a {
        font-size: 20px;
        line-height: 0.8;
        padding: 0.7em 2.2em 0.5em;
    }

    .topimage img {
        height: 38vh;
    }


}

.section_flow {
    width: 80vw;
    margin: 2% auto;
}

.section_service {
    background-color: #05abc4;
}

.section_service_inner {
    margin: 0 auto;
    padding: 2% 0;
    width: 86vw;
}

.tab2 {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 6% auto 0;
}


.tab2 li {
    width: 18%;
    min-width: 18em;
}

.tab2 li a {
    display: block;
    margin: 0 4%;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.8rem;
    background-color: rgb(255, 255, 255, 0.7);
    white-space: nowrap;
    color: #707070;
    font-weight: 600;

    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 3px #05abc4;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/*liにactiveクラスがついた時の形状*/
.tab2 li.active a {
    background: #fff;
    font-weight: 700;

    border-bottom: solid 1.6px #fff;
    color: #555555;
    border-top: solid 3px #05abc4;
    border-left: solid 3px #05abc4;
    border-right: solid 3px #05abc4;
    border-bottom: none;
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 1s;
    animation-fill-mode: forwards;

}

@media screen and (max-width: 770px) {

    .section_flow {
        width: 90vw;
    }


    .section_service_inner {
        width: 90vw;
    }


    .tab2 {
        width: 100%;
        margin: 6% auto 0;
    }


    .tab2 li {
        width: 18%;
        min-width: 18em;
    }

    .tab2 li a {
        display: block;
        margin: 0 4%;
        padding: 10px 20px;
        text-align: center;
        font-size: 1.8rem;
        background-color: rgb(255, 255, 255, 0.7);
        white-space: nowrap;
        color: #707070;
        font-weight: 600;

        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: solid 3px #05abc4;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    /*liにactiveクラスがついた時の形状*/
    .tab2 li.active a {
        background: #fff;
        font-weight: 700;

        border-bottom: solid 1.6px #fff;
        color: #555555;
        border-top: solid 3px #05abc4;
        border-left: solid 3px #05abc4;
        border-right: solid 3px #05abc4;
        border-bottom: none;
        animation-name: displayAnime;
        /*ふわっと表示させるためのアニメーション*/
        animation-duration: 1s;
        animation-fill-mode: forwards;

    }


}

.table1 {
    width: 86%;
    margin: 4% auto;
    border-collapse: separate;
    border-spacing: 8px 24px;

}


.table1 td,
.table1 th {
    padding: 10px 20px;
    font-size: clamp(14px, calc(11px + 0.75vw), 22px);
    vertical-align: middle;
    height: 70px;
}

.table1 td {
    color: white;
    background: #3cb048;
    border-radius: 100%;
    text-align: center;
    white-space: nowrap;
    padding: 10px 30px;

}

.table1 th {
    padding: 10px 14px;
}

.section_kasan {
    width: 80vw;
    margin: 2% auto;
}

.section_kasan div {
    margin: 3%;

}

.section_kasan p {
    margin-bottom: 1.5%;
}

.featurewrap {
    width: 94%;
    margin: 50px auto 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.feature-midashi {
    position: relative;
    margin-right: 350px;
    width: 30%;

}

.feature-midashi img {
    width: 300px;
    max-width: 100%;
    height: 160px;
    border-radius: 14px;
    object-fit: cover;
    object-position: 100% 100%;
    z-index: -1;
    position: absolute;
    top: 20px;
    right: -92%;
}

h4 {
    font-size: clamp(1.4rem, calc(1rem + 1vw), 2.2rem);
    background: #7fc303;
    color: white;
    border-radius: 14px;
    width: 100%;
    padding: 0.4em 0;
    text-align: center;

}

h5 {
    font-size: clamp(1.6rem, calc(1.1rem + 1.25vw), 2.6rem);
    text-align: center;
    margin-top: 20px;
}

h6 {
    color: #3cb048;
    font-size: clamp(16px, calc(12px + 1.5vw), 30px);
    font-weight: 600;
    margin: 0.6em 0 0.4em;
}



.feature-p {
    width: 50%;
    margin-top: 8px;
}

.morefeature {
    width: 94%;
    margin: 50px auto 60px;
}

.morefeature ul {
    list-style: disc;
}

.morefeature div {
    padding-left: 4em;
    margin: 20px 0 30px;
}


.table2 {
    width: 90%;
    margin: 16px auto 40px;

}

.table2 th,
.table2 td {
    display: block;
    font-size: clamp(1.4rem, calc(0.8rem + 1.33vw), 2rem);
    text-align: center;

}

.table2 th {
    font-weight: bold;
    color: #737373;

}

.table2 td {
    padding: 1em 0 2em;
}

.table2-access {
    display: flex;
    justify-content: center;
    gap: 2%;
}

@media screen and (max-width: 770px) {

    .table1 {
        width: 100%;
    }


    .featurewrap {
        width: 98%;
        flex-direction: column;
        justify-content: space-between;
    }

    .feature-midashi {
        margin-right: 0px;
        width: 50%;
        margin-bottom: 80px;
    }


    .feature-p {
        width: 96%;
        margin: 8px auto;
    }

    .morefeature {
        width: 98%;
    }

    .table2-access {
        display: block;
    }

    .table2-access div{
        text-align: center;
    }

}


.personinfo {
    width: 90%;
    position: relative;
    margin: 6% auto 2%;
}

.personinfo h6 {
    font-size: clamp(1.4rem, calc(0.9rem + 2.25vw), 4.6rem);
    margin: 0;
    white-space: nowrap;

}



.personinfo img {
    width: 56%;
    margin-right: 6%;
    margin-top: 0%;
    object-fit: cover;
}

.namebox {
    background-color: #7fc303;
    width: 50%;
    padding: 2% 4%;
    position: absolute;
    left: 48%;
    top: 53%;
}

.namebox p {
    color: #fff;
}

.personname {
    font-size: clamp(1.8rem, calc(1.2rem + 1.5vw), 3.0rem);

}

.scheduleimg {
    width: 40%;
}

.scheduleimg img {
    width: 100%;
    margin: 4% auto 6%;

}

.personcomment {
    width: 90%;
    margin: 4% auto;
}

.personcomment img {
    float: right;
    width: 46%;
    margin: 1% -12% 6% 4%;
}

.width100 {
    overflow: hidden;

}

.personwrap h3 {
    clear: both;
}


@media screen and (max-width: 770px) {
    .personwrap h3 {
        margin: 3em auto 1em;
    }

    .personinfo {
        width: 100%;
    }

    .personinfo img {
        width: 44%;
        height: 180px;
        margin-right: 3%;

    }


    .scheduleimg {
        width: 80%;
        margin: 0px auto 100px;
    }

    .namebox {
        width: 62%;
        position: absolute;
        left: 40%;
    }

    .namebox p {
        line-height: 1.3;
    }


}

.fuwa {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ぼかしから出現 */
.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.blurTrigger {
    opacity: 0;
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: whitesmoke;
    text-align: center;
    color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 200px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 770px) {
    #splash_logo img {
        width: 100px;
    }

}