@media (max-width: 767px) {
    .sp-none {
        display: none;
    }
}

@media (min-width: 768px) {
    .pc-none {
        display: none;
    }
}

.finish_step_4 a {
    color: #fff;
    width: 100%;
    height: 100%;
}

details {
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details table {
    margin: 0 auto;
    text-align: center;
}

.pd {
    text-align: center;
}

select {
    margin: 0 auto;
    display: block;
}

.zip_summary {
	display: flex;
	justify-content: center;
	align-items: center;
}

.zip_font_1 {
	font-size:24px;
	color:#6B6B6B;
}

.zip_summary_head_close {
    background-color: #EEEEEE; /* 背景色を無色に設定 */
	border-radius: 10px;
	padding: 5px 10px 0px 10px;
    cursor: pointer;
}

.zip_summary_head_open {
	padding: 5px 10px 5px 10px;
    cursor: pointer;
}

.zip_details_close {
	color:#FFFFFF
}

/* 変数定義のようなもの（置換済み）: Primary Color: #00af9f */
.content-section { padding: 60px 20px; max-width: 1000px; margin: 0 auto; line-height: 1.8; color: #333; }

/* 見出しの下線色を変更 */
.content-section h2 { font-size: 28px; margin-bottom: 40px; text-align: center; color: #333; font-weight: bold; position: relative; }
.content-section h2::after { content: ""; display: block; width: 60px; height: 3px; background: #00af9f; margin: 15px auto 0; }

/* 小見出しの左線色を変更 */
.content-section h3 { font-size: 22px; margin-top: 30px; margin-bottom: 20px; border-left: 5px solid #00af9f; padding-left: 15px; font-weight: bold; }

.text-center { text-align: center; }
.bg-gray { background-color: #f9f9f9; }

/* 背景色をオレンジ系(#fffaf0)からミント系に変更 */
.bg-teal-light { background-color: #e6fcf9; }

/* ボタンの色を変更 */
.btn-link { display: inline-block; padding: 15px 50px; background: #00af9f; color: #fff; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 18px; transition: opacity 0.3s; margin: 30px 0; box-shadow: 0 4px 6px rgba(0,175,159,0.3); }
.btn-link:hover { opacity: 0.8; color: #fff; }

/* カードレイアウト */
.feature-item, .voice-item { background: #fff; padding: 30px; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.voice-meta { color: #666; font-size: 0.9em; margin-bottom: 10px; display: block; }

/* フロー（番号の色を変更） */
.flow-container { counter-reset: flow-count; }
.flow-item { position: relative; padding-left: 50px; margin-bottom: 30px; }
.flow-item h3 { margin-top: 0; border: none; padding-left: 0; font-size: 20px; color: #00af9f; }
.flow-item::before { counter-increment: flow-count; content: counter(flow-count); position: absolute; left: 0; top: 0; width: 40px; height: 40px; background: #00af9f; color: #fff; text-align: center; line-height: 40px; border-radius: 50%; font-weight: bold; }

/* FAQ（Qの背景色を変更） */
.faq-item { margin-bottom: 20px; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; }
.faq-q { background: #00af9f; color: #fff; padding: 15px 20px; font-weight: bold; cursor: default; }
.faq-q::before { content: "Q."; margin-right: 10px; }
.faq-a { padding: 20px; background: #fff; }
.faq-a::before { content: "A."; margin-right: 10px; font-weight: bold; color: #00af9f; }

/* レスポンシブ画像 */
.img-responsive { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.pc-none { display: none; }
@media screen and (max-width: 767px) {
    .pc-none { display: block; }
    .sp-none { display: none; }
    .content-section { padding: 40px 15px; }
    .content-section h2 { font-size: 24px; }
}

/* 転職者の声レイアウト調整 */
.voice-content { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.voice-text { flex: 1; }
.voice-person-img { width: 150px; height: auto; flex-shrink: 0; }

/* スマホ向け調整 */
@media screen and (max-width: 767px) {
    .voice-content { display: block; }
    .voice-person-img { display: block; margin: 0 auto 20px; width: 100%; max-width: 300px; }
}

/* 新規CTAボタン用スタイル */
.cta-secondary {
    margin-top: 50px;
    padding: 40px 20px;
    background-color: #f6fcff;
    border-radius: 16px;
    border: 2px dashed #00af9f;
    position: relative;
    overflow: hidden;
}
.cta-secondary::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: #e6fcf9;
    border-radius: 50%;
    z-index: 0;
}
.cta-copy-main {
    font-size: 24px;
    font-weight: bold;
    color: #00af9f;
    margin-bottom: 10px;
    display: block;
}
.cta-copy-sub {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}
.btn-cta-shiny {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #00af9f 0%, #00d1be 100%);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 175, 159, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.btn-cta-shiny:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 175, 159, 0.5);
    color: #fff;
    opacity: 1;
}
.btn-cta-shiny::after {
    content: " >";
    font-family: inherit;
    margin-left: 8px;
}
@media screen and (max-width: 767px) {
    .cta-copy-main { font-size: 20px; }
    .btn-cta-shiny { width: 100%; box-sizing: border-box; padding: 15px 20px; }
}
