@charset "UTF-8";
*,*::before,*::after  {
	box-sizing: border-box;
    /*margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;*/
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
}
html,body {
    padding-top: 36px;/*header:fixed*/
    height: 100%;
    font-size: 1rem; /* = 16px（初期設定） */
}

.page-container {
	display: flex;
  	flex-direction: column;
  	min-height: 100vh; /* 画面の高さを最低限確保 vh は「viewport height（画面の高さ）」の単位です
						100vh = 画面の高さちょうど
						min-height は「最低でもこの高さを保つ」という意味です */
	background: linear-gradient(to bottom, #24211f, #403b37);
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
	color: white;
}
header {
    padding-top: 20px;
    padding-bottom: 28px;
    padding-left: 0px;
    font-size: 1rem;
    position: fixed;/*z-indexとセットで使う*/
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(36, 33, 31, 0.9); /* ダーク背景に透明感 */
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);/*下に影を追加*/	
}
.header-wrap {
    width: 1240px;
    margin-left: auto;
    margin-right: auto;
}
.header-wrap img {
    width: 24px;
    height: auto;
}
header nav {
    display: flex;
    justify-content: center;
	/*background-color: rgba(255,0,0,0.2); *//* 半透明赤で重なりチェック */
}
header nav ul {
    display: flex;
    list-style-type: none;
	padding: 0;
    margin: 0;
}
header ul li {
	display: flex;
    padding-left: 10px;
	padding-right: 10px;
	line-height: 1.8;
	text-align: center;
	justify-content: center;
	align-items: center;
}
header nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: inherit;
}
ul li a:hover {
    color: #EEC86D;
}
header nav li a img {
    width: 22px;
    height: auto;
	margin-left: 5px;
}

/* ===== ハンバーガーメニュー 基本 ===== */

/* PC表示：ハンバーガー非表示、横並びナビ */

.hamburger{
	display: none;
}
.page-section{
    text-align: center;
    margin-top: 26px;
    margin-bottom: 50px;
    padding-top: 45px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
	width: 100%;
}
.page-section h1{
	position: relative;
    letter-spacing: 4px;
    display: inline-block;
    padding-bottom: 10px;
}
.page-section h1:after{
	content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: linear-gradient(
    to right,
    #d4af37,  /* 明るい金色 */
    #b8860b,  /* 深みのある金色 */
    rgba(255, 255, 255, 0) /* 右端を自然にフェードアウト */);
    width: 90px;
    height: 2px;
}
/* 中央のmain領域は可変高さで残りを埋める */
main {
    /* main が 余った高さを全部使って膨らむ
	その結果、footer が下に押し出されてピタッと下部にくっつく
	ページの高さが ちょうど画面サイズ（100vh） になり、余白がなくなる (背景のダークグラデーション用)*/
    flex: 1;
    min-height: 100vh;
    background: rgba(255,255,255,0.1); /* 一時的に背景をつけて可視化一時的やめた */
    margin: 0 auto;
    padding-top: 28px;
    font-size: 1rem;    /* padding や width max-widthはcontainerに任せる */
}

.container {
    max-width: 1440px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

											

.pankuzu-list {
    padding-left: 0px;
    margin-top: 10px;
}
.pankuzu-list li a {
    text-decoration: none;
    color: #FFFFFF;
}
h1 {
    font-size: 2em;
}
h2{
	font-size:1.8em;
}
.container p {
    font-size: 1.5em;
}
.pankuzu-list li {
    display: inline;
    margin-right: 5px;
}
footer {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1rem; /* = 14px */
	position: relative;
    z-index: 1000; /* nav より上にしてリンクをクリック可能に */
}
.footer-wrap {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-logo  {
    width: auto;
    max-height: 180px;
    margin-left: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.footer-wrap ul {
    list-style-type: none;
    margin: 0 40px;
	padding: 10px;
    font-size: 1em;
    gap: 25px;
}

footer ul li a {
    color: #FFFFFF;
    text-decoration: none;
}
.footer-wrap ul li:last-child img {
    width: 34px;
    height: auto;
    padding-top: 10px;
}
.footer-wrap .footer-tel {
    margin-right: 0px;
    padding-top: 0px;
}
.footer-wrap .footer-tel p {
    font-size: 1.1em;
}

.footer-wrap .footer-tel h2 {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.6em;
}
.footer-tel h2 span {
    font-size: 0.8em;
    padding-right: 3px;
}
.footer-wrap .instagram {
    padding-top: 0px;
    text-align: center;
    font-size: 0.9em;
}
.instagram a img {
    width: 100%;
    height: auto;
    max-width: 36px;
    padding-top: 5px;
    margin-left: 8px;
	vertical-align: middle;
}
footer small {
    display: block;
    text-align: center;
    border-top: 1px solid #FFFFFF;
    margin-top: 10px;
    padding-top: 15px;
}


a[href^="tel"] {
    color: #fff;
    text-decoration: none;
}



@media screen and (max-width: 1439px) {
.container {
	max-width: 100%;
    /*width: 100%;*/
    /*max-width: 1439px; *//* お好みで上限幅を設定 */
    padding-left: 20px;
    padding-right: 20px;
	box-sizing: border-box;
  }

.header-wrap,
.footer-wrap {
    width: 100%;
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
  }
/*h1 {
    font-size: 1.5em;
}*/
.footer-logo {
    width: 90%;
    height: auto;
}
.container p {
    font-size: 1.3em;
}
.page-section{
	width: 100%;
	max-width: 1240px;
}
}


/* ===== タブレット・スマホ用 ===== */
@media screen and (max-width: 1024px) {

html, body {
    padding-top: 33px;
  }
.header-wrap{
	width: 100%;
	max-width: 1240px;
	padding-left: 20px;
    padding-right: 20px;
}
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
	transition: all 0.3s ease; 
  }
/* X型変形 */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
.hamburger.active span:nth-child(2) {
    opacity: 0;
  }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }


/* 初期状態：非表示 */
header nav {
	display: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;            /* 完全に透明にして非表示 */
    transition: max-height 0.3s ease, opacity 0.3s ease; /* ←ここ変更 *//* 高さを滑らかに変化 */
    position: fixed; /* ← absoluteからfixedへ変更！ */
    top: 50px; /* ヘッダー下に表示 */
    left: 0;
    right: 0;        /* 幅指定をrightに変更して確実に全幅に */
    z-index: 10000 !important; /* headerより上に！ */
    width: 100%;
    background-color: rgba(36, 33, 31, 0.95);
    text-align: center;
	pointer-events: auto !important; /* noneにもどす透明時はクリック無効 */  
  }
header,footer{
	pointer-events: auto !important;
	z-index: 10000 !important;
}
/* 表示状態 */
header nav.active {
	display: block;
    max-height: 600px; /* ←固定で表示されるかテスト */
	opacity: 1; /* 表示時は透明度100% */
	pointer-events: auto; /* クリック有効 */
  }
header nav ul {
	display: flex;
    flex-direction: column;
	padding: 0;
    margin: 0;
  }
header nav ul li {
    padding: 10px 0;
	text-align: center;
  }
header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
  }

header nav ul li a:hover {
    color: #EEC86D;
  }

.container  {
    width: 100%;
    max-width: 100%;
}
main .container .page-section {
    margin-bottom: 0px;
}
h1 {
    font-size: 1.3em;
}
.container p {
    font-size: 1.2em;
}
.container section {
    padding-top: 25px;
    padding-bottom: 30px;
}
.page-section {
    padding-top: 0px;
}
.footer-logo   {
    max-width: 100px;
}
.footer-wrap ul  {
    font-size: 1.5em;
}
.footer-wrap .footer-tel p {
    font-size: 1.5em;
}
.footer-wrap .footer-tel h2 {
    font-size: 2em;
}

}



@media screen and (max-width: 768px) {
  /* スマホや小さめタブレット用のレイアウト変更 */
body {
    font-size: 15px;
    line-height: 1.6;
    padding-top: 30px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}
.header-wrap{
    width: 100%;
    max-width: 1240px;
    /*padding-left: 16px;
    padding-right: 16px;*/
}
nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.container {
	width: 100%;
	padding: 0 10px;
}
.container section {
    padding-top: 25px;
    padding-bottom: 25px;
}
main .container .page-section {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
h1{
    font-size: 1.3em;
}
h2{
    font-size: 1.1em;
}
.container p{
    font-size: 1.3em;
    line-height: 1.2;
}
.footer-wrap {
    width: auto;
	max-width: 768px; 
    /*max-width: 1240px;*/
    /*flex-direction: column;取り止め*/
    display: block;
    gap: 20px;
    text-align: center;    /*align-items: center;*/
      /*padding-left: 0px;*/
  }

.footer-logo {
    margin: 0;
    max-width: 90px;
  }
.footer-wrap ul {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    font-size: 1.2em;
  }

.footer-tel {
    font-size: 14px;
    line-height: 1.4;
    text-align: center; /* 明示的に中央揃え */
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
  }
.footer-tel h2 {
    text-align: center;  /* h2 自体も中央に */
    display: block;
    margin: 0 auto;
  }	
 .footer-tel h2 span {
    display: inline-block; /* TEL: の部分も中央寄せの対象に */
    font-size: 16px; 
  }
.footer-wrap ul li:last-child img {
	margin-top: 10px;	
	}	
}

@media (max-width:480px){
.footer-logo {
    max-width: 70px;
}
.container {
    padding-left: 5px;
    padding-right: 5px;
}


  /* .page-section 自体の余白を消す */
  .page-section {
      margin: 0 !important;
      padding: 0 !important;
  }

  /* h1のパディング・余白も消す */
  .page-section h1 {
      margin: 0 !important;
      padding: 0 !important;
  }

  /* 下線も小さくする or 消す */
  .page-section h1:after {
      width: 0 !important;
      height: 0 !important;
  }


h1 {
    font-size: 1em;
}
.container p {
    font-size: 0.9em;
}
.pankuzu-list {
    font-size: 0.7em;
}


}
