@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;
}

.sp-br,
.sp-br-1,
.sp-br-2,
.sp-br-3,
.sp-br-4,
.sp-br-5 {
    display: none;
}
/* ============================================================================
    ヘッダー
   ========================================================================== */
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 {
    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);
}

/* ハンバーガーメニュー */
.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-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);
}

/* ハンバーガーメニュー 有効*/
@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-toggle {
        display: none;
    }
}

/* ============================================================================
    フッター
   ========================================================================== */
footer {
    color: #000b1c;
    text-align: center;
}

.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;
}


@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;
}

/* ============================================================================
    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;
}

/* ============================================================================
    トップページ
   ========================================================================== */

.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;
}

/* サービス */
.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-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;
}

/* ============================================================================
    サービスページ
   ========================================================================== */
.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;
}

#home-care,
#concierge {
    padding: 70px 0 0 0;
}

.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;
    left: 56%;
    top: 16%;
    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-subimg2,
.service-content-subimg3 {
    opacity: 0.7;
    mix-blend-mode: multiply;
}

.service-content-subimg1,
.service-content-subimg4 {
    opacity: 0.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 li {
    width: 100%;
    list-style: none;
    margin: 1px;
    line-height: 1;
    font-size: 1.5rem;
    background-color: #bfae84;
    transition: background-color 1s ease;
}

.service-link a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 3%;
    color: #fff;
}

.service-link li:hover {
    background-color: #d0c29d;
}

.service-link li a 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 li a:hover span {
    top: 8px;
}

.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;
}

.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: 90px;
    right: 0%;
}

.service-content-subimg4 {
    top: auto;
    bottom: 57%;
    right: 0%;
    width: 7%;
}

section.no-bottom-space {
    padding-bottom: 0px;
    border-bottom: none;
}

.item-lists,
.rental-lists {
    list-style: none;
}

.home-care-service-text-items {
    display: flex;
    justify-content: center;
    padding: 0
}

.home-care-service-text-items .text-item1+.text-item1 {
    margin-left: 30px;
}

.service-text-items {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.item-lists li {
    text-align: left;
    font-size: 0.9rem;
    text-indent: -1.1em;
    padding-left: 10px;
    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 {
    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;
    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;
    margin-right: 8px;
    font-weight: bold;
}

#consultation {
    margin-bottom: 10%;
}

.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;
}

.padding-top-add {
    padding-top: 50px;
}

.padding-bottom-none {
    padding-bottom: 0px;
}

/* ============================================================================
    カンパニーぺージ
   ========================================================================== */
.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;
    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-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%;
}

.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-title {
    margin: 5%;
}

.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%;
}

/* ============================================================================
    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 {
    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-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;
}

/* ボタンホバー位置調整 */
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);
}

/* ============================================================================
    リクルートページ
   ========================================================================== */
.recruit-text {
    text-align: left;
}

#top-contact {
    scroll-margin-top: 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;
}

.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%;
    text-align: left;
    padding-top: 20px;
    line-height: 1.7rem;
}

.employment + .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;
}

/* ============================================================================
    レスポンシブ 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;
    }

    .text-item1 {
        width: 70%;
        margin: 0 auto 15px;
        text-align: left
    }

    .main-text,
    .service {
        border-bottom: none;
    }

    .border-bottom-add {
        border-bottom: 1px solid #ddd;
    }

    .service-text-items {
        flex-direction: column;
    }

    .home-care-service-text-items {
        flex-direction: column;
    }

    .home-care-service-text-items .text-item1+.text-item1 {
        margin-left: auto;
    }


    .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;
    }

    .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;
    }

    .footer-contens {
        flex-direction: column;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        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: 0px 5px;
    }

    .service-maintext {
        text-align: left;
    }

    .service-text .sp-br {
        display: block;
    }

    .service-link li a {
        font-size: 1rem;
    }

    .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 20px;
    }

    .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;
    }

    .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;
    }

    .service-item-title {
        padding-left: 20px;
    }

    .employment + .employment {
    padding-top: 40px;
}
}

/* ============================================================================
    レスポンシブ 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 a {
        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 li a {
        font-size: 0.8rem;
        padding: 20px 1%;
    }
}
/* ============================================================================
    レスポンシブ 450px以下
   ========================================================================== */
@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 li a {
        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;
    }

    /* VOICEページ */
    .font-13 {
        font-size: 1.3rem;
    }

}