@charset "UTF-8";
/*
 * ======================================
 * site.css — ペイワン株式会社 サイト固有CSS（全ページ共通パーツ）
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 *
 *  .payone-header              - 参考デザインに合わせたヘッダー見た目調整（高さ78px/半透明+blur/下線スクロール表示）
 *  .payone-logo(__text/__dot)  - テキストロゴ（payone + オレンジの四角）
 *  .payone-nav                 - ヘッダーPCナビの見た目調整（EN大+JA小、下線なし、hoverでオレンジ）
 *  .payone-cta                 - ヘッダーCONTACTボタン（角丸なし・高さ内包・hover濃オレンジ）
 *  .payone-heading(__label/__bar/__en/__ja) - 全セクション共通の小見出し（短い線+EN+日本語見出し）
 *  .payone-btn(--dark/--submit/__arrow)      - 参考デザインの角丸なしボタン（濃色/送信）
 *  .payone-badge(--req/--opt)  - フォーム必須/任意バッジ
 *  .payone-underline-y         - 黄色い下線の強調テキスト
 *  .payone-footer(...)         - フッター見た目（2カラム/コピーライト行）
 *  [data-reveal]               - スクロールフェードイン（.js有効時のみ初期非表示）
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 *  - 装飾パターン不足：参考デザイン特有の「短い線＋英字ラベル＋日本語見出し」小見出し（payone-heading）
 *  - 構造不足：テキストロゴ（英字＋四角ドット）の組み（payone-logo）
 *  - 状態不足：ヘッダーのスクロール連動下線表示（.is-scrolled）
 *  - 値の粒度不足：角丸なし・特定paddingのボタン（payone-btn）／半透明blurヘッダー
 */

/* --------------------------------------------------------------------------
 * 全体
 * -------------------------------------------------------------------------- */
html {
  scroll-padding-top: 78px;
}
body {
  color: #1a1a1a;
}

/* --------------------------------------------------------------------------
 * スクロールフェードイン（data-reveal）
 * JS有効時のみ初期非表示にし、JS無効でもコンテンツは表示される
 * -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.68, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 0.68, 0.3, 1);
}
.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
 * ロゴ（テキストロゴ：payone + オレンジの四角）
 * -------------------------------------------------------------------------- */
.payone-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
}
.payone-logo__text {
  font-family: "Encode Sans SC", sans-serif;
  font-weight: 600;
  font-size: 3.4rem;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  line-height: 1;
}
.payone-logo__dot {
  width: 9px;
  height: 9px;
  background: #f46121;
  display: inline-block;
  margin-left: 2px;
}
.payone-logo:hover {
  opacity: 1;
}

/* --------------------------------------------------------------------------
 * ヘッダー（header-bar を参考デザインに寄せる）
 * -------------------------------------------------------------------------- */
.payone-header {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.payone-header.is-scrolled {
  border-bottom-color: #ececec;
}
.payone-header .header__inner {
  max-width: 1720px;
  width: 95%;
  margin: 0 auto;
  padding: 0 clamp(16px, 1.5vw, 28px);
  height: 78px;
}

/* PCナビ */
.payone-nav.header__nav {
  gap: clamp(14px, 2.4vw, 34px);
  margin-right: clamp(16px, 2.4vw, 34px);
}
.payone-nav .header__nav-item a {
  gap: 3px;
  padding: 6px 2px;
}
.payone-nav .header__nav-item a::after {
  display: none;
}
.payone-nav .header__nav-en {
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.payone-nav .header__nav-ja {
  color: #999;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.payone-nav .header__nav-item a:hover .header__nav-en,
.payone-nav .header__nav-item a:hover .header__nav-ja {
  color: #f46121;
}

/* CONTACTボタン */
.payone-cta.header__cta {
  align-self: center;
  height: auto;
  padding: 9px 22px;
  gap: 2px;
  background: #f46121;
  font-family: "Encode Sans SC", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.payone-cta.header__cta:hover {
  background: #d94e14;
}
.payone-cta .header__cta__sub {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
 * セクション共通見出し（短い線＋英字ラベル＋日本語見出し）
 * -------------------------------------------------------------------------- */
.payone-heading__label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.payone-heading__bar {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: #f46121;
  flex-shrink: 0;
}
.payone-heading__en {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #f46121;
}
.payone-heading__ja {
  margin-top: 16px;
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}
.payone-heading--center {
  text-align: center;
}
.payone-heading--center .payone-heading__label {
  justify-content: center;
}

/* --------------------------------------------------------------------------
 * ボタン（角丸なし・参考デザイン準拠）
 * -------------------------------------------------------------------------- */
.payone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.payone-btn:hover {
  opacity: 1;
}
.payone-btn__arrow {
  font-family: "Encode Sans SC", sans-serif;
  font-weight: 400;
}
.payone-btn--dark {
  background: #111111;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  padding: 15px 32px;
}
.payone-btn--dark:hover {
  background: #f46121;
  color: #ffffff;
}
.payone-btn--submit {
  background: #f46121;
  color: #ffffff;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  padding: 17px 56px;
}
.payone-btn--submit:hover {
  background: #d94e14;
}

/* 強調テキスト（黄色下線） */
.payone-underline-y {
  color: #1a1a1a;
  font-weight: 700;
  border-bottom: 2px solid #ffd334;
  padding-bottom: 1px;
}

/* 必須／任意バッジ */
.payone-badge {
  display: inline-block;
  font-size: 1rem;
  padding: 2px 7px;
  margin-left: 9px;
  letter-spacing: 0.08em;
  vertical-align: middle;
  line-height: 1.4;
}
.payone-badge--req {
  color: #ffffff;
  background: #f46121;
}
.payone-badge--opt {
  color: #888888;
  background: #eeeeee;
}

/* --------------------------------------------------------------------------
 * フッター
 * -------------------------------------------------------------------------- */
.payone-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ececec;
  background: #f7f7f5;
}
.payone-footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}
.payone-footer__veil {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  z-index: 0;
}
.payone-footer__body {
  position: relative;
  z-index: 1;
}
.payone-footer__body {
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.payone-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  align-items: start;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
}
.payone-logo--footer .payone-logo__text {
  font-size: 2.4rem;
}
.payone-logo--footer .payone-logo__dot {
  width: 6px;
  height: 6px;
  margin-left: 1px;
}
.payone-footer__name {
  margin-top: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
.payone-footer__addr {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.9;
  color: #666666;
}
.payone-footer__inner .footer-body__left {
  width: auto;
}
.payone-footer__right {
  width: auto;
}
.payone-footer__nav.footer-body__nav {
  gap: 14px 28px;
  margin-top: 76px;
}
.payone-footer__nav .footer-body__nav-item a {
  font-size: 1.35rem;
  color: #555555;
}
.payone-footer__nav .footer-body__nav-item a:hover {
  color: #f46121;
}
.payone-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 22px clamp(20px, 4vw, 44px);
  border-top: 1px solid #e4e4e0;
  text-align: left;
}
.payone-footer__bottom .footer-bottom__copyright {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #aaaaaa;
}
.payone-footer__totop {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease;
}
.payone-footer__totop:hover {
  color: #f46121;
}

@media (max-width: 639px) {
  html {
    scroll-padding-top: 64px;
  }
  .payone-header .header__inner {
    height: 64px;
  }
  .payone-logo__text {
    font-size: 2.8rem;
  }
  .payone-footer__nav.footer-body__nav {
    margin-top: 24px;
    flex-direction: row;
  }
  .payone-footer__bottom {
    padding-bottom: 22px;
  }
}
