@charset "UTF-8";

/*
Theme Name: child
Theme URI:
Description:
Template: twentytwentyone
Author: makesview
Author URI: https://makes-view.co.jp/
Version: 1.0.0
*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
デフォルト設定
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ----------------------- デフォルトcss ------------------------- */
:root {
    --main-color: #000;
    --sub-color: #fff;
}

/* フォント */
@font-face {
    font-family: "Avenir Next 500";
    src: url("/font/AvenirNext-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Avenir Next 700";
    src: url("/font/AvenirNext-DemiBold.ttf") format("truetype");
    font-weight: 700;
}

html,
button,
input,
select,
textarea {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

body {
    min-width: 1440px;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 0.01em;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #2F2F2F;
    background: #fff;
    margin: 0;
}


.wrap {
    width: 1140px;
    margin: 0 auto;
}

.wrap.mid {
    width: 1240px;
}

.wrap.lr {
    width: 1340px;
}

/* PC固定ページ 共通設定 */
.common_page_main {
    background: #F5F5F5;
    padding-block: 140px;
    margin-block: 0 1em;
}

.common_page_main .title_box {
    text-align: center;
}

.common_page_main .title_box .title {
    font-size: 40px;
    letter-spacing: .08em;
    font-weight: 700;
    line-height: 1.5;
}

.common_page_wrap {
    padding: 103px 0 160px;
}

.not_found .text {
    text-align: center;
}

.reserve_text {
    text-align: center;
    font-size: 30px;
}

/* パンくず */
.breadcrumb {
    position: relative;
    left: -16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    color: #6F6969;
    padding: 22px 0 20px;
}

.breadcrumb span {
    padding: 8.5px;
}

.breadcrumb a {
    color: #6F6969;
    text-decoration: underline;
}

.breadcrumb span .current-item {
    color: #2F2F2F;
    text-decoration: none;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ----------------------- サイト アニメーション ------------------------- */
/* 文字カラー変更 アニメーション */
.color_change span.char {
    color: #fff;
    -webkit-animation: colorFlash 0.5s ease forwards;
    animation: colorFlash 0.5s ease forwards;
}

@-webkit-keyframes colorFlash {
    0% {
        color: #fff;
    }

    50% {
        color: #801a1f;
    }

    100% {
        color: #fff;
    }
}

@keyframes colorFlash {
    0% {
        color: #fff;
    }

    50% {
        color: #801a1f;
    }

    100% {
        color: #fff;
    }
}

/* 文字スライド アニメーション */
.slide_right_text {
    display: inline-block;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0;
    overflow: hidden;
}

.slide_right_text.is-visible {
    opacity: 1;
    visibility: visible;
}

.char_wrap {
    display: inline-block;
    opacity: 0;
    margin-right: 0.07em;
}

.char_wrap:last-child {
    margin-right: 0;
}

/* 文字動き アニメーション */
.split_text {
    opacity: 0;
}

.js_text {
    display: inline-block;
    opacity: 0;
    -webkit-animation: 0.3s ease-out calc(var(--index) * 0.02s) 1 forwards slideFromTop, 0.3s linear calc(var(--index) * 0.02s) 1 forwards fadeInOut;
    animation: 0.3s ease-out calc(var(--index) * 0.02s) 1 forwards slideFromTop, 0.3s linear calc(var(--index) * 0.02s) 1 forwards fadeInOut;
}

@-webkit-keyframes slideFromTop {
    from {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideFromTop {
    from {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 文字ランダム アニメーション */
.random {
    opacity: 1;
}

@-webkit-keyframes randomAnimation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes randomAnimation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* ----------------------- サイト 共通パーツ ------------------------- */
/* アンカーリンク */
.c_anchors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 20px;
}

.c_anchors .anchor a {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e3e0e0;
}

.c_anchors .anchor a::before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: #801A1F;
    -webkit-transition: width 0.15s linear;
    transition: width 0.15s linear;
}

.c_anchors .anchor_text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.c_anchors .anchor_icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.c_anchors .anchor_icon img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.c_anchors .anchor_icon .active {
    opacity: 0;
}

/* ボタン */
.c_btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
}

.c_btn a {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background: #2F2F2F;
    border-radius: 40px;
    padding: 27.3px 30px;
}

.c_btn .link_text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.c_btn .link_icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 24px;
    height: 24px;
}

.c_btn .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, background 0.3s linear;
    transition: transform 0.5s ease, background 0.3s linear, -webkit-transform 0.5s ease;
    z-index: 1;
}

.c_btn .circle_shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background: rgb(255, 255, 255);
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.c_btn .arrow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.c_btn .arrow::before,
.c_btn .arrow::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 1px;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

.c_btn .arrow::before {
    -webkit-transform: translate(-50%, -50%) rotate(40deg);
    transform: translate(-50%, -50%) rotate(40deg);
}

.c_btn .arrow::after {
    -webkit-transform: translate(-50%, -50%) rotate(-40deg);
    transform: translate(-50%, -50%) rotate(-40deg);
}

.c_btn--red a {
    background: #801A1F;
}

.c_btn--red_reverse a {
    color: #801A1F;
    background: #fff;
}

.c_btn--red_reverse .circle {
    border: 1px solid #801A1F;
}

.c_btn--red_reverse .circle_shadow {
    background: #801A1F;
}

.c_btn--red_reverse .arrow::before,
.c_btn--red_reverse .arrow::after {
    background: #801A1F;
}

/* キャッチコピー */
.c_catch .catch_body {
    color: #fff;
    background: #801A1F;
    padding: 40px 0;
    text-align: center;
}

.c_catch .catch_sub {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.c_catch .catch_sub .big {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 20px;
}

.c_catch .catch_title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin-top: 40px;
    text-align: center;
}

.c_catch .catch_title::first-letter {
    color: #801A1F;
}

.c_catch .catch_main {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin-top: 10px;
    text-align: center;
}

.c_catch .catch_main .big {
    position: relative;
    top: 3px;
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    padding: 0 5px;
}

.c_catch02 {
    text-align: center;
}

.c_catch02 .catch_body {
    border-bottom: 1px solid #801A1F;
    padding-bottom: 30px;
}

.c_catch02 .catch_sub {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.c_catch02 .catch_sub .big {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 20px;
}

.c_catch02 .catch_title {
    margin-top: 30px;
}

.c_catch02 .catch_title span {
    display: block;
}

.c_catch02 .catch_title .sub {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.c_catch02 .catch_title .sub::first-letter {
    color: #801A1F;
}

.c_catch02 .catch_title .main {
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 16px;
}

.c_catch02 .catch_main {
    position: relative;
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-top: 60px;
}

.c_catch02 .logo_img {
    width: 680px;
    margin: 50px auto 0;
}

.c_catch02 .logo_img img {
    width: 100%;
}

/* クッションページ */
.c_cushion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.c_cushion .item {
    color: #fff;
    background: #801A1F;
    padding: 40px 30px;
}

.c_cushion .title {
    text-align: center;
}

.c_cushion .en {
    font-family: "Avenir Next", serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-top: 15px;
}

.c_cushion .ja {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.c_cushion .btn {
    max-width: 220px;
    margin-inline: auto;
    margin-top: 32px;
}

.c_cushion .btn a {
    padding: 12px 20px 12px 30px;
}

.c_cushion .link_icon {
    width: 20px;
    height: 20px;
}

/* インタビュー */
.c_interview {
    margin-top: 40px;
}

.c_interview .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.c_interview .item {
    color: #fff;
    background: #801A1F;
    padding: 30px 20px;
}

.c_interview .item .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c_interview .contents {
    margin-top: 20px;
}

.c_interview .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.44;
    letter-spacing: 0.01em;
}

.c_interview .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 10px;
}

.c_interview .btn {
    max-width: 280px;
    margin-top: 20px;
}

.c_interview .btn a {
    padding: 16px 30px;
}

/* リスト形式 */
.c_lists {
    margin-top: 60px;
}

.c_lists .item {
    border-bottom: 1px solid #ccc;
    padding-bottom: 35px;
}

.c_lists .item:not(:first-of-type) {
    padding-top: 40px;
}

.c_lists .title span {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #fff;
    background-color: #801A1F;
    padding: 8px 12px;
}

.c_lists .title::first-letter {
    color: #801A1F;
}

.c_lists .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    padding-left: 10px;
    margin-top: 16px;
}

.c_lists .lists {
    padding-left: 10px;
    margin-top: 30px;
}

.c_lists .list:not(:first-of-type) {
    margin-top: 45px;
}

.c_lists .item_row {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.c_lists .item_border {
    flex: 1;
    width: 100%;
    height: 1px;
    background: #801A1F;
}

.c_lists .lists--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.c_lists .lists--grid .list {
    margin-top: 0;
}

.c_lists .lists--02 {
    margin-top: 16px;
}

.c_lists .lists--02 .list {
    font-weight: 400;
    color: #6F6969;
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 0;
}

.c_lists .list_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.c_lists .list_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 12px;
}

.c_lists .block {
    margin-top: 60px;
}

.c_lists .sub_title span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    border: 2px solid #801A1F;
    border-left: 5px solid #801A1F;
    padding: 6px 20px;
}

/* メッセージ */
.c_message .c_message_body {
    position: relative;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 110px;
    align-items: center;
}

.c_message .c_message_contents {
    width: calc(57% - 70px);
    padding-bottom: 100px;
}

.c_message .c_message_title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.c_message .c_message_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 50px;
}

.c_message .c_message_row {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 20px;
    margin-top: 50px;
}

.c_message .c_message_job {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.c_message .c_message_name {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.c_message .c_message_image {
    width: 590px;
    position: absolute;
    bottom: 0;
    right: -150px;
}

.c_message .c_message_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 590/460;
    -o-object-fit: cover;
    object-fit: cover;
}

/* モーダル */
.c_modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
}

.c_modal .modal_contents {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.c_modal .modal_body_wrap {
    position: relative;
}

.c_modal .modal_close {
    position: absolute;
    top: -40px;
    right: -50px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    color: #fff;
    cursor: pointer;
}

.c_modal .modal_body {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
    height: 80vh;
    background: #fff;
    padding: 60px;
    overflow-y: scroll;
}

.c_modal .modal_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c_modal .modal_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    border-left: 2px solid #2F2F2F;
    padding-left: 20px;
    margin-top: 40px;
}

.c_modal .modal_lists {
    margin-top: 30px;
}

.c_modal .modal_list:not(:first-of-type) {
    margin-top: 30px;
}

.c_modal .modal_list_title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.44;
    letter-spacing: 0.01em;
    color: #801A1F;
    padding-left: 40px;
}

.c_modal .modal_list_title::before {
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #801A1F;
}

.c_modal .modal_list_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 10px;
}

/* スライダー */
.c_slider {
    position: relative;
    margin-top: 40px;
}

.c_slider .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.c_slider .swiper-slide {
    height: auto;
}

.c_slider .slide_item {
    height: 100%;
}

.c_slider .slide_item .slide_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 338/350;
    -o-object-fit: cover;
    object-fit: cover;
}

.c_slider .slide_contents {
    background: #fff;
    margin-top: 20px;
}

.c_slider .slide_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    border-bottom: 2px solid #2f2f2f;
    padding-bottom: 10px;
}

.c_slider .slide_lists {
    margin-top: 15px;
}

.c_slider .slide_list {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
}

.c_slider .slide_list .accent {
    font-family: "Avenir Next", serif;
    color: #801A1F;
}

.c_slider .slide_list .red {
    color: #801A1F;
}

.c_slider .swiper-button-prev,
.c_slider .swiper-button-next {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    top: calc(50% - 40px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: transparent;
    border-radius: 50%;
    border: 5px solid #fff;
    z-index: 11;
}

.c_slider .swiper-button-prev {
    left: -30px;
}

.c_slider .swiper-button-next {
    right: -30px;
}

.c_slider .swiper-button-prev::before,
.c_slider .swiper-button-next::before {
    display: none;
}

.c_slider .swiper-button-prev::after,
.c_slider .swiper-button-next::after {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.c_slider .swiper-button-prev::after {
    background-image: url("./image/swiper-button-prev-red.svg");
}

.c_slider .swiper-button-next::after {
    background-image: url("./image/swiper-button-next-red.svg");
}

/* 店舗 */
.c_store {
    margin-top: 50px;
}

.c_store .item:not(:first-of-type) {
    margin-top: 30px;
}

.c_store .item {
    height: 100%;
    background: #fff;
    border: 1px solid #e3e0e0;
}

.c_store .image {
    width: 36.8%;
}

.c_store .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c_store .contents {
    width: 63.2%;
    padding: 53px 35px;
}

.c_store .box {
    position: relative;
}

.c_store .box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-image: -webkit-repeating-linear-gradient(left, #e3e0e0, #e3e0e0 5px, transparent 5px, transparent 10px);
    background-image: repeating-linear-gradient(to right, #e3e0e0, #e3e0e0 5px, transparent 5px, transparent 10px);
}

.c_store .contents_body {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.c_store .company {
    margin-top: 15px;
}

.c_store .row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
}

.c_store .sub_title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0em;
    color: #fff;
    background: #801A1F;
    padding: 6.1px 7.7px;
    text-align: center;
}

.c_store .sub_title span {
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.45em;
    right: -2px;
}

.c_store .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

.c_store .unit {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
}

.c_store .unit:not(:first-of-type) {
    margin-top: 8px;
}

.c_store .unit_icon {
    position: relative;
    top: 2px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.c_store .unit_icon img {
    display: block;
    width: 14px;
    height: 17px;
    -o-object-fit: contain;
    object-fit: contain;
}

.c_store .unit_text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0em;
    color: #2F2F2F;
}

.c_store .group {
    margin-top: 25px;
}

.c_store .group_row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
}

.c_store .group_icon img {
    display: block;
    width: 15px;
    height: 15px;
    -o-object-fit: contain;
    object-fit: contain;
}

.c_store .group_tel {
    font-family: "Avenir Next", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: 0em;
    color: #801A1F;
}

.c_store .group_text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    margin-top: 8px;
}

.c_store .btns {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.c_store .btn {
    width: 250px;
    margin-right: 0;
}

.c_store .btn:not(:first-of-type) {
    margin-top: 10px;
}

.c_store .btn a {
    padding: 18px 20px 18px 30px;
}

.c_store .link_text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.c_store .link_icon img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transition: opacity 0.1s linear, -webkit-transform 0.5s ease;
    transition: opacity 0.1s linear, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.1s linear;
    transition: transform 0.5s ease, opacity 0.1s linear, -webkit-transform 0.5s ease;
    z-index: 1;
}

.c_store .link_icon .active {
    opacity: 0;
}

/* テーブル */
.c_table {
    width: 100%;
}

.c_table th,
.c_table td {
    border: 1px solid #ccc;
    border-collapse: collapse;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    padding: 16px 24px;
}

.c_table th {
    width: 30%;
    font-weight: 700;
    background: #eee;
}

.c_table td {
    width: 70%;
}

.c_table .table_lists--02 .table_list {
    text-indent: -1em;
    padding-left: 1em;
}

.c_table .table_list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.c_table .table_list:not(:first-of-type) {
    margin-top: 16px;
}

.c_table .table_list .accent {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Avenir Next", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #801A1F;
    padding-right: 3px;
}

.c_table .table_block {
    margin-top: 32px;
}

/* セクションタイトル */
.c_title_block--center {
    text-align: center;
}

.c_title_block .title_block {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 20px;
}

.c_title_block .en {
    font-family: "Avenir Next", serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
}

.c_title_block .en::first-letter {
    color: #801A1F;
}

.c_title_block .ja {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 25px;
}

.c_title_block .title_block .ja {
    position: relative;
    top: -12px;
}

.c_title_block .lead {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 27px;
}

.c_title_block02 {
    text-align: center;
}

.c_title_block02 .ja {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.c_title_block02 .ja::first-letter {
    color: #801A1F;
}

.c_title_block02 .en {
    font-family: "Avenir Next", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #801A1F;
    margin-top: 16px;
}

.c_title_block02 .lead {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 27px;
}

/* 事例 */
.c_works {
    margin-top: 45px;
}

.c_works .head_title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    padding-left: 50px;
}

.c_works .head_title::before {
    content: "";
    width: 40px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #2F2F2F;
}

.c_works .works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
    margin-top: 20px;
}

.c_works .works .work_image {
    aspect-ratio: 1;
}

.c_works .works .work_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c_works .work_title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 10px;
    text-align: center;
}

/* ----------------------- サイト 共通セクション ------------------------- */
/* 下層FV */
.common_fv {
    position: relative;
    margin-top: -85.2px;
}

.common_fv::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #2F2F2F;
    opacity: 0.6;
    z-index: 1;
}

.common_fv .image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.common_fv .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.common_fv .box {
    position: relative;
    color: #fff;
    padding: 213px 0 66px;
    z-index: 2;
}

.common_fv .title .en {
    font-family: "Avenir Next", serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
}

.common_fv .title .ja {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 24px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PCヘッダー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pc_header {
    position: relative;
    padding: 45px 0 0;
    z-index: 10;
}

.pc_header .body {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 78px;
}

.pc_header .logo {
    width: 100px;
}

.pc_header .logo a {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.pc_header .logo {
    width: 100%;
    max-width: 300px;
}

.pc_header .logo img {
    width: 100%;
}

.pc_header .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

.pc_header .nav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.pc_header .menus {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 25px;
}

.pc_header .menu a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.83;
    letter-spacing: 0.01em;
    color: #fff;
}

.pc_header .btn {
    max-width: 160px;
    margin-right: 0;
}

.pc_header .btn a {
    border-radius: 20px;
    padding: 9.7px 15px;
}

.pc_header .btn .link_text {
    font-size: 13px;
}

.pc_header .btn .link_icon {
    width: 16px;
    height: 16px;
}

.pc_header .btn .arrow::before,
.pc_header .btn .arrow::after {
    width: 4px;
    height: 1px;
}

.pc_header .accordion {
    position: relative;
    padding-right: 12px;
}

.pc_header .accordion::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

.pc_header .accordion.active::before {
    margin-top: 2px;
    -webkit-transform: translateY(-50%) rotate(225deg);
    transform: translateY(-50%) rotate(225deg);
}

.pc_header .accordion::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: 100%;
    left: 0;
}

.pc_header .sub_menus {
    position: absolute;
    top: 40px;
    left: -10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    background: #fff;
    padding: 30px 25px;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.pc_header .accordion.active .sub_menus {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.pc_header .sub_menu a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.pc_header .sub_menu_text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.pc_header .sub_menu_icon {
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.pc_header .sub_menu_icon img {
    display: block;
}

/* 詳細ページ用 */
.pc_header.is-single {
    position: relative;
    padding: 45px 0 0;
    z-index: 10;
    background: #2F2F2F;
    padding-bottom: 20px;
}

.pc_header.is-single .sub_menus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
TOPページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* FV */
#top_fv {
    position: relative;
    height: 100vh;
    color: #fff;
    margin-top: -85.2px;
    overflow: hidden;
}

#top_fv .image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

#top_fv .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#top_fv .wrap {
    height: inherit;
}

#top_fv .row {
    height: inherit;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 52.8vh 0 4.87vh;
    padding: 0 0 4.87vh;
}

#top_fv .title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

#top_fv .sub_title {
    font-family: "Avenir Next", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-top: 37px;
}

#top_fv .news {
    width: 480px;
}

#top_fv .news a {
    display: block;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
    padding: 25px 24px 22px 18px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#top_fv .news_head {
    font-family: "Avenir Next", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    color: #af1f26;
}

#top_fv .news_row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#top_fv .news_date {
    font-family: "Avenir Next", serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    border-right: 1px solid #fff;
    padding-top: 1px;
    padding-right: 13px;
    margin-right: 13px;
}

#top_fv .news_box {
    width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

#top_fv .news_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

#top_fv .news_icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 16px;
    height: 16px;
}

#top_fv .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, background 0.3s linear;
    transition: transform 0.5s ease, background 0.3s linear, -webkit-transform 0.5s ease;
    z-index: 1;
}

#top_fv .circle_shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background: rgb(255, 255, 255);
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

#top_fv .arrow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

#top_fv .arrow::before,
#top_fv .arrow::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 1px;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_fv .arrow::before {
    -webkit-transform: translate(-50%, -50%) rotate(40deg);
    transform: translate(-50%, -50%) rotate(40deg);
}

#top_fv .arrow::after {
    -webkit-transform: translate(-50%, -50%) rotate(-40deg);
    transform: translate(-50%, -50%) rotate(-40deg);
}

/* 企業情報 */
#top_about {
    position: relative;
    padding: 200px 0 0;
    z-index: 1;
}

#top_about .body {
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 80px;
}

#top_about .square {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
    background: #f4eded;
    will-change: transform;
    z-index: -1;
}

#top_about .contents {
    position: relative;
    width: calc(57.9% - 40px);
}

#top_about .en {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    position: absolute;
    top: 18px;
    left: -70px;
}

#top_about .en_text {
    font-family: "Avenir Next", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #801A1F;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

#top_about .border {
    display: block;
    width: 1px;
    height: 395px;
    background-color: #801A1F;
}

#top_about .title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

#top_about .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 13px;
}

#top_about .btn {
    margin-left: 0;
    margin-top: 50px;
}

#top_about .images {
    position: relative;
    width: calc(42.1% - 40px);
    top: 85px;
    will-change: transform;
}

#top_about .image01 img {
    width: 100%;
    height: auto;
    aspect-ratio: 440/600;
    -o-object-fit: cover;
    object-fit: cover;
}

#top_about .image02 {
    position: relative;
    width: 68.2%;
    margin-left: auto;
    top: -150px;
    right: -150px;
}

#top_about .image02 img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
}

/* 事業紹介 */
#top_service {
    position: relative;
    padding: 205px 0 170px;
    margin-top: -50px;
    overflow: hidden;
}

#top_service::before {
    content: "";
    position: absolute;
    width: 1340px;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #F6F6F6;
}

#top_service .wrap {
    position: relative;
    z-index: 1;
}

#top_service .swiper-container {
    position: relative;
    margin-top: 55px;
}

#top_service .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#top_service .swiper-slide {
    height: auto;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_service .swiper-slide.dimmed {
    opacity: 0.15;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
    pointer-events: auto;
}

#top_service .swiper-button-prev,
#top_service .swiper-button-next,
#top_service .swiper-pagination {
    display: none;
}

#top_service .item {
    height: 100%;
}

#top_service .image {
    position: relative;
    overflow: hidden;
}

#top_service .image::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #2F2F2F;
    opacity: 0.5;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

#top_service .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 278/358;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

#top_service .row {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px solid #e3e0e0;
    padding: 20px 8px 20px 0;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_service .row::before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #801A1F;
    -webkit-transition: width 0.2s linear;
    transition: width 0.2s linear;
}

#top_service .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.0666666667;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

#top_service .item_icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 24px;
    height: 24px;
}

#top_service .item_circle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #999999;
    border-radius: 50%;
    -webkit-transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, background 0.3s linear;
    transition: transform 0.5s ease, background 0.3s linear, -webkit-transform 0.5s ease;
    z-index: 1;
}

#top_service .item_circle_shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background: #801A1F;
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

#top_service .item_arrow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

#top_service .item_arrow::before,
#top_service .item_arrow::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 1px;
    top: 50%;
    left: 50%;
    background: #999999;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_service .item_arrow::before {
    -webkit-transform: translate(-50%, -50%) rotate(40deg);
    transform: translate(-50%, -50%) rotate(40deg);
}

#top_service .item_arrow::after {
    -webkit-transform: translate(-50%, -50%) rotate(-40deg);
    transform: translate(-50%, -50%) rotate(-40deg);
}

#top_service .btn {
    margin-top: 36px;
}

/* 店舗紹介 */
#top_store {
    padding: 180px 0 0;
}

#top_store .wrap {
    position: relative;
}

#top_store .square01,
#top_store .square02 {
    position: absolute;
    background: #f4eded;
    will-change: transform;
    z-index: -1;
}

#top_store .square01 {
    width: 300px;
    height: 300px;
    top: -265px;
    left: -50px;
}

#top_store .square02 {
    width: 150px;
    height: 150px;
    top: -5px;
    right: -50px;
}

#top_store .head {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 50px;
}

#top_store .c_title_block .lead {
    margin-top: 22px;
}

#top_store .btn {
    margin-right: 0;
}

#top_store .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 32px;
    margin-top: 55px;
}

#top_store .item a {
    height: 100%;
    background: #fff;
    border: 1px solid #e3e0e0;
}

#top_store .image {
    width: 36.4%;
    overflow: hidden;
}

#top_store .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_store .contents {
    width: 63.6%;
    padding: 19px 20px;
}

#top_store .box {
    position: relative;
}

#top_store .box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-image: -webkit-repeating-linear-gradient(left, #e3e0e0, #e3e0e0 5px, transparent 5px, transparent 10px);
    background-image: repeating-linear-gradient(to right, #e3e0e0, #e3e0e0 5px, transparent 5px, transparent 10px);
}

#top_store .row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px 9px 0;
}

#top_store .sub_title {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #fff;
    background: #801A1F;
    padding: 8px 9.2px;
}

#top_store .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_store .item_icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 24px;
    height: 24px;
}

#top_store .item_circle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #999999;
    border-radius: 50%;
    -webkit-transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, background 0.3s linear;
    transition: transform 0.5s ease, background 0.3s linear, -webkit-transform 0.5s ease;
    z-index: 1;
}

#top_store .item_circle_shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background: #801A1F;
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

#top_store .item_arrow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

#top_store .item_arrow::before,
#top_store .item_arrow::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 1px;
    top: 50%;
    left: 50%;
    background: #999999;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_store .item_arrow::before {
    -webkit-transform: translate(-50%, -50%) rotate(40deg);
    transform: translate(-50%, -50%) rotate(40deg);
}

#top_store .item_arrow::after {
    -webkit-transform: translate(-50%, -50%) rotate(-40deg);
    transform: translate(-50%, -50%) rotate(-40deg);
}

#top_store .units {
    margin-top: 14px;
}

#top_store .unit {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
}

#top_store .unit:not(:first-of-type) {
    margin-top: 9px;
}

#top_store .text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0em;
    color: #2F2F2F;
}

#top_store .icon {
    position: relative;
    top: 2px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

#top_store .icon img {
    display: block;
    width: 14px;
    height: 17px;
    -o-object-fit: contain;
    object-fit: contain;
}

/* お知らせ */
#top_news {
    background: #F6F6F6;
    padding: 250px 0 232px;
    margin-top: -120px;
}

#top_news .body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 80px;
}

#top_news .contents {
    width: calc(31.6% - 40px);
    margin-top: 14px;
}

#top_news .btn {
    margin-top: 55px;
}

#top_news .items {
    width: calc(68.4% - 40px);
}

#top_news .item:not(:first-of-type) {
    margin-top: 10px;
}

#top_news .item a {
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    background: #fff;
    border: 1px solid #e3e0e0;
    padding: 38px 44px 38px 34px;
}

#top_news .item a::before {
    content: "";
    width: 5px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #801A1F;
}

#top_news .date {
    display: block;
    font-family: "Avenir Next", serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #801A1F;
}

#top_news .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 12px;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_news .item_icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 24px;
    height: 24px;
}

#top_news .item_circle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #999999;
    border-radius: 50%;
    -webkit-transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: background 0.3s linear, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, background 0.3s linear;
    transition: transform 0.5s ease, background 0.3s linear, -webkit-transform 0.5s ease;
    z-index: 1;
}

#top_news .item_circle_shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background: #801A1F;
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

#top_news .item_arrow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

#top_news .item_arrow::before,
#top_news .item_arrow::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 1px;
    top: 50%;
    left: 50%;
    background: #999999;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

#top_news .item_arrow::before {
    -webkit-transform: translate(-50%, -50%) rotate(40deg);
    transform: translate(-50%, -50%) rotate(40deg);
}

#top_news .item_arrow::after {
    -webkit-transform: translate(-50%, -50%) rotate(-40deg);
    transform: translate(-50%, -50%) rotate(-40deg);
}

/* 採用情報 */
#top_recruit {
    position: relative;
    padding: 5px 0 160px;
}

#top_recruit::after {
    content: "";
    position: absolute;
    width: 527px;
    height: 569px;
    bottom: 0;
    right: 0;
    background-image: url("./image/top-recruit-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -2;
}

#top_recruit .slide_text {
    position: relative;
    top: -85px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 30px;
    overflow: hidden;
    z-index: 3;
}

#top_recruit .slide_text span {
    font-family: "Avenir Next", serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1.29;
    letter-spacing: 0.05em;
    color: #801A1F;
    white-space: nowrap;
}

#top_recruit .slide_text span {
    -webkit-animation: slide-animation 30s linear infinite;
    animation: slide-animation 30s linear infinite;
}

@-webkit-keyframes slide-animation {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-animation {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

#top_recruit .body {
    position: relative;
    padding-bottom: 80px;
}

#top_recruit .image {
    position: absolute;
    width: 915px;
    height: 516px;
    bottom: 0;
    right: 0;
    z-index: -1;
}

#top_recruit .contents {
    width: 100%;
    max-width: 750px;
    margin-left: 0;
    color: #fff;
    background: #801A1F;
    padding: 70px 80px 60px;
}

#top_recruit .title .en {
    font-family: "Avenir Next", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
}

#top_recruit .title .ja {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-top: 24px;
}

#top_recruit .text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-top: 20px;
}

#top_recruit .btn {
    margin-left: 0;
    margin-top: 30px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層ページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* PC固定ページ 店舗紹介 */
#store_contents .logo {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
}

#store_contents .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 20px;
    text-align: center;
}

#store_contents .body {
    position: relative;
    padding: 100px 100px 0;
    margin-top: 57px;
}

#store_contents .body::before {
    content: "";
    width: 100%;
    height: 41.2%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f6f6f6;
    z-index: -1;
}

#fuse,
#yao {
    position: relative;
}

#fuse .square,
#yao .square {
    position: absolute;
    background: #f4eded;
    z-index: -1;
}

#fuse .square {
    width: 150px;
    height: 150px;
    top: -92px;
    right: -100px;
}

#yao .square {
    width: 300px;
    height: 300px;
    top: 89px;
    left: -100px;
}

/* PC固定ページ 不動産売買事業（サービス） */
#transaction_sell {
    padding: 140px 0 0;
}

#transaction_intermediary {
    padding: 140px 0 0;
}

/* PC固定ページ 管理事業（サービス） */
#service_management .block01 {
    margin-top: 60px;
}

#service_management .block01 .title {
    text-align: center;
}

#service_management .block01 .title .en {
    font-family: "Avenir Next", serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
}

#service_management .block01 .title .ja {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #801A1F;
    margin-top: 10px;
}

#service_management .block01 .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 24px;
    text-align: center;
}

#service_management .block02 {
    align-items: center;
    gap: 40px;
    background: #FAEFEF;
    padding: 40px 60px;
    margin-top: 40px;
}

#service_management .block02 .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
}

#service_management .block02 .texts {
    width: calc(60% - 20px);
}

#service_management .block02 .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 32px;
}

#service_management .block02 .image {
    width: calc(40% - 20px);
}

#service_management .block02 .image img {
    aspect-ratio: 400 / 250;
    -o-object-fit: cover;
    object-fit: cover;
}

#service_management .block03 {
    margin-top: 120px;
}

#service_management .block03 .title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: center;
}

#service_management .block03 .items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

#service_management .block03 .item {
    position: relative;
}

#service_management .block03 .item_number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Avenir Next", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #801A1F;
    background: #fff;
    padding: 10px 13.5px;
    z-index: 1;
}

#service_management .block03 .item_image img {
    aspect-ratio: 210/140;
    -o-object-fit: cover;
    object-fit: cover;
}

#service_management .block03 .item_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: #801A1F;
    margin-top: 18px;
}

#service_management .block03 .item_text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin-top: 12px;
}

#service_management .block04 {
    margin-top: 50px;
}

#service_management .block04 .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #801A1F;
    text-align: center;
}

#service_management .block04 .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 24px;
    text-align: center;
}

#service_management .block05 {
    margin-top: 140px;
}

#service_management .block05 .title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

#service_management .block05 .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 24px;
}

#service_management .block05 .text--mt {
    margin-top: 0;
}

#service_management .block05 .group {
    margin-top: 60px;
}

#service_management .block05 .group_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #801A1F;
    border-bottom: 1px solid #801A1F;
    padding-bottom: 10px;
}

#service_management .block05 .group_box {
    width: 100%;
    max-width: 820px;
    margin-inline: auto;
    margin-top: 40px;
}

#service_management .block05 .group_catch {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.01em;
    padding-left: 10px;
    text-align: center;
}

#service_management .block05 .group_image {
    margin-top: 20px;
}

#service_management .block05 .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    padding-right: 10px;
    margin-top: 20px;
}

#service_management .block05 .contents {
    width: calc(70% - 20px);
}

#service_management .block05 .check_lists {
    padding-left: 42px;
    margin-top: 20px;
}

#service_management .block05 .check_list {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #801A1F;
}

#service_management .block05 .check_list:not(:first-of-type) {
    margin-top: 5px;
}

#service_management .block05 .check_list::after {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 9px;
    top: calc(50% - 1px);
    left: -25px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    border-left: 3px solid #801A1F;
    border-bottom: 3px solid #801A1F;
}

#service_management .block05 .mark {
    width: calc(15% - 20px);
}

#management_pm {
    padding: 140px 0 0;
}

#management_pm .lead {
    line-height: 1.8;
    margin-top: 30px;
    text-align: center;
}

#management_pm .units {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 30px;
}

#management_pm .unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    color: #fff;
    background: #801A1F;
    border-radius: 50%;
    aspect-ratio: 1/1;
    padding: 42px 10px 15px;
    text-align: center;
}

#management_pm .unit:nth-of-type(2) .unit_image {
    margin-right: -3px;
}

#management_pm .unit:nth-of-type(4) .unit_image {
    margin-right: -5px;
}

#management_pm .unit_image img {
    width: 45px;
    height: 45px;
    -o-object-fit: contain;
    object-fit: contain;
}

#management_pm .unit_title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 10px;
    text-align: center;
}

#management_pm .block {
    margin-top: 140px;
}

#management_pm .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

#management_pm .title .accent {
    color: #801A1F;
}

#management_pm .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

#management_pm .item_title span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    border: 2px solid #801A1F;
    border-left: 5px solid #801A1F;
    padding: 6px 20px;
}

#management_pm .item_image {
    margin-top: 10px;
}

#management_pm .item_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 300 / 200;
    -o-object-fit: cover;
    object-fit: cover;
}

#management_pm .item_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 10px;
}

#management_pm .item_text .bold {
    font-weight: 700;
}

#management_works {
    padding: 140px 0 0;
}

#management_works .slide_item {
    border: 1px solid #EDEDED;
    padding: 20px;
}

/* PC固定ページ 法人社宅事業（サービス） */
#corporate_contents {
    padding: 0 0 120px;
}

#corporate_service {
    background: #f6f6f6;
    padding: 120px 0;
}

#corporate_service .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

#corporate_service .item {
    background: #fff;
    border: 5px solid #801A1F;
    padding: 40px 30px;
}

#corporate_service .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #801A1F;
    text-align: center;
}

#corporate_service .lists {
    margin-top: 30px;
}

#corporate_service .list {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

#corporate_service .list:not(:first-of-type) {
    margin-top: 10px;
}

#corporate_service .list_number {
    position: relative;
    top: 2px;
    display: inline-block;
    font-family: "Avenir Next", serif;
}

#corporate_service .list_text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

#corporate_service .box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    background: #f4eded;
    padding: 30px 40px;
    margin-top: 40px;
}

#corporate_service .box_image {
    width: calc(25% - 15px);
}

#corporate_service .box_image img {
    -o-object-fit: cover;
    object-fit: cover;
}

#corporate_service .box_contents {
    width: calc(75% - 15px);
}

#corporate_service .box_head {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

#corporate_service .box_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

#corporate_service .box_sub_title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #fff;
    background: #801A1F;
    padding: 5px 10px;
}

#corporate_service .box_lists {
    margin-top: 20px;
}

#corporate_service .box_list {
    gap: 16px;
}

#corporate_service .box_list:not(:first-of-type) {
    margin-top: 20px;
}

#corporate_service .box_number {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    top: 3px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Avenir Next", serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    color: #fff;
    background: #801A1F;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 3px 0 0;
    text-align: center;
}

#corporate_service .box_text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
}

#corporate_online {
    padding: 120px 0 150px;
}

#corporate_online .body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}

#corporate_online .image {
    width: calc(50% - 30px);
}

#corporate_online .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#corporate_online .contents {
    width: calc(50% - 30px);
}

#corporate_online .c_title_block02 {
    text-align: left;
}

#corporate_online .lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
}

#corporate_online .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

#corporate_online .list span {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.01em;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

#corporate_online .list span::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #f4eded;
    border-radius: 50%;
    z-index: -1;
}

#corporate_online .row {
    gap: 60px;
    margin-top: 40px;
}

#corporate_online .units {
    width: calc(50% - 30px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
}

#corporate_online .unit_image {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: #801A1F;
    border-radius: 50%;
}

#corporate_online .unit_image img {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}

#corporate_online .unit_title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 10px;
    text-align: center;
}

#corporate_online .row_contents {
    width: calc(50% - 30px);
}

#corporate_online .row_contents_title span {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    display: inline-block;
    color: #fff;
    background: #801A1F;
    padding: 10px;
}

#corporate_online .row_contents_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 16px;
}

#corporate_flow .items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 35px;
    margin-top: 40px;
}

#corporate_flow .item {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    color: #fff;
    background: #801A1F;
    padding: 30px 20px;
}

#corporate_flow .item::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    right: -21px;
    border-right: 3px solid #801A1F;
    border-bottom: 3px solid #801A1F;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

#corporate_flow .item:nth-of-type(4n)::before,
#corporate_flow .item:last-of-type::before {
    display: none;
}

#corporate_flow .icon img {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-inline: auto;
}

#corporate_flow .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

#corporate_flow .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

#corporate_flow .number {
    position: relative;
    top: 2px;
    display: inline-block;
    font-family: "Avenir Next", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

#corporate_flow .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    letter-spacing: 0.01em;
    margin-top: 15px;
}

#corporate_flow .note {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.57;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 20px;
}

#corporate_about {
    padding: 150px 0 0;
}

#corporate_about .images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 30px;
}

#corporate_about .media {
    margin-top: 100px;
}

#corporate_about .media_row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    justify-content: center;
    margin-block: 50px;
}

#corporate_about .media_row .media_image:first-child {
    width: 472px;
}

#corporate_about .media_row .media_image:last-child {
    width: 507px;
}

#corporate_about .media_image img {
    width: 100%;
}

#corporate_about .media_title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

#corporate_about .media_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.63;
    letter-spacing: 0.01em;
    color: #6F6969;
    margin-top: 20px;
    text-align: center;
}

#corporate_about .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

#corporate_about .item {
    background: #fff;
    border: 3px solid #801A1F;
}

#corporate_about .item_row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: #801A1F;
    padding: 12px 20px;
}

#corporate_about .item_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

#corporate_about .number {
    position: relative;
    top: 2px;
    display: inline-block;
    font-family: "Avenir Next", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

#corporate_about .item_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.56;
    letter-spacing: 0.01em;
    padding: 20px;
}

#corporate_about .bottom_box {
    margin-top: 100px;
}

#corporate_about .sub_image {
    margin-top: 40px;
}

/* PC固定ページ 不動産開発事業（サービス） */
#development_house {
    padding: 140px 0 0;
}

/* PC固定ページ 民泊事業（サービス） */
#inbound_contents .media {
    margin-top: 100px;
}

#inbound_contents .media_row {
    gap: 60px;
}

#inbound_contents .media_contents {
    width: calc(40% - 30px);
}

#inbound_contents .media_image {
    width: calc(60% - 30px);
}

#inbound_contents .c_title_block02 {
    text-align: left;
}

#inbound_contents .block {
    margin-top: 100px;
}

#inbound_contents .block_title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: center;
}

#inbound_contents .block_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    color: #6F6969;
}

#inbound_contents .block_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

#inbound_contents .block_item_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 20px;
}

#inbound_contents .block_item_text {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-top: 15px;
}

#inbound_contents .head {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

#inbound_contents .head .accent {
    color: #801A1F;
}

#inbound_contents .sub_title span {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #fff;
    background: #801A1F;
    padding: 8px 12px;
}

#inbound_contents .items {
    margin-top: 40px;
}

#inbound_contents .item {
    position: relative;
    background: #fff;
    border: 3px solid #801A1F;
    padding: 20px 80px;
}

#inbound_contents .item:not(:first-of-type) {
    margin-top: 20px;
}

#inbound_contents .item::before {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    background: #801A1F;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

#inbound_contents .item_number {
    position: absolute;
    top: 7px;
    left: 7px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    color: #fff;
}

#inbound_contents .item_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0em;
    color: #801A1F;
}

#inbound_contents .item_text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
    margin-top: 10px;
}

#inbound_contents .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    color: #6F6969;
    margin-top: 20px;
}

#inbound_contents .units {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

#inbound_contents .unit_title span {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #fff;
    background: #801a1f;
    padding: 8px 12px;
}

#inbound_contents .unit_body {
    margin-top: 20px;
}

#inbound_contents .unit_image {
    aspect-ratio: 48/32;
}

#inbound_contents .unit_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#inbound_contents .unit_contents {
    background: #fff;
    margin-top: 20px;
}

#inbound_contents .unit_sub_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    border-bottom: 2px solid #2F2F2F;
    padding-bottom: 10px;
}

#inbound_contents .unit_lists {
    margin-top: 15px;
}

#inbound_contents .unit_list {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
}

#inbound_contents .unit_list .accent {
    color: #801A1F;
}

#inbound_contents .price {
    margin-top: 100px;
}

#inbound_contents .price_text,
#inbound_contents .price_note {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
}

#inbound_contents .price_note {
    color: #801A1F;
    margin-top: 16px;
}

#inbound_contents .table_wrap {
    margin-top: 16px;
}

#inbound_voice {
    padding: 140px 0 0;
}

#inbound_voice .body {
    background: #f5f5f5;
    padding: 80px 0;
}

#inbound_voice .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

#inbound_voice .item {
    background: #fff;
    padding: 30px;
}

#inbound_voice .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

#inbound_voice .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

#inbound_voice .icon img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
}

#inbound_voice .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

#inbound_voice .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #801A1F;
}

#inbound_voice .name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    color: #801A1F;
    margin-top: 10px;
}

#inbound_voice .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0em;
    color: #2F2F2F;
    margin-top: 20px;
}

#inbound_voice .btn {
    margin-top: 40px;
}

#inbound_voice .btn .link_text {
    font-size: 15px;
}

#inbound_works {
    padding: 140px 0 0;
}

#inbound_works .c_slider .slide_item .slide_image img {
    aspect-ratio: 360/225;
}

/* PC固定ページ 企業情報 */
#company_cushion .c_cushion {
    grid-template-columns: repeat(2, 1fr);
}

/* PC固定ページ 会社沿革 */
#history_contents .chronology {
    padding-left: 100px;
    margin-top: 80px;
}

#history_contents .items {
    position: relative;
    padding-top: 40px;
}

#history_contents .items::before {
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #801A1F;
}

#history_contents .item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 60px;
}

#history_contents .item:not(:first-of-type) {
    margin-top: 60px;
}

#history_contents .item::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    top: 14px;
    left: -5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    background: #801A1F;
}

#history_contents .item::after {
    content: "";
    width: calc(100% + 80px);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: -80px;
    background: #ccc;
    z-index: -1;
}

#history_contents .item:last-of-type::after {
    display: none;
}

#history_contents .dl {
    gap: 80px;
}

#history_contents .dt {
    width: 130px;
    line-height: 1.8;
    color: #801A1F;
}

#history_contents .dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

#history_contents .text {
    line-height: 1.8;
    color: #6F6969;
}

#history_contents .image {
    width: 100%;
    max-width: 300px;
}

#history_contents .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 420 / 240;
    object-fit: cover;
}

/* PC固定ページ 事業紹介（リクルート） */
#recruit_message .c_message_text {
    margin-top: 30px;
}

#recruit_info {
    padding: 160px 0 0;
}

#recruit_info .body {
    margin-top: 100px;
}

#recruit_info .item:not(:first-of-type) {
    margin-top: 160px;
}

#recruit_info .item {
    position: relative;
}

#recruit_info .image {
    position: absolute;
    width: 600px;
    height: 120%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: -1;
}

#recruit_info .item:nth-child(even) .image {
    right: auto;
    left: 0;
}

#recruit_info .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#recruit_info .contents {
    width: 100%;
    max-width: 600px;
    margin-left: 0;
    color: #fff;
    background: #801A1F;
    padding: 70px 80px 60px;
}

#recruit_info .item:nth-child(even) .contents {
    margin-left: auto;
}

#recruit_info .title .en {
    font-family: "Avenir Next", serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
}

#recruit_info .title .ja {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.1em;
    margin-top: 10px;
}

#recruit_info .text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-top: 20px;
}

#recruit_info .btn {
    max-width: 280px;
    margin-left: 0;
    margin-top: 30px;
}

#recruit_info .btn a {
    padding: 20px 30px;
}

#recruit_contents {
    padding: 160px 0 0;
}

#recruit_contents .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
}

#recruit_contents .item a {
    position: relative;
    display: block;
    padding: 120px 50px;
}

#recruit_contents .item a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

#recruit_contents .item_image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
}

#recruit_contents .item_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

#recruit_contents .item_title {
    position: relative;
    color: #fff;
    z-index: 1;
}

#recruit_contents .item_en {
    font-family: "Avenir Next", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
}

#recruit_contents .item_ja {
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-top: 20px;
}

/* PC固定ページ 賃貸仲介事業（リクルート） */
#recruit_brokerage_message .c_message {
    margin-top: 60px;
}

#recruit_brokerage_message .c_message_contents {
    padding-bottom: 0;
}

#recruit_brokerage_message .c_message_title {
    text-align: center;
}

#recruit_brokerage_message .c_message_text {
    font-size: 16px;
}

#recruit_brokerage_message .c_message_image {
    position: relative;
    width: calc(45% - 70px);
    top: 0;
    bottom: auto;
    left: 0;
    right: auto;
}

#recruit_brokerage_message .c_message_image img {
    aspect-ratio: 590 / 600;
}

#recruit_brokerage_job {
    padding: 140px 0 0;
}

#recruit_brokerage_job .c_lists {
    margin-top: 50px;
}

#recruit_brokerage_job .c_lists .item {
    border-bottom: none;
}

#recruit_brokerage_interview {
    padding: 120px 0 0;
}

#recruit_brokerage_contents {
    padding: 140px 0 0;
}

#recruit_brokerage_contents .table_wrap {
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    margin-top: 40px;
}

#recruit_brokerage_contents .c_table th,
#recruit_brokerage_contents .c_table td {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 0.01em;
    padding: 30px 40px;
}

#recruit_brokerage_contents .c_table th {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33;
    letter-spacing: 0.01em;
}

#recruit_brokerage_contents .c_table td {
    font-weight: 400;
}

#recruit_brokerage_contents .table_list:not(:first-of-type) {
    margin-top: 0;
}

#recruit_brokerage_contents .btn {
    margin-top: 60px;
}

/* PC固定ページ 管理事業（リクルート） */
#recruit_management_message .c_message {
    margin-top: 60px;
}

#recruit_management_message .c_message_contents {
    padding-bottom: 0;
}

#recruit_management_message .c_message_title {
    text-align: center;
}

#recruit_management_message .c_message_text {
    font-size: 16px;
}

#recruit_management_message .c_message_image {
    position: relative;
    width: calc(45% - 70px);
    top: 0;
    bottom: auto;
    left: 0;
    right: auto;
}

#recruit_management_message .c_message_image img {
    aspect-ratio: 590 / 450;
}

#recruit_management_job {
    padding: 140px 0 0;
}

#recruit_management_job .c_lists {
    margin: 50px 0;
}

#recruit_management_job .c_lists .item {
    border-bottom: none;
}

#recruit_management_interview {
    padding: 120px 0 0;
}

#recruit_management_contents {
    padding: 140px 0 0;
}

#recruit_management_contents .table_wrap {
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    margin-top: 40px;
}

#recruit_management_contents .c_table th,
#recruit_management_contents .c_table td {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.63;
    letter-spacing: 0.01em;
    padding: 30px 40px;
}

#recruit_management_contents .c_table th {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33;
    letter-spacing: 0.01em;
}

#recruit_management_contents .c_table td {
    font-weight: 400;
}

#recruit_management_contents .table_list:not(:first-of-type) {
    margin-top: 0;
}

#recruit_management_contents .btn {
    margin-top: 60px;
}

/* PC固定ページ 数字で見るHOUSUMO（リクルート） */
#numbers_contents .logo {
    width: 100%;
    max-width: 60px;
    margin-inline: auto;
}

#numbers_contents .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

#numbers_contents .c_title_block02 {
    margin-top: 20px;
}

#numbers_contents .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    margin-top: 60px;
}

#numbers_contents .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background: #FAEFEF;
    padding: 40px 20px;
}

#numbers_contents .icon {
    margin-top: 30px;
}

#numbers_contents .icon img {
    width: 100px;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
}

#numbers_contents .item:last-of-type .icon {
    position: relative;
    top: -3px;
}

#numbers_contents .title {
    width: 100%;
    max-width: 280px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    background: #fff;
    border-radius: 50px;
    padding: 4px 20px 6px;
    text-align: center;
}

#numbers_contents .box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

#numbers_contents .item:last-of-type .box {
    position: relative;
    top: 20px;
}

#numbers_contents .sub_title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 5px;
    margin-top: -5px;
}

#numbers_contents .sub_title span {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #2F2F2F;
}

#numbers_contents .sub_title .number {
    position: relative;
    top: 16px;
    display: inline-block;
    font-family: "Avenir Next", serif;
    font-size: 83px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #801A1F;
}

#numbers_contents .sub_title .small {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 15px;
}

/* PC固定ページ お問い合わせ */
.contact_form_disc {
    color: #6F6969;
    letter-spacing: .08em;
    font-weight: 400;
    text-align: center;
    margin-block: 0 3.8em;
}

.contact_form_disc .text {
    font-size: 16px;
    margin-block: 0 1em;
}

.contact_form_disc .caution {
    font-size: 14px;
}

.page_cancel .contact_form_disc .caution {
    display: flex;
}

.page_cancel .contact_form_disc .caution::before {
    content: "・";
}

.common_contact_form .form_box {
    margin-block: 0 50px;
}

.common_contact_form .form_box dl {
    display: grid;
    grid-template-columns: 30% 1fr;
    align-items: center;
    gap: 80px;
}

.common_contact_form .form_box dl.start {
    align-items: flex-start;
}

.common_contact_form .form_box dl+dl {
    margin-block: 1.6em 0;
    padding-top: 1.6em;
    border-top: 1px solid #AAA;
}

.common_contact_form .form_box dl dt {
    display: flex;
    align-items: center;
    gap: 1.3em;
    font-size: 16px;
    letter-spacing: .08em;
    line-height: 1.5;
    font-weight: 700;
    padding-inline: 0 0.5em;
    position: relative;
}

.common_contact_form .form_box dl dt .letter {
    flex-grow: 1;
}

.common_contact_form .form_box dl dt .label {
    flex-shrink: 0;
    color: #3E3E3E;
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 700;
    border-radius: 100vmax;
    padding: 0.2em 0.9em;
}

.common_contact_form .form_box dl dt .label.hissu {
    background: #801A1F;
    color: #fff;
}

.common_contact_form .form_box dl dt .label.ninni {
    background: #E0E0E0;
}

.common_contact_form .form_box dl dt::after {
    content: "";
    width: 1px;
    height: 30px;
    background: #AAA;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.common_contact_form input[type="text"],
.common_contact_form input[type="email"],
.common_contact_form #zip {
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
    padding: 0.8em 1em;
}

.page_cancel .common_contact_form #zip,
.page_cancel .common_contact_form #pref {
    margin-bottom: .5em;
}

.common_contact_form textarea {
    width: 100%;
    height: 180px;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    padding: 1em;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
}

.common_contact_form input::placeholder,
.common_contact_form textarea::placeholder {
    color: #C7C4C4;
}

.common_contact_form select {
    width: 47.5%;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: .08em;
    padding: 1.1em 1em;
}

.common_contact_form select.empty {
    color: #C7C4C4;
}

.page_contact #btn_wrap {
    justify-content: center;
    text-align: right;
    width: 74%;
    margin: auto;
}

.page_contact #btn_wrap button {
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #fff;
    display: block;
    width: 310px;
    line-height: 60px;
    font-size: 18px;
    font-weight: 900;
    transition: .3s;
    text-align: center;
    letter-spacing: .08em;
    margin: auto;
}

.page_contact #btn_wrap button[name="submitBack"] {
    background: #333;
    margin-top: 20px;
}

.privacy_term_outer .privacy_term_inner {
    height: 138px;
    margin: auto;
    overflow: auto;
}

.privacy_term_outer .privacy_term_inner .privacy_index {
    font-size: 14px;
}

.privacy_term_outer .privacy_term_inner .main_text {
    font-size: 13px;
    margin-bottom: 25px;
}

.privacy_term_outer .privacy_term_inner dl dt {
    font-size: 13px;
    border-left: solid 3px #ccc;
    padding-left: 1em;
    margin-bottom: 5px;
}

.privacy_term_outer .privacy_term_inner dl dd {
    font-size: 13px;
}

.privacy_term_outer .privacy_term_inner dl+dl {
    margin-top: 30px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar {
    width: 8px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-track {
    background: transparent;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
}

.privacy_term_outer {
    border-top: solid 1px #e3e3e3;
    padding: 30px 0;
    border-bottom: solid 1px #e3e3e3;
    width: 60%;
    margin: 0 auto 30px;
}

.privacy_check_list .mwform-checkbox-field-text {
    padding-right: 0;
}

.privacy_check_list .error {
    font-size: 12px;
}

.privacy_term_detail {
    text-align: center;
    font-size: 13px;
    margin: 20px 0;
    position: relative;
    font-weight: 600;
}

.privacy_term_detail::after {
    content: "";
    margin: 5px auto 0;
    border: solid #333;
    border-width: 2px 2px 0 0;
    width: 10px;
    aspect-ratio: 1 / 1;
    min-width: 0;
    rotate: 135deg;
    display: block;
}

.mw_wp_form_confirm .privacy_check_list,
.mw_wp_form_confirm .privacy_term_detail {
    display: none;
}

/* ラジオボタン デザイン */
.radio_btns,
.checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
    padding: .5em 0;
}

/* ラジオボタンを隠す */
.radio_btns input[type=radio].radio_btns__item {
    display: none;
}

.radio_btns label {
    display: inline-block;
    cursor: pointer;
}

/* spanの左側にボタンを配置するスペースを作る */
.radio_btns .radio_btns__item+span {
    color: #2F2F2F;
    font-size: 15px;
    letter-spacing: .08em;
    font-weight: 600;
    padding-left: 2em;
    display: inline-block;
    position: relative;
}

/* 各パーツを作成 */
.radio_btns .radio_btns__item+span::before,
.radio_btns .radio_btns__item+span::after {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #E6E6E6;
    background: #F8F8F8;
    border-radius: 50%;
    width: 20px;
    aspect-ratio: 1;
    min-width: 0;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

/* after上書き */
.radio_btns .radio_btns__item+span::after {
    width: 10px;
    aspect-ratio: 1;
    min-width: 0;
    top: 0px;
    left: 5px;
    border: none;
    background: #801A1F;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.radio_btns .radio_btns__item:checked+span::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* チェックボックス デザイン */
.page_contact input[type="checkbox"] {
    /* デフォルトcheckボックス非表示*/
    display: none;
}

.mwform-checkbox-field label {
    cursor: pointer;
}

.mwform-checkbox-field-text {
    color: #2F2F2F;
    font-size: 15px;
    letter-spacing: .08em;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 0 0 0 30px;
}

.mwform-checkbox-field-text::before,
.mwform-checkbox-field-text::after {
    content: "";
    position: absolute;
    display: block;
}

.mwform-checkbox-field-text::before {
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    width: 20px;
    aspect-ratio: 1 / 1;
    min-width: 0;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.mwform-checkbox-field-text::after {
    border-width: 3px;
    border-color: transparent transparent #801A1F #801A1F;
    border-style: solid;
    width: 20px;
    aspect-ratio: 2/1;
    min-width: 0;
    margin-top: -0.2em;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
    opacity: 1;
}

.mw_wp_form .horizontal-item {
    display: inline-block;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0 !important;
}

/* サンクスページ */

.page_contact .thanks_textArea .name {
    font-size: 16px;
    line-height: 2;
    text-align: center;
    margin-bottom: 20px;
}

.page_contact .thanks_textArea .contact_text {
    margin: 0 auto 50px;
    width: 62%;
}

.page_contact .thanks_textArea .ichiran_link {
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #fff;
    display: block;
    width: 300px;
    line-height: 50px;
    border-radius: 4px;
    font-size: 16px;
    transition: .3s;
    margin: 0 auto;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: center;
}

.page_contact .thanks_textArea .contact_text .space {
    display: block;
}

.page_contact .thanks_textArea .contact_text .space {
    display: block;
    margin-top: 10px;
}

/* ステップバー デザイン */
.page_contact .progressbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.6em;
    margin-block: 0 3em;
}

.page_contact .progressbar .item {
    color: #2F2F2F;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    position: relative;
}

.page_contact .progressbar .item+.item::before {
    content: "";
    width: 50px;
    height: 1px;
    background: #E6E6E6;
    position: absolute;
    top: 64%;
    left: -5em;
}

.page_contact .progressbar .item .mark {
    width: 36px;
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid #AFAFAF;
    border-radius: 50%;
    display: block;
    margin: 0 auto 0.5em;
    position: relative;
}

.page_contact .progressbar .item .mark::before {
    content: "";
    width: 41%;
    aspect-ratio: 1;
    background: #801A1F;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    opacity: 0;
}

.page_contact .progressbar .item.active .mark::before {
    opacity: 1;
}

.page_contact .progressbar .item .en {
    display: block;
    color: #6F6969;
    letter-spacing: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.privacy_check_list {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}

.privacy_check_list .hissu {
    background: #c70200;
    color: #fff;
    padding: 2px 15px;
    font-size: 10px;
    letter-spacing: .08em;
    border-radius: 30px;
    font-weight: 600;
}

.privacy_check_list .check_note_text {
    font-size: 14px;
}

.privacy_check_list .check_note_text a {
    text-decoration: underline
    ;
}

.mw_wp_form .privacy_check_list .horizontal-item {
    margin: 0;
}

/* PC固定ページ 404ページ */
#page_404 {
    text-align: center;
}

#page_404 .num {
    font-size: 100px;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#page_404 .text {
    margin-bottom: 1em;
    font-size: 16px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.site_footer {
    background: #fafafa;
    padding: 160px 0 68.5px;
}

.site_footer .body {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 165px;
}

.site_footer .logo {
    width: 100%;
    max-width: 260px;
}

.site_footer .logo img {
    width: 100%;
}

.site_footer .btn {
    width: 280px;
    margin-top: 55px;
}

.site_footer .btn a {
    border-radius: 43px;
    padding: 29.7px 30px;
}

.site_footer .image {
    width: 280px;
    background: #fff;
    border-radius: 43px;
    padding: 29.7px 30px;
    margin-top: 20px;
}

.site_footer .image img {
    display: block;
    width: 90%;
    margin-inline: auto;
}

.site_footer .nav {
    width: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 102px;
    margin-top: 2px;
}

.site_footer .menu {
    line-height: 1;
}

.site_footer .menu:not(:first-of-type) {
    margin-top: 27px;
}

.site_footer .menu a {
    display: inline-block;
    font-family: "Avenir Next", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #2F2F2F;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.site_footer .block {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.site_footer .block_title {
    line-height: 1;
    border-bottom: 1px solid #e3e0e0;
}

.site_footer .block_title a {
    display: inline-block;
    font-family: "Avenir Next", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #2F2F2F;
    padding-bottom: 5px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.site_footer .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 60px;
}

.site_footer .lists_wrap {
    gap: 87px;
}

.site_footer .lists {
    margin-top: 20px;
}

.site_footer .list {
    line-height: 1;
}

.site_footer .list:not(:first-of-type) {
    margin-top: 20px;
}

.site_footer .list a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    padding-left: 16px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.site_footer .list a::before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 1px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #2F2F2F;
}

.site_footer .sub_lists_wrap {
    width: 100%;
    max-width: 435px;
    margin-inline: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 49px;
}

.site_footer .sub_lists {
    margin-top: 20px;
}

.site_footer .sub_list {
    line-height: 1;
}

.site_footer .sub_list:not(:first-of-type) {
    margin-top: 14px;
}

.site_footer .sub_list a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    padding-left: 16px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.site_footer .sub_list a::before {
    content: "";
    width: 8px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #2F2F2F;
}

.site_footer .nav--02 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 64px;
    margin-top: 80px;
}

.site_footer .nav--02 .block {
    width: 100%;
    max-width: 365px;
}

.site_footer .unit .lists {
    margin-top: 24px;
}

.site_footer .footer_bottom {
    margin-top: 75px;
}

.site_footer .copyright {
    display: block;
    font-family: "Avenir Next", serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
}

.site_footer .sub_menus {
    width: 100%;
    max-width: 200px;
    gap: 30px;
    margin-left: auto;
    margin-top: -15px;
}

.site_footer .sub_menu a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #2F2F2F;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
hover 〜 style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* デフォルトcss */
a[href $='.pdf']:hover {
    text-decoration: none;
}

/* パンくず */
.breadcrumb span .current-item:hover {
    color: #6F6969;
    text-decoration: underline;
}

/* 文字ランダム アニメーション */
.random_target a:hover .random,
.c_btn a:hover .random {
    -webkit-animation: randomAnimation 0.1s steps(1, end) 3;
    animation: randomAnimation 0.1s steps(1, end) 3;
    -webkit-animation-delay: calc(var(--index) * 0.3s);
    animation-delay: calc(var(--index) * 0.3s);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/* アンカーリンク */
.c_anchors .anchor a:hover {
    border-bottom: none;
}

.c_anchors .anchor a:hover::before {
    width: 100%;
}

.c_anchors .anchor a:hover .anchor_text {
    color: #801A1F;
}

.c_anchors .anchor a:hover .anchor_icon .default {
    opacity: 0;
}

.c_anchors .anchor a:hover .anchor_icon .active {
    opacity: 1;
}

/* ボタン */
.c_btn a:hover .circle {
    background: #fff;
    -webkit-transform: translate(-50%, -50%) scale(1.25);
    transform: translate(-50%, -50%) scale(1.25);
    -webkit-transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear, -webkit-transform 0.1s linear;
}

.c_btn a:hover .circle_shadow {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

.c_btn a:hover .arrow::before,
.c_btn a:hover .arrow::after {
    background: #2F2F2F;
}

.c_btn--red a:hover .arrow::before,
.c_btn--red a:hover .arrow::after {
    background: #801A1F;
}

.c_btn--red_reverse a:hover .circle {
    background: #801A1F;
}

.c_btn--red_reverse a:hover .circle_shadow {
    background-color: rgba(128, 26, 31, 0.2);
}

.c_btn--red_reverse a:hover .arrow::before,
.c_btn--red_reverse a:hover .arrow::after {
    background: #fff;
}

/* クッションページ */
.c_cushion .c_btn a:hover .circle {
    -webkit-transform: translate(-50%, -50%) scale(1.15);
    transform: translate(-50%, -50%) scale(1.15);
}

.c_cushion .c_btn a:hover .circle_shadow {
    -webkit-transform: translate(-50%, -50%) scale(1.6);
    transform: translate(-50%, -50%) scale(1.6);
}

/* 店舗 */
.c_store .btn a:hover .link_icon .default {
    opacity: 0;
}

.c_store .btn a:hover .link_icon .active {
    opacity: 1;
}

.c_store .btn a:hover .circle_shadow {
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
}

/* ヘッダー */
.pc_header .logo a:hover {
    opacity: 0.8;
}

.pc_header .btn a:hover .circle {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.pc_header .btn a:hover .circle_shadow {
    -webkit-transform: translate(-50%, -50%) scale(1.6);
    transform: translate(-50%, -50%) scale(1.6);
}

.pc_header .sub_menu a:hover .sub_menu_text {
    color: #801A1F;
    opacity: 0.7;
}

.pc_header .sub_menu a:hover .sub_menu_icon {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

/* FV */
#top_fv .news a:hover {
    opacity: 0.6;
}

#top_fv a:hover .circle {
    background: #fff;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
    -webkit-transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear, -webkit-transform 0.1s linear;
}

#top_fv a:hover .circle_shadow {
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: translate(-50%, -50%) scale(1.6);
    transform: translate(-50%, -50%) scale(1.6);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#top_fv a:hover .arrow::before,
#top_fv a:hover .arrow::after {
    background: #2F2F2F;
}

/* 事業紹介 */
#top_service .item a:hover .image::before {
    opacity: 0;
}

#top_service .item a:hover .image img {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}

#top_service .item a:hover .row {
    border-bottom: none;
}

#top_service .item a:hover .row::before {
    width: 100%;
}

#top_service .item a:hover .title {
    color: #801A1F;
}

#top_service .item a:hover .item_circle {
    background: #801A1F;
    border: 1px solid #801A1F;
    -webkit-transform: translate(-50%, -50%) scale(1.25);
    transform: translate(-50%, -50%) scale(1.25);
    -webkit-transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear, -webkit-transform 0.1s linear;
}

#top_service .item a:hover .item_circle_shadow {
    background-color: rgba(128, 26, 31, 0.2);
    -webkit-transform: translate(-50%, -50%) scale(1.7);
    transform: translate(-50%, -50%) scale(1.7);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#top_service .item a:hover .item_arrow::before,
#top_service .item a:hover .item_arrow::after {
    background: #fff;
}

/* 店舗紹介 */
#top_store .item a:hover .image img {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}

#top_store .item a:hover .title {
    color: #801A1F;
}

#top_store .item a:hover .item_circle {
    background: #801A1F;
    border: 1px solid #801A1F;
    -webkit-transform: translate(-50%, -50%) scale(1.25);
    transform: translate(-50%, -50%) scale(1.25);
    -webkit-transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear, -webkit-transform 0.1s linear;
}

#top_store .item a:hover .item_circle_shadow {
    background-color: rgba(128, 26, 31, 0.2);
    -webkit-transform: translate(-50%, -50%) scale(1.7);
    transform: translate(-50%, -50%) scale(1.7);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#top_store .item a:hover .item_arrow::before,
#top_store .item a:hover .item_arrow::after {
    background: #fff;
}

/* お知らせ */
#top_news .item a:hover .title {
    color: #801A1F;
}

#top_news .item a:hover .item_circle {
    background: #801A1F;
    border: 1px solid #801A1F;
    -webkit-transform: translate(-50%, -50%) scale(1.25);
    transform: translate(-50%, -50%) scale(1.25);
    -webkit-transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear, -webkit-transform 0.1s linear;
}

#top_news .item a:hover .item_circle_shadow {
    background-color: rgba(128, 26, 31, 0.2);
    -webkit-transform: translate(-50%, -50%) scale(1.7);
    transform: translate(-50%, -50%) scale(1.7);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#top_news .item a:hover .item_arrow::before,
#top_news .item a:hover .item_arrow::after {
    background: #fff;
}

/* 事業紹介（リクルート）ページ */
#recruit_contents .item a:hover::before {
    opacity: 0;
}

#recruit_contents .item a:hover .item_image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* お問い合わせフォーム */
.page_contact #btn_wrap button:hover {
    opacity: .8;
}

.page_contact .thanks_textArea .ichiran_link:hover {
    opacity: .8;
}

/* フッター */
.site_footer .menu a:hover {
    color: #801A1F;
}

.site_footer .block_title a:hover {
    color: #801A1F;
}

.site_footer .list a:hover {
    color: #801A1F;
}

.site_footer .sub_list a:hover {
    color: #801A1F;
}

.site_footer .sub_menu a:hover {
    opacity: 0.6;
}

#inbound_contents .text_box .catch_body .catch_sub {
    text-align: center;
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: .03em;
    font-weight: 700;
}

#inbound_contents .text_box .catch_body .catch_sub .color {
    color: #801A1F;
}

#inbound_contents .text_box .catch_body .catch_sub .big {
    font-size: 1.1em;
}

.message_cont_sec .top_box .title .line {
    font-size: 1.1em;
    padding: 0.15em;
    line-height: 1.2;
    display: inline-block;
    color: #801A1F;
}

.message_cont_sec .top_box .title::before,
.message_cont_sec .top_box .title::after {
    content: "";
    position: absolute;
    background: #f4eded;
    z-index: -1;
}

.message_cont_sec .top_box .title::before {
    width: 130px;
    height: 115px;
    top: -70px;
    left: 90px;
}

.message_cont_sec .top_box .title::after {
    width: 80px;
    height: 80px;
    bottom: -15px;
    right: 146px;
}

.company_profile_sec .company_box .title_box {
    text-align: center;
    margin-bottom: 50px;
}

.company_profile_sec .company_box .title_box .title {
    font-size: 40px;
    letter-spacing: .08em;
    font-weight: 700;
    line-height: 1.4;
}

.company_profile_sec .company_box .title_box .title::first-letter {
    color: #801A1F;
}

.company_profile_sec .company_box {
    margin-top: 100px;
}

.page_recruit #top_recruit .image {
    height: 370px;
    width: 780px;
    bottom: 70px;
}

.page_recruit #top_recruit {
    padding: unset;
}

.page_recruit #recruit_contents .item+.item {
    margin-top: 50px;
}

.page_recruit #recruit_contents .c_title_block02 {
    margin-bottom: 50px;
}

.common_interview_list ul {
    display: grid;
    gap: 0 20px;
    grid-template-columns: repeat(3, 1fr);
}

.common_interview_list ul li .text_box .theme {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .01em;
    color: #801A1F;
    margin-bottom: 0.5em;
    text-align: center;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.common_interview_list ul li .text_box .text {
    font-size: 14px;
    letter-spacing: .03em;
    line-height: 1.5;
    margin-bottom: 1em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #6F6969;
}

.common_interview_list ul .img {
    width: 100%;
    height: 200px;
}

.common_interview_list ul .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common_interview_list ul li {
    box-shadow: 0 1px 6px #cecece;
    border-radius: 10px;
    overflow: hidden;
}

.common_interview_list ul li .text_box {
    padding: 25px 20px;
}

.common_interview_list {
    margin-top: 30px;
}

.common_interview_list .btn.c_btn.c_btn--red_reverse a {
    background-color: #2F2F2F;
    color: #fff;
    padding: 16px 30px;
    width: 250px;
    margin: 0 auto;
}

.common_interview_list .btn.c_btn.c_btn--red_reverse .link_icon .arrow::before,
.common_interview_list .btn.c_btn.c_btn--red_reverse .link_icon .arrow::after {
    background: #fff;
}

.common_interview_list .btn.c_btn.c_btn--red_reverse .link_icon .circle {
    border-color: #fff;
}

.common_interview_list ul li .text_box .c_btn--red_reverse a:hover .circle_shadow {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

.common_interview_list ul li .text_box .c_btn--red_reverse a:hover .circle {
    background: #fff;
    -webkit-transform: translate(-50%, -50%) scale(1.25);
    transform: translate(-50%, -50%) scale(1.25);
    -webkit-transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: background 0.1s linear, -webkit-transform 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear;
    transition: transform 0.1s linear, background 0.1s linear, -webkit-transform 0.1s linear;
}

.common_interview_list .btn.c_btn.c_btn--red_reverse a:hover .link_icon .arrow::before,
.common_interview_list .btn.c_btn.c_btn--red_reverse a:hover .link_icon .arrow::after {
    background-color: #2F2F2F;
}

.common_interview_list.c_lists .item_row.flex {
    margin-bottom: 20px;
}

.common_interview_list.c_lists ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.common_interview_list.c_lists ul li {
    padding: 40px 30px;
    background: #F6F6F6;
}

.common_interview_list.c_lists ul li .theme {
    color: #801A1F;
    text-align: center;
    font-size: 20px;
    letter-spacing: .03em;
    font-weight: 700;
    margin-bottom: 0.5em;
    line-height: 1.5;
}

.common_interview_list.c_lists ul li .text {
    font-size: 15px;
    color: #fff;
}

.common_interview_list.c_lists ul li .text_jp {
    color: #fff;
    font-size: 15px;
    letter-spacing: .02em;
    text-align: center;
    color: #6F6969;
    line-height: 1.7;
}

#recruit_management_job .management_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

#recruit_management_job .management_box .common_list_box {
    background-color: #f4eded;
    padding: 40px 40px;
    border-radius: 10px;
}

.management_box .common_list_box .catch {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #801A1F;
    margin-bottom: 0.7em;
    line-height: 1.5;
}

.management_box .common_list_box .text_box {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    flex-direction: column;
}

.management_box .common_list_box .text_box .text {
    width: fit-content;
    font-size: 16px;
    letter-spacing: .03em;
    font-weight: 700;
    color: #6F6969;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.7;
}

.management_box .common_list_box .text_box .text::before {
    content: "";
    display: block;
    background: #801A1F;
    flex-shrink: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transform: translateY(8px);
}

.career_box .career_list ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
    margin-top: 30px;
}

.career_box .career_list ul .item {
    margin: unset;
}

.career_box .career_list ul .item .img {
    background-color: #eee;
    padding: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    min-block-size: 150px;
    margin-bottom: 15px;
}

.career_box .career_list ul .item .img img {
    width: 100%;
}

#recruit_brokerage_job .c_lists .item .name {
    font-size: 16px;
    letter-spacing: .03em;
    font-weight: 700;
    text-align: center;
}

.career_box .career_list ul li+li {
    position: relative;
}

.career_box .career_list ul li+li::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 50px;
    background-color: #801A1F;
    top: 46px;
    left: -33px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
750px 〜 style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ----------------------- デフォルトcss ------------------------- */
@media (max-width: 750px) {
    body {
        min-width: 100%;
        font-size: 3.59vw;
        line-height: 1.8;
    }

    .wrap.mid,
    .wrap.lr,
    .wrap {
        width: 94.87%;
    }

    .common_page_wrap {
        padding: 10.77vw 0 20.51vw;
    }

    /* SP固定ページ 共通設定 */
    .common_page_main {
        padding-block: 20vw;
    }

    .common_page_main .title_box .title {
        font-size: 5.6vw;
    }

    .reserve_text {
        font-size: 6vw;
    }

    /* パンくず */
    .breadcrumb {
        left: -3.6vw;
        font-size: 2.56vw;
        padding: 4.36vw 0 5.13vw;
    }

    .breadcrumb span {
        padding: 1.7vw;
    }

    .breadcrumb span .current-item:hover {
        color: #2F2F2F;
        text-decoration: none;
    }

    /* ----------------------- サイト アニメーション ------------------------- */
    /* 文字スライド アニメーション */
    .char_wrap {
        margin-right: 0;
    }

    /* ----------------------- サイト共通パーツ ------------------------- */
    /* アンカーリンク */
    .c_anchors {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.56vw;
    }

    .c_anchors .anchor a {
        padding-bottom: 1.79vw;
    }

    .c_anchors .anchor a:hover {
        border-bottom: 1px solid #e3e0e0;
    }

    .c_anchors .anchor a::before {
        display: none;
    }

    .c_anchors .anchor_text {
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.01em;
        font-size: 3.33vw;
        line-height: 1.6;
    }

    .c_anchors .anchor a:hover .anchor_text {
        color: #2F2F2F;
    }

    .c_anchors .anchor_icon {
        width: 5.13vw;
        height: 5.13vw;
    }

    .c_anchors .anchor_icon .active {
        display: none;
    }

    .c_anchors .anchor a:hover .anchor_icon .default {
        opacity: 1;
    }

    /* ボタン */
    .c_btn {
        max-width: 71.79vw;
    }

    .c_btn a {
        border-radius: 10.26vw;
        padding: 4.44vw 6.41vw;
    }

    .c_btn .link_text {
        font-size: 4.1vw;
    }

    .c_btn .link_icon {
        width: 6.15vw;
        height: 6.15vw;
    }

    .c_btn a:hover .circle {
        background: transparent;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    .c_btn .circle_shadow,
    .c_btn a:hover .circle_shadow {
        display: none;
    }

    .c_btn .arrow::before,
    .c_btn .arrow::after {
        width: 1.54vw;
        height: 0.26vw;
    }

    .c_btn a:hover .arrow::before,
    .c_btn a:hover .arrow::after {
        background: #fff;
    }

    .c_btn--red a:hover .arrow::before,
    .c_btn--red a:hover .arrow::after {
        background: #fff;
    }

    .c_btn--red_reverse a:hover .circle {
        background: #fff;
    }

    .c_btn--red_reverse .circle_shadow,
    .c_btn--red_reverse a:hover .circle_shadow {
        display: none;
    }

    .c_btn--red_reverse a:hover .arrow::before,
    .c_btn--red_reverse a:hover .arrow::after {
        background: #801A1F;
    }

    /* キャッチコピー */
    .c_catch .catch_body {
        padding: 5.13vw 0;
    }

    .c_catch .catch_sub {
        font-size: 4.62vw;
    }

    .c_catch .catch_sub .big {
        font-size: 6.15vw;
        margin-top: 3.85vw;
    }

    .c_catch .catch_title {
        font-size: 6.15vw;
        margin-top: 6.15vw;
    }

    .c_catch .catch_main {
        font-size: 6.15vw;
        margin-top: 3.85vw;
    }

    .c_catch .catch_main .big {
        top: 0;
        font-size: 8.21vw;
        padding: 0 0.77vw;
    }

    .c_catch02 .catch_body {
        padding-bottom: 5.13vw;
    }

    .c_catch02 .catch_sub {
        font-size: 4.1vw;
    }

    .c_catch02 .catch_sub .big {
        font-size: 6.67vw;
        margin-top: 5.13vw;
    }

    .c_catch02 .catch_title {
        margin-top: 5.13vw;
    }

    .c_catch02 .catch_title .sub {
        font-size: 5.64vw;
    }

    .c_catch02 .catch_title .main {
        font-size: 8.97vw;
        margin-top: 2.56vw;
    }

    .c_catch02 .catch_main {
        display: block;
        font-size: 6.67vw;
        line-height: 1.65;
        margin-top: 10.26vw;
    }

    .c_catch02 .logo_img {
        width: 100%;
        margin: 10vw auto 0;
    }


    /* クッションページ */
    .c_cushion {
        grid-template-columns: 1fr;
        gap: 2.56vw;
        margin-top: 10.26vw;
    }

    .c_cushion .item {
        padding: 7.69vw 5.13vw;
    }

    .c_cushion .en {
        font-size: 3.08vw;
        margin-top: 3.08vw;
    }

    .c_cushion .ja {
        font-size: 5.64vw;
    }

    .c_cushion .btn {
        max-width: 51.28vw;
        margin-top: 6.15vw;
    }

    .c_cushion .btn a {
        padding: 3.08vw 5.13vw 3.08vw 7.69vw;
    }

    .c_cushion .c_btn .link_text {
        font-size: 3.59vw;
    }

    .c_cushion .link_icon {
        width: 5.13vw;
        height: 5.13vw;
    }

    .c_cushion .c_btn a:hover .circle {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    .c_cushion .c_btn a:hover .circle_shadow {
        display: none;
    }

    /* インタビュー */
    .c_interview {
        margin-top: 8.21vw;
    }

    .c_interview .items {
        grid-template-columns: 1fr;
        gap: 5.13vw;
    }

    .c_interview .item {
        padding: 7.69vw 5.13vw;
    }

    .c_interview .contents {
        margin-top: 5.13vw;
    }

    .c_interview .title {
        font-size: 4.62vw;
    }

    .c_interview .text {
        font-size: 4.1vw;
        margin-top: 2.56vw;
    }

    .c_interview .btn {
        max-width: 71.79vw;
        margin-top: 5.13vw;
    }

    .c_interview .btn a {
        padding: 4.1vw 7.69vw;
    }

    /* リスト形式 */
    .c_lists {
        margin-top: 15.38vw;
    }

    .c_lists .item {
        padding-bottom: 5.13vw;
    }

    .c_lists .item:not(:first-of-type) {
        padding-top: 5.13vw;
    }

    .c_lists .title span {
        font-size: 4.1vw;
        padding: 1.54vw 2.56vw 2.05vw;
    }

    .c_lists .text {
        font-size: 3.59vw;
        line-height: 1.8;
        padding-left: 0;
        margin-top: 2.56vw;
    }

    .c_lists .lists {
        padding-left: 0;
        margin-top: 5.13vw;
    }

    .c_lists .item_row {
        gap: 5.13vw;
    }

    .c_lists .list:not(:first-of-type) {
        margin-top: 6.15vw;
    }

    .c_lists .lists--grid {
        grid-template-columns: 1fr;
        gap: 6.15vw;
    }

    .c_lists .lists--grid .list {
        margin-top: 0;
    }

    .c_lists .lists--02 {
        margin-top: 4.1vw;
    }

    .c_lists .lists--02 .list:not(:first-of-type) {
        margin-top: 0;
    }

    .c_lists .list_title {
        font-size: 4.1vw;
    }

    .c_lists .list_text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 2.56vw;
    }

    .c_lists .block {
        margin-top: 10.26vw;
    }

    .c_lists .sub_title span {
        font-size: 4.1vw;
        padding: 1.28vw 2.56vw 1.79vw;
    }

    /* メッセージ */
    .c_message .c_message_body {
        gap: 10.26vw;
    }

    .c_message .c_message_contents {
        width: 100%;
        padding-bottom: 0;
    }

    .c_message .c_message_title {
        font-size: 5.64vw;
        line-height: 1.5;
    }

    .c_message .c_message_text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 7vw;
    }

    .c_message .c_message_image {
        position: relative;
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        top: 0;
        left: 0;
        padding-left: 5vw;
        margin-top: 10.26vw;
    }

    .c_message .c_message_image img {
        aspect-ratio: 370/210;
    }

    .c_message .c_message_row {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: 5vw;
        padding-right: 2.56vw;
        margin-top: 5.13vw;
    }

    .c_message .c_message_job {
        font-size: 4.1vw;
    }

    .c_message .c_message_name {
        font-size: 6.15vw;
    }

    /* モーダル */
    .c_modal .modal_close {
        top: -10.26vw;
        right: 0;
        font-size: 6.15vw;
    }

    .c_modal .modal_body {
        max-width: 90vw;
        max-height: 75vh;
        padding: 7.69vw 5.13vw;
    }

    .c_modal .modal_title {
        font-size: 4.62vw;
        padding-left: 2.56vw;
        margin-top: 8.21vw;
    }

    .c_modal .modal_lists {
        margin-top: 6.15vw;
    }

    .c_modal .modal_list:not(:first-of-type) {
        margin-top: 6.15vw;
    }

    .c_modal .modal_list_title {
        font-size: 3.85vw;
        padding-left: 7.69vw;
    }

    .c_modal .modal_list_title::before {
        width: 5.13vw;
    }

    .c_modal .modal_list_text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 2.56vw;
    }

    /* スライダー */
    .c_slider {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        margin-top: 8.21vw;
    }

    .c_slider .slide_contents {
        margin-top: 5.13vw;
    }

    .c_slider .slide_title {
        font-size: 5.13vw;
        padding-bottom: 2.56vw;
    }

    .c_slider .slide_lists {
        margin-top: 3.85vw;
    }

    .c_slider .slide_list {
        font-size: 3.59vw;
    }

    .c_slider .swiper-button-prev,
    .c_slider .swiper-button-next {
        width: 10.26vw;
        height: 10.26vw;
        font-size: 10.26vw;
        position: absolute;
        top: calc(50% - 10.26vw);
        color: transparent;
        border: 3px solid #fff;
        z-index: 11;
    }

    .c_slider .swiper-button-prev {
        left: 3vw;
    }

    .c_slider .swiper-button-next {
        right: 3vw;
    }

    /* 店舗 */
    .c_store {
        margin-top: 14.1vw;
    }

    .c_store .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .c_store .item:not(:first-of-type) {
        margin-top: 10.26vw;
    }

    .c_store .image {
        width: 100%;
    }

    .c_store .image img {
        aspect-ratio: 420/200;
    }

    .c_store .contents {
        width: 100%;
        padding: 3.85vw 5.13vw;
    }

    .c_store .row {
        gap: 1.54vw;
        padding-bottom: 2.31vw;
    }

    .c_store .sub_title {
        font-size: 2.56vw;
        line-height: 1.3;
        padding: 1.54vw 1.09vw;
    }

    .c_store .sub_title span {
        font-size: 2.56vw;
        right: -0.51vw;
    }

    .c_store .title {
        font-size: 4.62vw;
        line-height: 1.69;
    }

    .c_store .contents_body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .c_store .company {
        width: 100%;
        margin-top: 2.56vw;
    }

    .c_store .unit {
        gap: 2.56vw;
    }

    .c_store .unit:not(:first-of-type) {
        margin-top: 2.56vw;
    }

    .c_store .unit_icon {
        top: 0.51vw;
    }

    .c_store .icon img {
        width: 3.08vw;
        height: 3.85vw;
    }

    .c_store .unit_text {
        font-size: 3.33vw;
        line-height: 1.5;
    }

    .c_store .group {
        margin-top: 3.85vw;
    }

    .c_store .group_row {
        gap: 2.56vw;
    }

    .c_store .group_icon {
        position: relative;
        top: -0.51vw;
    }

    .c_store .group_icon img {
        width: 3.08vw;
        height: 3.85vw;
    }

    .c_store .group_tel {
        font-size: 6.15vw;
    }

    .c_store .group_text {
        font-size: 3.08vw;
        line-height: 1.5;
        margin-top: 0;
    }

    .c_store .btns {
        width: 100%;
        margin-top: 3.85vw;
    }

    .c_store .btn {
        width: 100%;
        max-width: 76.92vw;
        margin-inline: auto;
    }

    .c_store .btn:not(:first-of-type) {
        margin-top: 8px;
    }

    .c_store .btn a {
        padding: 3.85vw 5.13vw 3.85vw 7.69vw;
    }

    .c_store .link_text {
        font-size: 3.33vw;
    }

    .c_store .link_icon {
        width: 5.13vw;
        height: 5.13vw;
    }

    .c_store .link_icon .active {
        display: none;
    }

    .c_store .btn a:hover .link_icon img {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    .c_store .btn a:hover .link_icon .default {
        opacity: 1;
    }

    .c_store .btn a:hover .circle_shadow {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    /* テーブル */
    .c_table th,
    .c_table td {
        font-size: 4.1vw;
        padding: 4.1vw 6.15vw;
    }

    .c_table .table_list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 5.13vw;
    }

    .c_table .table_list:not(:first-of-type) {
        margin-top: 4.1vw;
    }

    .c_table .table_list .accent {
        top: 0.26vw;
        font-size: 5.13vw;
        padding-right: 0.77vw;
    }

    .c_table .table_block {
        margin-top: 5.13vw;
    }

    /* セクションタイトル */
    .c_title_block .title_block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 1.03vw;
    }

    .c_title_block .en {
        font-size: 10.26vw;
        letter-spacing: 0.05em;
    }

    .c_title_block .ja {
        font-size: 4.1vw;
        margin-top: 4.1vw;
    }

    .c_title_block .title_block .ja {
        top: auto;
    }

    .c_title_block .lead {
        font-size: 3.59vw;
        margin-top: 4.62vw;
    }

    .c_title_block .lead .adjustment {
        position: relative;
        top: -0.05em;
        display: inline-block;
        text-indent: -1em;
        padding-left: 1em;
    }

    .c_title_block .lead .spacing {
        position: relative;
        top: -0.05em;
        display: inline-block;
        letter-spacing: 0.06em;
    }

    .c_title_block02 {
        text-align: center;
    }

    .c_title_block02 .ja {
        font-size: 6.67vw;
    }

    .c_title_block02 .en {
        font-size: 3.59vw;
        margin-top: 2.56vw;
    }

    .c_title_block02 .lead {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 4.1vw;
        text-align: left;
    }

    /* 事例 */
    .c_works {
        margin-top: 10.26vw;
    }

    .c_works .head_title {
        font-size: 4.1vw;
        padding-left: 7.69vw;
    }

    .c_works .head_title::before {
        width: 5.13vw;
    }

    .c_works .works {
        grid-template-columns: repeat(2, 1fr);
        gap: 6.15vw 4.1vw;
        padding: 0;
        margin-top: 5.13vw;
    }

    .c_works .work_title {
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.01em;
        font-size: 3.59vw;
        line-height: 1.33;
        margin-top: 2.56vw;
    }

    /* ----------------------- サイト 共通セクション ------------------------- */
    /* 下層FV */
    .common_fv {
        margin-top: 0;
    }

    .common_fv .box {
        padding: 44.1vw 0 10.51vw;
    }

    .common_fv .title .en {
        font-size: 9.23vw;
    }

    .common_fv .title .ja {
        font-size: 4.1vw;
        margin-top: 4.1vw;
    }

    /* ----------------------- SPヘッダー ------------------------- */
    #sp_header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        padding: 20px 0;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    #sp_header.active {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        background: #2F2F2F;
    }

    #sp_header.scroll {
        background: rgba(47, 47, 47, 0.8);
        padding: 10px 0;
    }

    #sp_header .body {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 0 2.56vw;
    }

    #sp_header .logo {
        width: 100%;
        max-width: 80px;
    }

    #sp_header .btn {
        max-width: 140px;
        margin-right: 60px;
    }

    #sp_header .btn a {
        padding: 15px;
    }

    #sp_header .link_text {
        font-size: 13px;
        border-radius: 25px;
    }

    #sp_header .btn .link_icon {
        width: 16px;
        height: 16px;
    }

    #sp_header .btn .arrow::before,
    #sp_header .btn .arrow::after {
        width: 4px;
        height: 1px;
    }

    #sp_header .btn a:hover .circle {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    #sp_header .btn a:hover .circle_shadow {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    /* 詳細ページ用 */
    #sp_header.is-single {
        background: #2F2F2F;
        padding-bottom: 20px;
    }

    #sp_header.is-single.scroll {
        background: rgba(47, 47, 47, 0.8);
        padding-bottom: 10px;
    }

    /* ----------------------- TOPページ ------------------------- */
    /* FV */
    #top_fv {
        height: 100svh;
        margin-top: -74px;
    }

    #top_fv .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: 12.82vw;
        padding: 0 0 7.69vw;
    }

    #top_fv .box {
        width: 100%;
    }

    #top_fv .title {
        font-size: 8.59vw;
        line-height: 1.6;
    }

    #top_fv .sub_title {
        font-size: 3.33vw;
        margin-top: 5.13vw;
    }

    #top_fv .news {
        width: 100%;
    }

    #top_fv .news a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 3.08vw;
        padding: 4.62vw 2.31vw 4.62vw 2.31vw;
    }

    #top_fv .news a:hover {
        opacity: 1;
    }

    #top_fv .news_head {
        font-size: 3.59vw;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }

    #top_fv .news_contents {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 3.59vw;
    }

    #top_fv .news_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 0;
    }

    #top_fv .news_date {
        font-size: 3.33vw;
        border-right: none;
        padding-top: 0;
        padding-right: 0;
        margin-right: 0;
    }

    #top_fv .news_title {
        position: relative;
        font-size: 3.59vw;
        padding-top: 2.05vw;
        margin-top: 1.79vw;
    }

    #top_fv .news_title::before {
        content: "";
        position: absolute;
        width: 3.85vw;
        height: 1px;
        top: 0;
        left: 0;
        background: #eaeaea;
    }

    #top_fv .news_icon {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        position: relative;
        width: 4.1vw;
        height: 4.1vw;
    }

    #top_fv a:hover .circle {
        background: transparent;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    #top_fv .circle_shadow,
    #top_fv a:hover .circle_shadow {
        display: none;
    }

    #top_fv .arrow::before,
    #top_fv .arrow::after {
        width: 1.03vw;
        height: 1px;
    }

    #top_fv a:hover .arrow::before,
    #top_fv a:hover .arrow::after {
        background: #fff;
    }

    /* 企業情報 */
    #top_about {
        padding: 25.64vw 0 0;
    }

    #top_about .wrap {
        width: 89.7%;
    }

    #top_about .body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 11.54vw;
    }

    #top_about .square {
        width: 25.64vw;
        height: 25.64vw;
        top: -8.72vw;
        left: -2.56vw;
    }

    #top_about .contents {
        width: 100%;
        padding-left: 5.13vw;
    }

    #top_about .en {
        gap: 7.69vw;
        top: -17.95vw;
        left: -5.13vw;
    }

    #top_about .en_text {
        font-size: 4.1vw;
    }

    #top_about .border {
        height: 132.82vw;
    }

    #top_about .title {
        font-size: 7.18vw;
        line-height: 1.4;
    }

    #top_about .text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 4.62vw;
    }

    #top_about .btn {
        margin-top: 5.9vw;
    }

    #top_about .images {
        width: 100%;
        top: auto;
    }

    #top_about .image01 {
        width: 69.23vw;
    }

    #top_about .image01 img {
        aspect-ratio: 270/350;
    }

    #top_about .image02 {
        width: 38.46vw;
        top: -25.64vw;
        right: 0;
    }

    /* 事業紹介 */
    #top_service {
        padding: 74.87vw 0 15.38vw;
        margin-top: -83.33vw;
    }

    #top_service::before {
        width: 94.87%;
    }

    #top_service .wrap {
        width: 89.7%;
    }

    #top_service .swiper-container {
        padding-bottom: 17.44vw;
        margin-top: 6.41vw;
    }

    #top_service .top-service-swiper:hover .swiper-slide {
        opacity: 1;
    }

    #top_service .swiper-pagination-progressbar {
        width: 58.72vw;
        height: 1.28vw;
        top: auto;
        left: auto;
        bottom: 5.64vw;
        right: 5.13vw;
        background: #e3e0e0;
    }

    #top_service .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #801A1F;
    }

    #top_service .swiper-button-prev,
    #top_service .swiper-button-next,
    #top_service .swiper-pagination {
        display: block;
    }

    #top_service .swiper-button-prev,
    #top_service .swiper-button-next {
        width: 12.31vw;
        height: 12.31vw;
        top: auto;
        bottom: 0;
        color: transparent;
        z-index: 11;
    }

    #top_service .swiper-button-prev {
        left: 5.13vw;
    }

    #top_service .swiper-button-next {
        left: 20vw;
    }

    #top_service .swiper-button-prev::before,
    #top_service .swiper-button-next::before {
        display: none;
    }

    #top_service .swiper-button-prev::after,
    #top_service .swiper-button-next::after {
        display: block;
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    #top_service .swiper-button-prev::after {
        background-image: url("./image/swiper-button-prev.svg");
    }

    #top_service .swiper-button-next::after {
        background-image: url("./image/swiper-button-next.svg");
    }

    #top_service .image::before {
        display: none;
    }

    #top_service .item a:hover .image img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    #top_service .row {
        padding: 4.87vw 2.56vw 4.87vw 0;
    }

    #top_service .row::before {
        display: none;
    }

    #top_service .item a:hover .row {
        border-bottom: 2px solid #e3e0e0;
    }

    #top_service .title {
        font-size: 6.15vw;
    }

    #top_service .item a:hover .title {
        color: #2F2F2F;
    }

    #top_service .item_icon {
        width: 6.15vw;
        height: 6.15vw;
    }

    #top_service .item_circle {
        border: 1px solid #999999;
    }

    #top_service .item a:hover .item_circle {
        background: transparent;
        border: 1px solid #999999;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    #top_service .item_circle_shadow,
    #top_service .item a:hover .item_circle_shadow {
        display: none;
    }

    #top_service .item_arrow::before,
    #top_service .item_arrow::after {
        width: 1.54vw;
    }

    #top_service .item a:hover .item_arrow::before,
    #top_service .item a:hover .item_arrow::after {
        background: #999999;
    }

    #top_service .btn {
        margin-top: 6.15vw;
    }

    /* 店舗紹介 */
    #top_store {
        padding: 16.67vw 0 15.38vw;
    }

    #top_store .square01 {
        width: 38.46vw;
        height: 38.46vw;
        top: -34.62vw;
        left: -2.56vw;
    }

    #top_store .square02 {
        width: 20.51vw;
        height: 23.08vw;
        top: auto;
        bottom: -15.64vw;
        right: -2.56vw;
    }

    #top_store .head {
        padding: 0 2.56vw;
    }

    #top_store .c_title_block .lead {
        margin-top: 4.1vw;
    }

    #top_store .items {
        grid-template-columns: 1fr;
        gap: 2.56vw;
        margin-top: 6.15vw;
    }

    #top_store .item {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    #top_store .item a {
        height: auto;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    #top_store .image {
        width: 35.3%;
        height: auto;
    }

    #top_store .image img {
        aspect-ratio: 130/194;
    }

    #top_store .item:nth-of-type(5) .image img {
        aspect-ratio: 130/176;
    }

    #top_store .item a:hover .image img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    #top_store .contents {
        width: 64.7%;
        padding: 4.87vw 2.56vw 3.85vw 3.85vw;
    }

    #top_store .box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1.54vw;
        padding-bottom: 2.31vw;
    }

    #top_store .row {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0;
    }

    #top_store .sub_title {
        font-size: 2.56vw;
        line-height: 1.3;
        padding: 1.54vw 1.09vw;
        text-align: center;
    }

    #top_store .sub_title span {
        position: relative;
        display: inline-block;
        letter-spacing: 0.45em;
        right: -0.51vw;
    }

    #top_store .title {
        font-size: 4.62vw;
        line-height: 1.69;
    }

    #top_store .item a:hover .title {
        color: #2F2F2F;
    }

    #top_store .item_icon {
        width: 5.13vw;
        height: 5.13vw;
    }

    #top_store .item a:hover .item_circle {
        background: transparent;
        border: 1px solid #999999;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    #top_store .item_circle_shadow,
    #top_store .item a:hover .item_circle_shadow {
        display: none;
    }

    #top_store .item_arrow::before,
    #top_store .item_arrow::after {
        width: 1.28vw;
    }

    #top_store .item a:hover .item_arrow::before,
    #top_store .item a:hover .item_arrow::after {
        background: #999999;
    }

    #top_store .units {
        margin-top: 2.56vw;
    }

    #top_store .unit {
        gap: 2.56vw;
    }

    #top_store .unit:not(:first-of-type) {
        margin-top: 2.56vw;
    }

    #top_store .text {
        font-size: 3.08vw;
        line-height: 1.5;
    }

    #top_store .icon {
        top: 0.51vw;
    }

    #top_store .icon img {
        width: 3.08vw;
        height: 3.85vw;
    }

    #top_store .btn {
        margin-right: auto;
        margin-top: 6.41vw;
    }

    /* お知らせ */
    #top_news {
        padding: 14.1vw 0 25.64vw;
        margin-top: 0;
    }

    #top_news .wrap {
        width: 89.7%;
    }

    #top_news .body {
        display: block;
    }

    #top_news .contents {
        width: 100%;
    }

    #top_news .c_title_block {
        text-align: center;
    }

    #top_news .items {
        width: 100%;
        margin-top: 7.69vw;
    }

    #top_news .item:not(:first-of-type) {
        margin-top: 2.56vw;
    }

    #top_news .item a {
        gap: 3.85vw;
        padding: 4.87vw 5.13vw 4.87vw 6.41vw;
    }

    #top_news .item a::before {
        width: 1.28vw;
        height: 15.38vw;
    }

    #top_news .date {
        font-size: 3.08vw;
        letter-spacing: 0;
    }

    #top_news .title {
        font-size: 3.59vw;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        margin-top: 2.56vw;
    }

    #top_news .item a:hover .title {
        color: #2F2F2F;
    }

    #top_news .item_icon {
        width: 5.13vw;
        height: 5.13vw;
    }

    #top_news .item a:hover .item_circle {
        background: transparent;
        border: 1px solid #999999;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    #top_news .item_circle_shadow,
    #top_news .item a:hover .item_circle_shadow {
        display: none;
    }

    #top_news .item_arrow::before,
    #top_news .item_arrow::after {
        width: 1.54vw;
    }

    #top_news .item a:hover .item_arrow::before,
    #top_news .item a:hover .item_arrow::after {
        background: #999999;
    }

    #top_news .btn {
        margin-top: 6.41vw;
    }

    /* 採用情報 */
    #top_recruit {
        padding: 10.26vw 0 15.38vw;
    }

    #top_recruit::after {
        width: 79.49vw;
        height: 116.67vw;
        top: 0;
        bottom: auto;
        background-image: url("./image/top-recruit-bg-sp.svg");
    }

    #top_recruit .slide_text {
        top: -15.38vw;
        gap: 4.1vw;
    }

    #top_recruit .slide_text span {
        font-size: 12.31vw;
        line-height: 1;
    }

    #top_recruit .body {
        padding: 0;
    }

    #top_recruit .contents {
        max-width: 94.87%;
        margin-inline: auto;
        padding: 12.82vw 6.41vw;
    }

    #top_recruit .title .en {
        font-size: 4.1vw;
    }

    #top_recruit .title .ja {
        font-size: 6.97vw;
        line-height: 1.4;
        margin-top: 5.13vw;
    }

    #top_recruit .text {
        font-size: 4.1vw;
        line-height: 1.6;
        letter-spacing: 0.01em;
        margin-top: 5.64vw;
    }

    #top_recruit .btn {
        margin-top: 6.15vw;
    }

    #top_recruit .image {
        position: relative;
        width: 100%;
        height: auto;
        bottom: auto;
        right: auto;
        margin-top: -12.82vw;
        z-index: -1;
    }

    #top_recruit .image img {
        width: 100%;
        height: auto;
        aspect-ratio: 370/280;
        -o-object-fit: cover;
        object-fit: cover;
    }

    /* ----------------------- 下層ページ ------------------------- */
    /* SP固定ページ 事業紹介（サービス） */
    #service_cushion .wrap {
        width: 89.7%;
    }

    /* SP固定ページ 賃貸仲介事業（店舗紹介） */
    #page_store .common_page_wrap {
        position: relative;
    }

    #page_store .common_page_wrap::before {
        content: "";
        position: absolute;
        width: 38.46vw;
        height: 38.46vw;
        bottom: 7.69vw;
        left: -7.95vw;
        background: #f4eded;
        z-index: -1;
    }

    #store_contents {
        position: relative;
        overflow: hidden;
    }

    #store_contents .logo {
        max-width: 46.15vw;
    }

    #store_contents .head {
        padding: 0 2.56vw;
    }

    #store_contents .text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 4.62vw;
    }

    #store_contents .body {
        padding: 8.97vw 5.13vw 0;
        margin-top: 8.46vw;
    }

    #fuse .square {
        width: 38.46vw;
        height: 38.46vw;
        top: -21.79vw;
        right: -12.82vw;
    }

    #yao .square {
        display: none;
    }

    /* SP固定ページ 不動産売買事業（サービス） */
    #transaction_purchase .wrap {
        width: 89.7%;
    }

    #transaction_sell {
        padding: 20.51vw 0 0;
    }

    #transaction_sell .wrap {
        width: 89.7%;
    }

    #transaction_intermediary {
        padding: 20.51vw 0 0;
    }

    #transaction_intermediary .wrap {
        width: 89.7%;
    }

    /* SP固定ページ 管理事業（サービス） */
    #service_management .wrap {
        width: 89.7%;
    }

    #service_management .c_title_block02 .ja {
        font-size: 6.15vw;
    }

    #service_management .block01 {
        margin-top: 10.26vw;
    }

    #service_management .block01 .title .en {
        font-size: 3.59vw;
    }

    #service_management .block01 .title .ja {
        font-size: 4.62vw;
        margin-top: 2.56vw;
    }

    #service_management .block01 .text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 5.13vw;
        text-align: left;
    }

    #service_management .block02 {
        flex-direction: column;
        gap: 5.13vw;
        padding: 7.69vw 5.13vw;
        margin-top: 14vw;
    }

    #service_management .block02 .title {
        font-size: 5.13vw;
        line-height: 1.33;
        text-align: center;
    }

    #service_management .block02 .texts {
        width: 100%;
    }

    #service_management .block02 .text {
        font-size: 3.4vw;
        line-height: 1.8;
        margin-top: 5.13vw;
    }

    #service_management .block02 .image {
        width: 100%;
        margin-top: 5.13vw;
    }

    #service_management .block03 {
        margin-top: 120px;
        margin-top: 20.51vw;
    }

    #service_management .block03 .title {
        font-size: 6.67vw;
    }

    #service_management .block03 .items {
        grid-template-columns: repeat(2, 1fr);
        gap: 5.13vw 2.56vw;
        margin-top: 10.26vw;
    }

    #service_management .block03 .item_number {
        font-size: 4.1vw;
        padding: 2.44vw 3.15vw;
    }

    #service_management .block03 .item_title {
        font-size: 4.1vw;
        line-height: 1.33;
        margin-top: 3vw;
    }

    #service_management .block03 .item_text {
        font-size: 3.08vw;
        margin-top: 2.56vw;
    }

    #service_management .block04 {
        margin-top: 10.26vw;
    }

    #service_management .block04 .title {
        font-size: 5.13vw;
    }

    #service_management .block04 .text {
        font-size: 3.4vw;
        line-height: 1.8;
        margin-top: 5.13vw;
        text-align: left;
    }

    #service_management .block05 {
        margin-top: 20.51vw;
    }

    #service_management .block05 .title {
        font-size: 6.15vw;
        line-height: 1.33;
        text-align: center;
    }

    #service_management .block05 .text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 5.13vw;
    }

    #service_management .block05 .text--mt {
        margin-top: 0;
    }

    #service_management .block05 .group {
        margin-top: 10.26vw;
    }

    #service_management .block05 .group_title {
        font-size: 4.62vw;
        padding-bottom: 2.56vw;
    }

    #service_management .block05 .group_box {
        max-width: 100%;
        margin-top: 7.69vw;
    }

    #service_management .block05 .group_catch {
        font-size: 4.62vw;
        padding-left: 0;
    }

    #service_management .block05 .group_image {
        margin-top: 5.13vw;
    }

    #service_management .block05 .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5.13vw;
        padding-right: 0;
    }

    #service_management .block05 .contents {
        width: 100%;
    }

    #service_management .block05 .check_lists {
        padding-left: 5.13vw;
        margin-top: 2.56vw;
    }

    #service_management .block05 .check_list {
        font-size: 4.1vw;
    }

    #service_management .block05 .check_list:not(:first-of-type) {
        margin-top: 2.56vw;
    }

    #service_management .block05 .check_list::after {
        width: 3.2vw;
        height: 2vw;
        top: calc(50% - 0.26vw);
        left: -5.13vw;
        border-left: 0.77vw solid #801A1F;
        border-bottom: 0.77vw solid #801A1F;
    }

    #service_management .block05 .mark {
        width: 100%;
        max-width: 35%;
    }

    #management_pm {
        padding: 20.51vw 0 0;
    }

    #management_pm .wrap {
        width: 89.7%;
    }

    #management_pm .lead {
        margin-top: 5.13vw;
    }

    #management_pm .units {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.28vw;
        margin-top: 7.69vw;
    }

    #management_pm .unit {
        gap: 1.28vw;
        padding: 6.94vw 2.56vw 2.56vw;
    }

    #management_pm .unit:nth-of-type(2) .unit_image {
        margin-right: -0.51vw;
    }

    #management_pm .unit:nth-of-type(4) .unit_image {
        position: relative;
        top: -0.6vw;
        margin-right: -1.03vw;
    }

    #management_pm .unit:nth-of-type(6) .unit_image {
        position: relative;
        top: -0.6vw;
    }

    #management_pm .unit:nth-of-type(7) .unit_image {
        position: relative;
        top: -0.5vw;
    }

    #management_pm .unit_image img {
        width: 8.66vw;
        height: 8.66vw;
    }

    #management_pm .unit_title {
        font-size: 3.0vw;
        margin-top: 2vw;
    }

    #management_pm .unit:nth-of-type(7) .unit_title {
        position: relative;
        top: -1.6vw;
    }

    #management_pm .block {
        margin-top: 20.51vw;
    }

    #management_pm .title {
        font-size: 6.15vw;
        line-height: 1.3;
        text-align: center;
    }

    #management_pm .items {
        grid-template-columns: 1fr;
        gap: 10.26vw;
        margin-top: 5.13vw;
    }

    #management_pm .item_title span {
        font-size: 4.1vw;
        padding: 1.28vw 2.56vw 1.79vw;
    }

    #management_pm .item_image {
        margin-top: 2.56vw;
    }

    #management_pm .item_text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 2.56vw;
    }

    #management_works {
        padding: 20.51vw 0 0;
        overflow: hidden;
    }

    #management_works .wrap {
        width: 89.7%;
    }

    #management_works .slide_item {
        padding: 3.85vw;
    }

    /* SP固定ページ 法人社宅事業（サービス） */
    #corporate_contents {
        padding: 0 0 15vw;
    }

    #corporate_contents .wrap {
        width: 89.7%;
    }

    #corporate_service {
        padding: 15.38vw 0;
    }

    #corporate_service .wrap {
        width: 89.7%;
    }

    #corporate_service .items {
        grid-template-columns: 1fr;
        gap: 5.13vw;
        margin-top: 8.21vw;
    }

    #corporate_service .item {
        padding: 7.69vw 5.13vw;
    }

    #corporate_service .title {
        font-size: 6.15vw;
    }

    #corporate_service .lists {
        margin-top: 6.15vw;
    }

    #corporate_service .list {
        font-size: 3.59vw;
        gap: 2.56vw;
        line-height: 1.8;
    }

    #corporate_service .list:not(:first-of-type) {
        margin-top: 2.56vw;
    }

    #corporate_service .list_number {
        top: 0;
    }

    #corporate_service .box {
        flex-direction: column;
        gap: 6.15vw;
        padding: 7.69vw 5.13vw;
        margin-top: 8.21vw;
    }

    #corporate_service .box_image {
        width: 100%;
        height: inherit;
    }

    #corporate_service .box_contents {
        width: 100%;
        margin-top: 0;
    }

    #corporate_service .box_head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 3.85vw;
    }

    #corporate_service .box_title {
        font-size: 6.15vw;
    }

    #corporate_service .box_sub_title {
        font-size: 3.33vw;
        padding: 0.77vw 2.56vw;
    }

    #corporate_service .box_lists {
        margin-top: 6.15vw;
    }

    #corporate_service .box_list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 2.56vw;
    }

    #corporate_service .box_list:not(:first-of-type) {
        margin-top: 20px;
    }

    #corporate_service .box_number {
        top: 1.03vw;
        font-size: 3.08vw;
        width: 5.13vw;
        height: 5.13vw;
        padding: 0.77vw 0 0.51vw;
    }

    #corporate_service .box_text {
        font-size: 3.59vw;
    }

    #corporate_online {
        padding: 20.51vw 0;
    }

    #corporate_online .wrap {
        width: 89.7%;
    }

    #corporate_online .body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 10.26vw;
    }

    #corporate_online .contents {
        width: 100%;
    }

    #corporate_online .lists {
        gap: 2.56vw;
        margin-top: 8.21vw;
    }

    #corporate_online .list span {
        font-size: 3.08vw;
    }

    #corporate_online .list span::before {
        width: 115%;
        height: 115%;
    }

    #corporate_online .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8.21vw;
        margin-top: 5.13vw;
    }

    #corporate_online .units {
        width: 100%;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 2.56vw;
    }

    #corporate_online .unit_title {
        font-size: 3.08vw;
        margin-top: 2.56vw;
    }

    #corporate_online .unit_image {
        width: 20.51vw;
        height: 20.51vw;
    }

    #corporate_online .row_contents {
        width: 100%;
    }

    #corporate_online .row_contents_title span {
        font-size: 4.62vw;
        padding: 1.28vw;
    }

    #corporate_online .row_contents_title span:not(:first-of-type) {
        margin-top: 0.77vw;
    }

    #corporate_online .row_contents_text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 2.56vw;
    }

    #corporate_online .image {
        width: 100%;
    }

    #corporate_flow .wrap {
        width: 89.7%;
    }

    #corporate_flow .items {
        grid-template-columns: 1fr;
        gap: 11.54vw;
        margin-top: 8.21vw;
    }

    #corporate_flow .item {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        gap: 4.1vw;
        padding: 5.13vw;
    }

    #corporate_flow .item::before {
        position: absolute;
        width: 5.13vw;
        height: 5.13vw;
        top: auto;
        bottom: -6.41vw;
        right: 50%;
        right: calc(50% - 5.13vw);
        -webkit-transform: translateX(-50%) rotate(45deg);
        transform: translateX(-50%) rotate(45deg);
    }

    #corporate_flow .item:nth-of-type(4n)::before {
        display: block;
    }

    #corporate_flow .item:last-of-type::before {
        display: none;
    }

    #corporate_flow .icon {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    #corporate_flow .icon img {
        width: 12.82vw;
        height: 12.82vw;
    }

    #corporate_flow .row {
        gap: 2.56vw;
    }

    #corporate_flow .title {
        font-size: 4.62vw;
    }

    #corporate_flow .number {
        top: 0.51vw;
        font-size: 4.62vw;
    }

    #corporate_flow .text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 4.1vw;
    }

    #corporate_flow .note {
        font-size: 3.08vw;
        line-height: 1.6;
        margin-top: 5.13vw;
    }

    #corporate_about {
        padding: 20.51vw 0 0;
    }

    #corporate_about .wrap {
        width: 89.7%;
    }

    #corporate_about .images {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.56vw;
        margin-top: 5.13vw;
    }

    #corporate_about .media {
        margin-top: 20vw;
    }

    #corporate_about .media_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8vw;
        margin-block: 8vw;
    }


    #corporate_about .media_row .media_image:first-child,
    #corporate_about .media_row .media_image:last-child {
        width: 100%;
    }

    #corporate_about .media_title {
        font-size: 5.13vw;
        text-align: center;
    }

    #corporate_about .media_text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 6.15vw;
    }

    #corporate_about .items {
        grid-template-columns: 1fr;
        gap: 5.13vw;
        margin-top: 10.26vw;
    }

    #corporate_about .item_row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 2.56vw;
        padding: 2.05vw 4.1vw 3.08vw;
    }

    #corporate_about .item_title {
        font-size: 4.1vw;
    }

    #corporate_about .number {
        top: 0.51vw;
        font-size: 4.1vw;
    }

    #corporate_about .item_text {
        font-size: 3.59vw;
        line-height: 1.8;
        padding: 4.1vw;
    }

    #corporate_about .sub_image .box {
        width: 165vw;
    }

    #corporate_about .sub_image {
        margin-top: 10.26vw;
        overflow-y: scroll;
    }

    #corporate_about .sub_image img {
        width: 100%;
    }

    /* SP固定ページ 不動産開発事業（サービス） */
    #development_apartment .wrap {
        width: 89.7%;
    }

    #development_house {
        padding: 20.51vw 0 0;
    }

    #development_house .wrap {
        width: 89.7%;
    }

    /* SP固定ページ 民泊事業（サービス） */
    #inbound_contents .wrap {
        width: 89.7%;
    }

    #inbound_contents .c_title_block02 {
        text-align: center;
    }

    #inbound_contents .media {
        margin-top: 10.26vw;
    }

    #inbound_contents .media_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5.13vw;
    }

    #inbound_contents .media_contents {
        width: 100%;
    }

    #inbound_contents .media_image {
        width: 100%;
    }

    #inbound_contents .c_title_block02 .lead {
        font-size: 3.59vw;
        line-height: 1.8;
    }

    #inbound_contents .block {
        margin-top: 15.38vw;
    }

    #inbound_contents .block_title {
        font-size: 5.13vw;
    }

    #inbound_contents .block_text {
        font-size: 3.59vw;
        line-height: 1.8;
    }

    #inbound_contents .block_items {
        grid-template-columns: 1fr;
        gap: 10.26vw;
        margin-top: 7.69vw;
    }

    #inbound_contents .block_item_image img {
        aspect-ratio: 336/180;
        -o-object-fit: cover;
        object-fit: cover;
    }

    #inbound_contents .block_item_title {
        font-size: 4.1vw;
        margin-top: 5.13vw;
    }

    #inbound_contents .block_item_text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 3vw;
    }

    #inbound_contents .head {
        font-size: 5.64vw;
    }

    #inbound_contents .sub_title span {
        font-size: 4.1vw;
        padding: 1.54vw 2.56vw 2.05vw;
    }

    #inbound_contents .items {
        margin-top: 7.69vw;
    }

    #inbound_contents .item {
        padding: 6.15vw 5.13vw;
    }

    #inbound_contents .item:not(:first-of-type) {
        margin-top: 5.13vw;
    }

    #inbound_contents .item::before {
        width: 15.38vw;
        height: 15.38vw;
    }

    #inbound_contents .item_number {
        top: 1.79vw;
        left: 1.79vw;
        font-size: 4.1vw;
    }

    #inbound_contents .item_title {
        font-size: 4.62vw;
        padding-left: 5.13vw;
    }

    #inbound_contents .item_text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 2.56vw;
    }

    #inbound_contents .text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 4.1vw;
    }

    #inbound_contents .units {
        grid-template-columns: 1fr;
        gap: 10.26vw;
    }

    #inbound_contents .unit_title span {
        font-size: 4.1vw;
        padding: 1.54vw 2.56vw 2.05vw;
    }

    #inbound_contents .unit_body {
        margin-top: 4.1vw;
    }

    #inbound_contents .unit_contents {
        margin-top: 5.13vw;
    }

    #inbound_contents .unit_sub_title {
        font-size: 4.62vw;
        padding-bottom: 2.56vw;
    }

    #inbound_contents .unit_lists {
        margin-top: 2.56vw;
    }

    #inbound_contents .unit_list {
        font-size: 3.59vw;
    }

    #inbound_contents .price {
        margin-top: 15.38vw;
    }

    #inbound_contents .price_text,
    #inbound_contents .price_note {
        font-size: 3.59vw;
        line-height: 1.6;
    }

    #inbound_contents .price_note {
        margin-top: 4.1vw;
    }

    #inbound_contents .table_wrap {
        margin-top: 4.1vw;
        overflow-x: scroll;
    }

    #inbound_contents .c_table {
        white-space: nowrap;
        width: 100%;
    }

    #inbound_voice {
        padding: 20.51vw 0 0;
    }

    #inbound_voice .wrap {
        width: 89.7%;
    }

    #inbound_voice .body {
        padding: 15.38vw 0;
    }

    #inbound_voice .items {
        grid-template-columns: 1fr;
        gap: 3.85vw;
        margin-top: 8.21vw;
    }

    #inbound_voice .item {
        padding: 7.69vw;
    }

    #inbound_voice .row {
        gap: 7.69vw;
    }

    #inbound_voice .icon img {
        width: 15.38vw;
        height: 15.38vw;
    }

    #inbound_voice .title {
        font-size: 4.62vw;
    }

    #inbound_voice .name {
        font-size: 3.85vw;
        margin-top: 2.56vw;
    }

    #inbound_voice .text {
        font-size: 3.59vw;
        line-height: 1.8;
        margin-top: 2.56vw;
    }

    #inbound_voice .btn {
        max-width: 76.92vw;
        margin-inline: auto;
        margin-top: 10.26vw;
    }

    #inbound_voice .btn .link_text {
        font-size: 3.85vw;
    }

    #inbound_works {
        padding: 15.38vw 0 0;
    }

    /* SP固定ページ 企業情報 */
    #company_cushion .wrap {
        width: 89.7%;
    }

    #company_cushion .c_cushion {
        grid-template-columns: 1fr;
    }

    /* SP固定ページ 会社沿革 */
    #history_contents .wrap {
        width: 89.7%;
    }

    #history_contents .chronology {
        padding: 0;
        margin-top: 10.26vw;
    }

    #history_contents .items {
        padding-top: 5.13vw;
    }

    #history_contents .items::before {
        width: 2px;
    }

    #history_contents .item {
        padding-left: 5.13vw;
        padding-bottom: 10.26vw;
    }

    #history_contents .item:not(:first-of-type) {
        margin-top: 10.26vw;
    }

    #history_contents .item::before {
        width: 2.05vw;
        height: 2.05vw;
        top: 3.33vw;
        left: -0.9vw;
    }

    #history_contents .item::after {
        width: 100%;
        width: calc(100% + 7.69vw);
        left: 0;
        left: -5.13vw;
    }

    #history_contents .dl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2.56vw;
    }

    #history_contents .dt {
        width: 100%;
    }

    #history_contents .dd {
        gap: 5.13vw;
    }

    #history_contents .image {
        width: 100%;
        max-width: 100%;
    }

    #history_contents .image img {
        aspect-ratio: 420 / 200;
    }

    /* SP固定ページ 採用情報（リクルート） */
    #recruit_cushion .wrap {
        width: 89.7%;
    }

    /* SP固定ページ 事業紹介（リクルート） */
    #recruit_message .wrap {
        width: 89.7%;
    }

    #recruit_message .c_message_text {
        margin-top: 7vw;
    }

    #recruit_info {
        padding: 25.64vw 0 0vw;
    }

    #recruit_info .wrap {
        width: 89.7%;
    }

    #recruit_info .body {
        margin-top: 8.21vw;
    }

    #recruit_info .item:not(:first-of-type) {
        margin-top: 5.13vw;
    }

    #recruit_info .image {
        position: relative;
        width: 100%;
        height: 100%;
        top: auto;
        left: auto;
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }

    #recruit_info .item:nth-child(even) .image {
        top: auto;
        left: auto;
    }

    #recruit_info .image img {
        height: auto;
        aspect-ratio: 350/210;
    }

    #recruit_info .contents {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        padding: 10.26vw 6.41vw;
    }

    #recruit_info .item:nth-child(even) .contents {
        margin-inline: auto;
    }

    #recruit_info .title .en {
        font-size: 3.59vw;
    }

    #recruit_info .title .ja {
        font-size: 6.15vw;
        line-height: 1.4;
        margin-top: 2.56vw;
    }

    #recruit_info .text {
        font-size: 4.1vw;
        line-height: 1.6;
        margin-top: 5.13vw;
    }

    #recruit_info .btn {
        max-width: 71.79vw;
        margin-top: 6.41vw;
    }

    #recruit_info .btn a {
        padding: 4.49vw 7.69vw;
    }

    #recruit_contents {
        padding: 20.51vw 0 0;
    }

    #recruit_contents .wrap {
        width: 89.7%;
    }

    #recruit_contents .items {
        grid-template-columns: 1fr;
        margin-top: 8.21vw;
    }

    #recruit_contents .item a {
        padding: 15.38vw 6.41vw;
    }

    #recruit_contents .item a::before {
        background: rgba(0, 0, 0, 0.1);
    }

    #recruit_contents .item a:hover::before {
        opacity: 1;
    }

    #recruit_contents .item a:hover .item_image img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    #recruit_contents .item_en {
        font-family: "Avenir Next", serif;
        font-size: 4.1vw;
    }

    #recruit_contents .item_ja {
        font-size: 6.15vw;
        margin-top: 3.08vw;
    }

    /* SP固定ページ 賃貸仲介事業（リクルート） */
    #recruit_brokerage_message .wrap {
        width: 89.7%;
    }

    #recruit_brokerage_message .c_message {
        margin-top: 10.26vw;
    }

    #recruit_brokerage_message .c_message_text {
        font-size: 3.59vw;
    }

    #recruit_brokerage_message .c_message_image {
        width: 100%;
        padding-left: 0;
        margin: 0;
    }

    #recruit_brokerage_message .c_message_image img {
        aspect-ratio: 390 / 240;
    }

    #recruit_brokerage_job {
        padding: 20.51vw 0 0;
    }

    #recruit_brokerage_job .wrap {
        width: 89.7%;
    }

    #recruit_brokerage_job .c_lists {
        margin-top: 10.26vw;
    }

    #recruit_brokerage_interview {
        padding: 20.51vw 0 0;
    }

    #recruit_brokerage_interview .wrap {
        width: 89.7%;
    }

    #recruit_brokerage_contents {
        padding: 20.51vw 0 0;
    }

    #recruit_brokerage_contents .wrap {
        width: 89.7%;
    }

    #recruit_brokerage_contents .table_wrap {
        max-width: 100%;
        margin-top: 8.21vw;
    }

    #recruit_brokerage_contents .c_table th,
    #recruit_brokerage_contents .c_table td {
        width: 100%;
        display: block;
        font-size: 3.59vw;
        line-height: 1.8;
        padding: 3.08vw 5.13vw;
    }

    #recruit_brokerage_contents .c_table th {
        font-size: 4.1vw;
    }

    #recruit_brokerage_contents .c_table td {
        padding: 6.15vw 5.13vw;
    }

    #recruit_brokerage_contents .btn {
        margin-top: 10.26vw;
    }

    /* SP固定ページ 管理事業（リクルート） */
    #recruit_management_message .wrap {
        width: 89.7%;
    }

    #recruit_management_message .c_message {
        margin-top: 10.26vw;
    }

    #recruit_management_message .c_message_text {
        font-size: 3.59vw;
    }

    #recruit_management_message .c_message_image {
        width: 100%;
        padding-left: 0;
        margin: 0;
    }

    #recruit_management_message .c_message_image img {
        aspect-ratio: 390 / 240;
    }

    #recruit_management_message .c_message_image {
        margin-top: 0;
    }

    #recruit_management_job {
        padding: 20.51vw 0 0;
    }

    #recruit_management_job .wrap {
        width: 90vw;
    }

    #recruit_management_job .c_lists {
        margin-top: 10.26vw;
        margin-bottom: 10vw;
    }

    #recruit_management_interview {
        padding: 10.51vw 0 0;
    }

    #recruit_management_interview .wrap {
        width: 89.7%;
    }

    #recruit_management_contents {
        padding: 20.51vw 0 0;
    }

    #recruit_management_contents .wrap {
        width: 89.7%;
    }

    #recruit_management_contents .table_wrap {
        max-width: 100%;
        margin-top: 8.21vw;
    }

    #recruit_management_contents .c_table th,
    #recruit_management_contents .c_table td {
        width: 100%;
        display: block;
        font-size: 3.59vw;
        line-height: 1.8;
        padding: 3.08vw 5.13vw;
    }

    #recruit_management_contents .c_table th {
        font-size: 4.1vw;
    }

    #recruit_management_contents .c_table td {
        padding: 6.15vw 5.13vw;
    }

    #recruit_management_contents .btn {
        margin-top: 10.26vw;
    }

    /* SP固定ページ 数字で見るHOUSUMO（リクルート） */
    #numbers_contents .wrap {
        width: 89.7%;
    }

    #numbers_contents .logo {
        max-width: 12.82vw;
    }

    #numbers_contents .c_title_block02 {
        margin-top: 4.1vw;
    }

    #numbers_contents .items {
        grid-template-columns: 1fr;
        gap: 4.1vw;
        margin-top: 10.26vw;
    }

    #numbers_contents .item {
        padding: 7.69vw 2.56vw;
    }

    #numbers_contents .item:last-of-type {
        padding: 7.69vw 2.56vw 12vw;
    }

    #numbers_contents .icon {
        margin-top: 7.69vw;
    }

    #numbers_contents .icon img {
        width: 25.64vw;
    }

    #numbers_contents .item:last-of-type .icon {
        top: -0.79px;
    }

    #numbers_contents .title {
        width: 76.92vw;
        max-width: 100%;
        font-size: 5.13vw;
        border-radius: 12.82vw;
        padding: 1.03vw 5.13vw 1.54vw;
    }

    #numbers_contents .box {
        gap: 1.28vw;
    }

    #numbers_contents .sub_title {
        gap: 5px;
    }

    #numbers_contents .sub_title span {
        font-size: 7.69vw;
    }

    #numbers_contents .sub_title .number {
        top: 4.36vw;
        font-size: 19.23vw;
    }

    #numbers_contents .sub_title .small {
        font-size: 4.62vw;
        margin-top: 3vw;
    }

    /* SP固定ページ お問い合わせ */
    .page_contact .wrap {
        width: 89.7%;
    }

    .contact_form_disc {
        margin-block: 0 2em;
    }

    .contact_form_disc .text {
        font-size: 3.6vw;
        margin-block: 0 0.8em;
    }

    .contact_form_disc .caution {
        font-size: 3.1vw;
        letter-spacing: .06em;
    }

    .common_contact_form .form_box {
        margin-block: 0 10vw;
    }

    .common_contact_form .form_box dl {
        grid-template-columns: 1fr;
        gap: 0.6em;
    }

    .common_contact_form .form_box dl+dl {
        margin-block: 1.3em 0;
        padding-top: 0;
        border-top: none;
    }

    .common_contact_form .form_box dl dt {
        flex-direction: row-reverse;
        justify-content: space-between;
        font-size: 4.1vw;
        padding-inline: 0;
    }

    .common_contact_form .form_box dl dt .label {
        font-size: 3.1vw;
    }

    .common_contact_form .form_box dl dt::after {
        content: none;
    }

    .common_contact_form input[type="text"],
    .common_contact_form input[type="email"],
    .common_contact_form #zip {
        font-size: 3.6vw;
    }

    .common_contact_form select {
        width: 100%;
        font-size: 3.6vw;
    }

    .common_contact_form textarea {
        height: 33vw;
        font-size: 3.6vw;
    }

    .radio_btns,
    .checkboxes {
        gap: 0.5em 2.5em;
    }

    .radio_btns .radio_btns__item+span {
        font-size: 4.1vw;
    }

    .mwform-checkbox-field-text {
        font-size: 4.1vw;
    }

    .page_contact #btn_wrap button {
        width: 83%;
        line-height: 15.5vw;
        font-size: 4.6vw;
    }

    .page_contact #btn_wrap button[name="submitBack"] {
        margin-top: 4vw;
    }

    .mwform-checkbox-field.horizontal-item {
        display: block;
    }

    .page_contact #btn_wrap {
        width: 100%;
        text-align: center;
    }

    .privacy_check_list .mwform-checkbox-field-text {
        font-size: 3.8vw;
        padding-left: 11vw;
    }

    .mw_wp_form .privacy_check_list .horizontal-item {
        margin-right: 4vw;
    }

    .privacy_check_list .hissu {
        padding: 0.3vw 4vw;
    }

    .privacy_check_list {
        margin-bottom: 6vw;
    }

    .privacy_check_list .check_note_text {
        font-size: 3.2vw;
    }

    .privacy_term_detail {
        font-size: 3.4vw;
        margin: 5vw 0;
    }

    .privacy_term_outer {
        width: 96%;
        padding: 5vw 0;
    }

    .privacy_term_outer .privacy_term_inner .main_text {
        font-size: 3.4vw;
        line-height: 1.6;
        margin-bottom: 5vw;
    }

    .privacy_term_outer .privacy_term_inner dl dt {
        font-size: 3.5vw;
        margin-bottom: 1.5vw;
    }

    .privacy_term_outer .privacy_term_inner dl dd {
        font-size: 3.5vw;
        line-height: 1.6;
    }

    .privacy_term_outer .privacy_term_inner dl+dl {
        margin-top: 7vw;
    }

    .privacy_term_detail::after {
        width: 2.5vw;
        margin: 1.5vw auto 0;
    }

    /* サンクスページ */
    .page_contact .thanks_textArea .name {
        font-size: 4vw;
        margin-bottom: 3vw;
    }

    .page_contact .thanks_textArea .contact_text {
        font-size: 3.5vw;
        margin-bottom: 2em;
        width: 100%;
    }

    .page_contact .thanks_textArea .ichiran_link {
        width: 80%;
        line-height: 12vw;
        font-size: 4vw;
    }

    /* ステップバー デザイン */
    .page_contact .progressbar {
        gap: 4.5em;
        margin-block: 0 2.5em;
    }

    .page_contact .progressbar .item {
        font-size: 3.1vw;
    }

    .page_contact .progressbar .item+.item::before {
        width: 5.7vw;
        top: 63%;
        left: -3.3em;
    }

    .page_contact .progressbar .item .mark {
        width: 7.7vw;
        margin: 0 auto 0.4em;
    }

    /* SP固定ページ 404ページ */
    #page_404 .num {
        font-size: 20vw;
        line-height: 1.5;
    }

    #page_404 .text {
        font-size: 3.5vw;
    }

    /* SP固定ページ サイトマップ */
    ul#sitemap_list li {
        margin: 0;
    }

    body #sitemap_list li a {
        font-size: 4vw;
        padding: 1vw 2vw;
        line-height: 9vw;
        margin-bottom: 1vw;
    }

    body #sitemap_list li.home-item {
        margin-bottom: 4vw;
    }

    body #sitemap_list {
        padding: 0;
    }

    /* ----------------------- フッター ------------------------- */
    .site_footer {
        padding: 15.38vw 0;
    }

    .site_footer .body {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 0;
    }

    .site_footer .group {
        width: 100%;
    }

    .site_footer .logo {
        max-width: 46.15vw;
        margin-inline: auto;
    }

    .site_footer .btn {
        width: 100%;
        max-width: 71.79vw;
        margin-inline: auto;
        margin-top: 9.23vw;
    }

    .site_footer .btn a {
        border-radius: 10.26vw;
        padding: 4.44vw 6.41vw;
    }

    .site_footer .image {
        width: 71.79vw;
        margin-inline: auto;
        border-radius: 0;
        padding: 7.69vw 10.26vw;
        margin-top: 3.85vw;
    }

    .site_footer .image img {
        width: 100%;
    }

    .site_footer .footer_bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-top: 7.69vw;
    }

    .site_footer .sub_menus {
        max-width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 7.69vw;
        margin-top: 0;
    }

    .site_footer .sub_menu a {
        font-size: 3.08vw;
    }

    .site_footer .sub_menu a:hover {
        opacity: 1;
    }

    .site_footer .copyright {
        font-size: 3.59vw;
        margin-top: 5.13vw;
    }

    #inbound_contents .text_box .catch_body .catch_sub {
        font-size: 6.1vw;
    }

    .message_cont_sec .top_box .title::before {
        width: 18vw;
        height: 17vw;
        left: 2vw;
        top: -5vw;
    }

    .message_cont_sec .top_box .title::after {
        width: 14vw;
        height: 13vw;
        right: 3vw;
        bottom: -3vw;
    }

    .page_recruit #top_recruit .image {
        width: 100%;
        height: auto;
        bottom: auto;
    }

    .page_recruit #top_recruit {
        padding: unset;
    }

    .page_recruit #recruit_contents .item+.item {
        margin-top: 5vw;
    }

    .page_recruit #recruit_contents .c_title_block02 {
        margin-bottom: 5vw;
    }

    .common_interview_list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 5vw 2.5vw;
    }

    .common_interview_list ul li .text_box {
        padding: 5vw;
    }

    .common_interview_list ul li .text_box .theme {
        font-size: 4.4vw;
    }

    .common_interview_list ul li .text_box .text {
        font-size: 3.5vw;
    }

    .common_interview_list {
        margin-top: 5vw;
    }

    .common_interview_list ul {
        grid-template-columns: 1fr;
        gap: 8vw;
    }

    .common_interview_list ul .img {
        height: 35vw;
    }

    .common_interview_list .btn.c_btn.c_btn--red_reverse a {
        padding: 4vw 6.41vw;
        width: 60vw;
    }

    .common_interview_list.c_lists ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .common_interview_list.c_lists ul li {
        padding: 4vw 0;
    }

    .common_interview_list.c_lists ul li .theme {
        font-size: 3.4vw;
        letter-spacing: 0;
    }

    .common_interview_list.c_lists ul li .text_jp {
        font-size: 3.2vw;
        text-align: left;
        padding: 0 3vw;
    }

    .management_box .common_list_box {
        padding: 7vw 5vw;
    }

    .management_box .common_list_box .catch {
        font-size: 4.6vw;
    }

    .management_box .common_list_box .text_box {
        gap: 2vw;
        justify-content: left;
    }

    .management_box .common_list_box .text_box .text {
        font-size: 3.6vw;
        gap: 1.5vw;
        align-items: baseline;
    }

    .management_box .common_list_box .text_box .text::before {
        width: 2vw;
        height: 2vw;
        transform: translateY(0);
    }

    .management_box .common_list_box+.common_list_box {}

    .career_box .career_list {
        overflow: scroll;
    }

    .career_box .career_list ul {
        gap: 8vw;
        margin-top: 8vw;
        width: 188vw;
    }

    .career_box .career_list ul .item {
        padding: unset;
    }

    .career_box .career_list ul .item .img {
        width: 23vw;
        min-block-size: 20vw;
        padding: 6.5vw;
    }

    .career_box .career_list ul .item .img img {
        width: 100%;
    }

    #recruit_brokerage_job .c_lists .item .name {
        font-size: 3.8vw;
    }

    .career_box .career_list ul li+li::before {
        width: 3vw;
        height: 9vw;
        top: 6.5vw;
        left: -5.8vw;
    }

    #recruit_management_job .management_box {
        grid-template-columns: 1fr;
        gap: 6vw;
    }

    #recruit_management_job .management_box .common_list_box {
        padding: 5vw;
    }

}