@charset "utf-8";
:root {
    --primary-color: #0075C1;
    --hover-color: #005a94;
    --bg-white: #fff;
    --bg-light-blue: #F1F5FB;
    --text-color: #333;
    --text-color-gray: #7d7d7d;
    --border-color: #e5e5e5;
    --font-family-jp: 'Noto Sans JP', sans-serif;
    --font-family-en: "Roboto Condensed", sans-serif;
    --pc-content-width: 1004px;
    --h1-size-sp: 3.6vw;
    --h1-size-pc: 2.4rem;
    --h2-size-sp: 3.2rem;
    --h2-size-pc: 4.4rem;
    --h3-size-sp: 1.8rem;
    --h3-size-pc:.1.8rem;
    --h4-size-sp: 1.6rem;
    --h4-size-pc:.1.6rem;
    --text-size-basic: 1.6rem;
    --text-size-s: 1.2rem;
    --section-margin-sp: 80px 0;
    --section-margin-tb: 120px 0;
    --section-margin-pc: 160px 0;
    --h2-margin-sp: -35px 0 40px;
    --h2-margin-pc: -58px 0 48px;
    --mb-10: 0 0 10px;
    --mb-20: 0 0 20px;
    --mb-30: 0 0 30px;
    --mb-40: 0 0 40px;
    --mb-60: 0 0 60px;
    --mb-80: 0 0 80px;
    --sp-container-padding: 0 6.81818%;
    --tb-container-padding: 0 2%;
}

* {
    box-sizing: border-box;
}

html {font-size: 62.5%;}
body {color: var(--text-color);}
h1, h2, h3 {margin: 0; padding: 0; line-height: 1.4; font-weight: 600;}
section , dl, dt, dd, ul, ol, li, p {
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.sp_none { display: none;}
.pc_none { display: block;}
.js-hide { display: none !important;}

.t-right { text-align: right;}
.t-center { text-align: center;}
.mg-lr_0 { margin-right: 0 !important; margin-left: 0 !important;}
.bold { font-weight: bold;}

.blue {color: var(--primary-color);}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ハンバーガーボタン */
.hamburger-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: calc(72px + 180px);
    background: rgb(255 255 255 / 80%);
}

.hamburger-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3本線 */
.hamburger-lines {
    position: absolute;
    width: 32px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hamburger-lines.hidden {
    opacity: 0;
}

.hamburger-line {
    width: 32px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* バツアイコン */
.close-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.close-icon.show {
    opacity: 1;
}

.close-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: translateY(-50%) rotate(45deg);
}

.close-line:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

/* メニューオーバーレイ */
.menu-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#fff;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    overflow-y: auto;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.menu-content {
    display: flex;
    flex-direction: column;
    padding: 96px 32px 32px;
}

.menu-nav {
    flex: 1;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item {
    color: var(--text-color);
    text-decoration: none;
    padding-bottom: 1.6rem;
    display: block;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 600;
}

.menu-item.small {
    font-size: 1.6rem;
    font-weight: 600;
}

.privacy-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-label {
    color: var(--text-color);
    font-size: 12px;
}

.privacy-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    display: block;
}

.privacy-section.with-border {
    /* padding-bottom: 1.6rem; */
}

.contact-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 9999px;
    transition: opacity 0.3s ease;
    font-size: 1.4rem;
}

.contact-btn:hover {
    opacity: 0.9;
}

/* GIO CLUB */
.club-logo {
    padding: 0;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 64px;
    bottom: -1em;
}

.club-text {
    font-size: 20vw;
    font-family: var(--font-family-en);
    font-weight: bold;
    letter-spacing: 0.025em;
    color: var(--primary-color);
    opacity: 0.1;
}

.club-note {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* ナビ */
.company_navi_pc {
    padding: 10px 0;
    overflow-y: hidden;
}

.company_navi_pc.fixed {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    padding: 10px 0;
}

.company_navi_pc nav {
    max-width: 1004px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 40px;
    position: sticky;
}

.company_navi_pc .nav-items {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.company_navi_pc .TopicPath {
    margin: 0;
    padding: 0;
}

.company_navi_pc .TopicPath a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.company_navi_pc .TopicPath a:hover {
    color: var(--primary-color);
}

.company_navi_pc .TopicPath .here {
    padding: 0 0 8px;
    color: var(--primary-color);
    font-size: 14px;
    border-bottom: 4px solid var(--primary-color);
    font-weight: 700;
}

.company_navi_pc .TopicPath strong {
    font-weight: 600;
}

.company_navi_pc .contact_link {
    margin-left: auto;
}

.company_navi_pc .contact_link a {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.company_navi_pc .contact_link a:hover {
    background-color: var(--hover-color);
}

/* メインコンテンツ */
.main_content p {
    font-size: var(--text-size-basic);
    color: var(--text-color);
    line-height: 1.8;
}

.title_bg {
    background: url(/company/img/main_bg.jpg) no-repeat center center / cover;
    background-color: #d5d5d5;
    height: 180px;
}

.company_name {
    max-width: var(--pc-content-width);
    margin: 0 auto;
    padding: 56px 20px 0;
    color: var(--primary-color);
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
}

.h1_title {
    font-size: var(--h1-size-sp);
    color: var(--text-color);
    text-align: center;
}

section {
    margin: var(--section-margin-sp);
}

.main_content {
    background-color: var(--bg-white);
}


.message_container {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--sp-container-padding);
}

.title_photo_area {
    margin-bottom: var(--mb-40);
}

.title_bg_en {
    font-family: var(--font-family-en);
    font-size: 8rem;
    font-size: 18.7vw;
    line-height: 1;
    color: #F2F2F2;
    font-weight: 700;
    margin-left: -6.81818%;
}

.h2_title {
    font-size: var(--h2-size-sp);
    color: var(--text-color);
    margin: var(--h2-margin-sp);
}

.message_photo {
    margin: var(--mb-40);
}

.message_photo img{
    width: 100%;
}

.message_text_area > p {
    margin: var(--mb-30);
}

/* 横スクロールアニメーション */
@keyframes infinity-scroll-left {
from {
    transform: translateX(0);
}
to {
    transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}
.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
    animation: infinity-scroll-left 60s infinite linear 0.5s both;
}

.scroll-infinity__item {
    width: calc(100vw / 2);
    margin: 0 10px;
}

.scroll-infinity__item:nth-child(2n) {
    margin-top: 30px;
}

.scroll-infinity__item>img {
    width: 100%;
}

.philosophy .title_bg_en {
    letter-spacing: -0.05em;
}

.philosophy_text_area {
    margin: var(--mb-40);
}

.philosophy_img {
    width: 257px;
    margin: 0 auto;
}

.philosophy_img img {
    width: 100%;
}

.reason_item > div {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--bg-light-blue);
    padding: var(--sp-container-padding);
    padding-top: calc(5rem + 20px);
    padding-bottom: 40px;
}

.reason_items {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.reason_item_text_area {
    background-color: var(--bg-light-blue);
    padding-bottom: 30px;
}

.reason_item_number {
    font-family: var(--font-family-en);
    font-size: 10rem;
    line-height: 1;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: -12rem;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
}

.reason_item_title {
    font-size: 2.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.reason_item_text {
    font-size: var(--text-size-basic);
    color: var(--text-color);
    line-height: 1.8;
}

.reason_item_img {
    width: 100%;
    background-color: var(--bg-light-blue);
}

.reason_item_img img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* 会社概要 */
.company_container {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--sp-container-padding);
    position: relative;
    overflow: hidden;
}

.company_container .title_bg_en {
    transform: rotate(-90deg);
    position: absolute;
    top: 125px;
    right: -138px;
    z-index: 0;
}

.company_container h2 {
    padding-top: 105px;
}

.company_table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
}

.company_table th {
    text-align: left;
    padding: 20px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    padding: 0 20px 10px 0;
    width: 32%;
}

.company_table td {
    padding: 15px 0;
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 1.8;
}

.office_info {
    margin-bottom: 20px;
}

.office_info:last-child {
    margin-bottom: 0;
}

.office_label {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.office_address {
    margin-bottom: 12px;
    line-height: 1.8;
}

.google_map_btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-color-gray) !important;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.google_map_btn:hover {
    background-color: #f5f5f5;
}

/* 沿革 */
.history_container {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--sp-container-padding);
    position: relative;
}

.timeline {
    position: relative;
}

.timeline_item {
    position: relative;
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: 90px 40px 1fr;
    gap: 0;
}

.timeline_item:last-child {
    padding-bottom: 0;
}

.timeline_item::before {
    content: "";
    position: absolute;
    left: 96px;
    top: 8px;
    width: 13px;
    height: 13px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 2;
}

.timeline_item::after {
    content: "";
    position: absolute;
    left: 102px;
    top: 20px;
    width: 1px;
    height: calc(100% + 30px);
    background-color: #D9D9D9;
    z-index: 1;
}

.timeline_item:last-child::after {
    display: none;
}

.timeline_year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    grid-column: 1;
    padding-right: 10px;
}

.timeline_content {
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 1.8;
    grid-column: 3;
}

/* 事業内容 */
.service_container {
    max-width: 720px;
    margin: 0 auto;
}

.service_description {
    text-align: center;
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

.service_items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service_item {
    background-color: var(--bg-light-blue);
    padding: 30px;
    text-decoration: none;
    display: block;
    position: relative;
    transition: opacity 0.3s ease;
}

.service_item:hover {
    opacity: 0.8 !important;
}

.service_item.multiple_links:hover {
    opacity: 1!important;
}

.service_image {
    width: 100%;
    margin-bottom: 20px;
}

.service_image img {
    width: 100%;
    height: auto;
    display: block;
}

.service_title {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.service_text {
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0;
    padding-bottom: 50px;
}

.service_arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.service_links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service_links a:hover {
    opacity: 0.8 !important;
    background: #f6f7fa;
}

/* 各リンク */
.service_link_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--text-color);
    border-radius: 99px;
    padding: 10px 20px;
    position: relative;
}

.service_link_item:hover {
    opacity: 0.7;
}

.service_link_item svg {
    flex-shrink: 0;
    position: absolute;
    right: 20px;
    bottom: 19px;
}


/* メディア実績 */
.media_container {
    max-width: var(--sp-content-width);
    margin: 0 auto;
    position: relative;
}

.title_area {
    padding: var(--sp-container-padding);
    max-width: 720px;
}

.media_content_wrap {
    background-color: #F6F6F6;
    padding: var(--sp-container-padding);
    padding-top: 40px;
    padding-bottom: 40px;
}

.media_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.media_image {
    width: 100%;
}

.media_image img {
    width: 100%;
    height: auto;
    display: block;
}

.media_text {
    font-size: 1.4rem;
    line-height: 1.8;
}

.media_date {
    margin-bottom: 5px;
}

.media_program {
    font-weight: 700;
    margin-bottom: 5px;
}

.media_feature {
    margin-bottom: 20px;
}

.media_link {
    margin-bottom: 10px;
}

.media_link a {
    color: var(--primary-color);
    text-decoration: none;
}

.media_link a:hover {
    text-decoration: underline;
}

.media_description {
    font-weight: 700;
    margin-bottom: 40px;
}

.media_about {
    text-align: left;
}

/* アクセス */
.access_container {
    max-width: var(--pc-content-width);
    margin: 0 auto;
    padding: var(--sp-container-padding);
}

.office_section {
    margin-bottom: 80px;
}

.office_section:last-child {
    margin-bottom: 0;
}

.title_table_wrap {
    max-width: 720px;
    margin: 0 auto 40px;
}

.office_title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d8d8d8;
    position: relative;
}

.office_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #333;
    width: 20%;
}

.access_table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.access_table tr:last-child {
    border-bottom: none;
}

.access_table th {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    padding: 20px 0;
    vertical-align: top;
    width: 90px;
}

.access_table td {
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 15px 0;
}

.map_container {
    width: 100%;
    height: 172px;
    overflow: hidden;
}

.map_container iframe {
    width: 100%;
    height: 172px;
}

/* ------------------------------
inner page styles
------------------------------ */
section.inner_page {
    margin: 87px 0 160px;
}

/* ------------------------------
insurance page styles
------------------------------ */
.policy_subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 40px 0 20px;
    line-height: 1.6;
    padding-left: 1.25em;
    text-indent: -1.25em;
}

.policy_list li {
    font-size: var(--text-size-basic);
    color: var(--text-color);
    line-height: 1.8;
    margin: 0 0 10px 20px;
    padding-left: 15px;
    position: relative;
}

.policy_list li::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 0;
}

.policy_text_area > p {
    padding-left: 1.25em;
}

.policy_info {
    margin: 30px 0;
    padding: 25px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.policy_info_title {
    font-size: var(--h4-size-sp);
    margin: 0;
    padding-left: 1.25em;
}

/* ------------------------------
privacy page styles
------------------------------ */
.switch_btn {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.switch_btn_item {
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid var(--text-color);
    color: var(--text-color) !important;
    text-decoration: none;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
}

.switch_btn_item.current {
    background-color: #f5f5f5;
    color: #999 !important;
    border: 1px solid #999;
    pointer-events: none;
    box-shadow: none;
}

.contact_info {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0 20px 1.25em;
}

/* ------------------------------
recruitment page styles
------------------------------ */
.recruitment_text_area {
    margin-top: 40px;
}

.recruitment_text_area > p {
    font-size: var(--text-size-basic);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.recruitment_subtitle {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 60px 0 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.recruitment_position {
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 20px 0;
    margin: 0 0 40px;
}

.recruitment_heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 40px 0 20px;
}

.recruitment_content {
    margin-left: 10px;
    margin-bottom: 40px;
}

.recruitment_content > h6 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.recruitment_content > p {
    font-size: var(--text-size-basic);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}



.interview_toggle {
    width: 100%;
    padding: 30px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-light-blue);
    border-radius: 8px;
}

.interview_section {
    margin: 50px 0 60px;
    padding: 0 20px;
    background-color: var(--bg-light-blue);
    border-radius: 8px;
}

.interview_item {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.interview_position {
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.interview_title {
    font-size: 2rem;
    margin: 0;
}

.interview_arrow {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* 開いた時は矢印を180度回転 */
.interview_toggle[aria-expanded="true"] .interview_arrow {
    transform: rotate(180deg);
}

.interview_content_wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.interview_toggle[aria-expanded="true"] + .interview_content_wrap {
    max-height: 5000px;
}

.recruitment_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruitment_list li {
    position: relative;
    padding-left: 1.25em;
    margin-bottom: 5px;
    font-size: var(--text-size-basic);
    line-height: 1.8;
    color: var(--text-color);
}

.recruitment_list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--text-color);
}

.recruitment_table_wrap {
    margin: 60px 0 40px;
    border-top: 1px solid var(--border-color);
}

.recruitment_table_item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    color: var(--text-color);
}

.recruitment_table_label {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.recruitment_btn_wrap {
    text-align: center;
    margin: 60px 0;
}

.recruitment_btn {
    display: block;
    width: 288px;
    padding: 15px 40px;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.8rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
}

.recruitment_btn:hover {
    box-shadow: none;
    background-color: var(--hover-color);
}

.recruitment_btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.recruitment_btn:hover svg {
    transform: translateX(4px);
}

.recruitment_note {
    margin-top: 60px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.recruitment_note p {
    font-size: 1.4rem;
    color: var(--text-color-gray);
    line-height: 1.8;
    margin: 8px 0;
}


@media screen and (min-width: 768px) {
    .hamburger-btn {
        margin-top: calc(72px + 300px);
    }

    /* ========================================
        PC版ナビゲーション
    ======================================== */
    .company_navi_pc {
        padding: 20px 0;
    }

    .company_navi_pc nav {
        max-width: 1004px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }

    .company_navi_pc .nav-items {
        display: flex;
        align-items: center;
        gap: 40px;
        flex: 1;
    }

    .company_navi_pc .TopicPath {
        margin: 0;
        padding: 0;
    }

    .company_navi_pc .TopicPath a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color 0.3s ease;
        white-space: nowrap;
    }

    .company_navi_pc .TopicPath a:hover {
        color: var(--primary-color);
    }

    .company_navi_pc .TopicPath .here {
        padding: 0 0 8px;
        color: var(--primary-color);
        font-size: 14px;
        border-bottom: 4px solid var(--primary-color);
        font-weight: 700;
    }

    .company_navi_pc .TopicPath strong {
        font-weight: 600;
    }

    .company_navi_pc .contact_link {
        margin-left: auto;
    }

    .company_navi_pc .contact_link a {
        display: inline-block;
        padding: 12px 40px;
        background-color: var(--primary-color);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        transition: background-color 0.3s ease;
        white-space: nowrap;
    }

    .company_navi_pc .contact_link a:hover {
        background-color: var(--hover-color);
    }

    /* メインコンテンツ */
    .title_bg {
        height: 300px;
    }

    .company_name {
        padding: 100px 20px 0;
        font-size: 3.2rem;
    }

    .h1_title {
        font-size: var(--h1-size-pc);
    }

    .h2_title {
        font-size: var(--h2-size-pc);
        font-size: 5.5vw;
        color: var(--text-color);
        margin: var(--h2-margin-pc);
    }

    .reason .h2_title {
      margin-bottom: 126px;
    }

    section {
        margin: var(--section-margin-tb);
        overflow: hidden;
    }

    .message_container {
        padding: var(--tb-container-padding);
        
    }

    .title_photo_area {
        margin-bottom: var(--mb-80);
        display: flex;
        justify-content: space-between;
    }

    .title_bg_en {
        font-size: 12rem;
    }

    .message_title {
        width: 422px;
    }

    .message_photo {
        margin: var(--mb-40);
        margin-top: -120px;
        margin-right: -142px;
        width: 450px;
    }

    .message_photo img{
        margin-left: -42px;
    }

    .message_text_area > p {
        margin: var(--mb-30);
    }

    /* 横スクロールアニメーション */
    .scroll-infinity__item {
        width: calc(100vw / 3);
        max-width: 450px;
    }

    /* 理念 */
    .philosophy .title_bg_en {
        letter-spacing: 0;
    }
    .philosophy_text_area {
        width: 412px;
    }

    .philosophy_img {
        margin: 0;
    }

    /* 選ばれる理由 */
    .reason_container {
        padding: 0;
        margin: 0 auto;
    }

    .reason_items {
        gap: 180px;
    }

    .reason_item {
        position: relative;
        z-index: 0;
    }

    .reason_item >div {
        flex-direction: row-reverse;
        align-items: center;
        padding: 0;
        margin: auto 2%;
    }

    .reason_item > div::before {
        content: "";
        position: absolute;
        top: 0;
        left: 60px;
        width: calc(50vw + 440px);
        height: 100%;
        background-color: var(--bg-light-blue);
        z-index: 0;
    }

    .reason_item:nth-child(even)  > div::before {
        left: auto;
        right: 60px;
    }

    .reason_item > div {
        background: inherit;
    }

    .reason_item > div:nth-child(even) {
        flex-direction: row-reverse;
    }

    .reason_item_number {
        font-size: 12rem;
        margin-top: -6rem;
    }

    .reason_item_title {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .reason_item_img {
        width: 360px;
        margin: 0 24px;
    }

    .reason_item_text_area {
        flex: 1;
        padding: 90px 24px 50px;
        position: relative;
        z-index: 2;
    }

    .reason_item:nth-child(even) > div {
        flex-direction: row;
    }

    /* 会社概要 */
    .company_container {
        max-width: 720px;
        padding: var(--tb-container-padding);
        overflow: visible;
    }

    .company_container .title_bg_en {
        top: 180px;
        right: -34vw;
    }

    .company_table th {
        display: table-cell;
        width: 200px;
        padding: 24px 20px 24px 0;
        font-size: 1.6rem;
        vertical-align: top;
    }

    .company_table td {
        display: table-cell;
        padding: 24px 0;
        font-size: 1.4rem;
    }

    .office_info {
        margin-bottom: 24px;
    }

    /* 沿革 */
    .history_container {
        max-width: 720px;
        padding: var(--tb-container-padding);
    }

    .history_container .title_bg_en {
        top: 180px;
        left: -380px;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline_item {
        padding-bottom: 60px;
        grid-template-columns: 120px 60px 1fr;
    }

    .timeline_item::before {
        left: 120px;
        top: 8px;
    }

    .timeline_item::after {
        left: 126px;
        height: calc(100% + 40px);
    }

    .timeline_year {
        font-size: 2.4rem;
    }

    .timeline_content {
        font-size: 1.6rem;
    }

    /* 事業内容 */
    .service_container {
        padding: var(--tb-container-padding);
    }

    .service_description {
        margin-bottom: 60px;
    }

    .service_items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service_item {
        padding: 30px;
        position: relative;
    }

    .service_image {
        margin-bottom: 24px;
    }

    .service_title {
        margin-bottom: 20px;
    }

    .service_link_item {
        color: var(--text-color) !important;
    }

    /* メディア実績 */
    .title_area {
        max-width: 720px;
    }

    .media .h2_title {
        font-size: 4rem;
        margin-bottom: 80px;
    }

    .media_content {
        align-items: center;
        margin: 0 auto;
    }

    .media_image {
        width: 60%;
        flex-shrink: 0;
    }

    .media_text {
        flex: 1;
        font-size: 1.6rem;
    }

    .media_program {
        font-size: 2.1rem !important;
    }

    /* アクセス */
    .access_container {
        padding: var(--tb-container-padding);
    }

    .office_section {
        margin-bottom: 100px;
    }

    .office_title {
        font-size: 2.4rem;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .access_table th {
        font-size: 1.6rem;
        padding: 25px 20px 25px 0;
        width: 200px;
    }

    .access_table td {
        font-size: 1.6rem;
    }

    .title_table_wrap {
        padding: var(--tb-container-padding);
    }

    .map_container {
        height: 304px;
        padding: var(--tb-container-padding);
    }

    .map_container iframe {
        height: 304px;
    }

    /* ------------------------------
    inner page styles
    ------------------------------ */
    .inner_page .h2_title {
        margin: -58px 0 80px;
    }

    .policy_text_area > p {
        margin: var(--mb-60);
    }

    .policy_info {
        margin: 60px 0;
    }

    /* ------------------------------
    privacy page styles
    ------------------------------ */
    .switch_btn {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }

    .switch_btn_item {
        font-size: 1.8rem;
        margin: var(--mb-80);
    }

    .switch_btn_item:hover {
        opacity: 0.8;
        box-shadow: none;
    }

    /* ------------------------------
    recruitment page styles
    ------------------------------ */
    .recruitment_text_area {
        margin-top: 60px;
    }

    .recruitment_text_area > p {
        margin-bottom: 30px;
    }

    .recruitment_subtitle {
        font-size: 2.8rem;
        margin: 0;
        padding-bottom: 0;
        border: none;
    }

    .recruitment_position {
        font-size: 2.4rem;
        margin: 0 0 50px;
        padding: 40px;
    }

    .recruitment_heading {
        font-size: 2rem;
        margin: 50px 0 24px;
    }

    .recruitment_content {
        margin-left: 40px;
        margin-bottom: 40px;
    }

    .recruitment_list li {
        margin-bottom: 10px;
    }

    .recruitment_table_wrap {
        margin: 80px 0 60px;
    }

    .recruitment_table_item {
        flex-direction: row;
        padding: 30px 0;
    }

    .recruitment_table_label {
        flex: 0 0 200px;
        padding-right: 40px;
        margin-bottom: 0;
    }

    .recruitment_table_content {
        flex: 1;
    }

    .recruitment_btn_wrap {
        margin: 80px 0 60px;
    }

    .recruitment_btn {
        font-size: 2rem;
    }

    .recruitment_note {
        margin-top: 80px;
        padding: 20px 40px;
    }

    .recruitment_note p {
        font-size: 1.6rem;
        margin: 10px 0;
    }
}


@media screen and (min-width:1004px) {
    .sp_none { display: block;}
    .pc_none { display: none;}

    section {
        margin: var(--section-margin-pc);
    }

    .message_container, .company_container, .history_container, .service_container, .access_container, .title_table_wrap, .map_container {
        padding: 0;
    }

    .title_bg_en {
        margin-left: -142px;
    }

    .h2_title {
        font-size: var(--h2-size-pc);
    }

    .message_photo {
        margin-top: -120px;
        margin-right: -142px;
        width: 450px;
    }

    .message_photo img{
        margin-left: 0;
    }

    .reason_container, .reason_item > div, .service_container, .media_content {
        max-width: var(--pc-content-width);
    }

    .reason_items {
        gap: 120px;
    }

    .reason_item_img {
        flex: 0 0 414px;
        width: 414px;
        margin: -18rem 0 0;
    }

    .reason_item_text_area {
        flex: 1;
        padding: 90px 50px 50px;
        position: relative;
        z-index: 2;
    }

    .reason_item >div {
        margin: auto;
    }

    .title_area {
        padding: 0;
        margin: 0 auto;
    }

    .media_content_wrap {
        padding: 60px 0;
    }

    .media_content {
        flex-direction: row;
        gap: 60px;
        align-items: center;
        margin: 0 auto;
    }

    .media_image {
        width: 45%;
        flex-shrink: 0;
    }

    .company_container .title_bg_en {
        right: -347px;
    }
    
}

/* ============================================
   アニメーション
============================================ */

/* タイトル背景文字の一文字ずつ流れるアニメーション */
.title_bg_en {
    overflow: visible !important;
}

.title_bg_en span {
    display: inline-block !important;
    opacity: 0 !important;
    transform: translateX(-30px) !important;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.title_bg_en.animated span {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* 各文字に遅延を設定 */
.title_bg_en.animated span:nth-child(1) { transition-delay: 0s !important; }
.title_bg_en.animated span:nth-child(2) { transition-delay: 0.05s !important; }
.title_bg_en.animated span:nth-child(3) { transition-delay: 0.1s !important; }
.title_bg_en.animated span:nth-child(4) { transition-delay: 0.15s !important; }
.title_bg_en.animated span:nth-child(5) { transition-delay: 0.2s !important; }
.title_bg_en.animated span:nth-child(6) { transition-delay: 0.25s !important; }
.title_bg_en.animated span:nth-child(7) { transition-delay: 0.3s !important; }
.title_bg_en.animated span:nth-child(8) { transition-delay: 0.35s !important; }
.title_bg_en.animated span:nth-child(9) { transition-delay: 0.4s !important; }
.title_bg_en.animated span:nth-child(10) { transition-delay: 0.45s !important; }
.title_bg_en.animated span:nth-child(11) { transition-delay: 0.5s !important; }
.title_bg_en.animated span:nth-child(12) { transition-delay: 0.55s !important; }
.title_bg_en.animated span:nth-child(13) { transition-delay: 0.6s !important; }
.title_bg_en.animated span:nth-child(14) { transition-delay: 0.65s !important; }
.title_bg_en.animated span:nth-child(15) { transition-delay: 0.7s !important; }
.title_bg_en.animated span:nth-child(16) { transition-delay: 0.75s !important; }
.title_bg_en.animated span:nth-child(17) { transition-delay: 0.8s !important; }
.title_bg_en.animated span:nth-child(18) { transition-delay: 0.85s !important; }
.title_bg_en.animated span:nth-child(19) { transition-delay: 0.9s !important; }
.title_bg_en.animated span:nth-child(20) { transition-delay: 0.95s !important; }

/* フェードインアニメーション */
.message_photo,
.philosophy_img,
.reason_item_img,
.service_items > *,
.service_link_item,
.media_image {
    opacity: 0;
    transition: opacity 1s ease;
}

.message_photo.animated,
.philosophy_img.animated,
.reason_item_img.animated,
.service_items > *.animated,
.service_link_item.animated,
.media_image.animated {
    opacity: 1;
}

/* フェードアップアニメーション */
.h2_title,
.message_text_area,
.philosophy_text_area,
.recruitment_text_area,
.reason_item_text_area,
.company_table,
.timeline,
.service_description,
.media_text,
.office_section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.h2_title.animated,
.message_text_area.animated,
.philosophy_text_area.animated,
.recruitment_text_area.animated,
.reason_item_text_area.animated,
.company_table.animated,
.timeline.animated,
.service_description.animated,
.media_text.animated,
.office_section.animated {
    opacity: 1;
    transform: translateY(0);
}

/* スライドアニメーション右から左 */
.reason_item_left::before {
    transform: translateX(100%);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reason_item_left.animated::before {
    transform: translateX(0);
}

/* スライドアニメーション左から右 */
.reason_item_right::before {
    transform: translateX(-100%);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reason_item_right.animated::before {
    transform: translateX(0);
}

/* ポップアップアニメーション */
.reason_item_img {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.reason_item_img.animated {
    opacity: 1;
    transform: scale(1);
}

/* サービスアイテムは順番に表示 */
.service_items > *:nth-child(1) {
    transition-delay: 0s;
}

.service_items > *:nth-child(2) {
    transition-delay: 0.1s;
}

.service_items > *:nth-child(3) {
    transition-delay: 0.2s;
}

.service_items > *:nth-child(4) {
    transition-delay: 0.3s;
}
