@charset "UTF-8";
/*
使用色
-------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: rgb(8, 19, 26);
  font-family: "Noto Serif JP", serif;
  font-size: 1.43rem;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main, article, section {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: 1;
}

a {
  color: #2d843c;
  text-decoration: none;
}

.dn {
  display: none;
}

.fade-in {
  transform: translateY(100px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
}

.fade-in.visible {
  transform: translateY(0);
  opacity: 1;
}

textarea {
  resize: vertical;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-optical-sizing: auto;
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 900;
  font-optical-sizing: auto;
}

/* ブレイクポイント
-------------------------------------------------- */
@media only screen and (max-width: 767px) {
  /*
  mobile 用レイアウト
  -------------------------------------------------- */
  .pc {
    display: none !important;
  }
  .tablet {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  header {
    position: relative;
  }
  header h1 {
    position: absolute;
    z-index: 997;
    top: 25px;
    left: 25px;
  }
  header h1 img {
    width: 100px;
  }
  header h1 .logo-min {
    width: 50px;
  }
  header nav {
    position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0, 1);
    background-color: rgba(20, 120, 38, 0.72);
  }
  header nav.open {
    right: 45px;
    width: calc(100% - 45px);
  }
  header nav ul {
    margin-top: calc(50vh - 195px);
    padding-left: calc((100% - 125px) / 2 - 23px);
  }
  header nav ul li {
    margin-top: 40px;
  }
  header nav ul li:first-child {
    margin-top: 0;
  }
  header nav ul li a {
    position: relative;
  }
  header nav ul li a::after {
    content: "";
    position: absolute;
    z-index: 999;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    background: #fff;
  }
  header nav ul li a:hover::after {
    transform: scale(1, 1);
  }
  header nav ul .menu-top img {
    width: 93px;
  }
  header nav ul .menu-introduction img {
    width: 202px;
  }
  header nav ul .menu-works img {
    width: 132px;
  }
  header nav ul .menu-about img {
    width: 151px;
  }
  header nav ul .menu-contact img {
    width: 176px;
  }
  header .nav-box {
    position: fixed;
    z-index: 1000;
    right: 0;
    width: 45px;
    height: 100%;
    background-color: rgba(20, 120, 38, 0.9);
  }
  header .nav-box .logo {
    position: fixed;
    top: calc(50% - 40px);
    right: 20px;
  }
  header .nav-box .logo img {
    width: 8px;
    height: 80px;
  }
  header .nav-box .nav-arrow {
    position: fixed;
    right: 13px;
    bottom: 25px;
    width: 20px;
    height: 11px;
    transition: transform 0.5s;
    cursor: pointer;
  }
  header .nav-box .nav-arrow.rotate {
    transform: rotate(180deg);
  }
  header .nav-box .hamburger {
    position: relative;
    width: 20px;
    height: 8px;
    margin-left: calc(50% - 10px);
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
  }
  header .nav-box .hamburger span, header .nav-box .hamburger span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    transition: all 0.5s;
    background-color: #fff;
  }
  header .nav-box .hamburger span {
    top: 0;
  }
  header .nav-box .hamburger span::after {
    bottom: -8px;
  }
  header .nav-box .hamburger.open span {
    top: 5px;
    transform: rotate(45deg);
  }
  header .nav-box .hamburger.open span::after {
    bottom: 0;
    transform: rotate(-90deg);
  }
  .container {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
  .slide-area {
    position: relative;
    height: 100vh;
    background-color: #000;
  }
  .slide-area .slide-list {
    display: none;
  }
  .slide-area .slide-list li {
    height: 100vh;
  }
  .slide-area .slide-list .img1 {
    height: 100vh;
    background-image: url("./../images/top/top_slide_01@2x.png?20240702");
    background-size: cover;
  }
  .slide-area .slide-list .img2 {
    height: 100vh;
    background-image: url("./../images/top/top_slide_02@2x.png");
    background-position: center;
    background-size: cover;
  }
  .slide-area .slide-list .img3 {
    height: 100vh;
    background-image: url("./../images/top/top_slide_03@2x.png");
    background-position: center;
    background-size: cover;
  }
  .slide-area .slide-list .img4 {
    height: 100vh;
    background-image: url("./../images/top/top_slide_04@2x.png");
    background-position: right -280px top 0;
    background-size: cover;
  }
  .slide-area h2 img {
    position: absolute;
    bottom: 60px;
    left: 5%;
    width: 145px;
  }
  .title-h2 {
    position: relative;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 22px;
    color: #2d843c;
    font-size: 1.8rem;
    letter-spacing: 4px;
    line-height: 100%;
  }
  .title-h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 1px;
    background-color: #2d843c;
  }
  .information {
    padding: 30px 0 50px;
    background-color: #ebe3dc;
  }
  .information h2 {
    line-height: 100%;
  }
  .information h2 img {
    width: 170px;
  }
  .information .box {
    margin-top: 25px;
  }
  .information .box p {
    position: relative;
  }
  .information .box p:last-child {
    padding-top: 50px;
  }
  .information .box p:last-child::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 40px;
    border-top: 1px solid #646464;
  }
  .introduction {
    margin-right: 40px;
    padding-top: 50px;
  }
  .introduction .title-h2 {
    width: 100%;
  }
  .introduction .box h3 {
    margin-top: 50px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 100%;
  }
  .introduction .box .left p {
    margin-top: 35px;
    letter-spacing: 0.5px;
    line-height: 240%;
  }
  .introduction .box .right img {
    display: block;
    width: 135px;
    margin: 30px auto 0;
  }
  .diagonal-line {
    display: none;
  }
  .services {
    padding-top: 70px;
  }
  .services .container {
    margin-top: 50px;
  }
  .services .service {
    margin-top: 50px;
    margin-right: 40px;
  }
  .services .service:first-child {
    margin-top: 0;
  }
  .services .service img {
    width: 100%;
  }
  .services .service span {
    display: block;
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 100%;
  }
  .services .service h3 {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 100%;
  }
  .services .service p {
    margin-top: 20px;
    text-align: justify;
  }
  .works {
    margin-top: 75px;
    padding: 45px 0;
    background-color: #ebe3dc;
  }
  .works .works-box {
    width: 90%;
    margin: 45px auto 0;
    padding-right: 40px;
  }
  .works .works-box .common-box {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 66.66666%;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .works .works-box .common-box p {
    margin-top: 15px;
    color: #2d843c;
    line-height: 180%;
  }
  .works .works-box .common-box p span {
    display: block;
  }
  .works .works-box .common-box .mobile-size {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .works .works-box .common-box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    width: 25px;
    height: 25px;
    background-image: url("./../images/common/arrow_green.svg");
    background-size: cover;
  }
  .works .works-box .works-01 {
    margin-top: 30px;
    background-image: url("./../images/top/works_01@2x.png?20240702");
  }
  .works .works-box .works-02 {
    margin-top: 30px;
    background-image: url("./../images/top/works_02@2x.png?20240702");
  }
  .works .works-box .works-03 {
    margin-top: 30px;
    background-image: url("./../images/top/works_03@2x.png?20240702");
  }
  .works .works-box .works-04 {
    margin-top: 30px;
    background-image: url("./../images/top/works_04@2x.png?20240702");
  }
  .works .works-box .works-05 {
    margin-top: 30px;
    background-image: url("./../images/top/works_05@2x.png?20240702");
  }
  .about {
    padding-top: 50px;
  }
  .about .prepresident {
    display: flex;
    flex-direction: column-reverse;
  }
  .about .prepresident .left {
    height: 240px;
    margin-top: 30px;
    background-image: url("./../images/top/president_photo@2x.png");
    background-position: right;
    background-size: cover;
  }
  .about .prepresident .right {
    width: 90%;
    max-width: 500px;
    margin: 50px auto 0;
  }
  .about .prepresident .right .text-box {
    padding: 0 45px 0 0;
    text-align: justify;
  }
  .about .prepresident .right h3 img {
    display: block;
    width: 112px;
    margin-top: 33px;
    line-height: 100%;
  }
  .about .prepresident .right h3 span {
    display: block;
    line-height: 100%;
  }
  .about .prepresident .right h3 .name1 {
    margin-top: 14px;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 6px;
  }
  .about .prepresident .right h3 .name2 {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
  }
  .about .company-info {
    width: 90%;
    max-width: 400px;
    margin: 20px auto 0;
  }
  .about .company-info th, .about .company-info td {
    padding-top: 20px;
  }
  .about .company-info th {
    padding-right: 15px;
    font-weight: normal;
    text-align: left;
  }
  .contact {
    width: 90%;
    max-width: 400px;
    margin: 75px auto 0;
  }
  .contact h2 {
    line-height: 100%;
  }
  .contact h2 img {
    width: 114px;
  }
  .contact .container {
    width: 100%;
    margin-top: 30px;
    color: #2d843c;
    font-weight: 700;
  }
  .contact span {
    display: block;
  }
  .contact .left {
    margin: 0 40px 25px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #2d843c;
  }
  .contact .left .line3 {
    margin-top: 3px;
    font-size: 2.6rem;
    letter-spacing: 2px;
  }
  .contact .left .line4 {
    margin-top: 3px;
    font-size: 1.2rem;
  }
  .contact .right .line2 {
    margin: 15px 0 0 70px;
  }
  .contact .right .line2 a {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    transition: all 0.3s;
    opacity: 0.6;
  }
  .contact .right .line2 a:hover {
    opacity: 1;
  }
  .contact .right .line2 a:hover .a2 {
    left: 30px;
  }
  .contact .right .line2 .a1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
  }
  .contact .right .line2 .a2 {
    position: absolute;
    top: 22px;
    left: 25px;
    width: 9px;
    height: 16px;
    transition: all 0.3s;
  }
  footer {
    margin-top: 22px;
    padding: 30px 0 30px;
    border-top: 1px solid #2d843c;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
  }
  footer h2 img {
    width: 176px;
  }
  footer ul {
    display: none;
  }
  .works-article {
    padding-top: 115px;
  }
  .works-article .works-no {
    margin-top: 25px;
    margin-left: 5%;
    color: #2d843c;
    font-size: 3rem;
    letter-spacing: 4px;
    line-height: 100%;
  }
  .works-article .works-title {
    margin-top: 20px;
    margin-right: 50px;
    margin-left: 5%;
    color: #2d843c;
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 160%;
  }
  .works-article .works-title-info {
    margin-top: 15px;
    margin-right: 50px;
    margin-left: 5%;
    color: #2d843c;
    font-size: 1.3rem;
    line-height: 180%;
  }
  .works-article .container {
    padding-right: 45px;
  }
  .works-article .text-title {
    margin-top: 45px;
    font-size: 2.1rem;
    line-height: 180%;
  }
  .works-article .pic-continue {
    margin-top: 30px !important;
  }
  .works-article .pic-1 span, .works-article .pic-2 span, .works-article .pic-flex span {
    display: block;
    margin-top: 12px;
    font-size: 1.2rem;
    line-height: 150%;
    text-align: justify;
  }
  .works-article .pic-1 {
    margin-top: 50px;
    line-height: 100%;
  }
  .works-article .pic-1 img {
    width: 100%;
  }
  .works-article .pic-2 div {
    width: 100%;
  }
  .works-article .pic-2 div:nth-child(2) {
    margin-top: 30px;
  }
  .works-article .pic-2 img {
    display: block;
    width: 100%;
  }
  .works-article .pic-flex div {
    width: 100%;
  }
  .works-article .pic-flex div:nth-child(n+2) {
    margin-top: 15px;
  }
  .works-article .pic-flex img {
    display: block;
    width: 100%;
  }
  .works-article h4 + p {
    margin-top: 12px;
  }
  .works-article p + p {
    margin-top: 16px;
  }
  .works-article .pic-1 + .pic-2 {
    margin-top: 40px;
  }
  .works-article p + .pic-1, .works-article p + .pic-2, .works-article p + .pic-flex {
    margin-top: 43px;
  }
  .works-article .pic-1 + p, .works-article .pic-2 + p, .works-article .pic-flex + p {
    margin-top: 43px;
  }
  .works-article .back {
    margin-top: 60px;
  }
  .contact-form .contact-title {
    padding-top: 115px;
  }
  .contact-form .contact-info {
    width: 90%;
    max-width: 400px;
    margin: 38px auto 0;
    padding-right: 40px;
    font-weight: 500;
  }
  .contact-form .contact-address {
    width: calc(90% - 40px);
    max-width: 400px;
    margin-top: 50px;
    margin-left: 5%;
    padding: 15px 0;
    border: 1px solid #2d843c;
    color: #2d843c;
    font-weight: 700;
  }
  .contact-form .contact-address span, .contact-form .contact-address a {
    display: block;
    text-align: center;
  }
  .contact-form .contact-address .line3 {
    margin-top: 3px;
    font-size: 2.6rem;
    letter-spacing: 2px;
  }
  .contact-form .contact-address .line4 {
    margin-top: 3px;
    font-size: 1.2rem;
  }
  .contact-form .form-title {
    margin-left: 5%;
    padding-top: 50px;
    color: #2d843c;
    font-size: 1.5rem;
    line-height: 100%;
  }
  .contact-form .input-state {
    display: flex;
    width: calc(90% - 40px);
    max-width: 400px;
    margin-top: 38px;
    margin-left: 5%;
  }
  .contact-form .input-state div {
    width: 50%;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #2d843c;
    color: #2d843c;
    text-align: center;
  }
  .contact-form .input-state div.active {
    border-bottom: 3px solid #2d843c;
  }
  .contact-form form {
    width: calc(90% - 40px);
    max-width: 400px;
    margin-top: 38px;
    margin-left: 5%;
  }
  .contact-form table, .contact-form tbody, .contact-form tr {
    display: block;
    width: 100%;
  }
  .contact-form th, .contact-form td {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .contact-form .form-row .mt0 {
    margin-top: 0 !important;
  }
  .contact-form .form-row .mt15 {
    margin-top: 8px !important;
  }
  .contact-form .form-row .input100 {
    width: 100%;
  }
  .contact-form .form-row th {
    color: #2d843c;
  }
  .contact-form .form-row .th-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 25px;
  }
  .contact-form .form-row .th-row .title {
    line-height: 100%;
  }
  .contact-form .form-row .th-row .title .sub-info {
    padding-left: 5px;
    font-size: 1.2rem;
  }
  .contact-form .form-row .th-row .title-left {
    margin-top: -7px;
    line-height: 200%;
    text-align: left;
  }
  .contact-form .form-row .th-row .req-box {
    width: 48px;
    padding: 0 10px;
  }
  .contact-form .form-row .th-row .required {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 3px 0;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    line-height: 100%;
  }
  .contact-form .form-row .td-row {
    margin-top: 8px;
  }
  .contact-form .form-row .td-row .td-title {
    padding-bottom: 5px;
  }
  .contact-form .form-row .td-row span {
    display: block;
    font-size: 1.2rem;
    line-height: 150%;
  }
  .contact-form .form-row .td-row .input2 {
    width: calc(100% - 90px);
  }
  .contact-form .form-row .td-row .postal-code-box {
    display: flex;
    justify-content: space-between;
  }
  .contact-form .form-row .td-row .postal-code-box .input1 {
    width: 48%;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .contact-form .form-row .td-row .postal-code-box .input1:hover {
    opacity: 0.7;
  }
  .contact-form .form-row .td-row .postal-code-box button {
    font-size: 1.1rem;
  }
  .contact-form .form-row .checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 15px;
    line-height: 16px;
  }
  .contact-form .form-row .checkbox-group.cg2 {
    margin-top: 20px;
  }
  .contact-form .form-row .checkbox-group label {
    padding-left: 5px;
    text-wrap: nowrap;
    cursor: pointer;
  }
  .contact-form .form-row .etc-box {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
  .contact-form .form-row .etc-box .checkbox-group {
    margin-top: 0;
  }
  .contact-form .form-row .etc-box .etc-text {
    width: 100%;
    margin-left: 15px;
  }
  .contact-form .p-infomation {
    width: 100%;
    max-width: 400px;
    margin-top: 35px;
    text-align: justify;
  }
  .contact-form .p-infomation h3 {
    font-size: 1.2rem;
    font-weight: 900;
  }
  .contact-form .p-infomation p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 200%;
  }
  .contact-form .submit-btn {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 100px;
  }
  .contact-form .submit-btn button {
    width: 100%;
    padding: 40px 0;
    transition: opacity 0.3s;
    border-radius: 10px;
    background-color: #2d843c;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 100%;
    cursor: pointer;
  }
  .contact-form .submit-btn img {
    position: absolute;
    top: calc(50% - 8px);
    right: 25px;
    width: 9px;
    height: 16px;
  }
  .contact-form .error-message {
    display: none;
    width: calc(90% - 40px);
    max-width: 400px;
    margin: 38px 0 0 5%;
    padding: 20px;
    border: 1px solid rgb(220, 0, 0);
    color: rgb(220, 0, 0);
    text-align: center;
  }
  .contact-form .error-message p {
    display: none;
  }
  .contact-form .sent {
    width: calc(90% - 40px);
    margin: 100px 0 100px 5%;
    font-weight: 600;
  }
  .contact-form .ca-sent {
    margin-bottom: 80px;
  }
  .contact-form .back a {
    margin-left: 25px;
  }
  .contact-form button {
    border: 0;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .contact-form input[type=text], .contact-form input[type=tel], .contact-form input[type=email], .contact-form textarea {
    padding: 10px;
    border: 0;
    border-radius: 0;
    background-color: #e3e3e8;
  }
  .contact-form input[type=text].error, .contact-form input[type=tel].error, .contact-form input[type=email].error, .contact-form textarea.error {
    background-color: rgba(220, 0, 0, 0.3);
  }
  .contact-form input[type=checkbox] {
    position: relative;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-color: #e3e3e8;
    vertical-align: -5px;
    appearance: none;
  }
  .contact-form input[type=checkbox].error {
    background-color: rgba(220, 0, 0, 0.3);
  }
  .contact-form input[type=checkbox]:checked:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    transform: rotate(50deg);
    border-right: 2px solid #2d843c;
    border-bottom: 2px solid #2d843c;
  }
  .back {
    margin-left: 5%;
    font-weight: 500;
  }
  .back span {
    display: block;
    margin-bottom: 18px;
  }
  .back a {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    margin-left: 40px;
    transition: all 0.3s;
    opacity: 0.6;
  }
  .back a:hover {
    opacity: 1;
  }
  .back a:hover .a2 {
    left: 20px;
  }
  .back .a1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
  }
  .back .a2 {
    position: absolute;
    top: 22px;
    left: 25px;
    width: 9px;
    height: 16px;
    transition: all 0.3s;
  }
}
@media only screen and (min-width: 768px) {
  /*
  pc 用レイアウト
  -------------------------------------------------- */
  .tablet {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  header h1 {
    position: fixed;
    z-index: 1001;
    top: 25px;
    left: 25px;
  }
  header h1 img {
    width: 75px;
    height: 75px;
  }
  header nav {
    position: fixed;
    z-index: 998;
    top: 0;
    right: 70px;
    width: 0;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0, 1);
    background-color: rgba(20, 120, 38, 0.72);
  }
  header nav.open {
    right: 70px;
    width: calc(50% - 70px);
  }
  header nav ul {
    margin-top: calc(50vh - 195px);
    margin-left: 100px;
  }
  header nav ul li {
    margin-top: 40px;
  }
  header nav ul li:first-child {
    margin-top: 0;
  }
  header nav ul li a {
    position: relative;
  }
  header nav ul li a::after {
    content: "";
    position: absolute;
    z-index: 999;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    background: #fff;
  }
  header nav ul li a:hover::after {
    transform: scale(1, 1);
  }
  header nav ul .menu-top img {
    width: 93px;
  }
  header nav ul .menu-introduction img {
    width: 202px;
  }
  header nav ul .menu-works img {
    width: 132px;
  }
  header nav ul .menu-about img {
    width: 151px;
  }
  header nav ul .menu-contact img {
    width: 176px;
  }
  header .nav-box {
    position: fixed;
    z-index: 1000;
    right: 0;
    width: 70px;
    height: 100%;
    background-color: rgba(20, 120, 38, 0.9);
  }
  header .nav-box .logo {
    position: fixed;
    top: calc(50% - 40px);
    right: 33px;
  }
  header .nav-box .logo img {
    width: 8px;
    height: 80px;
  }
  header .nav-box .nav-arrow {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 20px;
    height: 11px;
    transition: transform 0.5s;
    cursor: pointer;
  }
  header .nav-box .nav-arrow.rotate {
    transform: rotate(180deg);
  }
  header .nav-box .hamburger {
    position: relative;
    width: 20px;
    height: 8px;
    margin-left: calc(50% - 10px);
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
  }
  header .nav-box .hamburger span, header .nav-box .hamburger span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    transition: all 0.5s;
    background-color: #fff;
  }
  header .nav-box .hamburger span {
    top: 0;
  }
  header .nav-box .hamburger span::after {
    bottom: -8px;
  }
  header .nav-box .hamburger.open span {
    top: 5px;
    transform: rotate(45deg);
  }
  header .nav-box .hamburger.open span::after {
    bottom: 0;
    transform: rotate(-90deg);
  }
  .container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .slide-area {
    position: relative;
    height: 100vh;
    background-color: #000;
    background-position: center;
    background-size: cover;
  }
  .slide-area .slide-list {
    display: none;
  }
  .slide-area .slide-list li {
    height: 100vh;
  }
  .slide-area .slide-list .img1 {
    height: 100vh;
    background-image: url("./../images/top/top_slide_01@2x.png?20240702");
    background-size: cover;
  }
  .slide-area .slide-list .img2 {
    height: 100vh;
    background-image: url("./../images/top/top_slide_02@2x.png");
    background-size: cover;
  }
  .slide-area .slide-list .img3 {
    height: 100vh;
    background-image: url("./../images/top/top_slide_03@2x.png");
    background-size: cover;
  }
  .slide-area .slide-list .img4 {
    height: 100vh;
    background-image: url("./../images/top/top_slide_04@2x.png");
    background-size: cover;
  }
  .slide-area h2 img {
    position: absolute;
    bottom: 80px;
    left: 100px;
    width: 190px;
    height: 67px;
  }
  .title-h2 {
    position: relative;
    padding-bottom: 30px;
    color: #2d843c;
    font-size: 2rem;
    letter-spacing: 4px;
    line-height: 100%;
    text-align: center;
  }
  .title-h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 55px);
    width: 110px;
    height: 1px;
    background-color: #2d843c;
  }
  .information {
    padding: 30px 0;
    background-color: #ebe3dc;
  }
  .information h2 {
    line-height: 100%;
    text-align: center;
  }
  .information h2 img {
    width: 228px;
    height: 14px;
  }
  .information .box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }
  .information .box p {
    width: 50%;
    padding: 8px 20px;
    text-align: center;
  }
  .information .box p:nth-child(n+2) {
    border-left: 1px solid #646464;
  }
  .introduction {
    padding-top: 100px;
  }
  .introduction .box {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 0 15%;
  }
  .introduction .box h3 {
    margin-top: 60px;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 100%;
  }
  .introduction .box .left {
    width: 480px;
    margin-right: 30px;
  }
  .introduction .box .left p {
    margin-top: 58px;
    letter-spacing: 0.5px;
    line-height: 240%;
  }
  .introduction .box .right {
    width: calc(100% - 510px);
    max-width: 200px;
  }
  .introduction .box .right img {
    width: 100%;
  }
  .diagonal-line {
    margin-top: 60px;
  }
  .diagonal-line img {
    width: 220px;
  }
  .diagonal-line .box {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .diagonal-line .box .left, .diagonal-line .box .right {
    width: 50%;
  }
  .diagonal-line .box .left {
    text-align: right;
  }
  .services {
    padding-top: 60px;
  }
  .services .container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
  .services .service {
    width: 30%;
  }
  .services .service img {
    width: 100%;
  }
  .services .service span {
    display: block;
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 100%;
  }
  .services .service h3 {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 100%;
  }
  .services .service p {
    margin-top: 20px;
    text-align: justify;
  }
  .works {
    margin-top: 96px;
    padding: 68px 0 100px;
    background-color: #ebe3dc;
  }
  .works .works-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1000px;
    margin: 50px auto 0;
  }
  .works .works-box .common-box, .works .works-box .works-dummy {
    display: block;
    position: relative;
    z-index: 1;
    width: 33.333333%;
    padding-top: 22.222222%;
    background-size: cover;
  }
  .works .works-box .common-box p, .works .works-box .works-dummy p {
    display: flex;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    margin: 15px;
    transition: opacity 0.5s;
    opacity: 0;
    background-color: rgba(20, 120, 38, 0.72);
  }
  .works .works-box .common-box p span, .works .works-box .works-dummy p span {
    display: block;
    color: #fff;
    text-align: center;
  }
  .works .works-box .common-box:hover p, .works .works-box .works-dummy:hover p {
    opacity: 1;
  }
  .works .works-box .works-01 {
    background-image: url("./../images/top/works_01@2x.png?20240702");
  }
  .works .works-box .works-02 {
    background-image: url("./../images/top/works_02@2x.png?20240702");
  }
  .works .works-box .works-03 {
    background-image: url("./../images/top/works_03@2x.png?20240702");
  }
  .works .works-box .works-04 {
    background-image: url("./../images/top/works_04@2x.png?20240702");
  }
  .works .works-box .works-05 {
    background-image: url("./../images/top/works_05@2x.png?20240702");
  }
  .works .works-box .mobile-size {
    display: block;
    margin-top: -15px;
    font-size: 1.2rem;
  }
  .about {
    padding-top: 70px;
  }
  .about .prepresident {
    display: flex;
    margin-top: 50px;
  }
  .about .prepresident .left, .about .prepresident .right {
    width: 50%;
  }
  .about .prepresident .left {
    background-image: url("./../images/top/president_photo@2x.png");
    background-position: right;
    background-size: cover;
  }
  .about .prepresident .right {
    margin: 25px 0;
  }
  .about .prepresident .right .text-box {
    width: 90%;
    max-width: 500px;
    padding-left: 50px;
    text-align: justify;
  }
  .about .prepresident .right h3 img {
    display: block;
    width: 127px;
    margin-top: 55px;
    line-height: 100%;
  }
  .about .prepresident .right h3 span {
    display: block;
    line-height: 100%;
  }
  .about .prepresident .right h3 .name1 {
    margin-top: 14px;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 6px;
  }
  .about .prepresident .right h3 .name2 {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 3px;
  }
  .about .company-info {
    width: 500px;
    margin: 85px auto 0;
  }
  .about .company-info th, .about .company-info td {
    padding-top: 20px;
  }
  .about .company-info th {
    padding-right: 50px;
    font-weight: normal;
    text-align: left;
  }
  .contact {
    margin-top: 125px;
  }
  .contact h2 {
    text-align: center;
  }
  .contact h2 img {
    width: 151px;
  }
  .contact .container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    color: #2d843c;
    font-weight: 700;
  }
  .contact span {
    display: block;
    text-align: center;
  }
  .contact .left, .contact .right {
    width: 40%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .contact .left {
    padding-right: 40px;
    border-right: 1px solid #2d843c;
  }
  .contact .left .line3 {
    margin-top: 3px;
    font-size: 2.6rem;
    letter-spacing: 2px;
  }
  .contact .left .line4 {
    margin-top: 3px;
    font-size: 1.2rem;
  }
  .contact .right {
    padding-left: 40px;
  }
  .contact .right .line2 a {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    margin-top: 20px;
    transition: all 0.3s;
    opacity: 0.6;
  }
  .contact .right .line2 a:hover {
    opacity: 1;
  }
  .contact .right .line2 a:hover .a2 {
    left: 30px;
  }
  .contact .right .line2 .a1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
  }
  .contact .right .line2 .a2 {
    position: absolute;
    top: 22px;
    left: 25px;
    width: 9px;
    height: 16px;
    transition: all 0.3s;
  }
  footer {
    margin-top: 22px;
    padding: 30px 0 45px;
    border-top: 1px solid #2d843c;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
  }
  footer h2 {
    margin-left: 50px;
  }
  footer h2 img {
    width: 204px;
  }
  footer ul {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    margin-right: 50px;
  }
  footer ul li {
    position: relative;
  }
  footer ul li:nth-child(n+2) {
    margin-left: 44px;
  }
  footer ul li:nth-child(n+2)::before {
    content: "/";
    position: absolute;
    left: -24px;
    color: #2d843c;
  }
  footer ul li::after {
    content: "";
    position: absolute;
    bottom: -1px; /*アンダーライン*/
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
    background: #2d843c;
  }
  footer ul li:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
  footer .nav1 img {
    width: 35px;
  }
  footer .nav2 img {
    width: 85px;
  }
  footer .nav3 img {
    width: 66px;
  }
  footer .nav4 img {
    width: 75px;
  }
  .works-article {
    width: 800px;
    margin: 0 auto;
    padding-top: 100px;
  }
  .works-article p {
    text-align: justify;
  }
  .works-article .works-no {
    margin-top: 20px;
    color: #2d843c;
    font-size: 3rem;
    letter-spacing: 4px;
    line-height: 100%;
    text-align: center;
  }
  .works-article .works-title {
    margin-top: 50px;
    color: #2d843c;
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 200%;
    text-align: center;
  }
  .works-article .works-title-info {
    margin-top: 24px;
    color: #2d843c;
    font-size: 1.3rem;
    line-height: 100%;
    text-align: center;
  }
  .works-article .text-title {
    margin-top: 59px;
    font-size: 2.1rem;
    line-height: 200%;
  }
  .works-article .pic-continue {
    margin-top: 4% !important;
  }
  .works-article .pic-1 span, .works-article .pic-2 span, .works-article .pic-flex span {
    display: block;
    margin-top: 16px;
  }
  .works-article .pic-1 {
    margin-top: 70px;
    line-height: 100%;
  }
  .works-article .pic-1 img {
    width: 100%;
  }
  .works-article .pic-2 {
    display: flex;
    justify-content: space-between;
  }
  .works-article .pic-2 div {
    width: 48%;
  }
  .works-article .pic-2 img {
    display: block;
    width: 100%;
  }
  .works-article .pic-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .works-article .pic-flex div {
    width: 48%;
  }
  .works-article .pic-flex div:nth-child(n+3) {
    margin-top: 4%;
  }
  .works-article .pic-flex img {
    display: block;
    width: 100%;
  }
  .works-article h4 + p {
    margin-top: 12px;
  }
  .works-article p + p {
    margin-top: 16px;
  }
  .works-article .pic-1 + .pic-2 {
    margin-top: 70px;
  }
  .works-article p + .pic-1, .works-article p + .pic-2, .works-article p + .pic-flex {
    margin-top: 63px;
  }
  .works-article .pic-1 + p, .works-article .pic-2 + p, .works-article .pic-flex + p {
    margin-top: 63px;
  }
  .works-article .back {
    margin-top: 80px;
  }
  .contact-form .contact-title {
    padding-top: 100px;
  }
  .contact-form .contact-info {
    margin-top: 50px;
    font-weight: 500;
    text-align: center;
  }
  .contact-form .contact-address {
    width: 350px;
    margin: 50px auto 0;
    padding: 15px 0;
    border: 1px solid #2d843c;
    color: #2d843c;
    font-weight: 700;
  }
  .contact-form .contact-address span, .contact-form .contact-address a {
    display: block;
    text-align: center;
  }
  .contact-form .contact-address .line3 {
    margin-top: 3px;
    font-size: 2.6rem;
    letter-spacing: 2px;
  }
  .contact-form .contact-address .line4 {
    margin-top: 3px;
    font-size: 1.2rem;
  }
  .contact-form .form-title {
    padding-top: 50px;
    color: #2d843c;
    font-size: 1.5rem;
    line-height: 100%;
    text-align: center;
  }
  .contact-form .input-state {
    display: flex;
    width: 600px;
    margin: 0 auto;
  }
  .contact-form .input-state div {
    width: 50%;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #2d843c;
    color: #2d843c;
    text-align: center;
  }
  .contact-form .input-state div.active {
    border-bottom: 3px solid #2d843c;
  }
  .contact-form form {
    width: 600px;
    margin: 50px auto 0;
  }
  .contact-form table {
    width: 100%;
  }
  .contact-form th, .contact-form td {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 700;
    vertical-align: top;
  }
  .contact-form .form-row .mt0 {
    margin-top: 0 !important;
  }
  .contact-form .form-row .mt15 {
    margin-top: 15px !important;
  }
  .contact-form .form-row .input100 {
    width: 100%;
  }
  .contact-form .form-row th {
    width: 33%;
    color: #2d843c;
  }
  .contact-form .form-row .th-row {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
  }
  .contact-form .form-row .th-row .title {
    width: calc(100% - 68px);
    line-height: 100%;
    text-align: right;
  }
  .contact-form .form-row .th-row .title .sub-info {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    text-align: right;
  }
  .contact-form .form-row .th-row .title-left {
    margin-top: -7px;
    line-height: 200%;
    text-align: left;
  }
  .contact-form .form-row .th-row .req-box {
    width: 68px;
    padding: 0 20px;
  }
  .contact-form .form-row .th-row .required {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 3px 0;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    line-height: 100%;
  }
  .contact-form .form-row .td-row {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }
  .contact-form .form-row .td-row span {
    display: block;
    width: 90px;
    font-size: 1.2rem;
    line-height: 150%;
  }
  .contact-form .form-row .td-row .input2 {
    width: calc(100% - 90px);
  }
  .contact-form .form-row .td-row .postal-code-box {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 90px);
  }
  .contact-form .form-row .td-row .postal-code-box .input1 {
    width: 48%;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .contact-form .form-row .td-row .postal-code-box .input1:hover {
    opacity: 0.7;
  }
  .contact-form .form-row .checkbox-group {
    display: flex;
    align-items: center;
    line-height: 16px;
  }
  .contact-form .form-row .checkbox-group.cg2 {
    margin-top: 20px;
  }
  .contact-form .form-row .checkbox-group label {
    padding-left: 5px;
    text-wrap: nowrap;
    cursor: pointer;
  }
  .contact-form .form-row .etc-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }
  .contact-form .form-row .etc-box .etc-text {
    width: 100%;
    margin-left: 15px;
  }
  .contact-form .p-infomation {
    width: 450px;
    margin: 50px auto 0;
  }
  .contact-form .p-infomation h3 {
    font-size: 1.2rem;
    font-weight: 900;
  }
  .contact-form .p-infomation p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 200%;
  }
  .contact-form .submit-btn {
    position: relative;
    width: 450px;
    margin: 30px auto 100px;
  }
  .contact-form .submit-btn button {
    width: 100%;
    padding: 40px 0;
    transition: opacity 0.3s;
    border-radius: 10px;
    background-color: #2d843c;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 100%;
    cursor: pointer;
  }
  .contact-form .submit-btn button:hover {
    opacity: 0.7;
  }
  .contact-form .submit-btn img {
    position: absolute;
    top: calc(50% - 8px);
    right: 25px;
    width: 9px;
    height: 16px;
  }
  .contact-form .error-message {
    display: none;
    width: 600px;
    margin: 50px auto 0;
    padding: 20px;
    border: 1px solid rgb(220, 0, 0);
    color: rgb(220, 0, 0);
    text-align: center;
  }
  .contact-form .error-message p {
    display: none;
  }
  .contact-form .sent {
    margin: 100px auto;
    font-weight: 600;
    text-align: center;
  }
  .contact-form .ca-sent {
    margin-bottom: 100px;
  }
  .contact-form .back {
    margin-bottom: 100px;
  }
  .contact-form button {
    border: 0;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .contact-form input[type=text], .contact-form input[type=tel], .contact-form input[type=email], .contact-form textarea {
    padding: 10px;
    border: 0;
    border-radius: 0;
    background-color: #e3e3e8;
  }
  .contact-form input[type=text].error, .contact-form input[type=tel].error, .contact-form input[type=email].error, .contact-form textarea.error {
    background-color: rgba(220, 0, 0, 0.3);
  }
  .contact-form input[type=checkbox] {
    position: relative;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-color: #e3e3e8;
    vertical-align: -5px;
    appearance: none;
  }
  .contact-form input[type=checkbox].error {
    background-color: rgba(220, 0, 0, 0.3);
  }
  .contact-form input[type=checkbox]:checked:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    transform: rotate(50deg);
    border-right: 2px solid #2d843c;
    border-bottom: 2px solid #2d843c;
  }
  .back {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
  }
  .back span {
    display: block;
    margin-bottom: 18px;
  }
  .back a {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    margin-top: 20px;
    transition: all 0.3s;
    opacity: 0.6;
  }
  .back a:hover {
    opacity: 1;
  }
  .back a:hover .a2 {
    left: 20px;
  }
  .back .a1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
  }
  .back .a2 {
    position: absolute;
    top: 22px;
    left: 25px;
    width: 9px;
    height: 16px;
    transition: all 0.3s;
  }
}
@media only screen and (min-width: 768px) and (max-width: 820px) {
  /*
  tablet 用レイアウト
  -------------------------------------------------- */
  .pc {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .tablet {
    display: block !important;
  }
  .slide-area .slide-list .img1 {
    background-position: 70% 50%;
  }
  .slide-area .slide-list .img2 {
    background-position: center;
  }
  .slide-area .slide-list .img3 {
    background-position: center;
  }
  .services .container {
    width: calc(90% - 100px);
    max-width: 800px;
  }
  .services .service {
    width: 30%;
  }
  .services .service img {
    width: 100%;
  }
  .services .service span {
    display: block;
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 100%;
  }
  .services .service h3 {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 100%;
  }
  .services .service p {
    margin-top: 20px;
    text-align: justify;
  }
  .works .works-box {
    width: calc(90% - 100px);
    max-width: 800px;
  }
  .about {
    padding-top: 70px;
  }
  .about .prepresident {
    display: flex;
    margin-top: 50px;
  }
  .about .prepresident .left, .about .prepresident .right {
    width: 50%;
  }
  .about .prepresident .left {
    background-image: url("./../images/top/president_photo@2x.png");
    background-position: 90%;
    background-size: cover;
  }
  .about .prepresident .right {
    margin: 25px 0;
  }
  .about .prepresident .right .text-box {
    width: 90%;
    max-width: 500px;
    padding-right: 60px;
    padding-left: 50px;
  }
  .works-article {
    width: 92%;
  }
  .works-article p {
    text-align: justify;
  }
  .works-article .back {
    margin-left: 8%;
  }
}/*# sourceMappingURL=style.css.map */