@charset "UTF-8";

/* =========================================
   基本設定・共通
========================================= */
:root {
  --color-dark: #19202a;
  --color-white: #ffffff;
  --color-text: #333333;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
}

html {
  scroll-behavior: smooth;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

a {
  color: #111;
  text-decoration: none;
  background-color: transparent;
}

a:hover, a:focus {
  text-decoration: none;
  outline: 0;
  color: #9F8E23;
}

/* =========================================
   Header & Menu
========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

header.is-black {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-link {
  text-decoration: none;
}

.logo img {
  height: 68px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

header.is-black .logo img {
  filter: none;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.4s ease, opacity 0.3s;
}

nav a:hover {
  opacity: 0.6;
}

nav .sns-link {
  padding-top: 10px;
  margin: 0;
}

header.is-black nav a {
  color: #000000;
}

.btn-contact {
  border: 1px solid #ffffff;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

header.is-black .btn-contact {
  border-color: #000000;
  color: #000000 !important;
}

header.is-black .btn-contact:hover {
background-color: #000000;
color: #ffffff !important;
}

.text-ipad {
display: none;
}

/* =========================================
ハンバーガーメニュー用追加スタイル
========================================= */
.hamburger-btn {
display: none;
background: none;
border: none;
width: 30px;
height: 24px;
position: relative;
cursor: pointer;
z-index: 1001;
padding: 0;
}

.hamburger-btn span {
display: block;
position: absolute;
width: 100%;
height: 2px;
background-color: #ffffff;
left: 0;
transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.4s ease;
}

/* ヘッダー背景が白に切り替わった時（スクロール時）は三本線を黒にする */
header.is-black .hamburger-btn span {
background-color: #000000;
}

.hamburger-btn span:nth-child(1) { top: 0; }
.hamburger-btn span:nth-child(2) { top: 11px; }
.hamburger-btn span:nth-child(3) { top: 22px; }

/* メニュー展開時（アクティブ）のアニメーションと色固定 */
.hamburger-btn.is-active span {
background-color: #000000 !important; /* 白背景のドロワーになるため常に黒に固定 */
}

.hamburger-btn.is-active span:nth-child(1) {
transform: translateY(11px) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
opacity: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 1024px) {
  nav ul { gap: 15px; }
  nav a { font-size: 0.75rem; }
  .btn-contact { padding: 10px 15px; }
  .text-pc { display: none; }
  .text-ipad { display: inline; }
}

@media (max-width: 768px) {

.hamburger-btn {
display: block; /* モバイル幅のみボタンを表示 */
}

/* ナビゲーションメニューを画面外（右側）に待機させる全画面ドロワー化 */
nav {
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background-color: rgba(255, 255, 255, 0.98);
transition: right 0.4s ease;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
}

nav.is-open {
right: 0; /* アクティブ時に右からスライドイン */
}

nav ul {
display: flex !important; /* 既存の display: none を上書きし、縦並びに */
flex-direction: column;
align-items: center;
gap: 30px;
margin: 0;
padding: 0;
}

nav a {
color: #000000 !important;
font-size: 1.2rem;
}

.btn-contact {
border-color: #000000 !important;
color: #000000 !important;
padding: 12px 30px;
}

.btn-contact:hover {
background-color: #000000 !important;
color: #ffffff !important;
}

header { padding: 15px 20px; }
.logo img { height: 48px; }
}

/* =========================================
   表示切り替えユーティリティ (Footer用)
========================================= */
.mobile {
  display: none;
  padding: 0;
}

@media only screen and (max-width: 1080px) {
  .mobile {
    display: block;
    padding: 0;
  }
}

/* =========================================
   Footer スタイル
========================================= */
footer.section-footer {
  background-color: #E7E7E7;
  margin: 0;
  padding: 24px 0 24px 0;
  position: relative;
  z-index: 40;
  width: 100%;
}

.site-foot {
  position: relative;
  height: 240px;
  border-top: none;
  margin: 24px 0 0 48px;
  padding: 36px 0 0 0;
}

@media only screen and (max-width: 1080px) {
  .site-foot {
    height: 360px;
    margin: 0 24px 0 24px;
  }
}

.site-foot .cont {
  font-family: var(--font-main);
  color: #000;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  margin: 0;
  padding: 0;
}

.site-foot .mail {
  text-align: center;
  margin: 0;
  padding: 8px;
}

.site-foot .mail img {
  width: 36px;
  margin: 0;
  padding: 8px;
}

@media only screen and (max-width: 480px) {
  .site-foot .mail img {
    padding: 0 0 8px 0;
  }
}

.site-foot .tel {
  color: #000;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin: 0px;
  padding: 4px 0;
}

.site-foot .tel span {
  border-bottom: 1px solid #000;
}

.site-foot .time {
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  .site-foot .time {
    font-size: 11px;
  }
}

.f_menu {
  position: absolute;
  left: 12px;
  bottom: 0px;
  width: 900px;
  font-weight: 600;
}

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

.f_menu ul li {
	font-size: 13px;
	display: inline;
	padding: 0 12px;
}

.f_menu ul li a {
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s;
}

.f_menu ul li a:hover {
  opacity: 0.6;
}

.f_menu .sns-link {
  padding-bottom: 20px;
  margin: 0;
}

.copyright {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 260px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.copyright img {
  padding: 24px;
}

@media only screen and (max-width: 1080px) {
  .f_menu { left: 0; width: 180px; }
  .f_menu ul li { font-size: 11px; display: block; padding: 4px 12px 0 0; }
  .copyright { right: 0; width: 180px; font-size: 10px; text-align: right; }
  .copyright img { padding: 24px 0; }
}

.footer-menu {
  margin: 0;
  padding: 24px;
}

.footer-menu .delivery_free {
  width: 220px;
  margin: 0 auto;
  padding: 0;
}

.footer-menu .car {
  width: 45px;
  height: 28px;
  margin: 0 auto 12px auto;
}

.footer-menu hr {
  margin: 28px 0;
  border-top: 1px solid #000;
}

.footer-menu ul {
  width: 120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.footer-menu ul li {
  background: url(/images/common/cat_arrow.svg) no-repeat left center;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 2px;
  padding: 0 0 0 28px;
  margin: 0 0 4px 0;
}

.footer-menu ul li a {
  text-decoration: none;
  color: #000;
}

.footer-menu .tra_title {
  color: #000;
  font-size: 14px;
  font-weight: 100;
  line-height: 2.4;
  letter-spacing: 3px;
  padding: 0;
  margin: 0;
}

.footer-menu p {
  color: #000;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 2px;
  padding: 0;
  margin: 0 0 12px 0;
}

.footer-menu a {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 2px;
  text-decoration: none;
}

/* ---------------------------------
   Mobile / Tablet スクロールバー完全非表示
   （実機およびプレビューiframe内の両方に適用）
--------------------------------- */
@media screen and (max-width: 820px) {
  html, body {
    /* Firefox用 */
    scrollbar-width: none;
    /* IE, Edge用 */
    -ms-overflow-style: none;
  }
  
  /* Chrome, Safari, Edge(Blink)用 */
  ::-webkit-scrollbar {
    display: none;
  }
}