@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: vw100;
  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: 100%;
    max-width: 100vw;
  }
}
article main {
  width: 900px;
  margin: auto;
}
@media screen and (max-width: 980px) {
  article main {
    width: 99.6vw;
    margin: 0.2vw;
  }
}
@media screen and (max-width: 580px) {
  article main {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
  }
}
article main section {
  box-sizing: border-box;
  padding: 20px;
}
@media screen and (max-width: 580px) {
  article main section {
    padding: 10px;
  }
}
article main section h2 {
  letter-spacing: 7px;
  font-size: 2.6rem;
  color: #009c23;
  font-family: sans-serif;
  position: relative;
}
article main section h2 span.headtext {
  color: #00ced1;
  font-size: 10rem;
  opacity: 0.15;
  margin-left: 20px;
}
@media screen and (max-width: 980px) {
  article main section h2 span.headtext {
    font-size: 14.2vw;
  }
}
@media screen and (max-width: 580px) {
  article main section h2 span.headtext {
    font-size: 3.7vw;
  }
}
article main section h2 span.headtext2 {
  color: #00ced1;
  font-size: 10rem;
  opacity: 0.15;
  margin-left: 20px;
}
@media screen and (max-width: 980px) {
  article main section h2 span.headtext2 {
    font-size: 14.2vw;
  }
}
@media screen and (max-width: 580px) {
  article main section h2 span.headtext2 {
    font-size: 3.7vw;
  }
}
article main section h2 span.s-text {
  color: #00ced1;
  font-size: 7rem;
  opacity: 0.15;
}
@media screen and (max-width: 980px) {
  article main section h2 span.s-text {
    font-size: 8vw;
  }
}
@media screen and (max-width: 580px) {
  article main section h2 span.s-text {
    font-size: 10vw;
    transform: rotate(-20deg);
    top: -27px;
    right: -5px;
  }
}
article main section h2 span.no1 {
  right: 28vw;
}
article main section p {
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin: 10px 0;
}
article main section p a img {
  width: 100%;
}
article main section#main_img_revew .imgBox {
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
}
article main section#main_img_revew .imgBox img {
  width: 210px;
  height: auto;
  object-fit: cover;
}

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=front-page.css.map */