@charset “utf-8”;

/* 全体のリセット
****************************************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #555;
}

html {
    scroll-behavior: smooth;
}

/* コンテンツ部分
****************************************************************************/
body {
    font-family: 'Noto Serif JP', serif;
    color: #000b1c;
}

main {
    text-align: center;
    min-height: 80vh;
}

section {
    padding: 80px 20px;
    border-bottom: 1px solid #ddd;
}

h1 {
    font-size: 2rem;
    font-weight: normal;
    border-bottom: 1px solid #d3af37;
    margin: auto;
    width: 55%;
}

.wrapper {
    max-width: 1000px;
    text-align: center;
    margin: auto;
}

/* ヘッダー
****************************************************************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000b1c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 50px;
    z-index: 1000;
}

header .logo {
    width: 300px;
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

header .logo img {
    width: 80%;
}

.menu-nav {
    display: flex;
}

.recruit_reserve {
    background-color: #701b57;
    padding: 19px;
}

.recruit_reserve a {
    color: #FFF;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
}

nav ul li {
    /* margin: 0 15px;
    padding: 0 15px; */
    position: relative;
}

nav ul li a {
    display: block;
    color: #000b1c;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    padding: 10px 35px;

}

nav ul li a:hover {
    color: #ffcc00;
}

nav ul li:not(:first-child) {
    border-left: 1px solid #ccc;
}

.menu {
    display: flex;
}

.recruit-header {
    align-items: center;
    background-color: #701b57;
    color: #fff;
    transition: background-color 0.7s ease;
}

.recruit-header:hover {
    background-color: #943176;
}

.recruit-header a {
    line-height: 70px;
    padding: 20px;
    color: #fff;
    transition: color 0.7s ease;
}

.recruit-header:hover a {
    color: #ffcc00;
}


.mv-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.main_visual_img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

nav ul li a::after {
    position: absolute;
    content: '';
    left: 0%;
    width: 0%;
    height: 1px;
    bottom: 0;
    background: linear-gradient(to left, #fff 0%, #fff 20%, #ffcc00 30%, #ffcc00 70%, #fff 80%, #fff 100%);
    transition: 0.6s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mv-text {
    font-size: 3rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* フッター
****************************************************************************/
footer {

    color: #000b1c;
    text-align: center;
}

/* .pageTop-text {
    display: block;
    margin: 5% 0;
} */

.scroll_up {
    position: relative;
    margin: 0 auto;
    padding-top: 140px;
    width: 200px;
    height: 200px;

}

.scroll_up:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg, rgba(#000b1c, 0) 0, rgba(#000b1c, .8) 80%, rgba(#000b1c, .8) 100%);
}

.scroll_up a {
    display: block;
    position: absolute;
    color: #000b1c;
    letter-spacing: .2em;
    text-decoration: none;
    transition: .2s;
    z-index: 1;
    width: 100%;
}

.scroll_up a:before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 1px;
    height: 70px;
    background: #ddd;
}

.scroll_up a:after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 1px;
    height: 70px;
    background: #000b1c;
}

.scroll_down a:hover {
    opacity: .5;
}



#type01 a:after {
    animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

/*JS
****************************************************************************/
.fadeUp_js_point01,
.fadeUp_js_point02,
.fadeUp_js_point03,
.fadeUp_js_point04,
.fadeIn_right_js_point01,
.fadeIn_right_js_point02,
.fadeIn_right_js_point03,
.fadeIn_right_js_point04,
.fadeIn_left_js_point01,
.fadeIn_left_js_point02,
.fadeIn_left_js_point03,
.fadeIn_left_js_point04,
.delay00,
.delay01,
.delay02,
.delay03,
.delay04,
.delay05,
.delay06 {
    opacity: 0;
}

.fadeUp_js {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn_right_js {
    animation-name: fadeInRightAnime;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInRightAnime {
    from {
        opacity: 0;
        transform: translateX(200px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeIn_left_js {
    animation-name: fadeInLeftAnime;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-200px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeIn_js {
    animation-name: fadeInAnime;
    animation-duration: 0.7s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.delay01 {
    animation-delay: 1s;
}

.delay02 {
    animation-delay: 1.5s;
}

.delay03 {
    animation-delay: 2s;
}

.delay04 {
    animation-delay: 2.5s;
}

.delay05 {
    animation-delay: 3s;
}

.delay06 {
    animation-delay: 4s;
}



/*タイトルテキスト
****************************************************************************/

/* .sub_title_img {
    width: 10%;
} */
.title {
    margin: 5% 0;
}

.sub-title {
    padding: 2% 0 1% 0;
}

.main-text p {
    line-height: 2rem;
}

.maint-text-strong {
    padding-top: 30px;
    font-size: 1.2rem;
    letter-spacing: -1px;
    /* color: #701b57; */
}

/*サービス
****************************************************************************/
.service {
    margin-top: 4%;
}

.back-color {
    text-align: center;
    background-color: #f8f5e4;
    height: 180px;
    width: 100%;
    margin: auto;
}

.back-color2 {
    background-color: #f8f5e4;

}

.service_img-container {
    padding-top: 100px;
    position: relative;
}

.service_img {
    display: flex;
    width: 90%;
    justify-content: center;
    position: absolute;
    top: 150px;
    left: 50%;
    margin-top: -13%;
    transform: translateX(-50%);
    z-index: 100;
}

.service_img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.service_img a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.service_img a:hover img {
    transform: scale(1.2);
    /* 拡大 */
    filter: brightness(1.3);
    /* 白っぽく */
}




/*私たちの想い
****************************************************************************/

.flex-contents {
    display: flex;
}

.mind-title {
    font-size: 1.5rem;
    margin-bottom: 3%;
    padding: 1%;
}

.mind-text {
    text-align: left;
    line-height: 1.8;
}

.mind-text-contents {
    flex: 6;
    padding-bottom: 5%;
}

.mind_img {
    flex: 4;
    width: 80%;
    max-width: 400px;
}

/* スクロール用の余白 */
.spacer {
    height: 300px;
}

a.view-more-btn {
    margin: 5% 0 2%;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 1.1rem 6rem;
    color: #fff;
    background: #701b57;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}

a.view-more-btn:hover {
    color: #701b57;
}

a.view-more-btn span {
    position: relative;
}

a.view-more-btn::after {
    position: absolute;
    content: ">";
    font-size: 16px;
    color: #fff;
    margin-left: 60px;
    transition: all .5s ease-in-out;
}

a.view-more-btn:hover::after {
    color: #701b57;
    margin-left: 70px;
}

a.view-more-btn:before {
    box-sizing: inherit;
    position: absolute;
    top: 0;
    left: 40px;
    width: 130%;
    height: 500%;
    content: '';
    transition: all .5s ease-in-out;
    transform: translateX(-93%) translateY(-70%) rotate(135deg);
    background: linear-gradient(127deg, #90bd34, #aad15a);
}

a.view-more-btn:hover:before {
    transform: translateX(-4%) translateY(-38%) rotate(135deg);
}

/* TOPページコンタクト
****************************************************************************/
.top-contact {
    background-image: url(../images/pc/1_TOP/bg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    padding-top: 100px;
    align-items: center;
    justify-content: center;
    height: 50vh;
    color: #FFF;
}

.top-contact-contents {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.left-contact-content {
    width: 25%;
    padding-left: 4%;
}

.left-contact-content h1 {
    width: 100%;
}

.center-contact-content {
    width: 25%;
    min-width: 290px;
    font-size: 1.2rem;
    line-height: 3rem;
    border: 1px solid #FFF;
    padding: 2% 0;
    margin: 0 1%;
    letter-spacing: 0.1rem;
}

.right-contact-content {
    width: 25%;
    min-width: 290px;
    font-size: 1.2rem;
    line-height: 3rem;
    border: 1px solid #FFF;
    padding: 3% 0 1% 0;
    margin: 0 1%;
    letter-spacing: 0.1rem;
}

.height-adj {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tel-link,
.mail-link {
    color: #fff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: white !important;
    /* iOS対策 */
}

/* サービスページ ****************************************************************************/
.border-bottom-none {
    border-bottom: none;
}

#home-care,
#concierge,
#rental {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 0;
    position: relative;
    z-index: 1;
    flex-direction: row;
}

/* 偶数番目のアイテムのみテキスト＋画像のレイアウトに変更 */
/* .service-content li:nth-child(even) {
    flex-direction: row-reverse;
} */

.relative {
    position: relative;
}

.service-content-img1 {
    position: absolute;
    width: 40%;
    height: auto;
    margin: -100px 20px 0;
    left: -1%;
    top: 28%;
}

.service-content-img3 {
    position: absolute;
    width: 40%;
    height: auto;
    margin: -50px 20px 0;
    left: -1%;
    top: 23%;
}


.service-content-img4 {
    position: absolute;
    width: 40%;
    height: auto;
    margin: -100px 20px 0;
    left: 53%;
    top: 26%;
}

.service-content-img2 {
    position: absolute;
    width: 40%;
    height: auto;
    margin: -100px 20px 0;
    left: 56%;
    top: 26%;
    z-index: -1;
}

.service-content-subimg1,
.service-content-subimg3 {
    position: absolute;
    left: 3%;
    top: 26%;
    z-index: 2;
    width: 6%;
}

.service-content-subimg2,
.service-content-subimg4 {
    position: absolute;
    right: 6%;
    z-index: 2;
}

.service-content-subimg2 {
    top: 5%;
    width: 7%;
}

.service-content-subimg4 {
    top: 7%;
    width: 7%;
}

.service-content li .service-text {
    width: 100%;
}

.rental-text,
.lmd-text,
.concierge-text,
.home-care-text {
    text-align: left;
    line-height: 2.2rem;
}

.home-care-text,
.lmd-text {
    margin-top: 6%;
}

.service-link-contents {
    margin-top: 20px;
}

.service-link {
    display: flex;
    justify-content: center;

}

.service-link a li {
    list-style: none;
    padding: 20px 3%;
    margin: 1px;
    line-height: 1;
    font-size: 1.5rem;
    background-color: #bfae84;
    transition: background-color 1s ease;
}

.service-link a {
    width: 100%;
    height: 74px;
    color: #fff;
}

.service-link a:hover li {
    background-color: #d0c29d;
}

.service-link a li span {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    rotate: 315deg;
    position: relative;
    top: 5px;
    transition: top 0.2s ease;
}

.service-link a:hover li span {
    top: 8px;
}

.block-1,
.block-2,
.block-3,
.block-4 {
    width: 40%;
    background-color: #fff;
}

.service-text-contents1 {
    position: relative;
    background-color: #FFF;
    margin-top: 9%;
    position: relative;
    margin-left: 40%;
}

.service-text-contents3 {
    position: relative;
    background-color: #FFF;
    margin-top: 9%;
    position: relative;
    margin-left: 40%;
    border: 1px solid;
}

.service-text-contents4 {
    position: relative;
    background-color: #FFF;
    margin-top: 9%;
    position: relative;
    margin-left: -38%;
}

.service-text-contents2 {
    position: relative;
    background-color: #FFF;
    margin-top: 9%;
    position: relative;
    border: 1px solid;
    margin-left: -38%;
    width: 60%;
}

.service-title {
    background-color: #701b57;
    color: #fff;
    padding: 4%;
    position: absolute;
    width: 94%;
    right: 10%;
    top: -2%;
}

.service-item-title {
    font-size: 1.5rem;
    padding-left: 5%;
}

.service-text {
    padding: 22% 5% 8%;
    text-align: justify;
}


.service-content-subimg1 {
    bottom: 100px;
    left: -3%;
    margin-top: -9%;
}

.service-content-subimg3 {
    bottom: 100px;
    left: -3%;
    margin-top: -5%;
}

.service-content-subimg2 {
    top: auto;
    bottom: -42%;
    right: 0%;
    /* width: 12%; */
}

.service-content-subimg4 {
    top: auto;
    bottom: 57%;
    right: 0%;
    width: 7%;
}

/* .service-content-img {
        width: 100vw;
    } */



section.no-bottom-space {
    padding-bottom: 0px;
    border-bottom: none;
}

.item-lists,
.rental-lists {
    list-style: none;
}

.service-text-items {
    display: flex;
    justify-content: center;
    /* margin-left: 10%; */
}

.item-lists li {
    text-align: left;
    font-size: 0.9rem;
    text-indent: -1.1em;
    padding-left: 2%;
    line-height: 1.8;
}

.rental-lists li {
    text-align: left;
}

.service-about {
    display: inline-block;
    margin: 0 auto;
    padding: 3% 0 5%;
    line-height: 1.8rem;
}

.service-about p {
    text-align: left;
}

.text-item1 {
    margin-left: 5%;
    padding: 3%;
    width: 30%;
}

.back-color-white {
    background-color: #FFF;
}

.service-item-title {
    font-size: 1.3rem;
    color: #701b57;
}

.service-item-title1,
.service-item-title2,
.service-item-title3 {
    text-align: left;
    margin-bottom: 6%;
}

.service-text-contents1,
.service-text-contents2,
.service-text-contents3,
.service-text-contents4 {
    line-height: 1.8;
}


.service-other-text {
    width: 60%;
    margin: 4% auto 2%;
    font-size: 0.9rem;
    line-height: 1.6rem;
    text-align: left;
}

.service-sub-title {
    margin: 5% 0;
}

.service-sub-title h3 {
    padding-left: 10px;
    border-left: 10px solid #701b57;
    font-weight: normal;
    color: #701b57;
    font-size: 1.5em;
    display: inline;
    line-height: 1.2;
    margin: 5px 0;
    width: 100%;
    text-align: center;
    max-width: 1100px;
}

.service-item-title1 p::before {
    content: "1";
    display: inline-block;
    background-color: #701b57;
    color: white;
    width: 35px;
    height: 35px;
    text-align: center;
    margin-right: 8px;
    font-weight: bold;
}

.service-item-title2 p::before {
    content: "2";
    display: inline-block;
    background-color: #701b57;
    color: white;
    width: 35px;
    height: 35px;
    text-align: center;
    /* line-height: 24px; */
    /* border-radius: 2px; */
    margin-right: 8px;
    font-weight: bold;
}

.service-item-title3 p::before {
    content: "3";
    display: inline-block;
    background-color: #701b57;
    color: white;
    width: 35px;
    height: 35px;
    text-align: center;
    /* line-height: 24px; */
    /* border-radius: 2px; */
    margin-right: 8px;
    font-weight: bold;
}

#consultation {
    margin-bottom: 17%;
}


.footer-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 8%;
    justify-content: center;
}

.footer-images picture {
    max-width: 100%;
    flex: 1 1 150px;
}

.footer-images img {
    width: 100%;
    height: auto;
    display: block;
}

/* カンパニーぺージ
****************************************************************************/

.company-content-left {
    width: 150%;
}

.company-content-left img {
    width: 100%;
}

.company-message,
.massage-origin {
    padding: 0 100px;
}

.company-message {
    position: relative;
    text-align: left;
    line-height: 3rem;
    margin-bottom: 120px;
}

.massage-sig {
    position: absolute;
    right: 20px;
    bottom: -80px;
}

.massage-origin {
    text-align: left;
}

.three-job {
    margin-top: 5%;
}

.first-job,
.second-job,
.third-job {
    background-color: #f8f5e4;
    padding: 5% 0
}

.company-contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.life-design-text p {
    line-height: 2.2rem;
}

.lmd-contents {
    border: 1px solid #555;
    background-color: #FFF;
    padding-top: 50px;
}

.job-title-contents {
    position: relative;
    /* 位置の基準を作る */
    text-align: center;
    /* テキストを中央揃え */
}

.job-title-img {
    position: relative;
    /* width: 100%; */
    height: auto;
    z-index: 1;
    /* 画像を下に */
}

.job-title-text {
    position: absolute;
    top: 50%;
    /* 画像の中央に配置 */
    left: 50%;
    transform: translate(-50%, -50%);
    /* 完全に中央にする */
    color: #fff;
    font-size: 1.5rem;
    font-weight: normal;
    z-index: 2;
    /* テキストを上に */
    padding: 10px 20px 10px 10%;
    border-radius: 5px;
    width: 100%;
    letter-spacing: 0.1rem;
}

/* .job-title h2 {
    color: #fff;
    width: 63%;
    margin: auto;
    padding: 2%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
} */
/* 
.first-job:nth-of-type(1) .job-title h2{
    background-image: url(../images/pc/3_COMPANY/company\ business-1.png);
}

.second-job:nth-of-type(2) .job-title {
    background-image: url(../images/pc/3_COMPANY/company\ business-2.png);
}

.third-job:nth-of-type(3) .job-title {
    background-image: url(../images/pc/3_COMPANY/company\ business-3.png);
} */

.job-subtitle {
    padding: 3% 2%;
    font-size: 1.3rem;
}

.job-subtitle::before {
    content: "▶";
    /* 「▶」を追加 */
    color: #90bd34;
    /* 緑色 */
    font-size: 0.8em;
    /* 文字サイズ（親要素と同じ大きさ） */
    font-weight: bold;
    /* 太字 */
    margin-right: 8px;
    /* 文字とアイコンの間隔 */
    display: inline-block;
    /* インライン要素として配置 */
    position: relative;
    top: -1px;
}

.job-text {
    padding: 3% 2% 1%;
}

.job-text p {
    line-height: 1.8rem;
}

.first-job-lists,
.second-job-lists {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 700px;
    margin: 0 auto;
}

.first-job-lists li,
.second-job-lists li {
    width: 130px;
    height: 130px;
    border: 1px solid #555;
    background-color: #FFF;
    align-content: center;
}

.second-job,
.third-job {
    margin-top: 8%;
}

.main-text p:first-of-type {
    /* padding-top: 20px; */
}

.life-design-text {
    text-align: justify;
    padding: 5% 10% 7%;
}

.lmd-back-img {
    background-image: url(../images/pc/3_COMPANY/life\ design\ market_bg.png);
}

.ldm-title-img {
    border-bottom: 1px solid #d3af37;
    display: inline-block;
    height: 50px;
}

.padding-top-non {
    padding-top: 0px;
}

/* 会社概要 -------------------------------------------------------------- */

.first-job-lists li,
.second-job-lists li {
    width: 100px;
    height: 100px;
}

.first-job-lists,
.second-job-lists {
    width: 550px;
}

.company-text-content {
    text-align: left;
    padding: 0 20px;
}

.ldm-content-img {
    /* width: 75vw; */
}

.ldm-title {
    margin: 5%;
}

/* .life-design-text {
    text-align: center;
} */

.job-title-img {
    width: 100%;
}

.job-subtitle {
    font-size: 1.2rem;
}

.first-job-lists,
.second-job-lists {
    align-items: center;
}

.first-job-lists li {
    padding: 2% 3% 2% 3%;
}

.second-job-lists li {
    padding: 2% 3% 2% 3%;
}

.voice-top {
    margin: 0 auto;
}

.voice-title-flex {
    flex-direction: column;
}

.voice-title {
    left: 51%;
}

.recruit-top-flex {
    /* flex-direction: column-reverse; */
}

.support-women-img {
    /* width: 90vw; */
}


/* VOICEページ
****************************************************************************/
.voice {
    background-color: #f8f5e4;
}

.voice-list {
    margin-bottom: 6%;
    list-style: none;
    background-color: #fff;
    border-radius: 30px;
}

.voice-lists {
    width: 80%;
    margin: auto;
}

.voice-top {
    /* text-align: left; */
    position: relative;
    width: 267px;
    margin: 0px auto 0 8%;
}

.voice-title {
    position: absolute;
    top: 9px;
    left: 130px;
    color: #701b57;
    font-size: 1.5rem;
}

.text-center {
    top: 7px;
    left: 120px;
}

.voice-content {
    padding: 5% 2%;

}

.review-coment {
    padding-top: 2%;
}

.review-coment p {
    text-align: justify;
    margin: 0px 9%;
    line-height: 2.2rem;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 10px;
}


.person-info {
    display: flex;
    flex-direction: column;
}


.person-age,
.person-location {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.voice-title-flex {
    display: flex;
    gap: 20px;
    flex-direction: row;
    align-items: center;
}

/* .voice-title-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
} */

.voice-title-content {
    border-bottom: 1px solid #d3af37;
    padding: 2% 0 15px 0;
    display: inline-block;
}

.review-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #701b57;
}

.break {
    display: inline-block;
}

.voice-list:nth-child(3) .review-message {
    font-size: 1.3rem;
}

.voice-list:nth-child(3) .voice-title-flex {
    gap: 0;
}

/* VOICEボタンホバー位置調整 */
a.left-ad:before {
    transform: translateX(-89%) translateY(-70%) rotate(135deg);
}

a.left-ad:hover:before {
    transform: translateX(-8%) translateY(-38%) rotate(135deg);
}

a.left-ad-recruit:before {
    transform: translateX(-83%) translateY(-70%) rotate(135deg);
}

a.left-ad-recruit:hover:before {
    transform: translateX(-14%) translateY(-38%) rotate(135deg);
}


/* REURUITページ
****************************************************************************/

.recruit-text {
    text-align: left;
}

#top-contact {
    scroll-margin-top: 100px;
    /* スクロール時に上部に100pxの余白 */
}

.support {
    background-color: #f7f7f7;
}

.recruit-top-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.recruit-top-text {
    flex: 1 1 60%;
    box-sizing: border-box;
}

.recruit-top-text p {
    line-height: 2;
    text-align: left;
    padding: 0 7%;
}

.recruit-top-img {
    flex: 1 1 40%;
    box-sizing: border-box;
}

.recruit-top-img img {
    max-width: 100%;
    height: auto;
}

.support-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.support-subtitle-1,
.support-subtitle-2,
.support-subtitle-3 {
    position: absolute;
    font-size: 1.3rem;
    color: #fff;
    top: 34px;
}

.support-subtitle-1,
.support-subtitle-3 {
    left: 28px;
}

.support-subtitle-2 {
    left: 8px;
}

.support-image {
    width: 105px;
    height: auto;
    margin-right: 10px;
}

.border-line {
    border-bottom: 1px solid #555;
    margin: 7% 0;
    width: 50%;
    margin: auto;
}

.support-content1,
.support-content2,
.support-img,
.support-content3 {
    margin: 5% 0;
}

table {
    border: 1px solid;
}

.support-content1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* margin: 5% auto; */
}

.support-header {
    display: flex;
    align-items: center;
    /* 縦の位置を揃える */
    justify-content: flex-start;
    /* 左寄せ */
    width: 100%;
}

.support-header h2 {
    padding-left: 15px;
    color: #701b57;
    font-weight: normal;
    font-size: 1.5rem;
}

.support-text {
    width: 100%;
    /* support-header の幅に合わせる */
    text-align: left;
    /* 左寄せ */
    padding-top: 20px;
    line-height: 1.7rem;
}

.employment {
    padding-top: 100px;
}

.recruit-table {
    width: 100%;
    max-width: 1100px;
    /* 必要に応じて調整 */
    margin: 0 auto;
    /* 中央配置 */
    border-collapse: collapse;
    table-layout: fixed;
}

tbody {
    line-height: 1.7rem;
}

.recruit-table th {
    width: 30%;
    /* 項目の列幅 */
    padding: 30px 15px;
    background-color: #f8f8f8;
    font-weight: bold;
}

.recruit-table td {
    width: 70%;
    text-align: left;
    padding: 30px 15px;
    vertical-align: top;
    /* 上揃え */
}

.recruit-table tr {
    border-bottom: 1px solid #555;
}

.recruit-table tr:last-child {
    border-bottom: none;
}



.recruit-table-contents h2 {
    padding-left: 10px;
    border-left: 10px solid #d4af37;
    font-weight: normal;
    color: #701b57;
    font-size: 1.5em;
    display: block;
    line-height: 1.2;
    margin: 5px 0;
    width: 100%;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto 1%
}

.support-women-img {
    width: 100%;
}



.support-wrapper {
    display: flex;
    flex-direction: column;
    /* 縦方向のレイアウト */
    align-items: center;
    /* 水平方向に中央配置 */
}

.btn-space {
    padding-top: 60px;
}

a.entry-btn {
    padding: 1.1rem 8rem;
}

/* リクルート -------------------------------------------------------------- */

.recruit-top-img {
    width: 85%;
}

.recruit-top-text p {
    padding: 0% 7% 1%;
}

.support-content1 {
    margin-bottom: 10%;
}

.support-content2,
.support-img {
    margin: 10% 0;
}

.support-content3 {
    margin: 10% 0 5%;
}

.support-header h2 {
    padding-left: 0px;
}





@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
}

.footer-contens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    line-height: 2.5rem;
}

.footer-logo img {
    height: 50px;
}

.footer-adress {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-menu-container {
    padding: 50px 0;
    border-bottom: 1px solid #555;
}

.footer-menu {
    display: flex;
    justify-content: center;
    list-style: none;
}

.footer-menu li {
    padding: 0 50px;
}

.footer-menu li a {
    color: #000b1c;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.footer-menu li a:hover {
    color: #ffcc00;
}

footer ul li:not(:first-child) {
    border-left: 1px solid #ccc;
}

/* コピーライトエリア */
.copyright-container {
    color: #fff;
    background: #701b57;
    padding: 15px 0;
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

/* メニュー全体の初期位置を右側に隠す */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* 画面の外に隠す */
    width: 80%;
    /* メニューの幅 */
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

/* メニューを開いた状態 */
.menu.open {
    right: 0;
}

/* メニュー内のリンク */
.menu ul {
    list-style: none;
    padding: 50px 20px;
}

/* .menu ul li {
    margin: 14px 0;
} */

/* ハンバーガーボタンのスタイル */
.menu-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 1100;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: gray;
    transition: 0.3s;
    position: absolute;
}

/* 初期のハンバーガーアイコン */
.menu-toggle span:nth-child(1) {
    top: 10px;
}

.menu-toggle span:nth-child(2) {
    top: 18px;
}

.menu-toggle span:nth-child(3) {
    top: 26px;
}

/* クリック時にバツ（×）に変化 */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.sp-br,
.sp-br-1,
.sp-br-2,
.sp-br-3,
.sp-br-4,
.sp-br-5 {
    display: none;
}




/* SP版（750px以下）のみハンバーガーメニューを有効にする */
@media (min-width: 750px) {
    .pc-display-none {
        display: none;
    }

    .pc-only {
        display: inline-block;
        align-items: center;
    }

    .sp-only {
        display: none;
    }


    .menu {
        position: static;
        right: 0;
        width: auto;
        height: 70px;
        background: none;
        transition: none;
        letter-spacing: 0.05rem;
    }

    .menu ul {
        display: flex;
        padding: 0;
    }

    /* .menu ul li {
        margin: 0 15px;
    } */

    .menu-toggle {
        display: none;
        /* PC版ではハンバーガーボタンを隠す */
    }
}

/* ---------------------------------------- 900px以下 ---------------------------------------- */
@media (max-width: 900px) {

    /* ヘッダー */
    header {
        padding: 0 0 0 10px;
    }

    nav ul li a {
        padding: 10px 20px;
    }

    .top-contact {
        height: 70vh;
        padding-top: 45%;
    }

    .top-contact-contents {
        flex-direction: column;
    }

    .flex-contents {
        flex-direction: column-reverse;
    }

    .mind-text-contents {
        padding: 5%;
    }

    .left-contact-content {
        width: 50%;
        padding-left: 0;
    }

    .center-contact-content {
        margin: 30px 2%;
    }

    .center-contact-content,
    .right-contact-content {
        width: 50%;
        font-size: 1rem;
    }

    .right-contact-content {
        padding: 4% 0 0% 0;
    }

    .footer-menu li {
        padding: 0 30px;
    }

    /* サービス*/
    title h1 .sp-br {
        display: block;
    }

    /* VOICE*/
    .voice-title-flex {
        flex-direction: column;
    }


}

/* ---------------------------------------- 750px以下 ---------------------------------------- */
@media (max-width: 750px) {

    nav ul li a::after {
        background: none;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: inline-block;
    }

    section {
        padding: 40px 10px;
    }

    .right-contact-content {
        padding: 8% 0 0% 0;
    }

    .recruit-top-flex {
        flex-direction: column-reverse;
        align-items: center;

    }

    .service {
        margin-top: 0%;
    }

    .recruit-header {
        margin-right: 60px;
        font-size: 0.8rem;
    }

    .recruit-header a {
        line-height: normal;
        display: block;
    }

    .text-center {
        left: 46% !important;
    }

    /* .rental-text,
    .lmd-text,
    .concierge-text,
    .home-care-text {
        text-align: center;
    } */

    .text-item1 {
        width: 70%;
        margin: 0 auto 5%;
        text-align: left
    }

    .main-text,
    .service {
        border-bottom: none;
    }

    .border-bottom-add {
        border-bottom: 1px solid #ddd;
    }

    .service-text-items {
        display: block;
        flex-direction: column;
    }


    .service-about {
        padding: 3% 5% 10%;
    }

    .service-text-contents2 {
        width: 100%;
    }

    .top-contact {
        height: 90vh;
    }



    .voice-list:nth-child(3) .review-message {
        font-size: 1.5rem;
    }



    .voice-lists {
        width: 100%;
    }

    .header_logo_img {
        width: 80%;
    }

    header {
        padding: 0 0 0 15px;
    }

    header {
        height: 60px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li:not(:first-child) {
        border-left: none;
    }

    .menu {
        top: 60px;
        width: 100%;
        border-top: 1px solid #d4af37;
        ;
        background: #fff;
    }

    .menu ul {
        width: 100%;
        margin: 40px 0;
        padding: 0;
    }

    .menu ul li {
        width: 100%;
        margin: 0;
    }

    .menu ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        color: #000b1c;
        text-decoration: none;
        padding: 15px 0;
    }

    .menu ul li a .en {
        position: relative;
        display: inline-block;
        font-size: 16px;
    }

    .menu ul li a .en::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 45vw;
        height: 1px;
        background-color: #d4af37;
    }

    .menu ul li a .sp-only {
        font-size: 1.1rem;
        color: #d4af37;
        margin-top: 10px;
    }



    .menu ul li div {
        color: #d4af37;
    }

    .mv-content {
        margin-top: 60px;
    }


    h1 {
        font-size: 1.5rem;
        width: 100%;
    }

    img.sub_title_img {
        max-width: none;
        width: auto;
        height: auto;
    }

    .service_img-container {
        padding-top: 30px;
    }

    .service_img {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        transform: none;
        min-width: auto;
        max-width: 340px;
        margin: 0 auto;
    }

    .service_img img {
        max-width: 100%;
        /* 画像の横幅を調整 */
    }

    .service_img {
        position: static;
        transform: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        width: 100%;
        min-width: auto;
        max-width: 500px;
        margin: 0 auto;
    }

    .service_img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* .mind-text {
        text-align: center;
    } */

    .top-contact-contents {
        display: flex;
        width: 80%;
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .center-contact-content {
        margin: 30px 2%;
        font-size: 1rem;
        padding: 5% 0;
    }

    .left-contact-content {
        width: 100%;
        padding-left: 0;
    }

    a.view-more-btn {
        margin: 30px 0;
    }

    .top-contact {
        /* padding-top: 0px; */
    }

    .footer-contens {
        flex-direction: column;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2列にする */
        gap: 15px;
        /* 余白調整 */
        text-align: center;
        /* テキスト中央寄せ */
        padding: 0;
        margin: 0 auto;
        max-width: 70%;
    }

    footer ul li:not(:first-child) {
        border-left: none;
    }

    .footer-menu li {
        width: 100%;
        /* 幅を均等に */
        padding: 0;
    }

    /* サービス ---------------------------------------------- */

    .inner {
        padding: 40px 20px;
    }

    .inner-min {
        padding: 40px 5px;
    }

    .service-content li {
        /* padding: 50px 0; */
    }

    /* .service-content li:nth-child(2) {
        padding-bottom: 20px;
    } */

    .service-maintext {
        text-align: left;
    }

    .service-text .sp-br {
        display: block;
    }

    .service-link a li {
        font-size: 1rem;
        width: 100%;
    }

    /* .rental-lists li {
        text-align: center;
    } */

    .ourthoughts {
        margin-top: 0%;
    }

    .title {
        margin: 5% 0 !important;
    }

    .service-text-contents1,
    .service-text-contents2,
    .service-text-contents3,
    .service-text-contents4 {
        margin: 0 5%;
    }

    .service-item-title1,
    .service-item-title2,
    .service-item-title3 {
        text-align: left;
    }

    .item-lists {
        display: block;
        padding: 0 8%;
    }

    .sp-display-none {
        display: none;
    }

    .service-other-text {
        width: 90%;
    }

    .service-content-img1,
    .service-content-img2,
    .service-content-img3,
    .service-content-img4 {
        position: static;
        width: 100%;
        margin: 0 0 5% 0%;
    }

    /* 会社概要ページ ---------------------------------------------- */
    .company-contents {
        flex-direction: column;
        align-items: center;
    }

    .company-content-left {
        width: 94%;
    }

    .company-message {
        line-height: 2rem;
    }

    .company-message,
    .massage-origin {
        padding: 0 10px;
    }

}





/* ---------------------------------------- 750px以下 ---------------------------------------- */
@media (max-width: 750px) {

    /* img.sub_title_img {
        width: 50%;
    } */

    .top-contact {
        background-image: url(../images/sp/1_TOP/bg.png);
    }

    .ldm-content-img {
        width: 75vw;
    }

    .home-care-text,
    .lmd-text {
        margin-top: 0%;
    }

    .service-content-subimg1,
    .service-content-subimg3 {
        width: 9%;
    }

    .service-content-subimg1 {
        margin-top: 17%;
        left: 0%;
    }

    .service-content-subimg2 {
        bottom: 8%;
        right: 0%;
        width: 7%;
    }

    .service-content-subimg3 {
        bottom: 100px;
        left: 0%;
        margin-top: 59%;
    }

    .service-content-subimg4 {
        bottom: 9%;
        right: 0%;

    }

    .footer-images {
        flex-direction: column;

    }
}

/* ---------------------------------------- 630px以下 ---------------------------------------- */

@media (max-width: 630px) {

    /* 会社概要 -------------------------------------------------------- */
    .first-job-lists,
    .second-job-lists {
        width: 400px;
    }

    .first-job-lists li,
    .second-job-lists li {
        padding: 0;
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
    }

    .right-contact-content {
        padding: 8% 30px 0 0% 0;
    }

    .job-title-text {
        font-size: 1.3rem;
    }

    .adress .sp-br,
    .tel-text .sp-br {
        display: block;
    }

    .adress {
        margin-bottom: 20px;
    }

    /* リクルート -------------------------------------------------------- */
    .sub-title .width-add {
        width: 80%;
        min-width: 300px;
    }

    .recruit-table-contents h2 .sp-br-4 {
        display: block;
    }

    .recruit-table-contents h2 .sp-none-1 {
        display: none;
    }

    /* サービス -------------------------------------------------------- */
    .service-link li {
        font-size: 0.9rem;
    }
}

/* ---------------------------------------- 530px以下 ---------------------------------------- */
/* リクルート */
@media (max-width: 530px) {
    .recruit-table-contents h2 .sp-br-5 {
        display: block;
    }

    .recruit-table-contents h2 .sp-none-2 {
        display: none;
    }

}

/* ---------------------------------------- 500px以下 ---------------------------------------- */
@media (max-width: 500px) {
    .support-header h2 .sp-br-2 {
        display: block;
    }

    .main-text p br.sp-br-2 {
        display: inline;
    }

    .service-title {
        font-size: 1rem;
    }
}

/* ---------------------------------------- 480px以下 ---------------------------------------- */
@media (max-width: 480px) {

    .first-job-lists,
    .second-job-lists {
        width: 360px;
    }

    .top-contact {
        height: 90vh;
        padding-top: 90%;
    }


    .job-title-text {
        font-size: 1.1rem;
        letter-spacing: normal;
    }

    .job-subtitle .sp-br {
        display: block;
    }

    /* リクルート -------------------------------------------------------- */
    .support-header h2 .sp-br-1 {
        display: block;
    }

    /* サービス -------------------------------------------------------- */
    .service-link a li {
        font-size: 0.8rem;
        padding: 20px 1%;
    }
}

@media (max-width: 450px) {

    /* サービス -------------------------------------------------------- */
    .service-title {
        font-size: 0.9rem;
    }

}

/* ---------------------------------------- 400px以下 ---------------------------------------- */

@media (max-width: 400px) {

    /* サービス -------------------------------------------------------- */
    .service-content-subimg1 {
        left: -3%;
    }

    .service-content-subimg3 {
        left: -2%;
    }

    .service-content-subimg2 {
        width: 10%;
    }

    .service-content-subimg4 {
        width: 10%;
    }

    .service-link a li {
        font-size: 0.8rem;


    }

    .right-contact-content {
        padding: 13% 0 0% 0;
    }


    .service-content-subimg1,
    .service-content-subimg3 {
        width: 13%;
    }

    /* 会社概要 */

    .first-job-lists,
    .second-job-lists {
        justify-content: center;
    }

    .first-job-lists,
    .second-job-lists {
        width: 290px;
    }

    .first-job-lists li,
    .second-job-lists li {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }

    .space-adjust {
        letter-spacing: -0.2rem;
    }

    /* リクルート -------------------------------------------------------- */
    .title .font-size-add {
        font-size: 1.3rem;
    }

    .support-header h2 {
        letter-spacing: -0.05rem;
    }


    .sp-br {
        display: block;
    }

    /* お客様の声 -------------------------------------------------------- */
    .font-13 {
        font-size: 1.3rem;
    }

}