s@charset "UTF-8";

/* 店舗毎のカラー*/

/* からたちの花*/
/*グレー*/
color: #57514d;
/*薄いピンク*/
color: #edd4c5;
/*濃いピンク*/
color: #dd9078;

/* 芸州*/
color: #07448f;

/*サンプラザ*/
color: #00845c;

/*クレセント*/
color: #d63b00;
color: #996f36;

/*杜の宿*/
color: #005826;

/*湯来ロッジ・豆匠*/
color: #006b30;

/*神田山荘*/
color: #43a537;

/*高楼*/
color: #880019;
color: #d27d7b;

/*ごはんや*/
color: #d00006;

/*一竜*/
color: #9b0010;

/*かつまる*/
color: #830d19;

/*グルメサービス*/
color: #00582e;

/* 共通部分
---------------------*/


body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

hr {
  border: none;
  border-top: 1px solid #fff;
  width: 100%;
  margin: 0 auto;
}


/* header*/
header {
    background-color: #000000; 
    padding: 10px 0; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    height: 30px; 
}


.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: white; 
	font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease; 
}

.nav-menu a:hover {
    color: #FFDC1A;
}

#menu-toggle {
    display: none;
}


.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.menu-icon .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FFEC85;
    transition: all 0.3s ease;
}


/* スライドショー*/

  .hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

  .slide.active {
    opacity: 1;
  }

/*タイトル 挨拶*/

.maintitles{
	color: #CC0003;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 0px;
	margin-top: 10px;
	font-size:30px;
	
	 }

.maintitle{
	color: #CC0003;
	font-size: 5.5rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 10px;
	margin-top: 0px;
	
	 }

.textbox{
  color: #464646;
  font-size: 1.5rem;
  font-weight: 100;
  line-height: 1.8;
  text-align: center;
  margin-top: 0;

  text-decoration: underline;
  text-underline-offset: 10px; /* ← ここで下げる */
}

.maintext{
	color: #464646;
	font-size: 1.8rem;
	font-weight: 100;
	line-height: 1.8;
	text-align: center;
	margin: 2% 20% 2%;
	}

  .maintext2{
    color: #464646;
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.8;
    text-align: center;
    margin: 2% 20% 2%;
    }



/*イベント*/

 .eventtitle{
	 color: #FFFFFF;
	 font-size: 2rem;
	 text-align: center;
	 padding: 0;
	 margin: 0;
	 
	 }


.backgroundlines {
	margin-top: 50px;
    background-color: #000000; 
    padding: 2px 0; 
    }
.backgroundlines2 {
	margin-top: 0px;
    background-color: #000000; 
    padding: 2px 0; 
    
}


.area {
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px 30px; /* ← ページ全体の左右余白だけ */
  flex-wrap: wrap;    /* ← 狭い画面で自動縦並び */
}

.box {
  width: 350px;       /* 写真とテキストのサイズ統一 */
  height: 350px;
  box-sizing: border-box;
  text-align: center;
}

/* 写真を枠いっぱいに収める（余白なし） */
.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.box:nth-child(3) {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.box:nth-child(3) p {
  margin: 0;
}

 .boxtext1{

	 font-size: 1.5rem;
	 line-height: 1.4;
	 font-weight: 600;
}
 .boxtext2{
font-size: 1rem;
font-weight: 500;
	 }

.btn-img {
max-width: 70%;
}

/* チラシボタン */
.flyer {
  text-align: center;
  padding: 40px 20px;
}

.flyer img {
  max-width: 90%;
  height: auto;
}

/* 節分の説明 */
 .setubun{
	 background-color: #FFE7E4;
	 padding: 40px 30px;
	 
	 }


 .setubun h3{
    color: #464646;
    font-size: 1.2rem;
    text-align: center;
    margin: 1% 20% 1%;
    }

 .setubun p{
    color: #464646;
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.8;
    text-align: center;
    margin: 0% 20% 2%;
    }

/* フッター */

footer{
  background-color: #57514d;
  padding: 30px 30px; 
}

.wrapper{
  padding: 50px 30px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.address{
box-sizing: border-box;
text-align: center;
text-align: left;
display: flex;
flex-direction: column;
justify-content: flex-start;
color: #FFFFFF;
}

.address p{
	margin: 0 0 7px 0;
	}

.map {
  width: 100%;
  max-width: 300px;      /* 正方形の最大サイズ（調整OK） */
  aspect-ratio: 1 / 1;  /* ← 正方形にする */
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.officlal{
	color: #FFFFFF;
	text-align: center;
	margin: 10px 0;
	}

.sns{
  max-width: 300px;
  text-align: center;
}

/* ボタンを横並び */
.snsbotan{
  display: flex;
  justify-content: center;
  padding: 10px 10px;
  gap: 15px;

}

/* 画像を自然に縮小 */
.snsbotan img{
  max-width: 100%;
  height: auto;
  display: block;
}

.toyokanko{
color: #FFFFFF;
text-align: center;
font-size: 0.8rem;
}
.toyokanko a{
  color: #FFFFFF;      /* 文字色をそのまま */
  text-decoration: none; /* 下線を消す */
}
/* ========================================= */


@media (max-width: 768px) {
 
.menu-icon {
	display: flex;
    z-index: 100; 
    position: fixed;
    top: 15px;
    right: 15px;
  }
  
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px; 
        left: 0;
        width: 100%;
        background-color: #555;
        z-index: 100;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    }
	
	.nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #666; 
    }

    .nav-menu ul {
        flex-direction: column; 
        padding: 10px 20px;
    }
        

	
    #menu-toggle:checked + .menu-icon + .nav-menu {
        display: block; 
    }
    

    #menu-toggle:checked + .menu-icon .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #menu-toggle:checked + .menu-icon .bar:nth-child(2) {
        opacity: 0; 
    }
    #menu-toggle:checked + .menu-icon .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
/* スライドショー*/  
.hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
	 }
	
	/*タイトル 挨拶*/
	
	.maintitles{
	color: #CC0003;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 5px;
	margin-top: 10px;
	font-size:20px;
	 }
.maintitle{
	color: #CC0003;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	margin: 0px auto 5px;
	 }
	
	.maintext{
	color: #464646;
	font-size: 0.9rem;
	font-weight: 100;
	line-height: 1.8;
	text-align: center;
	margin-top: 0;
	margin: 30px 30px 10px 30px;
	}

  .maintext2{
    color: #464646;
    font-size: 0.7rem;
    font-weight: 100;
    line-height: 1.8;
    text-align: center;
    margin-top: 0;
    margin:30px;
    }
	
/*イベント*/
	
.eventtitle{
	 color: #FFFFFF;
	 font-size: 1.3rem;
	 text-align: center;
	 padding: 0;
	 margin: 0;
	 
	 }
 .box {
    width: 100%;
    height: auto;
  }

  .box img {
    height: auto;
  }
	
	/* 節分の説明 */
 .setubun{
	 background-color: #FFE7E4;
	 padding: 20px 30px;
	 
	 }


 .setubun h3{
    color: #464646;
    font-size: 1rem;
    text-align: center;
    margin: 1%;
    }

 .setubun p{
    color: #464646;
    font-size: 0.8rem;
    font-weight: 100;
    line-height: 1.8;
    text-align: center;
    margin: 0% 0% 4%;
    }
	/* フッター */	
	footer{
  background-color: #57514d;
  padding: 15px 30px; 
}


}


