@charset "UTF-8";
/* PC */
@import url('https://fonts.googleapis.com/css2?family=Lusitana:wght@400;700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lusitana:wght@400;700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
.pc {
  display: block;
}
.sp {
  display: none;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
img {
  border: 0;
  vertical-align: top;
}
body {
  font-size: 12px;
  line-height: 2.2;
  color: #282828;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
/* ヘッダー全体の配置 */
.header-container {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background-color: #090909;
  color: #fff;
}
/* ロゴ */
.logo-area .logo {
  width: 180px;
  height: auto;
}
/* 電話番号全体 */
.tel {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-size: 1.4rem;
  color: #fff;
  margin-left: 52%;
  margin-right: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
/* TELラベル部分 */
.tel span {
  font-size: 0.9rem;
  position: relative;
  top: -15px;
  font-family: "Roboto", sans-serif;
}
/* お問い合わせボタン */
.contact-button {
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 2%;
}
.contact-button:hover {
  background: #fff;
  color: #333;
}
/* ハンバーガーアイコン（白くて常に右上に固定） */
.toggle-label {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 17px;
  cursor: pointer;
  z-index: 1002;
  /* メニューより上に表示 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* 初期状態のハンバーガーアイコン */
.toggle-label span {
  display: block;
  height: 2px;
  width: 30px;
  background: #fff !important;
  border-radius: 2px;
  transition: 0.3s;
}
/* Xに変形（メニューオープン時） */
.menu-toggle:checked + .toggle-label span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle:checked + .toggle-label span:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked + .toggle-label span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* チェックボックス本体（白い四角の原因）を完全に非表示に */
.menu-toggle {
  display: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: none;
}
/* メニュー本体（右から出現、ボタンの下に表示） */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  /* 初期状態で画面外 */
  left: auto;
  width: 300px;
  height: 100%;
  background: #111;
  /* 黒背景 */
  transition: 0.5s;
  padding: 40px 20px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  /* ボタンより下に設定 */
}
/* 開いたときに右から表示 */
.menu-toggle:checked ~ .nav-menu {
  right: 0;
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* メニューリンクスタイル（白文字） */
.nav-menu ul li a {
  display: block;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
.nav-menu ul li a:hover {
  background-color: #333;
}
.nav-menu ul li {
  border-bottom: 1px solid #444;
}
/* メニューを開いたとき右に表示 */
.menu-toggle:checked ~ .nav-menu {
  right: 0;
}
/* メニュー開いたとき、ボタンも左に動かす（ウィンドウ右端キープ） */
.menu-toggle:checked + .toggle-label {
  right: 307px;
  /* メニュー幅 + 余白 */
}
/* メニューリスト（反転色） */
.nav-menu ul li a {
  display: block;
  padding: 15px 0;
  color: #fff;
  /* 白文字に変更 */
  text-decoration: none;
  font-size: 1rem;
}
/* 丸型の固定ボタン */
.video-fixed-button {
  position: fixed;
  top: 150px;
  right: 30px;
  width: 200px;
  height: 200px;
  background-color: #090909;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
/* モーダル全体 */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
/* モーダル内コンテンツ */
.video-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}
.video-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: -30px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.footer {
  background-color: #090909;
  color: #fff;
  padding: 5% 10% 3%;
  font-family: "Noto Sans JP", sans-serif;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5%;
}
/* 左カラム */
.footer-left {
  width: 40%;
}
.footer-left .logo {
  padding: 30px 0 0 0;
  margin-bottom: 0px;
}
.footer-left p {
  font-size: 1rem;
  margin-bottom: 2%;
  line-height: 1;
}
/* 右カラム */
.footer-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5%;
}
/* ナビメニュー */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 1行に3列、幅均等 */
  grid-template-rows: auto auto;
  /* 自動で2行 */
  gap: 5% 5%;
  list-style: none;
  padding: 0;
  margin: 0 0 5% 0;
  width: 100%;
}
.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
.footer-nav li a:hover {
  opacity: 0.7;
}
/* お問い合わせボタン */
.footer-contact-button {
  color: #fff;
  border: 2px solid #fff;
  padding: 2% 5%;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  /* 左寄せ */
}
.footer-contact-button:hover {
  background-color: #fff;
  color: #333;
}
/* コピーライト */
.footer-bottom {
  text-align: center;
  margin-top: 3%;
  font-size: 0.8rem;
}
/* タブレット対応（画面幅1366px以下） */
@media screen and (max-width: 1366px) {
  .tel {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 1.4rem;
    color: #fff;
    margin-left: 48%;
    margin-right: 30px;
    font-family: "Noto Sans JP", sans-serif;
  }
}
/* タブレット対応（画面幅1024px以下） */
@media screen and (max-width: 1024px) {
  .tel {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 1.4rem;
    color: #fff;
    margin-left: 26%;
    margin-right: 30px;
    font-family: "Noto Sans JP", sans-serif;
  }
}
/* タブレット対応（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .tel {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 1.2rem;
    color: #fff;
    margin-left: 11%;
    margin-right: 30px;
    font-family: "Noto Sans JP", sans-serif;
  }
  /* TELラベル部分 */
  .tel span {
    font-size: 0.9rem;
    position: relative;
    top: -15px;
    font-family: "Roboto", sans-serif;
  }
  /* お問い合わせボタン */
  .contact-button {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: background 0.3s, color 0.3s;
    font-family: "Noto Sans JP", sans-serif;
    margin-right: 2%;
  }
  .footer-left p {
    font-size: 0.79rem;
    margin-bottom: 2%;
    line-height: 1;
  }
}
/* スマホ対応（画面幅480px以下） */
@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* 丸型の固定ボタン */
  .video-fixed-button {
    position: fixed;
    top: 225px;
    right: 3px;
    width: 100px;
    height: 100px;
    background-color: #090909;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    line-height: 1.3;
  }
  .footer-left {
    width: 100%;
    padding: 0 10%;
  }
  .footer-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5%;
  }
  .sp-footer-menu {
    width: 80%;
    margin: 0 auto;
    padding: 0px 0;
  }
  .sp-footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sp-footer-menu ul li {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
  }
  .sp-footer-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    display: block;
    font-weight: normal;
  }
  .sp-footer-menu ul li:last-child a {
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}