@charset "UTF-8";


/*----------------------------------------
	base
----------------------------------------*/
:root {
  --link_color: #37952F;
  --link_color2: #FF7A00;
  --link_color3: #EBF4EF;
  --link_color4: #fff;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch
}


body {
  color: #333;
  font-family: "M PLUS Rounded 1c", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


a {
  color: #37952F;
  transition: color 0.3s;
}

a:hover {
  color: #70cc33;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 4%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

.container__wrap {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 4%;
}

/*footer-page-top*/
#page-top span::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: -9px;
  left: 50%;
  left: 19px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--link_color2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

.footer {
  margin-top: auto;
}

/*----------------------------------------
	swiper
----------------------------------------*/
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 20px 20px !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background: var(--link_color) !important;
}


.p-swiper-container {
  position: relative;
  height: 100vh;
}

.swiper-slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  overflow: hidden;
  height: 50px;

}

.p-swiper__desc {
  position: absolute;
  width: 100%;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.p-swiper__heading {
  font-size: clamp(18px, 4vw, 60px);
  padding-bottom: 10px;
  text-shadow: 8px 3px 11px rgba(0, 0, 0, 0.3);
}

.p-swiper__text {
  font-size: clamp(18px, 3vw, 25px);
  text-shadow: 8px 3px 11px rgba(0, 0, 0, 0.3);
}

.swiper-pagination.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 15px !important;
  /* 追加 */
}


/*----------------------------------------
	header
----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 50px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__logo {
  flex-shrink: 0;
  width: 105px;
  margin-left: 20px;
}

.header__logo:hover {
  opacity: 0.8;
}

.gnav__link.-color {
  color: #e27b1b;
}

.gnav__link.-color:hover {
  opacity: 0.8;
  color: var(--link_color);
}

@media screen and (min-width: 992px), print {
  .header {
    height: 80px;
  }

  .header__logo {
    width: 210px;
    margin-left: 50px;
  }
}



/*----------------------------------------
	hamburger
----------------------------------------*/
.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  background: #37952F;
  cursor: pointer;
}

.hamburger__line {
  position: relative;
  width: 25px;
  height: 2px;
  background: #fff;
}

.hamburger__line::before,
.hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}

.hamburger__line::before {
  top: -8px;
}

.hamburger__line::after {
  bottom: -8px;
}

/*閉じる*/
/*aria-expandedの状態でスタイルを適用するように変更*/
.hamburger[aria-expanded="true"] .hamburger__line {
  background: transparent;
}

.hamburger[aria-expanded="true"] .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media screen and (min-width: 992px), print {
  .hamburger {
    display: none;
  }
}

/*----------------------------------------
	gnav
----------------------------------------*/

.gnav__link {
  position: relative;
  color: inherit;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.gnav__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 4px;
  background: #509422;
  transition: transform 0.3s;
  transform: scale(0, 1);
}

@media screen and (max-width: 991px) {
  .gnav {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    height: calc(100vh - 50px);
    background: #fff;
    overflow-y: auto;
    /*中身があふれたら縦スクロール*/
    -webkit-overflow-scrolling: touch;
    /*iOSで慣性スクロール有効化*/
  }

  .gnav__list {
    border-top: 1px solid #e7e7e7;
  }

  .gnav__item {
    border-bottom: 1px solid #e7e7e7;
  }

  .gnav__link {
    display: block;
    padding: 15px 20px;
  }

  .gnav__link[aria-current] {
    padding-left: 15px;
    border-left: 5px solid #37952F;
  }

}

@media screen and (min-width: 992px), print {
  .gnav {
    display: block !important;
    position: static;
    width: auto;
    height: auto;

  }

  .gnav__list {
    display: flex;
  }

  .gnav__link {
    display: block;
    padding: 1em;
    font-size: 18px;
  }

  .gnav__link[aria-current]::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #37952F;
  }
}


.mainvisual {
  width: 100%;
  min-height: calc(100vh - 80px);
  object-fit: cover;
  object-position: center;
  position: relative;
}

.mainvisual__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mainvisual__title.-text {
  font-size: clamp(30px, 6vw, 68px);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.link__wrap {
  padding: 45px 0;
  margin: 20px 0;
  position: relative;
  text-align: center;
}

.btn--default {
  background: var(--link_color2);
  color: #fff;
  padding: 1.2em 10em;
  position: relative;
  text-decoration: none;
  border-radius: 50px;
  width: 200px;
}

.btn--default:hover {
  color: #fff;
  opacity: 0.8;
}

.btn--default::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.2s ease-in;
}

.btn--default:hover::before {
  right: 12px;
}

.contents {
  max-width: 100%;
}

.color {
  background: var(--link_color3);
}

.color--primary {
  background-color: var(--link_color4);
}


.color--secondary-background {
  background: url(../image/抽象的な緑背景.jpeg) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contents__title {
  position: relative;
  font-size: clamp(18px, 3vw, 40px);
  margin: auto;
  text-align: center;
  padding: 40px 0;
}


.color--secondary {
  padding-top: 40px;
  background: var(--link_color3);
}

.copryright {
  padding-bottom: 40px;
}


.contens-underline {
  display: inline-block;
  border-bottom: 4px solid var(--link_color);
  padding-bottom: 3px;
}


.contents__list,
.contents__txt {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
}

.contents__ttl {
  position: relative;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 5px;
  color: var(--link_color2);
}

.contents__ttl::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 50px;
  color: #e5c046;
  font-size: 30px;
}

.contents__ttl::after {
  content: '';
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #e5c046;
}

.contents__txt {
  line-height: 1.6;
  padding-bottom: 30px;
}

.contents__thumb {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.contents__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contents__card {
  flex-grow: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

.info dl {
  border-bottom: 1px solid #ccc;
  padding: 20px 4%;
  margin: auto;
  width: 100%;
}

.info dl:hover {
  opacity: 0.8;
  transition: 0.3s;
  background-color: #f8f2f2;

}

.info dd {
  overflow: hidden;
}

.info dd span {
  box-sizing: border-box;
  display: inline-block;
  width: 5em;
  margin-right: .5em;
  padding: 0 .5em;
  background-color: var(--link_color2);
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center
}

.info dt {
  padding-bottom: 6px;
}

.btn {
  display: inline-block;
  min-width: 10%;
  margin: auto;
  white-space: nowrap;
  padding: 3px 20px;
  margin: 30px;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
}

.btn--secondary {
  background-color: var(--link_color2);
  color: var(--link_color4);
  font-size: 30px;
  transition: .5s;
  border-radius: 50px;
}

.btn--secondary-revese {
  background-color: var(--link_color);
  color: var(--link_color4);
  font-size: 30px;
  transition: .5s;
  border-radius: 50px;
  display: inline-block;
}

.btn--secondary-icon {
  background-color: #cc3344;
  color: var(--link_color4);
  font-size: 20px;
  transition: .5s;
  border-radius: 50px;
  display: inline-block;
}

.material-symbols-outlined {
  font-size: 2em;
  vertical-align: middle;
}

.btn:hover {
  transform: scale(1.1, 1.1);
  color: var(--link_color4);
  opacity: 0.8;
}

.contact__item {
  display: block;
  text-align: center;

}


.Line-icon {
  width: 64.5px;
  height: auto;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
}


.Line__link,
.web__link {
  height: 100%;
  padding: 34px 10px;
  object-fit: contain;
}

.bg {
  background-color: var(--link_color2);
}

.bg-web {
  background-color: #cc3344;
}

.bg:hover,
.bg-web:hover {
  opacity: 0.8;
  color: var(--link_color4);
  transition: .3s;
}

.web-reservation-icon {
  max-height: 100%;
  width: 64.5px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
}


.biz-hour {
  border-collapse: collapse;
  margin: auto;
  overflow-x: scroll;
  text-align: center;
  width: 100%;
  height: 200px;
}

.biz-hour th {
  /* １番上の線 */
  /* #A28C63っていうのが色の名前なので、ここをお好みで */
  border-top: 2px solid #A28C63;
}

.biz-hour th, .biz-hour td {
  padding: 20px 10px;
  text-align: center;
  /* ２番目以降の線 */
  /* 色はお好みで */
  border-bottom: 2px solid #A28C63;
}

.time-note:nth-of-type(1) {
  margin-top: 10px;
  line-height: 1.7;
}

.time-note:last-child {
  margin-bottom: 20px;
}

.item-primary {
  font-size: 0.8em;
}

.gnav__list-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.gnav__list-footer {
  flex-direction: column;
}

.copryright {
  text-align: center;
  margin-top: 100px;
  margin-top: 80px;
  font: 32px;
}

@media screen and (min-width: 992px) {
  .gnav__list-footer {
    flex-direction: row
  }
}

/* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */
@media screen and (max-width: 768px) {
  .biz-hour th, .biz-hour td {
    padding: 10px 10px;
  }

  .contents__title {
    padding: 40px 0;
  }
}

.biz-hour th {
  font-weight: normal;
}

/* 「土」の文字色 */
.biz-hour th.sat {
  color: #3db2da;
}

/* 「日」の文字色 */
.biz-hour th.sun {
  color: #e66a6a;
}

@media screen and (max-width:768px), print {
  .Line-icon, .web-reservation-icon {
    display: none;
  }

  .Line__link, .bg {
    display: none;
  }

  .web__link, .bg-web {
    display: none;
  }
}

@media screen and (max-width:992px), print {
  .Line-icon, .web-reservation-icon {
    display: none;
  }

  .Line__link, .bg {
    display: none;
  }

  .web__link, .bg-web {
    display: none;
  }

}

@media screen and (min-width: 768px), print {
  .info dt {
    clear: left;
    float: left;
    width: 22%;
  }

  .info dd {
    margin-left: 16%;
  }

  .color--secondary {
    padding-top: 80px;
  }

  .contents__title {
    padding: 80px 0;
  }
}

@media screen and (min-width: 992px), print {
  .info dt {
    clear: left;
    float: left;
    width: 22%;
  }

  .info dl {
    width: 920px;
  }

  .info dd {
    margin-left: 16%;
  }
}

@media screen and (max-width:768px), print {
  .btn--default {
    padding: 1em 5em;
  }

  .copryright {
    margin-top: 30px;
  }
}


@media screen and (min-width: 992px), print {
  .contents__card {
    width: calc((100% - 40px) /4);
  }

  .contents__card::after {
    content: "";
    display: block;
    width: calc((100% - 40px) /4);
  }

  .btn--default {
    padding: 1.1em 8em;
  }

  .contents__list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1200px), print {
  .contents__card {
    width: calc((100% - 60px) /4);
  }

}