/* ãƒªã‚»ãƒƒãƒˆCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    /* color: #fff; */
    max-width: 500px;
    margin: 0 auto;
    /* background-color: #151528; */
}

main {
    background-color: #f5f5f5;
}

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

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

ul,
ol {
    list-style: none;
}

section {
    padding: 30px 15px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.text-accent {
    color: #008000;
    font-weight: bold;
}

/* ========== ãƒ˜ãƒƒãƒ€ãƒ¼ ========== */
.site-header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 30px;
    margin-right: 8px;
}

.logo span {
    font-weight: bold;
    font-size: 18px;
}

.apply-btn {
    background-color: #0f3f97;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.apply-btn i {
    margin-right: 5px;
}

.menu-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
}

/* ãƒŠãƒ“ã‚²ãƒ¼ã‚·ãƒ§ãƒ³ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1100;
}

.main-nav.active {
    display: block;
}

.nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #000;
    color: #fff;
    padding: 50px 20px 20px;
    overflow-y: auto;
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.main-nav ul {
    margin-bottom: 30px;
}

.main-nav li {
    margin-bottom: 25px;
    border-bottom: 1px dashed #555;
    padding-bottom: 15px;
}

.nav-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.nav-contact {
    margin-top: 40px;
    text-align: center;
}

.nav-contact h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.reception-hours {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.mail-form-btn {
    display: block;
    background-color: #0f3f97;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
}

/* ========== ãƒ•ã‚¡ãƒ¼ã‚¹ãƒˆãƒ“ãƒ¥ãƒ¼ ========== */
.hero {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    padding: 56px 0 0 00;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 110px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-text {
    position: absolute;
    left: 15px;
    bottom: 12px;
    color: #fff;
    z-index: 3;
}

.hero-text h1 {
    font-size: 1.4em;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px #0008;
}

.hero-girl {
    position: absolute;
    right: 18px;
    bottom: 0;
    width: 110px;
    height: auto;
    z-index: 4;
    /* ç”»åƒã®å½¢çŠ¶ã«åˆã‚ã›ã¦èª¿æ•´ */
    /* filter: drop-shadow(0 4px 12px #0006); */
    pointer-events: none;
}

/* ========== ç‰¹å¾´ ========== */
.section-features {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-header {
    text-align: center;
    margin-bottom: 20px;
}

.feature-header h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #014aba;
}

.feature-box {
    border: 2px solid #0f3f97;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
}

.feature-icon {
    text-align: center;
    margin-bottom: 15px;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-align: center;
    color: #0f3f97;
}

.feature-content p {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #ccc;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #0f3f97;
    margin-right: 8px;
}

/* ========== ä¼šç¤¾ã‚³ãƒ³ã‚»ãƒ—ãƒˆ ========== */
.section-concept {
    background-color: #fff;
}

.concept-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.concept-logo {
    margin-right: 15px;
}

.concept-header h2 {
    text-align: left;
    margin-bottom: 0;
}

.concept-image {
    margin-bottom: 20px;
    flex: 1;
}

.concept-text p {
    margin-bottom: 15px;
}

/* 概念テキスト内の見出し(h3)装飾 */
h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 12px 0 10px;
    padding-left: 12px;
    position: relative;
}

h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 1.2em;
    background: #014aba;
    /* 補助色 */
    border-radius: 3px;
}

.feature-head h3:before {
    display: none;
}

/* ========== ä»•äº‹ã®æµã‚Œ ========== */
.section-flow {
    background-color: #fff;
}

.timeline {
    position: relative;
    /* padding-left: 30px; */
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    width: 2px;
    background-color: #ddd;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.time {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.time-icon {
    position: absolute;
    left: -23px;
    top: 0;
    width: 16px;
    height: 16px;
    background-color: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}

.time-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffaa00;
}

.flow-content {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flow-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.flow-image {
    float: right;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left: 10px;
    object-fit: cover;
}

/* ========== å‹Ÿé›†è¦é … ========== */
.section-recruit {
    background-color: #fff;
}

.recruit-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recruit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recruit-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #555;
}

.recruit-item.highlight h3 {
    color: #0f3f97;
}

.recruit-item.accent {
    color: #0f3f97;
    font-weight: bold;
    text-align: center;
}

/* ========== ç¤¾å“¡ã‚¤ãƒ³ã‚¿ãƒ“ãƒ¥ãƒ¼ ========== */
.section-voices {
    background-color: #fff;
}

.interview-card {
    border: 2px solid #0f3f97;
    border-radius: 10px;
    overflow: hidden;
}

.interview-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.interviewer {
    display: flex;
    align-items: center;
}

.interviewer-image {
    width: 80px;
    /* height: 50px; */
    /* border-radius: 50%; */
    margin-right: 15px;
    /* object-fit: cover; */
}

.interviewer-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.interviewer-info p {
    font-size: 0.9rem;
    color: #888;
}

.interview-content {
    padding: 15px;
}

.interview-content p {
    margin-bottom: 10px;
}

.read-more {
    display: block;
    text-align: right;
    color: #0f3f97;
    font-weight: bold;
    margin-top: 15px;
}

/* ========== ã‚ˆãã‚ã‚‹è³ªå• ========== */
.section-faq {
    background-color: #f0f0f0;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.question {
    padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.question span {
    font-weight: bold;
    color: #0f3f97;
    margin-right: 10px;
}

.question h3 {
    font-size: 1rem;
    flex-grow: 1;
    padding: 0 30px 0 0;
    margin: 0;
}

.question h3:before {
    display: none;
}

.toggle-answer {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
}

.answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .answer {
    padding: 0 15px 15px;
    max-height: 500px;
}

.faq-item.active .toggle-answer i {
    transform: rotate(180deg);
}

/* ========== CTA ========== */
.section-cta {
    background-color: #fff;
    text-align: center;
}

.cta-content {
    /* padding: 20px; */
}

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 10px;
    font-weight: bold;
}

.phone-link {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 20px 0 5px;
}

.phone-link i {
    color: #0f3f97;
}

/* ãƒ•ãƒƒã‚¿ãƒ¼ */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.feature-box {
    background: #fff;
    border: 3px solid #0f3f97;
    border-radius: 12px;
    box-shadow: 2px 2px 8px #ccc;
    padding: 24px 24px;
    max-width: 600px;
    margin: 24px auto;
}

.feature-head {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-evenly;
}

.feature-head img {
    width: 80px;
    height: auto;
    margin-right: 12px;
}

.feature-head h3 {
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    width: 100%;
}

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

.feature-list li {
    font-size: 1.1em;
    /* margin-bottom: 12px; */
    /* display: flex; */
    align-items: flex-start;
    /* 先頭揃えで複数行でも崩れない */
    column-gap: 10px;
    /* アイコンとテキストの間隔 */
    line-height: 1.7;
}


.feature-list i {
    color: #0f3f97;
    font-size: 1.3em;
    margin-right: 0;
    /* column-gapで制御 */
    flex: 0 0 auto;
    /* アイコン幅を固定、テキストだけ折り返し */
    margin-top: 2px;
    /* テキストの1行目と視覚的に揃える */
}

.concept-visual {
    position: relative;
    background-image: url('../img/concept-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 12px; */
    overflow: hidden;
}

.concept-image img {
    width: 200px;
    /* ç”»åƒã®å¹…ã¯ãŠå¥½ã¿ã§èª¿æ•´ */
    height: 146px;
    /* ç”»åƒã®é«˜ã•ã‚’ç”»åƒã«åˆã‚ã›ã¦èª¿æ•´ */
    object-fit: cover;
    display: block;
}

.concept-right {
    flex: 2;
    padding: 24px 16px;
    text-align: left;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 146px;
    /* ç”»åƒã¨é«˜ã•ã‚’æƒãˆã‚‹ */
}

.concept-logo {
    width: 70px;
    margin-bottom: 12px;
}

.concept-right h2 {
    font-size: 1.3em;
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
}

/* 新しいオーバーレイスタイル */
.concept-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    /* background: rgba(255, 255, 255, 0.9); */
    padding: 20px 30px;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.concept-overlay h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
    color: #ffffff;
}

/* 背景画像の上に薄いオーバーレイを追加 */
.concept-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.section-flow {
    background: #ecf8ff;
    padding: 32px 0;
}

.section-flow h2 {
    text-align: center;
    color: #0f3f97;
    margin-bottom: 32px;
}

/* ========== 働き方の例（カードレイアウト） ========== */
.work-examples {
    display: grid;
    grid-template-columns: 1fr;
    /* 常時1列 */
    gap: 14px;
    width: 100%;
    max-width: 500px;
    /* PCでもスマホ幅に揃える */
    margin: 0 auto;
}

.example-card {
    background: #fff;
    border: 2px solid #014aba;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.example-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f7f5ff;
}

.badge {
    display: inline-block;
    font-size: 0.85em;
    font-weight: 700;
    color: #fff;
    padding: 4px 10px;
    border-radius: 16px;
}

.badge-aicott {
    background: #014aba;
}

.badge-sophia {
    background: #9F8CFF;
}

.badge-regular {
    background: #43c06d;
}

.example-role {
    font-weight: 700;
    color: #333;
}

.example-body {
    padding: 12px 14px 14px;
}

.example-desc {
    color: #222;
    margin: 2px 0 8px;
    line-height: 1.7;
}

.example-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e1ff;
}

.example-row:last-child {
    border-bottom: none;
}

.example-row .label {
    color: #6b6b6b;
    font-weight: 700;
}

.example-row .value {
    color: #222;
}

/* PCでも1列のままにするための指定（2列化しない） */

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ffa726 0%, #66bb6a 33%, #42a5f5 66%, #ab47bc 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
}

.timeline-time {
    width: 48px;
    text-align: right;
    font-weight: bold;
    font-size: 1.1em;
    margin-right: 16px;
    position: relative;
    z-index: 1;
    background-color: #ecf8ff;
}

.time-orange {
    color: #ffa726;
}

.time-green {
    color: #66bb6a;
}

.time-blue {
    color: #42a5f5;
}

.time-blue2 {
    color: #5c8ee7;
}

.time-purple {
    color: #ab47bc;
}

.timeline-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    /* box-shadow: 0 2px 8px #e0e0e0; */
    padding: 16px 20px;
    margin-bottom: 16px;
}

.timeline-box-text {
    flex: 1;
}

.timeline-box h3 {
    margin: 0 0 4px 0;
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
}

.timeline-box p {
    margin: 0;
    color: #333;
    font-size: 0.98em;
}

.timeline-box-img {
    margin-left: 16px;
    flex-shrink: 0;
    position: relative;
}

.timeline-img {
    width: 100px;
    /* height: 96px; */
    /* object-fit: cover; */
    /* position: absolute; */
    /* left: 0; */
    /* top: 0; */
}

.section-recruit {
    /* text-align: center; */
    margin: 32px auto;
}

.section-recruit h2 {
    font-size: 1.3em;
    margin-bottom: 18px;
    font-weight: bold;
}

.recruit-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recruit-item {
    font-size: 1em;
    margin-bottom: 2px;
}

.recruit-item strong {
    font-size: 1.08em;
    font-weight: bold;
    letter-spacing: 0.02em;
}

.recruit-note {
    font-size: 0.95em;
    color: #222;
}

.recruit-accent {
    color: #094abd;
    font-weight: bold;
    font-size: 1.08em;
    margin: 8px 0 4px 0;
}

.recruit-benefit-title {
    color: #094abd;
    font-weight: bold;
    font-size: 1.15em;
    margin: 14px 0 4px 0;
    letter-spacing: 0.05em;
}

.recruit-benefit {
    font-size: 0.98em;
    color: #222;
    line-height: 1.7;
}

.interview-card {
    background: #fff;
    border: 2px solid #0f3f97;
    border-radius: 14px;
    box-shadow: 0 2px 8px #e0e0e0;
    padding: 24px 20px 20px 20px;
    max-width: 420px;
    margin: 32px auto;
    font-family: "Yu Gothic", "Meiryo", sans-serif;
}

.interview-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.interviewer-image {
    /* width: 80px; */
    /* height: 90px; */
    /* border-radius: 50%; */
    /* margin-right: 18px; */
    /* object-fit: cover; */
}

.interviewer-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.interviewer-number {
    color: #094abd;
    font-weight: bold;
    font-size: 1.1em;
    margin-right: 6px;
}

.interviewer-name {
    font-weight: bold;
    font-size: 1.1em;
    margin-right: 6px;
}

.interviewer-meta {
    color: #444;
    font-size: 0.98em;
}

.interviewer-profile {
    margin-top: 6px;
    font-size: 0.98em;
    color: #222;
}

.interviewer-note {
    font-size: 0.92em;
    color: #888;
}

.interview-content {
    font-size: 1em;
    color: #222;
    margin-top: 8px;
    margin-bottom: 8px;
}

.interview-content p {
    margin: 0 0 12px 0;
    line-height: 1.7;
}

.interview-highlight {
    background: #f7fcff;
    border-left: 5px solid #094abd;
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 8px;
    text-align: left;
}

.highlight-title {
    color: #094abd;
    font-weight: bold;
    font-size: 1.05em;
    display: block;
    margin-bottom: 4px;
}

.highlight-detail {
    color: #444;
    font-size: 0.98em;
}

.section-cta {
    background: #f7f7f7;
    max-width: 430px;
    margin: 32px auto;
    padding: 32px 16px 28px 16px;
    text-align: center;
}

.cta-lead {
    color: #0f3f97;
    font-weight: bold;
    font-size: 1.15em;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.cta-desc {
    color: #222;
    font-size: 1em;
    margin-bottom: 18px;
    line-height: 1.6;
}

.cta-phone-block {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    color: #0f3f97;
    margin-bottom: 6px;
    gap: 10px;
}

.cta-phone-block i {
    font-size: 1.2em;
}

.cta-hours {
    color: #444;
    font-size: 0.98em;
    margin-bottom: 18px;
}

.cta-mail-btn {
    display: inline-block;
    background: linear-gradient(90deg, #2e8b57 0%, #0d47a1 100%);
    color: #fff;
    font-weight: bold;
    font-size: 1.15em;
    border-radius: 30px;
    padding: 14px 0;
    width: 90%;
    max-width: 340px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px #b2dfdb;
    margin-top: 8px;
    transition: background 0.2s;
}

.cta-mail-btn i {
    margin-left: 8px;
    font-size: 1.1em;
}

.cta-mail-btn:hover {
    background: linear-gradient(90deg, #0d47a1 0%, #2e8b57 100%);
    color: #fff;
}


#features ul.maru {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

#features .maru li {
    /* padding:15px; */
}

#features .maru li span {
    /* background:#ddd; */
    color: #fff;
    /* top: 50px; */
    font-weight: 600;
    font-size: 23px;
    /* color: #ecc621; */
    /* line-height: 1; */
}

#features .maru li span:before {
    position: relative;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 6px;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B8F2E6"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') no-repeat center / contain;
}

#features .maru li {
    padding: 10px;
    background: #014aba;
    margin: 0 10px;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    /* line-height: 100px; */
    text-align: center;
    top: 50px;
}


.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}

/* ========================
   Space Pastel Theme Overrides
   宇宙をイメージしたパステル調アクセント
   ======================== */

/* アクセントテキスト */
.text-accent {
    color: #014aba;
}

/* ボタン/リンク */
.apply-btn {
    background-color: #9F8CFF;
    color: #fff;
}

.mail-form-btn {
    background-color: #9F8CFF;
}

.read-more {
    color: #014aba;
}

/* 見出し・罫線等 */
.feature-box {
    border-color: #014aba;
}

.feature-content h3 {
    color: #014aba;
}

.feature-list i {
    color: #014aba;
}

/* タイムライン配色（パステル宇宙グラデ） */
.section-flow h2 {
    color: #014aba;
}

.timeline::before {
    background: linear-gradient(to bottom,
            #F8C8DC 0%,
            /* pastel pink */
            #B8F2E6 33%,
            /* pastel mint */
            #AEEBFF 66%,
            /* pastel cyan */
            #014aba 100%
            /* pastel purple */
        );
}

.time-orange {
    color: #FCE588;
}

.time-green {
    color: #B8F2E6;
}

.time-blue {
    color: #AEEBFF;
}

.time-blue2 {
    color: #A5B4FC;
}

.time-purple {
    color: #014aba;
}

/* 募集要項の強調 */
.recruit-item.highlight h3 {
    color: #014aba;
}

.recruit-item.accent {
    color: #014aba;
}

/* インタビューカード */
.interview-card {
    border-color: #014aba;
}

/* CTA */
.cta-lead {
    color: #014aba;
}

.cta-phone-block {
    color: #014aba;
}

.cta-mail-btn {
    background: linear-gradient(90deg, #B8F2E6 0%, #014aba 100%);
    color: #fff;
}

.cta-mail-btn:hover {
    background: linear-gradient(90deg, #014aba 0%, #B8F2E6 100%);
}

/* 特徴丸アイコンの装飾色 */
#features .maru li span:before {
    color: #FCE588;
    /* star-like pastel yellow */
}

/* 固定LINEボタン用のスタイル */
.fixed-line-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: calc(100% - 40px);
    z-index: 1000;
    animation: pulse 2s infinite;
    max-width: 360px;
}

.fixed-line-button img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.fixed-line-button img:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 150, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 150, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 150, 0, 0);
    }
}

/* スマートフォン用の調整 */
@media (max-width: 768px) {
    .fixed-line-button {
        bottom: 15px;
        right: 15px;
        width: calc(100% - 30px);
    }

    .fixed-line-button img {
        /* width: 100px; */
        /* height: 35px; */
        border-radius: 17px;
    }
}

span.cap {
    font-size: 12px;
    color: #666;
}



.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}

.btn-wrap {
    margin: 30px 0;
}

a.btn-c {
    font-size: 1.8rem;
    position: relative;
    padding: 0 2rem 1.5rem 2rem;
    color: #fff;
    background: #2c9d60;
    -webkit-box-shadow: 0 5px 0 #136b3b;
    box-shadow: 0 5px 0 #136b3b;
    max-width: 100%;
}

a.btn-c span {
    font-size: 1.3rem;
    position: absolute;
    top: -1.25rem;
    left: calc(50% - 150px);
    display: block;
    width: 300px;
    padding: 0.2rem 0;
    color: #2c9d60;
    border: 2px solid #2c9d60;
    border-radius: 100vh;
    background: #fff;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-c span:before,
a.btn-c span:after {
    position: absolute;
    left: calc(50% - 10px);

    content: "";
}

a.btn-c span:before {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #2c9d60 transparent transparent transparent;
}

a.btn-c span:after {
    bottom: -7px;

    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

a.btn-c i {
    margin-right: 1rem;
}

a.btn-c:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);

    color: #fff;
    background: #2c9d60;
    -webkit-box-shadow: 0 2px 0 #136b3b;
    box-shadow: 0 2px 0 #136b3b;
}