* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #3A3A3A;
    margin: 0;
    padding: 0;
}

/* 飾り用フォント - Zen Maru Gothic */
.font-zenmaru {
    font-family: "Zen Maru Gothic", "Noto Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===========================================
   汎用CVボタンコンポーネント
   =========================================== */
.cv-section {
    padding: 4vw 0;
    background-color: transparent;
}

.cv-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2vw 6vw;
}

.cv-buttons {
    display: flex;
    gap: 2vw;
    justify-content: space-between;
    align-items: center;
}

.cv-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5vw 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 4vw;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cv-button::before {
    content: '';
    position: relative;
    width: 4.2vw;
    height: 4.2vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 1vw;
    flex-shrink: 0;
}

.cv-button__text {
    flex-shrink: 0;
}

.cv-button__arrow {
    font-size: 4vw;
    font-weight: 900;
    margin-left: 2vw;
    flex-shrink: 0;
}

/* 話を聞いてみるボタン - オレンジ */
.cv-button--interview {
    background-image: linear-gradient(90deg, rgba(251, 176, 59, 1) 10%, rgba(255, 147, 30, 1) 90%);
    flex: 1;
}

.cv-button--interview::before {
    background-image: url('../image/icon-cv-normal.svg');
}

.cv-button--interview:hover {
    background-image: linear-gradient(90deg, rgba(241, 166, 49, 1) 10%, rgba(245, 137, 20, 1) 90%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.3);
}

/* LINEボタン - LINE緑 */
.cv-button--line {
    background: linear-gradient(135deg, #00C300 0%, #00B300 100%);
    flex: 0.8;
}

.cv-button--line::before {
    background-image: url('../image/icon-cv-line.svg');
}

.cv-button--line:hover {
    background: linear-gradient(135deg, #00B300 0%, #00A300 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
}

/* 求人票を見るボタン - 白背景 */
.cv-button--offer {
    background: #fff;
    color: #20ADAC;
    border: 1px solid #20ADAC;
    flex: 1;
    padding: 3vw 0;
    box-shadow: none;
}

.cv-button--offer::before {
    background-image: url('../image/icon-cv-offer.svg');
}

.cv-button--offer:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: none;
}

/* 2行目のボタン用スタイル */
.cv-buttons--second {
    margin-top: 3vw;
    justify-content: flex-start;
}

.cv-buttons--second .cv-button {
    flex: 0 0 auto;
    width: 70%;
}

/* PC版調整 */
@media screen and (min-width: 769px) {
    .cv-section {
        padding: 20px 0;
    }
    
    .cv-container {
        padding: 0 20px;
    }
    
    .cv-buttons {
        gap: 15px;
    }
    
    .cv-button {
        padding: 15px 24px;
        font-size: 18px;
        min-width: 180px;
        justify-content: center;
        flex: 1;
    }
    
    .cv-button::before {
        position: relative;
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    
    .cv-button__text {
        flex-shrink: 0;
    }
    
    .cv-button__arrow {
        font-size: 18px;
        margin-left: 8px;
        flex-shrink: 0;
    }
    
    .cv-button--interview {
        flex: 1.4;
    }
    
    .cv-button--line {
        flex: 0.8;
    }
    
    .cv-button--offer {
        flex: 1;
        padding: 12px 0;
    }
    
    .cv-buttons--second {
        margin-top: 15px;
        justify-content: flex-start;
    }
    
    .cv-buttons--second .cv-button {
        flex: 0 0 auto;
        width: 260px;
    }
}

.lp-container {
    width: 100%;
    max-width: 465px;
    margin: 0 auto;
    background-color: #fff;
    background-image: url('../image/base.jpg');
    background-repeat: repeat;
    background-position: center;
    background-size: 600px;
}

.image-section {
    width: 100%;
    display: block;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* PC版（768px以上）での最大幅制限 */
@media screen and (min-width: 769px) {
    .lp-container {
        max-width: 465px;
    }
    
    .image-section img {
        width: 100%;
    }
}

/* スマホ版（768px以下）で100%サイズ */
@media screen and (max-width: 768px) {
    .lp-container {
        max-width: 100%;
        width: 100%;
    }
    
    .image-section img {
        width: 100%;
    }
}

/* 画像の読み込み最適化 - HTMLの属性で指定 */
img {
    max-width: 100%;
    height: auto;
    /* 画像の圧縮とレンダリング最適化 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* 画像の遅延読み込み用スタイル */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* 画像以外のセクション - スマホ版のみ */
section:not(.image-section) {
    padding: 0;
}

/* セクション内コンテンツコンテナ - スマホ版のみ */
.section-content {
    padding: 4vw 7vw 6vw;
}

/* 募集セクション */
#recruitment {
    background-color: transparent;
}

.section-inner {
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    text-align: left;
    margin-bottom: 5vw;
}

.section-title-en {
    display: block;
    font-size: 4.3vw;
    font-weight: bold;
    color: #20ADAC;
    letter-spacing: 0.1em;
    margin-bottom: 1vw;
    position: relative;
    padding-left: 6vw;
    text-transform: uppercase;
    font-variant-numeric: lining-nums;
}

.section-title-en::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4vw;
    height: 4vw;
    background-image: url('../image/icon-h2-01.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-title-ja {
    display: block;
    font-size: 7.8vw;
    line-height: 1.35;
    font-weight: bold;
    font-family: "Zen Maru Gothic", "Noto Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

.area-group {
    margin-bottom: 7vw;
}

.area-title {
    font-size: 5.6vw;
    font-weight: bold;
    color: #20ADAC;
    padding: 2.5vw 3vw 2.5vw 6vw;
    margin-bottom: 2vw;
    position: relative;
    font-family: "Zen Maru Gothic", "Noto Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

.area-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4vw;
    height: 4vw;
    background-image: url('../image/icon-h3-1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.recruitment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4vw;
    text-decoration: none;
    color: #333;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0.5vw 2vw rgba(194, 196, 194, 0.5);
    border-radius: 0.5rem;
    margin-bottom: 4vw;
}

.recruitment-item:last-child {
    border-bottom: none;
}

.recruitment-item:hover {
    background-color: #f0f8ff;
    transform: translateX(1vw);
}

.recruitment-name {
    font-size: 4.3vw;
    font-weight: 500;
    flex: 1;
}

.recruitment-arrow {
    font-size: 4.5vw;
    color: #20ADAC;
    font-weight: 900;
    margin-left: 2vw;
}

/* PC版調整 */
@media screen and (min-width: 769px) {
    /* セクション内コンテンツコンテナ - PC版 */
    .section-content {
        padding: 18px 32px 27px;
    }
    
    #recruitment {
        padding: 0;
    }
    
    .section-title {
        margin-bottom: 23px;
    }
    
    .section-title-en {
        font-size: 19px;
        margin-bottom: 4px;
        padding-left: 27px;
    }
    
    .section-title-en::before {
        width: 18px;
        height: 18px;
    }
    
    .section-title-ja {
        font-size: 36px;
    }
    
    .area-group {
        margin-bottom: 32px;
    }
    
    .area-title {
        font-size: 24px;
        padding: 11px 14px 11px 33px;
        margin-bottom: 9px;
    }
    
    .area-title::before {
        width: 24px;
        height: 24px;
    }
    
    .recruitment-item {
        padding: 14px 18px;
        box-shadow: 0 2px 9px rgba(194, 196, 194, 0.5);
        border-radius: 8px;
        margin-bottom: 16px;
    }
    
    .recruitment-item:hover {
        transform: translateX(4px);
    }
    
    .recruitment-name {
        font-size: 16px;
    }
    
    .recruitment-arrow {
        font-size: 20px;
        margin-left: 9px;
    }
}

/* ===========================================
   施設見学CVセクション
   =========================================== */
.interview-cv {
    width: 100%;
    position: relative;
    margin-bottom: 8vw;
}

.interview-cv__image-container {
    position: relative;
    width: 100%;
}

.interview-cv__image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.interview-cv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 34vw;
    bottom: -4vw;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.interview-cv__content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.interview-cv__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vw 8vw;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 4vw;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(251, 176, 59, 1) 10%, rgba(255, 147, 30, 1) 90%);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.interview-cv__button::before {
    content: '';
    position: relative;
    width: 3.8vw;
    height: 3.8vw;
    background-image: url('../image/icon-cv-normal.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 2vw;
    flex-shrink: 0;
}

.interview-cv__text {
    flex-shrink: 0;
}

.interview-cv__arrow {
    font-size: 4vw;
    font-weight: 900;
    margin-left: 2vw;
    flex-shrink: 0;
}

.interview-cv__button:hover {
    background-image: linear-gradient(90deg, rgba(241, 166, 49, 1) 10%, rgba(245, 137, 20, 1) 90%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 176, 59, 0.4);
}

/* PC版調整 */
@media screen and (min-width: 769px) {
    .interview-cv {
        margin-bottom: 37px;
    }
    
    .interview-cv__overlay {
        right: 158px;
        bottom: -18px;
    }
    
    .interview-cv__button {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .interview-cv__button::before {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    
    .interview-cv__arrow {
        font-size: 18px;
        margin-left: 8px;
    }
}

/* ===========================================
   LINE問い合わせCVセクション
   =========================================== */
.line-cv {
    width: 100%;
    position: relative;
    margin-bottom: 15vw;
}

.line-cv__image-container {
    position: relative;
    width: 100%;
}

.line-cv__image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.line-cv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 22vw;
    bottom: -3vw;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.line-cv__content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.line-cv__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vw 8vw;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 4vw;
    color: #fff;
    background: linear-gradient(135deg, #00C300 0%, #00B300 100%);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.line-cv__button::before {
    content: '';
    position: relative;
    width: 3.8vw;
    height: 3.8vw;
    background-image: url('../image/icon-cv-line.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 2vw;
    flex-shrink: 0;
}

.line-cv__text {
    flex-shrink: 0;
}

.line-cv__arrow {
    font-size: 4vw;
    font-weight: 900;
    margin-left: 2vw;
    flex-shrink: 0;
}

.line-cv__button:hover {
    background: linear-gradient(135deg, #00B300 0%, #00A300 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 195, 0, 0.4);
}

/* PC版調整 */
@media screen and (min-width: 769px) {
    .line-cv {
        margin-bottom: 69px;
    }
    
    .line-cv__overlay {
        right: 103px;
        bottom: -14px;
    }
    
    .line-cv__button {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .line-cv__button::before {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    
    .line-cv__arrow {
        font-size: 18px;
        margin-left: 8px;
    }
}

/* ===========================================
   フッター
   =========================================== */
.footer {
    background-color: #20ADAC;
    border-top: 1px solid #1A9B9A;
    padding: 6vw 4vw;
}

.footer__container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer__copyright {
    font-size: 2.8vw;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

/* フッター下余白（SP版フローティングボタン用） */
.footer-spacer {
    height: 20vw;
    background-color: #fff;
}

/* PC版調整 */
@media screen and (min-width: 769px) {
    .footer {
        padding: 30px 20px;
    }
    
    .footer__copyright {
        font-size: 12px;
        color: #fff;
    }
    
    /* PC版では余白不要 */
    .footer-spacer {
        display: none;
    }
}

/* ===========================================
   フローティングCVボタン（SP版のみ）
   =========================================== */
.floating-cv {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4vw 2vw;
}

.floating-cv--visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cv__container {
    max-width: 465px;
    margin: 0 auto;
}

.floating-cv__buttons {
    display: flex;
    gap: 2vw;
    justify-content: space-between;
    align-items: center;
}

.floating-cv__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5vw 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 4vw;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.floating-cv__button::before {
    content: '';
    position: relative;
    width: 4.3vw;
    height: 4.3vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 1vw;
    flex-shrink: 0;
}

.floating-cv__text {
    flex-shrink: 0;
}

.floating-cv__arrow {
    font-size: 3.5vw;
    font-weight: 900;
    margin-left: 1.5vw;
    flex-shrink: 0;
}

/* 話を聞いてみるボタン - オレンジ */
.floating-cv__button--interview {
    background-image: linear-gradient(90deg, rgba(251, 176, 59, 1) 10%, rgba(255, 147, 30, 1) 90%);
}

.floating-cv__button--interview::before {
    background-image: url('../image/icon-cv-normal.svg');
}

.floating-cv__button--interview:hover {
    background-image: linear-gradient(90deg, rgba(241, 166, 49, 1) 10%, rgba(245, 137, 20, 1) 90%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.3);
}

/* 求人票を見るボタン - 白背景 */
.floating-cv__button--offer {
    background: #fff;
    color: #20ADAC;
    border: 1px solid #20ADAC;
    flex: 0.9;
}

.floating-cv__button--offer::before {
    background-image: url('../image/icon-cv-offer.svg');
}

.floating-cv__button--offer:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 173, 172, 0.2);
}

/* PC版では非表示 */
@media screen and (min-width: 769px) {
    .floating-cv {
        display: none;
    }
    
    /* PC版専用：背景とlp-containerのスタイル */
    body {
        background-image: url('../image/pc-bg6.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
    }
    
    .lp-container {
        box-shadow: 0 0 30px rgb(94 105 105 / 40%);
    }
    
    /* PC版専用：左上固定ナビゲーション */
    .pc-fixed-nav-left {
        position: fixed;
        top: 50px;
        left: calc(50% - 600px);
        z-index: 1000;
        max-width: 280px;
        font-family: "Zen Maru Gothic", "Noto Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    }
    
    .pc-nav-logo img {
        width: 350px;
        height: auto;
        margin-bottom: 20px;
    }
    
    .pc-nav-text {
        margin-bottom: 20px;
    }
    
    .pc-nav-text p {
        font-size: 18px;
        line-height: 1.65;
        font-weight: bold;
        margin: 0;
        letter-spacing: 0.04em;
    }
    
    .pc-nav-links ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .pc-nav-links li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 18px;
        border-bottom: 5px dotted #fff;
        padding-bottom: 4px;
        transition: border-bottom-color 0.8s ease;
    }
    
    .pc-nav-links li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        background-image: url('../image/icon-h3-1.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .pc-nav-links a {
        display: block;
        text-decoration: none;
        color: #3A3A3A;
        font-size: 18px;
        font-weight: bold;
        padding: 5px 12px;
        border-radius: 5px;
        transition: all 0.8s ease;
    }
    
    .pc-nav-links a:hover {
        color: #20ADAC;
    }
    
    .pc-nav-links li:hover {
        border-bottom-color: #20ADAC;
    }
    
    /* PC版専用：右下固定CVボタン */
    .pc-fixed-cv-right {
        position: fixed;
        bottom: 30px;
        right: calc(50% - 600px);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .pc-cv-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
        color: #fff;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        min-width: 200px;
    }
    
    .pc-cv-button::before {
        content: '';
        position: relative;
        width: 26px;
        height: 26px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-right: 4px;
        flex-shrink: 0;
    }
    
    .pc-cv-button__text {
        flex-shrink: 0;
    }
    
    .pc-cv-button__arrow {
        font-size: 16px;
        font-weight: 900;
        margin-left: 8px;
        flex-shrink: 0;
    }
    
    /* 求人票を見るボタン - 白背景 */
    .pc-cv-button--offer {
        background: #fff;
        color: #20ADAC;
        border: 2px solid #20ADAC;
        box-shadow: none;
    }
    
    .pc-cv-button--offer::before {
        background-image: url('../image/icon-cv-offer.svg');
    }
    
    .pc-cv-button--offer:hover {
        background: #f0f8ff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(32, 173, 172, 0.2);
    }
    
    /* LINEボタン - LINE緑 */
    .pc-cv-button--line {
        background: linear-gradient(135deg, #00C300 0%, #00B300 100%);
    }
    
    .pc-cv-button--line::before {
        background-image: url('../image/icon-cv-line.svg');
    }
    
    .pc-cv-button--line:hover {
        background: linear-gradient(135deg, #00B300 0%, #00A300 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
    }
    
    /* 話を聞いてみるボタン - オレンジ */
    .pc-cv-button--interview {
        background-image: linear-gradient(90deg, rgba(251, 176, 59, 1) 10%, rgba(255, 147, 30, 1) 90%);
    }
    
    .pc-cv-button--interview::before {
        background-image: url('../image/icon-cv-normal.svg');
    }
    
    .pc-cv-button--interview:hover {
        background-image: linear-gradient(90deg, rgba(241, 166, 49, 1) 10%, rgba(245, 137, 20, 1) 90%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(251, 176, 59, 0.3);
    }
    
    /* レスポンシブ対応 */
}

/* デスクトップ小（1366px以下：小型ノートPC） */
@media screen and (min-width: 769px) and (max-width: 1366px) {
    .pc-fixed-nav-left {
        left: 50px;
    }
    
    .pc-fixed-cv-right {
        right: 50px;
    }
}

/* ラップトップ・小型デスクトップ（1024px以下：iPad Pro横向き、小型ラップトップ） */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .pc-nav-logo img {
        width: 20vw;
        max-width: 200px;
    }
    
    .pc-nav-text p {
        font-size: clamp(10px, 1.2vw, 14px);
    }
    
    .pc-nav-links a {
        font-size: clamp(12px, 1.4vw, 18px);
    }
    
    .pc-cv-button {
        padding: 1vw 1.6vw;
        font-size: clamp(12px, 1.4vw, 16px);
        min-width: 16vw;
    }
    
    .pc-cv-button::before {
        width: 1.6vw;
        height: 1.6vw;
        margin-right: 0.6vw;
    }
    
    .pc-cv-button__arrow {
        font-size: clamp(12px, 1.4vw, 16px);
        margin-left: 0.6vw;
    }
}

/* タブレット横向き（768px以下：iPad横向き、中型タブレット） */
@media screen and (max-width: 768px) {
    .pc-fixed-nav-left,
    .pc-fixed-cv-right {
        display: none !important;
    }
}