/*
Theme Name: swell_child
Template: swell
Version: 1.0
*/

/* =========================
   01. Global / Shared
   - 全ページ共通（フォント/ヘッダー/フッター/共通挙動）
   ========================= */

/* 基本フォント */
body{
  font-family: "Montserrat","Noto Sans JP",sans-serif;
}

h1{
  font-family: "Yu Gothic","游ゴシック","YuGothic","游ゴシック体",sans-serif;
  font-weight: 700;
}

h2,h3,h4,h5,h6{
  font-family: "Montserrat","Noto Sans JP",sans-serif;
  font-weight: 600;
}

p {
  font-family: "Montserrat","Noto Sans JP",sans-serif;
  font-weight: 400;
}

h2{
  font-size: 52px !important;
}
@media (max-width: 959px){
  h2{
    font-size: 32px !important;
  }
}

h3{
  font-size: 40px !important;
}
@media (max-width: 959px){
  h3{
    font-size: 28px !important;
  }
}

h4{
  font-size: 32px !important;
}
@media (max-width: 959px){
  h4{
    font-size: 24px !important;
  }
}

h5{
  font-size: 18px !important;
}

h6{
  font-size: 16px !important;
}

/* フッターとコンテンツのマージン削除 */
.l-content{
  margin-bottom: 0 !important;
}

/* =========================
   Header (SWELL)
   ========================= */

.l-header{
  --nav-font-size: 13px;
  --nav-letter-spacing: .05em;
  --nav-font-weight: 600;
  --nav-link-gap: 24px;
  --nav-max-width: 1280px;
  --nav-border-color: rgba(255,255,255,.5);
  --hover-ease: .18s ease;

  height: 72px;
  border-bottom: 1px solid var(--nav-border-color);
}

/* ナビのコンテンツ幅 */
.l-header .l-header__inner{
  max-width: var(--nav-max-width);
  margin-inline: auto;
  padding-inline: 40px;
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 959px){
  .l-header .l-header__inner{
       padding-inline: 4vw;
  }
}

.c-gnav {
  align-items: center;
		gap: 20px;
}

/* リンク同士の間隔 */
.l-header .c-gnav__list{
  display: flex;
  gap: var(--nav-link-gap);
  align-items: center;
}

/* 文字まわり */
.l-header .c-gnav a{
  font-size: var(--nav-font-size);
  letter-spacing: var(--nav-letter-spacing);
  font-weight: var(--nav-font-weight);
  text-decoration: none;

  font-family: "Montserrat","Noto Sans JP",sans-serif;
}

/* SWELL既存hover・下線などを無効化（ヘッダーナビ限定） */
.l-header .c-gnav li:hover > a,
.l-header .c-gnav li:focus-within > a{
  opacity: 0.5 !important;
}

/* 下線・装飾が li 側の疑似要素で出てる場合を潰す */
.l-header .c-gnav li::before,
.l-header .c-gnav li::after,
.l-header .c-gnav a::before,
.l-header .c-gnav a::after{
  content: none !important;
}

/* hoverのトランジション */
.l-header a,
.l-header button{
  transition: color var(--hover-ease), background-color var(--hover-ease), transform var(--hover-ease), opacity var(--hover-ease);
}
.l-header a:hover{ opacity: .85; }

/* contact ボタン化（メニューのCSSクラス: menu-contact） */
.l-header .menu-contact > a{
  padding: 8px 24px;
  background: #0D0D0D;
  color: #fff;
  opacity: 1;

  display: inline-flex;
  align-items: center;
  height: 40px;
  margin-left: 16px;
}

/* --------------------------
   Fix: SP logo padding remove
   -------------------------- */

@media (max-width: 959px)  {
	.l-header__logo {
		  padding: 0 !important;
	}
}


@media (max-width: 959px){
  .l-header .c-headLogo__link,
  .l-fixHeader .c-headLogo__link{
    padding: 0 !important;
  }
}


/* --------------------------
   Header - Scroll時もボタン維持
   -------------------------- */

.l-fixHeader__inner {
	align-items: center !important;
}

.l-fixHeader .menu-contact > a{
  padding: 8px 24px;
  background: #0D0D0D;
  color: #fff;
  display: inline-flex;
  align-items: center;
  height: 40px;
  font-weight: 600;
}

.l-fixHeader .c-gnav a{
  font-weight: 600;
}


/* =========================
   Footer (SWELL)
   ========================= */

.l-footer{
  background: #000;
  padding: 56px 0;
}

.l-footer .l-footer__inner{
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

.renewal-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.renewal-footer__left{
  font-family: "Montserrat","Noto Sans JP",sans-serif;
  letter-spacing: .18em;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}

.renewal-footer__right{
  font-family: "Montserrat","Noto Sans JP",sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}

/* SPは縦並びに */
@media (max-width: 768px){
  .renewal-footer{
    flex-direction: column;
    align-items: flex-start;
  }
  .renewal-footer__right{
    white-space: normal;
  }
}

/* SWELL標準のフッターフット（コピーライト帯）を非表示 */
.l-footer__foot {
  display:none;
}


/* =========================
   02. Utilities
   - classを付けるだけで効く（余白/整列/表示など）
   ========================= */
/* ---------------------------------
   02-01. Border Utilities
   --------------------------------- */

/* ボーダー1
   上下のみ / 白 / 5%
---------------------------------- */
.u-border-1{
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}


/* ボーダー2
   四面 / 白 / 8%
---------------------------------- */
.u-border-2{
  border: 1px solid rgba(255,255,255,0.08) !important;
}


/* ボーダー3
   四面 / 黒 / 8%
---------------------------------- */
.u-border-3{
  border: 1px solid rgba(0,0,0,0.08) !important;
}

/* ---------------------------------
   02-02. Spacing Utilities
   --------------------------------- */

/* パディング1
   4面 / 40px
---------------------------------- */
.u-p-40{
  padding: 40px !important;
}

/* パディング2
   4面 / 20px
---------------------------------- */
.u-p-20{
  padding: 20px !important;
}

/* パディング1
   4面 / 10px
---------------------------------- */
.u-p-10{
  padding: 10px !important;
}

/* ギャップ1
   gap / 80px
---------------------------------- */
.u-gap-80{
  gap: 80px !important;
}

/* ギャップ2
   gap / 40px
---------------------------------- */
.u-gap-40{
  gap: 40px !important;
}

/* ギャップ3
   gap / 30px
---------------------------------- */
.u-gap-30{
  gap: 30px !important;
}

/* ギャップ4
   gap / 15px
---------------------------------- */
.u-gap-15{
  gap: 15px !important;
}


/* ---------------------------------
   02-03. Typography Utilities
   --------------------------------- */

/* font-weight: 600 */
.u-fw-600{
  font-weight: 600 !important;
}

/* font-weight: 500 (Medium) */
.u-fw-500{
  font-weight: 500 !important;
}

/* ---------------------------------
   Background Utilities
   --------------------------------- */

/* 上 → 下 グラデーション
*/
.u-bg-grad-dark-vertical{
  background: linear-gradient(
    to bottom,
    #0A0A0A 0%,
    #0F0F1A 100%
  );
}

/* ---------------------------------
   02-04. anime Utilities
   --------------------------------- */

/* 下からぬるり表示 
 ---------------------------------- */

.u-reveal-up {
  overflow: hidden;
}

.u-reveal-up > span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.u-reveal-up.is-animated > span {
  transform: translateY(0);
  opacity: 1;
}

/* -------------------------
   Typography Utilities
   PC + SP responsive
   -------------------------*/

/* ===== H1 ===== */
.u-fs-h1{
  font-size: clamp(32px, 5vw, 64px) !important;
	line-height: 1.4;
}
@media (max-width: 959px){
  .u-fs-h1{
    font-size: 32px !important;
	      line-height: 1.5;
  }
}

/* ===== Paragraph Large ===== */
.u-fs-p-lg{
  font-size: 18px !important;
}
@media (max-width: 959px){
  .u-fs-p-lg{
    font-size: 16px !important;
  }
}

/* ===== Paragraph Medium ===== */
.u-fs-p-md{
  font-size: 16px !important;
}
@media (max-width: 959px){
  .u-fs-p-md{
    font-size: 14px !important;
  }
}

/* ===== Paragraph Small ===== */
.u-fs-p-sm{
  font-size: 14px !important;
}
@media (max-width: 959px){
  .u-fs-p-sm{
    font-size: 13px !important;
  }
}

/* ===== English Title ===== */
.u-fs-en{
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* =========================
   03. Components
   - 使い回すパーツ
   ========================= */

.btn-viewmore a{
  display: flex;
  align-items: center;
  gap: 20px;
  border: none;
  padding: 0;
  font-weight: 700;
  letter-spacing: .3em;
}

.btn-viewmore a::after{
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #147ad6;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: .2s;
}

.btn-viewmore a:hover::after{
  transform: translateX(4px);
}