/* ãƒªã‚»ãƒƒãƒˆ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: #333;
    max-width: 500px;
    margin: 0 auto;
    background-color: #f8f8f8;
}

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;
}

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

.feature-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.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;
}

/* ========== ä»•äº‹ã®æµã‚Œ ========== */
.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-right: 30px;
}

.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: center;
}

.feature-list i {
    color: #0f3f97;
    font-size: 1.3em;
    margin-right: 10px;
}

.concept-visual {
    display: flex;
}

.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;
}

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

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

.timeline {
    position: relative;
    margin: 0 auto;
    max-width: 90%;
    /* padding-left: 40px; */
}

.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, #43c06d 0%, #0f3f97 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, #0f3f97 0%, #43c06d 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: 25px;
    /* color: #ecc621; */
    /* line-height: 1; */
}

#features .maru li span:before {
    position: relative;
    font-family: 'Font Awesome 6 pro';
    content: "\f82c";
    left: 0;
    color: #ecc621;
    font-size: 30px;
    font-weight: 400;
    padding-right: 0;
    display: block;
}

#features .maru li {
    padding: 10px;
    background: #0f3f97;
    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;
    }
}