@charset "UTF-8";
header, footer {
    text-align: center;
    padding: 20px 10px;
    margin:0;
    padding:0;
}

  header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-black);
  color: white;
  margin:0;
  box-sizing: border-box;
  border-top:2px solid var(--color-yellow);
  padding: 20px 40px;
  z-index: 1100;
}

header h1 a , header .header-h1 a{
  color:var(--color-white);
}

.header-logo{
  display: flex;
  align-items: center;
}

.header-logo img{
width:clamp(50px, calc(50px + (50 * (100vw - 375px) / 1025)), 100px);
}

header h1, header .header-h1{
    margin: 0;
    font-size: 1.8em;
}

.header-h1{
  font-weight: 700;
}

header .tel{
    text-align: right;
}

.header-tel{
line-height: 1.2;
padding-right:20px;
}

header p {
    margin: 5px 0 0;
}

.site-title{
display: flex;
flex-direction: column; /* ← 縦に積む */
line-height: 1.2;       /* ← お好みで行間調整 */
margin-left: 1rem;      /* ← 左に少しスペース */
text-align: left;
}

/* ------------------------------
  ナビ関係
--------------------------------*/

header nav {
display: flex;
font-size: var(--font-16) ;
font-weight: 500;
position: absolute;
left: 50%;
transform: translateX(-50%);
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}



/* ------------------------------
  ハンバーガー ×メニュー
--------------------------------*/

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* ハンバーガー→×に変形 */
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(6.5px, 6.5px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6.5px, -6.5px);
}

/* ------------------------------
  ドロップダウン
--------------------------------*/

/* ドロップダウン */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-black);
    flex-direction: column;
    min-width: 180px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    z-index: 999;
    margin-top:20px;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* 薄い白（10%） */
}



/* ------------------------------
  footer
--------------------------------*/

.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding:0;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding:40px 0;
  display: flex;
  flex-wrap: wrap;
  text-align:left;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

/* 左カラム（ロゴ+店名） */
.footer-logo {
  flex: 0 0 56%;
  line-height: 1.5;
}

.footer-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-white);
  gap: 1rem;
}

.footer-brand img {
  width: 80px;
  height: auto;
}

.footer-shop-name {
  display: flex;
  flex-direction: column;
}

/* 中央ナビ */
.footer-nav-list {
  list-style: none;
  padding: 0 1rem;
  margin: 0;
  font-size: var(--font-14);
}

.footer-sub-list li::before{
  content:"-";
  padding-right:.3rem;
}

.footer-nav-list li,
.footer-sub-list li {
  margin-bottom: 0.5rem;
}

.footer-nav-list a,
.footer-sub-list a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-nav-list a:hover,
.footer-sub-list a:hover {
  text-decoration: underline;
}

.footer-nav-heading {
  margin-top: 1rem;
  font-size: var(--font-16);
}

.footer-inner .footer-nav-heading:nth-child(1){
  margin-top:0;
}

.footer-sub-list {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

/* 右カラム（未定義） */
.footer-right {
  flex: 1;
}

/* ------------------------------
  footer2
--------------------------------*/


.footer-bottom {
  background-color: var(--color-black2);
  color: var(--color-gray2);
  font-size: var(--font-14);
  padding: 20px 16px;
}

.footer-bottom-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-bottom-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-nav a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom-nav a:hover {
  opacity: 0.7;
}

/* コピーライト */
.footer-bottom .footer-copyright {
  text-align: right;
  white-space: nowrap;
}


/* フッター2おわり */




/* ------------------------------
  メディアクエリ
--------------------------------*/

/* PC hover */
@media (min-width: 1401px) {
.has-dropdown:hover .dropdown-menu {
    display: flex;
    max-height: 500px;
    opacity: 1;
}
}

@media screen and (max-width:1400px){

header {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 20px 16px;
    }

header h1, header .header-h1 {
    order: 1;
    margin-right: auto;
    }

.header-tel {
    order: 2;
    }

    /*メニュー*/

  .menu-toggle {
    display: flex;
    order: 3;
  }

header nav {
    top: 100%;
    left: 50%;
    background: var(--color-black);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;

    }

header nav.open {
    opacity: .98;

          max-height: 100vh; /* スマホ画面の半分くらいに制限 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOSでスムーズに */
    }

header nav ul {
    flex-direction: column;
    text-align:left;
    gap:0rem;
    }

header nav ul a{
    border-top:var(--color-black2) solid 1px;
    padding:1rem;
    }

.dropdown-menu {
    position: static;
    max-height: 0;
    margin:0;
    }

.has-dropdown.open .dropdown-menu {
    display: flex;
    max-height: 500px;
    opacity: 1;
    }

.dropdown-menu a{
    background-color: var(--color-black2);
    border-top:var(--color-black) solid 1px;
    }
}

@media screen and (max-width: 1000px) {

    /* フッター左カラム（ロゴ+店名） */
    .footer-brand{
        justify-content: center;
        padding-bottom:1rem;
        margin-bottom: 1.5rem;
        border-bottom: var(--color-gray2) dashed 1px;
    }

    .footer-inner{
        justify-content: center;
    }

    .footer-col{
        flex:0;
    }
    .footer-logo {
    flex: 1 1 100%;
    }
    .footer-col{
    min-width: 50%;
    }

}

@media screen and (max-width: 768px) {

    header{
    position:fixed;
    top:0;
}

.site-title{
    margin-left: 0.5rem;
    }

.header-tel{
    padding-right: 0px;
    }

.header-tel>p:nth-child(1),.tel-text {
    /* <i>以外の要素に適用 */
    display: none;
    }

.header-tel>.font-30{
    font-size:40px;
    }

    .site-header{
        padding:0 1rem;
        gap:5px;
    }

    /*フッター*/
   .footer-inner{
    padding:20px 0;
   }

  .footer-logo {
    flex: 1 1 100%;
  }

  .footer-bottom-inner{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


/* スマホ対応：縦並び */
@media screen and (max-width: 600px) {

  .footer-bottom .footer-copyright {
    text-align: left;
    white-space: normal;
  }
}


@media screen and (max-width: 400px) {

.header-tel .font-30{
font-size:24px;
padding:8px 0;
}
}