@charset "UTF-8";

/* ==================================
   法人向けサービスページ専用スタイル
   ================================== */

/* セクション1：ファーストビュー（ヒーローセクション） */
.c-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media all and (min-width: 640px) {
    .c-hero {
        height: 100vh;
    }
}

.c-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c-hero__bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 25%;
    object-position: 50% 25%;
    translate: -50% -50%;
}

@media all and (min-width: 640px) {
    .c-hero__bg {
        /* background-image: url('../images/mainimage_pc.jpg'); */
    }
}

.c-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
}

.c-hero__title {
    margin: 0;
}

.c-hero__title-main {
    display: block;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    color: #1976D2;
    margin-bottom: 20px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        -1px -1px 2px rgba(255, 255, 255, 0.9),
        1px 1px 2px rgba(255, 255, 255, 0.9);
}

@media all and (min-width: 640px) {
    .c-hero__title-main {
        font-size: 42px;
        line-height: 1.4;
    }
}

.c-hero__title-sub {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    text-shadow: 
        2px 2px 3px rgba(0, 0, 0, 0.4),
        -1px -1px 1px rgba(255, 255, 255, 0.9),
        1px 1px 1px rgba(255, 255, 255, 0.9);
}

@media all and (min-width: 640px) {
    .c-hero__title-sub {
        font-size: 20px;
    }
}

/* セクション2：導入のメリット */
.c-merit {
    padding: 80px 0;
    background-color: #F5F5F5;
}

@media all and (min-width: 640px) {
    .c-merit {
        padding: 100px 0;
    }
}

.c-merit__heading {
    text-align: center;
    margin-bottom: 60px;
}

.c-merit__subheading-img {
    display: block;
    margin: 0 auto 30px;
    width: 280px;
}

@media all and (min-width: 640px) {
    .c-merit__subheading-img {
        width: 365px;
        margin-bottom: 40px;
    }
}

.c-merit__heading-ja {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

@media all and (min-width: 640px) {
    .c-merit__heading-ja {
        font-size: 36px;
    }
}

.c-merit__cards {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

@media all and (min-width: 768px) {
    .c-merit__cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.c-merit__card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-merit__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.c-merit__card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #E3F2FD;
    border-radius: 50%;
    color: #2196F3;
}

.c-merit__card-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

@media all and (min-width: 640px) {
    .c-merit__card-title {
        font-size: 22px;
    }
}

.c-merit__card-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

@media all and (min-width: 640px) {
    .c-merit__card-text {
        font-size: 16px;
    }
}

/* セクション3：料金プラン */
.c-corporate-price {
    padding: 80px 0;
    background-color: #fff;
}

@media all and (min-width: 640px) {
    .c-corporate-price {
        padding: 100px 0;
    }
}

.c-corporate-price__heading {
    text-align: center;
    margin-bottom: 60px;
}

.c-corporate-price__heading-en {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #2196F3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media all and (min-width: 640px) {
    .c-corporate-price__heading-en {
        font-size: 16px;
    }
}

.c-corporate-price__heading-ja {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

@media all and (min-width: 640px) {
    .c-corporate-price__heading-ja {
        font-size: 36px;
    }
}

.c-corporate-price__plans {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
}

@media all and (min-width: 960px) {
    .c-corporate-price__plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

.c-corporate-price__plan {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 40px 30px;
    border: 2px solid #E0E0E0;
}

@media all and (min-width: 640px) {
    .c-corporate-price__plan {
        padding: 50px 40px;
    }
}

.c-corporate-price__plan--green {
    background: #F1F8E9;
    border-color: #AED581;
}

.c-corporate-price__plan-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

@media all and (min-width: 640px) {
    .c-corporate-price__plan-title {
        font-size: 26px;
    }
}

.c-corporate-price__plan-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

@media all and (min-width: 640px) {
    .c-corporate-price__plan-subtitle {
        font-size: 16px;
    }
}

.c-corporate-price__plan-feature {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 30px;
}

.c-corporate-price__table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.c-corporate-price__table thead {
    background: #E3F2FD;
}

.c-corporate-price__plan--green .c-corporate-price__table thead {
    background: #DCEDC8;
}

.c-corporate-price__table th,
.c-corporate-price__table td {
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #E0E0E0;
}

@media all and (min-width: 640px) {
    .c-corporate-price__table th,
    .c-corporate-price__table td {
        padding: 20px 15px;
        font-size: 16px;
    }
}

.c-corporate-price__table th {
    font-weight: bold;
    color: #1976D2;
}

.c-corporate-price__plan--green .c-corporate-price__table th {
    color: #388E3C;
}

.c-corporate-price__table tbody tr:last-child td {
    border-bottom: none;
}

.c-corporate-price__table tbody tr:hover {
    background: #F5F5F5;
}

.c-corporate-price__initial {
    background: #FFF3E0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.c-corporate-price__initial h4 {
    font-size: 20px;
    font-weight: bold;
    color: #F57C00;
    margin-bottom: 20px;
}

.c-corporate-price__initial ul {
    list-style: none;
    padding: 0;
}

.c-corporate-price__initial li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.c-corporate-price__discount {
    color: #F57C00;
    font-weight: bold;
}

.c-corporate-price__cta {
    text-align: center;
}

.c-corporate-price__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00C300;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 195, 0, 0.3);
}

.c-corporate-price__button:hover {
    background: #00A300;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 195, 0, 0.4);
}

/* 契約詳細情報セクション */
.c-corporate-price__details {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0 40px;
}

@media all and (min-width: 640px) {
    .c-corporate-price__details {
        padding: 50px;
    }
}

.c-corporate-price__details h4 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.c-corporate-price__details-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

@media all and (min-width: 768px) {
    .c-corporate-price__details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.c-corporate-price__details-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.c-corporate-price__details-item h5 {
    font-size: 18px;
    font-weight: bold;
    color: #1976D2;
    margin-bottom: 15px;
}

.c-corporate-price__details-item ul {
    list-style: none;
    padding: 0;
}

.c-corporate-price__details-item li {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.c-corporate-price__details-item li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #1976D2;
}

@media all and (min-width: 640px) {
    .c-corporate-price__details-item li {
        font-size: 16px;
    }
}

/* セクション4：ご契約の流れ */
.c-flow {
    padding: 80px 0;
    background-color: #F5F5F5;
}

@media all and (min-width: 640px) {
    .c-flow {
        padding: 100px 0;
    }
}

.c-flow__heading {
    text-align: center;
    margin-bottom: 60px;
}

.c-flow__heading-en {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #2196F3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media all and (min-width: 640px) {
    .c-flow__heading-en {
        font-size: 16px;
    }
}

.c-flow__heading-ja {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

@media all and (min-width: 640px) {
    .c-flow__heading-ja {
        font-size: 36px;
    }
}

.c-flow__steps {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    position: relative;
}

@media all and (min-width: 768px) {
    .c-flow__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media all and (min-width: 768px) {
    .c-flow__steps::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 16.66%;
        right: 16.66%;
        height: 2px;
        background: #E0E0E0;
        z-index: 0;
    }
}

.c-flow__step {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.c-flow__step-number {
    display: inline-block;
    background: #2196F3;
    color: #fff;
    width: 80px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}

.c-flow__step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #E3F2FD;
    border-radius: 50%;
    color: #2196F3;
}

.c-flow__step-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.c-flow__step-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

@media all and (min-width: 640px) {
    .c-flow__step-text {
        font-size: 16px;
    }
}

/* 福利厚生施設としてセクション */
.c-welfare {
    padding: 80px 0;
    background-color: #fff;
}

@media all and (min-width: 640px) {
    .c-welfare {
        padding: 100px 0;
    }
}

.c-welfare__heading {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #333;
    padding-bottom: 20px;
    margin-bottom: 50px;
    border-bottom: 2px solid #2196F3;
}

@media all and (min-width: 640px) {
    .c-welfare__heading {
        font-size: 32px;
    }
}

.c-welfare__items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.c-welfare__item {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #E3F2FD;
    color: #1976D2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    border: 3px solid #BBDEFB;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
}

@media all and (min-width: 640px) {
    .c-welfare__item {
        width: 200px;
        height: 200px;
        font-size: 22px;
    }
}

.c-welfare__text {
    font-size: 16px;
    line-height: 2;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* セクション5：最終アクション喚起 */
.c-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    text-align: center;
}

@media all and (min-width: 640px) {
    .c-final-cta {
        padding: 120px 0;
    }
}

.c-final-cta__heading {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

@media all and (min-width: 640px) {
    .c-final-cta__heading {
        font-size: 36px;
    }
}

.c-final-cta__text {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0.9;
}

@media all and (min-width: 640px) {
    .c-final-cta__text {
        font-size: 18px;
    }
}

.c-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #00C300;
    color: #fff;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@media all and (min-width: 640px) {
    .c-final-cta__button {
        font-size: 20px;
        padding: 30px 60px;
    }
}

.c-final-cta__button:hover {
    background: #00A300;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}

/* アニメーション */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* レスポンシブ対応の追加調整 */
@media not all and (min-width: 640px) {
    br.sp-hidden {
        display: none;
    }
}

@media all and (min-width: 640px) {
    br.sp {
        display: none;
    }
} 