/*
Theme Name: lp-theme
Author: Your Name
Description: 自作LP用テーマ
Version: 1.0
*/
@charset "utf-8";

/* ==========================================================================
   1. 変数設定（ここを書き換えると全体の色が変わります）
   ========================================================================== */
/* ぼかし玉の共通設定 */
.bg-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    aspect-ratio: 1 / 1;
}
/* 左上のオレンジ玉 */
.bg-blur-circle.orange {
    top: 4rem;
    left: 0rem;
    width: 7rem;
    background-color: rgb(251 146 60);
}
/* 左下のグリーン玉 */
.bg-blur-circle.green {
    bottom: 4rem;
    left: 8rem;
    width: 7rem;
    background-color: rgb(117 211 52);
}
/* 右下のパープル玉 */
.bg-blur-circle.violet {
    top: 26rem;
    right: 3rem;
    width: 4rem;
    background-color: rgb(134 52 211);
}
/* 右上のイエロー玉 */
.bg-blur-circle.yellow {
    top: 11rem;
    right: 6rem;
    width: 6rem;
    background-color: rgb(252 255 95);
    filter: blur(25px);
}
   :root {
  /* メインカラー */
  --primary-blue: #38b6ff;
  --primary-orange: #f59e0b;
  --primary-orange-dark: #d97706;

  /* 背景色 */
  --bg-light: #fdfbf7;
  --bg-white: #ffffff;

  /* テキストカラー */
  --text-main: #44403c;
  --text-warm: #594a42;
  --text-warm-light: #857870;

  /* アクセントカラー（1/6 準拠） */
  --accent-pink: #ffb7b2;
  --accent-orange: #fbc185;
  --accent-green: #a8d5ba;
  --accent-yellow: #ffd700;

  /* カード背景色（1/6 準拠） */
  --card-cream: #fffdf2;
  --card-mint: #effbf4;
  --card-peach: #fff5f4;
}

/* ==========================================================================
   2. ベーススタイル
   ========================================================================== */
html, body{
  width: 100%;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
html{
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
   body {
  min-height: 100vh;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: #44403c;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-top: 85px;
  margin: 0 auto;
  /* background-color: #1115ff; 確認用 */
  background-color: #fdfbf7;
}

/* Google Material Icons の基本設定 */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 40;
  vertical-align: middle;
}
section, footer {
    width: 100%;
    box-sizing: border-box;
}
/* ==========================================================================
   共通パーツ（全セクション共通）
   ========================================================================== */
#workstyle, #daily-flow, #support, #steps, #interview {
  margin-top: 10%;
  margin-bottom: 50px;
} 

   .wrapper {
  max-width: 1280px;
  padding: 0 24px 96px;
  box-sizing: border-box;
  margin: 0 auto 10%;
}
div.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto 7%;
}
div.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background-color: #ffedd5;
  color: #ea580c;
  margin: 4% auto 3%;
  font-size: 1.2rem;
}
.label-icon {
  font-size: 16px;
}
span.label-text {
  font-weight: 700;
  letter-spacing: 0.025em;
}

/* <strong>タグをオレンジ強調として共通化 */
h1.main-ttl {
  display: inline-block;
  padding: 0 4px;
  font-weight: 700;
  color: #4A342E;
  line-height: 1.5;
  letter-spacing: -0.08em;
}
.main-ttl strong {
  color: #f97316;
}

div.description-wrapper {
  max-width: 800px;
  margin: auto 2rem 3rem;
}
.description-wrapper p {
  font-size: 1.25rem;
  color: #594a42;
  text-align: center;
  line-height: 1.75rem;
  font-weight: 400;
}
p.pc-only{
  display: block;
}
p.sp-only{
  display: none;
}
br.pc-only {
  display: block;
}
br.sp-only {
  display: none;
}
br.u480px{
    display: none;
}
ul {
    padding-left: 0;
    list-style-type: none;
}
/* ==========================================================================
   タブレット・PCサイズ 共通
   ========================================================================== */

@media (max-width: 1024px) {
    body {
        padding-top: 68px;
    }
    .wrapper{
      max-width: 100%;
      width: 100%;
    }
    .description-wrapper p , .label-icon {
      font-size: 1.3rem;
    }
  }


  @media (max-width: 768px) {
  span.label-icon {
        font-size: 18px;
    }
   div.label {
    font-size: 18px;
}
    br.sp-only {
      display: block;
  }
    br.pc-only {
      display: none;
  }
  h3{
    font-size: 20px;
  }
  div.description-wrapper {
  margin: auto 0rem 0rem;
	  max-width: inherit;
	  width: 100%;
}
  .description-wrapper p{
    width: 100%;
    word-break: normal;
	overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  }

}
@media (max-width: 480px) {
  p{
    font-size: 15px;
    line-height: 1.6;
  }
  a{
    font-size: 15px !important;
  }
  .wrapper {
    padding: 0 20px 0px;
    margin: 0 auto 3%;
  }
  .bg-blur-circle {
        width: 4rem !important;
        filter: blur(30px);
    }
  .bg-blur-circle.orange { top: 2rem; left: -1rem; }
  .bg-blur-circle.violet { top: 15rem; right: -1rem; }

  div.description-wrapper {
    margin: 0;
}
.description-wrapper p, .label-icon {
    font-size: 15px;
  }
  div.description-wrapper p{
    width: 100%;
    word-break: normal;
    max-width: none;
  }
  h1.main-ttl{
    display: block;
    font-size: 32px;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    padding: 0;
    margin: 0;
  }
  br.u480px{
    display: block;
  }
  .description-wrapper p {
    padding: 0;
  }
  div.container {
    margin: 0;
	  gap:0;
  }
ul.about-grid,
ul.work-grid,
ul.flow-timeline,
ul.support-grid, 
ul.int-grid,
ul.steps-cards {
  margin: 50px auto 0px !important;
}

}



/* ==========================================================================
   header
   ========================================================================== */
header {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   padding: 10px 2rem;
	 box-sizing: border-box;
   background-color: #ffffffad;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 1000;
 }
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0rem;
  color: #555;
  width: 100%;
  flex: 1;
}
a.logo {
   display: flex;
   align-items: center;
   font-weight: 700;
   font-size: 16px;
   text-decoration: none;
   /* gap: 5px; */
 }
.logo img{
  width: 15rem;
  height: auto;
}
nav.g-nav {
  display: flex;
  gap: 1.0rem;
 }
.g-nav a {
   text-decoration: none;
   color: inherit;
   font-weight: 500;
   font-size: 13px;
   transition: color 0.3s ease;
   white-space: nowrap;
   padding-bottom: 4px;
 }
.g-nav a:hover {
   border-bottom: 2px solid #f78c2e;
   color: #f78c2e;
 }
 .g-nav.top-actions{
  text-align: center;
 }
.g-nav.top-actions a {
  display: inline-block;
  background-color: #f78c2e86;
   color: #555;
   padding: 10px 18px;
   border-radius: 20px;
   text-decoration: none;
   font-weight: 700;
   font-size: 14px;
   transition: background-color 0.3s ease;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   white-space: nowrap;
}
.g-nav.top-actions a:hover {
  background-color: #f78c2e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  color: #fff;
  text-shadow: #3333338e 0px 2px 4px;
 }
 .open-btn {
    display: none;
}
.u1024px-only{
  display: none;
}
.u1024px-only.blog{
  display: block;
}

/* ==========================================================================
   header　メディアクエリ
   ========================================================================== */

@media (max-width: 1024px) {
    header {
      flex-direction: column; /* 縦に並べる */
      padding: 10px;
      gap: 10px;
      z-index: 1000;
    }
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        width: 90%;
    }
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo img {
        width: 15rem;
    }
    .g-nav {
        position: fixed;
        top: 0;
        right: -100%; /* 画面の右の外側に待機 */
        width: 100%;
        height: 100vh;
        gap: 0;
        background: rgba(255, 255, 255, 0.95);
        z-index: 2000;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        transition: all 0.3s ease;
        padding-top: 3rem;
    }
    .g-nav.panelactive {
        right: 0;
        width: 40vw;
    }
    .g-nav a {
        display: block;
        padding: 0;
        font-size: 18px;
        text-decoration: none;
        color: #333;
        width: 100%;
        text-align: center;
    }
    a.u1024px-only {
    display: block;
    font-weight: bold;
    filter: drop-shadow(0px 5px 5px rgba(247, 140, 46, 1.3));
    /* box-shadow: 0 6px 10px -4px rgba(247, 140, 46, 0.6); */
    /* text-shadow: 0 0 5px rgba(247, 140, 46, 0.4); */
    /* filter: drop-shadow(0 4px 3px rgba(247, 140, 46, 0.3)); */
    /* border-bottom: 2px solid rgba(247, 140, 46, 0.2); */
    /* OK出たら↑消します */
    transition: all 0.2s ease;
  }
  .u1024px-only:active {
    transform: translateY(1px);
    box-shadow: 0 3px 6px -2px rgba(247, 140, 46, 0.8);
    background-color: rgba(247, 140, 46, 0.05);
  }
    nav.top-actions {
      display: none;
    }
/* ハンバーガーメニュー================== */
    .open-btn {
        display: block;
        position: relative;
        width: 2rem;
        height: 1.5rem;
        z-index: 2001;
        cursor: pointer;
    }
    .open-btn span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: all 0.3s;
    }
    .open-btn span:nth-child(1) { top: 0; }
    .open-btn span:nth-child(2) { top: 11px; }
    .open-btn span:nth-child(3) { top: 22px; }

/* タップで✖印に変化========================================== */
.open-btn.active span:nth-child(1) {
    top: 11px;
    transform: rotate(-45deg); /* 1本目を斜めに */
}
.open-btn.active span:nth-child(2) {
    opacity: 0; /* 2本目を消す */
}
.open-btn.active span:nth-child(3) {
    top: 11px;
    transform: rotate(45deg); /* 3本目を逆に斜めに */
}

    /* 3. 各セクションのカードを1カラム（1枚ずつ）にする */
    .support-grid,
    .steps-cards-container,
    .interview-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .support-card,
    .steps-cards,
    .interview-card {
        width: 100%; /* 横幅いっぱい */
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    /* 4. ヒーローセクションの文字サイズ調整 */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }


  }
@media (max-width: 786px) {
  .g-nav.panelactive {
        width: 40vw;
    }
  }
@media (max-width: 480px) {
  header {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(0);
    opacity: 1;
  }
  header.is-hidden {
    transform: translateY(-100%);
    opacity: 0 !important;
    visibility: hidden;
  }
  .open-btn {
    width: 18px;
    z-index: 1005;
  }
  .g-nav.panelactive {
        width: 70vw;
        padding-top: 3rem;
    }
  nav.g-nav {
        justify-content: flex-start;
        z-index: 1001;
    }
    .g-nav.panelactive a{
      font-size: 15px;
    }

    .open-btn span:nth-child(1) { top: 2px; }
    .open-btn span:nth-child(2) { top: 10px; }
    .open-btn span:nth-child(3) { top: 19px; }
  }
/* ==========================================================================
   1.ヒーローセクション
   ========================================================================== */
 #hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    /* background-position:right 0% bottom 20%; 必要ならこちらで微調整*/
    background-repeat: no-repeat;
}
#hero-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.3);
   z-index: 1;
 }
 .wrapper.hero-visual{
  max-width: 100vw;
 }
 section.wrapper.hero-visual{
    margin: 0;
    padding: 0;
 }
div.container.hero {
   position: relative;
   z-index: 10;
   /* max-width: 800px; */
	padding: 20px;
	 /* top:50px; */
   width: 100%;
   margin-bottom: 0;
 }
h1.main-ttl.hero {
   font-size: 68px;
   margin-bottom: 20px;
   line-height: 1.2;
   letter-spacing: -1px;
   font-weight: 700;
   text-shadow: 
    0 0 8px #fff,    /* 外側に白い光 */
    0 0 4px #fff,    /* 文字のすぐ横を白く固める */
    2px 2px 4px rgba(0,0,0,0.1);
 }
 div.herocopy-mid{
  width: 100%;
  display: flex;
  justify-content: center;
}
p.sub-copy {
  width: auto;
  font-size: 18px;
  margin: 40px auto;
  color: #555;
  background-color: #ffffffcc;
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  word-break: auto-phrase;
 }
div.cta-buttons-wrapper {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 15px;
   position: relative;
   margin: 0 auto;
 }
.cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 280px;
   font-size: 18px;
   font-weight: 700;
   padding: 15px 30px;
   border-radius: 30px;
   text-decoration: none;
   transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
   box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
 }
.cta-button:nth-child(1) {
  background-color: #f78c2ed1;
  position: relative;
 }
.cta-button:nth-child(1):hover {
   background-color: #f78c2e;
   transform: translateY(-2px);
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
 }
.cta-button:nth-child(2) {
  background-color: #ffffffb3;
  color: #44403c;
  border: 2px solid #f78c2e;
 }
.cta-button:nth-child(2):hover {
  background-color: #fff;
   transform: translateY(-2px);
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
 }
 .speech-bubble {
   position: absolute;
   background-color:#fff;
   color: #44403c;
   padding: 5px 10px;
   border-radius: 15px;
   font-size: 12px;
   white-space: nowrap;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
   /* transform: rotate(5deg); */
   top: -23px; right: -35px;
   display: flex;
   align-items: center;
   pointer-events: auto;
   z-index: 999;
   animation: swing 4s infinite ease-in-out;
   transform-origin: bottom center;
 }
.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    /* transform: translateX(-50%); */
    border-style: solid;
    border-width: 19px 6px 0px 6px;
    border-color: #fff transparent transparent transparent;
    z-index: 1;
  }
@keyframes swing {
    0%, 100% { transform: rotate(5deg); }
    50% { transform: rotate(15deg); }
}
span.speech-bubble-icon {
   margin-right: 4px;
   font-size: 14px;
   line-height: 1;
   display: inline-block;
 }
.speech-bubble-icon svg{
    width: 13px;
    fill: rgb(252, 195, 204);
    vertical-align: middle;
    transition: fill 0.3s ease;
}
.cta-button:hover .speech-bubble-icon svg {
  fill: rgb(223, 75, 97);
}
.hero-visual .container {
    position: relative;
    z-index: 10; /* モヤより前に出す */
}

/* ==========================================================================
   1. Heroセクション　メディアクエリ
   ========================================================================== */

@media (max-width: 480px) {
  #hero-section {
       min-height: 70vh; 
	  background-position: right top; 
  }
  h1.main-ttl.hero{
    font-size: 40px;
    line-height: 1.3;
    margin-top: -210px;
  }
  div.herocopy-mid {
    margin-bottom: 20px;
  }
  p.sub-copy {
    margin: -130px auto 40px;
    padding: 1.5rem 0.5rem;
    font-size: 14px;
    word-break: normal;
    width: 80%;
	 position: relative;
  }
  div.container.hero {
    /* top: -2.4rem; */
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  div.cta-buttons-wrapper {
    width: 80%;
  }
  a.cta-button{
    width: auto;
    padding: 10px 25px;
  }
  .speech-bubble {
    top: -2rem;
    right: -1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  .speech-bubble-icon svg {
    fill: rgb(223, 75, 97);
}
}
/* ==========================================================================
   2. Aboutセクション
   ========================================================================== */
#about{
  margin-top: 70px;
}
.subttl {
  margin-top: 64px;
  text-align: center;
}
.subttl h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #594a42;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
h2.until-768px{
  display: block;
}
h2.u480px-only{
  display: none;
}
.subttl p {
  color: #857870; /* text-warm-text-light */
  font-size: 14px; /* text-sm */
  font-weight: 500; /* font-medium */
  margin-top: 8px; /* タイトルとの間隔 */
  letter-spacing: 0.05em;
  text-align: center;
}
.txt-green {
  color: #16a34a;
}
.txt-pink {
  color: #ec4899;
}

/* ====カードグリッド共通============ */
ul.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 60px;
}
li.about-card {
    background: #fff;
    padding: 50px 24px;
    border-radius: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
    transition: all 0.3s ease;
    border-bottom: 5px solid transparent;
}
.about-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}
div.card-icon-wrapper {
    width: 6rem;
    height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: #fff;
    aspect-ratio: 1 / 1;
}
.about-card:hover .card-icon-wrapper {
  transform: scale(1.1);
}
span.icon-display {
    font-size: 2.5rem;
}
h3.card-title {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
}
.card-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 16px;
  text-align: justify;
  font-family: 'Zen Maru Gothic';
  letter-spacing: -0.05rem;
}

/* カード色バリエーション */
/* Yellow (個性を活かす) */
.about-card.yellow {
  background-color: #fffeda;
  border-bottom-color: #FEF08A;
}
.about-card.yellow .card-icon-wrapper {
  color: #CA8A04;
}
li.about-card.yellow .card-title {
    font-size: 24px;
    color: rgb(255, 208, 0);
}
/* Green (楽しく学ぶ) */
.about-card.green {
   background-color: #64f56417;
  border-bottom-color: #acffac;
}
.about-card.green .card-icon-wrapper {
  color: #059669;
}
li.about-card.green .card-title {
    font-size: 24px;
    color: rgb(0, 155, 8);
}
/* Red/Pink (ずっと安心) */
.about-card.red {
  background-color: #f5e9ea;
  border-bottom-color: #f4cfd4;
}
.about-card.red .card-icon-wrapper {
  color: #E11D48;
}
li.about-card.red .card-title {
    font-size: 24px;
    color: rgb(255, 20, 147);
}
/* ====ワークスペース==== */
.workspace-image-container {
  position: relative;
  width: 100%;
  height: 288px;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.workspace-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.7s ease;
}

.workspace-image-container:hover .workspace-image {
  transform: scale(1.05);
}

.workspace-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(124, 45, 18, 0.4),
    transparent,
    transparent
  );
}

.workspace-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.workspace-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 24px;
  border-radius: 1rem;
  max-width: 32rem;
}

.workspace-category {
  color: #ea580c;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.workspace-text {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #594a42;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

/* ==========================================================================
   about. メディアクエリ
   ========================================================================== */

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px){
  #about span.icon-display {
        font-size: 2.0rem;
    }
  ul.about-grid {
    display: flex;
    padding: 0;
    margin: 4rem auto 2rem;
    flex-direction: column;
    align-items: stretch;
    width: 90%;
  }
  li.about-card {
    padding: 2rem 3.3rem;
}
h3.card-title{
  margin: 0;
}
  .card-text {
    font-size: 18px;
  }
  .workspace-image-container {
    margin-top: 70px;
}
}
@media (max-width: 480px) {
    #about{
  margin-top: 70px;
  margin-bottom: 50px;
} 
h2.until-768px{
  display: none;
}
h2.u480px-only{
  display: block;
}

span.label-text {
    font-weight: 700;
    letter-spacing: 0.025em;
    font-size: 15px;
}
.subttl h2 {
    font-size: 23px;
  }
 div.card-icon-wrapper {
  width: 50px;
  margin: 15px auto;
  font-size: 28px;
  }
/* span.icon-display {
    font-size: 2.0rem;
} */
ul.about-grid {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* margin: 2rem 0; */
	gap: 20px;
  box-sizing: border-box;
}
li.about-card {
  width: 100% !important;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  box-sizing: border-box;
  align-items: center;
}
li.about-card.yellow .card-title,
li.about-card.green .card-title,
li.about-card.red .card-title{
  font-size: 20px;
}
p.card-text {
    font-size: 15px;
  }
/* ワークスペース=========================== */
div.workspace-image-container {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: visible;
}
.workspace-content {
    padding: 0 1rem 1rem;
}
.workspace-card {
    max-width: none;
    padding: 0.5rem;
    width: auto;
}
.workspace-category {
    margin-top: 0;
}
p.workspace-text {
    font-size: 15px;
    margin-bottom: 1rem;
}
}


@media (max-width: 425px) {
#about p.sp-only {
    display: block;
    letter-spacing: -0.15rem;
    font-size: 15px;
    margin: 0;
    /* text-align: justify; */
  }
}




/* ==========================================================================
   about メディアクエリmin-width
   ========================================================================== */
@media (min-width: 769px) {
  /* .about {
    padding: 96px 40px;
  } */
  .container {
    gap: 32px;
  }

  .main-ttl {
    font-size: 46px;
  }
  .description {
    font-size: 1.2rem;
    text-align: center;
  }
  .pc-only {
    display: block;
  }
  .subttl h2 {
    font-size: 30px;
  }
  .subttl p {
    font-size: 16px; /* md:text-base */
    margin-top: 12px;
  }
  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reason-card {
    padding: 40px;
  }
  .card-title {
    font-size: 24px;
  }

  .workspace-image-container {
    height: 384px;
    margin-top: 5rem;
  }
  .workspace-content {
    padding: 48px;
  }
  .workspace-text {
    font-size: 24px;
  }
}

/* 大型PCサイズ (1024px以上) */
@media (min-width: 1024px) {
  .reason-grid {
    gap: 40px;
  }
}

/* ==========================================================================
   Workstyleセクション
   ========================================================================== */
#workstyle {
  padding-bottom: 96px;
  position: relative;
}
.label.workstyle {
  background-color: #ffedd5;
  color: #c2410c;
}

/* ==workstyleのカード部分======== */
/* --- カード全体のグリッド（横並び設定） --- */
ul.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 30px; */
    list-style: none;
    padding: 0;    
}
li.work-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden; /* 画像の角を丸めるために必須 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    align-items: center;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- 画像エリア（基準点） --- */
.img-wrapper {
    width: 90%;
    aspect-ratio: 4 / 3;
    position: relative; /* バッジを飛ばさないための基準 */
    overflow: hidden;
    border-radius: 20px;
    border: 0.5rem solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 1rem auto;
    box-sizing: border-box;
}
.img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.work-card:hover .img-wrapper img {
    transform: scale(1.05);
}

/* --- 画像の上に浮くバッジ --- */
.card-badge {
    position: absolute;
    bottom: 0.5rem;
    right: 0.2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px); /* 背景をぼかすとおしゃれ */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
}
span.icon-display.workstyle{
  font-size: 1.0rem;
}
/* --- テキストエリア --- */
.card-body {
    padding: 25px 30px;
    text-align: left;
}

.card-body h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #663c3c;
}

.card-body p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
}


/* 青 */
li.work-card.blue {
  background-color: #eff6ff;
  border-color: #dbeafe;
  transform: rotate(1deg);
}
.work-card.blue h3 {
  color: #1d4ed8;
}
.work-card.blue .card-badge {
  color: #2563eb;
  transform: rotate(1deg);
}
.work-card.blue p {
  color: #5e6d85;
}

/* ピンク */
li.work-card.pink {
  background-color: #fff5f4;
  border-color: #fee2e2;
  transform: rotate(0.5deg);
}
.work-card.pink .img-wrapper {
  transform: rotate(-1.5deg);
}
.work-card.pink h3 {
  color: #be185d;
}
.work-card.pink .card-badge {
  color: #db2777;
  transform: rotate(-1.5deg);
}
.work-card.pink p {
  color: #855e6d;
}
/* 紫 */
li.work-card.purple {
  background-color: #e4d9fc;
  border-color: #ede9fe;
  transform: rotate(-2.5deg);
}
.work-card.purple .img-wrapper {
  transform: rotate(-0.5deg);
}
.work-card.purple h3 {
  color: #6d28d9;
}
.work-card.purple .card-badge {
  color: #7c3aed;
  transform: rotate(-0.5deg);
}
.work-card.purple p {
  color: #6d5e85;
}

/* ホバー時に画像をまっすぐに戻す */
.work-card:hover .img-wrapper {
  transform: rotate(0);
}


/* ==========================================================================
   Workstyle メディアクエリ
   ========================================================================== */
@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    gap: 40px; /* md:gap-10 */
  }
  .card-body h3 {
    font-size: 20px;
    white-space: nowrap;
    gap: 5px;
}
}



@media (max-width: 480px) {
.img-wrapper {
  width: 85%;
  margin: 1.5rem auto 0.5rem;
}
.card-body {
  padding: 15px 20px 25px;
}
.work-card .card-body p {
    font-size: 15px;
    font-weight: 400;
    margin-top: 2px;
}
.card-body h3 {
    font-size: 20px;
    margin: 0;
}
.work-card.blue h3 {
    font-size: 19px;
}

.card-body .icon-display {
  font-size: 19px;
}
/* 傾きを戻す=============================== */
li.work-card,
  .work-card .img-wrapper,
  .work-card .card-badge {
    transform: none !important; /* 個別指定に負けないようにリセット */
  }
.work-card:hover{
    transform: none;
}
#workstyle {
  padding-bottom: 10px;
  position: relative;
}
}
@media (max-width: 425px) {
#workstyle p.sp-only {
        display: block;
        letter-spacing: -0.08em;
    }
  }



@media (min-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
  }
}
/* ==========================================================================
   コンタクトセクション全体
   ========================================================================== */
#contact,#contact_second {
  background-color: #fdf4f4;
  padding: 0;
}
section.full-width-bg{
  width: 100vw;
  margin: 0 auto 10%;
}
.full-width-bg.second{
  margin-bottom: 0;
  padding-bottom: 10%;
}
div.container.contact {
  padding: 80px 24px;
  margin-bottom: 0;
  border-top: 1px solid #ffedd5;
  border-bottom: 1px solid #ffedd5;
}
.contact-icon {
  font-size: 64px !important;
  color: #f6a66e;
  margin-bottom: 0;
  animation: bounce 2s infinite;
}

/* アイコンのアニメーション定義 */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

h2.contact-ttl {
  font-size: 32px;
  font-weight: 700;
  color: #594a42;
  margin-bottom: 0;
  letter-spacing: -0.025em;
}
p.contact-text {
  font-size: 18px;
  color: #857870;
  margin-bottom: 40px;
  line-height: 1.6;
  width: 80%;
}

/* --- ボタンエリア --- */
.contact-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  /* max-width: 448px; */
  justify-content: center;
  align-items: center;
}

/* ボタン共通 */
.btn {
  height: 56px; /* h-14 */
  padding: 0 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
}

/* メインボタン（オレンジ） */
.btn-primary {
  background-color: #fe9145;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
}
.btn-primary:hover {
  background-color: #f97316;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.2);
}

/* サブボタン（白抜き） */
.btn-secondary {
  background-color: #fff;
  border: 2px solid #ffedd5;
  color: #594a42;
}

.btn-secondary:hover {
  border-color: #f97316;
  background-color: #fffaf5;
}
/* ==========================================================================
   Contact メディアクエリ
   ========================================================================== */
@media (min-width: 768px) {
  .contact-container {
    padding: 112px 40px;
  }
  .contact-ttl {
    font-size: 40px;
    margin-top: 0px;
  }
  .contact-btns {
    flex-direction: row;
    max-width: 600px;
  }
  a.btn{
    font-size: 18px;
  }
  p.contact-text {
    margin: 0px auto;
    width: 100%;
}
}

@media (max-width: 480px) {
div.container.contact {
  gap:2px;
  padding: 40px 0px;
}
.contact-icon {
    font-size: 50px !important;
}
h2.contact-ttl {
  font-size: 23px;
}
#contact_second .contact-ttl{
  font-size: 22px;
  letter-spacing: -0.05em;
  font-feature-settings: "palt";
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}
p.contact-text {
  font-weight: 400;
  width: 90%;
  font-size: 15px;
  word-break: normal;
}
.contact-btns {
  flex-direction: column;
  flex-wrap: wrap;
  max-width: none;
}
a.btn{
  width: 70%;
  height: auto;
  padding: 7px 15px;
}
section.full-width-bg{
  margin: 0 auto 3%;
}

}

/* ==========================================================================
   dailyflow
   ========================================================================== */
#daily-flow {
  position: relative;
  /* overflow: hidden; */
}
strong.dailyflow {
  color: rgb(44, 141, 252);
}
/* --- タイムライン構造 --- */
ul.flow-timeline {
  list-style: none;
  padding: 0;
  margin: 64px auto 0;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  position: relative;
}
ul.flow-timeline::before {
  content: "";
  position: absolute;
  left: 50%; /* 真ん中 */
  top: -3px;
  bottom: 20px; /* ulの最初から最後まで */
  width: 2px;
  /* border-left: 2px dashed #fed7aa; カスタムが必要なければ不要*/
  transform: translateX(-50%);
  /* --- カスタム点線の魔法 --- */
  background-image: linear-gradient(
    to bottom,
    #fed7aa 0%,
    /* 点の色 */ #fed7aa 50%,
    /* 点の長さ（50%だと点と隙間が1:1） */ transparent 50%,
    transparent 100%
  );
  background-size: 2px 20px; /* 2pxは線の太さ、20pxが「点＋隙間」の合計の長さ */
  background-repeat: repeat-y;

  z-index: 0;
}

.flow-timeline li {
  display: flex;
  width: 88%;
  gap: 5%;
  margin-bottom: 5%;
  margin-inline: auto;
  align-items: center;
}
/* ======共通======= */
div.flow-time {
  padding: 24px 32px;
  font-size: 36px;
  font-weight: 800;
  color: #fb923c;
  position: relative;
  width: 50%;
  display: flex;
  letter-spacing: 0.1em;
}
div.flow-time.left {
  justify-content: flex-end;
}
div.flow-time.right {
  text-align: left;
  justify-content: flex-start;
}
div.flow-content {
  width: 50%;
  padding: 32px;
  border-radius: 2rem;
  border: 1px solid transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
}
.flow-content:hover {
  transform: translateY(-5px);
}
.flow-content .icon-display {
  font-size: 32px !important;
  margin-bottom: 8px;
}
.flow-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.flow-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #8d6e63;
  font-family:
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック  Medium",
    "Yu Gothic Medium", "YuGothic", "Meiryo", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 500;
  word-break: normal;
}

/* ====アイコンを丸で囲む==== */
.icon-circle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.icon-circle .icon-display {
  font-size: 28px !important;
  line-height: 1;
  margin: 0 !important;
}
/* ====各コンテンツの配色==== */
.flow-content.yellow h3,
.flow-content.blue h3,
.flow-content.red h3,
.flow-content.orange h3,
.flow-content.purple h3 {
  color: #854d0e;
}
/* Yellow (出勤) */
.flow-content.yellow {
  background-color: #fffeda; /* #fefcbf */
  border-color: #fef3c7;
}
.flow-content.yellow .icon-display {
  color: #d97706;
}
/* Blue (ランチタイム) */
.flow-content.blue {
  background-color: #e9f1fe;
  border-color: #dbeafe;
}
.flow-content.blue .icon-display {
  color: #4a99de;
}
/* Red (午後の作業) */
.flow-content.red {
  background-color: #fbe8e8;
  border-color: #fee2e2;
}
.flow-content.red .icon-display {
  color: #f472b6;
}
/* Purple (清掃) */
.flow-content.purple {
  background-color: #ede1fb;
  border-color: #f3e8ff;
}
.flow-content.purple .icon-display {
  color: #6b21a8;
}
/* Orange (退勤) */
.flow-content.orange {
  background-color: #fff5d1;
  border-color: #ffedd5;
}
.flow-content.orange .icon-display {
  color: #fb923c;
}


/* ==========================================================================
   dailyflow メディアクエリ
   ========================================================================== */

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  ul.flow-timeline::before {
    left: 50%; /* 線を中央へ */
    transform: translateX(-50%);
  }
  .flow-timeline li {
    gap: 8%;
    width: 90%;
  }
  div.flow-content {
    padding: 20px;
  }
  .flow-content p {
    font-size: 15px;
  }
  .flow-item {
    flex-direction: row;
    padding-left: 0;
    align-items: center;
  }
  .flow-item.is-left {
    text-align: right;
  }
  .flow-item.is-left .flow-time {
    width: 50%;
    padding-right: 60px;
    margin-bottom: 0;
  }
  .flow-item.is-left .flow-content {
    width: 50%;
    margin-left: 60px;
  }
  .flow-item.is-right {
    flex-direction: row-reverse;
    text-align: left;
  }
  .flow-item.is-right .flow-time {
    width: 50%;
    padding-left: 60px;
    margin-bottom: 0;
  }
  .flow-item.is-right .flow-content {
    width: 50%;
    margin-right: 60px;
  }
  .flow-dot {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
  }
}


@media (max-width: 480px) {
ul.flow-timeline {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  gap: 0rem;
	margin-bottom: 50px;
 margin-top: 30px;
}
ul.flow-timeline::before {
  top: 67px;
  bottom: 34px;
}
.flow-timeline li {
  width: 100%;
  flex-direction: column;
  margin-bottom: 0rem;
  margin-inline: 0;
  gap: 0;
}
div.flow-time {
    padding: 2rem 2px;
    width: 100%;
    order: -1;
    font-size: 36px;
    padding: 0;
}
div.flow-time.left{
  justify-content: flex-start;
  margin-left: 25%;
}
div.flow-time.right{
  justify-content: flex-end;
  margin-right: 25%;
}
div.flow-content {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    z-index: 100;
  }
.flow-content p {
    font-size: 15px;
}
.flow-content.yellow .icon-circle,
.flow-content.red .icon-circle,
.flow-content.blue .icon-circle,
.flow-content.purple .icon-circle,
.flow-content.orange .icon-circle {
  margin: 1rem auto;
}
.flow-content h3{
  margin-top: 0;
  text-align: center;
}
.flow-content.red h3,
.flow-content.yellow h3,
.flow-content.orange h3 {
  padding-left: 5px;
}


}


/* ==========================================================================
   サポートFAQセクション
   ========================================================================== */
#support{
  position: relative;
}
#support .bg-blur-circle.orange{
  left: 4rem;
}
ul.support-grid {
    max-width: 1000px;
    list-style: none; /* デフォルトの点を消す */
    padding: auto 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2%;
    justify-items: center;
    margin: 64px auto 0;
    justify-content: center;
}
li.support-card {
    display: flex;
    align-items: baseline;
    gap: 4%;
    padding: 2rem 1rem;
    border-radius: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    padding-right: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
div.icon-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.card-body.sup{
  flex: 1;  /* 残りの幅をすべて使う */
  padding: 0;
}
.card-body.sup h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
span.q-label {
    font-size: 1.2em;
    font-weight: 800;
    /* margin-right: 8px; */
    flex-shrink: 0;
}
span.q-text{
  line-height: 1.2;
  text-align: justify;
}
.card-body.sup p {
    margin: 0;
    line-height: 1.7;
    color: #4A342E;
    letter-spacing: -0.04em;
    text-align: justify;
}
li.support-card:hover {
    transform: translateY(-5px);
}
li.support-card .card-body {
    flex-grow: 1;
}


/* ==========================================================================
   FAQカード
   ========================================================================== */
   /* 紫 */
.support-card.purple {
    background-color: rgba(177, 150, 243, 0.1);
}
.support-card.purple .icon-circle {
    background-color: #ffffff;
    color: #B196F3;
    border: 5px solid #B196F34f;
}
.support-card.purple .q-label{
    color: #B196F3;
    font-weight: 800;
}
/* 珊瑚 */
.support-card.coral {
    background-color: rgba(255, 127, 80, 0.1);
}
.support-card.coral .icon-circle {
    background-color: #ffffff;
    color: #FF7F50;            /* コーラル（珊瑚色） */
    border: 5px solid #FF7F504f;
}
.support-card.coral .q-label {
    color: #FF7F50;
    font-weight: 800;
}
/* クリーム色 */
.support-card.cream {
    background-color: rgb(255 245 0 / 16%);
}
.support-card.cream .icon-circle {
    background-color: #ffffff;
    color: #D4A017;            /* 少し視認性を上げたゴールド系イエロー */
    border: 5px solid #d49e174f;
}
.support-card.cream .q-label {
    color: #D4A017;
    font-weight: 800;
}
/* 緑(浅葱色) */
.support-card.green {
    background-color: rgba(0, 163, 175, 0.1);
}
.support-card.green .icon-circle {
    background-color: #ffffff;
    color: #00A3AF;
    border: 5px solid #00a3af5e;
}
.support-card.green .q-label {
    color: #00A3AF;
    font-weight: 800;
}
/* 緑(もう少し濃い) */
.support-card.leaf{
    background-color: #F0F9EB;
}
.support-card.leaf .icon-circle {
    background-color: #ffffff;
    color: #A3D18A;
    border: 5px solid #76A4575e;
}
.support-card.leaf .q-label {
    color: #A3D18A;
    font-weight: 800;
}
/* ピーチ */
.support-card.peach{
    background-color: #FFF5F7;
}
.support-card.peach .icon-circle {
    background-color: #ffffff;
    color: #D87B8C;
    border: 5px solid #FBCFE8;
}
.support-card.peach .q-label {
    color: #D87B8C;
    font-weight: 800;
}

/* ホバー時アニメーション */
.support-card.purple:hover{
    background-color: rgba(121, 74, 238, 0.13);
    box-shadow: 0 10px 30px rgba(177, 150, 243, 0.1);
}
.support-card.coral:hover {
    background-color: rgba(255, 127, 80, 0.15);
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.1);
}
.support-card.cream:hover {
    background-color: rgba(240, 210, 122, 0.2);
    box-shadow: 0 10px 30px rgba(245, 224, 163, 0.1);
}
.support-card.green:hover {
    background-color: rgba(0, 163, 175, 0.15);
    box-shadow: 0 10px 30px rgba(0, 163, 175, 0.1);
}
.support-card.leaf:hover {
    background-color: #E1F2D8;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
}
.support-card.peach:hover {
    background-color: #FFE4EB;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.1);
}


/* ==========================================================================
   support メディアクエリ
   ========================================================================== */
@media (max-width: 1024px) {
  ul.support-grid {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 20px;
    margin: 0 auto;
  }

  li.support-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 2rem;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
ul.support-grid {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: none;
    gap: 2rem;
}
li.support-card {
    display: flex;
    align-items: flex-start;
    margin: 0% auto;
    gap: 5%;
}
.card-body.sup h3 {
    margin: 0px auto 2rem;

}
.card-body p {
    font-size: 15px;
    font-weight: 400;
}
}

@media (max-width: 480px) {
#support .main-ttl {
  display: inline-block;
}
  ul.support-grid {
    /* margin: 20px auto 50px; */
    width: 100%;
    padding: 0;
}
  li.support-card {
    flex-direction: column;
    width: 100%;/* 100%にしても、box-sizingが効いていればはみ出しません */
    box-sizing: border-box;
    align-items: center;
}
  .card-body.sup h3 {
    margin-bottom: 1rem;
    line-height: 22px;
}
  .card-body.sup p {
    letter-spacing: -0.1em;
    font-size: 15px;
}




}













/* ==========================================================================
   Interview セクション
   ========================================================================== */
section#interview.wrapper{
  margin-bottom: 2rem;
  padding-bottom: 0%;
}
   /* --- 利用者の声 グリッドレイアウト --- */
.int-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 60px;
}
/* --- カード共通スタイル --- */
li.int {
    position: relative;
    padding: 50px 30px 40px;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden; /* 装飾のはみ出しを制御 */
    color: #4A342E;
}
.int:hover {
    transform: translateY(-5px);
}

/* 左上のアイコン（引用符代わりの装飾） */
.int > .material-symbols-outlined {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3.5rem;
    opacity: 0.15;
    z-index: 1;
}

/* 引用メッセージ（大きな見出し） */
div.int-content {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
}

.int-content p {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5;
    text-align: left;
}

/* 顔アイコン✙年齢と利用歴 */
div.profile-area {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px dashed rgba(0,0,0,0.1);
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    justify-content: space-evenly;
}
.profile-image-wrapper {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    border-radius: 50%;
    text-align: center;
}
img.profile-image {
    width: 5rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 5px;
    aspect-ratio: 1 / 1;
}

p.user-info {
    text-align: left;
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.user-info strong {
    color: #333;
}

/* 本文テキスト */
.message {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}

/* --- カラーバリエーション --- */
/* Green */
.int.green { border: 0.5rem solid #cbffc194; } /* 非常に薄い緑 */
.int.green > .material-symbols-outlined,
.int.green .highlight { color: #3aff3a; }


/* Yellow */
.int.yellow { border: 0.5rem solid #fffeda; } /* 非常に薄い黄色 */
.int.yellow > .material-symbols-outlined,
.int.yellow .highlight { color: #ffc429; }


/* Blue  */
.int.blue { border: 0.5rem solid #e6f6f7; } /* 非常に薄い青 */
.int.blue > .material-symbols-outlined,
.int.blue .highlight { color: #35b7fe; }



/* ===コンタクトボタン===================== */
.contact-btn {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    margin-bottom: 2rem;
}
.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #FF7F50;
    color: #fff;
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 9999px; /* 完全な丸み */
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.3);
    transition: all 0.3s ease;
}

/* ホバーした時の動き */
.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 127, 80, 0.4);
    background-color: #ff8e66;
}

/* アイコンの動き */
.cta-button .material-symbols-outlined {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .material-symbols-outlined {
    transform: translateX(5px); /* 右にひょこっと動く */
}
/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 768px){
  ul.int-grid {
    width: 75%;
    max-width: none;
  }
  p.user-info, .message {
    font-size: 1.2rem;
}
}

/* スマホ用調整 */
@media (max-width: 480px) {
  div.int-content {
    margin-bottom: 0;
  }
    .cta-button {
        width: 80%;
        justify-content: center;
        /* padding: 1rem; */
        font-size: 1.1rem;
        height: auto;
        padding: 7px 15px;
        gap: 2px;
    }
    ul.int-grid {
        width: 100%;
        max-width: none;
        /* margin: 0.5rem; */
        /* margin: 20px auto 0; */
    }
    li.int{
      padding-right: 1rem;
      padding-left: 1rem;
    }
    div.profile-area {
        flex-direction: column;
        text-align: center;
        width: 100%;
        margin-bottom: 3%;
      }
    p.user-info {
        width: 100%;
        text-align: center;
        font-size: 15px;
    }
    p.message{
      text-align: justify;
      font-size: 15px;
      margin: 0 auto;
    }
	.contact-btn {
    margin-top: 2rem;
}

}













/* ==========================================================================
   Human Resources セクション
   ========================================================================== */
/* --- Human Resources Section --- */
#human-resources {
    padding: 50px 24px;
}
/* --- Candidate Section --- */
.candidate-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.candidate-item {
    transition: transform 0.3s ease;
}

/* 円本体のデザイン */
.candidate-circle {
    width: 12rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 6px solid #fff; /* 白いフチをつけて窓枠デザインと統一 */
    position: relative;
    aspect-ratio: 1 / 1;
    white-space: nowrap;
}

/* アイコンの設定 */
.candidate-circle .material-symbols-outlined {
    font-size: 40px;
    margin-bottom: 10px;
}

/* テキストの設定 */
.candidate-circle p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #444;
}

/* 各カラーバリエーション */
.item-orange .candidate-circle {
   border-color: #FFEDD5;
   color: #F59E0B;
  }
.item-green .candidate-circle {
  border-color: #DCFCE7;
  color: #10B981;
}
.item-cocoa .candidate-circle {
  border-color: #fffeda;
  color: #D4A017;
}

/* ホバー時に少し浮くアニメーション */
.candidate-item:hover {
    transform: translateY(-10px);
}
.candidate-item:hover .candidate-circle {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


/* ==========================================================================
  human resouces メディアクエリ
   ========================================================================== */
@media (max-width: 480px) {
   #human-resources {
    padding-bottom: 1px;
    margin-bottom: 0px;
}
}





/* ==========================================================================
   interview メディアクエリ 
   ========================================================================== */

@media (max-width: 1024px) {
    .int-grid {
        grid-template-columns: 1fr;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        gap: 5rem;
    }
}
@media (max-width: 480px) {
    .int-grid {
        gap: 1rem;
    }
    ul.candidate-grid{
      margin: 20px auto 0;
		gap:10px;
    }
}


/* ==========================================================================
   stepsセクション
   ========================================================================== */
#steps{
  position: relative;
  /* overflow: hidden; */
}
/* ===飾りの★と❤======================= */
div.deco{
  position: absolute;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}
.deco .material-symbols-outlined {
    display: block;
    font-size: 3rem;
}
.deco.star .material-symbols-outlined{
  font-size: 4rem;
}
.deco.star{
  top: 2rem;
  left: 11rem;
  color: #FFD700;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(0.95);
    }
}
.deco.heart{
  top: 3rem;
  right: 9rem;
  color: #FF8E9E;
  animation: bounce 2s infinite ease-in-out;
  animation-delay: 0.7s; /* delay-700 */
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

span.step-blue{
  color: #25c7eb;
    font-size: 5rem;
    font-weight: bold;
}
ul.steps-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px; /* 数字バッジがはみ出る分、多めに確保 */
    list-style: none;
    padding: 0;
}
li.steps-cards {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid #E2E8F0; /* デフォルトの底板 */
}
li.steps-cards:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.step-number {
    position: absolute;
    top: -1rem;
    left: -1.3rem;
    width: 4.5rem;
    line-height: 1;
    background: #fff;
    border-radius: 50%;
    border-color: 3px solid #E0F2FE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: rotate(-6deg);
    z-index: 10;
    aspect-ratio: 1 / 1;
}
/* アイコン：手書き風の円をborderで表現 */
.step-icon {
    width: 6rem;
    height: auto;
    margin: 0 auto 1.5rem;
    background: #fff;
    border-radius: 60% 47% 55% 45% / 45% 55% 40% 60%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(3, 105, 161, 0.05);
    aspect-ratio: 1 / 1;
}
.step-icon:hover {
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
}
.step-icon .material-symbols-outlined {
    font-size: 3rem;
}
h3.step-ttl{
  font-weight: 600;
  font-size: 1.5rem;
}
.underline {
    height: 4px;
    width: 3rem;
    margin: 1.5rem auto;
    border-radius: 9999px;
}
p.step-text{
  font-size: 1.2rem;
  flex: 1;
  margin: 0;
  text-align: center;
  line-height: 1.8em;
  word-break: normal;
}
.step-text span {
    display: block;
    font-weight: 800;
    margin-top: 1rem;
}
/* ====ナンバーの色===== */
.step-number.skyblue{
  color: #98dafd;
  box-shadow: 0 4px 15px rgb(1 129 197 / 72%);
}
.step-number.rosepink{
  color: #FECDD3;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.25);
}
.step-number.custard{
  color: #FEF08A;
  box-shadow: 0 4px 15px rgb(225 231 0 / 72%);
}
/* ====カードの色======= */
li.steps-cards.skyblue {
    border-bottom-color: #98dafd;
    background-color: #e7f3f8;
}
li.steps-cards.rosepink {
    border-bottom-color: #FECDD3;
    background-color: #fff0f2;
}
li.steps-cards.custard {
    border-bottom-color: #FEF08A;
    background-color: #fffeda;
}
/* ====アイコンの色===== */
.step-icon.skyblue {
    color: #6dafd3;
    border: 4px solid #6dafd3;
    box-shadow: inset 0 0 10px rgba(225, 29, 72, 0.05);
}
.step-icon.rosepink {
    color: #f893a9;
    border: 4px solid #f893a9;
    box-shadow: inset 0 0 10px rgba(225, 29, 72, 0.05);
}
.step-icon.custard{
    color: #f0ba4a;            /* 濃いめのカスタード/ゴールド */
    border: 4px solid #f0ba4a;
    box-shadow: inset 0 0 10px rgba(202, 138, 4, 0.05);
}
/* ====下線部の色===== */
.underline.skyblue {
    background-color: rgba(3, 105, 161, 0.3);
}
.underline.rosepink {
    background-color: rgba(225, 29, 72, 0.3);
}
.underline.custard {
    background-color: rgba(202, 138, 4, 0.3);
}
/* ====spanの色======= */
li.steps-cards.skyblue .step-text span {
    color: #0369A1;
}
li.steps-cards.rosepink .step-text span {
    color: #E11D48;
}
li.steps-cards.custard .step-text span {
    color: #d09c16;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 1024px) {
  ul.steps-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    gap: 8rem;
    margin: 80px auto 0;
  }
  li.steps-cards {
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
  h3.step-ttl {
    margin-bottom: 0;
}
  p.step-text {
  flex: none;
  padding-bottom: 2rem;
}
}


   @media (max-width: 768px){
ul.steps-cards {
        display: flex;
        flex-direction: column;
        width: 75%;
        margin: 0% auto;
        flex-wrap: nowrap;
        align-items: center;
        gap: 2rem;
    }
li.steps-cards{
  width: 70%;
}
h3.step-ttl{
  margin-bottom: 0px;
  font-size: 20px;
}
p.step-text {
    width: 100%;
    font-size: 15px;
}
.step-text span {
    text-align: center;
}
}

@media (max-width: 480px){
strong.step-blue {
    font-size: 60px;
}
  ul.steps-cards {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    /* margin: 64px auto 30px; */
  }
li.steps-cards {
    width: 100%;       /* カードを 70% から 100% へ！ */
    margin-left: auto;  /* 左右オートで強制的に中央へ */
    margin-right: auto;
    max-width: none;    /* 制限を解除 */
    box-sizing: border-box;
}
.deco.star {
    top: 0rem;
    left: 0rem;
}
.deco.heart {
    top: 0rem;
    right: 1rem;
}
.step-icon {
    width: 4rem;
}
.step-icon .material-symbols-outlined {
    font-size: 28px;
}
.step-icon.skyblue .material-symbols-outlined {
    font-size: 30px;
}
}
@media (max-width: 425px){
    #steps .description-wrapper p {
      padding: 0;
      letter-spacing: -0.09em;
  }
    h3.step-ttl {
      font-size: 20px;
      margin: 0 auto;
  }
    p.step-text {
      font-size: 15px;
  }

}
/* ==========================================================================
   Footer Section
       & back-to-top button
   ========================================================================== */
footer {
    background-color: #ff7f001a;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
    color: #555;
    width: 100vw;
}
div.footer-content-wrapper {
    display: flex;
    justify-content: space-evenly;
    width: 60%;
    flex-wrap: nowrap;
    margin: 0 auto 2.4rem;
    padding: 0 2rem;
}
.footer-col.footer-logo-address{
  margin-right: 3rem;
}
a.logo.footer{
  margin-bottom: 1rem;
}
address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #777;
}
 ul.footer-col {
    flex: 0 1 auto;
    min-width: 200px;
    text-align: left;
    margin-top: 0;
    border-left: 1px solid #fd723a;
}
.footer-col li {
  margin: 0 0 12px 12px;
}
.footer-col a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}
.footer-col a:hover {
    color: orange;
}
.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}
/* ボタンの基本スタイル============================= */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 3.3rem;
  /* height: 65px; */
  background-color: #ff8d3ead; /* テーマのオレンジ */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  aspect-ratio: 1 / 1;
}
div.circle-button{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  gap: 6px;
}
.double-arrows {
  position: relative;
  /* width: 14px;
  height: 10px; */
}
.double-arrows::before,
.double-arrows::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  border-top-left-radius: 5px;
  transform: translateX(-50%) rotate(45deg);
}
.double-arrows::before { top: -5px; }
.double-arrows::after  { top: 4px; }
.back-to-top p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1px;
}
/* スクロールした時に付与するクラス（JSで制御） */
.back-to-top.is-show {
  opacity: 1;
  visibility: visible;
}
/* .back-to-top:hover {
  background-color: #ff8d3ede;
  transform: translateY(-5px);
  transform: scale(2.0);
} */




/* ==========================================================================
   Footer Section レスポンシブ対応
   ========================================================================== */
@media (min-width: 1024px) {
    .footer-content{
      display: flex;
    }
  .back-to-top {
    position: fixed;
    right: 3%;
    bottom: 4%;
    overflow: visible; /* 吹き出しがはみ出るようにvisibleに変更 */
    z-index: 999;
  }
}


@media (max-width: 1024px){
  div.footer-content-wrapper {
        flex-direction: column;
        text-align: center;
        width: 64%;
    }
  ul.footer-col {
      min-width: 0;
        width: 100%;
        text-align: center;
      border-left: 1px solid #fd723a;
      padding-bottom: 15px;
        margin-left: 0 !important;
    }
    .footer-col li {
        margin: 0 0 10px 1rem;
    }
    .footer-col.footer-logo-address {
    margin-right: 0;
    text-align: left;
    margin-bottom: 2rem;
  }
  .footer-col {
        flex: 1;
  }
    .footer-content .footer-col {
        /* flex: 1; */
        min-width: 0;
        margin: 0;
        text-align: left;
        font-size: 1.0rem;
    }
    div.footer-content {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding: 0;
        gap: 2%;
    }
    ul.footer-col.center{
      margin-right: 1rem;
    }
   }

/* @media (max-width: 768px) {
}*/



@media (max-width: 480px) {
  div.footer-content-wrapper{
    padding: 0rem;
    margin: 0 1.5rem;
    width: auto;
    /* display: block; */
  }
  div.footer-col.footer-logo-address{
    margin-left: 0rem;
  }
  a.logo.footer {
    margin-bottom: 0rem;
}
  .logo img {
    width: 240px;
}
  div.footer-content.sp-only {
    flex-wrap: wrap;
    font-size: 15px;
    flex: none;
    width: 100%;
    height: auto;
  }

  ul.footer-col{
    display: block;
    width: 48%;
    border-bottom: none;
    padding-bottom: 0;
    border-left: none;
  }
  .footer-col li {
    margin: 0
  }
  ul.footer-col.left {
    order: 1; /* 1番目 */
  }
  ul.footer-col.right {
    order: 2; /* 2番目（これで右上にくる） */
  }
  ul.footer-col.center {
    order: 3;
    margin-right: 0;
  }
.back-to-top {
    bottom: 11%;
}
}
