/* ========================================
   リヤンド-絆-荻窪 採用LP スタイルシート
======================================== */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.PC-CSS { display: inline-block !important; }
.SP-CSS { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width:599px) {
.PC-CSS { display: none !important; }
.SP-CSS { display: inline-block !important;}
.SP-none{ display: none !important; }
}
/* ========================================
   リセット・基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* ========================================
   共通クラス
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-gray {
    background-color: #f8f9fa;
}

.section-primary {
    background-image: linear-gradient(90deg, rgba(0, 175, 187, 1) 10%, rgba(0, 190, 128, 1) 90%);
    color: #fff;
}

/* セクションタイトル */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-image: linear-gradient(90deg, rgba(0, 175, 187, 1) 10%, rgba(0, 190, 128, 1) 90%);
    border-radius: 2px;
}

.section-title.no-underline{
    margin-bottom: 0;
}

.section-title.no-underline::after {
    display: none;
}

/* フォーム紹介文 */
.form-intro-text {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}



.section-title-white {
    color: #fff;
}

.section-lead {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
}

/* 画像プレースホルダー */
.image-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
    border-radius: 8px;
    overflow: hidden;
}

/* ボタン */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-note {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-main-text {
    position: relative;
    padding-right: 30px;
}

.btn-main-text::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.btn-primary {
    background: linear-gradient(135deg, #fda32e 0%, #f58220 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(253, 163, 46, 0.4);
}

.btn-primary:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 163, 46, 0.5);
}

.btn-white {
    background: #fff;
    color: #27a5a4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 13px 50px;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.header-logo img {
    height: 50px;
    width: auto;
    margin-top: -15px;
}

.header-subtitle {
    font-size: 0.9rem;
    color: #27a5a4;
    font-weight: 600;
    margin: 0;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #27a5a4;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
}

.tel-icon {
    font-size: 1.2rem;
}

.tel-number {
    font-size: 1.1rem;
}

/* ========================================
   メインビジュアル
======================================== */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0;
    max-width: 100%;
}

.hero-image {
    flex: 1;
}

.hero-image .image-placeholder {
    height: 600px;
    border-radius: 0;
    border: none;
    overflow: hidden;
}

.hero-image .image-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #27a5a4;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-description {
    margin-bottom: 20px;
}

.hero-description p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-block;
    background-color: #fff;
    color: #27a5a4;
    padding: 3px 25px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid #27a5a4;
}

.hero-cta {
    margin-top: 20px;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* ========================================
   リヤンド-絆-荻窪とは
======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-image .image-placeholder {
    height: 400px;
}

.about-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #27a5a4;
}

.about-text p {
    margin-bottom: 20px;
}

.about-mission {

}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
}

.mission-text strong {
    color: #27a5a4;
    font-size: 1.4rem;
}

.about-conclusion {
    font-weight: 700;
    color: #333;
}

.about-access {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin:5rem 0 0;
}

.access-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-title i {
    color: rgba(0, 175, 187, 1);
    font-size: 1.6rem;
}

.access-info {
    margin-bottom: 30px;
}

.access-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.access-map .image-placeholder {
    height: 350px;
}

/* リヤンド-絆-荻窪の職場の特長 */
.about-features {
    margin-top: 60px;
}

.features-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #27a5a4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, rgba(0, 175, 187, 1) 10%, rgba(0, 190, 128, 1) 90%);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    text-align: center;
    line-height: 1.4;
}

.feature-item-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    text-align: left;
}

/* ========================================
   選ばれる4つの理由
======================================== */
.reasons {
    background-color: #eef4f7;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.reason-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}


.reason-number {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: inline-block;
    background: linear-gradient(90deg, rgba(0, 175, 187, 1) 10%, rgba(0, 190, 128, 1) 90%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.reason-image {
    position: relative;
    margin-bottom: 20px;
}

.reason-image .image-placeholder {
    height: 230px;
}

.reason-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.reason-text {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.reason-list {
    margin-top: 15px;
    padding-left: 20px;
}

.reason-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
}

.reason-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27a5a4;
    font-weight: 700;
}

/* ========================================
   先輩職員の声
======================================== */
.interview-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.interview-main:last-of-type {
    margin-bottom: 0;
}

.interview-image .image-placeholder {
    height: 260px;
}

.interview-image .image-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-position {
    font-size: 0.9rem;
    color: #27a5a4;
    font-weight: 700;
}

.interview-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.interview-text {
    margin-bottom: 25px;
    color: #666;
}

.interview-quote {
    font-style: normal;
    line-height: 1.9;
    color: #555;
}

.features-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-item-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   募集要項
======================================== */
.recruitment-image {
    margin-bottom: 50px;
}

.recruitment-image .image-placeholder {
    height: 350px;
}

.recruitment-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.recruitment-table th,
.recruitment-table td {
    padding: 25px 30px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.recruitment-table th {
    background-color: #27a5a4;
    color: #fff;
    font-weight: 700;
    width: 200px;
    vertical-align: top;
}

.recruitment-table td {
    background-color: #fff;
}

.recruitment-table tr:last-child th,
.recruitment-table tr:last-child td {
    border-bottom: none;
}

.recruitment-table ul {
    margin-top: 10px;
    padding-left: 20px;
}

.recruitment-table ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.recruitment-table ul li:before {
    content: '●';
    position: relative;;
    left: -10px;
    color: #c7c7c7;
    font-size: 0.7em;
}

.salary-main {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.salary-main span{
    color: #fda32e;
    font-size: 1.4rem;
}

.salary-detail {
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
}

.note1 {
    color: #fda32e;
    font-weight: 700;
    margin-top: 0;
}

.note2 {
    color: #6d6d6d;
    font-size: 90%;
    margin-top: 10px;
}

.recruitment-cta-note {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #555;
    position: relative;
    display: table;
    padding: 0 30px;
}

.recruitment-cta-note::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 30px;
    height: 3px;
    background-color: #555;
    border-radius: 100px;
    transform: translateY(-50%) rotate(55deg);
}

.recruitment-cta-note::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 30px;
    height: 3px;
    background-color: #555;
    border-radius: 100px;
    transform: translateY(-50%) rotate(-55deg);
}

.recruitment-cta {
    background: linear-gradient(135deg, #fda32e 0%, #f58220 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(253, 163, 46, 0.3);
}

.recruitment-cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.recruitment-cta-image {
    flex-shrink: 0;
}

.recruitment-cta-image img {
    max-width: 250px;
    height: auto;
}

.recruitment-cta-action {
    text-align: center;
}

.recruitment-cta-lead {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.recruitment-cta .btn-white {
    background: #fff;
    color: #f58220;
    font-weight: 700;
}

.recruitment-cta .btn-white:hover {
    background: #fff;
    opacity: 0.9;
}

/* ========================================
   よくある質問
======================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    gap: 20px;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    list-style: none;
    user-select: none;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 700;
    color: #27a5a4;
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    display: flex;
    gap: 20px;
    padding: 0 30px 30px 30px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-q,
.faq-a {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.faq-q {
    background-color: #27a5a4;
    color: #fff;
}

.faq-a {
    background-color: #28a745;
    color: #fff;
}

.faq-question p,
.faq-answer p {
    flex: 1;
    line-height: 1.5;
}

.faq-question p {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    padding-right: 40px;
}

.faq-answer p {
    color: #666;
}

/* ========================================
   お問い合わせ・応募
======================================== */
.contact-image {
    margin-bottom: 40px;
}

.contact-image .image-placeholder {
    color: #fff;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.contact-image,.contact-info,.contact-action{flex:1;}


.contact-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: rgba(0, 190, 128, 1);
    text-align: center;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 1000px;
    position: relative;
    display: inline-block;
    width: auto;
}

.contact-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
}

.contact-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 20px;
}

.contact-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 35px;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #fff;
    color: rgba(0, 190, 128, 1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.contact-message {
    margin-bottom: 40px;
}

.contact-message p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-message-highlight {
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 20px;
}

.contact-cta {
    margin-bottom: 50px;
    text-align: center;
}

.contact-cta .btn {
    padding: 20px 60px;
    font-size: 1.4rem;
}

.contact-tel {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
}

.contact-tel-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-tel-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-tel-number a {
    color: #fff;
}

.contact-tel-hours {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-info {
    text-align: center;
    margin-bottom: 30px;
}

.footer-company {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========================================
   ページトップボタン
======================================== */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fda32e 0%, #f58220 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 163, 46, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.page-top.visible {
    opacity: 1;
    visibility: visible;
}

.page-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(253, 163, 46, 0.5);
}

.page-top span {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media (max-width: 768px) {
    /* 共通 */
    .section {
        padding: 10vw 0;
    }

    .section-title {
        font-size: 7vw;
        margin-bottom: 7vw;
    }

    .sp-only {
        display: block;
    }

    .section-lead {
        text-align: center;
        font-size: 4.2vw;
        margin-bottom: 7vw;
        color: #666;
        line-height: 1.5;
    }

    .form-intro-text {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    
    /* ヘッダー */
    .header{
        padding:3vw 0;
        z-index: 1;
        position: sticky;
        width: 40vw;
        border-radius: 0 0 2vw 0;
    }

    .header .container {
        flex-direction: unset;
        gap: 4vw;
        padding: 0 0 0 4vw;
    }

    .header-logo {
        flex-direction: unset;
        gap: 1.33vw;
        text-align: left;
    }

    .header-logo img {
        height: 7vw;
        margin-top: -2vw;
    }

    .header-subtitle {
        font-size: 3vw;
        font-weight: 500;
    }

    /* メインビジュアル */
    .hero{
        margin: -12vw 0 0;
    }
    .hero .container {
        flex-direction: column;
        padding: 0;
        gap: 0;
        max-width: 100%;
    }

    .hero-image {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .hero-image .image-placeholder {
        height: 70vw;
        border-radius: 0;
    }

     .hero-image .image-placeholder img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scaleX(-1);
     }

    .hero-content {
        padding: 3vw 5vw 8vw;
        text-align: center;
    }

    .hero-title {
        font-size: 7vw;
        margin-bottom: 2vw;
        line-height: 1.2;
        margin-top: -9vw;
        padding: 1vw 5vw 4vw;
        background-image: linear-gradient(90deg, rgba(0, 175, 187, 1) 10%, rgba(0, 190, 128, 1) 90%);
        border-radius: 2vw;
        color: #FFF;
        letter-spacing: 0.08em;
        position: sticky;
    }

      .hero-title span{
        font-size: 4vw;
      }

    .hero-subtitle {
        font-size: 4.2vw;
        margin: 4vw 0 2vw;
    }

    .hero-description p {
        font-size: 4vw;
        text-align: left;
    }

    .hero-features {
        align-items: center;
        justify-content: center;
        margin-bottom: 2vw;
    }

    .feature-tag {
        padding: 1vw 3vw;
        font-size: 3.5vw;
        border: 1px solid #27a5a4;
    }

    /* リヤンド-絆-荻窪とは */
    .about-content {
        grid-template-columns: 1fr;
        gap: 8vw;
    }

    .about-subtitle {
        font-size: 6vw;
    }

    .mission-text {
        font-size: 4.4vw;
    }

    .mission-text strong {
        font-size: 4.8vw;
    }

    .about-access {
        padding: 8vw 5vw 5vw;
        margin-top: 10vw;
    }

    .access-title{
        font-size: 6vw;
        margin-bottom: 3vw;
        line-height: 1;
    }

    .access-info{
        margin-bottom: 5vw;
    }

    .access-info p {
        font-size: 4vw;
        margin-bottom: 2vw;
        line-height: 1.5;
    }

    /* リヤンド-絆-荻窪の職場の特長 */
    .about-features {
        margin-top: 10.67vw;
    }

    .features-title {
        font-size: 6vw;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10vw 3vw;
    }

    .feature-icon {
        width: 16vw;
        height: 16vw;
        font-size: 7vw;
        margin-bottom: 3vw;
        margin-top: -10vw;
    }

    .feature-item {
        padding: 4vw;
    }

    .feature-item-title {
        font-size: 4.4vw;
        margin-bottom: 2vw;
    }

    .feature-item-text {
        font-size: 3.8vw;
    }

    /* 選ばれる4つの理由 */
    .reasons-grid {
        display: block;
    }
    
    .reasons-grid.slick-initialized {
        padding-bottom: 1vw;
    }
    
    .reasons-grid .reason-card {
        margin: 0 2.67vw;
    }
    
    /* Slickドットナビゲーション */
    .reasons-grid .slick-dots {
        bottom: -10vw;
        display: flex !important;
        justify-content: center;
        gap: 2vw;
        padding: 0;
        list-style: none;
    }
    
    .reasons-grid .slick-dots li {
        width: auto;
        height: auto;
        margin: 0;
    }
    
    .reasons-grid .slick-dots li button {
        width: 2.67vw;
        height: 2.67vw;
        padding: 0;
        border-radius: 50%;
        background: rgba(0, 175, 187, 0.3);
        border: none;
        font-size: 0;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .reasons-grid .slick-dots li button:before {
        content: '';
        display: none;
    }
    
    .reasons-grid .slick-dots li.slick-active button {
        background: rgba(0, 175, 187, 1);
        width: 8vw;
        border-radius: 1.33vw;
    }

    .reason-title {
        font-size: 5vw;
        line-height: 1.5;
        margin-bottom: 2vw;
    }
    
    .reason-text {
        font-size: 3.8vw;
        line-height: 1.8;
    }

    .reason-image .image-placeholder {
        height: 50vw;
    }

    .reason-image .image-placeholder img{
        width: 100%;
        height: 100%;
        object-fit: cover;
     }

    .reason-number {
        position: absolute;
        top: -1vw;
        left: -1vw;
        padding: 1vw 3vw;
        font-size: 3.5vw;
    }

    .reason-card{
        padding:5vw;
    }


    /* 先輩職員の声 */
    .interview-slider {
        display: block;
    }
    
    .interview-slider.slick-initialized {
        padding-bottom: 1vw;
    }
    
    .interview-slider .interview-main {
        margin: 0 2.67vw;
    }
    
    /* Slickドットナビゲーション（先輩職員の声） */
    .interview-slider .slick-dots {
        bottom: -10vw;
        display: flex !important;
        justify-content: center;
        gap: 2vw;
        padding: 0;
        list-style: none;
    }
    
    .interview-slider .slick-dots li {
        width: auto;
        height: auto;
        margin: 0;
    }
    
    .interview-slider .slick-dots li button {
        width: 2.67vw;
        height: 2.67vw;
        padding: 0;
        border-radius: 50%;
        background: rgba(0, 175, 187, 0.3);
        border: none;
        font-size: 0;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .interview-slider .slick-dots li button:before {
        content: '';
        display: none;
    }
    
    .interview-slider .slick-dots li.slick-active button {
        background: rgba(0, 175, 187, 1);
        width: 8vw;
        border-radius: 1.33vw;
    }

    .interview-main {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .interview-title {
        font-size: 5.5vw;
    }

    .interview-text {
    margin-bottom: 4vw;
    font-size: 4vw;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 4vw;
}

    .interview-image .image-placeholder {
        height: 40vw;
        border-radius: 3vw 3vw 0 0;
    }

.interview-content{
    padding:5vw 5vw 8vw;
}

.interview-quote{
    font-size: 3.8vw;
}



    /* 募集要項 */
    .recruitment-table {
        border-radius: 3vw;
        box-shadow: 0 1.07vw 4vw rgba(0, 0, 0, 0.08);
    }
    
    .recruitment-table tr {
        display: block;
        margin-bottom: 0;
        border-bottom: 0.27vw solid #e9ecef;
    }
    
    .recruitment-table tr:last-child {
        border-bottom: none;
    }
    
    .recruitment-table th,
    .recruitment-table td {
        display: block;
        width: 100%;
        padding: 3.73vw 5.33vw;
        border: none;
    }

    .recruitment-table th {
        background-color: #FFF;
        color: #27a5a4;
        font-weight: 700;
        padding: 4vw 4vw 2vw;
        font-size: 4vw;
        border-bottom: none;
    }

    .recruitment-table td {
        padding: 0 4vw 4vw;
        font-size: 4vw;
        line-height: 1.5;
        background-color: #fff;
    }

    .recruitment-table ul {
        margin-top: 2.67vw;
        padding-left: 4vw;
    }

    .recruitment-table ul li {
        padding-left: 1.33vw;
        margin-bottom: 2.13vw;
        font-size: 3.73vw;
        line-height: 1.7;
    }

    .recruitment-table ul li:before {
        content: '●';
        left: -2.67vw;
        color: #b4b4b4;
        font-size: 0.6em;
    }

    .salary-main {
        font-size: 4.8vw;
        margin-bottom: 3.2vw;
    }

    .salary-detail {
        font-size: 3.73vw;
        margin-top: 3.2vw;
        margin-bottom: 1.6vw;
    }

    .note {
        font-size: 3.73vw;
        margin-top: 2.67vw;
    }

    .faq-question {
    display: flex;
    gap: 3vw;
    padding: 4vw;
    cursor: pointer;
    position: relative;
    list-style: none;
    user-select: none;
    align-items: center;
}

.faq-question p {
    font-size: 4.2vw;



    padding-right: 5vw;
}

.faq-q, .faq-a {
    flex-shrink: 0;
    width: 9vw;
    height: 9vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 5vw;
}

.faq-answer {
    display: flex;
    gap: 3vw;
    padding: 0 4vw 6vw;
    animation: slideDown 0.3s ease-out;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 700;
    color: #27a5a4;
    transition: transform 0.3s;
}

    .recruitment-cta {
        padding: 6.67vw 5.33vw;
        border-radius: 3vw;
    }

    .recruitment-cta-content {
        flex-direction: column;
        gap: 5.33vw;
    }

    .recruitment-cta-image img {
        max-width: 46.67vw;
    }

    .recruitment-cta-lead {
        font-size: 3.73vw;
        margin-bottom: 4vw;
    }

    .recruitment-cta-note {
        font-size: 5.73vw;
        line-height: 1.7;
        margin-top: 10vw;
        margin-bottom: 5vw;
        padding: 0 2.67vw;
        line-height: 1.3;
    }

    .recruitment-cta-note::before {
        content: '';
        position: absolute;
        left: -9vw;
        top: 50%;
        width: 15vw;
        height: 1vw;
        background-color: #bebebe;
        border-radius: 100px;
        transform: translateY(-50%) rotate(55deg);}

    .recruitment-cta-note::after {
        content: '';
        position: absolute;
        right: -9vw;
        top: 50%;
        width: 15vw;
        height: 1vw;
        background-color: #bebebe;
        border-radius: 100px;
        transform: translateY(-50%) rotate(-55deg);
    }

    /* ボタン */
    .btn-large {
        padding: 4vw 0;
        font-size: 4.27vw;
        width: 100%;
    }
    
    .btn-note {
        font-size: 3.2vw;
    }
    
    .btn-main-text {
        font-size: 4.27vw;
    }

    /* ページトップボタン */
    .page-top {
        bottom: 5.33vw;
        right: 5.33vw;
        width: 13.33vw;
        height: 13.33vw;
    }

    .page-top span {
        font-size: 4.8vw;
    }

    .about-image .image-placeholder {
        height: 65vw;
    }

    /* よくある質問 */
    .faq-item {
        margin-bottom: 5.33vw;
    }

    .faq-question {
        padding: 6vw 5.33vw;
    }

    .faq-question::after {
        right: 5.33vw;
        font-size: 6vw;
    }

    .faq-answer {
        padding: 0 5.33vw 6vw 5.33vw;
    }

    .faq-q,
    .faq-a {
        width: 10vw;
        height: 10vw;
        font-size: 4.8vw;
    }

    .faq-question p {
        font-size: 4.27vw;
        padding-right: 10vw;
        line-height: 1.6;
    }

    .faq-answer p {
        font-size: 3.73vw;
        line-height: 1.8;
    }

    /* お問い合わせ・応募 */
    .contact-content {
        flex-direction: column;
        gap: 8vw;
        padding: 0 3vw;
    }

    .contact-image {
        margin-bottom: 0;
        order: -1;
    }

    .contact-image .image-placeholder {
        height: auto;
    }

    .contact-image img {
        max-width: 53.33vw;
        margin: 0 auto;
        display: block;
    }

    .contact-subtitle {
        font-size: 4.8vw;
        padding: 2vw 0;
        margin-bottom: 6.67vw;
        width: 100%;
    }

    .contact-subtitle::after {
        bottom: -4vw;
        border-left-width: 4vw;
        border-right-width: 4vw;
        border-top-width: 4vw;
    }

    .contact-list {
        margin-bottom: 6.67vw;
    }

    .contact-list li {
        font-size: 3.73vw;
        margin-bottom: 3.2vw;
        padding-left: 9.33vw;
        line-height: 1.7;
    }

    .contact-list li::before {
        width: 6.4vw;
        height: 6.4vw;
        font-size: 3.2vw;
        border-radius: 1.6vw;
    }

    .contact-message {
        margin-bottom: 8vw;
    }

    .contact-message p {
        font-size: 3.73vw;
        margin-bottom: 2.67vw;
        line-height: 1.7;
        text-align: center;
    }

    .contact-message-highlight {
        font-size: 4.27vw;
        margin-top: 5.33vw;
    }

    .contact-cta {
        margin-bottom: 0;
    }

    .contact-cta .btn {
        padding: 4vw 0;
        font-size: 4.27vw;
        width: 100%;
    }




}



/*---------------------
以下フォーム本体CSS
---------------------*/

/*--基本設定---*/
.form-item{margin-top: 1rem;display: flex;}
.form-group-label{display: flex; border: none; padding: 0; margin: 0;}
.form-wraps{display: block;max-width: 900px;margin: 0  auto; font-size: 18px;}
.form-label-wrapper{ display: flex;align-items: center;width: 30%; letter-spacing: -0.03em; flex-shrink: 0;}    
.form-input-wrapper{ width: 70%; }
.fieldset{display: flex; flex-shrink: 0;align-items: center;}
.form-group-label{width: 100%; border: none; padding: 0; margin: 0;}
.deta-label{font-weight: 600; color: #333; font-size: 18px;}

/*--必須・任意---*/
.required{ display: inline; color: #FFF;
background: #27a5a4; margin-left: 10px; font-size: 11px;
padding: 4px 8px 5px; line-height: 1; border-radius: 3px;}
.optional{display: inline; color: #FFF;background: #b9b9b9;font-size: 11px; margin-left: 10px;
line-height: 1; border-radius: 3px; padding: 4px 8px 5px; line-height: 1; border-radius: 3px;}

/*--エラー---*/
.form-error{ font-size: 12px; color: #d9534f; font-weight: 500;}

/*--input type="text" 設定---*/
input{box-sizing: border-box;}
input[type="text"]{display: block;width: 100%; padding: 0.5rem 0.75rem;line-height: 1.5;
background-image: none;background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.15);border-radius: 0.25rem; font-size: 18px;}

input[type="text"]{transition: all 0.3s;}
input[type="text"]:hover{border-color: #27a5a4;}
input[type="text"]:focus { border-color: #27a5a4; outline: none;}

/*--select  設定---*/
select {appearance: none;-moz-appearance: none;-webkit-appearance: none; border: none;
border-radius: 0.25rem;padding: 0.5rem 0.75rem;line-height: 1.5;
position: relative;border: 1px solid rgba(0, 0, 0, 0.15); cursor: pointer; width: 500px; font-size: 18px;}
option[selected][disabled] {display: none;}
select:hover{border-color: #27a5a4;}
select:focus {border-color: #27a5a4;outline: none;}

/*--select custom---*/
.option-arrow{position: relative; display: inline-block;}
.option-arrow::after{content: '';
width: 8px; height: 8px; margin-top: -5px;
border-top: solid 2px #27a5a4;border-right: solid 2px #27a5a4;  
transform: rotate(135deg); position: absolute; top: 50%;right: 20px;}

/*--複数選択---*/
.form-option{padding: 0.5rem 1rem 0.5rem 0.75rem;
border-radius: 0.25rem; display: inline-block;border: 1px solid rgba(0, 0, 0, 0.15);
cursor: pointer;line-height: 1.5; margin-right: 0.3rem;transition: all 0.3s;display: inline-flex;
align-items: center; flex-shrink: 0; font-size: 18px;}
.form-option:hover{ background-color: #e7ffff;border-color: #27a5a4;}

/*--checkbox カスタマイズ---*/
/* input自体は非表示（ただしフォーカス・操作は残す） */
.form-option input[type="checkbox"] { position: absolute;opacity: 0; pointer-events: none;}
/* カスタムチェックボックスの枠 */
.custom-checkbox {width: 1em; height: 1em;  border: 2px solid #666;
border-radius: 4px;display: inline-block; position: relative; box-sizing: border-box;
transition:0.2s ease; margin-right: 0.5em;}
/* チェック時のスタイル*/
.form-option input[type="checkbox"]:checked + .custom-checkbox::after {
  content: "";position: absolute;left: 3px;top: 0px;
  width: 5px;height: 8px;border: solid #FFF;border-width: 0 2px 2px 0;transform: rotate(45deg);}
/* チェック時の背景色変更 */
.form-option input[type="checkbox"]:checked + .custom-checkbox {
  background-color: #27a5a4;border-color: #27a5a4;}

/*--自由入力エリア---*/
.form-textarea textarea{padding: 0.5rem 1rem 0.5rem 0.75rem;border-radius: 0.25rem;
width: 100%; box-sizing: border-box; border: 1px solid rgba(0, 0, 0, 0.15);height: 6em; font-size: 18px;}
.form-textarea textarea:focus{border-color: #27a5a4;outline: none;}

/*--プライバシーポリシー---*/
/* ラベルの基本構造 */
.custom-checkbox-label {
  display: flex;align-items: center;cursor: pointer;user-select: none;line-height: 1.5;position: relative;}
/* input本体を消す */
.custom-checkbox-label input[type="checkbox"] {position: absolute; opacity: 0;  pointer-events: none;}
/* 見た目のチェックボックス */
.custom-checkbox {width: 1em;height: 1em;border: 2px solid #666;border-radius: 4px;
display: inline-block; position: relative; box-sizing: border-box;
transition: 0.2s ease; margin-right: 0.5em;}
/* チェックマーク（?） */
.custom-checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
content: "";position: absolute;top: 2px; left: 4px;  width: 4px;height: 8px;
border: solid #FFFFFF;border-width: 0 2px 2px 0;transform: rotate(45deg);}
/* チェック時の背景変化 */
.custom-checkbox-label input[type="checkbox"]:checked + .custom-checkbox {
background-color: #27a5a4; border-color: #27a5a4;}
.custom-checkbox-label{margin-top: 10px;padding: 0.5rem 1rem 0.5rem 0.75rem;
border-radius: 0.25rem;border: 1px solid rgba(0, 0, 0, 0.15); font-size: 18px;}
.custom-checkbox-label:hover{background-color: #e7ffff;border-color: #27a5a4;}
.privacy-policy-item a{text-decoration: underline;}

/*--送信ボタン---*/
.submit-btn{ background-color: transparent; border: none;cursor: pointer; outline: none; appearance: none;
background-image: linear-gradient(90deg, rgba(251, 176, 59, 1) 10%, rgba(255, 147, 30, 1) 90%);
padding: 20px; border-radius: 50px;width: 70%; margin: 25px auto 0;
text-align: center;display: block; color: #FFF; font-weight: bold;outline: none;
font-size: 20px; letter-spacing: 0.08em; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);transition: .3s all;position: relative; top: 0;}

.submit-btn:hover{top: 4px;box-shadow: 0 0px 0px rgba(0, 0, 0, .1);}

@media screen and (max-width: 768px) {
select {width: 120%;padding: 0.9rem 0.75rem;font-size: 4vw;}
.option-arrow::after{right: -12%;}
input[type="text"] {padding: 0.9rem 0.75rem;font-size: 4vw;}
.form-option {padding:0.9rem 1rem 0.9rem 1rem;}
.custom-checkbox-label {padding:0.9rem 1rem 0.9rem 1rem;font-size: 4vw;}
.form-item ,.form-group-label{flex-direction: column;} 
.form-label-wrapper{width: 100%; margin-bottom: 0.5rem;}
.form-input-wrapper{width: 100%; margin-bottom: 0.7rem;}
.fieldset {flex-flow: wrap;}
.form-option {margin: 0.5rem 0.5rem 0 0;letter-spacing: -0.01em;font-size: 4vw;}
.privacy-policy-item{letter-spacing: -0.02em;}
.form-textarea textarea{height: 8em;font-size: 4vw;line-height: 1.35;}
.submit-btn{width: 100%;font-size: 4.5vw;padding:4vw 0;}
}


.form-wrapper {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
    color: #333;
    box-sizing: border-box;
}

/* お問い合わせセクション */
.about-contact {
    text-align: center;
    margin-top: 30px;
}

.about-contact p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: block;
    padding: 0 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.about-contact p::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 30px;
    height: 3px;
    background-color: #555;
    border-radius: 100px;
    transform: translateY(-50%) rotate(55deg);
}

.about-contact p::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 30px;
    height: 3px;
    background-color: #555;
    border-radius: 100px;
    transform: translateY(-50%) rotate(-55deg);
}

/* お問い合わせボタン */
.contact-btn {
    display: inline-block;
    width: 80%;
    max-width: 600px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #fda32e 0%, #f58220 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 163, 46, 0.4);
    text-align: center;
    position: relative;
    padding-right: 50px;
}

.contact-btn::after {
    content: '→';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 163, 46, 0.6);
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
.form-wrapper {
    width: 100%;
    padding:5vw;
}

.about-contact p {
    font-size: 16px;
    padding: 0 25px;
}

.about-contact p::before,
.about-contact p::after {
    width: 25px;
}

.contact-btn {
    width: 90%;
    font-size: 16px;
    padding: 15px 30px;
    padding-right: 45px;
}

.contact-btn::after {
    right: 25px;
    font-size: 18px;
}
}