@charset "UTF-8";

/* ======================
リセット
====================== */
body {
  margin: 0;
  font-family: sans-serif;
}

/* ======================
header（固定＆透明）
====================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  padding: clamp(28px, 6vw, 48px) clamp(20px, 5vw, 40px) 20px 24px;
  box-sizing: border-box;

  background: transparent;
  z-index: 1200;
	
 opacity: 1;
  transform: translateY(0);
}

.header.show {
  opacity: 1;
  transform: translateY(0);
}

/* 視認性少しUP（任意） */
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.4),
    rgba(255,255,255,0)
  );
  pointer-events: none;
	display: none;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 24px);
}

/* アイコン */
.icon img {
  width: clamp(28px, 5vw, 48px);
  height: auto;
  display: block;
}

/* ======================
ハンバーガー
====================== */
/* ハンバーガー */
.hamburger {
  width: clamp(70px, 12.5vw, 120px);
  height: clamp(70px, 12.5vw, 120px); /* ←高さを完全一致 */
  position: relative;
  z-index: 1100;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 70%;
  height: 2px;
  background: #000;

  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 30%; }
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.hamburger span:nth-child(3) { top: 70%; }

/* × */
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ======================
メニュー（全面）
====================== */
.menu {
  position: fixed;
  inset: 0;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;

  z-index: 1100;

  display: flex;
  justify-content: center;
  align-items: center;
}

.menu.active {
  opacity: 1;
  visibility: visible;
}

/* 中央配置 */
.menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

/* 行間 */
.menu li {
  margin-bottom: clamp(20px, 4vw, 40px);
}

/* テキスト */
.menu a {
  text-decoration: none;
  color: #333;
  font-size: clamp(23px, 6vw, 35px);
  font-weight: 600;
}

/* SNS */
.menu-sns {
  margin-top: clamp(40px, 8vw, 80px);
}

.menu-sns img {
  width: clamp(32px, 8vw, 60px);
  margin: 0 auto;
  display: block;
}

/* ======================
contact
====================== */

.contact-fixed {
  position: fixed;
  bottom: 0;

  width: 90%;
  max-width: 100vw;

  left: 50%;
  transform: translate(-50%, 0); /* ←これが重要 */

  z-index: 1300;
}

.contact-fixed img {
  width: 100%;
  display: block;
}

/* ======================
price 共通
====================== */
.price,
.price2 {
  padding: 60px 20px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 右ライン */
.price::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 100%;
  background: #33b0b4;
}

.price2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 100%;
  background: #efef9a;
}

/* タイトル */
.price-title {
  margin-bottom: 40px;
  padding-left: 7%;
}

.price-title img {
  width: clamp(180px, 40vw, 280px);
  display: block;
}

/* ======================
レイアウト
====================== */
.price-wrap {
  position: relative;
  padding-left: 7%;
}

/* 左ライン */
.price-line {
  position: absolute;
  left: 7%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #71bfc3;
}

/* ======================
コンテンツ
====================== */
.price-content,
.price2-content {
  margin-left: 40px;
}

/* 見出し */
.price-content h3,
.price2-content h3 {
  margin: 30px 0 10px;
  font-size: clamp(25px, 2vw, 30px);
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* 行 */
.price-row
{
  display: flex;
  justify-content: space-between;
   font-size: clamp(16px, 3.8vw, 20px);
  margin-bottom: 4px;
  line-height: 2;
}

/* 左 */
.price-row span:first-child,
.price2-row span:first-child {
  color: #333;
}

/* 右 */
.price2-row span:last-child {
  font-weight: 600;
margin-left: auto;
  margin-right: 40px;
}

.price2 .price-wrap {
  padding-left: 0;
}

.price2-row {
  line-height: 3;
}

.price2 .price2-content {
  margin-left: 20px; /* or 0 */
}

.price2-row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.price2-row span:last-child {
  margin-left: auto;
}

/* ======================
ロゴ
====================== */
.price-logo {
  text-align: center;
  margin-top: 40px;
}

.price-logo img {
  width: 50vw;
  display: block;
  margin: 0 auto;
  margin-bottom: 30vw;
}

