@charset "UTF-8";
/* ==========================================
   フォントの定義
   ========================================== */
@font-face {
  font-family: "futura"; /* 好きなフォント名を付ける（自由に決めてOK） */
  src: url("fonts/futura-light-bt.ttf") format("truetype"); /* フォントファイルへのパス */
  font-display: swap; /* フォントが読み込まれるまでの表示遅延（文字消え）を防ぐ */
}
/* ==========================================
   全体の基本設定
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "futura", sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ==========================================
   ヘッダー
   ========================================== */
.header {
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .header-inner {
    justify-content: flex-start;
  }
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  height: 100%;
}
@media (max-width: 768px) {
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}
.logo a {
  height: 100%;
  display: flex;
  align-items: center;
}
.logo a img {
  height: 50%;
}

/* ==========================================
   2本線ハンバーガーメニュー
   ========================================== */
/* チェックボックスは非表示 */
.menu-checkbox {
  display: none;
}

/* ボタンの枠組み */
.hamburger {
  width: 30px;
  height: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 110;
}

/* 2本線のデザイン */
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* クリック時（チェック状態）の×アニメーション */
/* ==========================================
   ドロワーメニュー（中身）
   ========================================== */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態は右側に隠す */
  width: 250px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  padding-top: 100px;
  transition: all 0.3s ease;
  z-index: 105;
}
.nav-menu ul {
  list-style: none;
  text-align: center;
}
.nav-menu ul li {
  margin-bottom: 30px;
}
.nav-menu ul li a {
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 10px 0;
}

/* メニューを開いたときの動き */
/* ==========================================
   メインエリア
   ========================================== */
.main-area {
  margin-top: 70px;
  width: 100%;
}
.main-area img {
  width: 100%;
  height: calc(100vh - 70px);
  object-fit: cover;
}
@media (max-width: 768px) {
  .main-area img {
    width: 100%;
    height: auto;
  }
}

/* ==========================================
   フッター
   ========================================== */
footer {
  width: 100%;
  height: 100px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #aaa;
  font-weight: lighter;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  footer {
    height: 50px;
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */