/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.6;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}

/* Base Style */
body {
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    color: #333;
    background-color: #fff;
    font-size: 16px;
}
.text-highlight {
    color: #e66224;
    font-weight: 700;
}

/* Common Section Style */
.section-img {
    display: block;
    width: 100%;
    height: auto;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}
.section-title--dark {
    color: #000;
}
.title-sp {
    display: none;
}

/* Layout */
.page-wrapper {
    display: block;
}
.main-content {
    width: 100%;
}
.sidebar-form {
    display: none;
}
.bottom-form {
    display: block;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo img {
    height: 36px;
    display: block;
}
.header__tagline {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

main {
    padding-top: 80px;
}

/* Common Form Style */
.form-container {
    padding: 30px;
}
.form__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.form__description {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
.form-privacy {
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
}
.form-privacy a {
    color: #007bff;
    text-decoration: none;
}
.form-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #CC0201;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.form-submit-btn:hover {
    background-color: #c9302c;
}

/* Sidebar Form */
.sidebar-form {
    background-color: #f7f7f7;
    height: 100vh;
    position: sticky;
    top: 0;
}

/* Bottom Form Section */
.bottom-form {
    background-color: #f7f7f7;
    padding: 60px 0;
}
.bottom-form .form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}


/* First View */
.fv {
    width: 100%;
    background-color: #e3b200;
    color: #333;
    display: flex;
    align-items: center;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}
.fv__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
.fv__content {
    width: 66.66%;
    position: relative;
    z-index: 2;
}
.fv__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    color: #000000;
}
.fv__title-underline {
    border-bottom: 5px solid #333;
    padding-bottom: 2px;
}
.fv__title--large {
    font-size: 72px;
}
.fv__award {
    margin-top: 40px;
    text-align: left;
}
.fv__award-img {
    max-width: 100%;
    height: auto;
}
.fv__award-img--pc {
    display: block;
}

/* Company Section */
.company {
    padding: 30px 0 10px;
    background-color: #FEF5D6;
}
.company__inner {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.company__title {
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 40px;
    position: relative;
}
.company__title::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-27.5%);
    width: 40%;
    height: 5px;
    background-color: #e3b200;
}
.company__logos-img {
    width: 100%;
    height: auto;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background-color: #f7f7f7;
}
.cta__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s ease;
}
.cta__btn:hover {
    opacity: 0.8;
}
.cta__btn--pc {
    background-color: #e66224;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.cta__btn-tag {
    background-color: #fff;
    color: #e66224;
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-right: 15px;
}
.cta__btn--pc::after {
    content: '>';
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
.cta__sp-box {
    display: none;
}
.cta--secondary {
    background-color: #fff;
}
.cta__subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.cta__btn--orange-solid {
    background-color: #e66224;
    border: 1px solid #e66224;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 600px;
}
.cta__btn--orange-solid::after {
    content: '>';
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

/* Description & Reason Section Card Style */
.description, .reason {
    padding: 20px 0;
}
.description {
    background: url('./images/description/bg.png') center/cover no-repeat;
}
.description__inner, .reason__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.description__cards, .reason__cards {
    display: flex;
    gap: 30px;
}
.card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    flex: 1;
}
.card__title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 20px;
}
.card__text--large {
    font-weight: 600;
}
.card__title-num {
    color: #e3b200;
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}
.card__text {
    font-size: 16px;
    line-height: 1.7;
}
.card__text + .card__text {
    margin-top: 1em;
}

/* Reason Section */
.reason {
    background-color: #e3b200;
}

/* Guid Section */
.guid {
    padding: 60px 0;
    background-color: #e3b200;
}
.guid__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.guid__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.guid__card {
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}
.guid__card-logo {
    padding: 20px;
    border-bottom: 1px solid #eee;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.guid__card-logo img {
    max-width: 100%;
    max-height: 100px;
}
.guid__card-body {
    padding: 20px;
}
.guid__card-company {
    font-weight: 700;
}
.guid__card-role {
    font-size: 14px;
    margin-bottom: 10px;
}
.guid__card-salary {
    font-size: 14px;
}
.guid__card-salary .salary-number {
    font-size: 28px;
    font-weight: 700;
    color: #e66224;
}
.guid__card-note {
    font-size: 12px;
    color: #777;
}

/* Example Section */
.example {
    padding: 60px 0;
}
.example__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.example__cards {
    display: flex;
    gap: 40px;
}
.example-card {
    flex: 1;
    border: 1px solid #ddd;
    padding: 30px;
}
.example-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.example-card__img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.example-card__info {
    flex: 1;
}
.example-card__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}
.example-card__tag {
    color: #ffffff;
    background-color: #e3b200;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
}
.example-card__tag span {
    font-weight: 700;
}
.example-card__body p {
    line-height: 1.8;
}
.example-card__body p + p {
    margin-top: 1em;
}

/* PC Style */
@media (min-width: 1201px) {
    .page-wrapper {
        display: flex;
    }
    .main-content {
        width: 75%;
    }
    .sidebar-form {
        display: block;
        width: 25%;
    }
    .bottom-form {
        display: none;
    }
    .header {
        width: 75%;
    }

    .fv {
        height: 600px;
    }
    .fv__inner {
        height: 100%;
    }
    .fv__content{
        width: 60%;
    }
    .fv__img-wrapper {
        position: absolute;
        bottom: 0;
        right: 40px;
        width: 50%;
        max-width: 375px;
        z-index: 1;
    }
    .fv__main-img {
        width: 100%;
        height: auto;
        display: block;
    }
    .cta__sp-box {
        display: none;
    }
}


@media (max-width: 1200px) {
    .header {
        width: 100%;
    }
    .cta__sp-box {
        display: none; /* PCボタンをタブレットでも使うため */
    }

    .fv {
        min-height: 500px;
    }

    .fv__main-img {
        margin-bottom: -10px;
    }
}

@media (min-width: 769px) {
    .fv__award-img--sp {
        display: none;
    }
}

/* SP Style */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    .section-title {
        font-size: 24px;
    }
    .title-pc {
        display: none;
    }
    .title-sp {
        display: inline;
    }
    main {
        padding-top: 62px;
    }
    .header__inner {
        padding: 15px 20px;
    }
    .header__logo img {
        height: 28px;
    }
    .header__tagline {
        font-size: 12px;
    }
    .fv {
        padding: 10px 0 10px;
        min-height: auto;
    }
    .fv__inner {
        padding: 0 20px;
        flex-direction: column; 
        align-items: flex-start; 
    }
    .fv__content {
        width: 100%; 
        padding-right: 0; 
    }
    .fv__title {
        font-size: 28px; 
        line-height: 1.4;
    }
    .fv__title--large {
        font-size: 32px; 
    }
    .fv__title-underline {
        border-bottom: 3px solid #333;
        padding-bottom: 1px;
    }
    .fv__award {
        width: 100%;
        margin-top: 20px;
    }
    .fv__award-img--pc {
        display: none;
    }
    .fv__award-img--sp {
        display: block;
        width: 50%;
    }
    .fv__img-wrapper {
        position: absolute; 
        width: 45%; 
        bottom: -20px;
        right: 20px; 
        max-width: 250px; 
    }
    .fv__main-img {
        width: 115%;
        height: auto;
        display: block;
    }
    .company {
        padding: 20px 0 5px;
    }
    .company__title {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .cta {
        padding: 40px 0;
        background-color: #fff;
    }
    .cta__inner {
        max-width: 100%;
    }
    .cta__btn--pc {
        display: none;
    }
    .cta__sp-box {
        display: block;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 30px 20px;
        text-align: center;
    }
    .cta__sp-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .cta__btn--sp {
        font-size: 16px;
        padding: 15px;
    }
    .cta__btn--sp::after {
        content: '>';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .cta__btn--orange {
        background-color: #e66224;
        margin-bottom: 15px;
    }
    .cta__btn--gold {
        background-color: #e3a11b;
    }
    .cta__subtitle {
        font-size: 16px;
    }
    .cta__btn--orange-solid {
        font-size: 16px;
        padding: 15px;
    }
    .cta__btn--orange-solid::after {
        font-size: 20px;
        right: 20px;
    }

    /* Sections SP Layout */
    .description, .reason, .guid, .example {
        padding: 40px 0;
    }
    .description__cards, .reason__cards, .example__cards {
        flex-direction: column;
    }
    .guid__cards {
        grid-template-columns: 1fr;
    }
    .example-card__header {
        flex-direction: row;
        align-items: center;
    }
    .example-card__img {
        width: 90px;
        height: 90px;
    }
    .example-card__title {
        font-size: 18px;
    }
    .example-card__tag {
        font-size: 13px;
    }
}

