@charset "UTF-8";
/* ===================================
   Variables
=================================== */
/* ===================================
   Mixins
=================================== */
/* ===================================
   Base Settings
=================================== */
* {
  box-sizing: border-box; }

body {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  color: #3B3B3B;
  line-height: 1.8;
  margin: 0;
  padding: 0; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

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

/* ===================================
   Title
=================================== */
h2 {
  font-size: 32px;
  /* メインの「サービス」の文字サイズ調整 */
  font-weight: 500;
  color: #3B3B3B;
  margin-bottom: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column; }

h2 span {
  display: block;
  font-family: "Kite One";
  font-size: 20px;
  /* 小さな「Service」の文字サイズ調整 */
  font-weight: 400;
  color: #3B3B3B;
  letter-spacing: 0.1em;
  border-bottom: 2px dotted #3270B8;
  /* Serviceの下の点線のような装飾 */
  padding-bottom: 2px;
  margin-bottom: 12px; }

h3 {
  font-size: 23px;
  font-weight: 500;
  color: #3B3B3B;
  /* 青系の色を適用 */
  margin-top: 0;
  margin-bottom: 24px;
  position: relative;
  padding-left: 32px; }

h3::before {
  position: absolute;
  content: "";
  top: 12px;
  left: 0;
  width: 20px;
  /* 丸の直径 */
  height: 20px;
  /* 丸の直径 */
  border-radius: 50%;
  /* 円形にする */
  border: 3px solid #3270B8;
  /* 枠線も同じ青色で太くする */
  box-sizing: border-box;
  /* borderを含めてwidth/heightを計算 */ }

/* セクション導入文 (p) のスタイル */
p {
  font-family: "Zen Kaku Gothic Antique";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  color: #3B3B3B;
  letter-spacing: 0; }

@media (max-width: 667px) {
  h2 {
    font-size: 28px;
    margin-bottom: 24px; }
    h2 span {
      margin: 0 auto 6px auto;
      font-size: 18px; }

  + p {
    text-align: left; }
    + p br {
      display: none; }

  h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 28px; }
    h3::before {
      top: 10px;
      left: 0;
      width: 18px;
      height: 18px; } }
/* ===================================
   Layout Utilities
=================================== */
.center {
  max-width: 1040px;
  margin: 0 auto; }

@media (max-width: 1040px) {
  .center {
    max-width: 90%; } }
.flow {
  display: flex;
  align-items: center; }

/* ===================================
   Content Wrapper
=================================== */
.content {
  overflow: hidden; }

/* ===================================
   Header
=================================== */
.header {
  position: fixed;
  top: 2em;
  width: 95.3125%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  z-index: 1000;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
  /* メニュー内のリンクを少し遅らせて表示させる（サイト風の演出） */
  /* アニメーションを追加 */ }
  .header__inner {
    padding: 15px 40px;
    justify-content: space-between;
    position: relative; }
  .header h1 {
    margin: 0;
    z-index: 2; }
    .header h1 img {
      height: 40px; }
    .header h1:hover {
      opacity: 0.8;
      transition: all 0.3s; }
  .header__nav {
    display: flex;
    align-items: center;
    gap: 40px; }
    .header__nav ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 30px; }
      .header__nav ul li a {
        color: #333;
        font-weight: 500;
        font-size: 18px;
        letter-spacing: 0.08em;
        transition: color 0.3s; }
        .header__nav ul li a:hover {
          color: #3270B8; }
    .header__nav .btn a {
      background: #3270B8;
      color: #ffffff;
      padding: 9px 28px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.08em;
      display: inline-block;
      border: 2px solid transparent;
      box-sizing: border-box; }
      .header__nav .btn a:hover {
        color: #3270B8;
        background: #fff;
        box-sizing: border-box;
        border: 2px solid #3270B8;
        transition: all .3s; }
  .header__hamburger {
    display: none; }
  .header__whitelogo {
    margin-bottom: 40px; }
  .header .drawer-nav {
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0 30px;
    background: #fff;
    color: #3B3B3B;
    width: 100%;
    border-radius: 10px;
    /* 初期状態 */
    transform: scaleY(0);
    transform-origin: top;
    /* 上から開く */
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.2s ease; }
    .header .drawer-nav ul {
      margin-bottom: 24px;
      width: 90%;
      margin: 0 auto; }
      .header .drawer-nav ul li {
        text-align: center;
        margin-bottom: 1em; }
        .header .drawer-nav ul li a {
          font-size: 16px;
          font-weight: 500;
          color: #383838; }
      .header .drawer-nav ul li:last-of-type {
        margin-bottom: 0; }
    .header .drawer-nav .btn {
      width: 90%;
      margin: 32px auto 0; }
      .header .drawer-nav .btn a {
        width: 100%;
        background: #3270B8;
        color: #fff;
        padding: 12px 28px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 18px;
        letter-spacing: 0.08em;
        display: inline-block;
        text-align: center; }
  .header .drawer-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.5s ease, opacity 0.2s ease; }
  .header .drawer-nav nav {
    opacity: 0;
    transform: translateY(1px);
    transition: all 0.4s ease 0.3s;
    /* 0.3秒遅れてふわっと出る */ }
  .header .drawer-nav.is-open nav {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.3s; }
  .header .header__hamburger.open span:first-child {
    transform: translateY(5.5px) rotate(30deg); }
  .header .header__hamburger.open span:last-child {
    transform: translateY(-5.5px) rotate(-30deg); }

@media (max-width: 667px) {
  .header {
    top: 1em;
    width: 90%;
    height: 60px;
    margin: 0 auto; }
    .header .header__inner {
      padding: 14px 20px; }
      .header .header__inner h1 img {
        height: 34px; } }
@media (max-width: 1020px) {
  .header__inner {
    padding: 20px 40px; }
  .header__nav {
    display: none; }
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 2; }
    .header__hamburger span {
      width: 40px;
      height: 3px;
      background: #3270B8;
      border-radius: 2px;
      transition: all 0.3s; } }
@media (max-width: 667px) {
  .header__hamburger {
    top: 10px;
    right: 20px;
    gap: 8px; }
    .header__hamburger span {
      width: 36px;
      height: 2px; }

  .header .drawer-nav .btn a {
    font-size: 16px; } }
/* ===================================
   Visual Section (FV)
=================================== */
.visual {
  height: 100vh;
  min-height: 757px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url("../img/mv_bk.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .visual__msg {
    max-width: 1102px;
    width: 100%;
    gap: 5.8%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 110px;
    padding-left: 3em; }
    .visual__msg h2 {
      grid-column: 1;
      grid-row: 1;
      margin: 0;
      animation: slideInLeft 0.9s ease-out both;
      max-width: 398px; }
      .visual__msg h2 img:last-of-type {
        display: none; }
    .visual__msg > figure:nth-of-type(1) {
      grid-column: 1;
      grid-row: 2;
      position: absolute;
      bottom: 3em;
      left: 29%;
      z-index: 2;
      animation: slideInLeft 0.9s ease-out 0.15s both; }
      .visual__msg > figure:nth-of-type(1) img {
        max-width: 360px; }
    .visual__msg > figure:nth-of-type(2) {
      grid-column: 2;
      grid-row: 1 / 3;
      margin: 0;
      justify-self: end;
      animation: slideInRight 0.9s ease-out 0.3s both;
      width: 100%; }
      .visual__msg > figure:nth-of-type(2) img {
        width: 100%;
        max-width: 620px;
        border-radius: 10px; }
      .visual__msg > figure:nth-of-type(2) img:last-of-type {
        display: none; }

.visual::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 5.4%;
  height: 100%;
  background: linear-gradient(0deg, #50CAC1 0%, #3270B8 100%); }

@media (max-width: 667px) {
  .visual::after {
    width: 6%; }

  .visual__msg {
    padding-top: 20px;
    padding-left: 1.5em; }
    .visual__msg h2 {
      margin-top: 1em;
      width: 76%;
      margin-left: -50px; }
      .visual__msg h2 img {
        display: none; }
      .visual__msg h2 img:last-of-type {
        display: block; }
    .visual__msg > figure:nth-of-type(1) {
      width: 60%;
      left: 46%; }
    .visual__msg > figure:nth-of-type(2) {
      width: 90%; }
      .visual__msg > figure:nth-of-type(2) img {
        display: none; }
      .visual__msg > figure:nth-of-type(2) img:last-of-type {
        display: block; } }
/* ===================================
   Service
=================================== */
/* ベースとなる設定 */
/* sectionの上下マージンは100px */
section {
  padding: 100px 0; }

.service h3 {
  margin-bottom: 32px; }

@media (max-width: 667px) {
  section {
    padding: 80px 0; } }
/* サービスリスト (ul) のスタイル */
.service__list {
  display: flex;
  /* 2カラムにする */
  gap: 46px;
  /* リストアイテム間の間隔 */
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  align-items: flex-start;
  /* h3, p, figure内の要素の配置をリセット */ }

/* サービスリストアイテム (li) のスタイル */
.service__list > li {
  flex: 1;
  /* 均等な幅にする */
  border-radius: 8px; }

/* サービス名 (h3) のスタイル */
/* 画像コンテナ (figure) のスタイル */
.service__list figure {
  margin: 0 0 40px 0;
  /* 下マージンを調整 */ }

/* 画像 (img) のスタイル */
.service__list figure img {
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

/* スマートフォン表示（例: 768px以下）での調整 */
@media (max-width: 667px) {
  .service h3 {
    margin-bottom: 20px;
    line-height: 1.4; }

  .service__list {
    flex-direction: column;
    /* 1カラムにする */
    gap: 32px; }
    .service__list li figure {
      margin: 0 0 24px 0; } }
/* ===================================
   features
=================================== */
/*==================================================
  Features セクション全体のスタイル
==================================================*/
.features {
  background-color: #ecf6f7;
  /* 全体の背景色（薄い水色） */ }

/*==================================================
  セクションタイトル
==================================================*/
.fea__ttl {
  text-align: center;
  margin-bottom: 60px; }

/* HTMLにはあるがデザインにはない説明文を非表示にする */
.fea__ttl p {
  display: none; }

/*==================================================
  特徴リスト（カード部分）
==================================================*/
.fea__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* 上揃えにして階段状の配置の基準にする */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
  /* カード間の余白 */ }

/* 各カードのスタイル */
.fea__list li {
  position: relative;
  background: none;
  padding: 42px 16px 32px;
  border-radius: 10px;
  /* 角丸 */
  width: 31.5%;
  /* 3カラム */
  box-sizing: border-box;
  z-index: 0;
  /* 擬似要素より手前に表示 */ }

@media screen and (max-width: 912px) {
  .fea__list {
    flex-wrap: wrap;
    gap: 4%; }
    .fea__list li {
      width: 48%; }
    .fea__list li:first-of-type {
      margin-bottom: 3em; } }
/* 背景の青い装飾（ずれた影） */
.fea__list li::before {
  content: "";
  position: absolute;
  top: 12px;
  /* 下へのズレ幅 */
  left: 12px;
  /* 右へのズレ幅 */
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #50CAC1 0%, #3270B8 100%);
  border-radius: 10px;
  z-index: -2; }

/* 白いカード部分 - ::beforeより手前、コンテンツより奥に配置 */
.fea__list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  /* 白い背景 */
  border-radius: 10px;
  /* ::before (-2) より手前、コンテンツ (auto/0) より奥に配置 */
  z-index: -1; }

/* 元のコンテンツは相対配置で手前に持ってくる */
.fea__list li > * {
  position: relative;
  z-index: 1; }

/* 階段状の配置 */
/* 2番目のカードを少し下げる */
.fea__list li:nth-child(2) {
  margin-top: 45px; }

/* 3番目のカードをさらに下げる */
.fea__list li:nth-child(3) {
  margin-top: 90px; }

/*==================================================
  カード内の要素
==================================================*/
/* 番号と英語タイトル */
.fea__list__ttl {
  text-align: left; }
  .fea__list__ttl h3 {
    all: unset;
    position: absolute;
    top: -2.5em;
    left: 1em;
    font-family: "Kite One";
    font-size: 33PX;
    color: #3270B8;
    margin-bottom: 0; }
    .fea__list__ttl h3::before {
      content: none; }
    .fea__list__ttl h3 .fea__list__ttl--num {
      color: transparent;
      /* 文字色を透明に */
      -webkit-text-stroke: 2px #3270B8;
      /* 縁取りの色と太さ */
      text-stroke: 2px #3270B8;
      font-size: 44PX;
      font-family: "Kite One";
      margin-right: 20PX; }

@media (max-width: 1040px) {
  .fea__list__ttl h3 {
    top: -2.9em;
    left: 0;
    font-size: 30PX; } }
/* 日本語タイトル */
.fea__list li > h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.5;
  padding-left: 0; }
  .fea__list li > h3::before {
    content: none; }

/* 画像 */
.fea__list figure {
  margin: 0 0 16px 0; }

.fea__list figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  /* 画像の角丸 */
  display: block; }

/* 説明文 */
/* Responsive */
@media (max-width: 1040px) {
  .fea__list {
    gap: 3%; } }
@media (max-width: 912px) {
  .fea__list li:nth-child(2),
  .fea__list li:nth-child(3) {
    margin-top: 0; } }
@media (max-width: 667px) {
  .fea__list {
    flex-flow: column;
    gap: 0; }
    .fea__list li {
      width: 100%;
      margin-bottom: 4em; }
      .fea__list li .fea__list__ttl h3 {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        white-space: nowrap; }
    .fea__list li::before {
      top: 10px;
      left: 10px; }
    .fea__list li:first-of-type {
      margin-bottom: 4em; }
    .fea__list li:last-of-type {
      margin-bottom: 0; } }
/* ===================================
   Company Section
=================================== */
.company {
  background-color: #ffffff;
  /* セクション導入文 */ }
  .company > .center > p {
    text-align: center;
    margin-bottom: 60px; }

.com__block {
  margin-bottom: 100px; }
  .com__block:last-child {
    margin-bottom: 0; }

@media (max-width: 667px) {
  .company > .center > p {
    text-align: left;
    margin-bottom: 40px; } }
/* -----------------------------------
   代表メッセージ (CEO Message)
----------------------------------- */
.com__mes {
  gap: 5.7%;
  align-items: flex-start;
  /* CEO画像エリア */
  /* テキストエリア */ }
  .com__mes > figure {
    width: 38%;
    /* 画像の幅 */
    position: relative;
    margin: 0;
    z-index: 1;
    /* 画像背面の青緑グラデーション装飾 */ }
    .com__mes > figure img {
      border-radius: 10px;
      width: 100%;
      height: auto;
      position: relative;
      z-index: 2; }
    .com__mes > figure::before {
      content: "";
      position: absolute;
      top: 12px;
      /* 下へのずらし幅 */
      right: -12px;
      /* 右へのずらし幅 */
      width: 100%;
      height: 100%;
      background: linear-gradient(-90deg, #50CAC1 0%, #3270B8 100%);
      border-radius: 10px;
      z-index: 1; }
  .com__mes__txt {
    flex: 1;
    /* 残りの幅を使用 */
    /* 「変化に挑む、進化し続ける企業へ」の部分 */
    /* 署名画像 */ }
    .com__mes__txt h4 {
      font-family: "Klee One", cursive;
      font-size: 30px;
      color: #3270B8;
      margin-bottom: 24px;
      font-weight: 600; }
    .com__mes__txt .com__mes__ttl {
      display: block;
      color: #3270B8;
      font-size: 28px;
      /* スクリーンショットに合わせて大きく */
      margin-top: 10px; }
    .com__mes__txt p {
      margin-bottom: 40px;
      text-align: justify; }
    .com__mes__txt h5 {
      font-weight: 500;
      line-height: 2.143;
      text-align: right;
      font-size: 14px; }
    .com__mes__txt figure {
      display: flex;
      justify-content: flex-end;
      margin: 0;
      font-size: 22px;
      font-family: 'Klee One'; }
      .com__mes__txt figure img {
        max-width: 120px;
        /* 署名サイズ調整 */ }

@media (max-width: 812px) {
  .com__mes__txt h4 {
    font-size: 28px;
    line-height: 1.4; } }
@media (max-width: 667px) {
  .com__mes__txt p {
    margin-bottom: 32px; }

  .com__mes__txt h4 {
    font-size: 24px;
    margin-bottom: 12px; } }
/* ===================================
   Company Section - 企業理念 (Philosophy) 修正版
=================================== */
/* コンテナ設定：左右配置と幅指定 */
.com__rinen {
  display: flex;
  justify-content: space-between;
  /* 指定された幅に基づいて配置 */
  align-items: center;
  /* 垂直方向は中央揃え */
  gap: 0;
  /* gapではなくjustify-contentで間隔を制御 */ }

/* 左側：画像エリア (33.9%) */
.com__rinen figure {
  width: 33.9%;
  margin: 0;
  flex-shrink: 0;
  /* 幅が縮まないように固定 */ }
  .com__rinen figure img {
    width: 100%;
    height: auto;
    /* 画像自体に余白や装飾があればここで調整 */ }

/* 右側：テキストリストエリア (58.8%) */
.com__rinenlist {
  width: 58.8%;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: none;
  /* 既存のflex: 1を無効化 */
  /* リストアイテムごとの設定 */
  /* 見出し (英語 + 日本語) */
  /* 英語表記部分 (01 - Products 等) */
  /* 数字部分の調整（必要であれば） */
  /* 説明文 */ }
  .com__rinenlist li {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #EFEFEF; }
    .com__rinenlist li:last-child {
      margin-bottom: 0; }
  .com__rinenlist h4 {
    color: #3270B8;
    /* #3270B8 */
    font-size: 20px;
    /* 日本語部分のフォントサイズ */
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.53; }
  .com__rinenlist .com__rinenlist--en {
    display: block;
    /* ブロック要素にして改行させる */
    font-family: "Habibi";
    /* 指定の英語フォント */
    font-size: 14px;
    line-height: 1.714;
    font-weight: 400; }
  .com__rinenlist .com__rinenlist--num {
    font-size: 18px; }
  .com__rinenlist p {
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    /* 両端揃えできれいに見せる */ }

/* ===================================
   Responsive (スマホ対応)
=================================== */
@media (max-width: 667px) {
  .com__rinen {
    flex-direction: column;
    /* 縦並び */
    gap: 32px; }

  .com__rinen figure {
    width: 80%;
    /* スマホ時は少し大きく表示 */
    margin: 0 auto; }

  .com__rinenlist {
    width: 100%;
    /* スマホ時は横幅いっぱい */ }

  .com__rinenlist h4 {
    font-size: 18px; } }
@media (max-width: 500px) {
  .com__rinen figure {
    width: 100%; } }
/* -----------------------------------
   会社概要 (Table)
----------------------------------- */
.com__table {
  width: 100%;
  border-collapse: collapse; }
  .com__table tr {
    border-bottom: 1px solid #EFEFEF; }
  .com__table th, .com__table td {
    padding: 16px 0;
    text-align: left; }
  .com__table th {
    width: 16.4%;
    color: #3270B8;
    font-weight: 500;
    vertical-align: top;
    white-space: nowrap; }
  .com__table td {
    width: 83.6%; }
    .com__table td iframe {
      width: 100%;
      margin-top: 15px;
      display: block; }
    @media (max-width: 667px) {
      .com__table td iframe {
        height: 200px; } }
    @media (max-width: 500px) {
      .com__table td iframe {
        height: 150px; } }

/* ===================================
   Responsive (スマホ対応)
=================================== */
@media (max-width: 667px) {
  .com__block {
    margin-bottom: 80px; }

  /* 代表メッセージ */
  .com__mes {
    flex-direction: column;
    gap: 40px; }
    .com__mes > figure {
      width: 80%;
      /* スマホ時は少し小さめに */
      margin: 0 auto 10px;
      /* 下に余白 */ }
      .com__mes > figure::before {
        top: 10px;
        right: -10px; }
    .com__mes__txt {
      width: 100%; }
      .com__mes__txt .com__mes__ttl {
        font-size: 24px;
        /* スマホ用に少し小さく */ }

  /* 会社概要テーブル */
  .com__table {
    display: block; }
    .com__table tbody, .com__table tr, .com__table th, .com__table td {
      display: block;
      width: 100%; }
    .com__table th {
      padding-bottom: 0; }
    .com__table td {
      padding-top: 4px; } }
@media (max-width: 500px) {
  .com__mes > figure {
    width: 100%; } }
/* ===================================
   Obi
=================================== */
/* 無限スクロール帯のデザイン用CSS */
/* 帯セクション全体のスタイル */
.obi {
  height: 216px;
  background-image: url("../img/obi_bk.webp");
  background-size: cover;
  background-position: center;
  /* 子要素（h2）の文字が溢れるのを許可 */
  overflow: hidden;
  /* テキストが垂直方向中央に来るように設定 */
  position: relative;
  white-space: nowrap;
  /* h2内のテキストが改行されないようにする */ }

/* スクロールさせるテキストのスタイル */
.obi h2 {
  position: absolute;
  left: 0;
  bottom: 0.7em;
  height: 47px;
  font-family: "Kite One";
  color: white;
  font-size: 33px;
  /* デザインに合わせて調整してください */
  font-weight: 400;
  line-height: 0.909;
  margin: 0;
  padding: 10px 0 8px;
  background: linear-gradient(90deg, #50CAC1 0%, #3270B8 50%, #50CAC1 100%);
  animation: marquee 34s linear infinite; }

@keyframes marquee {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
@media (max-width: 667px) {
  .obi h2 {
    font-size: 28px; } }
@media (max-width: 500px) {
  .obi {
    height: 160px; }
    .obi h2 {
      font-size: 22px;
      padding: 6px 0 4px; } }
/* =======================================
 * Recruit
 * ======================================= */
.recruit h2 + p {
  text-align: center;
  margin-bottom: 60px; }

.rec__cha__list {
  /* リストのデフォルトスタイルをリセット */
  list-style: none;
  padding: 0;
  margin: 0; }

@media (max-width: 667px) {
  .recruit h2 + p {
    text-align: left;
    margin-bottom: 40px; }
    .recruit h2 + p br {
      display: none; } }
/* ---------------------------------------
 * 各項目のレイアウト（li.flow）
 * --------------------------------------- */
.rec__cha__list .flow {
  display: flex;
  /* Flexboxで子要素を横並びにする */
  justify-content: space-between;
  /* テキストと画像の間にスペースを空ける */
  align-items: flex-start;
  /* 項目を上端揃えにする */
  margin-bottom: 100px;
  position: relative;
  /* 縦線を配置するための基準 */ }
  .rec__cha__list .flow:last-child {
    margin-bottom: 0; }

/* ---------------------------------------
 * 左側の縦線とCharmの文字のスタイル
 * --------------------------------------- */
.rec__cha__list .flow::before {
  content: "";
  position: absolute;
  top: 3.5em;
  left: 0.9em;
  height: 90px;
  width: 1px;
  background-color: #3270B8;
  /* 薄い水色の点線/実線を再現 */ }

.rec__cha__list--en {
  font-family: "Kite One";
  display: block;
  color: #3270B8;
  /* 魅力を表す色（画像からは緑系に見えるため仮設定） */
  position: absolute;
  line-height: 2.25;
  writing-mode: vertical-rl;
  /* 縦書きにする */
  left: 0;
  top: 0; }

/* ---------------------------------------
 * テキストブロックと画像の幅の指定
 * --------------------------------------- */
/* テキストブロック（左側） */
.rec__cha__listtxt {
  width: 48.7%;
  /* 要求された幅 */
  padding-left: 48px;
  /* 縦線とCharmの文字のための余白 */ }

/* 画像ブロック（右側） */
.rec__cha__list figure {
  width: 47.7%;
  /* 要求された幅 */
  margin: 0;
  /* デフォルトマージンのリセット */
  position: relative;
  z-index: 1; }
  .rec__cha__list figure::before {
    content: "";
    position: absolute;
    top: 12px;
    right: -12px;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, #50CAC1 0%, #3270B8 100%);
    border-radius: 10px;
    z-index: -1; }

.rec__cha__list figure img {
  /* 画像をfigureの幅いっぱいに表示し、角丸にする */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  /* スクリーンショットに見られる角丸を再現 */ }

/* ---------------------------------------
 * 見出しの装飾 (h4内の<span>タグ)
 * --------------------------------------- */
.rec__cha__list h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 8px;
  color: #3270B8; }

.rec__cha__list h4 .circles {
  display: flex;
  align-items: center;
  gap: 0;
  /* 丸同士をくっつける */
  margin-bottom: 24px; }
  .rec__cha__list h4 .circles .circle {
    color: white;
    /* 文字色を白に */
    font-weight: 700;
    font-size: 22px;
    line-height: 1.636;
    letter-spacing: 0.2em;
    width: 55px;
    height: 55px;
    background: #3270B8;
    /* 好きな青に変更OK */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 3px;
    margin-right: -8px;
    /* 少しだけ重ねるポイント！ */ }

/* 成長 (rec__cha__list:nth-child(1)) の色 */
.rec__cha__list li:nth-child(1) h4 span {
  background-color: #28a745;
  /* 仮の緑色 */ }

/* 安心 (rec__cha__list:nth-child(2)) の色 */
.rec__cha__list li:nth-child(2) h4 span {
  background-color: #007bff;
  /* 仮の青色 */ }

/* 応援 (rec__cha__list:nth-child(3)) の色 */
.rec__cha__list li:nth-child(3) h4 span {
  background-color: #ffc107;
  /* 仮の黄色/オレンジ色 */ }

/* ---------------------------------------
 * 奇数行（2番目、4番目...）の配置を反転させる
 * --------------------------------------- */
/* 2番目以降の li 要素 (2, 4, 6, ...) に対して適用 */
.rec__cha__list li:nth-child(even) {
  flex-direction: row-reverse;
  /* テキストと画像を左右反転させる */ }

/* 配置反転に伴い、縦線とCharmの位置も調整 */
.rec__cha__list li:nth-child(even)::before {
  left: auto;
  right: 10px;
  /* 縦線を右側に移動 */ }

.rec__cha__list li:nth-child(even) .rec__cha__list--en {
  left: auto;
  right: -9px;
  /* Charm文字を右側に移動 */ }

/* 配置反転に伴い、テキストと画像のパディングを調整 */
.rec__cha__list li:nth-child(even) .rec__cha__listtxt {
  padding-left: 0;
  padding-right: 30px; }

@media (max-width: 667px) {
  .rec__cha__list .flow {
    flex-flow: column;
    margin-bottom: 80px; }
    .rec__cha__list .flow .rec__cha__listtxt {
      width: 100%;
      margin-bottom: 2em; }
    .rec__cha__list .flow figure {
      width: 100%; }

  .rec__cha__list li:nth-child(even) {
    flex-direction: column; }

  .rec__cha__list figure::before {
    top: 10px;
    right: -10px; } }
@media (max-width: 500px) {
  .rec__cha__listtxt {
    padding-left: 40px; } }
/* ---------------------------------------
 * 社員の声
 * --------------------------------------- */
/* --- セクション全体 --- */
.voice {
  background-color: #F2F7F7;
  /* 全体の薄い背景色 */ }

/* --- カードリスト（横並び） --- */
.voice__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  gap: 5.7%;
  /* カード間の隙間 */ }

/* スマホ対応: 画面が狭いときは縦並びにする */
@media (max-width: 667px) {
  .voice__list {
    flex-direction: column; } }
/* --- カード本体 --- */
.voice__list li {
  background-color: #fff;
  border-radius: 10px;
  padding: 32px;
  width: 100%;
  position: relative;
  z-index: 0; }
  .voice__list li .voice__list__img {
    width: 85px;
    /* イラストの幅 */
    height: 138px;
    /* イラストの高さ */
    position: absolute;
    top: -54px;
    /* カードの上に飛び出させる */
    right: 32px;
    /* 右寄せ */ }

.voice__list li:nth-child(2) .voice__list__img {
  width: 74px;
  /* イラストの幅 */ }

@media (max-width: 812px) {
  .voice__list li .voice__list__img {
    width: 65px;
    /* イラストの幅 */
    height: auto; }

  .voice__list li:nth-child(2) .voice__list__img {
    width: 58px; } }
.voice__list li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-90deg, #50CAC1 0%, #3270B8 100%);
  z-index: -2;
  transform: translate(12px, 12px);
  border-radius: 10px; }

.voice__list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  z-index: -1; }

/* --- カード内のテキスト --- */
.voice__list h4 {
  font-size: 16px;
  margin: 0 0 20px 0;
  font-weight: 500;
  line-height: 1.875; }

/* 名前部分（小さい文字） */
.voice__list__name {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 500;
  line-height: 2; }

/* 青い下線 */
.voice__list h4::after {
  content: '';
  display: block;
  width: 35px;
  height: 2px;
  background-color: #3b6eac;
  margin-top: 20px;
  border-radius: 999px; }

@media (max-width: 667px) {
  .voice__list li::after {
    transform: translate(10px, 10px); }

  .voice__list li:nth-child(2) .voice__list__img {
    top: -16px;
    width: 65px; }

  .voice__list li:first-of-type {
    margin-bottom: 3em; }
    .voice__list li:first-of-type .voice__list__img {
      top: -16px;
      width: 75px; } }
@media (max-width: 500px) {
  .voice__list li .voice__list__img {
    right: 13px; }

  .voice__list li:first-of-type .voice__list__img {
    width: 65px; }

  .voice__list li:nth-child(2) .voice__list__img {
    width: 56px; } }
/* ---------------------------------------
 * 選考フロー
 * --------------------------------------- */
/* --- 基本設定 --- */
.rec__flow {
  background-color: #F2F7F7;
  /* 全体の背景色 */ }

/* --- フローリスト（横並び） --- */
.rec__flowlist {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 7.4%;
  counter-reset: flow-num;
  /* 番号カウントの初期化 */ }

/* --- カード本体 (li) --- */
.rec__flowlist li {
  position: relative;
  flex: 1;
  padding: 32px 16px;
  border-radius: 10px;
  text-align: center;
  /* 左上を斜めにカットして白背景を作る */
  z-index: 0; }

.rec__flowlist li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-90deg, #50CAC1 0%, #3270B8 100%);
  z-index: -2;
  transform: translate(12px, 12px);
  border-radius: 10px; }

.rec__flowlist li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F2F7F7 70px, #fff 70px);
  border-radius: 10px;
  z-index: -1; }

/* --- 番号 (01, 02, 03) --- */
/* figure（イラスト）の擬似要素として配置 */
.rec__flowlist li figure::before {
  counter-increment: flow-num;
  /* カウントを進める */
  content: "0" counter(flow-num);
  /* 番号を表示 */
  position: absolute;
  top: 32px;
  left: 18px;
  font-size: 50px;
  font-family: "Kite One";
  color: #3270B8;
  line-height: 0.6; }

/* --- カード間の矢印 (三角形) --- */
.rec__flowlist li h4::before {
  content: '';
  position: absolute;
  right: -77px;
  /* カードの外側右に配置 */
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 37px;
  background: url(../img/rec_flow_tri.webp);
  background-size: contain;
  background-repeat: no-repeat; }

.rec__flowlist li:last-child h4::before {
  display: none; }

/* スマホ時は矢印を下に向けるか、消す */
@media (max-width: 768px) {
  .rec__flowlist li h4::before {
    right: 50%;
    top: auto;
    bottom: -40px;
    transform: translateX(50%) rotate(90deg);
    /* 90度回転して下向きに */ }

  .rec__flowlist li:last-child h4::before {
    display: none; } }
/* --- カード内の各要素 --- */
.rec__flowlist figure {
  margin: 0 0 24px 0; }

.rec__flowlist figure img {
  width: auto; }

.rec__flowlist h4 {
  color: #3270B8;
  font-size: 20px;
  margin: 0 0 8px 0;
  font-weight: 500;
  line-height: 1.5; }

.rec__flowlist p {
  text-align: left;
  /* 本文は左揃え */ }

/* 注釈（小さい文字） */
.rec__flowlist--small {
  display: block;
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.538; }

/* スマホ対応: 画面が狭いときは縦並び */
@media (max-width: 812px) {
  .rec__flowlist {
    flex-wrap: wrap;
    gap: 4%; }
    .rec__flowlist li {
      width: 48%;
      flex: none;
      margin-bottom: 2em; }
      .rec__flowlist li figure::before {
        font-size: 44px; }
      .rec__flowlist li h4::before {
        content: none; }
    .rec__flowlist li:last-of-type {
      margin-bottom: 0; } }
@media (max-width: 667px) {
  .rec__flowlist {
    flex-flow: column;
    gap: 0; }
    .rec__flowlist li {
      width: 100%; }
    .rec__flowlist li::after {
      transform: translate(10px, 10px); } }
/* ---------------------------------------
 * お問い合わせ
 * --------------------------------------- */
/* --- セクション全体の背景 --- */
.contact {
  /* 左のターコイズから右の青へのグラデーション */
  background: linear-gradient(-90deg, #3270B8 0%, #50CAC1 100%);
  color: #fff; }

/* レイアウト調整用コンテナ */
.contact .center {
  max-width: 837px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* 左右に配置 */
  align-items: center;
  /* 上下中央揃え */
  gap: 40px; }

/* --- 左側：テキストエリア --- */
.contact__left {
  flex: 1;
  /* 幅の比率調整 */ }

.contact__left h2, .contact__left h2 span {
  align-items: flex-start;
  color: #fff; }

.contact__left h2 span {
  border-bottom: 2px dotted #fff; }

.contact__left p {
  font-weight: 500;
  margin: 0;
  line-height: 1.875;
  color: #fff; }

/* --- 右側：ボタンリスト --- */
.contact__list {
  flex: 1;
  /* 幅の比率調整 */
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* ボタン同士の間隔 */ }
  .contact__list li {
    height: 76px; }

/* --- ボタン共通スタイル --- */
.contact__list li a {
  display: block;
  background-color: #fff;
  border-radius: 50px;
  /* カプセル型にする */
  text-decoration: none;
  color: #3270B8;
  /* 青文字 */
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 12px; }

.contact__list li a:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.3)); }

/* --- ボタン内の文字調整 --- */
/* 電話番号・メールアドレス部分 */
.contact__tel h3,
.contact__mail h3 {
  all: unset;
  font-family: "Kite One";
  font-size: 30px;
  line-height: 0.647;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* アイコンと文字の間隔 */ }

.contact__tel h3::before,
.contact__mail h3::before {
  content: none; }

/* サブテキスト（受付時間など） */
.contact__tel p,
.contact__mail p {
  font-weight: 500;
  font-size: 14px;
  line-height: 2.143;
  color: #3B3B3B;
  margin-top: -14px; }

.contact__mail p {
  margin-top: -5px; }

/* --- アイコン画像調整 --- */
.contact__list figure {
  margin: 0;
  height: auto;
  width: 34px; }

/* 不要な画像を消すクラス（HTMLにある場合） */
.disnon {
  display: none; }

/* --- スマホ対応（768px以下） --- */
@media (max-width: 812px) {
  .contact .center {
    flex-direction: column;
    /* 縦並びにする */
    text-align: center;
    max-width: 90%; }

  .contact__left h2 {
    align-items: center; }

  .contact__left h2 span {
    margin: 0 auto 10px auto;
    /* Contactを中央寄せ */ }

  .contact__list {
    width: 100%; }

  .contact__tel h3,
  .contact__mail h3 {
    font-size: 22px;
    /* スマホでは文字を少し小さく */ } }
@media (max-width: 667px) {
  .contact__left p {
    text-align: left; }
    .contact__left p br {
      display: none; } }
/* ---------------------------------------
 * フッター
 * --------------------------------------- */
/* --- フッター全体 --- */
footer {
  background-color: #fff;
  /* 背景色 */
  padding: 100px 0 20px; }

/* --- 上部コンテンツ（ロゴ・住所） --- */
.footer__txt {
  text-align: center;
  /* 要素を中央に配置 */
  margin-bottom: 100px;
  /* 下部との間隔 */ }

/* ロゴのサイズ調整 */
.footer__txt h1 {
  margin: 0 0 10px 0; }
  .footer__txt h1:hover {
    opacity: 0.8; }

.footer__txt h1 figure {
  max-width: 238px;
  /* 画像サイズに合わせて調整 */
  height: auto;
  display: inline-block; }

/* 会社名・住所のテキスト調整 */
.footer__txt p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  /* 行間を広めに */
  margin: 0; }

.footer__txt__name {
  display: block;
  /* 会社名を独立させ改行 */
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px; }

/* --- 下部コンテンツ（リンク・コピーライト） --- */
.footer__list {
  /* リンクとコピーライトを左右に配置するためのFlexbox */
  display: flex;
  justify-content: center;
  /* 両端揃え */
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  gap: 60px; }

/* リンク要素 (li) のスタイルリセット */
.footer__list li {
  list-style: none;
  padding: 0;
  margin: 0; }

/* リンク本体のスタイル */
.footer__list li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s; }

.footer__list li:first-child a {
  text-decoration: underline; }

.footer__list li a:hover {
  opacity: 0.7; }

/* 外部リンクアイコンのサイズ調整 */
.footer__list a figure img {
  height: 14px;
  width: auto; }

/* コピーライトテキスト */
.footer__copy {
  font-size: 14px; }

/* --- スマホ対応（768px以下） --- */
@media (max-width: 812px) {
  .footer__txt h1 img {
    max-width: 180px; }

  .footer__list {
    flex-direction: column;
    /* 縦並びにする */
    gap: 10px;
    text-align: center; }

  .footer__list li a {
    justify-content: center;
    /* リンクを中央寄せ */ }

  .footer__list .footer__copy {
    order: 1;
    /* 縦並びにした場合、コピーライトを先に表示する */ } }
@media (max-width: 667px) {
  footer {
    padding: 80px 0 16px; }
    footer .footer__txt {
      margin-bottom: 80px; } }
/* ===================================
   Responsive Design
=================================== */
@media (max-width: 1040px) {
  .visual__msg {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    width: 90%; }
    .visual__msg h2,
    .visual__msg > figure:nth-of-type(1),
    .visual__msg > figure:nth-of-type(2) {
      grid-column: 1; }
    .visual__msg h2 {
      grid-row: 1; }
    .visual__msg > figure:nth-of-type(1) {
      grid-row: 2;
      bottom: -2em; }
    .visual__msg > figure:nth-of-type(2) {
      grid-row: 3; }
    .visual__msg h2 img,
    .visual__msg > figure:nth-of-type(1) img {
      max-width: 90%;
      margin: 0 auto; } }
@media (max-width: 812px) {
  .visual__msg {
    width: 100%; }
    .visual__msg h2 {
      width: 45%; }
    .visual__msg > figure:nth-of-type(2) {
      width: 50%; } }
@media (max-width: 768px) {
  .visual {
    min-height: 600px; } }
@media (max-width: 667px) {
  .visual__msg {
    flex-flow: column-reverse;
    gap: 14px;
    align-items: flex-start;
    width: 90%;
    padding-left: 50px; }
    .visual__msg h2 {
      margin-left: 0;
      width: 70%; }
    .visual__msg > figure:nth-of-type(2) {
      width: 90%; } }
@media (max-width: 500px) {
  .visual__msg {
    width: 100%;
    padding-top: 0; }
    .visual__msg h2 {
      width: 80%;
      margin-top: 20px; }
    .visual__msg > figure:nth-of-type(1) {
      bottom: -4em;
      right: 0;
      left: inherit;
      width: 70%; } }
/* ===================================
   Utility Classes
=================================== */
.disnon {
  opacity: 0; }

/* ===================================
   decoration Classes
=================================== */
.shadow_blue {
  position: relative; }
  .shadow_blue::after {
    position: absolute;
    content: "";
    top: 12px;
    left: 12px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    background: linear-gradient(90deg, #50CAC1 0%, #3270B8 100%); }

@media (max-width: 667px) {
  .shadow_blue::after {
    top: 10px;
    left: 10px; } }

/*# sourceMappingURL=top.css.map */
