@charset "UTF-8";

:root {
    --main-color: #76B947;
    --dark-color: #2F5233;
    --light-color: #B1D8B7;
    --gradi-color: linear-gradient(335deg, rgba(148,201,115,1) 0%, rgba(47,82,51,1) 49%, rgba(118,185,71,1) 89%, rgba(118,185,71,1) 100%);
}
html {
    font-family: 'Arial',YuGothic,'Yu Gothic',sans-serif;
    scroll-behavior: smooth;
}
a:hover {
    opacity: 0.8;
}

/* ヘッダー↓ */
.header-wrapper {
    border-bottom: 2px solid var(--main-color);
}
.header-logo {
    max-width: 180px;
}
.header-logo img {
    width: 100%;
}
.header-logo a {
    display: block;
}
.header-contents {
    display: flex;
    align-items: center;
    justify-content:space-between;
}
.header-menu {
    margin-left: auto;
    padding-right: 5%;
}

.sp {
    display: none;
}
/* ヘッダー↑ */



/* メインビジュアル */
.mv-wrapper {
    width: 100%;
}
.mv-contents {
    width: 100%;
    background: url(../img/background-image01.jpg);
    height: 650px;
    background-size: cover;
    position: relative;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    z-index: -1;
}
.mv-contents.hidden {
    opacity: 0;
}
.img-box {
    width: 90%;
    max-width: 900px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.img-box img {
    width: 100%;
}

/* 見出し↓ */
h2 {
    z-index: 2;
    background: var(--gradi-color);
    color: #fff;
    font-weight: bold;
    display: inline-block;
    font-size: 26px;
    padding: 5px 30px;
    position: relative;
}
/* 見出し↑ */

/* メニュー↓ */
.header-wrapper {
    padding: 0 5%;
}
/* PC */
.menu-list {
    display: flex;
}
.menu-list li {
    padding-right: 30px;
    position: relative
}
.menu-list li::after {
    content: '';
    position: absolute;
    background-color: var(--light-color);
    width: 20px;
    height: 2px;
    right: 4%;
    top: 45%;
    transform: rotate(295deg) translateY(-50%);
}
.menu-list li:last-child::after {
    content: none;
}

/* TEL */
.tel {
    line-height: 1;
}
.header-tel {
    bottom: 8px;
    position: relative;
}
.header-tel p {
    font-size: 12px;
}
.tel-num {
    font-weight: bold;
    color: var(--main-color);
    font-size: 28px;
}
/* メニュー↑ */


/* フッター↓ */
footer {
    background-color: var(--dark-color);
    border-top: solid 2px var(--main-color);
}
.footer-menu {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-menu li {
    padding: 10px;
}
.copyright {
    text-align: center;
}
.copyright small {
    color: #fff;
    font-size: 13px;
}
/* フッター↑ */




/* メインコンテンツ↓ */
/* 強み */
.all_wrap {
    text-align: center;
    margin: 5% auto;
}
.all_wrap h2::before {
    font-size: 60px;
    color: var(--light-color);
    position: absolute;
    top: -50px;
    opacity: 0.5;
    z-index: -1;
    transform: translateX(-50%);
    left: 50%;
}
.about-wrapper h2::before {
    content: 'About';
}

.strength-item {
    z-index: 0;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    margin: 30px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.strength-item.pic-right {
    flex-direction: row-reverse;
}
.strength-pic {
    max-width: 700px;
    width: 60%;
    position: relative;
}
.strength-pic img {
    width: 100%;
}
.strength-text {
    z-index: 3;
    padding: 50px;
    background: rgba(201, 255, 163, 0.651) 100%;
    max-width: 540px;
    width: 40%;
    position: relative;
    top: 40px
}
.pic-left .strength-pic {
    left: 5%;
}
.pic-left .strength-text {
    right: 5%;
}
.pic-right .strength-pic {
    right: 5%;
}
.pic-right .strength-text {
    left: 5%;
}
.strength-text span {
    font-style: italic;
    letter-spacing: 1.5;
    color: var(--main-color);
    border-bottom: solid 2px #fff;
    display: block;
    font-size: 26px;
}
.strength-text h3 {
    font-weight: bold;
    font-size: 20px;
    color: var(--dark-color);
}
.strength-text p {
    text-align: left;
    padding-top: 20px;
    font-size: 15px;
}

/* 会社概要 */
.company-wrapper h2::before {
    content: 'Company';
}

.company-contents {
    max-width: 800px;
    margin: 20px auto;
}
.company-item {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.company-item dt {
    font-weight: bold;
    border-bottom: 1px solid var(--main-color);
    width: 24%;
}
.company-item dt, .company-item dd {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 3%;
}
.company-item dd {
    border-bottom: solid 1px var(--light-color);
    width: 64%;
}

/* アクセス */
.access-wrapper h2::before {
    content: 'Access';
}
.access-text {
    margin: 10px 0;
    font-size: 18px;
}
.map iframe {
    width: 100%;
    min-height: 240px;
}

/* メインコンテンツ↑ */


/* フォーム↓ */
.contact-wrapper h2::before {
    content: 'Contact';
}
form {
    max-width: 700px;
    margin: 0 auto;
}
.form-inner {
    text-align: left;
    padding: 20px;
}
.form-inner dl {
    margin-bottom: 48px;
}
.form-inner dl:last-child {
    margin-bottom: 20px;
}
.form-inner dt {
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 5px;
    margin-left: 20px;
}
.form-inner dd {
    text-align: center;
    margin-bottom: -26px;
}
.form-inner dd input {
    background-color: #f3fff5;
    border: solid 2px var(--main-color);
    border-radius: 30px;
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
}
.form-inner dd textarea {
    background-color: #f3fff5;
    border: solid 2px var(--main-color);
    border-radius: 30px;
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
}
.form-inner dd p {
    background-color: #ff824f;
    font-weight: bold;
    text-align: center;
    padding: 6px 20px;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    line-height: 1;
}
.send {
    cursor: initial;
    background-color: #e0e0e0;
    padding: 5px 10px;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.send.active, .back {
    background-color: var(--main-color);
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* サンクス */
.back {
    display: inline-block;
    margin-top: 20px;
}
.thanks-wrapper, .privacy-wrapper {
    text-align: center;
    padding: 4% 0;
}
/* フォーム↑ */

/* 個人情報保護方針↓ */
.privacy-contents {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
}
/* 個人情報保護方針↑ */

@media (max-width: 959px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }

    .all_wrap {
        margin: 14% auto;
    }

        /* ヘッダー */
    .header-logo img {
        width: 130px;
    }
    .header-wrapper {
        padding: 0;
        position: fixed;
        background-color: #fff;
        display: block;
        width: 100%;
        z-index: 1000;
    }
    h1 {
        font-size: 11px;
    }
    .sp-menu {
        position: relative;
    }
    .hamburger {
        display: block;
        position: relative;
        background-color: transparent;
        z-index: 1000;
        color: var(--dark-color);
    }
    .hamburger p {
        position: relative;
    }
    .hamburger p::before {
        content: 'Menu';
        text-align: center;
        position: relative;
        top: 10px;
    }
    .hamburger.active p::before {
        content: 'Close';
    }
    .hamburger__line {
        display: block;
        height: 2px;
        position: absolute;
        width: 24px;
        background-color: var(--dark-color);
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
    }
    .hamburger__line::after, .hamburger__line::before {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        background-color: var(--dark-color);
        position: absolute;
        transition: inherit;
    }
    .hamburger__line::after {
        top: -6px;
    }
    .hamburger__line::before {
        top: 6px;
    }
    .hamburger.active .hamburger__line {
        background-color: transparent;
    }
    .hamburger.active .hamburger__line::before {
        top: 0;
        transform: rotate(45deg);
    }
    .hamburger.active .hamburger__line::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .navi-wrapper {
        position: fixed;
        top: 0;
        z-index: 100;
        height: 100vh;
        width: 300px;
        background-color: #fff;
        transition: ease 0.4s;
        margin-top: 60px;
        right: -100%;
    }
    .navi-wrapper.active {
        right: 0;
    }
    .navigation {
        padding: 20px 10px;
    }
    .global-navi li {
        padding: 10px 0;
        border-bottom: 2px solid #d8f1dc;
        font-weight: bold;
    }
    .global-navi li a {
        display: block;
        color: var(--dark-color);
    }

    .thanks-wrapper, .privacy-wrapper {
        padding-top: 6em;
    }

    .access-text {
        font-size: 14px;
    }

    .privacy-contents {
        margin: 20px 3%;
    }
}


@media (max-width: 768px) {

    .img-box {
        top: 25em;
    }
    /* 会社概要 */
    .company-contents {
        margin: 20px 3%;
    }
    .company-item dt, .company-item dd {
        font-size: 13px;
        line-height: 1.3;
    } 
    .company-item dt {
        width: 28%;
        padding: 2% 0 2% 2%;
    }
    .company-item dd {
        width: 68%;
        padding: 2% 2% 2% 0;
    }

    /* 強み */
    .strength-item {
        display: block;
        margin: 30px 0 -30px 0;
    }
    .strength-pic {
        width: 90%;
        margin: 0 auto;
    }
    .strength-text {
        margin: 0 auto;
        width: 80%;
        padding: 5%;
        top: -40px;
    }
    .strength-text h3 {
        font-size: 18px;
    }
    .strength-text p {
        font-size: 13px;
    }
    .pic-left .strength-pic {
        left: -3%;
    }
    .pic-left .strength-text {
        right: -3%;
    }
    .pic-right .strength-pic {
        right: -3%;
    }
    .pic-right .strength-text {
        left: -3%;
    }
}