@charset 'UTF-8';
/* 0. フォント指定 (Font family)
--------------------------------------------- */
/* 1. カラー (Colors)
--------------------------------------------- */
/* 2. ブレイクポイント (Breakpoints)
--------------------------------------------- */
/* 3. 余白 (Spacing) - 8pxベース
--------------------------------------------- */
/* 4. レイアウト・パーツ幅 (Layout Sizes)
--------------------------------------------- */
/* 5. タイポグラフィ (Typography)
--------------------------------------------- */
/* 6. 装飾・その他 (Decorations)
--------------------------------------------- */
/* 7. 重なり順 (Z-index)
--------------------------------------------- */
/* 8. アニメーション (Transitions)
--------------------------------------------- */
/* 9. WordPress Admin Bar
--------------------------------------------- */
:root
{
    /* Colors matching the design */
    --color-bg: #0f1115;
    --color-text-main: #f3f4f6;
    /* gray-100 */
    --color-text-muted: #9ca3af;
    /* gray-400 */
    --color-text-darker: #4b5563;
    /* gray-600 */
    --color-accent-blue: #3b82f6;
    /* blue-500 */
    --color-accent-yellow: #facc15;
    /* yellow-400 */
    --color-accent-purple: #c084fc;
    /* purple-400 */
    --color-accent-green: #4ade80;
    /* green-400 */
    --color-accent-pink: #f472b6;
    /* pink-400 */
    --color-white: #fff;
    --color-black: #000;
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, .03);
    --glass-border: rgba(255, 255, 255, .1);
}

/* 1. メディアクエリ (Mobile First)
--------------------------------------------- */
/* 2. ホバー (PCのみ適用)
--------------------------------------------- */
/* 3. フォントスタイルのプリセット
--------------------------------------------- */
/* 4. グラスモーフィズムの共通設定
--------------------------------------------- */
/* 5. センター配置 (Layout Helper)
--------------------------------------------- */
/* ==========================================================================
   Reset - ブラウザ標準スタイルの初期化（更地にする）
   ========================================================================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html
{
    line-height: 1.15;

    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;
}

main
{
    display: block;
}

h1
{
    font-size: 2em;

    margin: 0;
}

hr
{
    overflow: visible;

    box-sizing: content-box;
    height: 0;
}

pre
{
    font-family: monospace, monospace;
    font-size: 1em;
}

a
{
    background-color: transparent;
}

abbr[title]
{
    text-decoration: underline;
    text-decoration: underline dotted;

    border-bottom: none;
}

b,
strong
{
    font-weight: bolder;
}

code,
kbd,
samp
{
    font-family: monospace, monospace;
    font-size: 1em;
}

small
{
    font-size: 80%;
}

sub,
sup
{
    font-size: 75%;
    line-height: 0;

    position: relative;

    vertical-align: baseline;
}

sub
{
    bottom: -.25em;
}

sup
{
    top: -.5em;
}

img
{
    border-style: none;
}

button,
input,
optgroup,
select,
textarea
{
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;

    margin: 0;
}

button,
input
{
    overflow: visible;
}

button,
select
{
    text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit]
{
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner
{
    padding: 0;

    border-style: none;
}

fieldset
{
    padding: .35em .75em .625em;
}

legend
{
    display: table;

    box-sizing: border-box;
    max-width: 100%;
    padding: 0;

    white-space: normal;

    color: inherit;
}

progress
{
    vertical-align: baseline;
}

textarea
{
    overflow: auto;
}

[type=checkbox],
[type=radio]
{
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button
{
    height: auto;
}

[type=search]
{
    outline-offset: -2px;

    -webkit-appearance: textfield;
}

[type=search]::-webkit-search-decoration
{
    -webkit-appearance: none;
}

::-webkit-file-upload-button
{
    font: inherit;

    -webkit-appearance: button;
}

details
{
    display: block;
}

summary
{
    display: list-item;
}

template
{
    display: none;
}

[hidden]
{
    display: none;
}

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

/* --- Lists --- */
ul,
ol
{
    margin: 0;
    padding: 0;

    list-style: none;
}

/* --- WordPress Standard resets --- */
figure
{
    margin: 0;
}

table
{
    border-spacing: 0;
    border-collapse: collapse;
}

/* ==========================================================================
         Mapped to: foundation/_reset.scss (Selected overrides)
         ========================================================================== */
::-webkit-scrollbar
{
    width: 8px;
}

::-webkit-scrollbar-track
{
    background: #0f1115;
}

::-webkit-scrollbar-thumb
{
    border-radius: 4px;
    background: #333;
}

::-webkit-scrollbar-thumb:hover
{
    background: #555;
}

/* ==========================================================================
   Foundation - Base
   ========================================================================== */
/* Root & Body
--------------------------------------------------------- */
html
{
    font-size: 16px;

    scroll-behavior: smooth;
}

body
{
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-family: 'Inter', 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;

    overflow-x: hidden;

    width: 100%;

    color: var(--color-text-main);
    background-color: var(--color-bg);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography
--------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6
{
    font-weight: 700;
    line-height: 1.25;

    overflow-wrap: break-word;
}

p
{
    overflow-wrap: break-word;
}

/* Links
--------------------------------------------------------- */
a
{
    cursor: pointer;
    transition: opacity .3s ease, color .3s ease;
    text-decoration: none;

    color: inherit;
}
@media (any-hover: hover)
{
    a:hover
    {
        opacity: .8;
        color: #7283a7;
    }
}

/* Images & Media
--------------------------------------------------------- */
img
{
    display: block;

    max-width: 100%;
    height: auto;

    vertical-align: bottom;
}

/* Form Elements
--------------------------------------------------------- */
button,
input,
select,
textarea
{
    cursor: pointer;

    border: none;
    border-radius: 0;
    background-color: transparent;

    appearance: none;
}
button:focus,
input:focus,
select:focus,
textarea:focus
{
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

input[type=text],
input[type=email],
input[type=password],
textarea
{
    cursor: text;
}

/* Selection
--------------------------------------------------------- */
::selection
{
    color: inherit;
    background: rgba(59, 130, 246, .2);
}

ul
{
    list-style: none;
}

button
{
    font-family: inherit;

    cursor: pointer;

    border: none;
    background: none;
}

/* ==========================================================================
   Layout - Container
   --------------------------------------------------------------------------
   サイト全体の骨格・カラム制御・フッター最下部固定のロジック
   ========================================================================== */
.l-container
{
    display: flex;
    flex-direction: column;

    min-height: 100vh;
}
.admin-bar .l-container
{
    min-height: calc(100vh - 32px);
}
@media screen and (min-width: 576px)
{
    .admin-bar .l-container
    {
        min-height: calc(100vh - 46px);
    }
}
.l-container
{
    /* コンテンツエリアのラッパー
  --------------------------------------------- */
}
.l-container__inner
{
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
}
@media screen and (min-width: 768px)
{
    .l-container__inner
    {
        padding-right: 32px;
        padding-left: 32px;
    }
}
.l-container__inner
{
    flex: 1;
}
@media screen and (min-width: 768px)
{
    .l-container__inner.l-container--two-column
    {
        display: flex;

        justify-content: space-between;
        align-items: flex-start;
        gap: 64px;
    }
}
.l-container__inner.l-container--one-column .l-sidebar
{
    display: none;
}

.l-header,
.l-footer
{
    flex-shrink: 0;
}

/*
.l-header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 100;

  &__inner {
    @include inner;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 20; // ロゴやボタンが入っているエリア
  }


  &__nav {
    @media screen and (max-width: 767px) {
      display: block !important;
      position: fixed !important;
      top: 0 !important;
      right: -100% !important;
      width: 80% !important;
      height: 100vh !important;
      background-color: #fff !important;
      // オーバーレイ(10)より上、ボタンのあるinner(20)より下でもOKだが、
      // ここではわかりやすく最上位に近い数値にする
      z-index: 30 !important;
      padding: 80px $space-md !important;
      transition: right 0.3s ease !important;

      &.is-active {
        right: 0 !important;
      }
    }

    @include mq(md) {
      display: block !important;
      position: static !important;
      width: auto !important;
    }
  }
}
  */
/*
.c-global-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: $space-md;
  flex-direction: column;

  @include mq(md) {
    flex-direction: row;
  }

  a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    padding: 10px 0;
  }
}
*/
/*
.c-nav-overlay {
  display: none;

  @media screen and (max-width: 767px) {
    &.is-active {
      display: block !important;
      position: fixed !important; // 画面全体を覆う
      inset: 0 !important;
      background-color: rgba(0, 0, 0, 0.5) !important;
      z-index: 10 !important; // ヘッダー内で一番弱い存在にする
    }
  }
}
*/
/* ==========================================================================
   Mapped to: layout/_header.scss
   ========================================================================== */
.l-header
{
    top: 0;
    left: 0;

    width: 100%;
    padding: 1rem 0;

    transition: all .3s ease;

    border-bottom: 1px solid transparent;
}
.l-header.is-scrolled
{
    border-bottom-color: rgba(255, 255, 255, .05);
    background-color: rgba(0, 0, 0, .4);

    backdrop-filter: blur(12px);
}
.l-header__inner
{
    display: flex;

    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;

    justify-content: space-between;
    align-items: center;
}
.l-header__logo
{
    font-size: 1.5rem;
    font-weight: 700;

    letter-spacing: -.05em;
}
.l-header__logo span
{
    color: var(--color-accent-blue);
}
.l-header__nav
{
    font-size: .875rem;
    font-weight: 500;

    display: none;

    color: var(--color-text-muted);

    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px)
{
    .l-header__nav
    {
        display: flex;
    }
}
.l-header__nav-link:hover
{
    color: var(--color-white);
}

/* ==========================================================================
   Layout - Main
   ========================================================================== */
.l-main
{
    padding: 64px 0;
}
@media screen and (min-width: 768px)
{
    .l-main
    {
        padding: 32px 0 96px;
    }
}

/* ==========================================================================
   Layout - Sidebar (Block Widget 対応版)
   ========================================================================== */
.l-sidebar
{
    width: 100%;
}
@media screen and (min-width: 768px)
{
    .l-sidebar
    {
        width: 300px;

        flex-shrink: 0;
    }
}
.l-sidebar .widget .wp-block-heading,
.l-sidebar .widget .widget-title
{
    font-size: 1rem;

    margin-bottom: 32px;
    padding-bottom: 8px;

    border-bottom: 2px solid #3b82f6;
}
.l-sidebar .widget ul li
{
    padding: 16px 0;

    border-bottom: 1px solid #ccc;
}
.l-sidebar .widget ul li a
{
    text-decoration: none;

    color: #333;
}
@media (any-hover: hover)
{
    .l-sidebar .widget ul li a:hover
    {
        color: #3b82f6;
    }
}

/* ==========================================================================
   Layout - Footer
   ========================================================================== */
.l-footer
{
    width: 100%;
    padding: 32px 0;

    text-align: center;

    border-top: 1px solid #333;
    background-color: #0f1115;
}
.l-footer__copyright
{
    font-size: .75rem;

    display: block;

    letter-spacing: .05em;

    color: #9ca3af;
}

/* Page Top Button (Component的な要素ですが、footer.phpにあるためここに記述)
--------------------------------------------- */
.c-page-top
{
    position: fixed;
    z-index: 150;
    right: 32px;
    bottom: 32px;
}
.c-page-top a
{
    display: flex;

    width: 48px;
    height: 48px;

    transition: transform .3s ease, background-color .3s ease;

    border-radius: 50%;
    background-color: #3b82f6;

    align-items: center;
    justify-content: center;
}
.c-page-top a::before
{
    width: 10px;
    height: 10px;

    content: '';
    transform: translateY(2px) rotate(-45deg);

    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
@media (any-hover: hover)
{
    .c-page-top a:hover
    {
        transform: translateY(-4px);

        background-color: #7283a7;
    }
}

/* ==========================================================================
   Object - Component - Button
   ========================================================================== */
/*
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: $w-xs;
  padding: $space-sm $space-md;
  background-color: $color-main;
  color: $color-white;
  font-size: $fz-sm;
  font-weight: $fw-bold;
  text-decoration: none;
  border-radius: $radius-md;
  transition: all $transition-base;
  cursor: pointer;
  border: none;

  @include hover {
    background-color: $color-accent-hover;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  // フォームの送信ボタンなどにも適用
  &[type="submit"] {
    appearance: none;
  }
}
*/
/* ==========================================================================
   Mapped to: object/component/_button.scss
   ========================================================================== */
.c-button,
.c-form-actions [type=submit]
{
    font-weight: 700;

    display: inline-block;

    transition: all .3s;
    text-align: center;

    border-radius: 9999px;
}
.c-button--nav
{
    font-weight: 500;

    padding: .5rem 1.25rem;

    color: var(--color-white);
}
.c-button--nav:hover
{
    background-color: rgba(255, 255, 255, .1);
}
.c-button--primary
{
    padding: 1rem 2rem;

    color: var(--color-black);
    background-color: var(--color-white);
}
.c-button--primary:hover
{
    transform: scale(1.05);

    background-color: #e5e7eb;
}
.c-button--secondary
{
    font-weight: 500;

    padding: 1rem 2rem;

    color: var(--color-white);
}
.c-button--secondary:hover
{
    background-color: rgba(255, 255, 255, .1);
}
.c-button--plan
{
    display: block;

    margin-top: auto;
    padding: .75rem;
}
.c-button--outline
{
    color: white;
    border: 1px solid #4b5563;
}
.c-button--outline:hover
{
    background-color: #1f2937;
}
.c-button--blue
{
    color: white;
    background-color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, .3);
}
.c-button--blue:hover
{
    background-color: #1d4ed8;
}
.c-button--yellow
{
    color: #facc15;
    border: 1px solid #ca8a04;
}
.c-button--yellow:hover
{
    background-color: rgba(133, 77, 14, .2);
}
.c-button--submit
{
    width: 100%;
    padding: 1rem;

    color: black;
    border-radius: .75rem;
    background-color: white;
}
.c-button--submit:hover
{
    transform: scale(1.02);

    background-color: #e5e7eb;
}

/* ==========================================================================
   Object - Component - Form (Search)
   --------------------------------------------------------------------------
   設定値を変更するだけで、すべての検索フォームのデザインが一括反映されます
   ========================================================================== */
/* 1. フォームの外枠（コンテナ）
   -------------------------------------------------------------------------- */
.search-form,
.wp-block-search__inside-wrapper
{
    display: flex !important;
    overflow: hidden;

    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    background-color: rgba(255, 255, 255, .05) !important;

    align-items: stretch;
}
.search-form:focus-within,
.wp-block-search__inside-wrapper:focus-within
{
    border-color: #3b82f6 !important;
}

/* 2. 入力エリア（テキスト）
   -------------------------------------------------------------------------- */
.search-field,
.wp-block-search__input
{
    font-size: 1rem !important;

    height: 50px !important;
    margin: 0 !important;
    padding: 0 16px !important;

    color: #333 !important;
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;

    flex: 1 !important;
}
.search-field::placeholder,
.wp-block-search__input::placeholder
{
    opacity: .7;
    color: #9ca3af;
}

/* 3. 検索ボタン
   -------------------------------------------------------------------------- */
.search-submit,
.wp-block-search__button
{
    font-size: .875rem !important;
    font-weight: 700 !important;
    line-height: 50px !important;

    display: block;

    height: 50px !important;
    margin: 0 !important;
    padding: 0 32px !important;

    cursor: pointer;
    transition: background-color .3s;

    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    background-color: #3b82f6 !important;
}
.search-submit:hover,
.wp-block-search__button:hover
{
    background-color: rgb(11.1512195122, 99.1219512195, 242.8487804878) !important;
}

/* 4. 構造の違いを吸収する補正（さわらなくてOK）
   -------------------------------------------------------------------------- */
.search-form > label
{
    display: flex;

    margin: 0;
    padding: 0;

    flex: 1;
}

.screen-reader-text
{
    position: absolute;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    width: 1px;
    height: 1px;
    padding: 0;

    white-space: nowrap;

    border: 0;
}

.wp-block-search
{
    border: none !important;
}
.wp-block-search__label
{
    font-size: .875rem;
    font-weight: 700;

    display: block;

    margin-bottom: 8px;
}

/* ==========================================================================
           Mapped to: object/component/_form.scss
           ========================================================================== */
.c-form-grid
{
    display: grid;

    margin-bottom: 1.5rem;

    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px)
{
    .c-form-grid
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
.c-form-label
{
    font-size: .875rem;
    font-weight: 500;

    display: block;

    margin-bottom: .5rem;

    color: var(--color-text-muted);
}

.c-form-input,
.c-form-textarea
{
    font-family: inherit;

    width: 100%;
    padding: .75rem 1rem;

    transition: border-color .3s;

    color: white;
    border: 1px solid #374151;
    border-radius: .75rem;
    outline: none;
    background-color: rgba(0, 0, 0, .4);
}

.c-form-input:focus,
.c-form-textarea:focus
{
    border-color: var(--color-accent-blue);
}

/* 0. クラスなしの場合
--------------------------------------------- */
input[type=text],
input[type=email],
textarea
{
    font-family: inherit;

    width: 100%;
    padding: .75rem 1rem;

    transition: border-color .3s ease;

    color: #fff;
    border: 1px solid #374151;
    border-radius: .75rem;
    background-color: rgba(0, 0, 0, .4);
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus
{
    border-color: #3b82f6;
    outline: none;
}

.c-form-block
{
    width: 100%;
}

/* 1. テキスト入力・テキストエリア共通 */
.c-form-control,
.c-form-area
{
    font-family: inherit;

    width: 100%;
    padding: .75rem 1rem;

    transition: border-color .3s ease;

    color: #fff !important;
    border: 1px solid #374151;
    border-radius: .75rem;
    background-color: rgba(0, 0, 0, .4);
}
.c-form-control::placeholder,
.c-form-area::placeholder
{
    color: #bbb;
}
.c-form-control:focus,
.c-form-area:focus
{
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgb(215.8, 230, 253.2);
}
.c-form-control.is-error,
.is-error.c-form-area,
.c-form-control--error
{
    border-color: #3b82f6;
    background-color: rgb(245.2, 248.75, 254.55);
}
.c-form-control,
.c-form-area
{
    /* 幅バリエーション */
}
.c-form-control--xs
{
    max-width: 80px;
}
.c-form-control--sm
{
    max-width: 160px;
}
.c-form-control--md
{
    max-width: 240px;
}
.c-form-control--lg
{
    max-width: 400px;
}
.c-form-control--auto
{
    display: inline-block;

    width: auto;
}

/* 2. テキストエリア固有 (controlを継承して高さを設定) */
.c-form-area
{
    min-height: 160px;

    resize: vertical;
    vertical-align: top;
}

/* 3. セレクトボックス */
.c-form-select
{
    position: relative;

    width: 100%;
    max-width: 400px;
}
.c-form-select::after
{
    position: absolute;
    top: 50%;
    right: 15px;

    width: 10px;
    height: 7px;

    content: '';
    transform: translateY(-50%);
    pointer-events: none;

    background-color: #666;

    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-form-select__inner
{
    font-size: 1rem;

    width: 100%;
    padding: 12px 40px 12px 16px;

    cursor: pointer;

    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;

    appearance: none;
}
.c-form-select__inner:focus
{
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgb(215.8, 230, 253.2);
}

/* 4. ラジオボタン & チェックボックス */
.c-form-check
{
    display: inline-flex;

    margin-right: 16px;
    margin-bottom: 8px;

    cursor: pointer;

    align-items: center;
}
.c-form-check__input
{
    width: auto;
    margin: 0 8px 0 0;
    padding: 0;

    transform: scale(1.2);

    border: none;
}
.c-form-check__label
{
    font-size: 1rem;
}

/* 5. フォームグループ（レイアウト構造）
--------------------------------------------- */
.c-form-group
{
    margin-bottom: 32px;
    padding-bottom: 32px;

    border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.c-form-group:last-child
{
    margin-bottom: 0;

    border-bottom: none;
}
@media screen and (min-width: 768px)
{
    .c-form-group
    {
        display: flex;

        align-items: flex-start;
    }
}
.c-form-group__label
{
    font-weight: 700;

    display: flex;

    width: 100%;
    margin-bottom: 8px;

    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
@media screen and (min-width: 768px)
{
    .c-form-group__label
    {
        width: 240px;
        margin-bottom: 0;
        padding-top: 10px;

        flex-shrink: 0;
    }
}
.c-form-group__body
{
    width: 100%;

    flex: 1;
}
.c-form-group__body p
{
    font-size: .875rem;

    margin-top: 8px;

    color: #666;
}

/* 6. 送信エリア
--------------------------------------------- */
.c-form-actions
{
    margin-top: 64px;

    text-align: center;
}
.c-form-actions [type=submit]
{
    width: auto;
    min-width: 240px;

    border: none;
}

.c-contact__form-wrapper
{
    max-width: 56rem;
    margin: 0 auto;
}

.c-contact__header
{
    margin-bottom: 2.5rem;

    text-align: center;
}

.c-form-grid
{
    display: grid;

    margin-bottom: 1.5rem;

    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media screen and (min-width: 768px)
{
    .c-form-grid
    {
        grid-template-columns: 1fr 1fr;
    }
}

.c-form-group
{
    margin-bottom: 1.5rem;
}

.c-form-label
{
    font-size: 1rem;
    font-weight: 500;

    display: block;

    width: 100%;
    margin-bottom: .5rem;

    color: #9ca3af;
    color: #facc15;
}

.c-form-required
{
    font-size: .75rem;

    display: inline-block;

    margin-right: 4px;
    padding: 0 4px;

    color: #fff;
    border-radius: 3px;
    background-color: #ef4444;
}

/* ラジオボタンとチェックボックスの見た目を復活させる */
input[type=radio],
input[type=checkbox]
{
    width: auto !important;
    height: auto !important;
    margin-right: 5px !important;

    cursor: pointer;

            appearance: auto !important; /* ブラウザ標準の見た目に戻す */
    -webkit-appearance: auto !important;
}

/* ついでに、テキスト入力欄のカーソルを適切なもの（Iバー）に戻す */
input[type=text],
input[type=email],
input[type=tel],
textarea
{
    cursor: text !important;
}

/* ==========================================================================
   Object - Component - Pagination
   ========================================================================== */
.c-pagination
{
    margin-top: 96px;

    text-align: center;
}
.c-pagination ul.page-numbers
{
    display: inline-flex;

    margin: 0;
    padding: 0;

    list-style: none;

    justify-content: center;
    gap: 8px;
}
.c-pagination li
{
    margin: 0;
}
.c-pagination .page-numbers
{
    font-size: .875rem;
    font-weight: 700;

    display: flex;

    min-width: 44px;
    height: 44px;
    padding: 0 8px;

    transition: all .3s ease;
    text-decoration: none;

    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;

    align-items: center;
    justify-content: center;
}
.c-pagination .page-numbers.current
{
    color: #fff;
    border-color: #3b82f6;
    background-color: #3b82f6;
}
.c-pagination .page-numbers:not(.current):not(.dots):hover
{
    color: #3b82f6;
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, .05);
}
.c-pagination .page-numbers.dots
{
    pointer-events: none;

    border: none;
}

/* ==========================================================================
   Object - Component - Breadcrumb
   ========================================================================== */
.c-breadcrumb
{
    padding: 8px 0;

    border-bottom: 1px solid #ccc;
    background-color: rgba(255, 255, 255, .03);
}
.c-breadcrumb ul
{
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
}
@media screen and (min-width: 768px)
{
    .c-breadcrumb ul
    {
        padding-right: 32px;
        padding-left: 32px;
    }
}
.c-breadcrumb ul
{
    font-size: .75rem;

    display: flex;

    margin: 0;
    padding: 0;

    list-style: none;

    flex-wrap: wrap;
}
.c-breadcrumb li
{
    display: flex;

    color: #9ca3af;

    align-items: center;
}
.c-breadcrumb li:not(:last-child)::after
{
    font-size: 10px;

    margin: 0 16px;

    content: '/';

    color: #6b7280;
}
.c-breadcrumb li a
{
    text-decoration: none;

    color: #3b82f6;
}
@media (any-hover: hover)
{
    .c-breadcrumb li a:hover
    {
        text-decoration: underline;
    }
}
.c-breadcrumb li:last-child
{
    font-weight: 700;

    pointer-events: none;

    color: #333;
}

/* ==========================================================================
         Mapped to: object/component/_hamburger-btn.scss
         ========================================================================== */
.c-hamburger-btn
{
    display: block;

    color: var(--color-white);
}

@media (min-width: 768px)
{
    .c-hamburger-btn
    {
        display: none;
    }
}
/*
.c-hamburger-btn {
  display: block;
  @include mq(md) {
    display: none !important;
  }


  position: relative; // 複雑なfixedはやめ、元の位置に戻します
  z-index: 9999 !important; // 誰よりも上に配置
  width: 44px;
  height: 44px;


  background: none !important;
  border: none !important;
  outline: none !important; // クリック時の青い枠を消す
  box-shadow: none !important;
  cursor: pointer;
  padding: 0;
  appearance: none;


  &__line {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;

    &::before,
    &::after {
      content: "";
      position: absolute;
      left: 0;
      width: 24px;
      height: 2px;
      background-color: #333;
      transition: all 0.3s;
    }
    &::before {
      top: -8px;
    }
    &::after {
      top: 8px;
    }
  }


  &.is-active &__line {
    background-color: transparent !important;
    &::before {
      top: 0 !important;
      transform: rotate(45deg) !important;
    }
    &::after {
      top: 0 !important;
      transform: rotate(-45deg) !important;
    }
  }
}
*/
/*
.p-top__posts {
  display: grid;
  gap: $space-md;

  @include mq(md) {
    grid-template-columns: repeat(1, 1fr); // PCは2カラムでカードを並べる
    gap: $space-md;
  }
}
*/
#canvas-container
{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    pointer-events: none;
}

/* ==========================================================================
   Mapped to: object/project/_top.scss
   (All sections specific to the Top Page)
   ========================================================================== */
.p-top
{
    /* General Containers within Top Project */
}
.p-top__container,
.p-top__container-sm
{
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
.p-top__container-sm
{
    max-width: 64rem;
}
.p-top__section
{
    position: relative;
    z-index: 10;

    padding-top: 6rem;
    padding-bottom: 6rem;
}
.p-top
{
    /* --- Hero Section --- */
}
.p-top__hero
{
    position: relative;

    display: flex;

    min-height: 100vh;
    padding-top: 5rem;
    padding-bottom: 2rem;

    align-items: center;
    justify-content: center;
}
.p-top__hero-inner
{
    z-index: 10;

    text-align: center;
}
.p-top__hero-label
{
    margin-bottom: 1rem;

    letter-spacing: .1em;

    color: #60a5fa;
}
.p-top__hero-title
{
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;

    margin-bottom: 2rem;

    letter-spacing: .05em;
}
@media (min-width: 768px)
{
    .p-top__hero-title
    {
        font-size: 6rem;
    }
}
.p-top__hero-desc
{
    font-size: 1.125rem;
    line-height: 1.75;

    max-width: 42rem;
    margin-right: auto;
    margin-bottom: 2.5rem;
    margin-left: auto;

    color: var(--color-text-muted);
}
.p-top__hero-btn-group
{
    display: flex;
    flex-direction: column;

    gap: 1rem;
    justify-content: center;
}
@media (min-width: 640px)
{
    .p-top__hero-btn-group
    {
        flex-direction: row;
    }
}
.p-top__scroll-indicator
{
    position: absolute;
    bottom: 2.5rem;
    left: 50%;

    transform: translateX(-50%);
    animation: bounce 1s infinite;

    color: #6b7280;
}
.p-top
{
    /* --- Common Section Headers --- */
}
.p-top__section-header
{
    margin-bottom: 3rem;
}
.p-top__section-header--center
{
    margin-bottom: 4rem;

    text-align: center;
}
.p-top__section-title
{
    font-size: 1.875rem;
    font-weight: 700;

    margin-bottom: 1rem;

    letter-spacing: .05em;
}
.p-top__section-desc
{
    color: var(--color-text-muted);
}
.p-top
{
    /* --- Bento Grid (About) --- */
}
.p-top__bento-grid
{
    display: grid;

    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px)
{
    .p-top__bento-grid
    {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
}
.p-top
{
    /* Card Styles */
}
.p-top__card
{
    padding: 2rem;

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

    border-radius: 1.5rem;
}
.p-top__card:hover
{
    transform: translateY(-5px);

    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}
.p-top__card--no-pad
{
    overflow: hidden;

    padding: 0;
}
.p-top
{
    /* Grid Spans */
}
.p-top__col-span-2
{
    grid-column: span 1;
}
@media (min-width: 768px)
{
    .p-top__col-span-2
    {
        grid-column: span 2;
    }
}
.p-top__row-span-2
{
    grid-row: span 1;
}
@media (min-width: 768px)
{
    .p-top__row-span-2
    {
        grid-row: span 2;
    }
}
.p-top__col-span-3
{
    grid-column: span 1;
}
@media (min-width: 768px)
{
    .p-top__col-span-3
    {
        grid-column: span 3;
    }
}
.p-top__row-span-3
{
    grid-row: span 1;
}
@media (min-width: 768px)
{
    .p-top__row-span-3
    {
        grid-row: span 3;
    }
}
.p-top__profile-card
{
    display: flex;
    flex-direction: column;

    justify-content: center;
}
.p-top__profile-desc
{
    line-height: 1.75;

    margin-bottom: 1rem;

    color: #d1d5db;
}
.p-top__image-card
{
    position: relative;
}
.p-top__image-card img
{
    width: 100%;
    height: 100%;

    transition: transform .7s;

    object-fit: cover;
}
.p-top__image-card:hover img
{
    transform: scale(1.1);
}
.p-top__image-overlay
{
    position: absolute;

    display: flex;

    padding: 1.5rem;

    background-color: rgba(0, 0, 0, .3);

    inset: 0;
    align-items: flex-end;
}
.p-top__stat-card
{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}
.p-top__tech-card
{
    display: flex;

    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.p-top__tech-icons
{
    font-size: 1.5rem;

    display: flex;

    gap: 1rem;
}
.p-top
{
    /* --- Point Section --- */
}
.p-top__point-grid
{
    display: grid;

    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px)
{
    .p-top__point-grid
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px)
{
    .p-top__point-grid
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
.p-top__icon-box
{
    display: flex;

    width: 3rem;
    height: 3rem;
    margin: 0 auto;
    margin-bottom: 1.5rem;

    border-radius: 9999px;

    align-items: center;
    justify-content: center;
}
.p-top
{
    /* --- Works Section --- */
}
.p-top__works-grid
{
    display: grid;

    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-rows: 300px;
}
@media (min-width: 768px)
{
    .p-top__works-grid
    {
        grid-template-columns: repeat(3, 1fr);
    }
}
.p-top__work-item
{
    position: relative;

    overflow: hidden;

    border-radius: 1.5rem;
}
.p-top__work-item img
{
    width: 100%;
    height: 100%;

    transition: transform .7s;

    object-fit: cover;
}
.p-top__work-item:hover img
{
    transform: scale(1.05);
}
.p-top__work-item:hover .p-top__work-overlay
{
    opacity: 1;
}
.p-top__work-overlay
{
    position: absolute;

    display: flex;
    flex-direction: column;

    padding: 2rem;

    transition: opacity .3s;

    opacity: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);

    inset: 0;
    justify-content: flex-end;
}
.p-top
{
    /* --- Price Section --- */
}
.p-top__price-grid
{
    display: grid;

    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px)
{
    .p-top__price-grid
    {
        grid-template-columns: repeat(3, 1fr);
    }
}
.p-top__plan-card
{
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;

    border-top: 4px solid;
}
.p-top__plan-card--popular
{
    background-color: rgba(255, 255, 255, .05);
}
@media (min-width: 768px)
{
    .p-top__plan-card--popular
    {
        transform: translateY(-1rem);
    }
}
.p-top__badge-popular
{
    font-size: .75rem;
    font-weight: 700;

    position: absolute;
    top: 0;
    right: 0;

    padding: .25rem .75rem;

    color: white;
    border-top-right-radius: .75rem;
    border-bottom-left-radius: .75rem;
    background-color: var(--color-accent-blue);
}
.p-top__plan-price
{
    font-size: 1.875rem;
    font-weight: 700;

    margin-bottom: 1.5rem;
}
.p-top__plan-price--large
{
    font-size: 2.25rem;

    color: #60a5fa;
}
.p-top__plan-price span
{
    font-size: 1.125rem;
    font-weight: 400;

    color: var(--color-text-muted);
}
.p-top__plan-list
{
    font-size: .875rem;

    display: flex;
    flex-direction: column;

    margin-bottom: 2rem;

    color: #d1d5db;

    gap: 1rem;
}
.p-top__plan-list-item
{
    display: flex;

    align-items: center;
}
.p-top
{
    /* --- Contact Section --- */
}
.p-top__contact-container
{
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem;
}

/* Animations */
@keyframes bounce
{
    0%,
    100%
    {
        transform: translateX(-50%) translateY(0);
    }
    50%
    {
        transform: translateX(-50%) translateY(-25%);
    }
}
/* ==========================================================================
 Project - Top News (.p-top-news)
 ========================================================================== */
.p-top-news__list
{
    display: flex;
    flex-direction: column;

    margin-top: 32px;

    gap: 8px;
}
.p-top-news__item
{
    padding: 0;

    transition: background .3s ease;

    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .03);
}
.p-top-news__item:hover
{
    background: rgba(255, 255, 255, .08);
}
.p-top-news__link
{
    display: flex;

    padding: 16px 32px;

    text-decoration: none;

    color: inherit;

    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.p-top-news__link:hover
{
    color: #3b82f6;
}
@media screen and (min-width: 768px)
{
    .p-top-news__link
    {
        flex-wrap: nowrap;
    }
}
.p-top-news__date
{
    font-size: .875rem;

    min-width: 120px;

    color: #9ca3af;

    flex-shrink: 0;
}
.p-top-news__title
{
    font-size: 1rem;
    font-weight: 400;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Object - Project - Entry
   --------------------------------------------------------------------------
   記事一覧（カード）および 記事詳細 の共通・個別スタイル
   ========================================================================== */
.p-entry
{
    color: #333;
    background-color: #fff;
    /* 共通パーツ
  --------------------------------------------- */
}
.p-entry__thumbnail img
{
    display: block;

    width: 100%;
    height: auto;

    border-radius: 8px;
}
.p-entry__title
{
    line-height: 1.25;

    margin: 0;
}
@media (any-hover: hover)
{
    .p-entry__title a:hover
    {
        color: #3b82f6;
    }
}
.p-entry__meta
{
    font-size: .75rem;

    display: flex;

    margin-top: 8px;

    color: #9ca3af;

    gap: 16px;
}
.p-entry
{
    /* --- Modifier: 記事一覧（カード表示） ---
  --------------------------------------------- */
}
.p-entry--card
{
    overflow: hidden;

    height: 100%;

    transition: transform .3s ease;

    border: 1px solid #ccc;
    border-radius: 8px;
}
@media (any-hover: hover)
{
    .p-entry--card:hover
    {
        transform: translateY(-2px);
    }
}
.p-entry--card .p-entry__thumbnail
{
    overflow: hidden;

    aspect-ratio: 16/9;
}
.p-entry--card .p-entry__thumbnail img
{
    height: 100%;

    border-radius: 0;

    object-fit: cover;
}
.p-entry--card .p-entry__body
{
    padding: 16px;
}
.p-entry--card .p-entry__title
{
    font-size: 1rem;

    display: -webkit-box;
    overflow: hidden;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.p-entry--card .p-entry__content
{
    font-size: .875rem;

    display: -webkit-box;
    overflow: hidden;

    margin-top: 8px;

    color: #6b7280;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.p-entry
{
    /* --- Modifier: 記事詳細ページ ---
  --------------------------------------------- */
}
.p-entry--single .p-entry__header
{
    margin-bottom: 64px;
    padding-bottom: 32px;

    border-bottom: 1px solid #ccc;
}
.p-entry--single .p-entry__title
{
    font-size: 1.5rem;
}
@media screen and (min-width: 768px)
{
    .p-entry--single .p-entry__title
    {
        font-size: 2rem;
    }
}
.p-entry--single .p-entry__thumbnail
{
    margin-bottom: 64px;
}
.p-entry--single .p-entry__content
{
    font-size: 1rem;
    line-height: 1.6;
}
.p-entry--single .p-entry__footer
{
    margin-top: 96px;
    padding-top: 32px;

    border-top: 1px solid #ccc;
}
.p-entry--single .p-entry__tags
{
    font-size: .875rem;

    color: #9ca3af;
}

/* ==========================================================================
   Object - Project - WP Core (Gutenberg Blocks)
   --------------------------------------------------------------------------
   WordPressのブロックエディタから出力される標準的な要素のスタイル
   ========================================================================== */
.p-entry__content > p,
.p-entry__content > ul,
.p-entry__content > ol,
.p-entry__content > dl,
.p-entry__content > blockquote,
.p-entry__content > table,
.p-entry__content > figure,
.p-entry__content > pre
{
    margin-top: 0;
    margin-bottom: 32px;
}
.p-entry__content > *:last-child
{
    margin-bottom: 0;
}
.p-entry__content
{
    /* 見出し (Headings)
  --------------------------------------------- */
}
.p-entry__content > h2,
.p-entry__content > h3,
.p-entry__content > h4,
.p-entry__content > h5,
.p-entry__content > h6
{
    margin-top: 96px;
    margin-bottom: 32px;
}
.p-entry__content > h2
{
    font-size: 1.5rem;

    padding-bottom: 8px;

    border-bottom: 2px solid #3b82f6;
}
.p-entry__content > h3
{
    font-size: 1.25rem;

    padding-left: 16px;

    border-left: 4px solid #3b82f6;
}
.p-entry__content
{
    /* リスト (Lists)
  --------------------------------------------- */
}
.p-entry__content > ul,
.p-entry__content > ol
{
    padding-left: 32px;
}
.p-entry__content > ul li,
.p-entry__content > ol li
{
    margin-bottom: 8px;
}
.p-entry__content > ul
{
    list-style: disc;
}
.p-entry__content > ol
{
    list-style: decimal;
}
.p-entry__content
{
    /* 引用 (Blockquote)
  --------------------------------------------- */
}
.p-entry__content > blockquote
{
    font-style: italic;

    padding: 32px;

    border-left: 4px solid #9ca3af;
    background-color: rgba(255, 255, 255, .05);
}
.p-entry__content > blockquote p
{
    margin-bottom: 8px;
}
.p-entry__content > blockquote p:last-child
{
    margin-bottom: 0;
}
.p-entry__content > blockquote cite
{
    font-size: .75rem;
    font-style: normal;

    display: block;

    margin-top: 16px;

    color: #9ca3af;
}
.p-entry__content
{
    /* 画像 (Figures / Images)
  --------------------------------------------- */
}
.p-entry__content .wp-block-image
{
    margin-bottom: 64px;
}
.p-entry__content .wp-block-image figcaption
{
    font-size: .75rem;

    margin-top: 8px;

    text-align: center;

    color: #9ca3af;
}
.p-entry__content .wp-block-image.alignfull
{
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}
.p-entry__content .wp-block-image.alignfull img
{
    border-radius: 0;
}
.p-entry__content
{
    /* テーブル (Table)
  --------------------------------------------- */
}
.p-entry__content .wp-block-table
{
    display: block;
    overflow-x: auto;

    width: 100%;
}
.p-entry__content .wp-block-table table
{
    width: 100%;

    border-collapse: collapse;
}
.p-entry__content .wp-block-table th,
.p-entry__content .wp-block-table td
{
    font-size: .875rem;

    padding: 16px;

    border: 1px solid #ccc;
}
.p-entry__content .wp-block-table th
{
    font-weight: 700;

    background-color: rgba(255, 255, 255, .05);
}

/* ==========================================================================
   Object - Project - Error 404
   --------------------------------------------------------------------------
   404ページ固有のレイアウトと装飾
   ========================================================================== */
.p-error-404
{
    padding-top: 96px;
    padding-bottom: 96px;
}
.p-error-404__container
{
    max-width: 600px;
    margin: 0 auto;
}
.p-error-404__header
{
    margin-bottom: 64px;

    text-align: center;
}
.p-error-404__title
{
    font-size: 1.5rem;
    font-weight: 700;
}
@media screen and (min-width: 768px)
{
    .p-error-404__title
    {
        font-size: 2rem;
    }
}
.p-error-404__content
{
    text-align: center;
}
.p-error-404__text
{
    line-height: 1.6;

    margin-bottom: 64px;

    color: #9ca3af;
}
.p-error-404
{
    /* 検索フォームの調整
  --------------------------------------------- */
}
.p-error-404__search
{
    margin-bottom: 96px;
    padding: 32px;

    border-radius: 8px;
    background-color: rgba(255, 255, 255, .03);
}
.p-error-404
{
    /* 下部のウィジェットエリア（誘導リンク）
  --------------------------------------------- */
}
.p-error-404__widgets
{
    display: grid;

    margin-top: 96px;

    text-align: left;

    gap: 64px;
}
@media screen and (min-width: 768px)
{
    .p-error-404__widgets
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
.p-error-404__widget .widget-title
{
    font-size: 1rem;
    font-weight: 700;

    margin-bottom: 16px;
    padding-bottom: 8px;

    border-bottom: 2px solid #3b82f6;
}
.p-error-404__widget ul
{
    padding: 0;

    list-style: none;
}
.p-error-404__widget ul li
{
    font-size: .875rem;

    padding: 8px 0;

    border-bottom: 1px solid #ccc;
}
@media (any-hover: hover)
{
    .p-error-404__widget ul li a:hover
    {
        padding-left: 4px;

        color: #3b82f6;
    }
}
.p-error-404__widget ul li a
{
    transition: all .3s ease;
}
.p-error-404__widget.widget_tag_cloud .tagcloud
{
    display: flex;

    flex-wrap: wrap;
    gap: 8px;
}
.p-error-404__widget.widget_tag_cloud .tagcloud a
{
    font-size: .75rem !important;

    padding: 4px 12px;

    border: 1px solid #ccc;
    border-radius: 32px;
}
@media (any-hover: hover)
{
    .p-error-404__widget.widget_tag_cloud .tagcloud a:hover
    {
        color: #fff;
        border-color: #3b82f6;
        background-color: #3b82f6;
    }
}

/* ==========================================================================
   Object - Utility - Full Version
   --------------------------------------------------------------------------
   変数をループ処理し、一貫性のある調整クラスを自動生成します。
   ========================================================================== */
/* 1. 余白 (Margin & Padding)
--------------------------------------------- */
.u-mt-0
{
    margin-top: 0 !important;
}

.u-pt-0
{
    padding-top: 0 !important;
}

.u-mr-0
{
    margin-right: 0 !important;
}

.u-pr-0
{
    padding-right: 0 !important;
}

.u-mb-0
{
    margin-bottom: 0 !important;
}

.u-pb-0
{
    padding-bottom: 0 !important;
}

.u-ml-0
{
    margin-left: 0 !important;
}

.u-pl-0
{
    padding-left: 0 !important;
}

.u-m-0
{
    margin: 0 !important;
}

.u-p-0
{
    padding: 0 !important;
}

.u-mt-xs
{
    margin-top: 8px !important;
}

.u-pt-xs
{
    padding-top: 8px !important;
}

.u-mr-xs
{
    margin-right: 8px !important;
}

.u-pr-xs
{
    padding-right: 8px !important;
}

.u-mb-xs
{
    margin-bottom: 8px !important;
}

.u-pb-xs
{
    padding-bottom: 8px !important;
}

.u-ml-xs
{
    margin-left: 8px !important;
}

.u-pl-xs
{
    padding-left: 8px !important;
}

.u-m-xs
{
    margin: 8px !important;
}

.u-p-xs
{
    padding: 8px !important;
}

.u-mt-s
{
    margin-top: 16px !important;
}

.u-pt-s
{
    padding-top: 16px !important;
}

.u-mr-s
{
    margin-right: 16px !important;
}

.u-pr-s
{
    padding-right: 16px !important;
}

.u-mb-s
{
    margin-bottom: 16px !important;
}

.u-pb-s
{
    padding-bottom: 16px !important;
}

.u-ml-s
{
    margin-left: 16px !important;
}

.u-pl-s
{
    padding-left: 16px !important;
}

.u-m-s
{
    margin: 16px !important;
}

.u-p-s
{
    padding: 16px !important;
}

.u-mt-m
{
    margin-top: 32px !important;
}

.u-pt-m
{
    padding-top: 32px !important;
}

.u-mr-m
{
    margin-right: 32px !important;
}

.u-pr-m
{
    padding-right: 32px !important;
}

.u-mb-m
{
    margin-bottom: 32px !important;
}

.u-pb-m
{
    padding-bottom: 32px !important;
}

.u-ml-m
{
    margin-left: 32px !important;
}

.u-pl-m
{
    padding-left: 32px !important;
}

.u-m-m
{
    margin: 32px !important;
}

.u-p-m
{
    padding: 32px !important;
}

.u-mt-l
{
    margin-top: 64px !important;
}

.u-pt-l
{
    padding-top: 64px !important;
}

.u-mr-l
{
    margin-right: 64px !important;
}

.u-pr-l
{
    padding-right: 64px !important;
}

.u-mb-l
{
    margin-bottom: 64px !important;
}

.u-pb-l
{
    padding-bottom: 64px !important;
}

.u-ml-l
{
    margin-left: 64px !important;
}

.u-pl-l
{
    padding-left: 64px !important;
}

.u-m-l
{
    margin: 64px !important;
}

.u-p-l
{
    padding: 64px !important;
}

.u-mt-xl
{
    margin-top: 96px !important;
}

.u-pt-xl
{
    padding-top: 96px !important;
}

.u-mr-xl
{
    margin-right: 96px !important;
}

.u-pr-xl
{
    padding-right: 96px !important;
}

.u-mb-xl
{
    margin-bottom: 96px !important;
}

.u-pb-xl
{
    padding-bottom: 96px !important;
}

.u-ml-xl
{
    margin-left: 96px !important;
}

.u-pl-xl
{
    padding-left: 96px !important;
}

.u-m-xl
{
    margin: 96px !important;
}

.u-p-xl
{
    padding: 96px !important;
}

/* 2. カラー (Colors)
--------------------------------------------- */
.u-color-main
{
    color: #3b82f6 !important;
}

.u-bg-main
{
    background-color: #3b82f6 !important;
}

.u-color-accent
{
    color: #3b82f6 !important;
}

.u-bg-accent
{
    background-color: #3b82f6 !important;
}

.u-color-text
{
    color: #333 !important;
}

.u-bg-text
{
    background-color: #333 !important;
}

.u-color-gray
{
    color: #9ca3af !important;
}

.u-bg-gray
{
    background-color: #9ca3af !important;
}

.u-color-white
{
    color: #fff !important;
}

.u-bg-white
{
    background-color: #fff !important;
}

.u-color-bg
{
    color: #0f1115 !important;
}

.u-bg-bg
{
    background-color: #0f1115 !important;
}

.u-color-blue
{
    color: #3b82f6 !important;
}

.u-bg-blue
{
    background-color: #3b82f6 !important;
}

.u-color-green
{
    color: #22c55e !important;
}

.u-bg-green
{
    background-color: #22c55e !important;
}

.u-color-red
{
    color: #ef4444 !important;
}

.u-bg-red
{
    background-color: #ef4444 !important;
}

.u-color-pink
{
    color: #ec4899 !important;
}

.u-bg-pink
{
    background-color: #ec4899 !important;
}

.u-color-orange
{
    color: #f97316 !important;
}

.u-bg-orange
{
    background-color: #f97316 !important;
}

.u-color-purple
{
    color: #a855f7 !important;
}

.u-bg-purple
{
    background-color: #a855f7 !important;
}

.u-color-yellow
{
    color: #facc15 !important;
}

.u-bg-yellow
{
    background-color: #facc15 !important;
}

/* 3. フォントサイズ (Font Sizes)
--------------------------------------------- */
.u-fz-xs
{
    font-size: .75rem !important;
}

.u-fz-sm
{
    font-size: .875rem !important;
}

.u-fz-md
{
    font-size: 1rem !important;
}

.u-fz-lg
{
    font-size: 1.25rem !important;
}

.u-fz-xl
{
    font-size: 1.5rem !important;
}

.u-fz-xxl
{
    font-size: 2rem !important;
}

/* フォントウェイト (Font Weights)
--------------------------------------------- */
/* フォントウェイトの変数（未定義の場合） */
.u-fw-normal
{
    font-weight: 400 !important;
}

.u-fw-bold
{
    font-weight: 700 !important;
}

/* 4. テキスト配置・太さ
--------------------------------------------- */
.u-text-center
{
    text-align: center !important;
}

.u-text-right
{
    text-align: right !important;
}

.u-text-left
{
    text-align: left !important;
}

.u-fw-bold
{
    font-weight: 700 !important;
}

.u-fw-normal
{
    font-weight: 400 !important;
}

/* 5. 表示制御
--------------------------------------------- */
.u-d-block
{
    display: block !important;
}

.u-d-inline
{
    display: inline !important;
}

.u-d-flex
{
    display: flex !important;
}

.u-d-none
{
    display: none !important;
}

@media screen and (min-width: 768px)
{
    .u-show-sp
    {
        display: none !important;
    }
}

.u-show-pc
{
    display: none !important;
}
@media screen and (min-width: 768px)
{
    .u-show-pc
    {
        display: block !important;
    }
}

.u-visibly-hidden
{
    position: absolute !important;

    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;

    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;

    white-space: nowrap !important;

    border: 0 !important;
}

/* ==========================================================================
   Mapped to: object/utility/_utility.scss
   ========================================================================== */
.u-utility-hidden
{
    display: none;
}
.u-utility-relative
{
    position: relative;
}
.u-utility-absolute
{
    position: absolute;
}
.u-utility-fixed
{
    position: fixed;
}
.u-utility-inset-0
{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.u-utility-z-10
{
    z-index: 10;
}
.u-utility-z-50
{
    z-index: 50;
}
.u-utility
{
    /* Typography Utilities */
}
.u-utility-font-bold
{
    font-weight: 700;
}
.u-utility-font-medium
{
    font-weight: 500;
}
.u-utility-text-sm
{
    font-size: .875rem;
}
.u-utility-text-lg
{
    font-size: 1.125rem;
}
.u-utility-text-xl
{
    font-size: 1.25rem;
}
.u-utility-text-2xl
{
    font-size: 1.5rem;
}
.u-utility-text-3xl
{
    font-size: 1.875rem;
}
.u-utility-text-4xl
{
    font-size: 2.25rem;
}
.u-utility
{
    /* Custom Utility Effects */
}
.u-utility-text-gradient
{
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}
.u-utility-glass
{
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);

            backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.u-utility-reveal
{
    transition: all .8s cubic-bezier(.5, 0, 0, 1);
    transform: translateY(30px);

    opacity: 0;
}
.u-utility-reveal.is-active
{
    transform: translateY(0);

    opacity: 1;
}
.u-utility
{
    /* Helper Delays */
}
.u-utility-delay-100
{
    transition-delay: 100ms;
}
.u-utility-delay-200
{
    transition-delay: 200ms;
}
.u-utility-delay-300
{
    transition-delay: 300ms;
}
/*# sourceMappingURL=master.css.map */
