@charset "UTF-8";
/* --------------------------------------------------
Base
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700;900&display=swap');
body, ol, ul, dl, li, dt, dd, table, th, td, input, textarea, select, h1, h2, h3, h4, h5, h6 {
  color: #000 ;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  line-height: 2;
  font-size: 100%;
  background-color: #f0f4f5;
  word-break: break-all;
  position: relative;
  overflow-x: hidden;
  animation: pageLoad 2s;
}

@keyframes pageLoad {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  body {
    line-height: 1.8;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  boreder: 1px solid #979797;
  padding: 2px 8px;
}

textarea {
  padding: 3px;
}

ul {
  list-style: none;
}

ol {
  margin: 0px 0px 0px 21px;
}

ol>li {
  list-style: decimal outside;
  margin: 0px 0px 3%;
}

a {
  color: #333333;
  text-decoration: underline;
  outline: 0;
}

a:hover, a:active {
  color: #333333;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel"] {
    pointer-events: none;
  }
}

em {
  font-style: normal;
  font-weight: bold;
}

strong {
  font-style: normal;
  font-weight: bold;
}

/* --------------------------------------------------
Wrapper
-------------------------------------------------- */

#wrapper {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* --------------------------------------------------
drw-nav-btn
-------------------------------------------------- */

#drw-nav-trigger {
  display: none;
}

.drw-nav-btn {
  position: fixed;
  top: 14px;
  right: 6px;
  display: none;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
}

.drw-nav-btn-bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 2px;
  background: #239823;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.4s;
  transform-origin: left top;
}

#drw-nav-trigger:checked~.drw-nav-ntn .drw-nav-btn-bar {
  box-shadow: none;
}

.drw-nav-btn-bar.top {
  top: 11px;
  left: 5px;
}

.drw-nav-btn-bar.middle {
  top: 20px;
  left: 5px;
  opacity: 1;
}

.drw-nav-btn-bar.bottom {
  top: 29px;
  left: 5px;
  transform-origin: left bottom;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.top {
  width: 26px;
  left: 11px;
  transform: rotate(45deg);
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.middle {
  opacity: 0;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.bottom {
  width: 26px;
  left: 11px;
  top: 29px;
  transform: rotate(-45deg);
}

.drw-nav-btn-text {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
  display: block;
  visibility: visible;
  opacity: 1;
  letter-spacing: 0;
  color: #239823;
  font-size: 10px;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 1);
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-text {
  visibility: hidden;
  opacity: 0;
}

.drw-nav-close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
}

#drw-nav-trigger:checked~.drw-nav-close {
  transition: all 0.4s 0.3s;
  background: rgba(0, 0, 0, 0.6);
  visibility: visible;
  opacity: 1;
  z-index: 993;
  box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.35);
}

#drw-nav {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  transition: all 0.4s;
  opacity: 0;
  overflow: hidden;
  transform-origin: left center;
  transform: translateX(300px);
  z-index: 993;
}

#drw-nav-trigger:checked~#drw-nav {
  transition-delay: 0.3s;
  transform: none;
  opacity: 1;
  z-index: 999;
}

.drw-nav-inner {
  background-color: #fff;
  box-sizing: border-box;
  width: 100%;
  min-width: 300px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

#drw-nav .logo {
  max-width: 240px;
  text-align: center;
  margin: 30px auto 0;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
}

#drw-nav .g-nav {
  padding-top: 4px;
  margin: 20px auto 30px;
  position: relative;
}

#drw-nav .g-nav::before {
  content: "";
  background-color: #239823;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

#drw-nav .g-nav li {
  line-height: 1.8;
}

#drw-nav .g-nav li a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 20px 8px;
  text-decoration: none;
  display: block;
  position: relative;
}

#drw-nav .g-nav li a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-weight: 900;
  font-size: 14px;
  margin: auto 0;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}

#drw-nav .g-nav li a::after {
  content: "";
  background: linear-gradient(to right, rgba(144,115,75,1) 0%, rgba(150,126,66,1) 10%, rgba(145,119,58,1) 52%, rgba(112,81,24,1) 100%);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

#drw-nav .g-nav li a:hover {
  opacity: 0.8;
}

#drw-nav .g-nav li.accordion .accord-ttl::after {
  content: '\f067';
  font-size: 10px;
}

#drw-nav .g-nav li.accordion .accord-ttl.onclick::after {
  content: '\f068';
}

#drw-nav .g-nav li.accordion .accord-content li {
  border-bottom: none;
}

#drw-nav .g-nav li.accordion .accord-content li a {
  color: #fff;
  font-size: 90%;
  padding: 10px 7% 10px 10%;
}

#drw-nav .g-nav li.active a, 
#drw-nav .g-nav li.accordion .accord-content li.active a {
  /*background-image: url(../img/common/arrow_right_black.png);*/
}

#drw-nav .g-nav li.accordion .accord-content li .txt01 {
  color: #fff;
  border-bottom: 1px solid #c7cbd3;
  padding: 10px 7% 10px 10%;
  display: block;
  position: relative;
}

#drw-nav .g-nav li.accordion .accord-content li .sub li a {
  border-bottom: none;
}

#drw-nav-trigger:checked~#wrapper {
  transition-delay: 0s;
  transform: translateX(-300px);
}

#drw-nav .s-nav {
  margin-top: 20px;
  padding: 20px 4%;
  background-color: #2a262c;
}

#drw-nav .s-nav > li {
  background-color: #fff;
  margin-bottom: 10px;
}

#drw-nav .s-nav > li > a {
  text-decoration: none;
  position: relative;
  display: block;
  line-height: 1;
  padding: 20px 2% 20px calc(2% + 48px);
  box-sizing: border-box;
}

#drw-nav .s-nav > li.tel > a {
  font-size: 180%;
  font-weight: 800;
}

#drw-nav .s-nav > li.mail > a {
  font-size: 120%;
  font-weight: 800;
}

#drw-nav .s-nav > li > a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  transition: all ease-in 0.3s;
}

#drw-nav .s-nav > li.tel > a::before {
  left: 12px;
  width: 26px;
  height: 37px;
  background-image: url(../img/common/contact1_icn.png);
  top: -4px;
}

#drw-nav .s-nav > li.mail > a::before {
  width: 43px;
  height: 30px;
  top: -3px;
  background-image: url(../img/common/contact2_icn.png);
}

@media screen and (min-width: 1001px) {
  #drw-nav {
    display: none;
    opacity: 1;
    transform: translateX(0px);
  }
  .drw-nav-close {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  #drw-nav {
    display: flex;
  }
  .drw-nav-btn {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .drw-nav-btn {
    top: 10px;
  }
}

/* --------------------------------------------------
Header
-------------------------------------------------- */

#header {
  position: relative;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}

#header > #top-bar {
  position: relative;
  width: 100%;
  background-color: #fff;
  transition: all 300ms cubic-bezier(.25,.46,.45,.94);
}

#header > #top-bar > #top-nav,
#header > #top-bar > #g-nav {
  position: relative;
  display: block;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}

#header > #top-bar > #top-nav > .inner,
#header > #top-bar > #g-nav > .inner > .nav {
  max-width: 1300px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  box-sizing: content-box;
}

#header > #top-bar > #top-nav {
  padding: 20px 4%;
}

#header > #top-bar > #top-nav > .inner > #logo {
  position: relative;
}

#header > #top-bar > #top-nav > .inner > #sub-nav {
  display: inline-block;
}

#header > #top-bar > #top-nav > .inner > #sub-nav > .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header > #top-bar > #top-nav > .inner > #sub-nav > .list > li {
  margin-left: 30px;
}

#header > #top-bar > #top-nav > .inner > #sub-nav > .list > li > a,
#header > #top-bar > #g-nav > .inner > .nav > .list > li > a {
  text-decoration: none;
  font-size: 120%;
  font-weight: 600;
  transition: 300ms all ease-in-out;
}

#header > #top-bar > #top-nav > .inner > #sub-nav > .list > li > a:hover,
#header > #top-bar > #g-nav > .inner > .nav > .list > li > a:hover {
  color: #239823;
  opacity: .8;
}

#header > #top-bar > #g-nav {
  padding: 0 4%;
}

#header > #top-bar > #g-nav.fix-nav {
  box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.35);
}

#header > #top-bar > #g-nav > .inner {
  transition: 300ms all ease-in-out;
}

#header > #top-bar > #g-nav.fix-nav > .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding-left: 2%;
  padding-right: 2%;
  box-shadow: 2px 2px 6px #ddd;
  box-sizing: border-box;
  z-index: 9;
}

#header > #top-bar > #g-nav > .inner > .nav > .home-nav {
  position: relative;
}

#header > #top-bar > #g-nav > .inner > .nav > .home-nav > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  border-left: .5px solid #2a262c;
  border-right: .5px solid #2a262c;
  background-color: #2a262c;
  transition: 300ms all ease-in-out;
}

#header > #top-bar > #g-nav > .inner > .nav > .home-nav > a:hover {
  background-color: #fff;
  border-left: .5px solid #ddd;
  border-right: .5px solid #ddd;
  box-shadow: inset 1px 1px 4px #ddd;
}

#header > #top-bar > #g-nav > .inner > .nav > .list {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin-left: 40px;
}

#header > #top-bar > #g-nav > .inner > .nav > .list > li {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

#header > #top-bar > #g-nav > .inner > .nav > .list > li.line {
  position: relative;
  display: block;
  width: 1px;
}

#header > #top-bar > #g-nav > .inner > .nav > .list > li.line::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  width: 1px;
  height: 60%;
  background-color: #ddd;
  margin: auto;
}

#header > #top-bar > #g-nav > .inner > .nav > .list > li > a {
  position: relative;
  text-decoration: none;
  font-size: 120%;
  font-weight: 600;
  padding: 4px 15px;
  transition: 300ms all ease-in-out;
  box-sizing: border-box;
}

#header > #top-bar > #g-nav > .inner > .nav > .list > li > a:hover {
  text-shadow: 1px 1px 2px #ddd;
  opacity: .8;
}


@media screen and (max-width: 1200px) {
  #header > #top-bar > #g-nav > .inner > .nav > .list {
    margin-left: 20px;
  }
  #header > #top-bar > #top-nav > .inner > #sub-nav > .list > li > a,
  #header > #top-bar > #g-nav > .inner > .nav > .list > li > a {
    font-size: 110%;
  }
}

@media screen and (max-width: 1000px) {
  #header > #top-bar #logo img {
    max-width: 180px;
  }
  #header > #top-bar > #top-nav > .inner > #sub-nav,
  #header > #top-bar > #g-nav {
    display: none;
  }
  #header > #top-bar > #top-nav > .inner,
   #header > #top-bar > #g-nav > .inner > .nav {
    justify-content: center;
  }
}

#header > .breadcrumnb {
  background-color: #f0f4f5;
}

#header > .breadcrumnb > .inner {
  max-width: 1300px;
  width: 100%;
  padding: 3px 4%;
  margin: 0 auto;
  box-sizing: content-box;
}

#header > .breadcrumnb > .inner > a {
  position: relative;
  text-decoration: none;
  transition: 300ms all ease-in-out;
}

#header > .breadcrumnb > .inner > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: 300ms all ease-in-out;
  opacity: 0;
}

#header > .breadcrumnb > .inner > a:hover::after {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  #header > .breadcrumnb > .inner {
    box-sizing: border-box;
  }
}

#keyvisual {
  position: relative;
}

#keyvisual > .bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#sub #keyvisual > .bg {
  height: 180px;
}

#sub #keyvisual > .bg::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .7;
}

#keyvisual > .bg > .txt {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 240%;
  color: #fff;
  font-weight: 800;
  text-shadow: 2px 2px 4px #757575;
  padding: 0 2%;
  z-index: 1;
  box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
  #keyvisual > .bg {
    height: 600px;
  }
}

@media screen and (max-width: 1200px) {
  #keyvisual > .bg {
    height: 500px;
  }
  #keyvisual > .bg > .txt {
    font-size: 220%;
  }
  #sub #keyvisual > .bg {
    height: 150px;
  }
}

@media screen and (max-width: 1000px) {
  #keyvisual > .bg {
    height: 50vw;
  }
  #keyvisual > .bg > .txt {
    font-size: 4vw;
  }
    #sub #keyvisual > .bg {
    height: 150px;
  }
  #keyvisual > .bg > .txt {
    font-size: 200%;
  }
}

/* --------------------------------------------------
Contents
-------------------------------------------------- */

#contents {
  width: 100%;
  position: relative;
}


/* --------------------------------------------------
Footer
-------------------------------------------------- */

#footer {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

@media screen and (min-width:1001px) {
  #contact > .inner > .contact-blc .btn:hover {
    opacity: .8;
  }
}

#contact {
  position: relative;
  background-color: #2a262c;
}

#contact > .inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

#contact > .inner > .contact-blc {
  display: flex;
  justify-content: space-between;
}

#contact > .inner > .contact-blc .btn {
  position: relative;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  width: calc((100% - 20px) / 2);
  background-color: #ffffff;
  opacity: 1;
  transition: all ease-in 0.3s;
  overflow: hidden;
  margin-right: 20px;
  padding: 40px 30px;
  box-sizing: border-box;
}

#contact > .inner > .contact-blc .btn:nth-child(2n+2) {
  margin-right: 0;
}

#contact > .inner > .contact-blc .btn::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 30px;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.3s;
}

#contact > .inner > .contact-blc .btn span {
  font-size: 200%;
  font-weight: bold;
  line-height: 0.9;
  padding-left: 35px;
  display: inline-block;
  position: relative;
  transition: all ease-in 0.3s;
  box-sizing: border-box;
}

#contact > .inner > .contact-blc .btn.btn-form span {
  font-size: 150%;
  padding-left: 50px;
}

#contact > .inner > .contact-blc .btn.btn-tel span::before {
  width: 26px;
  height: 37px;
  background-image: url(../img/common/contact1_icn.png);
  top: -4px;
}

#contact > .inner > .contact-blc .btn.btn-form span::before {
  width: 43px;
  height: 30px;
  top: -3px;
  background-image: url(../img/common/contact2_icn.png);
}

#contact > .inner > .contact-blc .btn span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all ease-in 0.3s;
}

@media screen and (max-width:1200px) {
  #contact > .inner > .contact-blc .btn.btn-form span {
    font-size: 120%;
  }
}

@media screen and (max-width:1000px) {
  #contact > .inner > .contact-blc .btn {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    font-size: 1.7vw;
    padding: 35px 20px;
  }

  #contact > .inner > .contact-blc .btn.btn-form span::before {
    width: 4vw;
    height: 3vw;
    top: -0.5vw;
  }

  #contact > .inner > .contact-blc .btn.btn-form span {
    padding-left: 5vw;
  }

  #contact > .inner > .contact-blc .btn.btn-tel span::before {
    width: 2.5vw;
    height: 4vw;
  }

  #contact > .inner > .contact-blc .btn span {
    padding-left: 3vw;
  }
}

@media screen and (max-width:1000px) {
  #contact > .inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width:767px) {
  #contact > .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width:640px) {
  #contact > .inner > .contact-blc {
    flex-wrap: wrap;
    max-width: 70%;
    margin: 0 auto;
  }

  #contact > .inner > .contact-blc .btn {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
    font-size: 110%;
  }

  #contact > .inner > .contact-blc .btn:first-child {
    margin-top: 0;
  }

  #contact > .inner > .contact-blc .btn span {
    padding-left: 40px;
  }

  #contact > .inner > .contact-blc .btn.btn-form span {
    padding-left: 50px;
  }

  #contact > .inner > .contact-blc .btn.btn-tel span::before {
    width: 30px;
    height: 40px;
  }

  #contact > .inner > .contact-blc .btn.btn-form span::before {
    width: 40px;
    height: 30px;
    top: -5px;
  }
}

@media screen and (max-width:480px) {
  #contact > .inner > .contact-blc {
    max-width: 100%;
    font-size: 4vw;
  }

  #contact > .inner > .contact-blc .btn {
    padding: 25px 10px;
  }

  #contact > .inner > .contact-blc .btn.btn-tel span::before {
    height: 30px;
    top: -1px;
  }

  #contact > .inner > .contact-blc .btn span{
    padding-left: 31px;
  }

  #contact > .inner > .contact-blc .btn.btn-form span::before {
    width: 31px;
    height: 25px;
  }

  #contact > .inner > .contact-blc .btn.btn-form span {
    padding-left: 36px;
  }
}

#footer-nav {
  position: relative;
}

#footer-nav > .inner {
  margin-top: 40px;
  margin-bottom: 40px;
}

#footer-nav > .inner > .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#footer-nav > .inner > .list > li {
  width: calc((100% / 6) - ((10px * 5) / 6));
  margin-right: 10px;
}

#footer-nav > .inner > .list > li:nth-child(6n+6) {
  margin-right: 0;
}

#footer-nav > .inner > .list > li > a {
  text-decoration: none;
  position: relative;
  font-weight: 600;
  padding-left: 26px;
  transition: 300ms all ease-in-out;
}

#footer-nav > .inner > .list > li > a:hover {
  opacity: .7;
}

#footer-nav > .inner > .list > li > a::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/mark_icn.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 8px;
}

@media screen and (max-width:1000px) {
  #footer-nav > .inner > .list > li {
    width: calc((100% / 4) - ((10px * 3) / 4));
    margin-right: 10px;
  }
  #footer-nav > .inner > .list > li:nth-child(6n+6) {
    margin-right: 10px;
  }
  #footer-nav > .inner > .list > li:nth-child(4n+4) {
    margin-right: 0;
  }
}

@media screen and (max-width:767px) {
  #footer-nav > .inner > .list > li {
    width: calc((100% / 3) - ((10px * 2) / 3));
    margin-right: 10px;
  }
  #footer-nav > .inner > .list > li:nth-child(4n+4) {
    margin-right: 10px;
  }
  #footer-nav > .inner > .list > li:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media screen and (max-width:480px) {
  #footer-nav > .inner > .list > li {
    width: calc((100% / 2) - ((10px * 1) / 2));
    margin-right: 10px;
  }
  #footer-nav > .inner > .list > li:nth-child(3n+3) {
    margin-right: 10px;
  }
  #footer-nav > .inner > .list > li:nth-child(2n+2) {
    margin-right: 0;
  }
}

#copyright {
  position: relative;
  background-color: #2a262c;
}

#copyright > .inner {
  padding-top: 15px;
  padding-bottom: 15px;
}

#copyright > .inner > .txt {
  text-align: center;
  display: block;
  color: #fff;
}


/* --------------------------------------------------
Other
-------------------------------------------------- */

.hide {
  opacity: 0;
}