* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

header {
  width: 100%;
  background: rgba(153, 143, 131, 0.9);
  height: 61px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header nav ul {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header nav ul li {
  margin: 0 15px;
}

header nav ul li a {
  font-family: Avenir;
  font-size: 1.5rem;
  line-height: 185%;
  letter-spacing: 0.05em;
  color: white;
}

header nav ul li a:hover {
  color: white;
  text-decoration: none;
  opacity: 0.7;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin-top: 0px;
  margin-bottom: 0px;
}

#navMobile {
  display: none;
  z-index: -1;
}

#closeTrigger {
  width: 100vw;
  position: fixed;
  z-index: 2;
  display: none;
  height: 100vh;
}

#burger {
  width: 36px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 4;
  display: none;
}

#burgerWrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

#burgerWrapper span {
  width: 100%;
  height: 1px;
  background-color: #c4c4c4;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#checkBox {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}

#checkBox:checked ~ #barTop {
  -webkit-transform: rotate(45deg) translate(8px, 10px);
          transform: rotate(45deg) translate(8px, 10px);
}

#checkBox:checked ~ #barBottom {
  -webkit-transform: rotate(-45deg) translate(5px, -7px);
          transform: rotate(-45deg) translate(5px, -7px);
}

#checkBox:checked ~ #navMobile {
  -webkit-transform: translateX(-230px);
          transform: translateX(-230px);
}

#mainLogo {
  position: absolute;
  top: 50%;
  left: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 41px;
  display: inline-block;
}

#mainLogo svg {
  width: 100%;
}

#mainLogo:hover {
  opacity: 0.7;
}

#sHero {
  position: relative;
}

#sHero img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

h1 {
  position: absolute;
  z-index: 1;
  left: 187px;
  bottom: 110px;
  font-family: Avenir;
  font-weight: bold;
  font-size: 2.6rem;
  letter-spacing: 0.11em;
  color: white;
}

h1 span {
  font-weight: normal;
}

h2 {
  margin: 123px 0 104px;
  font-family: Avenir;
  font-style: normal;
  font-weight: normal;
  font-size: 3.5rem;
  text-align: center;
  letter-spacing: 0.11em;
  color: #998f83;
}

footer {
  margin-top: 106px;
}

footer h3 {
  font-family: "Avenir", "Avenir", "lightFont", "Palatino Linotype", "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #998f83 !important;
  font-size: 5rem;
  font-size: 3.7rem;
  letter-spacing: 0.05em;
  display: inline-block;
}

footer .footerContainer {
  padding-left: 17%;
  background-color: #eeece9;
  padding-top: 37px;
  padding-bottom: 29px;
}

footer .footerContainer .footerWrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer .footerContainer .footerWrapper a {
  min-width: auto;
}

footer .footerContainer .footerWrapper:nth-child(1) {
  margin-bottom: 50px;
}

footer .footerContainer .footerWrapper ul {
  position: relative;
  margin-left: 8.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transform: translateY(-13%);
          transform: translateY(-13%);
}

footer .footerContainer .footerWrapper ul li a,
footer .footerContainer .footerWrapper ul span {
  font-size: 1.1rem;
  color: #262626;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 240%;
  letter-spacing: 0.06em;
}

footer .footerContainer .footerWrapper ul span {
  pointer-events: none;
}

footer .footerContainer .footerWrapper ul li:hover {
  opacity: 0.7;
}

.contactText {
  font-size: 1.1rem;
  color: #262626;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 240%;
  letter-spacing: 0.06em;
}

#menuWeb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footerLogo {
  width: 355px;
}

#sns {
  position: absolute;
  right: 0;
  bottom: -100px;
  -webkit-transform: translate(-184px, -33px);
          transform: translate(-184px, -33px);
}

#sns a:nth-child(1) {
  margin-right: 15px;
}

#sns a:hover {
  opacity: 0.7;
}

#webc_con .webc_pagetop {
  display: none;
}

.footerUnique {
  padding-left: 17.5%;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.footerUnique a {
  display: inline-block;
  color: #998f83 !important;
}

.footerUnique a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

.footerUnique a img {
  height: 22px;
  padding-left: 15px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.footerUnique div {
  display: inline-block;
}

.footerUnique div:hover {
  opacity: 0.7;
}

.footerUnique div img {
  height: 22px;
  padding-left: 15px;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.footerUnique div:nth-child(2) {
  margin-left: 5%;
}

#infosWeb a,
#infosWeb p {
  color: #262626;
  line-height: 155%;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin: 0;
}

#infosWeb a:hover,
#infosWeb p:hover {
  opacity: 0.7;
}

#infosMobile {
  display: none;
}

#infosMobile a,
#infosMobile p {
  color: #262626;
  line-height: 155%;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

#infosMobile a:hover,
#infosMobile p:hover {
  opacity: 0.7;
}

#infosMobile div {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#copyright {
  margin-top: 16px;
  color: #262626;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

#mobileMenu {
  border-top: 1px solid #998f83;
  padding: 11px 37px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: none;
}

#mobileMenu div.left {
  margin-right: 63px;
}

#mobileMenu div ul li {
  margin-bottom: 12px;
}

#mobileMenu div ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #262626;
}

#mobileSns {
  margin-top: 20px;
}

#mobileSns a {
  width: 25px;
}

#mobileSns a:nth-of-type(1) {
  margin-right: 17px;
}

#mobileSns a img {
  width: 100%;
}

@media (max-width: 1200px) {
  .footerUnique {
    padding-left: 13%;
  }
}

@media (max-width: 1100px) {
  footer .footerContainer .footerWrapper ul {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (max-width: 1029px) {
  #menuWeb {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
}

@media (max-width: 1000px) {
  header nav ul li {
    margin: 0 6px;
  }
  header nav ul li a {
    font-size: 1.3rem;
  }
  #footerLogo {
    width: 320px;
  }
  #infosWeb {
    display: none;
  }
  #infosMobile {
    display: block;
  }
  #contactForm {
    width: 60%;
  }
}

@media (max-width: 832px) {
  footer .footerContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footerContainer .footerWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footerContainer .footerWrapper:nth-child(1) {
    margin-bottom: 20px;
  }
  #sns {
    margin-top: 40px;
    position: static;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  #menuWeb {
    display: none;
  }
}

@media (max-width: 768px) {
  h1 {
    left: 37px;
    top: 44px;
    bottom: auto;
    font-size: 1.75rem;
  }
  h2 {
    font-size: 2.2rem;
    margin: 24px 0 70px 0;
  }
  h3 {
    font-size: 3.5rem;
  }
  .logoPath {
    fill: #231815;
  }
  #mainLogo {
    width: 40px;
    left: 23px;
  }
  header {
    height: 71px;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header nav {
    z-index: 3;
    height: 100vh;
    background-color: rgba(153, 143, 131, 0.9);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 71px 30px 0 20px;
  }
  header nav ul li {
    margin-bottom: 10px;
  }
  header nav ul li a {
    font-size: 1.2rem;
  }
  #navMobile {
    display: inline-block;
    top: -25px;
    left: 70px;
    position: absolute;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 230px;
  }
  #navPc {
    display: none;
  }
  #sHero img {
    height: 270px;
  }
  #mobileMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footerContainer {
    padding-left: 0%;
  }
  .footerUnique {
    padding-left: 7%;
    display: none;
  }
  #infosMobile,
  #sns {
    display: none;
  }
}

@media (max-width: 680px) {
  .footerUnique h2 {
    font-size: 1.9rem;
  }
  .footerUnique a img {
    height: 1.3rem;
  }
  .footerUnique div img {
    height: 1.3rem;
  }
}

@media (max-width: 600px) {
  h3 {
    font-size: 3rem;
  }
}

@media (max-width: 500px) {
  h3 {
    font-size: 2.5rem;
  }
  .footerUnique h3 {
    font-size: 1.7rem;
  }
  .footerUnique a img {
    height: 1.2rem;
  }
  .footerUnique div img {
    height: 1.2rem;
  }
  #footerLogo {
    width: 250px;
  }
}
/*# sourceMappingURL=home.css.map */