@charset "UTF-8";
/* ===============================================
# mixins
=============================================== */
/* ===============================================
# color
=============================================== */
/* ===============================================
# common
=============================================== */
html {
  font-size: 100%;
}

body, span {
  color: #63554C;
  font-family: "Didot", cursive, "Noto Serif";
  font-size: 16px;
}
@media (min-width: 600px) and (max-width: 1024px) {
  body, span {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  body, span {
    font-size: 14px;
  }
}

p {
  line-height: 1.7;
}
@media (max-width: 599px) {
  p {
    line-height: 1.3;
  }
}

.title {
  font-size: 5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  font-style: normal;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .title {
    font-size: 4rem;
  }
}
@media (max-width: 599px) {
  .title {
    font-size: 3rem;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 599px) {
  .section-title {
    font-size: 1.5rem;
    text-align: center;
  }
}

.section-lead {
  font-size: 1.2rem;
  margin: -0.5rem 0 2rem;
  color: #9B918B;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .section-lead {
    font-size: 1rem;
  }
}
@media (max-width: 599px) {
  .section-lead {
    font-size: 0.5rem;
    margin: 0 0 1rem;
    text-align: center;
  }
}

.btn {
  background-color: #4FBF90;
  color: #fff;
  border-radius: 40px;
  padding: 18px 42px;
  margin: 1rem auto;
  display: block;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .btn {
    padding: 10px 30px;
  }
}

@media (min-width: 1025px) {
  .container {
    /* スクロールスナップの設定 */
    overflow: auto;
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    height: 100vh;
  }
}

@media (min-width: 1025px) {
  .area {
    padding: 90px 130px 1rem;
    /* スクロールスナップの設定 */
    scroll-snap-align: start;
    height: 100vh;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .area {
    padding: 50px 2rem;
  }
}
@media (max-width: 599px) {
  .area {
    padding: 60px 1rem;
  }
}

/* 各エリアの背景色 */
.area:nth-child(even) {
  background-color: #FFF7E9;
}

.area:nth-child(odd) {
  background-color: #fff;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}
@media (max-width: 599px) {
  .clear::after {
    content: none;
  }
}

/* ===============================================
# header
=============================================== */
header {
  height: 70px;
  width: 100%;
  padding: 0 130px;
  position: fixed;
  z-index: 1000;
  background-color: #FCCCC2;
}
@media (min-width: 600px) and (max-width: 1024px) {
  header {
    padding: 0 16px;
    top: 0;
  }
}
@media (max-width: 599px) {
  header {
    height: 50px;
    padding: 0 16px;
    top: 0;
  }
}

.header-contents {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 599px) {
  .header-contents {
    height: 50px;
  }
}

.header-logo a {
  display: block;
  padding: 1rem;
}

.header-logo a:hover {
  background-color: #fff;
}

.header-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
@media (max-width: 599px) {
  .header-nav > ul {
    display: block;
  }
}

.nav-list {
  margin: 0;
}

.nav-list a {
  display: block;
  padding: 1.6rem;
}
.nav-list a:hover {
  background-color: #fff;
}
@media (min-width: 1025px) {
  .nav-list + .nav-list {
    margin-left: 60px;
  }
}
@media (max-width: 599px) {
  .nav-list {
    padding: 0 1.25rem;
    text-align: left;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 599px) {
  .hamburger {
    /*ハンバーガーボタン*/
    display: block;
    position: fixed;
    z-index: 3;
    right: 12px;
    top: 6px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    text-align: center;
  }
}

@media (max-width: 599px) {
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    width: 0px;
  }

  .hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    background: #fff;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  .hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-16px) rotate(90deg);
    transform: translateY(-16px) rotate(90deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
  }

  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }

  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }

  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1rem;
    text-decoration: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
  }
}
/* ===============================================
top
=============================================== */
#home {
  /* テキストを画面中央に表示 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../image/kotonoha_main_23398916_m.jpg);
  background-position-y: center;
  background-position-x: right;
}
@media (min-width: 600px) and (max-width: 1024px) {
  #home {
    height: 450px;
  }
}
@media (max-width: 599px) {
  #home {
    height: 400px;
  }
}

/* ===============================================
about us
=============================================== */
#about-us {
  background-image: url(../image/ellipse1.png), url(../image/man_4240819_s.png), url(../image/woman_22271930_s.png);
  background-position: center center, 15% 35%, 85% 85%;
  background-size: 50%, 25%, 25%;
  background-repeat: no-repeat;
}
@media (min-width: 600px) and (max-width: 1024px) {
  #about-us {
    background-position: center center, 5% 25%, 95% 95%;
    background-size: 70%, 25%, 25%;
    height: 500px;
  }
}
@media (max-width: 599px) {
  #about-us {
    background-image: none;
  }
}

.circle-inner {
  text-align: center;
  padding-top: 5rem;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .circle-inner {
    padding-top: 0;
  }
}
@media (max-width: 599px) {
  .circle-inner {
    padding-top: 0;
  }
}

.about-us-text {
  margin-bottom: 1rem;
}

.br-pc {
  display: block;
}
@media (max-width: 599px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 599px) {
  .br-sp {
    display: block;
  }
}

/* ===============================================
flower
=============================================== */
.flowers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5rem;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .flowers {
    padding: 0 2rem;
  }
}
@media (max-width: 599px) {
  .flowers {
    display: block;
    padding: 0 1rem;
  }
}

.flower-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flower-text {
  width: 40%;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .flower-text {
    width: 60%;
  }
}
@media (max-width: 599px) {
  .flower-text {
    width: 100%;
  }
}

.flower-photo > img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .flower-photo > img {
    width: 125px;
    height: 125px;
  }
}
@media (max-width: 599px) {
  .flower-photo > img {
    padding-left: 0;
  }
}

/* ===============================================
shop-access
=============================================== */
#shop-access {
  position: relative;
  width: 100%;
  height: 100vh;
}

.bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: url(../image/roman-kraft-_oH66az_yug-unsplash.jpg) center center/cover;
  opacity: 0.7;
}

.shop-info-wrapper {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 8rem 13rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .shop-info-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 599px) {
  .shop-info-wrapper {
    display: block;
    padding: 50px 1rem;
  }
}

.shop-info-text {
  background-color: rgba(252, 204, 194, 0.9);
  padding: 2rem 4rem;
  width: 500px;
  height: 500px;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .shop-info-text {
    padding: 1rem;
    width: 300px;
    height: 400px;
  }
}
@media (max-width: 599px) {
  .shop-info-text {
    padding: 1rem;
    height: 320px;
    width: 100%;
  }
}

.shop-name {
  font-weight: 700;
  font-size: 20px;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .shop-name {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .shop-name {
    font-size: 16px;
  }
}

.shop-info-item {
  margin-bottom: 32px;
  padding: 0;
}
@media (max-width: 599px) {
  .shop-info-item {
    margin-bottom: 16px;
  }
}

/*Map*/
.map {
  width: 80%;
}
@media (max-width: 599px) {
  .map {
    width: 100%;
  }
}

.shop-info-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 80%;
  margin-left: 20px;
}
@media (max-width: 599px) {
  .shop-info-map {
    margin-left: 0;
    margin-top: 20px;
  }
}

.shop-info-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===============================================
トップへ戻るボタン
=============================================== */
.page_top_btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  border-radius: 30px;
  font-size: 16px;
  font-family: "Italiana", serif;
  font-weight: bold;
  padding: 15px 50px;
  text-align: center;
  background: #F8FAB4;
  color: #331305;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  scroll-behavior: smooth;
}
@media (max-width: 599px) {
  .page_top_btn {
    font-size: 8px;
    padding: 10px 20px;
  }
}

/* hover時 */
.page_top_btn:hover {
  background: rgba(248, 250, 180, 0.7);
  color: rgba(51, 19, 5, 0.7);
}

/* ===============================================
recruit
=============================================== */
.top {
  margin-top: 50px;
  height: 8rem;
}

#recruit-top {
  background: radial-gradient(transparent, rgba(75, 74, 74, 0.7)) fixed, url(../image/carrie-beth-williams-TtKZyFJ7XC0-unsplash.jpg) center 17%/cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

.top-text {
  text-align: center;
  padding: 2rem 0;
  color: #fff;
}

.description {
  margin: 0 130px;
  padding: 4rem 0;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .description {
    margin: 0 50px;
  }
}
@media (max-width: 599px) {
  .description {
    margin: 0 16px;
  }
}

.stuff {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 1rem;
}

table {
  border-collapse: collapse;
  /* 隣接するセルのボーダーを重ねて表示するか、間隔をあけて表示するかを指定するプロパティです。
  【値】
  ・重ねて表示：collapse
  ・間隔をあけて表示：separate */
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 600px) and (max-width: 1024px) {
  table {
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 599px) {
  table {
    margin: 0;
    width: 100%;
  }
}

tr {
  border-bottom: solid #E2E2E2 1px;
}
@media (max-width: 599px) {
  tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0;
  }
}

td {
  padding: 1rem;
}
@media (max-width: 599px) {
  td {
    padding: 0.3rem;
  }
}

.tel,
.mail {
  text-decoration: underline;
  color: #4FBF90;
}

.btn-recruit {
  display: block;
  margin: 2rem auto 0;
}

/* ===============================================
contact
=============================================== */
#contact-top {
  background: radial-gradient(transparent, rgba(75, 74, 74, 0.7)) fixed, url(../image/writing-3321866_1920.jpg) 20% 40%/cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

.contact-message {
  text-align: center;
  margin-bottom: 15px;
}

.labels {
  width: 700px;
  display: block;
  text-align: left;
  margin: 20px auto 5px;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .labels {
    width: 500px;
  }
}
@media (max-width: 599px) {
  .labels {
    width: 290px;
  }
}

input[type=text],
input[type=mail],
textarea {
  display: block;
  width: 700px;
  font-size: 16px;
  margin: auto;
  padding: 15px;
  border: solid 1px #eabdbe;
  border-radius: 25px;
}
@media (min-width: 600px) and (max-width: 1024px) {
  input[type=text],
input[type=mail],
textarea {
    width: 500px;
  }
}
@media (max-width: 599px) {
  input[type=text],
input[type=mail],
textarea {
    width: 290px;
  }
}

.end-message {
  display: none;
}

.false-message {
  display: none;
}

.submit-btn {
  display: block;
  margin: 20px auto;
}

/* ===============================================
thanks
=============================================== */
.thanks {
  width: 100%;
  height: 80vh;
  margin-top: 6rem;
  position: relative;
  background: url(../image/thanks-img.png) center center/contain no-repeat;
  background-blend-mode: darken;
}
@media (max-width: 599px) {
  .thanks {
    height: 50vh;
    margin-top: 2rem;
  }
}

.thanks-wrapper {
  position: absolute;
  top: 5.5rem;
  left: 0;
  right: 0;
  margin: auto;
}

.thanks-title {
  font-size: 24px;
  text-align: center;
}
@media (max-width: 599px) {
  .thanks-title {
    font-size: 20px;
  }
}

.thanks-message {
  text-align: center;
}
@media (max-width: 599px) {
  .thanks-message {
    font-size: 14px;
  }
}

.btn-home {
  display: block;
  margin: 30px auto;
}
@media (max-width: 599px) {
  .btn-home {
    margin: 15px auto;
  }
}