@charset "UTF-8";
body {
  box-sizing: content-box;
}
body a {
  color: black;
  text-decoration: none;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.sp {
  display: block;
}

.header {
  background-color: white;
  width: 100%;
  padding: 10px 0;
  height: 50px;
  position: fixed;
  z-index: 10;
  filter: drop-shadow(2px 2px 2px rgb(135, 140, 140));
}
.header #menu {
  display: none;
}
.header .wrap {
  display: flex;
  justify-content: space-between;
}
.header_logo img {
  max-width: 200px;
}
.header .aside {
  width: min(45%, 600px);
}
.header .aside_nav ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header .aside_nav ul img {
  max-width: 160px;
}
.header .aside_nav ul a {
  font-size: 16px;
  font-weight: 500;
  color: rgb(67, 65, 40);
}
.header .aside_nav ul a:hover {
  opacity: 0.3;
}

.vew .wrap {
  position: absolute;
  z-index: 3;
  top: 30%;
  left: 30%;
}
@media screen and (max-width: 480px) {
  .vew .wrap {
    left: 8%;
  }
}
.vew .wrap_title {
  text-align: center;
  color: white;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  text-shadow: 3px 3px 3px #000, -3px -3px 3px #000, -3px 3px 3px #000, 3px -3px 3px #000, 3px 0px 3px #000, -3px 0px 3px #000, 0px 3px 3px #000, 0px -3px 3px #000;
}
.vew .wrap_title2 {
  text-align: center;
  color: rgb(186, 162, 10);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: clamp(28px, 2.6vw, 50px);
  font-weight: 600;
  margin: 50px;
  letter-spacing: 0.1em;
  text-shadow: 3px 3px 3px #000, -3px -3px 3px #000, -3px 3px 3px #000, 3px -3px 3px #000, 3px 0px 3px #000, -3px 0px 3px #000, 0px 3px 3px #000, 0px -3px 3px #000;
}
.vew .wrap_title3 {
  color: white;
  text-align: center;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 400;
  text-shadow: 3px 3px 3px #000, -3px -3px 3px #000, -3px 3px 3px #000, 3px -3px 3px #000, 3px 0px 3px #000, -3px 0px 3px #000, 0px 3px 3px #000, 0px -3px 3px #000;
}

.slide {
  overflow: hidden;
  top: 65px;
  width: 100vw;
  height: 650px;
  margin: auto;
  z-index: 1;
}

.slide img {
  position: absolute;
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  animation: slideAnime 12s ease infinite;
}

/*=== スライドのアニメーションを段差で開始する
========= */
.slide img:nth-of-type(1) {
  animation-delay: 0s;
}

.slide img:nth-of-type(2) {
  animation-delay: 3s;
}

.slide img:nth-of-type(3) {
  animation-delay: 6s;
}

.slide img:nth-of-type(4) {
  animation-delay: 9s;
}

/*=== スライドのアニメーション 
========================= */
@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  31% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
main {
  margin-top: 80px;
  margin: 50px auto;
  background-color: white;
}
main .wrapa {
  height: 100px;
  padding: 50px;
}
main .wrapa h2 {
  color: rgb(207, 207, 141);
  text-align: center;
  font-size: clamp(30px, 2.6vw, 50px);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-shadow: 3px 3px 3px #000, -3px -3px 3px #000, -3px 3px 3px #000, 3px -3px 3px #000, 3px 0px 3px #000, -3px 0px 3px #000, 0px 3px 3px #000, 0px -3px 3px #000;
}
main .wrapa h1 {
  text-align: center;
  font-size: clamp(12px, 2.6vw, 16px);
}

.obi {
  width: 100vw;
  height: 80px;
  background-color: rgb(112, 71, 6);
}
.obi .wrap h2 {
  padding-top: 10px;
  color: white;
  font-size: 30px;
  letter-spacing: 0.2em;
  text-align: center;
}
.obi .wrap h1 {
  color: white;
  font-size: 14px;
  letter-spacing: 0.5em;
  text-align: center;
}

.service .wrap {
  margin-top: 100px;
  height: 300px;
  display: flex;
}
.service .wrap_content {
  border-bottom: 5px rgb(112, 71, 6) solid;
  border-left: 5px rgb(112, 71, 6) solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 580px;
  padding: 20px;
}
.service .wrap_content p {
  font-size: 24px;
  font-weight: 600;
}
.service .wrap_content h1 {
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  .service .wrap_content {
    padding: 20px;
  }
}
.service .wrap_btn {
  margin-top: 50px;
  background-color: rgb(112, 71, 6);
}
.service .wrap_btn a {
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
}
.service .wrap_btn a:hover {
  background-color: white;
  padding: 10px 30px;
  color: black;
  transition: 0.3s;
}
.service .wrap_img img {
  height: 300px;
  width: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin-left: 20px;
}
.service .wrap_img2 img {
  height: 300px;
  width: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 -50px;
     object-position: 0 -50px;
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .service .wrap {
    margin: 300px auto;
    flex-direction: column-reverse;
    align-items: center;
  }
}

footer {
  height: 250px;
  background-color: rgb(112, 71, 6);
}
@media screen and (max-width: 480px) {
  footer {
    height: 350px;
    margin-top: -200px;
  }
}
footer .wrap {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .wrap .logo img {
  max-width: 200px;
}
footer .wrap .tokoro {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
footer .wrap .tokoro_1 {
  font-size: clamp(10px, 2.6vw, 14px);
  width: 380px;
  color: white;
}
footer .wrap .tokoro_2 {
  font-size: clamp(10px, 2.6vw, 14px);
  width: 400px;
  color: white;
}
@media screen and (max-width: 480px) {
  footer .wrap .tokoro {
    margin-left: 80px;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    font-size: 14px;
  }
}
footer .copy {
  margin-top: 10px;
  border-top: 1px solid white;
}
footer .copy p {
  margin-top: 15px;
  text-align: center;
  color: white;
  font-size: clamp(10px, 1.2vw, 12px);
}

@media screen and (max-width: 480px) {
  /* navが出てくる */
  .open,
  .close {
    display: block;
  }
  .open {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .aside {
    position: absolute;
    top: 65px;
    right: -230px;
    height: 100vh;
    padding-left: 30px;
    transition: all 0.2s;
    background: white;
    opacity: 0.8;
  }
  .aside_nav ul {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    position: absolute;
  }
  .aside_nav ul li {
    margin: 5px;
  }
  input[type=checkbox]:checked ~ aside {
    right: 0;
  }
  input[type=checkbox]:checked ~ .back {
    position: absolute;
    top: 70px;
    left: -3px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3) !important;
  }
  /* 三本線のボタン */
  .navbtn {
    position: relative;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 44px;
  }
  .navbtn span {
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: black;
    transform: translate(5px, 12px);
    transition: all 0.1s;
  }
  .navbtn span:nth-of-type(1) {
    top: 0px;
  }
  .navbtn span:nth-of-type(2) {
    top: 7px;
  }
  .navbtn span:nth-of-type(3) {
    top: 14px;
  }
  #navbtn.active span:nth-of-type(1) {
    transform: translateY(21px) translatex(0px) rotate(0.13turn);
  }
  #navbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  #navbtn.active span:nth-of-type(3) {
    transform: translateY(7px) translatex(0px) rotate(-0.13turn);
  }
}/*# sourceMappingURL=style.css.map */