@charset "utf-8";

/* 1rem = 10px パターン */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.12rem;
    color: #333333;
}

img {
    width: 100%;
    height: auto;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

/* -----------------------------------
   ヘッダー
----------------------------------- */
.l_header {
    background: #fff;
    border-bottom: 0.1rem solid #e0e0e0;
    padding: 1rem 0;
}

.l_header__body {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.l_header__center {
    text-align: center;
}

.title_banner {
    margin: 0;
}

.title_banner a {
    font-size: 2rem;
    font-weight: bold;
    color: #0d77d9;
    text-decoration: none;
    display: inline-block;
}

.title_banner a:hover {
    opacity: 0.8;
}

.title_banner a img {
    max-height: 6rem;
    width: auto;
    height: auto;
    display: block;
}

/* -----------------------------------
   ページヘッダー
----------------------------------- */
.page_header {
    max-width: 120rem;
    margin: 2rem auto;
    padding: 0 2rem;
}

.page_description {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 5rem auto 2rem;
    width: fit-content;
    flex-direction: column;
    transition: .5s;
}

.page_description p {
    margin: 0 0 1rem 0;
    color: #333333;
    line-height: 1.8;
}

.page_description h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #333333;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.page_description img {
    width: 100%;
    height: auto;
    border-radius: 0.6rem;
    max-width: 100%;
    margin: 0;
    transition: .5s;
}

/* -----------------------------------
   検索フォーム
----------------------------------- */
.member_controls {
    max-width: 120rem;
    margin: 5rem auto 10rem;
    padding: 0 2rem;
    width: fit-content;
}

.member_controls form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    flex-direction: row;
}

.member_controls input[type="text"] {
    border: 0.1rem solid #ccc;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    width: 100%;
    max-width: 42rem;
    font-size: 1.4rem;
    margin: auto;
}

.member_controls form input[type="text"] {
    flex: 1;
    width: auto;
    max-width: none;
    transition: .5s;
}

.member_controls button {
    background: #1a2a4f;
    color: #fff;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    cursor: pointer;
    margin-left: 0 !important;
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex-shrink: 0;
}

.member_controls button:hover {
    background: #2a3a5f;
}

.search_description {
    font-size: 1.2rem;
    text-align: center;
}

.member_controls button svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: #fff;
}

.member_controls .filter_row {
    margin-top: 2rem;
}

.member_controls .filter_row strong {
    margin-right: 0.8rem;
    font-weight: 600;
    color: #333333;
    transition: .5s;
}

.member_controls .filter_row a {
    margin: 1rem 1rem 0 0;
    padding: 0.6rem 1rem;
    background: #f5f5f5;
    border-radius: 0.4rem;
    text-decoration: none;
    font-size: 1.3rem;
    color: #333333;
    border: 0.1rem solid #e0e0e0;
    display: inline-block;
    transition: all 0.2s ease;
}

.member_controls .filter_row a:hover {
    background: #e8e8e8;
}

.member_controls .filter_row a.active {
    background: #1a2a4f;
    color: #fff;
    border-color: #333333;
}

/* -----------------------------------
   メンバーカード一覧
----------------------------------- */
.member_list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 120rem;
    padding: 0 2rem;
}

.member_no_results {
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
    color: #333333;
    font-size: 1.6rem;
}

.member_no_results p {
    margin: 0;
}

.member_item {
    width: 100%;
    background: #fff;
    border: 0.1rem solid #e0e0e0;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.08);
    transition: .5s;
    position: relative;
}

.member_item {
    cursor: pointer;
}

.member_item:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 0.6rem 1.6rem rgba(0,0,0,0.12);
}

.member_item.no_thumb .member_thumb {
    display: none;
}

.member_item.no_thumb .member_info {
    margin-top: 0;
}

.member_thumb {
    margin-bottom: 1.2rem;
}

.member_thumb img {
    width: 100%;
    height: auto;
    border-radius: 0.6rem;
    margin-bottom: 0;
    object-fit: cover;
    transition: .5s;
}

.member_info {
    margin-top: 0;
}

.member_name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.8rem;
}

.member_name a {
    color: #0d77d9;
    text-decoration: none;
    transition: all 0.3s;
}

.member_name a:hover {
    color: #0d77d9;
    text-decoration: underline;
}

.member_name_sub {
    font-size: 1.4rem;
    color: #333333;
    margin-top: -0.4rem;
    margin-bottom: 1rem;
}

.member_desc {
    font-size: 1.4rem;
    color: #333333;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.member_meta {
    margin-bottom: 0.8rem;
}

.member_meta p,
.member_score p {
    font-size: 1.3rem;
    color: #333333;
    margin: 0.4rem 0;
    font-weight: 500;
}

.member_links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.member_links a {
    font-size: 1.3rem;
    color: #333333;
    border: 0.1rem solid #333333;
    padding: 0.4rem 1rem;
    border-radius: 0.4rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.member_links a:hover {
    background: #1a2a4f;
    color: #fff;
}

/* ビジネス内容ボタン */
.member_business_link {
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    width: 100%;
    max-width: 30rem;
    position: relative;
    z-index: 2;
}

.member_business_link .business_link_button {
    display: block;
    color: #333333;
    border: 0.2rem solid #333333;
    padding: 0.8rem 1.5rem;
    border-radius: 0.4rem;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.member_business_link .business_link_button:hover {
    background: #1a2a4f;
    color: #fff;
}

/* 面談状態 */
.member_interview_status {
    margin-top: 1.2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 0.4rem solid #333333;
    position: relative;
    z-index: 2;
    border-radius: 0.4rem;
}

.member_interview_status h3 {
    margin: 0 0 0.8rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
}

.member_interview_status .interview_status_item {
    margin: 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.6;
}

.member_interview_status .interview_status_item:first-child {
    margin-top: 0;
}

.member_interview_status .interview_status_item:last-child {
    margin-bottom: 0;
}

.member_score {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 0.1rem solid #e0e0e0;
    position: relative;
    z-index: 2;
}

/* -----------------------------------
   フッター
----------------------------------- */
.l_footer {
    background: #fff;
    border-top: 0.1rem solid #e0e0e0;
    margin-top: 4rem;
    padding: 2rem 0;
}

.l_footer__inner {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.c_copyright {
    text-align: center;
    color: #333333;
    font-size: 1.4rem;
    margin: 0;
}

/* -----------------------------------
   メンバー個別ページ
----------------------------------- */
.member_single {
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem;
}

.member_single__header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid #e0e0e0;
    flex-direction: column;
    transition: .5s;
}

.member_single__thumb {
    flex-shrink: 0;
}

.member_single__thumb img {
    width: 100%;
    max-width: 22rem;
    height: auto;
    border-radius: 0.6rem;
    margin: 0 auto;
    transition: .5s;
}

.member_single__info {
    flex: 1;
}

.member_single__title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.member_single__name_sub {
    font-size: 1.6rem;
    color: #333333;
    margin-bottom: 1.5rem;
}

.member_single__meta p {
    font-size: 1.4rem;
    color: #333333;
    margin: 0.5rem 0;
}

.member_single__content {
    margin-bottom: 3rem;
}

.member_single__content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid #e0e0e0;
}

.member_single__description,
.member_single__body {
    margin-bottom: 3rem;
}

.member_single__description p,
.member_single__body p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333333;
}

.member_single__links,
.member_single__score {
    margin-bottom: 3rem;
}

.member_single__nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 0.1rem solid #e0e0e0;
}

.member_single__back {
    display: inline-block;
    font-size: 1.4rem;
    color: #333333;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 0.1rem solid #333333;
    border-radius: 0.4rem;
    transition: all 0.2s ease;
}

.member_single__back:hover {
    background: #1a2a4f;
    color: #fff;
}

/* -----------------------------------
   404エラーページ
----------------------------------- */
.error_404_content {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.error_404_message {
    text-align: center;
    margin-bottom: 4rem;
}

.error_404_text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.5rem;
}

.error_404_search {
    max-width: 50rem;
    margin: 0 auto 4rem;
}

.error_404_search form {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.error_404_search input[type="search"] {
    flex: 1;
    border: 0.1rem solid #ccc;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    font-size: 1.4rem;
}

.error_404_search button {
    background: #1a2a4f;
    color: #fff;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 0.4rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: background 0.2s ease;
}

.error_404_search button:hover {
    background: #2a3a5f;
}

.error_404_links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    transition: .5s;
}

.error_404_link {
    display: inline-block;
    font-size: 1.4rem;
    color: #333333;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 0.1rem solid #333333;
    border-radius: 0.4rem;
    transition: all 0.2s ease;
    text-align: center;
}

.error_404_link:hover {
    background: #1a2a4f;
    color: #fff;
}

/* レスポンシブ対応 - min-widthパターン */

/* スマートフォン（デフォルト） */
/* デフォルトスタイルは基本セクションに統合済み */

/* タブレット */
@media screen and (min-width: 640px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .member_item {
        width: calc(43% - 1rem);
    }

    .page_description {
        flex-direction: column;
    }

    .page_description img {
        width: 100%;
        max-width: 30rem;
    }

    .member_single__header {
        flex-direction: column;
    }

    .member_single__thumb img {
        width: 100%;
        max-width: 30rem;
    }
}

/* タブレット以上 */
@media screen and (min-width: 768px) {
    .member_controls form input[type="text"] {
        width: 25rem;
        max-width: 42rem;
    }

    .filter_row {
        display: block;
    }

    .filter_row strong {
        width: auto;
        margin-bottom: 0;
    }

    .member_single__header {
        flex-direction: row;
    }

    .member_single__thumb img {
        width: 30rem;
        max-width: 30rem;
    }

    .error_404_links {
        flex-direction: row;
    }
}

/* PC */
@media screen and (min-width: 960px) {
    body {
        font-size: 1.5rem;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    .page_description {
        flex-direction: row;
    }
}

/* 大型PC */
@media screen and (min-width: 1025px) {
    .member_item {
        width: calc(25% - 1.5rem);
    }
}

/* WordPressブロック画像 */
.wp-block-image img {
    max-width: 300px;
    margin: 10px 0;
}
