
/* ==================================================== */
/* 共通 */

* { 
  margin: 0px; 
  padding: 0px; 
  /* outline: 2px red solid; */
}

body {
  font-family: "Marcellus", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #5e5e5e;
  letter-spacing: .1em;
}

.container {
  margin: 0 40px;
}

h1, h2, h3, h4, h5, h6, small {
  line-height: 1.5;
}

p {
  line-height: 2.1;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 14px;
}

small {
  font-size: 12px;
}

.br-sp {
  display: none;
}

.pic-pc {
  display: block;
}

.pic-sp {
  display: none;
}

img {
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity .3s;
}

a:hover {
  opacity: .7;
}

.page-fadein {
  animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

.txt-small {
  font-size: 85%;
}

.sp-show {
  display: none;
}



@media (max-width: 1280px) {

  .container {
    margin: 0 24px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  h4 {
    font-size: 18px;
  }
  
  h5 {
    font-size: 16px;
  }
  
  h6 {
    font-size: 14px;
  }
  
  p {
    font-size: 12px;
  }
  
  small {
    font-size: 10px;
  }
  
  .br-sp {
    display: block;
  }
  
  .pic-pc {
    display: none;
  }
  
  .pic-sp {
    display: block;
  }
  
  .sp-show {
    display: block;
  }
  
  .pc-show {
    display: none;
  }

}



/* ==================================================== */
/* ヘッダー */

header {
  position: fixed;
  z-index: 10;
  top: -88px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 0;
  transition: .5s; /* アニメーションタイミング */
}

#fixed-header.is-show {
  top: 0;
}

.header-logo-txt-menu-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-txt {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header-logo img {
  height: 48px;
  margin-left: 4px;
}

.header-txt-wrap {
  display: flex;
  gap: 32px;
}

.header-txt p {
  font-size: 12px;
  text-align: left;
}

.header-txt-wrap a {
  position: relative;
}

.header-txt-wrap a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #5e5e5e;
  bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
  
.header-txt-wrap a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
 }


 @media (max-width: 1280px) {

  header {
    padding: 16px 0;
    top: -72px;
  }
  
  .header-logo img {
    height: 40px;
  }
  
  .header-txt p {
    font-size: 9px;
  }
  
  .header-logo-txt {
    gap: 24px;
  }

  .header-nav {
    display: none;
  }

 }




/* ハンバーガー */

/* ハンバーガー クリック前 */

.hamburger {
  width: 50px;
  margin-left: 40px;
}

.nav_toggle {
  display: block;
  position: relative;
  width: 2rem;
  height: 1rem;
  cursor: pointer;
  margin-left: auto;
  text-align: right;
}

.nav_toggle i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  transition: transform .6s, opacity .6s;
}

.nav_toggle i:nth-child(1) {
  top: 4px;
  width: 125%;
  right: 0;
}

.nav_toggle i:nth-child(2) {
  bottom: 4px;
  width: 85%;
  right: 0;
}

#open.hide {
  display: none;
}



/* ハンバーガー クリック後 */

.nav_toggle.show i:nth-child(1) {
  transform: translateY(3.5px) rotate(-30deg);
  width: 100%;
}

.nav_toggle.show i:nth-child(2) {
  transform: translateY(-3.5px) rotate(30deg);
  width: 100%;
}



/* メニューリスト オーバーレイ */

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 1);
  text-align: center;
  padding: 20px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s;
  z-index: 99;
  overflow-y: scroll;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.overlay #close {
  cursor: pointer;
}

.overlay nav {
  margin: 80px auto;
  width: 300px;
  max-height: calc(100vh - 100px);
}

.overlay ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.overlay li {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
}

.overlay li span {
  font-size: 70%;
  vertical-align: -4px;
}

.overlay.show li {
  opacity: 1;
  transform: none;
}

.overlay.show li:nth-child(1) {
  transition-delay: .1s;
}

.overlay.show li:nth-child(2) {
  transition-delay: .2s;
}

.overlay.show li:nth-child(3) {
  transition-delay: .3s;
}

.overlay.show li:nth-child(4) {
  transition-delay: .4s;
}

.overlay.show li:nth-child(5) {
  transition-delay: .5s;
}

.overlay.show li:nth-child(6) {
  transition-delay: .6s;
}

.overlay.show li:nth-child(7) {
  transition-delay: .7s;
}

.overlay.show li:nth-child(8) {
  transition-delay: .8s;
}

.overlay.show li:nth-child(9) {
  transition-delay: .9s;
}

.overlay.show li:nth-child(10) {
  transition-delay: 1s;
}


@media (max-width: 1280px) {
  
  .overlay {
    padding: 16px 0;
  }

}




/* ==================================================== */
/* ヒーロー */

.hero {
  padding-top: 0px;
  position: relative;
}

.sl-slider {
  overflow: hidden;
}

.sl-slider img {
  width: 100%;
  /* height: calc(100vh - 88px); */
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.slick-active,
.slick-slide:has(+ .slick-active),
.slick-slide:last-child {
  animation: zoom-out 24s ease-out infinite;  
}

.slick-active + .slick-slide:last-child {
  animation: none;
}

@keyframes zoom-out {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.hero-txt-wrap {
  position: absolute;
  top: 40px;
  left: 40px;
  color: #fff;
  text-align: left;
}

.hero-txt-wrap h5 {
  letter-spacing: .2em;
}

.hero-txt-wrap h2 {
  letter-spacing: .2em;
}

.hero-txt-wrap-sp {
  display: none;
}



@media (max-width: 1280px) {
  
  .hero {
    padding-top: 0px;
  }
  
  .sl-slider img {
    height: 100vh;
  }

  .hero-txt-wrap {
    top: 24px;
    left: 24px;
  }

  .hero-txt-wrap-pc {
    display: none;
  }

  .hero-txt-wrap-sp {
    display: block;
  }

  .hero-txt-wrap-sp h2 {
    line-height: 1.3em;
    margin-top: 4px;
    letter-spacing: 0.15em;
  }


}


/* ==================================================== */
/* jQuery フェードイン */

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translate(24px, 24px);
  transition: opacity 1s, visibility 1s, transform 1s;
}


/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}




/* ==================================================== */
/* リード・目次 */

.lead-sec {
  padding: 100px 0 100px;
}

.lead-head-wrap-1 {
  text-align: center;
  color: #1D4931;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lead-head-wrap-1 h1 {
  letter-spacing: .1em;
}

.lead-head-wrap-2 {
  text-align: center;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lead-p-wrap {
  width: 964px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px auto 0px;
}


 @media (max-width: 1280px) {

  .lead-sec {
    padding: 64px 0 64px;
  }

  .lead-head-wrap-2 {
    margin-top: 56px;
  }

  .lead-p-wrap {
    width: 100%;
  }
  
 }




/* ==================================================== */
/* ボタン等 */


.btn-sec {
  margin-top: 80px;
}

.btn {
  display: block;
  width: 400px;
  background: #1D4931;
  color: #fff;
  border: #1D4931 1px solid;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
  transition: background-color .5s;
  margin: 0 auto;
}

.btn-2 {
  background: #fff;
  color: #1D4931;
}

.btn:hover {
  background: #fff;
  color: #1D4931;
}

.btn-2:hover {
  background: #1D4931;
  color: #fff;
}

.page-link {
  height: 88px;
}

.fa-icon {
  margin-right: 8px;
}

@media (max-width: 1280px) {

  .btn {
    width: 100%;
    max-width: 400px;
    font-size: 13px;
    letter-spacing: 0.07em;
  }

  .btn-sec {
    margin-top: 48px;
  }

  .page-link {
    height: 56px;
  }

}


/* ==================================================== */
/* はみ出しスライド */

.overflow-right {
  padding: 40px 0 40px;
  position: relative;
}

.overflow-right-back {
  width: 100%;
  height: 300px;
  background-color: #e5e5e5;
  z-index: -10;
  position: absolute;
  bottom: 0;
}

.inner {
  margin-inline: auto;
  max-width: 1060px;
  padding: 0 30px;
}

.overflow-right__sliderWrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%); // 追加
}

.splide__slide {
  display: grid;
  width: 100%;
}

.splide__slide img {
  width: 100%;
}

.btn-mini {
  display: block;
  width: 100px;
  background: #fff;
  color: #1D4931;
  border: #1D4931 1px solid;
  text-align: center;
  padding: 4px 0;
  font-size: 13px;
  transition: background-color .5s;
  margin-top: 16px;
}

.btn-mini:hover {
  background: #1D4931;
  color: #fff;
}


.arrow-wrap {
  display: flex;
  gap: 8px;
  margin-top: 64px;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 1px;
  margin-top: 13.5px;
  border-radius: 9999px;
  background-color: #5e5e5e;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #5e5e5e;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}





/* ==================================================== */
/* 各コンテンツ */

.contents {
  padding: 100px 0 100px;
}

.content-wrap {
  width: 1120px;
  margin: 0 auto;
  padding: 40px 0 40px;
}

.content-store-name {
  display: flex;
  gap: 24px;
  align-items: baseline;
  color: #1D4931;
  border-bottom: #5e5e5e solid 1px;
  padding-bottom: 8px;
}

.content-catch-wrap {
  margin-top: 64px;
}

.content-catch-wrap h5 {
  margin-top: 12px;
}

.content-pic-txt-wrap {
  padding: 40px 0;
  display: flex;
  gap: 60px;
}

.content-pic-txt-wrap-reverse {
  flex-direction: row-reverse;
}

.content-pic img {
  width: 530px;
}

.content-txt {
  width: 530px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-period-menu-wrap {
  padding-top: 40px;
  display: flex;
  gap: 60px;
  width: 100%;
  color: #1D4931;
}

.content-period-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc((100% - 60px) / 2);
}


@media (max-width: 1280px) {

.contents {
  padding: 56px 0 56px;
}

.content-wrap {
  width: 100%;
  padding: 24px 0 24px;
}

.content-store-name {
  flex-direction: column;
  gap: 4px;
  border-bottom: #5e5e5e solid 1px;
  align-items: center;
  text-align: center;
  padding-bottom: 16px;
}

.content-catch-wrap {
  margin-top: 32px;
}

.content-pic-txt-wrap {
  padding: 24px 0;
  gap: 32px;
  flex-direction: column;
}

.content-pic img {
  width: 100%;
}

.content-txt {
  width: 100%;
}

.content-period-menu-wrap {
  padding-top: 8px;
  gap: 24px;
  flex-direction: column;
}

.content-period-menu {
  gap: 12px;
  width: 100%;
}

}


/* ▼サムネイル付スライド部分▼ */

.content-pic {
  width: 530px;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-container {
  margin-bottom: 12px;
}

.swiper-slide img {
  width: 100%;
}

/* サムネイルのスタイル */
.thumbnail .swiper-slide {
  opacity: 0.5;
}

/* サムネイルのアクティブスタイル */
.thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}



@media (max-width: 1280px) {

.content-pic {
  width: 100%;
}

}

/* ▲サムネイル付スライド部分▲ */




/* ==================================================== */
/* フッター */

footer {
  width: 100%;
  background-color: #e5e5e5;
  padding: 100px 0;
  text-align: center;
}

footer .container {
  width: 880px;
  margin: 0 auto;
}

.footer-head-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #1D4931;
}

.footer-head-wrap h1 {
  letter-spacing: 0.1em;
}

.footer-p-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px auto 0px;
}

.footer-btn-wrap {
  padding-top: 80px;
  display: flex;
  gap: 40px;
}

.footer-contents-2 {
  margin-top: 100px;
  padding-top: 80px;
  border-top: #5e5e5e 1px solid;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-contents-2 img {
  width: 200px;
  margin: 40px 0 0;
}

.footer-tel-sp {
  display: none;
}


@media (max-width: 1280px) {
  
  footer {
    padding: 56px 0;
  }

  footer .container {
    width: 100%;
    padding: 0 24px;
  }
  
  .footer-head-wrap {
    width: 100%;
  }

  .footer-btn-wrap {
    padding-top: 40px;
    gap: 16px;
    flex-direction: column;
  }

  .footer-contents-2 {
    margin-top: 50px;
    padding-top: 40px;
  }

  .footer-tel-pc {
    display: none;
  }
  
  .footer-tel-sp {
    display: block;
  }


}




