@charset "UTF-8";
@media screen and (max-width: 600px) {
  .admin-bar .site-header-scroll-admin {
    top: 46px;
  }
}
@media screen and (min-width: 601px) and (max-width: 797px) {
  .admin-bar .site-header-scroll-admin {
    top: 46px;
  }
}
@media screen and (min-width: 798px) and (max-width: 979px) {
  .admin-bar .site-header-scroll-admin {
    top: 32px;
  }
}
@media screen and (min-width: 980px) {
  .admin-bar .site-header-scroll-admin {
    top: 32px;
  }
}

.site-header {
  width: 100%;
  /* ヘッダー全体 */
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 2px solid var(--gold);
  padding: 20px 0;
}

.menu li a {
  font-family: "Zen Old Mincho", serif;
}

.header-sp-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* ヘッダー内 */
.header-inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 959px) {
  /* ロゴ */
  .logo {
    display: flex;
    flex-direction: column;
    min-width: 140px;
  }
  .site-title {
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(1.25rem, 1.001rem + 0.42vw, 1.5rem);
    margin: 0;
    font-weight: bold;
  }
  .site-description {
    font-family: "Zen Old Mincho", serif;
    font-size: 8px;
    color: var(--black);
    margin-bottom: 0;
  }
  /* ナビ */
  .site-navigation {
    flex-grow: 1;
    margin-left: 20px;
  }
  .menu {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
  }
  .header-buttons {
    display: flex;
    gap: 10px;
  }
  .header-buttons a img {
    max-width: 110px; /* サイズ調整したい場合ここ */
    width: 100%;
    height: auto;
  }
  .header-buttons a:hover img {
    transform: scale(1.05); /* ホバーで少し拡大 */
  }
  /* サブメニュー（最初は非表示） */
  /* 親メニューを相対位置に */
  /* マウスオーバーでサブメニューを表示 */
  /* ▼マーク追加（オプション） */
  /* スマホ用ボタン非表示 */
}
@media screen and (min-width: 959px) and (min-width: 1440px) {
  .header-inner {
    width: 90%;
  }
  .menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .header-buttons a img {
    max-width: 160px; /* サイズ調整したい場合ここ */
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 959px) {
  .menu li a {
    text-decoration: none;
    color: var(--black);
    font-size: clamp(0.625rem, 0.125rem + 0.83vw, 1.125rem);
    position: relative;
  }
  .menu li a:hover {
    color: var(--gold);
  }
  .sub-menu {
    display: none;
    position: absolute;
    background: var(--gold); /* ベージュ色背景 */
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 200px;
    border-top: 2px solid var(--gold);
    z-index: 1000;
  }
  .sub-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: clamp(0.5rem, -0.125rem + 1.04vw, 1.125rem);
    color: var(--black);
    text-decoration: none;
  }
  .sub-menu li a:hover {
    background: var(--light-gold);
    color: var(--black);
  }
  .menu > li {
    position: relative;
  }
  .menu-item-has-children:hover .sub-menu {
    display: block;
  }
  .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: color(--black);
    line-height: 0.8;
    width: 5px;
    height: 5px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    font-size: 5px;
    margin-left: 5px;
  }
  .nav-button {
    display: none;
  }
}
/* TOPヘッダーの色変更（PCのみ） */
@media screen and (min-width: 959px) {
  .transparent {
    background-color: transparent;
    border-bottom: none;
  }
  .transparent .site-title, .transparent .site-description, .transparent .menu li a {
    color: #fff;
  }
}

@media screen and (max-width: 959px) {
  .site-header {
    height: 60px;
    padding: 0;
    position: fixed;
  }
  /* ロゴ */
  .logo {
    margin-top: 5px;
    width: 100px;
  }
  .site-title {
    font-size: 20px;
    padding-top: 6px;
    margin-bottom: 0;
  }
  .site-description {
    font-size: 8px;
  }
  .header-inner {
    margin: 0;
    width: 100%;
    padding: 0 20px;
    justify-content: space-between;
  }
  /* ナビゲーションメニュー（閉じた状態） */
  .site-navigation {
    width: 100%;
    height: calc(100vh - 60px);
    position: absolute;
    top: 0;
    right: -100%;
    margin-top: 60px;
    overflow: hidden;
    color: transparent;
    animation: bugfix infinite 3s;
    -webkit-animation: bugfix infinite 3s;
  }
  @keyframes bugfix {
    from {
      padding: 0;
    }
    to {
      padding: 0;
    }
  }
  /* ナビゲーションボタン */
  .nav-button {
    display: block;
    box-sizing: content-box;
    outline: none;
    border: none;
    background: none;
    width: 29px;
    height: 20px;
    overflow: visible; /* IE対応 */
    cursor: pointer;
    color: var(--black);
  }
  .nav-button::before,
  .nav-button::after {
    content: "";
    display: block;
    height: 1px;
    background-color: currentColor;
    transform: translateY(10px);
    transition: 0.3s ease-in-out;
  }
  .nav-button::before {
    transform: translateY(-10px);
    box-shadow: 0 10px currentColor;
  }
  /* ナビゲーションボタン（閉じるボタン） */
  .open .nav-button {
    z-index: 999;
  }
  .open .nav-button::before {
    transform: rotate(-45deg);
    box-shadow: none;
  }
  .open .nav-button::after {
    transform: rotate(45deg);
    box-shadow: none;
  }
  .header-buttons-sp {
    display: flex;
  }
  /* ナビゲーションメニュー: （開いた状態） */
  html.open, .open body {
    height: calc(100vh - 60px);
  }
  /* 	.open .header {
  		position: relative;
  		margin-bottom: -100px;
  	} */
  .open .site-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--black);
    color: #ECF5FC;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: scroll;
    z-index: 9999;
    background-image: url(../../images/header/cloud-sp.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: right 50% bottom;
  }
  .open .menu {
    margin-top: 4vh;
  }
  .open .menu .menu-item-has-children {
    padding: 3px 0;
  }
  .open .menu li:not(.privacy) {
    padding: 3px 0;
  }
  .open .menu li:not(.privacy) a {
    font-size: 18px;
  }
  .open .menu li:not(.privacy) .sub-menu a {
    font-size: 16px;
  }
  .open .menu .privacy {
    margin-top: 2vh;
    display: inline-block;
    border-bottom: 1px solid white;
    font-size: 14px;
  }
  .open .sub-menu {
    display: none;
    padding: 3px 0;
  }
  .open .sub-menu a {
    font-size: 16px;
  }
  .open .sub-menu li > a::before {
    content: "― ";
  }
  .open .arrow {
    display: inline-block;
    padding: 0;
    border: none;
    background: transparent;
    margin-left: 100px;
    transform: rotate(-90deg);
  }
  .open .menu-item-has-children.active .arrow {
    transform: rotate(0deg);
  }
  .open .menu-item-has-children.active .sub-menu {
    display: block;
  }
  .open .sns {
    position: absolute;
    display: flex;
    gap: 10px;
    bottom: 0;
    padding-bottom: 50px;
    right: 0;
    margin-right: 20px;
    max-width: 600px;
  }
  .open .sns img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 428px) {
  .open .sns img {
    width: 35px;
    height: 35px;
  }
}/*# sourceMappingURL=header.css.map */