@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2? family= Noto+Serif+JP & family= Unica+One & display=swap');
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700;900&display=swap");

body {
    font-size: 120%;
    line-height: 1em;
    color: #2e2e2e;
    font-family: 'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN',YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Avenir','Arial','Arial Narrow',sans-serif;    letter-spacing: 0.2rem;
    background: #fff;
}
p {margin: 0;padding: 0;line-height: 2.5em;}
a {text-decoration: none;font: #252525;}
img {width: 100%;}

article,section {
    width: 100%;
    overflow: hidden;
}
article + article,section + section {
    padding: 80px 0;
}
.wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
h2 {
    position: relative;
    margin: 0 0 50px;
    font-size: 36px;
    font-weight: 600;
    line-height: 3.5rem;
    color: var(--main_color);
}
h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: bold;
    color: #80BF5F;
}
p {letter-spacing: 0.05rem;}
p + p {margin-bottom: 30px;}

:root {
	--main_color: rgb(40, 137, 80);
}
/* メニューのスタイル */
.menu {
    position: fixed;
    top: 0;
    right: -110%; /* 初期状態では画面の外に隠れている */
    width: 400px;
    height: 100%;
    background-color: rgb(40, 137, 80, 0.85);
    color: #fff;
    transition: right 0.5s ease-out;
    padding: 40px;
    box-sizing: border-box;
    z-index: 10;
}
header {
    width: 100%;
    height: 70px;
}
header .logo {
    width: 200px;
    margin: 10px 10px 5px;
    float: left;
}
header .contact {
    width: 430px;
    display: flex;
    float: right;
    margin: 15px 40px 0 20px;
}
header .contact .form a {
    width: 150px;
    display: block;
    background: #51B892;
    padding: 10px 0;
    text-align: center;
    line-height: 1em;
    color: #fff;
    border-radius: 30px;
    transition: all 0.5s ease;
}
header .contact .form a:hover {
    background: var(--main_color);
    transition: all 0.5s ease;
}
header .contact .tel {
    width: 300px;
    display: inline-block;
    margin: 5px 0px 5px 5px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.15rem;
    line-height: 2rem;
    color: var(--main_color);
}
header .contact .tel::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/icon_tel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: -5px 10px 0 0;
}
.menu.open {
    right: 0;
}
  /* ボタンのスタイル */
.hamburger {
    position: fixed;
    top: 15px;
    right: 40px;
    width: 50px;
    cursor: pointer;
    z-index: 20;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 8px 0;
    transition: 0.4s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #fff;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
    background-color: #fff;
}
  /* メニューリストのスタイル */
.menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 80px;
    text-align: center;
}
.menu li {
    padding: 20px 0;
    border-bottom: 1px solid #fff;
}
.menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.menu li a:hover {
    color: #ddd;
}

.main {
    width: 100%;
    height: 800px;
    position: relative;
    background-image: url(../images/bg_main.jpg);
    object-fit: contain;
}
.top_service {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
.top_service li {
    width: 225px;
    margin: 20px 50px 40px;
}

footer {
    width: 100%;
    background: #E7F4EA;
}
footer .box_logo {
    width: 250px;
    float: left;
    margin: 50px 10px 30px;
}
footer .box_logo img {
    width: 150px;
    display: block;
    margin: 0 auto 20px;
}
footer .box_logo p {
    text-align: center;
    font-size: 16px;
}
footer .box_contact {
    width: 750px;
    display: flex;
    float: left;
    flex-direction: row;
    justify-content: space-between;
    margin: 80px 20px 30px;
}
footer .box_contact .box_tel,
footer .box_contact .box_form {
    width: 300px;
    margin: 15px auto;
    text-align: center;
}
footer .box_contact .box_tel h3,
footer .box_contact .box_form h3 {
    font-size: 90%;
    color: var(--main_color);
}
footer .box_contact .box_tel .tel {
    display: inline-block;
    font-size: 28px;
}
footer .box_contact .box_tel .tel::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/icon_tel_footer.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: -6px 15px 0 0;
}
footer .box_contact .box_tel span {
    display: block;
    font-size: 82.5%;
}
footer .box_contact .box_form .btn_form a {
    width: 100%;
    display: block;
    margin: 30px auto;
    background: #fff;
    font-size: 82.5%;
    color: var(--main_color);
    font-weight: 600;
}
footer .box_page {
    width: 150px;
    margin: 90px 0 30px 70px;
    float: left;
}
footer .box_page li {
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
}
footer .box_page li::before {
    content: '- ';
    display: inline-block;
    vertical-align: middle;
    margin: -5px 10px 0 0;
}
footer .copy {
    clear: both;
    margin: 10px auto 5px;
    font-size: 15px;
    text-align: center;
}

.page_ttl {
    width: 100%;
    margin: 0 0 80px;
    padding: 50px 0 50px 50px;
    background: #effaed;
}
.page_ttl h2 {
    margin: 0;
    font-size: 21px;
    line-height: 1em;
}
.page_ttl h2::after {
    display: inline-block;
    content: "";
    width: 200px;
    height: 1px;
    margin: 0 0 0 20px;
    background: var(--main_color);
}
.service_item {
    width: 100%;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service_item li {
    width: 22%;
    margin: 0 auto 40px;
}
.service_item li:nth-child(2n) {
    margin: 20px auto 20px;
}
.service_item li:nth-child(1) img {width: 305px;}
.service_item li:nth-child(2) img {width: 278px;}
.service_item li:nth-child(3) img {width: 305px;}
.service_item li:nth-child(4) img {width: 280px;}
.service_item li:nth-child(5) img {width: 356px;}
.service_item li:nth-child(6) img {width: 233px;}
.service_item li:nth-child(7) img {width: 254px;}
.service_item li:nth-child(8) img {width: 348px;}
.service {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 30px auto;
    background: #EEFAEC;
    border-radius: 10px;
}
.service li {
    width: 45%;
    margin: 30px 2.5%;
    font-size: 82.5%;
}
.service li h3 {
    padding: 10px 20px;
    color: #fff;
    background: var(--main_color);
    border-radius: 20px;
}
.service li p {
    padding: 10px;
    line-height: 2em;
}
.service .service_specific {
    width: 60%;
    position: relative;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.service .service_specific img {
    position: absolute;
    top: 50px;
    left: -50px;
    width: 250px;
}
.service .service_specific h3 {
    display: block;
    width: 30%;
    margin-top: 20px;
    float: left;
    color: var(--main_color);
}
.service .service_specific .example {
    width: 70%;
}
.service .service_specific .example li {
    width: 100%;
    line-height: 1.8em;
    list-style: url(../images/icon_circle.svg);
}
.professional {
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 2em;
    background: var(--main_color);
}
.price {
    width: 60%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
}
.price dt {
    width: 50%;
    margin: 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}
.price dd {
    width: 50%;
    margin: 10px 0;
    padding-bottom: 5px;
    text-align: right;
    border-bottom: 1px solid #ccc;
}

.career {
    width: 70%;
    margin: 10px auto;
}
.career dt {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 1em;
    line-height: 1.5em;
}
.career dd {
    width: 100%;
    margin-bottom: 35px;
    padding: 1em 1em 1.5em 2em;
    line-height: 1.5em;
    border-bottom: 1px solid #999;
}
.company {
    width: 60%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.company dt {
    width: 30%;
    margin: 15px 0;
    padding: 0 45px 20px;
    text-align-last: justify;
    border-bottom: 1px solid var(--main_color);
}
.company dd {
    width: 70%;
    margin: 15px 0;
    padding: 0 5px 20px 15px;
    border-bottom: 1px solid #ccc;
}

.partner {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:center
}
.partner li {
    width: 25%;
    margin: 0 20px 30px;
    border: 1px solid #555;
    transition: all 0.5s ease;
}
.partner li:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}
.textbox40 {
    width: 40%;
    float: left;
    padding: 30px;
}
.textbox60 {
    width: 60%;
    float: left;
    padding: 30px;
}
.imgbox40 {
    width: calc(40% - 30px);
    margin: 0 15px;
    float: left;
}

.imgbox40 img {
    width: 100%;
    padding: 30px;
}
.text_2col {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
}
.text_2col li {
    width: 40%;
    margin: 10px 5%;
    font-size: 82.5%;
}
.btn_arrow a {
    width: 350px;
    position: relative;
    display: block;
    margin: 30px auto;
    padding: 15px 0;
    border: 1px solid var(--main_color);
    border-radius: 50px;
    text-align: center;
    color: var(--main_color);
    transition: all 0.5s ease-in;
}
.btn_arrow a::after {
    position: absolute;
    display: inline-block;
    content: "";
    right: 30px;
    top: 50%;
    width: 28px;
    height: 28px;
    transform: translate(0, -50%);
    background-image: url(../images/icon_arrow.svg);
}
.btn_arrow a:hover {
    color: #fff;
    background: #51B892;
    transition: all 0.5s ease-in;
}