@charset "UTF-8";
/* =======================================
【BASE】
========================================== */
h1 {
  color: #fbfbfb;
  padding-top: 10px;
}

.h_tel a {
  color: #fbfbfb;
}
.h_tel .num span {
  padding-left: 0.9em;
  background: url(../img/tel.svg) no-repeat left bottom 4px/0.67em;
}

header {
  background-color: #000;
  /* height: 110px; */
  position: sticky;
  top: 0;
  z-index: 10;
  padding-top: 1px;
  transition: transform 0.3s ease;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0%;
  width: 30%;
  height: 100%;
  background: url(../img/mv_l.png) no-repeat center left / 100%;
  z-index: 0;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0%;
  width: 35%;
  height: 100%;
  background: url(../img/mv_r.png) no-repeat bottom right -9em / 100%;
  z-index: -1;
}

.headerArea {
  white-space: nowrap;
  margin-right: 7% !important;
}

.header02 {
  display: flex;
  justify-content: right;
}

.header02 .logo {
  width: 13.57em;
  padding-top: 3px;
}

.header02 > div {
  display: flex;
  color: #fbfbfb;
  margin-top: 13px;
}

.header02 > div > .tel {
  padding-right: 30px;
}

.header02 > div > .tel a {
  width: 218px;
  padding-top: 4px;
  display: block;
}

.header02 > div > .con_line {
  position: relative;
  padding-left: 32px;
}

.header02 > div > .con_line:before {
  content: "";
  width: 1px;
  height: calc(100% - 7px);
  background: #e8e3d6;
  position: absolute;
  left: -5px;
  top: 2px;
}

.header02 > div > .con_line > ul {
  display: flex;
  font-weight: 600;
}

.header02 > div > .con_line > ul li:nth-child(1) {
  background: url(../img/icon_mail.svg) no-repeat center left 0/1.3em;
}

.header02 > div > .con_line a {
  color: #232220;
  padding-left: 1.6em;
  line-height: 100%;
}

.header02 > div > .con_line > ul li:nth-child(2) {
  background: url(../img/icon_line.svg) no-repeat center left 0/1.3em;
  margin-left: 27px;
}

.header_nav {
    background: transparent;
}
.header_nav .nav {
  display: flex;
  justify-content: end;
  position: relative;
  z-index: 9;
  gap: 2%;
  font-family: "Zen Old Mincho", serif;
  align-items: center;
}
.header_nav .nav > li {
  list-style: none;
  width: fit-content;
  position: relative;
}
.header_nav .nav > li:nth-last-of-type(1) {
  width: 2.3%;
}
.header_nav .nav li a {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  padding: 11px 0 13px;
}
.header_nav .nav li ul {
  width: calc(100% + 40px);
  display: none;
  margin-left: -20px;
  position: absolute;
  z-index: 999;
  background: #fff;
}
.header_nav .nav li ul li a {
  border-top: 1px solid #eee;
  color: #6a2600;
}
.header_nav .content {
  width: 750px;
  height: 200px;
  background: #eee;
  margin: 0 auto;
  padding: 10px;
  text-align: left;
  box-sizing: border-box;
}

.headerArea .tel a {
  padding-right: 0;
  padding-left: 1.2em;
  background: url(../img/tel_w.png) no-repeat center left 10px / 0.7em;
  letter-spacing: 0.05em;
  display: inline-block;
  color: #fff;
  line-height: 100%;
  width: 100%;
  white-space: nowrap;
}

/* .headerArea .tel a {
  width: 57%;
} */

.headerArea .mail a {
  background: url(../img/mail_b.png) no-repeat center left 0.7em / 1em, #fff;
  letter-spacing: 0.05em;
  display: inline-block;
  color: #05030B;
  padding: 3% 3% 3% 22%;
  width: 100%;
}

header .mail {
  width: 37% !important;
}

header .w30 {
  width: 390px;
}

header .mail {
    width: 9em !important;
}


/* スクロール時にヘッダーを隠す */
.header-hidden {
    transform: translateY(-100%);
}

/* ハンバーガーメニューボタン（スクロール時のみ表示） */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-color: #320000;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.hamburger-menu.show {
    display: flex;
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 7px;
}

.hamburger-icon span:nth-child(3) {
    top: 14px;
}

/* メニューが開いた時のアニメーション */
.hamburger-menu.open .hamburger-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(135deg);
}

.hamburger-menu.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-menu.open .hamburger-icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-135deg);
}

/* ドロップダウンメニュー */
.dropdown-menu {
    position: fixed;
    top: 11%;
    right: 2%;
    background: url(../img/mv_l.png) repeat left / 100%, #0E0309;    border-radius: 10px;
    padding: 4%;
    min-width: 250px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.contact-info .mail a {
  background: url(../img/mail_b.png) no-repeat center left 1em / 1em, #fff;
  letter-spacing: 0.05em;
  display: inline-block;
  color: #000;
  padding: 3% 3% 3% 15%;
  width: 100%;
  text-align: center;
  margin-inline: auto;
  font-size: 1.8rem;
}

.contact-info .mail {
    width: 70% !important;
    margin-inline: auto;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    margin-bottom: 5%;
    border-bottom: 1px solid #BDBDBD;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    opacity: 0.7;
}

.contact-info .tel a {
    padding-right: 0;
    background: url(../img/tel_w.png) no-repeat center left 23px / 0.7em;
    letter-spacing: 0.05em;
    display: block;
    color: #fff;
    line-height: 100%;
    padding-left: 1.5em;
}

/* オーバーレイ */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999;
}

.overlay.show {
    display: block;
}