/* 全体のリセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    direction: ltr !important;
}



/* ===== レスポンシブ対応 ===== */

	.sp{
		display: none!important;
	}
	
	.pc{
		display: block!important;
	}


@media (max-width: 768px) {
	.sp{
		display: block!important;
	}
	
	.pc{
		display: none!important;
	}
}


body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    width: 100%;
    overflow-x: hidden;
    writing-mode: horizontal-tb !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

a {
    text-decoration: none;
    color: #D25A5A; /* ドコモ赤をベースにした色 */
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    width: 100%;
}

.section-bg {
    background-color: #f2f2f2;
    width: 100%;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #D25A5A;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #D25A5A;
    margin: 15px auto 0;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}



.caption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* ===== ヘッダー ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    header {
        padding: 0 15px;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 769px) {
.header-inner {
    margin: 0 auto;
    width: 90%;
}
}


.logo img {
    height: 45px;
}

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

.nav-pc ul {
    display: flex;
}

.nav-pc li {
    margin-left: 30px;
}

.nav-pc a {
    font-weight: 500;
    position: relative;
}

.nav-pc a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #c10018;
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
}

.nav-pc a:hover::after {
    width: 100%;
}

.btn-contact {
    background-color: #c10018;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-contact:hover {
    background-color: #9e0012;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    padding: 30px;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.nav-mobile.active {
    transform: translateY(0);
}

.nav-mobile li {
    margin-bottom: 20px;
}

.nav-mobile a {
    font-size: 18px;
    font-weight: 500;
}
/* ヒーローエリア */
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/top-2_sp_bg.webp");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding-top: 80px;
    z-index: 2;
    position: relative;
}


@media (min-width: 769px) {
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/top_pc_bg.webp");
	}
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #D25A5A;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 90, 90, 0.3);
}

.cta-button:hover {
    background-color: #B34747;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 90, 90, 0.4);
}

.cta-button i {
    margin-left: 10px;
}

/* インシップスで働く魅力 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #D25A5A;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* 仕事内容紹介 */
.job-flow {
    margin-top: 50px;
    width: 100%;
}

.flow-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    position: relative;
    flex-direction: row;
    text-align: center;
    margin: 0 10px 30px;
}

@media (min-width: 769px) {
.flow-item {
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
}


@media (max-width: 768px) {
.flow-item {
	    flex-direction: column;
	    padding: 30px;
}
}


.flow-number {
    background-color: #D25A5A;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px 0 10px 0;
    z-index: 1;
    text-align: center;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb; /* 横書きに強制 */
}

.flow-image {
    width: 40%;
    position: relative;
    padding: 20px;
}

.flow-content {
    width: 60%;
    padding: 30px;
    padding-left: 20px;
}

.horizontal-text {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    text-align: left !important;
    direction: ltr !important;
}

.flow-content h3 {
    margin-bottom: 15px;
    color: #D25A5A;
    font-size: 1.5rem;
}

.flow-content p {
    color: #555;
}

.flow-content h3 {
    color: #D25A5A;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.flow-content p {
    color: #555;
}

/* 1日のスケジュール */
.schedule-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.timeline {
    flex: 1;
    min-width: 300px;
}

.time-block {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.time-block::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #D25A5A;
    left: 40px;
    top: 30px;
    z-index: -1;
}

.time-block:last-child::before {
    display: none;
}

.time {
    width: 80px;
    height: 30px;
    background-color: #D25A5A;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    padding: 5px 0;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.time-content {
    flex: 1;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.time-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #D25A5A;
}

.time-content p {
    font-size: 0.9rem;
    color: #555;
}

.schedule-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* 研修制度 */
.training-flow {
    margin-top: 50px;
}

.training-step {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: #D25A5A;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-content {
    display: flex;
    flex-wrap: wrap;
}

.step-content h4 {
    width: 100%;
    font-size: 1.3rem;
    margin-bottom: 15px;
	margin-top: 20px;
    color: #333;
}

.step-content ul {
    flex: 1;
    min-width: 300px;
}

.step-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #555;
}

.step-content ul li::before {
    content: '●';
    color: #D25A5A;
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

.step-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* 先輩の声 */
.interviews {
    margin-top: 50px;
}

.interview-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.interview-image {
    width: 150px;
    margin-right: 30px;
}

.interview-image img {
    border-radius: 50%;
}

.interview-content {
    flex: 1;
    min-width: 300px;
}

.interview-profile {
    margin-bottom: 20px;
}

.interview-profile h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #D25A5A;
}

.interview-profile p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.qa-item {
    margin-bottom: 20px;
}

.question {
    font-weight: 600;
    color: #D25A5A;
    margin-bottom: 10px;
}

.answer {
    color: #555;
    line-height: 1.8;
}

/* キャリアイメージ */
.career-path {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.career-timeline {
    flex: 1;
    min-width: 300px;
}

.career-point {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
}

.career-point::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    background-color: #D25A5A;
    left: 30px;
    bottom: -30px;
}

.career-point:last-child::after {
    display: none;
}

.year {
    display: inline-block;
    background-color: #D25A5A;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.role {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.description p {
    color: #555;
    line-height: 1.7;
}

.career-branch .career-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.career-branch .option {
    flex: 1;
    min-width: 200px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #D25A5A;
}

.career-branch .option h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #D25A5A;
}

.career-branch .option p {
    font-size: 0.9rem;
    color: #555;
}

.career-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* 募集要項 */
.req-table-container {
    margin-top: 50px;
    overflow-x: auto;
}

.req-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.req-table th, .req-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.req-table th {
    width: 25%;
    background-color: #f7f7f7;
    color: #333;
    font-weight: 600;
}

.req-table ul {
    padding-left: 20px;
}

.req-table ul li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: disc;
}

.req-table tr:last-child th,
.req-table tr:last-child td {
    border-bottom: none;
}

/* 選考フロー */

.recruit-schedule-lead-title{
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: solid 1px;
    border-top: solid 1px;
    margin-bottom: 15px;
    padding: 10px 0;
}

@media (max-width: 768px) {
.recruit-schedule-lead-title{
    margin-top: 20px;
}
}

.recruit-schedule{
    display: flex;
    font-size: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.recruit-bottom{
	margin-bottom: 10px;
}

.selection-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

@media (min-width: 769px) {
.flow-schedule{
    flex-direction: column;
}

.flow-schedule-flex{
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
.flow-icon {
    margin: 0!important;
}
}

.flow-icon i {
    font-size: 2rem;
    color: #D25A5A;
}

.flow-step {
    font-size: 0.9rem;
    font-weight: 600;
    color: #D25A5A;
    margin-bottom: 5px;
}

.flow-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}


@media (min-width: 769px) {
.flow-title {
    margin-bottom: 0px;
}
}



.flow-desc {
    font-size: 0.9rem;
    color: #555;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #D25A5A;
    margin: 0 10px 30px;
    transform: rotate(90deg);
}

.flow-notes {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

.flow-notes p {
    margin-bottom: 5px;
}

/* エントリーフォーム */

#entry h1{
	  text-align: center;
	  color: #333;
	margin-bottom: 50px;
}

.entry_innner{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.radio-wrap {
    background-color: #fff;
    padding: 28px !important;
    margin-bottom: 20px !important;
    flex-direction: column;
    border: 1px solid #ccc !important;
    gap: 10px;
}

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }
        input[type="text"],
        input[type="tel"],
        input[type="date"],
        select {
            width: calc(100%)!important;
            padding: 10px;
            margin-bottom: 20px!important;
            border: 1px solid #ccc!important;
            border-radius: 4px!important;
            box-sizing: border-box!important;
            font-size: 18px;
        }
        .radio-group label {
            font-weight: normal;
            margin-right: 15px;
            margin-bottom: 10px;
            position: relative;
            top: 5px;
            font-size: 0.9rem;
        }
        .radio-group input[type="radio"] {
            margin-right: 5px;
        }
        button[type="submit"] {
            background-color: #28a745;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }
        button[type="submit"]:hover {
            background-color: #218838;
        }
        .form-group {
            margin-bottom: 1.5em;
        }

input[type="date"] {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
	text-align: left;
    background-color: #fff;
}

.radio-group{
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 2px;
}


/*エントリーフォームend*/









.privacy-policy {
    display: flex;
    align-items: center;
}

.privacy-policy input {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    text-align: center;
    margin-top: 30px;
}

.submit-btn button {
    background-color: #D25A5A;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 90, 90, 0.3);
}

.submit-btn button:hover {
    background-color: #B34747;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 90, 90, 0.4);
}

.submit-btn button i {
    margin-left: 10px;
}

.line-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.line-qr {
    text-align: center;
}

.line-info {
    text-align: center;
}

.line-info p {
    margin-bottom: 15px;
    color: #555;
}

.line-button {
    display: inline-block;
    background-color: #06C755;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.line-button:hover {
    background-color: #05a648;
}

.line-button i {
    margin-right: 8px;
}

.line-id {
    font-size: 0.9rem;
    color: #666;
}

.social-links {
    text-align: center;
    margin-top: 50px;
}

.social-links h3 {
    color: #333;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #D25A5A;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(210, 90, 90, 0.3);
}

.sns-block{
	width:100px;
}

.sns-block p{
    line-height: 20px;
    padding-top: 8px;
}


@media (max-width: 768px) {
.sns-block{
	/*width:100px!important;*/
}
}
	
/* ===== フッター ===== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}


@media (max-width: 768px) {
.footer {
    padding: 50px 0 100px;
}
}

.footer h3{
	color: #fff;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    margin-bottom: 15px;
	width: 60%;
}
.footer-logo p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ccc;
}

.footer-logo a{
    color: #ccc!important;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav-group {
    flex: 1;
    min-width: 100px;
}

.footer-nav-group h3 {
    font-size: 16px;
    margin:0 0 15px 0;
    position: relative;
    padding-bottom: 10px;
}

 


.footer-nav-group h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #c10018;
    bottom: 0;
    left: 0;
}

.footer-nav-group ul li {
    margin-bottom: 10px;
}

.footer-nav-group a {
    color: #ccc;
    font-size: 14px;
}

.footer-nav-group a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-links {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;	
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 5px 7px;
    text-align: center;
}

.social-links a:hover {
    background-color: #c10018;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}


.fa-instagram p{
    line-height: 20px;
    padding-top: 8px;
}

.sns-block {
    width: 90px;
    font-size: 14px;
}


.copyright {
    font-size: 12px;
    color: #999;
}

li{
    list-style:none;
}



.entry_innner p{
    font-size: 1.4rem;
    margin-top: 0.5rem;
    background-color: #fff68d;
    color: #D25A5A;
    margin-bottom: 1rem;
    padding: 0.2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        margin: 0 20px 20px;
    }}



/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2.2rem;
    }
	
    .entry_innner p {
        font-size: 0.9rem;
        padding: 0.2rem 1rem;
        line-height: 1.6rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 15px;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .flow-image, .flow-content {
		padding-top: 0;
        width: 100%;
    }
    
    .flow-image {
        order: -1;
    }
    
    .interview-image {
        margin: 0 auto 20px;
    }
    
    .interview-content {
        text-align: center;
    }
    
    .qa-item {
        text-align: left;
    }
    
    .year {
        display: block;
        text-align: center;
    }
    
    .role {
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        display: none;
    }
	
	.radio-wrap {
    padding: 12px !important;
}
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 2.9rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .feature-item, .training-step, .interview-card, .career-point, .entry-form, .entry-line {
        padding: 20px;
    }
    
    .req-table th, .req-table td {
        padding: 15px;
    }
    
    .req-table th {
        width: 30%;
        font-size: 15px;
    }
}



.timerHidden{ display: none;}
.timerVisible{ display: block;}


/*----フローティング----*/

    /* 画面下部固定バナー */
    .fixed-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: none; /* 最初は非表示（スマホのみ表示） */
      justify-content: space-around;
      align-items: center;
      background-color: #ffffff4f;
      border-top: 1px solid #ccc;
      padding: 9px 10px;
      z-index: 0;
      gap: 9px;
    }


.fixed-banner small{
	
}

    /* スマホサイズでのみ表示 */
    @media screen and (max-width: 768px) {
      .fixed-banner {
        display: flex;
      }
    }

    /* ボタンのスタイル */
    .fixed-banner a {
      flex: 1;
      /* margin: 0 10px; */
      padding: 12px 0;
      text-align: center;
      text-decoration: none;
      color: #fff;
      border-radius: 5px;
      font-weight: bold;
      line-height: 1.2rem;
      font-size: 16px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-items: center;
    }

    .btn-entry {
      background-color: #405C9B;
      height: 3.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-inquiry {
      background-color: #E4405F;
    }

.place{
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
    margin-bottom: 2rem;
}
