@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  /* 背景を白色（半透明）に設定 */
  padding: 0.5em 0;
  z-index: 1000;
  /* ヘッダーの後ろに隠れないようにする */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  /* 左右に配置 */
  align-items: center;
}

.nav-icon {
  margin-left: 1em;
  /* 左端に少し余白を追加 */
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  /* 右端に配置 */
  align-items: center;
  /* 垂直方向に中央に配置 */
}

nav ul {
  display: flex;
  justify-content: flex-end;
  /* 右端に寄せる */
  align-items: center;
  /* 垂直方向に中央に配置 */
}


nav li {
  display: inline;
  margin: 0 1em;
}

nav a {
  color: black;
  /* 文字色を黒に設定 */
  text-decoration: none;
  padding: 0.5em 1em;
}

.hamburger-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ジャンプ位置を調整 */
section[id]::before {
  content: "";
  display: block;
  height: 80px;
  /* 固定ヘッダーの高さに相当する余白 */
  margin-top: -80px;
  /* 固定ヘッダーの高さと同じ値 */
}

header {
  position: relative;
  width: 100%;
  height: auto;
  /* 必要に応じて高さを指定 */
}

header img {
  width: 100%;
  height: auto;
  display: block;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33.33%;
  /* ヘッダー画像の1/3の幅に設定 */
}

/* セクションの h2 要素を中央揃えし、文字間を調整 */
section h2 {
  text-align: center;
  letter-spacing: 0.1em;
  /* 文字間を少し空ける */
  margin: 3em 0 1em 0;
  /* 上下の余白を追加 */
  font-size: 2em;
  /* 必要に応じてフォントサイズを調整 */
  color: #333;
  /* テキストの色を設定 */
}


section p {
  text-align: center;
  line-height: 1.6;
  /* 行間を設定 */
  margin: 0 0 1.5em;
  /* 下部に余白を追加 */
  color: #555;
  /* テキストの色を設定 */
  max-width: 800px;
  /* 最大幅を設定して、長いテキストを読みやすく */
  margin-left: auto;
  margin-right: auto;
}

/* コンセプトセクションのカットモデル写真を横並びにする */
.cut-model-photos {
  display: flex;
  justify-content: space-between;
}

.cut-model-photos img {
  width: 24%;
  /* 写真を4枚横並びにするために幅を設定 */
  height: auto;
}


.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5em;
  padding: 2em;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.category {
  background-color: #fff;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 1.5em);
  box-sizing: border-box;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.category h3 {
  text-align: center;
  color: #333;
  margin-bottom: 1em;
  font-size: 1.5em;
}

.category p {
  text-align: center;
  color: #666;
  margin-bottom: 1em;
}

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

.category li {
  padding: 0.75em 0;
  border-bottom: 1px solid #ddd;
  color: #333;
}

.category li:last-child {
  border-bottom: none;
}

/* スタッフ紹介セクションのスタイル */
.staff-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  /* スタッフメンバーを左右に配置 */
  gap: 1em;
  /* カテゴリー間の余白を追加 */
}

.staff-member {
  padding: 1em;
  text-align: center;
  /* テキストを中央揃え */
  flex: 1 1 calc(25% - 1em);
  /* 各スタッフメンバーを4分の1の幅で表示 */
  box-sizing: border-box;
}

.staff-member img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  /* 下に余白を追加 */
}

.staff-member img.staff-photo {
  width: 100%;
  height: auto;
  border-radius: 50%;
  /* 画像を丸くする */
  margin-bottom: 1em;
  /* 下に余白を追加 */
}

.staff-member h3 {
  color: #333;
  margin-bottom: 0.5em;
}

.staff-member a img {
  width: 30px;
  /* インスタグラムアイコンのサイズを設定 */
  height: 30px;
}

/* アクセスセクションのスタイル */
#access .map {
  text-align: center;
  /* マップを中央揃え */
  margin-bottom: 1em;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9のアスペクト比を維持するためのパディング */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #f9f9f9;
}

#access .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.store-info {
  text-align: center;
  /* テキストを中央揃え */
  line-height: 1.6;
  /* 行間を設定 */
  max-width: 800px;
  /* 最大幅を設定して読みやすく */
  margin: 0 auto;
  /* 左右の余白を自動設定し中央に配置 */
  color: #555;
  /* テキストの色を設定 */
}

.store-info h3 {
  color: #333;
  /* 見出しの色を設定 */
  margin-bottom: 0.5em;
}

.store-info p {
  margin: 0.5em 0;
  /* 上下の余白を追加 */
}

/* フォームのスタイル */
form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5em;
}

.form-group label {
  display: block;
  margin-bottom: 0.5em;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75em;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group input[type="submit"] {
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 1em 2em;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.form-group input[type="submit"]:hover {
  background-color: #555;
}

/* フッターのスタイル */
footer {
  text-align: center;
  padding: 2em 0;
  background-color: #f9f9f9;
  color: #555;
}