@charset "UTF-8";
/* ::::::::::  トップページ  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* =========================================================
kv
========================================================= */
.kv {
  background: #F8F7F7;
}

.kv .wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
  height: 660px;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .kv .wrapper {
    height: auto;
    padding-bottom: 70px;
  }
}

.kv .photo {
  margin-left: auto;
  margin-right: -30px;
}

@media only screen and (max-width: 767px) {
  .kv .photo {
    margin: 0;
  }
}

.kv .textArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .kv .textArea {
    padding-top: 100px;
    padding-bottom: 0;
  }
}

.kvLead {
  display: block;
  margin-bottom: 20px;
  letter-spacing: .2em;
  font-size: 3.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .kvLead {
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 2rem;
  }
}

.kvLead span {
  display: inline-block;
  background: #589647;
  padding: 5px 20px;
  margin: 10px 0;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .kvLead span {
    padding: 5px 10px;
    margin: 5px 0;
  }
}

.kvScroll {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  letter-spacing: 0.05em;
  color: #589647;
  text-align: center;
  font-family: "Signika Negative", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
}

.kvScroll a {
  position: relative;
  display: block;
  color: inherit;
}

.kvScroll span {
  overflow: hidden;
  display: block;
  position: relative;
  background: #fff;
  width: 2px;
  height: 40px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .kvScroll span {
    height: 30px;
  }
}

.kvScroll span::after {
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  background-color: #589647;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  animation: borderAnim 1.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@media only screen and (max-width: 767px) {
  .kvScroll span::after {
    height: 16px;
    animation: borderAnimSp 1.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  }
}

@keyframes borderAnim {
  0% {
    bottom: 40px;
  }
  100% {
    bottom: -24px;
  }
}

@keyframes borderAnimSp {
  0% {
    bottom: 40px;
  }
  100% {
    bottom: -16px;
  }
}

/* =========================================================
concept
========================================================= */
.conceptWrap {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .conceptWrap {
    display: block;
  }
}

.conceptWrap .textArea {
  width: 50%;
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .conceptWrap .textArea {
    width: 100%;
    padding-bottom: 0;
  }
}

.conceptWrap .illust {
  order: 1;
  margin: -50px 50px 0 auto;
}

@media only screen and (max-width: 767px) {
  .conceptWrap .illust {
    display: block;
    width: 220px;
    margin: 0 auto 10px;
  }
}

.conceptList {
  display: flex;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .conceptList {
    display: block;
  }
}

.conceptList li {
  background: #F8F7F7;
  width: calc(50% - 15px);
  padding: 50px;
  margin: 0 30px 0 0;
}

@media only screen and (max-width: 767px) {
  .conceptList li {
    width: 100%;
    padding: 30px 20px;
  }
  .conceptList li + li {
    margin-top: 20px;
  }
}

.conceptList li:nth-child(even) {
  margin-right: 0;
}

.conceptList li .photo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 253px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .conceptList li .photo {
    height: auto;
    margin-bottom: 15px;
  }
  .conceptList li .photo img {
    width: auto;
    max-height: 100%;
  }
}

.conceptList li h4 {
  margin-bottom: 10px;
  text-align: center;
  color: #589647;
  letter-spacing: .14em;
  font-size: 1.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .conceptList li h4 {
    height: auto;
    margin-bottom: 10px;
  }
}

.conceptList li h4 sup {
  position: relative;
  top: -5px;
  font-size: 1rem;
}

.conceptList li h4 small {
  font-size: 1.5rem;
}

/* =========================================================
store
========================================================= */
.store {
  display: flex;
  padding: 80px 0;
}

@media only screen and (max-width: 767px) {
  .store {
    position: relative;
    display: block;
    padding: 30px 20px;
  }
}

.store .map {
  order: -1;
  width: calc(50% + 15px);
  padding-right: 80px;
}

@media only screen and (max-width: 767px) {
  .store .map {
    width: 100%;
    padding-right: 0;
    padding-bottom: 100px;
  }
}

.store .map iframe {
  width: 100%;
  height: 420px;
}

@media only screen and (max-width: 767px) {
  .store .map iframe {
    height: 300px;
  }
}

.store .textArea {
  width: 585px;
}

@media only screen and (max-width: 767px) {
  .store .textArea {
    width: 100%;
  }
}

.store .textArea .secTitle {
  margin-top: -.35em;
}

.store .textArea .table01 {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .store .textArea .table01 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .store .textArea .btn {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    padding: 0 20px;
  }
}

/* =========================================================
staff
========================================================= */
.staffList {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .staffList {
    display: block;
  }
}

.staffList > li {
  width: 380px;
  margin: 30px 30px 0 0;
}

@media only screen and (max-width: 767px) {
  .staffList > li {
    width: 100%;
    margin: 30px 0 0;
  }
}

.staffList > li:nth-child(3n) {
  margin-right: 0;
}

.staffList > li:nth-child(-n + 3) {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .staffList > li:nth-child(-n + 3) {
    margin-top: 30px;
  }
}

.staffList > li:first-child {
  margin-top: 0;
}

.staffList > li .photo {
  margin-bottom: 15px;
}

.staffList > li .staffName {
  text-align: center;
  color: #589647;
  font-size: 2rem;
  font-weight: bold;
}

.staffList > li .staffName small {
  margin-left: 20px;
  letter-spacing: .1em;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .staffList > li .staffName small {
    display: block;
    margin-left: 0;
  }
}

.staffList > li .staffName + .tagList {
  margin-top: 0;
}

.staffList > li .staffJob {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.5rem;
}

.staffList > li p:not([class]) {
  letter-spacing: .15em;
}

.staffList > li .tagList {
  margin-top: 1.2em;
  letter-spacing: .1em;
}

.staffList > li .tagList li {
  display: inline-block;
}

.staffList .recruit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 20px 30px;
}

.staffList .recruit .staffName {
  margin-bottom: 10px;
}

/* =========================================================
information
========================================================= */
.information .wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
}

@media only screen and (max-width: 767px) {
  .information .wrapper {
    display: block;
  }
}

.information .secTitle {
  width: 100%;
}

@media only screen and (max-width: 320px) {
  .information .secTitle {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.information .fbArea {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .information .fbArea {
    width: 100%;
  }
}

.information .fbArea .fb-container {
  width: 100%;
  max-width: 500px;
}

.information .bnrList {
  width: 50%;
  padding-left: 70px;
}

@media only screen and (max-width: 767px) {
  .information .bnrList {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
}

.information .bnrList > li + li {
  margin-top: 30px;
}

.slick-slider {
  position: relative;
}

.slick-slider img {
  width: 100%;
  height: auto;
}

.slick-slider .slick-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  bottom: 30px;
  z-index: 1;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  margin: auto;
  cursor: pointer;
  text-indent: -9999px;
}

.slick-slider .slick-arrow::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 10px;
  border-top: 1px solid #589647;
  border-right: 1px solid #589647;
  width: 15px;
  height: 15px;
  margin: auto;
  transform: rotate(45deg);
}

.slick-slider .slick-prev {
  left: -20px;
}

.slick-slider .slick-prev::before {
  left: 10px;
  right: 0;
  transform: rotate(-135deg);
}

.slick-slider .slick-next {
  right: -20px;
}

.slick-slider .slick-dots {
  position: static;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .slick-slider .slick-dots {
    bottom: 0;
  }
}

.slick-slider .slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
}

@media only screen and (max-width: 767px) {
  .slick-slider .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }
}

.slick-slider .slick-dots li button {
  border: none;
  border-radius: 50%;
  border: 1px solid #589647;
  background: none;
  width: 10px;
  height: 10px;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .slick-slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}

.slick-slider .slick-dots li.slick-active button {
  background: #589647;
}

/*# sourceMappingURL=map/top.css.map */
