@charset "UTF-8";
html, body, header, footer, article, div, main, p, figure, figcaption {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 980px) {
  body {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 980px) {
  body {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 580px) {
  body {
    font-size: 3.7vw;
  }
}

input[type=checkbox]#menu-btn-check {
  display: none;
}

#navigation {
  width: 70%;
  height: 100%;
  padding-top: 100px;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ */
  z-index: 80;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.5s; /*アニメーション設定*/
  overflow: auto;
}

#navigation a,
#navigation a:link,
#navigation a:active,
#navigation a:visited,
#navigation a:hover {
  color: #000;
  text-decoration: none;
}

#navigation ul {
  display: block;
  width: 90%;
  margin: 0 10px;
  text-align: left;
}

#navigation ul li {
  padding: 1em 0.5em;
  border-bottom: solid 1px #ffffff;
  list-style: none;
  color: #000;
}
#navigation ul li a {
  color: #000;
}
#navigation ul li a:hover {
  opacity: 0.6;
}

/* =======================================
　MENUが☓に変化
======================================= */
label {
  display: none;
}

@media screen and (max-width: 1360px) {
  label.menu-btn {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  label.menu-btn {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  label.menu-btn {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  label.menu-btn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 40px;
    right: 15px;
    height: 40px;
    width: 40px;
    z-index: 90;
  }
}
@media screen and (max-width: 380px) {
  label.menu-btn {
    display: block;
  }
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 98%;
  border-radius: 3px;
  background-color: green;
  position: absolute;
}

@media screen and (max-width: 1360px) {
  .menu-btn span {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .menu-btn span {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .menu-btn span {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .menu-btn span {
    display: block;
    background-color: orange;
  }
}
@media screen and (max-width: 380px) {
  .menu-btn span {
    display: block;
    background-color: orange;
  }
}

.menu-btn span:before {
  bottom: 17px;
  background: green;
}
@media screen and (max-width: 1360px) {
  .menu-btn span:before {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .menu-btn span:before {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .menu-btn span:before {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .menu-btn span:before {
    display: block;
  }
}
@media screen and (max-width: 380px) {
  .menu-btn span:before {
    display: block;
  }
}

.menu-btn span:after {
  top: 17px;
  background: green;
}
@media screen and (max-width: 1360px) {
  .menu-btn span:after {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .menu-btn span:after {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .menu-btn span:after {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .menu-btn span:after {
    display: block;
  }
}
@media screen and (max-width: 380px) {
  .menu-btn span:after {
    display: block;
  }
}

/* ---　ボタンをクリックした時の動作 --- */
#menu-btn-check:checked ~ #navigation {
  left: 38vw; /*メニューを画面内へ*/
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #000;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #000;
}

html {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  max-width: 1400px;
  background-color: #ddd;
  overflow-x: hidden;
}
@media screen and (max-width: 580px) {
  body {
    max-width: 100vw;
  }
}

header {
  width: 96%;
  margin: 0 auto;
}
header #header_top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 20px 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 980px) {
  header #header_top {
    width: 100vw;
  }
}
@media screen and (max-width: 580px) {
  header #header_top {
    width: 100vw;
  }
}
header #header_top img {
  width: 350px;
  height: auto;
  display: inline-block;
  transition: all 2s ease;
  animation-name: logo;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0.2;
  transform: translateX(-50px);
}
@media screen and (max-width: 980px) {
  header #header_top img {
    width: 52vw;
  }
}
@media screen and (max-width: 580px) {
  header #header_top img {
    width: 80vw;
  }
}
@keyframes logo {
  from {
    opacity: 0.2;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
header #header_top #header_access {
  width: 250px;
  height: auto;
}
@media screen and (max-width: 580px) {
  header #header_top #header_access {
    display: none;
  }
}
header #header_top #header_access #tel {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 3.6px;
  color: #089727;
  margin-bottom: 3px;
}
@media screen and (max-width: 980px) {
  header #header_top #header_access #tel {
    width: 29vw;
    font-size: 1.8rem;
  }
}
header #header_top #header_access #fax {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 3.6px;
  color: #089727;
  margin-bottom: 6px;
}
@media screen and (max-width: 980px) {
  header #header_top #header_access #fax {
    width: 29vw;
    font-size: 1.8rem;
  }
}
header #header_top #header_access #form {
  box-sizing: border-box;
  background: #ff8a00;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 5px 3px;
  border-radius: 5px;
  border: 2px solid #ff8a00;
  transition: all 1s ease;
}
header #header_top #header_access #form a {
  color: #fff;
}
header #header_top #header_access #form a:hover {
  color: #ff8a00;
}
@media screen and (max-width: 980px) {
  header #header_top #header_access #form {
    width: 220px;
    height: auto;
    margin: 0 auto;
  }
}
header #header_top #header_access #form:hover {
  color: #ff8a00;
  background: #fff;
  border: 2px solid #ff8a00;
}
header nav#pc {
  display: block;
}
@media screen and (max-width: 980px) {
  header nav#pc {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  header nav#pc {
    display: none;
  }
}
header nav#pc ul {
  box-sizing: border-box;
  padding: 0;
  width: 96%;
  max-width: 1200px;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
}
header nav#pc ul li {
  box-sizing: border-box;
  font-size: 1.5rem;
  text-align: center;
  padding: 6px 0 6px;
  list-style-type: none;
  border-right: 1px dotted #808080;
  width: 20%;
  position: relative;
  transition: all 0.2s ease;
}
header nav#pc ul li:first-child {
  border-left: 1px dotted #808080;
}
header nav#pc ul li:hover {
  border-bottom: 4px solid #ff8a00;
}
header #main_image {
  width: 96%;
  max-width: 1200px;
  overflow: hidden;
  height: auto;
  margin: 15px auto;
  position: relative;
}
header #main_image img.main_img1 {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  transform: translateX(-50px);
  opacity: 0;
  animation-name: main-img1;
  animation-duration: 5s;
  animation-timing-function: 0.2s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
header #main_image img.main_img2 {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
  top: 0;
  right: 0;
  margin: auto;
  transform: translateX(50px);
  opacity: 0;
  z-index: 1;
  animation-name: main-img2;
  animation-duration: 5s;
  animation-timing-function: 0.2s;
  animation-delay: 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
header #main_image img.main_img3 {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
  top: 0;
  left: 0;
  margin: auto;
  transform: translateX(-50px);
  opacity: 0;
  z-index: 3;
  animation-name: main-img3;
  animation-duration: 5s;
  animation-timing-function: 0.2s;
  animation-delay: 6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes main-img1 {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes main-img2 {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes main-img3 {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
header {
  border-bottom: 1px solid #808080;
}

article {
  width: 1200px;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 980px) {
  article {
    width: 100vw;
    max-width: 100vw;
  }
}
@media screen and (max-width: 580px) {
  article {
    width: 100vw;
    max-width: 100vw;
  }
}
article main {
  width: 900px;
  margin: auto;
  padding: 20px;
}
@media screen and (max-width: 980px) {
  article main {
    width: 95vw;
    margin: auto;
  }
}
@media screen and (max-width: 580px) {
  article main {
    width: 99%;
  }
}
article main h1 {
  background-color: #009c23;
  color: #fff;
  width: 830px;
  padding-left: 30px;
  transform: translateX(650px);
  font-weight: 600;
  font-size: 3.8rem;
  transition: all 1.5s ease;
  animation-name: midashi;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 980px) {
  article main h1 {
    box-sizing: border-box;
    width: 80vw;
    margin: auto;
  }
}
@media screen and (max-width: 580px) {
  article main h1 {
    box-sizing: border-box;
    width: 86vw;
    font-size: 5vw;
  }
}
@keyframes midashi {
  from {
    transform: translateX(600px);
  }
  to {
    transform: translateX(0);
  }
}
article main section {
  box-sizing: border-box;
  padding: 20px;
}
@media screen and (max-width: 980px) {
  article main section {
    width: 90vw;
  }
}
@media screen and (max-width: 580px) {
  article main section {
    padding: 5px;
    margin: auto;
  }
}
article main section h2 {
  letter-spacing: 7px;
  font-size: 2.6rem;
  color: #009c23;
  font-family: sans-serif;
  position: relative;
  margin-bottom: 75px;
}
@media screen and (max-width: 580px) {
  article main section h2 {
    margin-bottom: 50px;
  }
}
article main section h2 span.headtext {
  position: absolute;
  top: -50px;
  right: 170px;
  color: #fff;
  font-size: 8vw;
  opacity: 0.38;
  transform: rotate(-20deg);
}
@media screen and (max-width: 580px) {
  article main section h2 span.headtext {
    top: -80px;
    right: 104px;
    font-size: 33vw;
  }
}
article main section h2 span.s-text {
  position: absolute;
  top: -43px;
  right: 10px;
  color: #fff;
  font-size: 7rem;
  opacity: 0.38;
  transform: rotate(-20deg);
}
@media screen and (max-width: 580px) {
  article main section h2 span.s-text {
    font-size: 15vw;
    top: 44px;
    right: 29px;
  }
}
article main section h3 {
  font-size: 1.8rem;
  color: #ff8a00;
}
article main section h3#rei {
  font-size: 2.2rem;
  letter-spacing: 3px;
}
article main section ul {
  padding: 20px;
  border: 1.5px solid #ff8a00;
  background-color: #fff;
  margin: 50px;
  border-radius: 10px;
}
@media screen and (max-width: 580px) {
  article main section ul {
    width: 95%;
    margin: auto;
  }
}
article main section ul li {
  font-size: 1.5rem;
  color: #ff8a00;
  font-weight: 500;
  list-style: none;
  margin-bottom: 15px;
}
article main section ul#service {
  border-radius: 10px;
  border: 2px solid #009c23;
  margin: 50px 0 50px;
}
article main section ul#service li {
  list-style-type: none;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: #009c23;
}
article main section ul.performance {
  border: none;
  padding: 5px;
  margin: 0;
  background: none;
  border-radius: 0;
}
@media screen and (max-width: 580px) {
  article main section ul.performance {
    width: 100%;
  }
}
article main section ul.performance li {
  display: inline-block;
  width: 350px;
  border: 1px solid #808080;
  height: 350px;
}
@media screen and (max-width: 580px) {
  article main section ul.performance li {
    width: 99.5%;
    margin: auto;
  }
}
article main section ul.performance li:nth-child(odd) {
  margin-left: 30px;
}
@media screen and (max-width: 580px) {
  article main section ul.performance li:nth-child(odd) {
    margin-left: 0;
  }
}
article main section ul.performance li:nth-child(even) {
  margin-left: 30px;
  margin-right: 30px;
}
@media screen and (max-width: 580px) {
  article main section ul.performance li:nth-child(even) {
    margin: 0;
  }
}
article main section ul.performance li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
article main section p {
  font-size: 1.5rem;
  line-height: 3rem;
  letter-spacing: 3px;
  margin: 10px 0;
}
article main section table {
  width: 100%;
  margin: 50px auto;
  border-collapse: collapse;
}
article main section table tr {
  vertical-align: middle;
  border-color: #808080;
}
article main section table tr th, article main section table tr td {
  font-size: 1.6rem;
  border: 1px solid #808080;
  line-height: 2;
  padding: 10px;
  word-break: break-all;
}
article main section table tr th {
  width: 300px;
  letter-spacing: 10px;
}
@media screen and (max-width: 980px) {
  article main section table tr th {
    width: 23vw;
  }
}
article main section.address {
  padding: 20px 0;
}
article main section.address span.company-name {
  font-size: 2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
  line-height: 3rem;
}
@media screen and (max-width: 580px) {
  article main section.address span.company-name {
    font-size: 1.35rem;
  }
}
article main section.map {
  padding: 20px 0;
}
@media screen and (max-width: 580px) {
  article main section.map iframe {
    width: 100%;
  }
}
article main section#form form table tbody tr th {
  padding: 10px 20px;
}
@media screen and (max-width: 580px) {
  article main section#form form table tbody tr th {
    padding: 5px;
    font-size: 1.15rem;
  }
}
article main section#form form table tbody tr th span {
  color: red;
  margin-left: 10px;
}
article main section#form form table tbody tr td {
  padding: 10px 30px;
}
@media screen and (max-width: 580px) {
  article main section#form form table tbody tr td {
    padding: 6px;
  }
}
article main section#form form table tbody tr td label {
  display: block;
}
article main section#form form table tbody tr td label input[type=text].inputclass {
  width: 300px;
  height: 30px;
}
@media screen and (max-width: 580px) {
  article main section#form form table tbody tr td label input[type=text].inputclass {
    width: 55vw;
  }
}
article main section#form form table tbody tr td textarea {
  width: 300px;
}
@media screen and (max-width: 580px) {
  article main section#form form table tbody tr td textarea {
    width: 55.5vw;
  }
}
article main section#form form p.c {
  display: flex;
  justify-content: center;
}
article main section#form form p.c input[type=submit]:first-child {
  margin-right: 20px;
}

footer {
  background-color: #009c23;
  display: flex;
  box-sizing: border-box;
  padding: 20px 50px;
  justify-content: space-around;
}
@media screen and (max-width: 580px) {
  footer {
    width: 100%;
    display: block;
    padding: 20px 20px;
  }
}
footer #footermenu p {
  color: #fff;
}
footer #footermenu p a {
  font-size: 1.4rem;
  margin: 10px;
  color: #fff;
}
footer #footermenu p#copyright {
  font-size: 1.4rem;
  color: #fff;
  margin: 50px 0 50px;
  text-align: center;
}
footer h4 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
footer ul {
  width: 300px;
}
@media screen and (max-width: 580px) {
  footer ul {
    width: 100%;
    box-sizing: border-box;
  }
}
footer ul li {
  font-size: 1.4rem;
  margin: 20px 0;
  color: #fff;
  list-style-type: none;
}/*# sourceMappingURL=page.css.map */