@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@300;400;700&display=swap);

/* ============================================
   1. 変数定義
   ============================================ */
:root {
    --whitecolor: #ffffff;
    --blackcolor: #000000;
    --color_orange1: #dc4a20;
    --color_orange2: #ee8a3d;
    --color_orange3: #fe612c;
    --color_red1: #fe4c4c;
    --color_blue1: #6cb4d6;
    --color_blue2: #004DA0;
    --color_blue3: #9de5ee;
    --color_yellow3: #fed71a;
    --color_cream_box: #fff8e7;
    --contents-width: 620px;
}

/* ============================================
   2. 基本設計 (1rem = 10px基準)
   ============================================ */
html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: #F4F4F4;
}
@media screen and (min-width: 921px) { html { font-size: 10px; } }
@media screen and (max-width: 920px) { html { font-size: 1.68vw; } }
@media screen and (max-width: 620px) { html { /*font-size: 2.7vw;*/ font-size: 1.75vw; } }

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    width: var(--contents-width);
    margin: 0 auto;
    max-width: 100%;
    background-color: var(--whitecolor);
}

/* ============================================
   3. 共通テキスト装飾 (ユーティリティ)
   ============================================ */
b, strong { font-weight: bold; }

/* カラークラス */
.red    { color: var(--color_red1); }
.blue   { color: var(--color_blue2); }
.orange { color: var(--color_orange1); }

/* マーカー共通化 */
mark, .mark-y {
    background: linear-gradient(transparent 70%, var(--color_yellow3) 30%);
    font-weight: bold;
    color: inherit;
    padding: 0 0.5rem;
}
.mark-b {
    background: linear-gradient(transparent 50%, var(--color_blue3) 50%);
    font-weight: bold;
}

.visual-arrow{
  width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

/* 基本レイアウト */
main { padding: 4rem; }
section { margin: 5rem 0; }
section p { font-size: 1.65rem; line-height: 1.85; margin-bottom: 2rem; }
img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

/* ============================================
   4. story-block セクション (修正)
   ============================================ */
#story-block { text-align: center; }

.reading-time { margin-bottom: 3rem; }
.reading-time p { font-size: 2.8rem; }

.blue-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 1.5rem 0;
}
.blue-dots span {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color_blue1);
    border-radius: 50%;
}

/* プロフィール */
.circle-img { width: 18rem; height: 18rem; margin: 0 auto; border-radius: 50%; overflow: hidden; }
.profile-name { font-size: 1.8rem; color: #666; margin-top: 1rem; text-align: center; }

/* ステータスボックス */
.status-box {
    background-color: var(--color_cream_box);
    border-radius: 1rem;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: left;
}
.status-info { font-size: 2.4rem; line-height: 1.6; margin-bottom: 2rem !important; }

/* 警告ボックス */
.warning-container { border: 0.2rem solid var(--blackcolor); margin: 4rem 0; margin-top: 8rem; }
.warning-header {
    background-color: var(--blackcolor);
    color: var(--whitecolor);
    padding: 1.2rem;
    font-weight: bold;
    font-size: 2.6rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.warning-body{
  padding: 2rem;
}
.warning-lead { color: var(--color_red1); font-weight: bold; font-size: 2.2rem; margin-bottom: 2rem; text-align: center; }

.check-list { list-style: none; padding: 0; width: fit-content; }
.check-list li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.5;
    text-align: left;
}
.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0; top: 0.5rem;
    width: 2.4rem; height: 2.4rem;
    background-color: var(--color_blue2);
    color: var(--whitecolor);
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* 【重要】chat-block 修正：画像通りの配置に */
.chat-block {
    display: flex;
    align-items: flex-end;
    justify-content: center; /* 右寄せから中央寄せへ変更 */
    gap: 1.5rem;
    margin-top: 4rem;
    width: 100%;
}
.status-box .status-desc{
  font-size: 2.4rem;
  margin-bottom: 0;
  text-align: justify;
}
.bubble {
    background-color: var(--color_cream_box);
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    text-align: left;
    flex: 1; /* 幅を自動で広げる */
    max-width: 40rem;
}
.bubble::after {
    content: "";
    position: absolute;
    bottom: 2rem;
    right: -1.4rem; /* 尻尾を右側に出す */
    border-style: solid;
    border-width: 1rem 0 1rem 1.5rem;
    border-color: transparent transparent transparent var(--color_cream_box);
}
.bubble p { font-size: 2.2rem; line-height: 1.6; margin-bottom: 0 !important; }

.circle-img-sm {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0; /* 画像が潰れないように */
}

/* ============================================
   7. problem-block & solution-lead
   ============================================ */

#problem-block {
    text-align: center;
}

/* セクション全体のバナー */
#problem-block .header-banner {
  margin: auto;
  margin-bottom: 2rem;
}

/* 「①〜」の見出しテキスト */
.problem-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--color_orange1); /* 既存のオレンジ/赤色 */
    margin-bottom: 2.5rem;
    text-align: left; /* 左寄せに変更 */
    
    -webkit-text-stroke: 2px #fcd1d4;
    text-stroke: 2px #fcd1d4;
    paint-order: stroke;
        
    letter-spacing: 0.05em;
        border-bottom: 0.1rem solid #bababa;
    padding-left: 0.5rem;
}

/* 図解画像エリア */
.problem-visual {
    margin-bottom: 8.0rem;
}
.problem-visual img {
    border-radius: 1.0rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.05);
}

/* 解決への導入：左吹き出しレイアウト */
.solution-intro {
    margin-top: 6.0rem;
    margin-bottom: 2.0rem;
}

.chat-block-left {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.bubble-left {
    background-color: var(--color_cream_box);
    border-radius: 2.0rem;
    padding: 2.0rem 2.5rem;
    position: relative;
    text-align: left;
    flex: 1;
    max-width: 38rem;
}

/* 吹き出しの尻尾を左側（アイコン側）へ */
.bubble-left::after {
    content: "";
    position: absolute;
    bottom: 2.0rem;
    left: -1.4rem;
    border-style: solid;
    border-width: 1.0rem 1.5rem 1.0rem 0;
    border-color: transparent var(--color_cream_box) transparent transparent;
}

.bubble-left p {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

/* ============================================
   9. feature-block スタイル
   ============================================ */

#feature-block {
    text-align: center;
    padding-top: 2.0rem;
}

/* 見出し：Flexboxで番号とテキストを分離 */
.feature-title {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

/* 番号部分：グラデーションと斜体 */
.feature-num {
    font-style: italic;
    font-size: 6.8rem;
    line-height: 1; /* 行間の干渉を防ぐ */
        margin-right: 1rem;
    padding-right: 0.5rem;
    background: linear-gradient(to right, #00c2ff, var(--color_blue2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    flex-shrink: 0;
    font-weight: bold;
}

/* テキスト部分：2行になっても左端が揃うように */
.feature-text {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    display: block;
}

/* 下線のグラデーション (左から右へフェードアウト) */
.feature-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1rem;
    background: linear-gradient(to right, #00c2ff, var(--color_blue2));
}

/* 各項目の間隔 */
.feature-item {
    margin-bottom: 3rem;
    text-align: center;
}

.feature-visual {
    width: 32.0rem; /* イラストサイズ */
    margin: 0 auto 3.0rem auto;
}

.feature-desc {
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

/* ============================================
   10. mid-cta-block スタイル
   ============================================ */

.mid-cta-block {
    text-align: center;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ＼ 簡単30秒登録 ／ */
.cta-sub-text {
    font-size: 2.6rem;
    margin-bottom: -1.5rem;
    letter-spacing: 0.05em;
}

/* まずは相談だけでもOK */
.cta-main-lead {
    margin-bottom: 1rem;
}
.cta-main-lead mark {
    font-size: 3.2rem;
    padding: 0.2rem 1.5rem;
}

/* ボタンのサイズ調整 */
.cta-button-wrap {
    width: 100%;
    margin: 0 auto;
}

.cta-button-wrap .shiny-btn-img {
    filter: drop-shadow(0 0.5rem 1.5rem rgba(0,0,0,0.15));
}



/* ============================================
   11. case-block スタイル
   ============================================ */

#case-block {
    text-align: center;
}

/* セクション大見出し */
.case-section-title {
    background: linear-gradient(90deg, #fe3531, var(--color_orange2));
    color: var(--whitecolor);
    font-size: 3.2rem;
    font-weight: bold;
    padding: 1.5rem;
    margin-bottom: 5.0rem;
}

/* こんな方におすすめ ボックス */
.recommend-box {
    border: 0.2rem solid var(--color_orange1);
    border-radius: 1.0rem;
    padding: 3.0rem 2.0rem;
    padding-top: 5rem;
    position: relative;
    margin-bottom: 8.0rem;
    background-color: var(--whitecolor);

    border: 0.3rem solid transparent;
    background-image: linear-gradient(var(--whitecolor), var(--whitecolor)), 
                      linear-gradient(90deg, #fe3531, var(--color_orange2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.recommend-head {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color_orange1);
    color: var(--whitecolor);
    font-size: 2.2rem;
    font-weight: bold;
    padding: 0.8rem 3.0rem;
    white-space: nowrap;
}

.recommend-list {
    text-align: left;
    display: inline-block;
}

.recommend-list li {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    padding-left: 3.5rem;
    position: relative;
    list-style: none;
}

.recommend-list li:last-of-type{
  margin-bottom: 0;
}

/* チェックボックス装飾 */
.recommend-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 2.4rem;
    height: 2.4rem;
    background-color: var(--color_blue2);
    color: var(--whitecolor);
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Point 01, 02, 03 各アイテム */
.point-item {
    margin-bottom: 8.0rem;
    position: relative;
}

/* Pointラベルの点線装飾 */
.point-item::before {
    content: "";
    position: absolute;
    top: 2.6rem;
    left: 0;
    width: 100%;
    border-top: 0.4rem dotted var(--color_orange1);
    z-index: 0;
}

.point-label {
    position: relative;
    display: inline-block;
    background-color: var(--color_orange1);
    color: var(--whitecolor);
    font-size: 2.8rem;
    font-weight: bold;
    padding: 0rem 2.5rem;
    margin-bottom: 2.5rem;
    z-index: 1;
}

.point-title {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 3.0rem;
}

.point-visual {
    width: 100%;
    margin-bottom: 3.0rem;
}

.point-desc {
    font-size: 2.4rem;
    line-height: 1.7;
    text-align: justify;
}

/* 最後の吹き出しまとめ */
.final-summary {
    display: flex;
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;    /* 中央寄せ */
    margin-top: 6.0rem;
    margin-bottom: 4.0rem;
    width: 100%;
}

.final-summary .circle-img-sm {
    margin-bottom: 2.0rem; /* アイコンと吹き出しの間の余白 */
}

.bubble-bottom {
    background-color: var(--color_cream_box);
    border-radius: 2.0rem;
    padding: 2.5rem 3.0rem;
    position: relative;
    text-align: left;
    width: 100%;
}

/* 吹き出しの尻尾を「上」に出す */
.bubble-bottom::after {
    content: "";
    position: absolute;
    top: -2rem;
    left: 17rem;
    border-style: solid;
    border-width: 0 0 3rem 3rem;
    border-color: transparent transparent var(--color_cream_box) transparent;
}

.final-summary .circle-img-sm{
  width: 15rem;
    height: 15rem;
}

.bubble-bottom p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

/* ============================================
   12. voice-block (利用者の声)
   ============================================ */

#voice-block {
    text-align: center;
    padding: 2.0rem 0;
}

/* オレンジのバナーヘッダー */
.voice-section-title {
    background: linear-gradient(90deg, #fe3531, var(--color_orange2));
    color: var(--whitecolor);
    font-size: 2.8rem;
    font-weight: bold;
    padding: 1.2rem 2.0rem 1.2rem 6rem;
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
    justify-content: center;
}

/* スマホアイコンの配置調整 */
.voice-title-icon {
    position: absolute;
    left: 1.0rem;
    bottom: 0;
    width: 7.5rem;
    height: auto;
    z-index: 2;
}

.voice-icon {
    font-size: 3.2rem;
}

/* 利用者カード（青い枠線） */
.voice-item {
    border: 0.5rem solid #72b9d5;
    background-color: #f9fefe;
    border-radius: 2.5rem;
    padding: 4rem 3rem;
    margin-top: 20rem;
}

.laptop-frame {
    width: 100%;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -19rem;
    margin-bottom: 3rem;
}

.voice-content {
    text-align: center;
}

/* キャッチコピーとハイライト */
.voice-catch {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 3.0rem;
}

.voice-catch mark {
    background: linear-gradient(transparent 60%, var(--color_yellow3) 60%);
    padding: 0 0.5rem;
}

/* 説明文：赤オレンジ色の強調 */
.voice-desc {
    font-size: 2.4rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

/* デザイン画像の「赤茶色っぽい強調」は既存の .orange 変数(db4a22)で対応 */
.voice-desc b.orange {
    color: var(--color_orange1);
    font-weight: bold;
}

/* ============================================
   13. salary-up-block (年収UP実績：22.jpg)
   ============================================ */
.salary-section-title {
    font-size: 3.2rem;
    font-weight: bold;
    margin: 6rem 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.0rem;
}

/* 矢印アイコンのサイズ調整 */
.salary-title-icon {
    width: 4.5rem;
    height: auto;
    margin: 0;
}

.salary-main-visual {
    margin-bottom: 5rem;
}
.salary-main-visual img {
    border-radius: 1.5rem; /* 22.jpgの表示 */
}

/* ============================================
   14. job-block スタイル調整
   ============================================ */

#job-block {
    text-align: center;
}

/* タイトルエリア */
.job-title-area {
    margin-bottom: 6.0rem;
}

.medal-icon {
    width: 8rem;
    margin: 0 auto;
}

.job-section-title {
    font-size: 3.2rem;
    font-weight: bold;
}

/* 求人カード本体 */
.job-card {
    border: 0.5rem solid var(--color_orange3);
    border-radius: 2.5rem;
    position: relative;
    padding: 5.0rem 2.0rem 1.5rem;
    margin-bottom: 7rem;
    background-color: #f9fefe;
}

.job-body{
  display: grid;
    justify-content: center;
}

/* 職種ラベル（枠線の上に重なる） */
.job-category-label {
    position: absolute;
    top: -3.0rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color_orange3);
    color: var(--whitecolor);
    font-size: 2.6rem;
    font-weight: bold;
    padding: 1.0rem 5.0rem;
    border-radius: 1.5rem;
    white-space: nowrap;
    z-index: 2;
}

/* 企業名 */
.company-name {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    
    display: inline-block; /* グラデーション適用のために必要 */
    
    /* テキストグラデーションの設定 */
    background: linear-gradient(90deg, #58d9e4, #014bae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.job-details-text {
  margin-bottom: 0.5rem;
    display: block;
    text-align: left;
    width: 35rem;
    margin-left: auto;
    margin-right: auto;
}
/* 特徴リスト */
.job-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0.5rem;
    display: block;
    text-align: left;
    width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.job-details-list li {
    font-size: 1.6rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
}

.job-details-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 0.2rem;
}

/* 給与表示行 */
.salary-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.0rem;
    margin-bottom: -0.5rem;
}

.yen-icon {
    width: 4.0rem;
    height: 4.0rem;
    background-color: #529db4;
    color: var(--whitecolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: bold;
}

.salary-range {
    font-size: 3.4rem;
    font-weight: bold;
    color: var(--color_orange3);
    margin-bottom: 0;
}

/* スキルタグ */
.skill-tags {
    font-size: 1.8rem;
    color: #72b9d5;
}

/* ============================================
   15. advisor-block (アドバイザー紹介)
   ============================================ */

.advisor-section-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;

    /* テキストグラデーションの設定 */
    background: linear-gradient(90deg, #58d9e4, #014bae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advisor-section-subtitle {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
}

.advisor-wrap {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-bottom: 1rem;
}

.advisor-item {
    text-align: center;
}

.advisor-img {
    width: 20rem;
    margin-bottom: 2rem;
}

.advisor-name {
    font-size: 1.8rem;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

.advisor-footer {
    text-align: center;
}

.advisor-footer mark {
    font-size: 2.8rem; /* 「2人1組でサポート」部分 */
}

/* ============================================
   Footer
   ============================================ */
footer{
  text-align: center;
}

/* ============================================
   5. アニメーション
   ============================================ */
.shiny-btn-img { display: block; position: relative; overflow: hidden; }
.shiny-btn-img::before {
    position: absolute;
    content: '';
    top: -18rem; left: 0;
    width: 3rem; height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    animation: shinyshiny 2.5s ease-in-out infinite;
}
@keyframes shinyshiny {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

.cta-button-wrap .scale-btn-img {
  display: block;
  animation: puyoBtn 1.6s ease-in infinite;
}

@keyframes puyoBtn {
  0% {
    transform: scale(1.09);
  }

  40% {
    transform: scale(1);
  }

  60% {
    transform: scale(1);
  }

  70%,
  100% {
    transform: scale(1.09);
  }
}

/* ============================================
   blue-dots アニメーション
   ============================================ */
.blue-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem; /* ドット間の距離 */
    margin: 2.0rem 0;
}

.blue-dots span {
    width: 1.6rem;
    height: 1.6rem;
    background-color: var(--color_blue1);
    border-radius: 50%;
    opacity: 0; /* 初期状態は透明 */
    transform: translateY(-0.5rem); /* 少し上から開始 */
    animation: dotFlowDown 2.4s ease-in-out infinite;
}

/* 1つずつ順番にアニメーションさせるためのディレイ設定 */
.blue-dots span:nth-child(1) { animation-delay: 0s; }
.blue-dots span:nth-child(2) { animation-delay: 0.3s; }
.blue-dots span:nth-child(3) { animation-delay: 0.6s; }

/* 上から下へ流れながらフェードイン・アウトするキーフレーム */
@keyframes dotFlowDown {
    0% {
        opacity: 0;
        transform: translateY(-0.8rem);
    }
    20% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 0;
        transform: translateY(0.8rem);
    }
    100% {
        opacity: 0;
        transform: translateY(0.8rem);
    }
}

/* 下部のドット（bottomクラス）にはさらに大きな余白を適用 */
.blue-dots.bottom {
    margin-top: 6.0rem;
    margin-bottom: 4.0rem;
}

/* ============================================
   6. レスポンシブ
   ============================================ */
@media screen and (max-width: 920px) and (min-width: 621px) {
    body { width: 100%; }
    main { padding: 4rem 2.5rem; box-sizing: border-box; }
}
@media screen and (max-width: 620px) {
    body { width: 100%; }
    main { padding: 3.5rem 2rem; box-sizing: border-box; }
    .bubble { max-width: 80%; }
}