@charset "utf-8";
/* CSS Document */

img{
  border: 0;
  max-width: 100%;
  height: auto;
}

ul,ol{
  list-style-type: none;
}

/*body{
background-color: #FDFFEE;}*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  /*padding-left: 20px;
  padding-right: 20px;*/
}

.header {
  position: relative;
  /*height: 900px;*/
  height: calc(100vh - 10vh);
  background: url("../img/fv2.jpg") center center no-repeat;
  background-size: cover;
  z-index: -1;
}

@media screen and (min-width: 768px) {
 .header {
    width: 100%;
	height: 80%;
  }
}

.header-logo{
	padding: 20px;
	width: 80px;
	height: 80px;
}

@media screen and (min-width: 768px) {
.header-logo {
    width: 12%;
  }
}

.header-logo2{
	padding-left: 20px;
	padding-top: 50px;
}





.inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
.inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
  }
}


.fv_txt {
 width: 100%; 
 line-height: 75px;
 color: #fff;
 margin: 40px 0;
}
@media screen and (min-width: 768px) {
.fv_txt {
  width: 120%; 
  }
}

.fv_ttl > span {
  display: block;
  font-size: 35px;/*font-size: clamp(24px, 24 / 375 * 100vw, 48px);*/
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
.fv_ttl > span {
   font-size: 50px; /*font-size: clamp(48px, 60 / 1920 * 100vw, 60px);*/
   letter-spacing: 10px;
  }
}

.fv_ttl .mark {
  position: relative;
}
.fv_ttl .mark::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.7em;
  background-color: #C9BDBD;
  border-radius: 5px;
  position: absolute;
  bottom: 0.2em;
  left: 0;
  z-index: -1;
}


.nav {
  background-image: url("../img/31664859_s.jpg");
  /*background-image: url("img/img/img/32592375_s.jpg");*/
}
.nav ul {
  display: flex;
  background-image: url("../img/32592375_s.jpg");
}
.nav li {
  width: 30%;
}
.nav a {
  display: block;
  padding: 30px 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  transition: background-color 1s;
  /*font-family: "Cardo", serif;*/
  /*font-style: italic;*/
}
.nav a:hover {
  background-image: url("../img/31664859_s.jpg");
 /* transition: background-color 1s;*/
}

.catchcopy{
	text-align: center;
	margin-bottom: 100px;
}
.catch{
	font-size: 35px;
	font-weight: 500;
	margin-top: 100px;
	margin-bottom: 30px;
	line-height: 50px;
	/*border-bottom: 1px dotted #6B5055;*/
}

.catch2{
	margin-bottom: 80px;
	line-height: 25px;
	text-align: left;
	display: inline-block;
}

.eventmain-button {
  display: inline-block;
  background-color: #6b7272;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 4px;
  transition: background-color 0.2s;
  font-size: 25px;
}

.eventmain-button:hover {
  background-image: url("../img/32592375_s.jpg");
}

body {
    margin: 0;
    padding: 0;
    background-image: url("../img/back1.jpg");
	/*background: cover;*/
    /*font-family: sans-serif;*/
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500; 
	/*font-family: 'M PLUS 1p', sans-serif;
    font-weight: 400;*/

}

#key_visual{
	margin-bottom: 100px;
	text-align: center;
}
.slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	/*margin-left: 20px;*/
	/*background-image: url("test/32592375_s.jpg")*/
	/*background-color: #A95D5E;*/
}

.slider img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    display:inline-block;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 2px 6px 2px rgba(0,0,0,0.3);	
}


/* 矢印のカスタマイズ（文字を消す） */
.slick-prev{
	content: '';  /* 矢印のテキストを消す */
    font-size: 30px;
    color: #333;  /* 矢印の色 */
    background: url("../img/hidaribar.png") no-repeat center center;  /* アイコン画像を指定 */
    background-size: contain;  /* アイコンのサイズ調整 */
    display: block; /* 矢印がブロック表示になるように */
    height: 30px;   /* アイコンの高さ */
    width: 30px;    /* アイコンの幅 */
    position: absolute;  /* 矢印をスライダーの左右に固定 */
    top: 50%;
    transform: translateY(-80%);
	z-index: 10;
	left: 0;
}
.slick-next {
    content: '';  /* 矢印のテキストを消す */
   font-size: 30px;
    color: #333;  /* 矢印の色 */
   background: url("../img/migibar.png") no-repeat center center;  /* アイコン画像を指定 */
    background-size: contain;  /* アイコンのサイズ調整 */
    display: block; /* 矢印がブロック表示になるように */
    height: 30px;   /* アイコンの高さ */
   width: 30px;    /* アイコンの幅 */
   position: absolute;  /* 矢印をスライダーの左右に固定 */
   top: 50%;
    transform: translateY(-80%);
	z-index: 10;
	right: 0;
}



/* ドットナビゲーションのデザイン調整 */
.slick-dots {
    display: flex;  /* ドットを横並びにする */
    justify-content: center;  /* ドットを中央に配置 */
    margin-top: 10px;  /* スライドとドットの間隔 */
	list-style-type: disc;
}

.slick-dots li {
    margin: 10px 20px;  /* ドット間のスペースを調整 */
}

.slick-dots li button {
    width: 50px;  /* ドットの直径 */
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;  /* 非アクティブなドットの色（薄い色） */
    border: none;  /* ボタンの枠線を消す */
    transition: background-color 0.3s ease;  /* 色がスムーズに変化するように */
}

.slick-dots li.slick-active button {
    background-color: #727E3D;  /* アクティブなドットの色（黒） */
}

.slick-dots li button:before {
    content: '';  /* 数字を消す */
}

.color{
	font-size: 50px;
	font-weight: 550;
}

.colorsample{
	padding-top: 50px;
	background-color: #E8E3E3;
	background: linear-gradient(to bottom,#eee,#fff,#eee);
}

.sample{
	display: flex;
	gap:30px;
	margin-bottom: 30px;
	/*justify-content: center;*/
    /*flex-wrap: wrap;*/
    /*max-width: 1200px;*/
    /*margin: 0 auto;*/
}

/*.guide img{
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}*/


.contents{
	 display: flex;
      flex-wrap: wrap;
      gap: 50px; /* 画像間のスペース */
      justify-content: center;
	  padding: 100px 0;
	  
}

 .insta img {
      width: 90%;
      max-width: 500px; /* 最大サイズ制限（お好みで調整） */
      height: auto;
	 justify-content: center;
}

.insta img:hover {
      opacity: 0.7;
}
 .simi img {
      width: 100%;
      max-width: 450px; /* 最大サイズ制限 */
      height: auto;
	 justify-content: center;
	 padding-top: 30px;
}

.simi img:hover {
      opacity: 0.7;
}
/* モバイル表示では縦並び */
 @media screen and (max-width: 768px) {
 .contents {
        flex-direction: column;
        align-items: center;
	    width: 90%;
      }
    }
.banner{
	 display: flex;
      flex-wrap: wrap;
      gap: 50px; /* 画像間のスペース */
      justify-content: center;
	  padding: 50px 0;
	 margin: 100px 0;
}

 .banner img {
      width: 100%;
      max-width: 500px; /* 最大サイズ制限 */
      height: auto;
	 justify-content: center;
}

.banner1:hover{
	opacity: 0.7;
}
.banner2:hover{
	opacity: 0.7;
}

.banner1:hover {
  transform: scale(1.05);
}

.banner2:hover {
  transform: scale(1.05);
}

.news{
	/*opacity: 0.5;*/
	background-color: #E8E3E3;
	background: linear-gradient(to bottom,#eee,#fff,#eee);
	/*transform: skewY(5deg);*/
}

/* イベントセクション全体 */
.container2 {
  max-width: 800px;
  margin: 0 auto;
  /*padding: 0 20px;*/
}

/* セクションタイトル */
.section-title {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  color: #322708;
  border-bottom:0.5px dotted #322708;
}
/* イベントリスト */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 各イベント項目 */
.event-item {
  background-color: #ffffff;
  /*border-left: 6px solid #3F3D1D;*/
  padding: 20px 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.event-item:hover {
  transform: translateY(-4px);
}

/* イベント日付 */
.event-date {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 10px;
}

/* イベントタイトル */
.event-title {
  font-size: 1.3em;
  margin: 0 0 10px;
}

/* イベント説明 */
.event-description {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* 詳細ボタン */
.event-button {
  display: inline-block;
  background-color: #6b7272;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.event-button:hover {
  background-image: url("../img/32592375_s.jpg");
}

/*footer*/
.footer{
	background-image: url("../img/footerbar.png");
	background:cover;
	background-repeat: no-repeat;
	position: relative;
    /*min-height: 120px; /* スマホでつぶれすぎ防止 */
    /*width: 1920px;
	height: 290px;*/
    /*align-items: center;
    justify-content: center;*/
    width: 100%;
	height: 290px;
}

.navadress{
	display: flex;
	justify-content: center;
}

.footer-list li a{
	text-decoration: none;
	color: #000;
	font-size: 20px;
	margin: 0px 0px;
	font-weight: 500;
}

.footer-list li a:hover{
	color: #AAA88C;
}

.footer-info-list{
	font-size: 18px;
	margin-left: 50px;
	line-height: 25px;
	font-weight: 400;
}

.cyuui{
	font-size: 15px;
	margin: 80px 0 10px 0;
	text-align: center;
}

.copyright{
	font-size: 18px;
	text-align: center;
}
@media screen and (min-width: 1920px) {
 .footer {
     background-image: url("../img/footerbar.png");
	background:cover;
	background-repeat: no-repeat;
	position: relative;
    height: 15.1vw;
    max-height: 290px;
    min-height: 120px; /* スマホでつぶれすぎ防止 
	/*width: 1920px;
	height: 290px;*/
   align-items: center;
   justify-content: center;
	}

}


/*新ハンバーガー*/
 /* ハンバーガーアイコン */
    .hamburger {
      width: 60px;
      height: 60px;
      background-image: url("../img/back1.jpg");
      border-radius: 50%;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1000;
    }

    .hamburger:hover {
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
      transform: translateY(-3px);
    }

    .hamburger-lines {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 20px;
    }

    .line {
      width: 30px;
      height: 4px;
      background-color: #6b7272;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    /* Xマークアニメーション */
    .hamburger.active .line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .line:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* ナビメニュー */
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background-image: url("../img/back1.jpg");
      box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
      transition: right 0.4s ease;
      padding-top: 80px;
      z-index: 900;
    }

    .nav-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nav-menu li {
      border-bottom: 1px solid #eee;
    }

    .nav-menu li a {
      display: block;
      padding: 15px 20px;
      color: #333;
      text-decoration: none;
      font-size: 20px;
      transition: background-color 0.3s ease;
    }

    .nav-menu li a:hover {
      background-color: #f0f0f0;
    }

    /* メニュー開く状態 */
    .nav-menu.open {
      right: 0;
    }

/* PC用（非表示） */
@media (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* 最初は非表示・下にオフセット */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示時の状態（Intersection Observerで追加） */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

