@charset "UTF-8";

/* リクルートページ専用のCSS */

/* ------------------------全体CSS---------------------- */
body {
    position: relative;
    /* 疑似要素の基準にする */
    background-color: #0C6DFF;
    color: #22222C;
}

/* body::before {
      content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
        #f5f5f5,
        #f5f5f5 2px,
        transparent 2px,
        transparent 94px),
    repeating-linear-gradient(0deg,
        #f5f5f5,
        #f5f5f5 2px,
        transparent 2px,
        transparent 94px);
  background-size: 94px 94px;
  z-index: -1;
} */

.inner_1750 {
    margin: 0 2em;
}

.inner_1000 {
    max-width: 1000px;
    margin: 0 auto;
}

/* ----------------------recruit_header------------------ */

.follow_btn_rd {
    background: #B4B4B4;
}

header {
    /* 既存スタイル打ち消し */
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    /* flex打ち消し */
    display: block;
}

.header_wrapper {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
}

.site-logo {
    gap: 20px;
}


.site-logo.sp {
    display: none;
}

@media screen and (max-width: 1320px) {

    .site-logo.sp {
        display: flex;
        padding-bottom: 24px;
    }
}

.rec_logo_sidetxt {
    font-size: clamp(0.563rem, 0.522rem + 0.2vw, 0.75rem);
    padding: 0.5em 0.8em;
    border: solid 1.25px #aeaeae;
    border-radius: 2.5px;
}

.header_navi {
    /* スタイル上書き */
    align-items: center;
    gap: 1.8em;
}

.recruit_h_navi {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #131313;
    font-weight: 500;
}

/* ------ヘッダーボタンの記述------ */
.rec_h_more_btn {
    background-color: #fff;
    color: #0C6DFF;
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    font-weight: 500;
    max-width: 314px;
    padding: 0.7rem 1.5rem;
    border-radius: 50vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border: solid 1px #0C6DFF;
    border-radius: 50vh;
}

.rec_h_more_btn.blue {
    background-color: #0C6DFF;
    color: #fff;
}

.circle_btn_box {
    width: 31px;
    height: 31px;
    border-radius: 50vh;
    border: solid 1px #0C6DFF;
    position: relative;
    overflow: hidden;
}

.rec_h_more_btn.blue .circle_btn_box {
    background-color: #fff;
}

.circle_btn_box::before {
    width: 8px;
    height: 7.5px;
    content: "";
    background-image: url(../img/recruit_page/blue_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 変更点：ホバー時（とキーボードフォーカス時）だけ再生 */
.rec_h_more_btn:hover .circle_btn_box {
    background-color: #0C6DFF;
}

.rec_h_more_btn.blue:hover .circle_btn_box {
    background-color: #fff;
}

.rec_h_more_btn:hover .circle_btn_box::before {
    background-image: url(../img/recruit_page/white_arrow.svg);
}

.rec_h_more_btn.blue:hover .circle_btn_box::before {
    background-image: url(../img/recruit_page/blue_arrow.svg);
}

.rec_h_more_btn:hover .circle_btn_box::before,
.rec_h_more_btn:focus-visible .circle_btn_box::before {
    /* 右へ抜け → 左にワープ（不可視） → 左から中央へ戻る */
    animation: arrow-sweep 0.55s ease-in-out 1 both;
    /* 無限ループにしたい場合は ↑ の 1 を infinite に */
}

/* ------ヘッダーボタンの記述------ */

/* ----------------------FV（recruit_fv_section）------------------ */

.recruit_fv_section {
    padding-top: 10px;
}

.rec_fv {
    width: 100%;
    border-radius: 15px;
    /* overflow: hidden; */
    position: relative;
}

.rec_fv img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.r_fv_message {
    color: #fff;
    position: absolute;
    bottom: -5%;
    left: 0;
    font-size: clamp(1.875rem, 1.47rem + 2.03vw, 3.75rem);
}

.r_fv_message .txt01,
.r_fv_message .txt02 {
    background-color: #0C6DFF;
    width: fit-content;
}

.r_fv_small {
    color: #fff;
    background-color: #0C6DFF;
    width: auto;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.537rem, 0.383rem + 0.77vw, 1.25rem);
    font-weight: 600;
}

.r_fv_message .txt01 {
    padding: 1em 1em 0 0;
    border-top-right-radius: 20px;
    position: relative;
}

.r_fv_message .txt01::before {
    content: "";
    background-image: url(../img/recruit_page/fv/kadomaru.png);
    width: 27px;
    height: 18px;
    position: absolute;
    bottom: 0;
    right: -4.5%;
}

.r_fv_message .txt02 {
    padding: 20px 1em 30px 0;
    border-top-right-radius: 20px;
}

/* ----------------------OBMについて（r_about）------------------ */

.r_about_section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 30px;
}

.r_about_section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 10%;
    width: 100%;
    height: 100%;
    background-image: url("../img/recruit_page/about/about_back.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    pointer-events: none;
    z-index: -1;
}

.r_about_txt_wrapper {
    margin-left: 15px;
    margin-bottom: -7%;
}

/* ベースはそのまま */
.r_about_txt {
    position: relative;
    display: inline-block;
    color: #6BA6FF;
    /* 下地の文字色（読み終わりに残る色） */
    font-size: clamp(1.125rem, 0.99rem + 0.68vw, 1.75rem);
    line-height: 2.3;
}

/* JSで差し込む実要素（下地と覆い） */
.r_about_txt .txt-base {
    /* 下地：そのまま可視化 */
    visibility: visible;
}

/* 覆い：白文字を左→右へ“なぞる” */
.r_about_txt .txt-cover {
    position: absolute;
    inset: 0 0 0 0;
    /* top/right/bottom/left:0 の短縮 */
    width: 0%;
    height: 100%;
    overflow: hidden;
    white-space: pre;
    /* 改行無視（元の仕様踏襲） */
    color: #fff;
    /* なぞる色 */
    transition: width 0.8s linear;
    /* ← 再生時間。JSのDURATIONと揃える */
    pointer-events: none;
}

/* 再生中に full を付けると横に開く */
.r_about_txt.is-play .txt-cover.is-full {
    width: 100%;
}


/* テキストアニメーションここで終わり */
.r_about_loop_image_wrap {
    overflow: hidden;
}

.r_about_loop {
    width: auto;
    display: flex;
    align-items: center;
    gap: 25px;
    animation: fv_under_loop 10s linear infinite;
}

.r_about_loop_wrap {
    overflow: hidden;
    /* 横スクロールのはみ出し部分を隠す */
    white-space: nowrap;
    /* 改行しない */
}

.r_about_loop_txt {
    display: inline-block;
    color: #00FFF0;
    font-size: clamp(5.625rem, 4.409rem + 6.08vw, 11.25rem);
    font-style: italic;
    font-weight: bold;
    animation: reverse_loop 180s linear infinite;
    opacity: 0.2;
}

@keyframes reverse_loop {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}





/* ----------------------社員紹介（r_people）------------------ */

.r_people_section {
    background-color: #fff;
    border-radius: 30px;
}

.people-heading {
    display: grid;
    place-items: center;
    margin: 0;
    position: relative;
    font-style: italic;
}

/* 日本語（前面） */
.people-heading .jp {
    grid-area: 1 / 1;
    color: #151515;
    font-weight: 700;
    font-size: clamp(2.375rem, 1.889rem + 2.43vw, 4.625rem);
    z-index: 1;
}

/* 英字（背面） */
.people-heading .en {
    grid-area: 1 / 1;
    color: #00FFF0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(3.25rem, 2.061rem + 5.95vw, 8.75rem);
    line-height: 1;
    z-index: 0;
    transform: translateY(-0.45em);
    pointer-events: none;
}

.r_place_ttl p {
    font-size: clamp(0.875rem, 0.821rem + 0.27vw, 1.125rem);
    line-height: 1.8;
    text-align: center;
}

/* 社員紹介スライダー */
.r_member_list_mask {
    /* このdivでマスク */
    width: 100%;
    overflow: hidden;
    padding-left: 30px;
    margin-top: 72px;
}

.r_member_list {
    width: 150%;
    display: flex;
    gap: 30px;
}

.r_member_list .swiper-slide {
    width: fit-content !important;
    height: auto !important;
}

.member_thumbnail {
    display: block;
    width: 100%;
    height: 603px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #0C6DFF;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.r_arrow_white_back {
    background-color: #fff;
    width: 90px;
    height: 90px;
    border-top-left-radius: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.r_arrow_white_back:hover {
    /* ホバー効果打ち消し */
    opacity: 1;
}

.r_circle_btn_box {
    background-color: #0C6DFF;
    width: 49px;
    height: 49px;
    border-radius: 50vh;
    position: relative;
    overflow: hidden;
}

.r_circle_btn_box::before {
    width: 12.7px;
    height: 11.8px;
    content: "";
    background-image: url(../img/recruit_page/people/white_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 変更点：ホバー時（とキーボードフォーカス時）だけ再生 */
.r_arrow_white_back:hover .r_circle_btn_box::before,
.r_arrow_white_back:focus-visible .r_circle_btn_box::before {
    /* 右へ抜け → 左にワープ（不可視） → 左から中央へ戻る */
    animation: arrow-sweep 0.55s ease-in-out 1 both;
    /* 無限ループにしたい場合は ↑ の 1 を infinite に */
}

.member_message {
    margin-top: 30px;
    font-size: clamp(1.25rem, 1.142rem + 0.54vw, 1.75rem);
    font-weight: bold;
    line-height: 1.6;
}

.member_position,
.member_initial {
    font-size: clamp(0.813rem, 0.772rem + 0.2vw, 1rem);
    font-weight: 600;
    text-align: left;
}

.member_position {
    margin-top: 35px;
}

.member_initial {
    margin-top: 10px;
}


/* 社員紹介スライダースタイル修正 */
.rec_member_s .swiper {
    height: 907px;
    margin-top: 70px;
    margin-left: 30px;
}

.rec_member_s .swiper-button-next,
.rec_member_s .swiper-button-prev {
    display: flex !important;
    position: static;
    width: 40px;
    height: 40px;
}

.r_s_btnbox {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
    margin-right: 4%;
}

.swiper-button-prev {
    background-color: transparent;
    border: solid 1px #A9A9A9;
}

.swiper-button-next {
    background-color: #0C6DFF;
}

.swiper-button-prev:after {
    font-size: 0;
    content: "" !important;
    display: block;
    background-image: url(../img/recruit_page/people/prev.svg);
    width: 6px;
    height: 14px;
}

.swiper-button-next:after {
    font-size: 0;
    content: "" !important;
    display: block;
    background-image: url(../img/recruit_page/people/next.svg);
    width: 6px;
    height: 14px;
}

/* ----ページネーション----- */
.swiper-pagination {
    text-align: right !important;
    right: 30px;
}

.swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 9px);
    left: -14% !important;
}

/* ------------------------仕事について（about_service）-------------------- */

.about_service_section {
    position: relative;
}

.about_service_section::before {
    content: "";
    /* ← 必須（ないと描画されない） */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/recruit_page/service/service_top_back.png");
    background-repeat: no-repeat;
    background-size: contain;
    /* 画像を伸縮して収める。coverでもOK */
    background-position: left top;
    pointer-events: none;
    /* クリック干渉回避（任意） */
    z-index: -1;
    mix-blend-mode: screen;
}

.about_service_section::after {
    content: "";
    /* ← 必須（ないと描画されない） */
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/recruit_page/service/service_back.png");
    background-repeat: no-repeat;
    background-size: contain;
    /* 画像を伸縮して収める。coverでもOK */
    background-position: right bottom;
    pointer-events: none;
    /* クリック干渉回避（任意） */
    z-index: -1;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.ceo_message {
    display: flex;
    gap: 5%;
}

.ceo_thumbnail {
    height: 552px;
}

.ceo_thumbnail img {
    border-radius: 20px;
}

.ceo_txt {
    color: #fff;
    display: flex;
    flex-direction: column;
}

.ceo_txt h2 {
    font-size: clamp(2rem, 1.703rem + 1.49vw, 3.375rem);
    font-weight: bold;
    font-style: italic;
    line-height: 1.4;
}

.ceo_txt p {
    font-size: clamp(0.875rem, 0.794rem + 0.41vw, 1.25rem);
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 40px;
}

.rec_more_btn {
    background-color: #fff;
    color: #0C6DFF;
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    font-weight: bold;
    max-width: 314px;
    padding: 1.5rem 2rem;
    border-radius: 50vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle_btn_box {
    width: 31px;
    height: 31px;
    border-radius: 50vh;
    border: solid 1px #0C6DFF;
    position: relative;
    overflow: hidden;
}

.circle_btn_box::before {
    width: 8px;
    height: 7.5px;
    content: "";
    background-image: url(../img/recruit_page/blue_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 変更点：ホバー時（とキーボードフォーカス時）だけ再生 */
.rec_more_btn:hover .circle_btn_box::before,
.rec_more_btn:focus-visible .circle_btn_box::before {
    /* 右へ抜け → 左にワープ（不可視） → 左から中央へ戻る */
    animation: arrow-sweep 0.55s ease-in-out 1 both;
    /* 無限ループにしたい場合は ↑ の 1 を infinite に */
}

/* ---------仕事についてttl---------- */
.service-heading {
    /* 日本語・英字を中央に重ねる */
    display: grid;
    margin: 0;
    position: relative;
    font-style: italic;
}

.service-heading .jp {
    grid-area: 1 / 1;
    /* 同じセルに配置 */
    color: #fff;
    font-weight: 700;
    font-size: clamp(2.375rem, 1.889rem + 2.43vw, 4.625rem);
    z-index: 1;
    /* 前面 */
}

.service-heading .jp span {
    color: #00FFF0;
    font-size: clamp(2.125rem, 1.395rem + 3.65vw, 5.5rem);
}

/* 英字（背面） */
.service-heading .en {
    grid-area: 1 / 1;
    /* 同じセルに配置 */
    color: #00FFF0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    /* 日本語より一回り以上大きく */
    font-size: clamp(3.25rem, 2.061rem + 5.95vw, 8.75rem);
    line-height: 1;
    z-index: 0;
    /* 背面 */
    opacity: 0.2;
    transform: translateY(-0.75em);
    /* ここで位置をずらす */
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-heading .en span {
    font-size: clamp(0.813rem, 0.718rem + 0.47vw, 1.25rem);
}

.about_service_txt {
    color: #fff;
    font-size: clamp(0.875rem, 0.794rem + 0.41vw, 1.25rem);
    line-height: 2.1;
    margin-top: 80px;
    margin-bottom: 80px;
}

/* ------------------------働く環境（work_place_section）-------------------- */

.work_place_section {
    background-color: #fff;
    border-radius: 30px;
    margin-top: -22px;
}

/* タイトル全体のボックス */
.work_place_ttl {
    text-align: center;
}

/* h2自体をグリッド化して同じセルに2要素を重ねる */
.work-place-heading {
    /* 日本語・英字を中央に重ねる */
    display: grid;
    place-items: center;
    margin: 0;
    position: relative;
    /* z-indexの基準（必要なら） */

    /* レスポンシブなフォントスケール（日本語側の基準） */
    font-style: italic;
}

/* 日本語（前面） */
.work-place-heading .jp {
    grid-area: 1 / 1;
    /* 同じセルに配置 */
    color: #151515;
    font-weight: 700;
    font-size: clamp(2.375rem, 1.889rem + 2.43vw, 4.625rem);
    z-index: 1;
    /* 前面 */
}

/* 英字（背面） */
.work-place-heading .en {
    grid-area: 1 / 1;
    /* 同じセルに配置 */
    color: #00FFF0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    /* 日本語より一回り以上大きく */
    font-size: clamp(3.25rem, 2.061rem + 5.95vw, 8.75rem);
    font-size: clamp(2.625rem, 1.301rem + 6.62vw, 8.75rem);
    line-height: 1;
    z-index: 0;
    /* 背面 */
    transform: translateY(-0.45em);
    /* 僅かに上げて覗かせる（任意） */
    pointer-events: none;
}

.work_place_ttl p {
    font-size: clamp(0.875rem, 0.821rem + 0.27vw, 1.125rem);
    line-height: 1.8;
}

.work_place_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 45px;
}

.work_place_box li {
    background-color: #0C6DFF;
    color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(0.9rem, 0.866rem + 0.27vw, 1.25rem);
    font-weight: bold;
    line-height: 1.4;
    gap: 25px;
    padding: 30px 0;
}

.work_place_box li p span {
    font-size: clamp(1.125rem, 1.044rem + 0.41vw, 1.5rem);
}


/* ------------------------成長できる理由（about_features）-------------------- */

.features_section {
    position: relative;
}

.features_section::before {
    content: "";
    /* ← 必須（ないと描画されない） */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/recruit_page/features/features_top_back.png");
    background-repeat: no-repeat;
    background-size: contain;
    /* 画像を伸縮して収める。coverでもOK */
    background-position: left top;
    pointer-events: none;
    /* クリック干渉回避（任意） */
    z-index: -1;
    mix-blend-mode: screen;
}

/* h2自体をグリッド化して同じセルに2要素を重ねる */
.features-heading {
    /* 日本語・英字を中央に重ねる */
    display: grid;
    place-items: center;
    margin: 0;
    position: relative;
    /* z-indexの基準（必要なら） */

    /* レスポンシブなフォントスケール（日本語側の基準） */
    font-style: italic;
}

/* 日本語（前面） */
.features-heading .jp {
    grid-area: 1 / 1;
    /* 同じセルに配置 */
    color: #fff;
    font-weight: 700;
    font-size: clamp(2.375rem, 1.889rem + 2.43vw, 4.625rem);
    z-index: 1;
    /* 前面 */
    display: flex;
    flex-direction: column;
}

.features-heading .jp .span01 {
    font-size: clamp(1rem, 0.757rem + 1.22vw, 2.125rem);
}

.features-heading .jp .span02 {
    color: #00FFF0;
    font-size: clamp(2.5rem, 1.851rem + 3.24vw, 5.5rem);
}

.features-heading .jp .flx {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-end;
}

/* 英字（背面） */
.features-heading .en {
    grid-area: 1 / 1;
    color: #00FFF0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    /* 日本語より一回り以上大きく */
    font-size: clamp(3.25rem, 2.061rem + 5.95vw, 8.75rem);
    line-height: 1;
    z-index: 0;
    /* 背面 */
    transform: translateY(-0.7em);
    /* 僅かに上げて覗かせる（任意） */
    pointer-events: none;
    opacity: 0.2;
}

.features-heading .en span {
    font-size: clamp(0.813rem, 0.718rem + 0.47vw, 1.25rem);
}

.feature_cont_wrapper {
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 10%;
    color: #fff;
    margin-top: 75px;
}

.feature_sp_box {
    display: none;
}

.feature_image {
    transition: 0.35s ease-in-out;
}

.feature_box li {
    padding: 40px 0;
    border-bottom: solid 1px #fff;
    opacity: 0.5;
    transition: 0.35s ease-in-out;
}

/* アクティブな項目だけ白文字＆不透明 */
.feature_box li.is-active {
    opacity: 1;
    transition: 0.35s ease-in-out;
}

.feature_box li .number {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(0.537rem, 0.465rem + 0.36vw, 0.875rem);
}

.feature_box li h4 {
    font-size: clamp(1.188rem, 1.012rem + 0.88vw, 2rem);
    font-weight: bold;
    line-height: 1.5;
}

.feature_box li .txt {
    font-size: clamp(0.537rem, 0.465rem + 0.36vw, 0.875rem);
    margin-top: 35px;
    line-height: 2;
}

/* ----------------------recruit_belt（中段）------------------ */

.r_middle_belt {
    /* スタイル打ち消し */
    padding: 0;
    position: relative;
    z-index: -1;
}

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

/* ----------------------recruit_FAQ（よくある質問）------------------ */
.faq {
    padding: 0 20px;
}

.r_faq_section {
    background-color: #fff;
    border-radius: 30px;
    padding-bottom: 130px;
    margin-top: -25px;
}

/* h2自体をグリッド化して同じセルに2要素を重ねる */
.faq-heading {
    /* 日本語・英字を中央に重ねる */
    display: grid;
    place-items: center;
    margin: 0;
    position: relative;
    font-style: italic;
}

/* 日本語（前面） */
.faq-heading .jp {
    grid-area: 1 / 1;
    /* 同じセルに配置 */
    color: #151515;
    font-weight: 700;
    font-size: clamp(2.375rem, 1.889rem + 2.43vw, 4.625rem);
    z-index: 1;
    /* 前面 */
    display: flex;
    flex-direction: column;
}

/* 英字（背面） */
.faq-heading .en {
    grid-area: 1 / 1;
    color: #00FFF0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    /* 日本語より一回り以上大きく */
    font-size: clamp(3.25rem, 2.061rem + 5.95vw, 8.75rem);
    line-height: 1;
    z-index: 0;
    /* 背面 */
    transform: translateY(-0.45em);
    /* 僅かに上げて覗かせる（任意） */
    pointer-events: none;
}

/* --------------faq（アコーディオン）------------ */
.faq_ttl_box {
    padding-top: 0px;
    padding-bottom: 60px;
}

.faq_ttl_box .ttl_img {
    width: 18%;
}

/* アコーディオン */
/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 1.6em;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: clamp(1.125rem, 1.098rem + 0.14vw, 1.25rem);
    font-weight: 600;
    line-height: 1.6;
    padding: 2.5% 3%;
    transition: all .5s ease;
    background: #0C6DFF;
    color: #fff;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq_arrow {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq_arrow::before {
    content: url('../img/recruit_page/faq/faq_arrow_down.svg');
    /* 閉じているときの矢印 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    /* 中央揃え */
}

.title.close .faq_arrow::before {
    content: url('../img/recruit_page/faq/faq_arrow_up.svg');
    /* 開いたときの矢印 */
}

/*アコーディオンで現れるエリア*/
.box {
    align-items: center;
    background: #fff;
    /* padding: 3% 5% 3% 3%; */
    font-size: clamp(1rem, 0.973rem + 0.14vw, 1.125rem);
    line-height: 1.8;
    gap: 22px;
    padding: 0 5% 0 3%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
    /* アニメーション */

    display: flex;
    align-items: center;
    /* 上下中央揃え */
}

.box.is-open {
    max-height: 500px;
    padding: 3% 5% 3% 3%;
}

.ques_flx {
    display: flex;
    align-items: center;
    gap: 20px;
}

.q_mark {
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-size: 24px;
    color: #fff;
}

.a_mark {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    float: left;
}

.answer {
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    width: 95.5%;
    margin-left: auto;
}

.answer a {
    color: #3163F9;
    text-decoration-line: underline;
    /* 下線を付ける */
    text-decoration-color: #3163F9;
    /* 下線の色 */
    text-decoration-thickness: 1px;
    /* 下線の太さ */
    text-underline-offset: 3px;
    /* 下線と文字の間隔 */
}




/* ----------------------recruit_detail（募集要項）------------------ */

.Recruit_detail_section {
    padding-bottom: 0px;
    background-image: url(../img/recruit_page/recruit/recruit_back.png);
    position: relative;
    overflow: hidden;
}

.rec_derail_top {
    position: relative;
}

.Recruit_detail_section::before {
    content: "";
    /* ← 必須（ないと描画されない） */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/recruit_page/recruit/recruit_back_top.png");
    background-repeat: no-repeat;
    background-size: contain;
    /* 画像を伸縮して収める。coverでもOK */
    background-position: left top;
    pointer-events: none;
    /* クリック干渉回避（任意） */
    z-index: -1;
    mix-blend-mode: screen;
}

.Recruit_detail_section::after {
    content: "";
    position: absolute;
    bottom: 16%;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/recruit_page/recruit/recruit_back_bottom.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
}

.recruit-heading {
    display: grid;
    place-items: center;
    margin: 0;
    position: relative;
    font-style: italic;
}

/* 日本語（前面） */
.recruit-heading .jp {
    grid-area: 1 / 1;
    color: #fff;
    font-weight: 700;
    font-size: clamp(2.375rem, 1.889rem + 2.43vw, 4.625rem);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* 英字（背面） */
.recruit-heading .en {
    grid-area: 1 / 1;
    color: #00FFF0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(3.25rem, 2.061rem + 5.95vw, 8.75rem);
    line-height: 1;
    z-index: 0;
    transform: translateY(-0.45em);
    /* 僅かに上げて覗かせる（任意） */
    pointer-events: none;
    opacity: 0.2;
}

.rec_detail_box {
    background: #fff;
    border-radius: 50px;
    padding: 5em 0;
    margin-top: 40px;
    margin-bottom: 162px;
}

.rec_detail_item {
    display: grid;
    grid-template-columns: 20% 70%;
    align-items: center;
    gap: 10%;
    padding: 40px 20px;
}

.rec_detail_item h5 {
    font-size: 20px;
    font-weight: bold;
}

.rec_detail_item p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.detail_item_border {
    border: solid 1px #A2A2A2;
    position: relative;
}

.detail_item_border::before {
    content: "";
    width: 20%;
    height: 3px;
    background-color: #0C6DFF;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    transition: 0.35s ease-in-out;
}

/* ----------------------recruit_belt（下段）------------------ */

.r_bottom_belt {
    /* スタイル打ち消し */
    padding: 0;
    position: relative;
}

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

.r_bottom_loop_wrapper {
    width: 100%;
    overflow: hidden;
}

.r_bottom_loop_txt {
    color: #00FFF0;
    font-size: clamp(5.625rem, 3.598rem + 10.14vw, 15rem);
    font-style: italic;
    font-weight: bold;
    position: absolute;
    top: -39%;
    left: 0;
    white-space: nowrap;
    animation: reverse_loop 60s linear infinite;
    z-index: 2;
}

/* -------------------------------recruit_footer------------------------------ */

footer {
    position: relative;
}

.rec_f_top_wrapper {
    background-color: #0C6DFF;
    background-image: url(../img/recruit_page/footer/rec_ft_top_back.png);
    width: 95%;
    padding: 4rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
}

.rec_f_t_left h4 {
    color: #fff;
    font-size: clamp(0.813rem, 0.664rem + 0.74vw, 1.5rem);
    font-weight: 400;
    margin-top: 40px;
}

.rec_f_t_right {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.rec_ft_entrybox h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.188rem, 1.579rem + 3.04vw, 5rem);
    font-style: italic;
    font-weight: 600;
}

.rec_ft_entrybox p {
    font-size: clamp(0.55rem, 0.399rem + 0.76vw, 1.25rem);
    font-weight: bold;
}

/* 採用ページ用のmorebtn */
.rec_entry_btn_box {
    /* 少し小さい囲み用 */
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    display: inline-flex;
    /* ← 重要：inline のままだと幅高が効かない */
    justify-content: center;
    align-items: center;
}

.rec_entry_btn_box::before {
    width: 80px;
    height: 80px;
    content: "";
    background-image: url(../img/recruit_page/footer/rec_ft_top_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.rec_ft_entry_btn:hover .news_btn_box {
    background-color: #0C6DFF;
}

/* 変更点：ホバー時（とキーボードフォーカス時）だけ再生 */
.rec_ft_entry_btn:hover .rec_entry_btn_box::before,
.rec_ft_entry_btn:focus-visible .rec_entry_btn_box::before {
    /* 右へ抜け → 左にワープ（不可視） → 左から中央へ戻る */
    background-image: url(../img/recruit_page/footer/rec_ft_top_arrow.svg);
    animation: arrow-sweep 0.55s ease-in-out 1 both;
    /* 無限ループにしたい場合は ↑ の 1 を infinite に */
}

/* ----------------------recruit_footer（footer_top以外）------------------ */
footer {
    padding: 3rem 2rem 4rem;
}

.rec_footer_under {
    padding-top: 19rem;
}

.footer_middle_wrapper {
    grid-template-columns: 30% 50%;
    gap: 20%;
}

.footer_middle_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rec_footer_m_r_navi {
    display: flex;
    gap: 8%;
}

/* 右のナビ */
.footer_middle_wrapper {
    margin: 3.5em 0 0em;
}

.footer_middle_right {
    position: relative;
}

.rec_footer_m_r_navi {
    gap: 0;
    justify-content: flex-end;
}

.footer_middle_right .second,
.footer_middle_right .third {
    margin-left: 11%;
}

.footer_middle_right .second li {
    color: #252525;
    font-size: clamp(1rem, 0.973rem + 0.14vw, 1.125rem);
    font-weight: 500;
}

.footer_middle_right .third {
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
    color: #878787;
    gap: 15px !important;
}

.footer_middle_right .third .bold {
    color: #252525;
    font-size: clamp(1rem, 0.973rem + 0.14vw, 1.125rem);
    font-weight: 500;
}

.footer_middle_right .third .mt15 {
    display: block;
    margin-top: 15px;
}

.footer_middle_right .third .mt20 {
    display: block;
    margin-top: 20px;
}

.footer_middle_right .first {
    gap: 45px;
}

.footer_middle_right .second {
    gap: 44px;
}

.footer_middle_right.sp {
    display: none !important;
}

@media screen and (max-width: 1400px) {

    .r_fv_message {
        bottom: -20%;
    }

    .r_fv_message img {
        width: 50%;
        height: auto;
    }

    .r_fv_message .txt01 {
        padding: 0.5em 0 0 0;
    }

    .r_fv_message .txt02 {
        padding: 0 0 16px 0;
    }

    /* ------------OBMについて------------ */
    .r_about_section {
        overflow: hidden;
    }

    /* ------------募集要項------------ */
    .rec_detail_box {
        padding: 2em 1.8em;
        margin-bottom: 72px;
        border-radius: 30px;
    }

    /* ------------footer------------ */
    .rec_f_t_right {
        margin-left: 10%;
    }

    .rec_f_t_left img {
        /* width: 100%; */
        width: 90%;
        height: auto;
    }



    /* 会社情報などの中段（右） */
    .footer_middle_right.pc {
        display: none !important;
    }

    .footer_middle_right.sp {
        display: block !important;
    }

    small {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

@media screen and (max-width: 768px) {
    .rec_fv {
        aspect-ratio: 20 / 18;
    }

    .rec_fv img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        object-fit: cover;
    }

    .r_fv_message {
        bottom: -5%;
    }

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

    .inner_1750 {
        margin: 0 0.6em;
    }

    /* ----------header---------- */
    .recruit_h_navi {
        flex-direction: column;
        align-items: flex-start;
    }

    .rec_h_more_btn {
        width: 60%;
    }

    .header_wrapper {
        padding: 16px 18px;
    }

    /* ----------OBM_FV（obm_fv）---------- */
    .r_fv_message .txt01 {
        padding: 0.7em 0.5em 0 0;
        margin-left: -1px;
    }

    .r_fv_message .txt02 {
        padding: 11px 0.5em 10px 0;
        margin-left: -1px;
    }

    .r_fv_small {
        padding-top: 1px;
        margin-bottom: -5px;
    }

    /* ----------OBMについて（about_obm）---------- */
    .r_about_section::after {
        /* SPではafter要素を非表示 */
        display: none;
    }

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

    .r_about_loop_wrap {
        position: absolute;
        bottom: 25%;
    }

    /* ----------社員紹介（r_people_section）---------- */
    .r_place_ttl p {
        padding: 0 13%;
    }

    /* ----------仕事について（about_service）---------- */
    /* 背景 */
    .about_service_section {
        padding-top: 35px;
    }

    .about_service_section::after {
        background-image: url("../img/recruit_page/service/service_back_sp.png");
        z-index: -1;
    }

    /* 背景終わり */
    .ceo_message {
        flex-direction: column;
        gap: 30px;
    }

    .ceo_thumbnail {
        height: auto;
    }

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

    /* タイトル */
    .service-heading {
        margin-top: 3.7em;
    }

    .service-heading .jp {
        grid-area: auto;
    }

    .service-heading .en {
        align-items: flex-start;
        flex-direction: column-reverse;
        transform: translateY(0.55em);
        gap: 15px;
    }

    /* タイトル終わり */
    .about_service_txt {
        margin-top: 40px;
        margin-bottom: 50px;
    }

    .rec_more_btn.service {
        margin-bottom: 16.8em;
    }

    /* ----------働く環境（work_place）---------- */
    /* タイトル */
    .work-place-heading .en {
        white-space: nowrap;
    }

    .work_place_ttl p {
        padding: 0 2.5em;
    }

    /* タイトル */
    .work_place_box {
        grid-template-columns: repeat(2, 1fr);
    }

    .work_place_box li {
        padding: 30px 10px;
        box-sizing: border-box;
    }

    .work_place_box li p {
        text-align: center;
    }

    .work_place_section {
        padding-top: 85px;
        padding-bottom: 63px;
    }

    /* ----------成長できる理由（features）---------- */
    .feature_cont_wrapper.pc_only {
        display: none !important;
    }

    .feature_sp_swiper {
        overflow: hidden;
    }

    .feature_sp_box {
        display: flex;
        color: #fff;
    }

    .feature_sp_box .swiper-slide {
        mix-blend-mode: plus-lighter !important;
    }

    .feature_sp_image {
        opacity: 0.6;
        mix-blend-mode: plus-lighter;
        transition: 0.35s ease-in-out;
    }

    .feature_sp_box .swiper-slide .number {
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        font-size: clamp(0.537rem, 0.6rem + 0.36vw, 0.875rem);
    }

    .feature_sp_box .swiper-slide h4 {
        font-size: clamp(1.188rem, 1.012rem + 0.88vw, 2rem);
        font-weight: bold;
        line-height: 1.5;
        margin-top: 15px;
    }

    .feature_sp_box .swiper-slide .txt {
        font-size: clamp(0.7rem, 0.465rem + 0.36vw, 0.875rem);
        margin-top: 21px;
        line-height: 2;
    }

    .feature_white_border {
        background-color: #fff;
        width: 100%;
        height: 1px;
        margin-top: 30px;
    }

    /* ----------募集要項（work_detail）---------- */
    .Recruit_detail_section::before {
        background-image: url("../img/recruit_page/recruit/recruit_back_top_sp.png");
    }

    .Recruit_detail_section::after {
        background-image: url("../img/recruit_page/recruit/recruit_back_bottom_sp.png");
        bottom: 6%;
    }

    .rec_detail_box {
        padding: 2em 1.8em;
        margin-bottom: 72px;
        border-radius: 30px;
    }

    .rec_detail_item {
        grid-template-columns: 100%;
        gap: 28px;
        padding: 40px 13.5px;
    }

    /* ----------成長できる理由（reatures）---------- */
    .featrure_image img {
        width: 100%;
        height: auto;
    }

    /* ----------よくある質問（faq）---------- */
    .r_faq_section {
        padding-bottom: 68px;
    }

    .faq {
        padding: 0px;
    }

    .title {
        display: grid;
        grid-template-columns: 88% 14%;
        padding: 6.5% 5%;
    }

    .ques_flx {
        gap: 20px;
        display: grid;
        grid-template-columns: 7% 76%;
        align-items: start;
    }

    .box {
        /* padding: 7% 5.5% 7.5% 5.5%; */
        padding: 0 5.5% 0 5.5%;
        gap: 13px;
    }

    /* ----------recruit_footer---------- */
    footer {
        padding: 3rem 20px 2rem;
    }

    .Recruit_detail_section {
        background-image: url(../img/recruit_page/recruit/recruit_back_sp.png);
    }

    /* ともに挑戦しともに成長を目指すのwrapper */
    .rec_f_top_wrapper {
        background-image: url(../img/recruit_page/footer/rec_ft_top_back_sp.png);
        background-repeat: no-repeat;
        background-size: cover;
        flex-direction: column;
        width: 89%;
        padding: 3.5rem 0;
    }

    .rec_f_t_left {
        text-align: center;
    }

    .rec_f_t_left h4 {
        margin-top: 15px;
    }

    /* ともに挑戦しともに成長を目指すの下のエントリーボックス */
    .rec_f_t_right {
        margin-top: 52px;
        justify-content: center;
        align-items: flex-start;
    }

    .rec_ft_entrybox {
        gap: 7px;
    }

    .rec_entry_btn_box {
        width: 35.4px;
        height: 35.4px;
        margin-top: 8px;
    }

    .rec_entry_btn_box::before {
        width: 29px;
        height: 29px;
    }

    /* 会社情報などの中段 */
    .footer_middle_wrapper {
        gap: 9%;
        margin: 1.5em 0 6.4em;
    }

    /* 会社情報などの中段（右） */
    .rec_footer_m_r_navi {
        justify-content: flex-start !important;
    }

    /* 会社情報などの下段 */
    .rec_footer_under {
        padding-top: 44vw;
    }

    .footer_middle_wrapper {
        grid-template-columns: 100%;
    }

    small {
        position: static;
        display: block;
        margin: 80px auto 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .rec_member_s .swiper {
        height: 872px;
    }

    .r_s_btnbox {
        margin-right: 2em;
        bottom: 32px;
    }

    .rec_member_s .swiper-button-next,
    .rec_member_s .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: flex !important;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal {
        /* ページネーションの位置 */
        left: -40% !important;
        bottom: 32px;
    }

    .rec_f_t_left img {
        width: 60%;
        min-width: 300px;
        display: block;
        margin: 0 auto;
    }
}

@media screen and (max-width: 600px) {
    .rec_footer_under {
        padding-top: 17rem;
    }
}

/* ------------------------代表メッセージ---------------------- */

body.bg_rec_message {
    position: relative;
    background-color: #fff;
    color: #22222C;
}

.breadcrumbs {
    /* width: 100%; */
    margin: 0 4em;
    padding-left: 60px;
    padding-top: 1em;
}

.breadcrumbs.breadcrumbs_member {
    color: #fff;
}

.breadcrumbs.breadcrumbs_member>li:last-child::before {
    display: none;
}

@media screen and (max-width: 768px) {
    .breadcrumbs {
        margin: 0 0.6em;
        padding-left: 24px;
    }
}

/* ------------------------社員紹介---------------------- */

.breadcrumbs>li:not(:first-child)::before {
    background-image: url(../img/bread/bread_arrow_white.svg);
}

.breadcrumbs.b_arrow>li:not(:first-child)::before {
    background-image: url(../img/bread/bread_arrow.svg);
}

.member_page_section {
    padding-top: 0px;
}

.member_page_section .member_page_fv {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.member_page_section .member_page_fv::after {
    content: "";
    position: absolute;
    /* bottom: 16%; */
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/recruit_page/recruit/recruit_back_bottom.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
}

.member_page_section .member_page_fv__inner {
    width: 1200px;
    margin: 0 auto;
    padding-top: 90px;
    position: relative;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
}

.member_page_section .member_page_fv .txt_area {
    position: absolute;
}

.member_page_section .member_page_fv .txt_area h1 {
    background: #eee;
    color: #0C6DFF;
    /* font-size: 54px; */
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    padding: 0.25em 0.5em;
    margin-top: 50px;
    align-self: flex-start;
    display: inline-block;
}

.member_page_section .member_page_fv .txt_area .txt {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    padding-top: 42px;
    line-height: 1.6;
}

.member_page_section .member_page_fv .img_area {
    width: 844px;
    height: 672px;
    margin-left: auto;
    align-self: center;
}

.member_page_section .member_page_fv .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 30px;
}

@media screen and (max-width: 1200px) {
    .member_page_section .member_page_fv__inner {
        width: 90%;
        flex-direction: column;
    }

    .member_page_section .member_page_fv .txt_area {
        position: relative;
    }

    .member_page_section .member_page_fv .img_area {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1200px) {
    .member_page_section .member_page_fv__inner {
        width: 90%;
        flex-direction: column;
        padding-top: 0;
    }

    .member_page_section .member_page_fv .txt_area {
        position: relative;
    }

    .member_page_section .member_page_fv .img_area {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
        padding-top: 24px;
    }
}

@media screen and (max-width: 768px) {
    .member_page_section .member_page_fv .txt_area h1 {
        font-size: 28px;
    }

    .member_page_section .member_page_fv .txt_area .txt {
        font-size: 14px;
        padding-top: 24px;
    }
}

.member_page_section .member_area {
    width: 96%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 50px;
    padding: 7em 0;
    transform: translateY(-16px);
}

.member_page_section .member_area .inner {
    width: 800px;
    margin: 0 auto;
}


.member_page_section .member_area .txt_area {
    letter-spacing: 0.021em;
    margin-bottom: 60px;
}

.member_page_section .member_area .txt_area h3 {
    color: #0C6DFF;
    font-size: 36px;
    font-weight: bold;
    position: relative;
    line-height: 1.4;
    padding-left: 0.75em;
    margin-bottom: 24px;
}

.member_page_section .member_area .txt_area h3::before {
    position: absolute;
    content: '';
    background-color: #0C6DFF;
    width: 6px;
    height: 40px;
    top: 50%;
    left: 0;
    border-radius: 100vmax;
    transform: translateY(-50%);
}

.member_page_section .member_area .txt_area h4 {
    color: #151515;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 24px;
}

.member_page_section .member_area .txt_area .txt {
    line-height: 2.1;
    font-weight: 500;
}

.member_page_section .member_area .img_area {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
}

.member_page_section .member_area .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.r_people_section.member_detail {
    border-radius: 0px;
}


@media screen and (max-width: 840px) {

    .member_page_section .member_area {
        width: 100%;
        border-radius: 30px;
        padding: 4em 0;
    }

    .member_page_section .member_area .inner {
        width: 90%;
    }

    .member_page_section .member_area .txt_area h3 {
        font-size: 28px;
    }

    .member_page_section .member_area .txt_area h3::before {
        height: 100%;
    }

    .member_page_section .member_area .txt_area h4 {
        font-size: 20px;
    }

    .member_page_section .member_area .img_area {
        height: 50vw;
        min-height: 260px;
    }
}


/* 社員紹介 １日のスケジュール */

.member_page_section .daily_schedule_area {
    width: 1030px;
    background-color: #0C6DFF;
    color: #ffffff;
    border-radius: 20px;
    padding: 5em 0;
    margin: 0 auto;
}

.member_page_section .daily_schedule_area hgroup {
    text-align: center;
    letter-spacing: 0.021em;
    line-height: 1.4;
}

.member_page_section .daily_schedule_area h3 {
    font-size: 36px;
    font-weight: bold;
}

.member_page_section .daily_schedule_area h4 {
    font-size: 14px;
    font-weight: 500;
}

.member_page_section .daily_schedule_area table {
    width: 800px;
    margin: 0 auto;
    margin-top: 66px;
    border-collapse: collapse;
    table-layout: fixed;
}

.member_page_section .daily_schedule_table td {
    vertical-align: middle;
    height: 3em;
}

.member_page_section .daily_schedule_table td:first-child {
    width: 12%;
}

.member_page_section .daily_schedule_table td:nth-child(2) {
    width: 88%;
}

.member_page_section .daily_schedule_table td.time {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.021em;
}

.member_page_section .daily_schedule_table td.task {
    color: #0C6DFF;
    font-size: 16px;
    font-weight: bold;
    line-height: 2.1;
    letter-spacing: 0.021em;
    background-color: #ffffff;
    width: 100%;
    border-radius: 100vmax;
    padding: 0 36px;
}

.member_page_section .daily_schedule_table td.task--content {
    line-height: 1.6;
    padding: 16px 0 16px 36px;
    height: 92px;
    vertical-align: text-top;
}

.member_page_section .daily_schedule_table td.c_line {
    position: relative;
}

.member_page_section .daily_schedule_table td.c_line::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #fff;
}

.member_page_section .daily_schedule_table td.c_line:last-of-type::before,
.member_page_section .daily_schedule_table tr:last-child td.c_line::before {
    content: none;
}

@media screen and (max-width: 1312px) {
    .member_page_section .daily_schedule_area {
        width: 800px;
    }

    .member_page_section .daily_schedule_area table {
        width: 90%;
    }
}

@media screen and (max-width: 800px) {

    .member_page_section .daily_schedule_area {
        width: 90%;
    }

    .member_page_section .daily_schedule_area {
        margin-bottom: 5em;
    }

    .member_page_section .daily_schedule_table td:first-child {
        width: 18%;
    }

    .member_page_section .daily_schedule_table td:nth-child(2) {
        width: 82%;
    }
}

@media screen and (max-width: 480px) {

    .member_page_section .daily_schedule_area {
        padding: 60px 0;
    }

    .member_page_section .daily_schedule_area table {
        margin-top: 48px;
    }

    .member_page_section .daily_schedule_table td {
        vertical-align: middle;
        height: 2em;
    }

    .member_page_section .daily_schedule_table td:first-child {
        width: 24%;
    }

    .member_page_section .daily_schedule_table td:nth-child(2) {
        width: 76%;
    }

    .member_page_section .daily_schedule_table td.task {
        font-size: 14px;
        line-height: 1.2;
    }

    .member_page_section .daily_schedule_table td.time {
        font-size: 18px;
    }
}

@media screen and (max-width: 1280px) {
    .message_page_section .message_area .txt.author {
        margin-bottom: 30px;
    }
}