@charset "UTF-8";

:root {
  --link-color: #69d199;
  --text-color: #000;
  background-image: url(img/CF_bg.png);
  background-position: top center;
  background-size: 100vw;
}


/*--------------------------------
 全体
---------------------------------*/
body {
  font-family: "Roboto", "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: var(--text-color);
  margin: 0 auto;
}

a {
  color: var(--link-color);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.br-sp {
  display: none;
}

/*--------------------------------
 レイアウト
---------------------------------*/
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .content {
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    padding: 0 2%;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .content {
    width: 100vw;
    margin: 0 auto;
    padding: 0 2%;
  }
}

/*--------------------------------
 トップへ戻る
---------------------------------*/
.contents {
  height: 10%;
}

h1 {
  text-align: center;
}

.sankaku,
.text {
  text-align: center;
}

#page-top {
  position: fixed;
  bottom: 10%;
  right: 10%;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #4aaf82;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 100px;
  opacity: 0.9;
  transition: all .3s ease;
}

#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

/*--------------------------------
 スクロールエフェクトup
---------------------------------*/
.fadeUpEffect {
  opacity: 0;
}

.fadeUp {
  opacity: 0;
  animation-name: fadeUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }

  50% {
    transform: translate(0, -7px) rotate(0deg);
  }

  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}

.fuwafuwa2 {
  animation: fuwafuwa 4s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(-5deg);
  }

  50% {
    transform: translate(0, -5px) rotate(0deg);
  }

  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}

/*--------------------------------
swiper
---------------------------------*/
.swiper-wrap {
  position: relative;
  width: 500px;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .swiper-wrap {
    width: 600px;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .swiper-wrap {
    width: 300px;
  }
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -30px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
}

.swiper-button-prev {
  left: -20px;
}

.swiper-button-next {
  right: -20px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: "Material Icons Round";
  font-size: 24px;
  color: #000;
}

.swiper-button-prev:after {
  content: "navigate_before";
}

.swiper-button-next:after {
  content: "navigate_next";
}

.swiper-pagination-bullet-active {
  background: #71d09a;
}

/*--------------------------------
 スクロールエフェクトimg
---------------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: calc(100vw / 6);
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .scroll-infinity__item {
    width: calc(100vw / 3);
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .scroll-infinity__item {
    width: calc(100vw / 2);
  }
}

.scroll-infinity__item>img {
  width: 100%;
}

/*--------------------------------
ヘッダー
---------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 9rem 1rem 2rem;
}

.header_logo img {
  width: 30%;
  height: 30%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .header_logo img {
    margin-left: -60%;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .header_logo img {
    width: 4rem;
  }
}

/*--------------------------------
 グローバルナビ
---------------------------------*/
.gnav_list {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}

.gnav_item {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.gnav_link {
  color: #000;
  text-decoration: none;
}

.gnav_link:hover {
  color: #000;
}

.gnav_link--active {
  color: #69d199;
}

.btn-menu {
  display: none;
}


@media screen and (min-width: 768px) and (max-width: 960px) {
  .gnav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    width: 180px;
    height: 100%;
    background-color: rgba(240, 245, 241, 0.973);
    box-shadow: -10px 0 35px -20px rgb(0 0 0 / 25%);
  }

  .gnav_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 250px;
    padding: 90px 20px 20px 30px;
    row-gap: 25px;
  }

  .gnav_link {
    color: #000;
  }

  .gnav_link:hover {
    color: #000;
  }

  .gnav_link--active {
    opacity: 0.6;
  }

  .btn-menu {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-align: center;
    padding: 21px 16px;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    appearance: none;
  }

  .btn-menu_line {
    display: block;
    position: relative;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.4s;
    border-radius: 4px;
    background-color: #000;
  }

  .btn-menu_line::before,
  .btn-menu_line::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: inherit;
    border-radius: 4px;
    background-color: #000;
  }

  .btn-menu_line::before {
    top: -8px;
  }

  .btn-menu_line::after {
    top: 8px;
  }

  .btn-menu.active .btn-menu_line {
    background-color: transparent;
  }

  .btn-menu.active .btn-menu_line::before,
  .btn-menu.active .btn-menu_line::after {
    top: 0;
    background-color: #000;
  }

  .btn-menu.active .btn-menu_line::before {
    transform: rotate(45deg);
  }

  .btn-menu.active .btn-menu_line::after {
    transform: rotate(-45deg);
  }
}


@media screen and (min-width: 375px) and (max-width: 767px) {
  .gnav_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 24px;
    margin-right: 10%;
    width: 20rem;
    height: 100%;
  }

  .gnav_item {
    font-size: 16px;
    line-height: 1;
  }

  @media screen and (max-width: 767px) {

    .gnav {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      z-index: 10;
      width: 180px;
      height: 100%;
      background-color: rgba(240, 245, 241, 0.973);
      box-shadow: -10px 0 35px -20px rgb(0 0 0 / 25%);
    }

    .gnav_list {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 250px;
      padding: 152px 20px 20px 30px;
      row-gap: 35px;
      justify-content: flex-start;
    }

    .gnav_link {
      color: #000;
    }

    .gnav_link:hover {
      color: #000;
    }

    .gnav_link--active {
      opacity: 0.6;
    }

    .btn-menu {
      display: flex;
      position: absolute;
      top: 0;
      right: 0;
      z-index: 10000;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      text-align: center;
      padding: 21px 16px;
      border: none;
      outline: none;
      background: none;
      cursor: pointer;
      appearance: none;
      margin-top: 0rem;
    }

    .btn-menu_line {
      display: block;
      position: relative;
      left: 0;
      width: 100%;
      height: 2px;
      transition: all 0.4s;
      border-radius: 4px;
      background-color: #000;
    }

    .btn-menu_line::before,
    .btn-menu_line::after {
      display: block;
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      transition: inherit;
      border-radius: 4px;
      background-color: #000;
    }

    .btn-menu_line::before {
      top: -8px;
    }

    .btn-menu_line::after {
      top: 8px;
    }

    .btn-menu.active .btn-menu_line {
      background-color: transparent;
    }

    .btn-menu.active .btn-menu_line::before,
    .btn-menu.active .btn-menu_line::after {
      top: 0;
      background-color: #000;
    }

    .btn-menu.active .btn-menu_line::before {
      transform: rotate(45deg);
    }

    .btn-menu.active .btn-menu_line::after {
      transform: rotate(-45deg);
    }
  }
}



/*--------------------------------
 メインビジュアル
---------------------------------*/
#page_top {
  width: 100%;
  height: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  #page_top {
    padding: 32% 8% 20%;
    height: auto;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  #page_top {
    padding: 20% 0 10%;
  }
}

.mv_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.mv_title h1 {
  margin-top: 10%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .mv_title h1 {
    width: 30%;
    height: 2rem;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .mv_title h1 {
    width: 30%;
    height: 2rem;
  }

}

.mv_title h2 {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: bold;
  padding-top: 5%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .mv_title h2 {
    font-size: 1.2rem;
    line-height: 2;
    padding-top: 40%;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .mv_title h2 {
    font-size: 0.9rem;
    padding-top: 38%;
  }
}


.mv_second {
  display: flex;
  justify-content: space-between;
  column-gap: 25rem;
  position: absolute;
  margin-top: 7rem;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .mv_second {
    width: 95%;
    column-gap: 17rem;
    align-items: center;
    margin-top: -27%;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .mv_second {
    width: 95%;
    column-gap: 9rem;
    align-items: center;
    height: auto;
    margin-top: -26%;
  }
}

.mv_img {
  width: 80%;
  height: 80%;
  padding-top: 7%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .mv_title .mv_img {
    width: 30%;
    height: 30%;
    padding-top: 4%;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .mv_title .mv_img {
    width: 40%;
    height: 40%;
    padding-top: 4%;
  }
}


.box_02,
.box_04 {
  display: block;
  margin-top: 4rem;
}

@media screen and (min-width: 768px) and (max-width: 960px) {

  .box_02,
  .box_04 {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {

  .box_02,
  .box_04 {
    margin-top: 2rem;
  }
}

.box_01 {
  margin-top: -15%;
}

/*--------------------------------
about
---------------------------------*/
.about_sec {
  width: 100%;
  height: 100%;
  padding-top: 10%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .about_sec {
    padding-top: 0;
    margin: 0 auto;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .about_sec {
    padding-top: 30%;
    margin: 0 auto;
  }
}

.about_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 2rem;
  padding-bottom: 3%;
}


@media screen and (min-width: 768px) and (max-width: 960px) {
  .about_title {
    padding-bottom: 3%;
    width: 20%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .about_title {
    padding-bottom: 3%;
    width: 20%;
    margin: 0 auto;
  }
}

.about_title h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem 0;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .about_title h2 {
    font-size: 1.8rem;
    padding: 0.5rem 0;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .about_title h2 {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}

.about_box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .about_box {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .about_box {
    flex-wrap: wrap;
  }
}


.about-rightbox {
  position: relative;
  padding: 4rem;
  border-radius: 8px;
  margin-left: 5%;
  box-shadow: 3px 3px 6px;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .about-rightbox {
    padding: 4rem 1rem;
    margin-left: 5%;
    margin-top: 10%;
    box-shadow: 3px 3px 6px;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .about-rightbox {
    padding: 4rem 1rem;
    margin-top: 20%;
    margin-left: 5%;
    box-shadow: 3px 3px 6px;
  }
}



.about-rightbox h4 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 5%;
}

.about-rightbox p {
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.8;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .about-rightbox p {
    font-size: 1rem;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .about-rightbox p {
    font-size: 1rem;
  }
}

/*--------------------------------
menu
---------------------------------*/
.menu_sec {
  max-width: 100%;
  height: 100%;
  padding-top: 10%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .menu_sec {
    padding-top: 0;
    margin: 0 auto;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .menu_sec {
    padding-top: 30%;
    margin: 0 auto;
  }
}

.menu_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 2rem;
  padding-bottom: 5%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .menu_title {
    padding-bottom: 3%;
    width: 20%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .menu_title {
    padding-bottom: 3%;
    width: 20%;
    margin: 0 auto;
  }
}

.menu_title h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem 0;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .menu_title h2 {
    font-size: 1.8rem;
    padding: 0.5rem 0;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .menu_title h2 {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}

.menu_title p {
  width: 70%;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.8;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .menu_title p {
    width: 600px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.8;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .menu_title p {
    width: 300px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.8;
  }
}

.menu_btn {
  text-align: center;
  padding-bottom: 5%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .menu_btn {
    padding-top: 10%;
    padding-bottom: 10%;
  }

}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .menu_btn {
    padding-top: 10%;
    padding-bottom: 10%;
  }
}

button {
  width: 250px;
  height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #4aaf82;
  border: #4aaf82 solid 2px;
  border-radius: 20px 20px;
  text-align: center;
}

button:hover {
  opacity: 0.8;
}


/*--------------------------------
shop
---------------------------------*/
.shop_sec {
  max-width: 100%;
  height: 100%;
  padding-top: 10%;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .shop_sec {
    padding-top: 0;
    margin: 0 auto;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .shop_sec {
    padding-top: 30%;
    margin: 0 auto;
  }
}

.shop_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 2rem;
  padding-bottom: 3%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .shop_title {
    padding-bottom: 3%;
    width: 20%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .shop_title {
    padding-bottom: 3%;
    width: 20%;
    margin: 0 auto;
  }
}

.shop_title h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem 0;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .shop_title h2 {
    font-size: 1.8rem;
    padding: 0.5rem 0;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .shop_title h2 {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}

.shop_box {
  display: flex;
  padding: 1%;
  column-gap: 2rem;

}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .shop_box {
    flex-direction: column;

  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .shop_box {
    flex-direction: column;

  }
}

.map-wrap {
  position: relative;
  width: 100%;
}

.map-wrap-Map {
  height: 0;
  padding-top: 56.25%;
}

.map-wrap-Map-Iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shop-rightbox {
  width: 600px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 3px 3px 6px;
  padding: 4rem;

}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .shop-rightbox {
    width: 90%;
    padding: 2rem;
    margin: 0 auto;
    margin-top: 5%;
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .shop-rightbox {
    width: 90%;
    padding: 2rem;
    margin: 0 auto;
    margin-top: 5%;
  }
}

.shop-rightbox h4 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 8%;
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .shop-rightbox h4 {
    font-size: 1.5rem;
    padding-bottom: 10%;
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .shop-rightbox {
    font-size: 1.5rem;
    padding-bottom: 5%;
  }
}

.shop_rightbox p {
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.8;
  display: inline-block;
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .shop_rightbox p {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .shop_rightbox p {
    font-size: 1.0rem;
  }
}

.time {
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 2%;
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .time {
    font-size: 1.0rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 2%;
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .time {
    font-size: 1.0rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 2%;
  }
}

.shop_btn {
  text-align: center;
  padding-bottom: 5%;
}

button {
  width: 250px;
  height: 50px;
  font-size: 1rem;
  font-weight: bold;
  color: #4aaf82;
  border: #4aaf82 solid 2px;
  border-radius: 20px 20px;
  text-align: center;
  margin-top: 10%;
}

button:hover {
  opacity: 0.8;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer {
  color: #000;
  width: 100%;
  height: 20rem;
  margin: 0 auto;
}

.footer-nav {
  padding-top: 10%;
  margin-bottom: 8rem;
}

.footer-nav_list {
  display: flex;
  column-gap: 30px;
  justify-content: center;
  align-items: center;
}

.footer-nav_item {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.footer-nav_link {
  color: #000;
  text-decoration: none;
}

.footer_copyright {
  font-size: 13px;
  letter-spacing: 0.03em;
  text-align: center;
  padding-bottom: 3%;
}