@charset "UTF-8";
/*============================================
	― 変数設定
=============================================*/
/* ================================
   Reset / Base Styles
   ================================ */
/* 基本のリセット */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* デフォルトの余白リセット */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* リストのスタイルをリセット */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* aタグのベーススタイル */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像の扱いを統一 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* フォーム系リセット */
button,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ボタンのクリック時のズレ防止 */
button {
  cursor: pointer;
}

/* テーブルの基本リセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* bodyのベース設定（ここは好みで調整してOK） */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

/* 見出しの字間などを少し整える */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

/* フォームのテキストエリア */
textarea {
  resize: vertical;
}

/* デフォルトのスクロールバー・フォーカスなどは
   後で必要なら個別にスタイルを当てる想定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 header 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
====================================================================================================*/
.header {
  overflow: hidden;
}

.header .container {
  max-width: 1920px;
  margin: 0 auto;
  height: 100vh;
  position: relative;
  padding: 0 2%;
  /* PCナビ */
  /* ハンバーガーボタン（PCでは非表示） */
}

.header .container .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 15px;
}

.header .container .logo {
  line-height: 0;
  width: 200px;
}

.header .container .logo a {
  text-decoration: none;
}

.header .container .logo a img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.header .container .nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 32px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 110;
}

.header .container .nav-toggle__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #f5f5f5;
  -webkit-transition: top 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: top 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
}

.header .container .nav-toggle__line:nth-child(1) {
  top: 6px;
}

.header .container .nav-toggle__line:nth-child(2) {
  top: 15px;
}

.header .container .nav-toggle__line:nth-child(3) {
  top: 24px;
}

.header .container .nav-toggle.is-open .nav-toggle__line:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .container .nav-toggle.is-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.header .container .nav-toggle.is-open .nav-toggle__line:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .container .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .container .nav-list li {
  margin: 0 30px 0 0;
}

.header .container .nav-list li:last-child {
  margin-right: 0;
}

.header .container .nav-list li a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 22px;
}

.header .container .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: left;
}

.header .container .text h2 .catch {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 32px;
}

.header .container .text h1 .catch {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 5px;
  font-size: 70px;
}

.header .container .text h1 .catch span {
  display: block;
  text-align: right;
  padding-right: 20px;
}

/* ========== SP レスポンシブ ========== */
@media (max-width: 768px) {
  .header .container {
    height: 80vh;
    /* ハンバーガー表示 */
    /* SPメニュー */
  }
  .header .container .header-nav {
    padding-top: 12px;
  }
  .header .container .logo {
    width: auto;
  }
  .header .container .logo img {
    width: 64px;
    height: 64px;
  }
  .header .container .nav-toggle {
    display: block;
  }
  .header .container .nav-list {
    position: fixed;
    inset: 0;
    background: rgba(10, 13, 20, 0.96);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
    z-index: 100;
  }
  .header .container .nav-list li {
    margin: 0;
  }
  .header .container .nav-list li a {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
  .header .container .nav-list.is-open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header .container .text {
    width: 100%;
    padding: 0 20px;
    text-align: left;
  }
  .header .container .text h2 .catch {
    font-size: 20px;
    letter-spacing: 2px;
  }
  .header .container .text h1 .catch {
    font-size: 36px;
    letter-spacing: 3px;
  }
  .header .container .text h1 .catch span {
    padding-right: 0;
    text-align: right;
    font-size: 18px;
  }
}

/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 about-top 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
====================================================================================================*/
.about {
  width: 100%;
  min-height: 60vh;
  padding: 80px 20px 60px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about .title {
  text-align: center;
  margin-bottom: 32px;
}

.about .title h2 {
  font-weight: 500;
  letter-spacing: 0.3em;
  font-size: 64px;
  text-transform: uppercase;
}

.about .container {
  max-width: 960px;
  margin: 0 auto;
}

.about .container .text {
  text-align: center;
}

.about .container .text h2 {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 28px;
  margin-bottom: 16px;
}

.about .container .text .sentence p {
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 18px;
  line-height: 1.9;
  padding-top: 10px;
}

.about .container .text .about-more {
  margin-top: 32px;
  text-align: center;
}

.about .container .text .about-more .btn-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid #333;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.about .container .text .about-more .btn-more span {
  font-size: 12px;
  color: #777;
  letter-spacing: 0;
}

.about .container .text .about-more .btn-more:hover {
  background-color: #333;
  color: #fff;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.about .container .text .about-more .btn-more:hover span {
  color: #eee;
}

/* ========= タブレットサイズ ========= */
@media (max-width: 1024px) {
  .about {
    padding: 70px 16px 50px;
  }
  .about .title h2 {
    font-size: 48px;
    letter-spacing: 0.25em;
  }
  .about .container .text h2 {
    font-size: 24px;
    letter-spacing: 0.12em;
  }
  .about .container .text .sentence p {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
}

/* ========= スマホサイズ ========= */
@media (max-width: 768px) {
  .about {
    padding: 60px 16px 40px;
  }
  .about .title {
    margin-bottom: 20px;
  }
  .about .title h2 {
    font-size: 32px;
    letter-spacing: 0.18em;
  }
  .about .container .text h2 {
    font-size: 20px;
    letter-spacing: 0.08em;
  }
  .about .container .text .sentence p {
    font-size: 14px;
    letter-spacing: 0.04em;
    padding-top: 8px;
  }
  .about .container .text .about-more {
    margin-top: 24px;
  }
  .about .container .text .about-more .btn-more {
    padding: 8px 22px;
    font-size: 13px;
  }
  .about .container .text .about-more .btn-more span {
    font-size: 11px;
  }
}

/* ベース（なければ） */
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* コンテナ共通 */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
     header + ビジュアル画像
     ========================= */
.header.header-about {
  position: relative;
  /* 他ページで .header が fixed でも、ここで上書き */
  width: 100%;
  height: 60vh;
  /* 画面の縦60%をヘッダー＋画像に */
  min-height: 320px;
  max-height: 520px;
  overflow: hidden;
  color: #fff;
}

/* 背景画像をヘッダーいっぱいに敷く */
.header-about .about-visual__image {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; と同じ */
  z-index: 0;
}

.header-about .about-visual__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 画像の上に薄いグラデーションをかけて文字を読みやすく */
.header-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  z-index: 0;
}

/* ナビ部分（画像の上に乗る） */
.header-about > .container {
  position: relative;
  z-index: 1;
  /* 画像より前に出す */
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.header-about nav {
  margin-top: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-about .logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-about nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-about nav ul li a {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 4px;
  position: relative;
}

.header-about nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.header-about nav ul li a:hover::after {
  width: 100%;
}

/* =========================
     main.about-page 以下
     ========================= */
.about-page {
  padding: 60px 0 80px;
}

.about-page .sp-only {
  display: none;
}

/* Hero（写真＋テキスト） */
.about-hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-hero .about-hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-hero .about-hero__image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-hero .about-hero__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-hero .about-hero__label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 4px;
}

.about-hero .about-hero__title {
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: white;
}

.about-hero .about-hero__lead {
  font-size: 15px;
  line-height: 1.9;
  color: white;
}

/* 共通セクション */
.about-section {
  padding: 48px 0;
  border-top: 1px solid #eee;
}

.about-section__title {
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}

.about-section__text {
  font-size: 15px;
  line-height: 1.9;
  color: white;
}

/* Profile */
.about-profile__list {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.about-profile__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr;
      grid-template-columns: 120px 1fr;
  -webkit-column-gap: 16px;
          column-gap: 16px;
  font-size: 14px;
}

.about-profile__item dt {
  font-weight: 600;
  color: white;
}

.about-profile__item dd {
  margin: 0;
  color: white;
}

/* Skills & Certifications */
.about-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-card {
  padding: 20px;
  border-radius: 14px;
  background-color: #fafafa;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  font-size: 14px;
  line-height: 1.8;
}

.about-card__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}

.about-card__text {
  margin-bottom: 10px;
  color: black;
}

.about-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-card__list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
  color: black;
}

.about-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================
     SP レスポンシブ
     ========================= */
@media (max-width: 768px) {
  .header-about {
    height: 50vh;
    min-height: 260px;
  }
  .header-about nav ul {
    gap: 16px;
  }
  .header-about nav ul li a {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .about-page {
    padding: 40px 0 60px;
  }
  .about-page .sp-only {
    display: inline;
  }
  .about-hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .about-hero .about-hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .about-hero .about-hero__image img {
    width: 180px;
    height: 180px;
  }
  .about-hero .about-hero__title {
    font-size: 22px;
  }
  .about-hero .about-hero__lead {
    font-size: 14px;
  }
  .about-section {
    padding: 32px 0;
  }
  .about-section__title {
    font-size: 18px;
  }
  .about-section__text {
    font-size: 14px;
  }
  .about-profile__item {
    -ms-grid-columns: 90px 1fr;
        grid-template-columns: 90px 1fr;
    font-size: 13px;
  }
  .about-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 works-top 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
====================================================================================================*/
.top-works {
  padding: 80px 0 70px;
  width: 100%;
  overflow: hidden;
  /* スライダーの枠 */
}

.top-works .title {
  text-align: center;
  margin-bottom: 40px;
}

.top-works .title h2 {
  font-weight: 500;
  letter-spacing: 0.3em;
  font-size: 64px;
  text-transform: uppercase;
}

.top-works .title .title-sub {
  margin-top: 4px;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #999;
}

.top-works .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-works .container .works-more {
  text-align: center;
  margin-top: 40px;
}

.top-works .container .works-more .btn-works-more {
  display: inline-block;
  padding: 12px 38px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border: 1px solid #333;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.top-works .container .works-more .btn-works-more:hover {
  background-color: #333;
  color: #fff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.top-works .works-slider {
  position: relative;
}

.top-works .works-track {
  /* Splide本体がレイアウトするのでここはラッパーだけ */
}

.top-works .splide {
  width: 100%;
}

.top-works .splide__list {
  gap: 24px;
}

.top-works .splide__slide {
  /* PCでは3〜4枚くらい見えるサイズ感 */
}

.top-works .work-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  height: 100%;
}

.top-works .work-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.top-works .work-card__image {
  width: 85%;
  margin: 12px auto 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.top-works .work-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.top-works .work-card:hover .top-works .work-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.top-works .work-card__body {
  padding: 16px 16px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.top-works .work-card__category {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
}

.top-works .work-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.top-works .work-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

/* ========= タブレット（〜1024px） ========= */
@media (max-width: 1024px) {
  .top-works {
    padding: 70px 0 60px;
  }
  .top-works .title h2 {
    font-size: 48px;
    letter-spacing: 0.25em;
  }
  .top-works .title .title-sub {
    font-size: 18px;
  }
  .top-works .container {
    padding: 0 16px;
  }
  .top-works .work-card__image {
    width: 90%;
  }
  .top-works .work-card__body {
    padding: 14px 14px 16px;
  }
}

/* ========= スマホ（〜768px） ========= */
@media (max-width: 768px) {
  .top-works {
    padding: 60px 0 50px;
  }
  .top-works .title {
    margin-bottom: 24px;
  }
  .top-works .title h2 {
    font-size: 32px;
    letter-spacing: 0.18em;
  }
  .top-works .title .title-sub {
    font-size: 14px;
    letter-spacing: 0.16em;
  }
  .top-works .container {
    padding: 0 14px;
  }
  .top-works .splide__list {
    gap: 16px;
  }
  .top-works .splide__slide {
    /* SPでは1枚ずつ全幅寄りに表示 */
    padding: 0 4px;
  }
  .top-works .work-card__image {
    width: 100%;
    border-radius: 0;
  }
  .top-works .work-card__body {
    padding: 14px 12px 16px;
  }
  .top-works .work-card__title {
    font-size: 14px;
  }
  .top-works .work-card__text {
    font-size: 12px;
  }
  .top-works .top-works .container .works-more {
    margin-top: 28px;
  }
  .top-works .top-works .container .works-more .btn-works-more {
    padding: 10px 28px;
    font-size: 13px;
  }
}

.works-page {
  padding-top: 80px;
}

.works-page .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヒーロー部 */
.works-hero {
  padding: 60px 0 40px;
}

.works-hero__title {
  font-size: 44px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.works-hero__subtitle {
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
}

.works-hero__lead {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: white;
}

/* メインセクション */
.works-section {
  padding-bottom: 80px;
}

/* カテゴリーフィルター */
.works-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
}

.works-filter__item {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #555;
  background-color: #fff;
}

.works-filter__item:hover {
  border-color: #333;
  color: #333;
}

.works-filter__item.is-active {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* 2列のカードレイアウト */
.works-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* カード */
.work-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.work-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.work-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.work-card:hover .work-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.work-card__body {
  padding: 16px 18px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.work-card__category {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
}

.work-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: black;
}

.work-card__text {
  color: black;
}

.work-card__meta {
  margin: 4px 0 8px;
  padding: 0;
  font-size: 13px;
  line-height: 1.7;
}

.work-card__meta .work-card__meta-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
      grid-template-columns: 80px 1fr;
  -webkit-column-gap: 8px;
          column-gap: 8px;
  row-gap: 2px;
  margin-top: 4px;
}

.work-card__meta .work-card__meta-item:first-child {
  margin-top: 0;
}

.work-card__meta .work-card__meta-item dt {
  font-weight: 600;
  color: #666;
}

.work-card__meta .work-card__meta-item dd {
  margin: 0;
  color: #444;
}

.work-card__button {
  margin-top: 8px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #333;
  border: 1px solid #333;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.work-card__button:hover {
  background-color: #333;
  color: #fff;
}

/* スマホ対応：1列表示に */
@media (max-width: 768px) {
  .works-hero {
    padding: 40px 0 24px;
  }
  .works-hero__title {
    font-size: 22px;
  }
  .works-hero__lead {
    font-size: 13px;
  }
  .works-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .work-card__meta .work-card__meta-item {
    -ms-grid-columns: 72px 1fr;
        grid-template-columns: 72px 1fr;
  }
  .sp-only {
    display: inline;
  }
}

.footer {
  background-color: #111;
  color: #f5f5f5;
  padding: 32px 0 20px;
  margin-top: 60px;
}

.footer .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-align: center;
}

/* ナビ部分 */
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f5f5f5;
  position: relative;
  padding-bottom: 3px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f5f5f5;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* コピーライト */
.footer-copy {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer {
    padding: 24px 0 16px;
  }
  .footer__inner {
    gap: 12px;
  }
  .footer-nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px 18px;
  }
  .footer-nav a {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
}

body {
  background: linear-gradient(135deg, #1a2332, #2a3344);
  color: #f5f5f5;
}

/* Contact ページ全体 */
.contact-page {
  padding: 80px 0 100px;
}

.contact-page .container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact__header {
  text-align: center;
  margin-bottom: 40px;
}

.contact__title {
  font-size: 28px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact__lead {
  font-size: 14px;
  line-height: 1.9;
  color: #cfd3da;
}

.contact__form {
  background-color: rgba(15, 20, 30, 0.9);
  border-radius: 16px;
  padding: 24px 20px 28px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Contact Form 7 の中身 */
.contact-form__row {
  margin-bottom: 18px;
}

.contact-form__label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.contact-form__required {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  background-color: #e74c3c;
  color: #fff;
}

.contact-form__row--agree {
  margin-top: 10px;
}

.contact-form__agree {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.contact-form__agree input[type='checkbox'] {
  width: 16px;
  height: 16px;
}

.contact-form__actions {
  margin-top: 20px;
  text-align: center;
}

/* Contact Form 7 が吐き出す要素をまとめてデザイン */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #444c5a;
  background-color: #151a24;
  color: #f5f5f5;
  padding: 8px 10px;
  font-size: 14px;
}

.wpcf7-form-control.wpcf7-textarea {
  min-height: 140px;
  resize: vertical;
}

/* プレースホルダ */
.wpcf7-form-control::-webkit-input-placeholder {
  color: #7d8594;
}
.wpcf7-form-control:-ms-input-placeholder {
  color: #7d8594;
}
.wpcf7-form-control::-ms-input-placeholder {
  color: #7d8594;
}
.wpcf7-form-control::placeholder {
  color: #7d8594;
}

/* 送信ボタン */
.wpcf7-submit {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #111827;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.wpcf7-submit:hover {
  background-color: #ffffff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* エラー・完了メッセージ */
.wpcf7-response-output {
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.1);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2ecc71;
  background-color: rgba(46, 204, 113, 0.08);
}
/*# sourceMappingURL=style.css.map */