@charset "utf-8";

/* ======================
   CONTACT / SP stylesheet
   （max-width:768px で読み込まれる前提）
   PC用CSSに依存しない “完結版”
   ====================== */

/* ------------------ 共通 ------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html{
  overflow-y: auto;
  scrollbar-gutter: stable;
  background: linear-gradient(135deg, #000 50%, #fbfbfb 50%);
  background-attachment: fixed;
  min-height: 100%;
}

body{
  margin: 0;
  min-height: 100vh;
    font-family: "Luxurious Roman", system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI","Noto Sans JP", sans-serif;
  background: transparent;
  color: #fff;
}

.site{
  position: relative;
  min-height: 100vh;
  z-index: 1;
  background: transparent;
}

/* フォント指定（必要な場所に class="invert-auto" を付ける前提の保険） */
.invert-auto{
  color: #fff;
}

/* ------------------ ヘッダー（SP） ------------------ */
/* ヘッダー全体は固定しない（タイトルはスクロールで流れる） */
.site-header{
  position: relative;
  z-index: 30;
  pointer-events: none;

  width: min(700px, 92vw);
  margin: 0 auto;
  padding-top: 14px;

  display: block;
}

/* メニューだけ固定（中央配置＋1行＋横スクロール） */
.site-header .menu{
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;

  pointer-events: auto;

  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;

  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  margin: 0;
  padding: 10px 12px;
  list-style: none;

  max-width: calc(100vw - 28px);
  width: fit-content;

  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header .menu::-webkit-scrollbar{ display:none; }

/* リンク共通：高さブレ（＝下線が離れる原因）を潰す */
.site-header .menu a{
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;

  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 4px rgba(0,0,0,.45);

  position: relative;
  padding: 0 0 2px; /* 下線用に2pxだけ */
}

/* 下線：デフォルトは出さない（現在地だけ出す） */
.site-header .menu a::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.75);
  opacity: 0;
  transition: opacity .2s ease;
}

/* ✅ 今のページだけ下線 */
.site-header .menu a.is-current::after{
  opacity: 1;
}

/* ✅ SNSは下線対象外（HTMLを触らない版：aria-labelで判定） */
.site-header .menu a[aria-label="Instagram"]::after,
.site-header .menu a[aria-label="X"]::after{
  content: none !important;
}

/* SNSアイコン */
.site-header .menu a img{
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;

  opacity: .92;
  transition: opacity .2s ease, transform .2s ease;

  flex: 0 0 auto;
  filter: invert(1) drop-shadow(0 6px 14px rgba(0,0,0,.35));
}
.site-header .menu a:hover img{
  opacity: 1;
  transform: scale(1.06);
}

/* タイトル（メニューの下で中央） */
.site-header .about-title__main{
  margin: 86px auto 0;
  text-align: center;
  pointer-events: none;

  font-size: 40px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.42);
  line-height: 1.05;
  text-shadow: none;
}

.site-header .about-title__sub{
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.26);
  text-shadow: none;
  text-align: center;
}

/* ------------------ CONTACT レイアウト（SP） ------------------ */
.contact{
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;

  /* 固定メニューぶん、先頭余白（潜り防止） */
  padding-top: 30px;
}

/* 本文ベール */
.contact::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(circle at 50% 38%,
      rgba(0,0,0,.20) 0%,
      rgba(0,0,0,.08) 46%,
      rgba(0,0,0,0) 80%);
}

.contact-inner{
  width: min(700px, 92vw);
  margin: 0 auto;
  padding: 40px 0 110px;
  position: relative;
  z-index: 1;
}

.contact-right{
  width: 100%;
  margin: 0 auto;
}

/* イントロ */
.contact-intro{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  opacity: 0.92;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 4px rgba(0,0,0,.45);
  text-align: left;
}

/* ------------------ フォーム（SP） ------------------ */
.contact-form{
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 14px;
  overflow: hidden;

  background: rgba(0,0,0,0.16);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.field{ margin-bottom: 14px; }

.field__label{
  margin-bottom: 8px;
  display: block;
  letter-spacing: .14em;
  opacity: .92;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 4px rgba(0,0,0,.45);
  font-weight: bold;
}

.field__input,
.field__select,
.field__textarea{
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28);

  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 4px rgba(0,0,0,.35);

  outline: none;
  font-family: inherit;
  font-size: 14px;
}

.field__textarea{
  resize: vertical;
  min-height: 140px;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus{
  border-color: rgba(255,255,255,.46);
  background: rgba(255,255,255,.13);
}

/* placeholder（白に） */
.field__input::placeholder,
.field__textarea::placeholder{
  color: rgba(255,255,255,.75);
  opacity: 1; /* Firefox対策 */
}
.field__input::-webkit-input-placeholder,
.field__textarea::-webkit-input-placeholder{
  color: rgba(255,255,255,.75);
}

/* select / option */
.field__select{ color: rgba(255,255,255,.92); }
.field__select option{
  color: #000;
  background: #fff;
}

.field--check{ margin-top: 4px; }

.field__hint{
  margin: 8px 0 0;
  font-size: 12px;
  opacity: .85;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 4px rgba(0,0,0,.35);
}

/* SEND */
.actions{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.btn-submit{
  appearance: none;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;

  width: 100%;
  max-width: 360px;
  padding: 12px 18px;

  background: rgba(255,255,255,.08);

  color: rgba(255,255,255,.95);
  font-family: "Luxurious Roman", sans-serif;
  font-size: 15px;
  letter-spacing: .14em;

  cursor: pointer;

  box-shadow:
    0 8px 22px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.35);

  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-submit:hover{
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-submit:active{
  transform: translateY(0);
  box-shadow:
    0 6px 18px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.25);
}

/* ------------------ 波（SP） ------------------ */
.bg-waves{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34vh;
  min-height: 90px;
  z-index: 5;
  pointer-events: none;
}

.waves{
  width: 100%;
  height: 100%;
  display: block;
  opacity: .20;
  filter: drop-shadow(0 -10px 18px rgba(0,0,0,.33));
}

.wave{ fill:#777; }
.wave1{ opacity:.45; }
.wave2{ opacity:.30; }
.wave3{ opacity:.18; }
.wave4{ opacity:.10; }

/* 波（SP：完全停止） */
.parallax > use{
  animation: none !important;
  transform: none !important;
}

/* さらに小さい端末 */
@media (max-width: 360px){
  .site-header .about-title__main{ font-size: 34px; }
  .site-header .about-title__sub{ font-size: 12px; }

  .site-header .menu{
    padding: 9px 10px;
    gap: 8px 10px;
  }
  .site-header .menu a{ font-size: 12px; }
  .site-header .menu a img{ width: 28px; height: 28px; }
}
