@charset "utf-8";
/* 
* {
    outline: 1px solid magenta;
}

/* base style */

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #202122;
    margin: 0;
    padding: 0;
    width: 100%;
}

a {
    text-decoration: none;
    color: #202122;
}

section {
    padding: 70px 0;
    width: 100%;
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 3em;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.title-left {
    position: absolute;
    font-family: 'myfonts', 'Bebas Neue', sans-serif;
    font-size: 10em;
    color: #fff;
    opacity: 0.2;
    margin: 0;
    padding: 0;
    transform: rotate(90deg);
    top: 5%;
    left: -30%;
}

.title-rgiht {
    position: absolute;
    font-family: 'myfonts', 'Bebas Neue', sans-serif;
    font-size: 10em;
    color: #00826b;
    opacity: 0.2;
    margin: 0;
    padding: 0;
    transform: rotate(90deg);
    top: 20%;
    right: -40%;
}

.title-rgiht2 {
    position: absolute;
    font-family: 'myfonts', 'Bebas Neue', sans-serif;
    font-size: 10em;
    color: #00826b;
    opacity: 0.2;
    margin: 0;
    padding: 0;
    transform: rotate(90deg);
    top: 1%;
    right: -20%;
}

_:lang(x)+_:-webkit-full-screen-document,
.sp {
    display: block !important;
}

.sp {
    display: block !important;
}

_:lang(x)+_:-webkit-full-screen-document,
.pc {

    display: none !important;
}

.pc {

    display: none !important;
}

.br-pc {
    display: none !important;
}

/* font */
@font-face {
    font-family: 'myfonts';
    src: url(../fonts/BebasNeue-Regular.ttf) format('truetype');
}

/* header */

header {
    position: fixed;
    background-color: #fff;
    min-height: 10vh;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.header-logo img {
    width: 100%;
    max-width: 100px;
}

/* nav */

nav ul.header-nav {
    list-style: none;
    font-size: 1.1em;
    font-weight: 900;
    display: flex;
    gap: 20px;
}

nav ul li.contact-btn {
    border: solid 3px;
    border-color: #00826b;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 5px 20px;
}

nav ul li.contact-btn a {
    font-size: 0.8em;
}

.burger {
    position: relative;
    cursor: pointer;
    width: 35px;
    height: 50px;
}

.burger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    z-index: 999;
    height: 4px;
    border-radius: 2px;
    background-color: #00826b;
    width: 100%;
}

.burger span:nth-of-type(1) {
    top: 15px;
}

.burger span:nth-of-type(2) {
    top: 25px;
}

.burger span:nth-of-type(3) {
    top: 35px;
}

.burger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
    width: 90%;
    background-color: #fff;
}

.burger.active span:nth-of-type(2) {
    opacity: 0;
}

.burger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
    width: 90%;
    background-color: #fff;
}

.g-nav {
    position: fixed;
    z-index: 998;
    top: 0;
    right: -120%;
    width: 60%;
    height: 100vh;
    background: #00826b;
    transition: all 0.6s;
    box-shadow: -3px 0 4px rgba(0, 0, 0, 0.05);
}

.g-nav.panelactive {
    right: 0;
}

ul.g-nav {
    position: absolute;
    z-index: 998;
    padding-top: 10vh;
}

ul.g-nav li {
    list-style: none;
    text-align: center;
}

ul.g-nav li a {
    font-size: 1.2em;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: left;
}

/* HERO */
section#HERO {
    padding: 0;
}

#HERO .hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#HERO .slide-item {
    bottom: 0;
    height: 100%;
    position: absolute;
    right: -10%;
    width: 110%;
}

#HERO .slide-img {
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-name: slideAnime;
    animation-timing-function: ease;
    display: block;
    min-height: 100vh;
    object-fit: cover;
    opacity: 0;
    width: 100%
}

#HERO .slide-item:nth-of-type(1) .slide-img {
    animation-delay: 0s;
}

#HERO .slide-item:nth-of-type(2) .slide-img {
    animation-delay: 5s;
}

#HERO .slide-item:nth-of-type(3) .slide-img {
    animation-delay: 10s;
}

@keyframes slideAnime {
    0% {
        opacity: 0;
    }

    16% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    49% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: translateX(-10%);
    }
}

#HERO h2 {
    position: absolute;
    top: 80%;
    left: 20px;
    font-weight: 900;
    font-size: 1.3em;
    letter-spacing: 0.2rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

#HERO h2 span {
    font-size: 2em;
}

#HERO h3 {
    position: absolute;
    top: 13%;
    left: 90%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 1.5em;
    font-weight: 900;
    letter-spacing: 0.3rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

/* ABOUT */
#ABOUT picture {
    width: 100%;
    display: flex;
    justify-content: center;
}

#ABOUT picture img {
    width: 80%;
}


#ABOUT picture.cmp img {
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

#ABOUT .about-main {
    margin-top: 70px;
}

#ABOUT h3 {
    color: #202122;
    font-weight: 900;
    font-size: 1.7em;
    text-align: center;
    letter-spacing: 0.1em;
}

#ABOUT h3 span {
    color: #00826b;
}

#ABOUT .about-box {
    margin-top: 35px;
    background-image: url(../images/obj01.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right 10%;
}

#ABOUT .about-box p {
    line-height: 1.7em;
    font-weight: 500;
    padding-left: 5%;
}

#ABOUT .about-catch {
    margin: 0 auto;
    margin-top: 70px;
    width: 90%;
}


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

/* SERVICE */
#SERVICE {
    background-color: #00826b;
    overflow: hidden;
    padding-bottom: 140px;
}

#SERVICE .service-main {
    margin: 0 auto;
    position: relative;
}

#SERVICE h2 {
    color: #fcee21;
    font-size: 2.5em;
    letter-spacing: 0.2em;
    text-align: center;
}

#SERVICE h3 {
    font-size: 1.5em;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 20px 20px 0 20px;
}

#SERVICE .service-main p {
    font-weight: 600;
    line-height: 1.7em;
    color: #fff;
    text-align: center;
    margin: 20px 0 70px 0;
}

#SERVICE picture img {
    width: 80%;
    display: block;
    margin: 0 auto;
}

#SERVICE p.attention {
    margin-top: 20px;
    text-align: center;
}

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

/* CAMPAIGN */
#CAMPAIGN {
    position: relative;
}

#CAMPAIGN .campaign picture img {
    width: 80%;
    position: absolute;
    z-index: 99;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

/* INTERVIEW */
#INTERVIEW {
    padding-top: 0;
    overflow: hidden;
}

#INTERVIEW .interview-main {
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-top: 70px;
}

#INTERVIEW .interview-main p {
    font-size: 1.3em;
    font-weight: 900;
    letter-spacing: 0.1em;
}

#INTERVIEW .interview-main h2 {
    font-size: 2em;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #202122;
}

#INTERVIEW .interview-main h2 span {
    color: #00826b;
}

#INTERVIEW picture img {
    margin: 35px 20px 25px 20px;
}

/* MISSTION */
#MISSTION {
    background-color: #00826b;
    padding-bottom: 35px;
}

#MISSTION .misstion-main {
    position: relative;
    margin: 0 auto;
}

#MISSTION h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

#MISSTION h2 span {
    color: #fcee21;
}

#MISSTION p {
    color: #fff;
    font-weight: 600;
    line-height: 1.8em;
}

#MISSTION .misstion-left {
    margin: 0 20px 70px 20px;
}

#MISSTION .misstion-right {
    margin: 0 20px 70px 20px;
}

/* FLOW */
#FLOW {
    overflow: hidden;
}

#FLOW .flow-main {
    position: relative;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

#FLOW .flow-main h2 {
    color: #202122;
    font-size: 2em;
    margin-bottom: 35px;
}

#FLOW .folw-box {
    font-weight: bold;
    width: 90%;
    border: solid 3px;
    border-color: #00826b;
    border-radius: 128px;
    padding: 20px 25px 20px;
    margin: 0 auto;
    margin-bottom: 35px;
    position: relative;
}

#FLOW .folw-ttl {
    width: 100%;
    color: #00826b;
    font-size: 1.2em;
}

#FLOW .flow-text {
    width: 100%;
    margin-top: 10px;
}

#FLOW .flow-text a {
    color: #00826b;
}

#FLOW .folw-box::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 3px #00826b;
    border-right: solid 3px #00826b;
    position: absolute;
    left: 50%;
    top: 110%;
    transform: rotate(135deg);
}

#FLOW .sab-catch p {
    color: #00826b;
    font-size: 1.2em;
    font-weight: 900;
}

/* CONTACT */
#CONTACT {
    padding-top: 0;
    padding-bottom: 0;
}

#CONTACT .contact-main {
    width: 90%;
    border-radius: 30px;
    background-color: #00826b;
    margin: 0 auto;
}

#CONTACT .contact-main h2 {
    font-size: 2.5em;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 50px 0 25px 0;
}

#CONTACT .form {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin: 0 30px;
    padding-bottom: 50px;
}

#CONTACT .form-item {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
}

#CONTACT .form-item-label {
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
}

#CONTACT .form-item span {
    width: 38px;
    color: #fcee21;
    font-size: 0.8em;
    font-weight: 900;
}

#CONTACT .form-item-radio {
    width: 100%;
    color: #fff;
    font-weight: 900;
    line-height: 2em;
    margin: 10px 0;
}

#CONTACT .form-item-input {
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    height: 38px;
    background: #fff;
    border-radius: 5px;
}

#CONTACT .form-item-input-other {
    border: none;
    outline: none;
    background-color: #fff;
    padding: 5px 10px;
    width: 100%;
    border-radius: 5px;
    font-weight: 400;
    padding-left: 1em;
    padding-right: 1em;
}

#CONTACT .form-radio {
    font-size: 18px;
}

#CONTACT .form-item-textarea {
    padding: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
}

#CONTACT .form-btn {
    display: block;
    margin: 0 auto;
    width: 200px;
    background: #fff;
    color: #00826b;
    font-weight: 900;
    font-size: 1.5em;
    border-radius: 150px;
    padding: 15px;
    letter-spacing: 0.1em;
    text-align: center;
}

/* footer */
.lp-sec-footer {
    background-color: #fff;
}

.lp-sec-footer>.lp-block {
    padding: 8px;
    text-align: center;
}

.lp-sec-footer>.lp-block .lp-copyright {
    font-size: 12px;
    font-weight: bold;
    color: #202122;
}