@charset "utf-8";

/* --------------------------
//
//　共通パーツ
//
/* --------------------------*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  background: #f0ffdc;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
ul,
p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

#syokuinn,
#kaisetubi,
#taisyoutiiki,
#otoiawase {
  scroll-margin-top: min(11.7vw, 160px);
}

@media screen and (max-width: 768px) {

  #syokuinn,
  #kaisetubi,
  #taisyoutiiki,
  #otoiawase {
    scroll-margin-top: 110px;
  }
}


/* pcの時だけ適用されるクラス
主に、pc時のみ改行したいときなどに使う
例）<br class="pc-view"> とhtmlに記述する */
.pc-view {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

/* spの時だけ適用されるクラス 使い方は上記と同じ */
.sp-view {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

/* --------------------------
//
//　header
//
/* --------------------------*/

header {
  position: fixed;
  padding: 20px;
  width: 100%;
  background-color: #fff;
  z-index: 20;
}

.logo-img {
  position: absolute;
  top: 0;
  width: 150px;
}

.logo-img a {
  transition: .3s;
}

.logo-img a:hover {
  opacity: .6;
}


@media screen and (max-width: 1280px) {
  .logo-img {
    width: 130px;
  }
}

@media screen and (max-width: 768px) {
  .logo-img {
    width: 120px;
  }
}

@media screen and (max-width: 540px) {
  .logo-img {
    top: 10px;
    width: 75px;
  }
}


.header-title {
  font-size: clamp(16px, 1.83vw, 25px);
  font-weight: 400;
  color: #76be23;
}

@media screen and (max-width: 768px) {
  header {
    padding: 10px 5px;
  }

  .header-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 540px) {
  .header-title {
    font-size: 12px;
  }
}


/* --------------------------
//
//  hamburgermenu
//
/* --------------------------*/

.hamburger {
  position: fixed;
  top: min(3.3vw, 45px);
  right: min(1.83vw, 25px);
  width: 35px;
  height: 20px;
  z-index: 1;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .hamburger {
    top: 35px;
  }
}

@media screen and (max-width: 540px) {
  .hamburger {
    top: 24px;
  }
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #a2df15;
  transition: .3s;
}

.hamburger:hover span {
  background: #ff7272;
}

.hamburger span:first-of-type {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 50%;
}

.hamburger span:last-of-type {
  top: 100%;
}

.slide-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7988c;
  transform: translateX(100%);
  transition: .5s;
}

.slide-menu-list {
  margin: 15px 0;
  text-align: center;
}

.slide-menu-list a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: .3s;
}

.slide-menu-list a:hover {
  color: #000;
}

.hamburger.is-active span:first-of-type {
  top: 50%;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.is-active span:last-of-type {
  top: 50%;
  transform: rotate(-45deg);
}

.slide-menu.is-active {
  transform: translateX(0);
}

/* --------------------------
//
//　mv
//
/* --------------------------*/

.mv {
  padding-top: min(10.6vw, 145px);
}

.mv._kiraku img {
  width: 85%;
}

.mv img {
  width: 80%;
}

@media screen and (max-width: 768px) {
  .mv {
    padding-top: min(22.7vw, 85px);
  }

  .mv._kiraku img,
  .mv img {
    width: 100%;
  }
}

/* --------------------------
//
//　main-contents
//
/* --------------------------*/

.main-contents {
  padding-inline: 20px;
}

@media screen and (max-width: 768px) {
  .main-contents {
    padding-inline: 10px;
  }
}

.inner {
  margin-inline: auto;
  max-width: 1000px;
}

.text-title {
  padding: 8px;
  font-size: clamp(20px, 1.68vw, 23px);
  color: #0ca886;
  background-color: #f3ffd7;
  border: #bef565 5px dashed;
  box-shadow: 0 0 0 9px #f3ffd7;
}

.kiraku-title {
  font-size: clamp(25px, 2.2vw, 30px);
  font-weight: 700;
  color: #80c72e;
}

@media screen and (max-width: 768px) {

  .kiraku-title,
  .text-title {
    font-size: 18px;
  }
}

.kiraku-text {
  margin-top: 20px;
  padding: 15px;
  font-size: clamp(18px, 1.46vw, 20px);
  font-weight: 500;
  color: #0b5846;
  background-color: #fff;
}

.text-normal {
  margin-top: 30px;
  font-size: clamp(18px, 1.46vw, 20px);
  font-weight: 500;
  color: #0b5846;
}

.text-normal._kiraku-kigaru {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .kiraku-text {
    margin-top: 15px;
    padding: 10px;
    font-size: 16px;
  }

  .text-normal {
    margin-top: 18px;
    font-size: 16px;
  }
}

.detail {
  margin-top: 60px;
}

.detail-text {
  margin-top: 50px;
  /* font-family: "ヒラギノ明朝"; */
  font-size: clamp(18px, 1.46vw, 20px);
  color: #0b5846;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.detail-text._tel {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .detail {
    margin-top: 40px;
  }

  .detail-text {
    margin-top: 30px;
  }

  .detail-text._tel {
    margin-top: 30px;
  }
}

.info {
  margin-top: 50px;
}

.info._mail {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .info {
    margin-top: 30px;
  }

  .info._mail {
    margin-top: 20px;
  }
}

.info a {
  transition: .3s;
}

.info a:hover {
  opacity: .6;
}

.info img {
  width: 50%;
}

.info._mail img {
  width: 52%;
}

@media screen and (max-width: 768px) {
  .info img {
    width: 80%;
  }

  .info._mail img {
    width: 82%;
  }

  .map {
    width: 93.3vw;
    height: 93.3vw;
  }
}

@media screen and (max-width: 768px){
  .t2024{
    width: 80%;
  }
}

 .t2024 { text-align: center; }

a {
   color: #0b5846;
}



/* --------------------------
//
//　footer
//
/* --------------------------*/

.footer-contents {
  margin-top: 50px;
  border-top: 2px solid #7fc939;
}

@media screen and (max-width: 768px) {
  .footer-contents {
    margin-top: 30px;
  }

}

.footer-text {
  font-size: 16px;
  color: #0b5846;
}

.footer-text:first-of-type {
  margin-top: 50px;
}

.footer-text:last-of-type {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .footer-text:first-of-type {
    margin-top: 30px;
  }
}

/* --------------------------
//
//　slider
//
/* --------------------------*/

.container {
  margin-top: 50px;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 780px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .container {
    margin-top: 30px;
  }
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

.swiper-pagination {
  bottom: -20px !important;
}

.swiper-pagination-bullet {
  background-color: #0ca886 !important;
  transition: .3s;
}

.swiper-pagination-bullet:hover {
  opacity: .6;
}

.swiper-button-prev,
.swiper-button-next {
  color: #0ca886 !important;
  transition: .3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: .6;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 35px !important;
}

@media screen and (max-width: 768px) {

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 30px !important;
  }
}

@media screen and (max-width: 540px) {

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 25px !important;
  }
}

.swiper-button-prev {
  left: -20px !important;
}

.swiper-button-next {
  right: -20px !important;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: -10px !important;
  }

  .swiper-button-next {
    right: -10px !important;
  }
}

/* --------------------------
//
//　top button
//
/* --------------------------*/

.top-button {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border: 3px solid #7fc939;
  border-radius: 50%;
  background-color: #fff;
  z-index: 10;
  cursor: pointer;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .top-button {
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
  }

  .top-button-mark::before {
    width: 10px;
    height: 10px;
  }
}

.top-button:hover,
.top-button:hover .top-button-mark::before {
  border-color: #ff7272;
}

.top-button.is-active {
  visibility: visible;
  opacity: 1;
}

.top-button-mark {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.top-button-mark::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  width: 20px;
  height: 20px;
  border-top: 3px solid #7fc939;
  border-right: 3px solid #7fc939;
  transition: .3s;
}