@charset "UTF-8";

.edc_container {
    width: 100%;
    background-image: url(../img/all_bg.jpg);
    background-size: 100%;
    background-repeat: repeat;
    padding-top: 20px;
}

.g-nav {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.g-nav nav {
    min-width: 465px;
    width: 40%;
    /* backdrop-filter: blur(8px); */
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0 30px;
    border-radius: 20px;
}

.g-nav nav ul {
    display: flex;
    justify-content: space-around;
    height: 40px;
    align-items: center;
}

.g-nav nav li {
    width: 30%;

}

.g-nav nav li:last-child a {
    background: #008842;
    color: #fff;
    padding: 3% 10%;
    border-radius: 20px;
    font-size: 15px;

}
.g-nav nav li a{
    transition: all .3s;

}
.g-nav nav li a:hover{
    opacity: 0.7;
}

h1 {
    max-width: 250px;
    width: 20%;
}

@media screen and (max-width: 768px) {
    .edc_container {
        background-size: 250%;
    }

    .g-nav {
        display: block;
    }

    .g-nav nav ul {
        display: none;
    }

    h1 {
        width: 35%;
        text-align: left;
    }
}

.mv {
    max-width: 1000px;
    width: 100%;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;

}

.mv-left {
    width: 50%;
}

.mv-left p {
    font-size: 22px;
    line-height: 1.8;
    font-weight: bold;
}

.mv-left ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-top: 3%;
}

.mv-left li {
    width: 25%;
}

.mv-left li:last-child {
    width: 22%;
}

.mv-right {
    max-width: 450px;
    width: 45%;
}

.items {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 5%;
    display: flex;
    justify-content: space-around;
}

.items li {
    width: 30%;
    padding: 3% 3% 7% 3%;
    position: relative;
    border-radius: 15px;
    /* box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.1); */
    background-color: rgba(255, 255, 255, 0.8);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    border: 1px solid #f4f4f4;
}

.items li:first-child {
    background-image: url(../img/service_bg.png);

}

.items li:nth-child(2) {
    background-image: url(../img/campany_bg.png);

}

.items li:last-child {
    background-image: url(../img/inquiry_bg.png);

}

.items li p {
    font-size: 12px;
    line-height: 1.4;
}

.items li p.i-title {
    font-size: 20px;
    margin: 0 auto 5%;
    text-align: center;
}

.g-btn {
    margin-top: 15px;
    text-align: center;
    position: absolute;
    bottom: 32px;
    width: 80%;
}

.g-btn a {
    background: #008842;
    color: #fff;
    padding: 3% 20%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: .3s;
}

.g-btn a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 3px solid #008842;
    border-radius: 20px;
    box-sizing: border-box;
    z-index: -1;
    transform: scale(1.2);
    opacity: 0;
    transition: transform ease .3s, opacity .3s;
}

.g-btn a:hover {
    color: #008842;
    background: transparent;
}

.g-btn a:hover::before {
    transform: scale(1);
    opacity: 1;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-image: url(../img/footer-bg.jpg);
    background-size: 100%;
    background-position: top;
    position: relative;
}
footer >div{
    position: absolute;
    top: 37%;
    right: 8%;
}
footer >div a{
    font-size: 12px;
    color: #008842;
    transition: all .3s;
    font-weight: bold;
}
footer >div a:hover{
    opacity: 0.7;
}

@media screen and (max-width: 1150px) {
    .mv {
        width: 87%;
    }

    .mv-left p {
        font-size: 1.8vw;

    }

    .items {
        width: 90%;
    }

}

@media screen and (max-width: 1080px) {
    .items li {
        padding: 1.5% 3% 7% 3%;
    }

    .items li p {
        font-size: 1.2vw;
    }

    .g-btn a {
        font-size: 1.5vw;
    }

}

@media screen and (max-width: 768px) {
    .mv {
        display: block;
        margin: 10% auto 25%;
    }

    .mv-right {
        width: 80%;
        margin: 0 auto;
    }

    .mv-left {
        width: 95%;
        margin: 5% auto;
    }

    .mv-left p {
        font-size: 4.4vw;
        margin-bottom: 5%;
        letter-spacing: 0.01em;
        text-align: justify;
        line-height: 1.7;
    }

    .mv-left ul {
        justify-content: space-between;
        width: 95%;
        margin: auto;
    }

    .mv-left li {
        width: 27%;
    }

    .items {
        width: 90%;
        display: block;
    }

    .items li {
        width: 85%;
        min-height: 180px;
        margin: 0 auto 10%;
        padding: 3% 5% 0;

    }

    .g-btn {
        bottom: 15%;
        left: 10%;

    }

    .items li p {
        font-size: 3.5vw;
    }
    .items li:first-child,
    .items li:nth-child(2) {
        background-position: center;
        width: 95%;
    }
    .items li:last-child{
        padding-bottom: 16%;
        background-position: center;
        width: 95%;
    }
    .items li:last-child .g-btn{
        bottom: 6%;
    }

    .g-btn a{
        font-size: 3.8vw;
    }
    footer >div {
        top: 52%;
    right: 5%;
    }
    footer >div a{
        font-size: 2.7vw;
    }
}

/*  事業内容
---------------------------------*/
.service {
    max-width: 1000px;
    width: 90%;
    margin: 5% auto 0;
    padding-bottom: 5%;
}

.service h2 {
    color: #008842;
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 30px;
}

.service h3 {
    font-weight: normal;
    font-size: 20px;
    color: #008842;
}

.service h3 span {
    color: #BEBEBF;
    font-size: 30px;
}

.s-content {
    background-color: #fff;
    margin-top: 30px;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.1);
    min-height: 180px;
}

.s-content.one {
    background-image: url(../img/gr-bg.png);
    background-position: left -75px bottom -95px;
    background-size: 180px;
}

.s-content.two {
    background-image: url(../img/yw-bg.png);
    background-position: left -75px bottom -95px;
    background-size: 180px;
}

.s-details {
    display: flex;
    margin: 2% 2% 2% 5%;
    align-items: center;
    justify-content: space-between;
}

.s-details p {
    width: 45%;
}

.s-details ul {
    width: 52%;
    line-height: 1.5;
}

.s-details li {
    text-indent: -1em;
    padding-left: 1em;
}

@media screen and (max-width: 768px) {
    .service h2{
        font-size: 7vw;
    }
    .s-details {
        display: block;
        font-size: 3.5vw;
        margin: 5% 2% 2% 5%;
    }

    .s-details p {
        width: 100%;
        line-height: 1.4;
    }

    .s-details ul {
        width: 100%;
        margin-top: 3%;
    }

    .service h3 {
        font-size: 4.8vw;
    }

    .s-content.one,
    .s-content.two {
        background-size: 159px;
        background-position: right -75px bottom -95px;
        padding: 5% 4%;
    }
}

/*  会社概要
---------------------------------*/
.company {
    padding-top: 150px;
    margin: 20px 0;
    background-image: url(../img/company_build.png);
    background-size: 135px;
    background-position: top 3% right 15%;
}

.company h2 {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    font-weight: normal;
    font-size: 35px;
    color: #008842;
}

.co-wrap {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5% 0;
}

.co-wrap dl {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.co-wrap dl>div {
    display: flex;
    border-bottom: 1px solid #9b9b9b;
    line-height: 2;
    padding: 3% 0;
}

.co-wrap dl dt {
    width: 35%;
    color: #008842;

}
.co-wrap dl ul{
    display: flex;
    width: 300px;
}
.co-wrap dl li:first-child{
    width: 50%;
}
iframe{
    margin-top: 30px;
    /* min-width: 450px;
    width: 90%; */
}

@media screen and (max-width: 768px) {
    .company {
        padding-top: 0;
        background-size: 85px;
        background-position: top 3% right 7%;
    }

    .company h2 {
        font-size: 7vw;
    }

    .co-wrap dl>div {
        display: block;
    }

    iframe {
        width: 100%;
        height: 300px;
    }

    .co-wrap dl dd {
        font-size: 4vw;

    }
}
/* プライバシーポリシー
-----------------------------*/
.policy{
    margin: 5% 0;
    background-color: rgba(255, 255, 255, 0.8);

}
.policy h2{
    font-size: 18px;
    background-color: #e9e9e9;
    padding: 5px 5px 5px 25px;
    margin-bottom: 20px;
}
.policy-wrapper{
    max-width: 1000px;
    width: 90%;
    padding: 5% 0;
    margin: 0 auto;
    line-height: 1.8;

}
.text-top{
    margin: 5% 6%;
}
.content-wrap{
    width: 94%;
    margin: 0 auto;

}
.policy-wrapper p{
    font-size: 16px;
}
.policy-wrapper li{
    list-style-type: none;
    counter-increment: cnt 1;
    padding-left: 3em;
    text-indent: -2em;
}
.inner__text{
    padding: 0 20px 20px;

}
.inner__small-title{
    margin: 20px 0 5px;
    border-bottom: 1px solid #000;
    display: inline-block;

}

.policy-wrapper ol li::before {
    content: "(" counter(cnt) ") ";
}
@media screen and (max-width: 768px) {
    .policy h2{
        font-size: 4vw;
        padding: 5px 5px 5px 15px;
    }
    .policy-wrapper p{
    font-size: 3.5vw;
}
.text-top{
    margin: 5% 0;
}
.content-wrap{
    width: 100%;
}
.inner__text{
    padding: 0 0 20px;
}
.inner__text dl,
.inner__text dd{
    font-size: 3.5vw;

}
.inner__text .right{
    margin-top: 3%;

}
.inner__small-title{
    margin: 10px 0 5px;
}
.policy-wrapper li{
    padding-left: 8%;
    font-size: 3.5vw;
}
}

/* ハンバーガー
-----------------------------*/
/* overlay-styles.css */
/* overlay-styles.css */
.hamburger-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #008842;
    transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) {
    top: 14px;
}

.hamburger-overlay__line:nth-of-type(2) {
    top: 23px;
}

.hamburger-overlay__line:nth-of-type(3) {
    top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
    background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(20 139 48 / 95%);
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color .3s;
}

.nav-overlay__link:hover {
    color: #4a90e2;
}

/*　ハンバーガーjQuery
-----------------------------*/

.hamburger-menu {
  width: 50px;
  height: 50px;
  position: fixed;
  top:20px;
  right: 20px;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #008842;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: #242424;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 9999;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
  border-bottom: solid 1px #474747;
}
.navigation__list-item:first-child {
  border-top: solid 1px #474747;
}
.navigation__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #333;
  }
}