@charset "utf-8";

/*================================
Layout
================================*/
body {
    position: relative;
    overflow-x: hidden;
}

@media all and (min-width:770px) {
    body {
        padding-top: 96px;
    }
}

html.nonScroll,
body.nonScroll {
    overflow: hidden;
}

.wrapper {
    position: relative;
}

.inner {
    margin-inline: auto;
}

.w1120 {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 20px;
}

.w1000 {
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
    padding-inline: 20px;
}

.w800 {
    width: 100%;
    max-width: 840px;
    margin-inline: auto;
    padding-inline: 20px;
}


/*================================
Common
================================*/

/*================================
Header
================================*/
.header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 96px;
    background: #F6FCFF;
}
@media all and (min-width:770px) {
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 98;
    };
}
.bg_nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(61,61,61,0.1);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1911px;
    max-width: 1911px;
    margin-inline: auto;
    padding: 0 60px;
}

.header_inner .header_logo a{
    display: block;
    width: 75%;
}

.header_nav nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
}

.gnav {
    display: flex;
    align-items: center;
    /* column-gap: 12px; */
}
@media all and (min-width:1051px) {
.gnav > .item > a {
    position: relative;
    display: flex;
    align-items: center;
    height: 96px;
    padding-left: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #3D3D3D;
    z-index: 101;
    transition: all 0.3s ease;
}

.gnav > .item > a:hover {
    opacity: 1;
    color: #0095D9;
}

.gnav > .item:has(.megamenu) > a:after {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: 12px solid #FFF;
    border-bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gnav > .item > a:hover:after,
.gnav > .item > a:has( + .megamenu:hover):after {
    opacity: 1;
}

.gnav .item > a.current {
    font-weight: 700;
    color: #0095d9;
}

.header_sub {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.header_sub a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    color: #3D3D3D;
    border-radius: 9999px;
}

.header_sub a svg {
    margin-right: 8px;
}

.header_sub .header_tel a {
    padding: 0 15px 0 9px;
    border: 1px solid #0095D9;
    background: #FFF;
    font-size: 21px;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
}

.header_sub .header_tel a i {
    width: 24px;
    height: 24px;
    color: #0095D9;
}

.header_sub .header_tel a svg {
    stroke: #0095D9;
}

.header_sub .header_search a {
    padding: 0 15px 0 9px;
    background: #0095D9;
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
}

.header_sub .header_search a i {
    width: 20px;
    height: 20px;
    color: #FFF;
}

.megamenu {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}

.gnav > .item > a:hover + .megamenu,
.megamenu:hover {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
}

.megamenu {
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #0095D9;
}

.megamenu.open:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0095D9;
    z-index: 1;
}

.megamenu .megamenu_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 125px;
    max-width: 1120px;
    min-height: 280px;
    margin-inline: auto;
    padding-block: 40px;
}

.megamenu .megamenu_inner .megamenu_title {
    font-size: 32px;
    font-weight: 500;
    color: #FFF;
}

.megamenu .megamenu_inner .megamenu_list {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.megamenu .megamenu_inner .megamenu_list .megamemu_item a {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 0 10px 0 10px;
    height: 60px;
    background: #FFF;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    font-size: 18px;
    color: #3D3D3D;
}

.megamenu .megamenu_inner .megamenu_list .megamemu_item a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #F6FCFF;
    border-radius: 50%;
    color: #0095D9;
}
}

/*================================
Contents Common
================================*/
.contents section {
    margin-top: 64px;
}

.section_title {
    font-size: 24px;
    line-height: 1.5;
    color: #0095D9;
}

.section_title .en {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Barlow", sans-serif;
    color: #0095D9;
}

.more {
    position: relative;
    border-radius: 999px;
    width: fit-content;
    background: #0095D9;
    border: 1px solid #0095D9;
    border-radius: 999px;
    overflow: hidden;
    z-index: 0;
}

.more.more_white {
    background: #FFF;
    border: 1px solid #0095D9;
}

.more a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 44px;
    min-width: 176px;
    font-size: 15px;
    line-height: 1.5;
    color: #FFF;
    font-weight: 700;
    border-radius: 999px;
    z-index: 2;
    transition: all 0.3s ease;
}

.more.more_fc a {
    padding-inline: 65px;
}

.more.more_white a {
    color: #0095D9;
}

.more a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFF;
    transition: all 0.3s ease;
}
.more.more_white a:after {
    background: #0095D9;
}

@media all and (min-width:770px) {
    .more:hover a {
        color: #0095D9;
        opacity: 1;
    }

    .more.more_white:hover a {
        color: #FFF;
        opacity: 1;
    }

    .more:hover a:after {
        background: #0095D9;
    }

    .more.more_white:hover a:after {
        background: #FFF;
    }
}
.more:before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 44px;
    width: 100%;
    transform: translateX(-100%);
    font-size: 15px;
    line-height: 1.5;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #FFF;
    color: #0095D9;
    font-weight: 700;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.more.more_white:before {
    background: #0095D9;
}

@media all and (min-width:770px) {
    .more:hover:before {
        transform: translateX(0);
    }
}

.pabel_list {
    display: grid;
    column-gap: 64px;
}

/*================================
Home
================================*/
.home {
    background: url(../img/home/bg_home@2x.webp) no-repeat top center / contain;
}

.home .section_title {
    font-size: 27px;
    line-height: 1.5;
    color: #3D3D3D;
}

.home .section_title .en {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Barlow", sans-serif;
    color: #0095D9;
}


/* mv */
.home .mv {
    position: relative;
    margin-top: 52px;
}

.home .mv .home_mv {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.home .mv .slider {
    display: flex;
    gap: 32px;
    padding-right: 32px;
    flex-shrink: 0;
}

.home .mv .slider .slide {
    width: 480px;
    height: 640px;
    flex: 0 0 384px;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

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

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}


.home .mv .home_mv .slider:first-child {
  animation: loop 140s -70s linear infinite;
}


.home .mv .home_mv .slider:last-child {
  animation: loop2 140s linear infinite;
}

.home .mv .slider .slide img {
    max-width: initial;
    width: 480px;
    height: 640px;
}

.home .mv .home_mv_message {
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: space-between;
    width: 400px;
    height: 640px;
    right: 16.25vw;
    background: #FFF;
    background: linear-gradient(180deg, rgba(246, 252, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.home .mv .home_mv_message .home_mv_main_message {
    position: relative;
    margin-right: 40px;
    align-self: flex-end;
}


.home .mv .home_mv_message .home_mv_sub_message {
    /* padding: 0 0 51px 30px; */
    padding: 0 0 20px 20px;
    justify-self: flex-start;
    align-self: flex-start;
    writing-mode: vertical-rl;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.3em;
}
.home .mv .home_mv_message .home_mv_main_message h1{
    width: 75%;
    margin-left: auto;
}

.home .mv .home_mv_message .home_mv_sub_message:after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 0;
    width: 200px;
    height: 146px;
    background: url(../img/home/bg_home_mv_message@2x.webp) right 15px bottom no-repeat;
    background-size: cover;
}
.home .mv .home_mv_message.dex3 {
    flex-direction: row-reverse;
    width: 450px;
}
.home .mv .home_mv_message.dex3 .home_mv_main_message {
    position: relative;
    margin-right: 70px;
    align-self: flex-start;
}
.home .mv .home_mv_message.dex3 .home_mv_sub_message {
    padding: 100px 0 20px 10px;
    justify-self: flex-start;
    align-self: flex-start;
    writing-mode: vertical-rl;
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.3em;
    font-family: 'ta-oonishi' !important;
}
.home .mv .home_mv_message.dex3 .home_mv_main_message h1 img{
    width: 240px;
    max-width: 240px;
}
.home .home_mv_info {
    max-width: 800px;
    width: 100%;
    margin-top: 64px;
    margin-inline: auto;
    padding: 0 16px;
}

.home .home_mv_info .home_mv_info_inner {
    position: relative;
    height: 48px;
    padding: 0 16px;
    background: #FBFBFB;
    border-radius: 5px;
    overflow: hidden;
}

.home .home_mv_info .home_mv_info_inner .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 64px;
    height: 48px;
}

.home .home_mv_info .home_mv_info_inner .item .title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #0095D9;
}

.home .home_mv_info .home_mv_info_inner .item .title.icon_news:before {
    content: "";
    width: 25px;
    height: 23px;
    margin-right: 10px;
    background: url(../img/home/icon_home_mv_info.webp) no-repeat center center / cover;
}

.home .home_mv_info .home_mv_info_inner .item .title:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    height: 1em;
    width: 1px;
    background: #D8D8D8;
}

.home .home_mv_info .home_mv_info_inner .item .summary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    text-decoration: underline;
}

.home .home_mv_info .home_mv_info_inner .item .summary span {
    flex: 1;
}

.home .home_mv_info .home_mv_info_inner .item svg {
    stroke: #0095D9;
    stroke-width: 2px;
}


/* sns */
.home_sns .section_inner {
    width: calc(100% - 384px);
    padding: 40px 64px 64px;
    border-radius: 24px;
    background: #F6FCFF;
}

.home_sns .section_header {
    text-align: center;
}

.home_sns .lead {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    line-height: 2;
}

.home_sns .home_sns_list {
    display: flex;
    justify-content: space-between;
    column-gap: 44px;
    margin-top: 30px;
}

.home_sns .home_sns_list .instagram {
    width: 510px;
}

.home_sns .home_sns_list .facebook {
    width: 420px;
}

.home_sns .home_sns_list .title {
    margin-bottom: 13px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
}

/* newsletter */
.home_newsletter {
    background: #F6FCFF;
}
.home_newsletter .section_inner {
    display: flex;
    justify-content: space-between;
    column-gap: 80px;
    padding-block: 52px;
}
.home_newsletter .section_inner .section_header {
    width: 176px;
}
.home_newsletter .home_newsletter_category {
    margin-top: 26px;
}
.home_newsletter .home_newsletter_category ul {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}
.home_newsletter .home_newsletter_category li {
    display: flex;
    align-items: center;
    column-gap: 7px;
    cursor: pointer;
    font-size: 15px;
    color: #3D3D3D;
}
.home_newsletter .home_newsletter_category li.current,.home_newsletter .home_newsletter_category li:hover {
    color: #0095D9;
}
.home_newsletter .home_newsletter_category li.current:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin-top: 3px;
    border-radius: 50%;
    background: rgba(0,149,217,0.5);
}
.home_newsletter .home_newsletter_category li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin-top: 3px;
    border-radius: 50%;
    background: rgba(0,149,217,0.5);
}
.home_newsletter .section_inner .section_header .more {
    margin-top: 26px;
}
.home_newsletter .section_inner .section_contents {
    flex: 1;
}
.home_newsletter_list {
    border-top: 1px solid #D8D8D8;
}

.home_newsletter_list .item {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    padding: 20px 20px;
    border-bottom: 1px solid #D8D8D8;
}

.home_newsletter_list .item .img {
    width: 208px;
    height: 139px;
}

.home_newsletter_list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_newsletter_list .item .detail {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home_newsletter_list .item .detail .category {
    padding: 4px 10px;
    background: #FFF;
    font-size: 12px;
    color: #0095D9;
    border: 1px solid #0095D9;
    border-radius: 9999px;
    width: fit-content;
}

.home_newsletter_list .item .detail .title {
    margin-top: 12px;
    color: #3D3D3D;
    font-size: 16px;
    font-weight: 700;
}

.home_newsletter_list .item .detail p {
    margin-top: 12px;
}


/* recommend */
.home_recommend .section_inner  {
    padding-inline: 80px;
}

.home_recommend .section_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_recommend .section_header .home_recommend_category ul {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.home_recommend .section_header .home_recommend_category ul li {
    width: fit-content;
    padding: 10px 20px;
    background: #F6FCFF;
    border-radius: 8px;
    cursor: pointer;
}

.home_recommend .section_header .home_recommend_category ul li.current {
    border: 1px solid #0095D9;
    font-weight: 700;
    color: #0095D9;
    background: #FFF;
}

.property_list .slick-slide > div {
    display: contents;
}

.property_list .slick-slide {
    display: grid!important;
}

.property_list .item {
    position: relative;
    display: grid!important;
    grid-template-rows: subgrid;
    grid-row: span 6;
    border-radius: 8px;
    border-right: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
    border-left: 1px solid #D8D8D8;
}

.property_list .item .img {
    position: relative;
    width: 288px;
    height: 192px;
    transform: scale(1.01);
    transform-origin: center;
}

.property_list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property_list .item .img .area {
    display: flex;
    align-items: center;
    column-gap: 4px;
    position: absolute;
    bottom: -8px;
    left: 16px;
    padding: 4px 8px;
    background: #FFF;
    border-radius: 4px;
    color: #3D3D3D;
}

.property_list .item .img .area i {
    color: #0095D9;
}


.property_list .item .detail {
    padding-inline: 20px;
    padding-bottom: 60px;
    color: #3D3D3D;
}

.property_list .item .supplier {
    padding-top: 20px;
    font-size: 13px;
    font-weight: 700;
}

.property_list .item .label {
    padding-top: 20px;
    font-size: 16px;
    font-weight: 700;
}

.property_list .item .property_info {
    display: grid;
    grid-template-columns: 4.5em 1fr;
    column-gap: 12px;
    row-gap: 5px;
    margin-top: 13px;
}

.property_list .item .property_info dt {
    font-size: 13px;
}

.property_list .item .property_info dd:first-of-type {
    font-size: 15px;
    font-weight: 700;
}

.property_list .item .access {
    margin-top: 5px;
    line-height: 1.7;
}

.property_list .item .compartment {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);
    margin-inline: 20px;
    padding-inline: 20px;
    padding-block: 7px;
    border: 1px solid #D8D8D8;
    border-radius: 7px;
    font-size: 15px;
    color: #3D3D3D;
}

.property_list .item .compartment .compartment_all:after {
    content: "/";
    display: inline-block;
    margin: 0 2px;
}

.property_list .item .compartment .compartment_current {
    color: #F89634;
}

.home_recommend .slick__inner {
    position: relative;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 0;
}

.property_list .item .type {
    position: absolute;
    top: 14px;
    left: 0;
    padding: 4px 7px;
    color: #FFF;
    background: #004F72;
    z-index: 1;
}

.property_list .detail {
    border-radius: 0 0 8px 8px;
}

.home_recommend .property_list {
    padding: 32px 0 48px 0;
    width: calc(100% + (100vw - 100%) / 2);
}

.home_recommend .slick-track {
    display: flex;
}

.home_recommend .slick-slide {
    position: relative;
    width: 288px;
    height: auto;
    margin-right: 24px;
    background: #FFF;
    border-radius: 10px;
}

.home_recommend .slick-slide img {
    width: 100%;
}

.home_recommend .property_list_controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_recommend .property_list_controls .list_controls {
    display: flex;
    column-gap: 37px;
}

.home_recommend .property_list_controls .arrow_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 7px;
}

.home_recommend .property_list_controls .prev,
.home_recommend .property_list_controls .next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    background: #0095D9;
    border-radius: 50%;
    color: #FFF;
    cursor: pointer;
}

.home_recommend .property_list_controls .prev:hover,
.home_recommend .property_list_controls .next:hover {
    opacity: 0.5;
}

.home_recommend .property_list_controls .prev svg,
.home_recommend .property_list_controls .next svg {
    width: 16px;
    height: 16px;
}

.home_recommend .property_list_controls .dots_wrap {
    display: flex;
    align-items: center;
    line-height: 1;
}

.home_recommend .property_list_controls .dots {
    display: flex;
    align-items: center;
    column-gap: 4px;
    line-height: 1;
}

.home_recommend .property_list_controls .dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border: 1px solid #0095D9;
    border-radius: 50%;
    line-height: 1;
}

.home_recommend .property_list_controls .dots .slick-active button{
    background: #0095D9;
}

/* about */
.home_about .section_header {
    position: relative;
    padding: 113px 0 60px 0;
    border-radius: 24px 24px 0 0;
    background: #0095D9;
}

.home_about .section_header:after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -24px;
    width: 646px;
    height: 258px;
    background: url(../img/home/deco_home_about1@2x.webp) no-repeat;
    background-size: cover;
}

.home_about .section_header .section_title {
    font-size: 48px;
}

.home_about .section_header .section_title .en {
    font-size: 18px;
}

.home_about .section_header .section_title,
.home_about .section_header .section_title .en {
    color: #FFF;
}

.home_about .home_about_message {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    column-gap: 16px;
    width: 100%;
    max-width: 1044px;
    margin-inline: auto;
    padding: 91px 16px 64px 16px;
}

.home_about .home_about_message .home_about_message_box {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 65px;
    max-width: 660px;
}


.home_about .home_about_message .home_about_message_box .title {
    font-size: 29px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
}

.home_about .home_about_message .home_about_message_box .title span {
    color: #0095D9;
}

.home_about .home_about_message .home_about_message_box p {
    margin-top: 32px;
    padding-left: 96px;
}

.home_about_img {
	overflow: hidden;
}

.infinite {
	animation: marquee-right 80s linear infinite;
	display: flex;
	margin: 0 32px 0 0;
	padding: 0;
	width: max-content;
}
.infinite img {
	display: block;
	width: 100%;
}

@keyframes marquee-right {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-50%);
	}
}

/* strength */
.home_strength {
}

.home_strength .bg {
    position: absolute;
    top: 0;
    left: -14.583vw;
    width: calc(1190px + 14.583vw);
    max-width: 100vw;
    height: 100%;
    z-index: -1;
    background: #F6FCFF;
    border-radius: 0 24px 24px 0;
}

.home_strength .section_inner {
    position: relative;
    padding: 64px 0 64px 16px;
}

.home_strength .home_strength_panel {
    grid-template-columns: 1fr 1fr;
    max-width: 968px;
    margin-top: 32px;
    padding: 0 136px 0 0;
}

.home_strength .home_strength_panel .point {
    margin-top: 16px;
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    line-height: 1.2;
}

.home_strength .home_strength_panel .title {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 500;
    color: #0095D9;
    line-height: 1.5;
}

.home_strength .home_strength_panel .summary {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

/* service */
.home_service {
    padding-block: 64px;
    background: url(../img/home/bg_home_service@2x.webp) repeat center top;
    background-size: 21px 20px;
    border-radius: 24px;
}

.home_service .section_title,
.home_service .section_title .en {
    color: #FFF;
}

.home_service .slick__inner {
    position: relative;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 0;
}

.home_service .home_service_slider {
  padding: 32px 0 48px 0;
  width: calc(100% + (100vw - 100%) / 2);
}

.home_service .slick-slide {
  position: relative;
  width: 350px;
  height: 390px;
  margin-right: 24px;
background: #FFF;
border-radius: 8px;
}

.home_service .slick-slide img {
    width: 100%;
}

.home_service  .home_service_slider .item .title {
    padding: 20px 20px 0 20px;
    color: #0095D9;
    font-size: 18px;
    font-weight: 500;
}

.home_service  .home_service_slider .item .summary {
    padding: 8px 20px 20px 20px;
    line-height: 1.75;
    color: #3D3D3D;
}

.home_service .home_servece_slider_controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_service .home_servece_slider_controls .prev,
.home_service .home_servece_slider_controls .next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    background: #FFF;
    border-radius: 50%;
    color: #0095D9;
    cursor: pointer;
}

.home_service .home_servece_slider_controls .prev:hover,
.home_service .home_servece_slider_controls .next:hover {
    opacity: 0.5;
}

.home_service .home_servece_slider_controls .prev svg,
.home_service .home_servece_slider_controls .next svg {
    width: 16px;
    height: 16px;
}

.home_service .home_servece_slider_controls .dots {
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.home_service .home_servece_slider_controls .dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.home_service .home_servece_slider_controls .dots .slick-active button{
    background: rgba(255,255,255,1);
}

.home_service .slick_num {
    position: absolute;
    right: 0;
    top: -48px;
    font-family: "Barlow", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #FFF;
    letter-spacing: -0.1em;
}

.home_service .slick_num .now_count {
    font-size: 42px;
}


/* faq */
.home_faq .section_inner {
    display: flex;
    align-content: stretch;
    justify-content: space-between;
    column-gap: 16px;
}

.home_faq .section_inner .section_header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 216px;
}

.home_faq .section_inner .section_contents {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.home_faq .section_inner .section_contents .home_faq_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    width: 100%;
    max-width: 720px;
}

.home_faq .section_inner .section_contents .home_faq_list .item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 112px;
    padding: 0 16px;
    border-bottom: 1px solid #D8D8D8;
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 700;
    background: url(../img/common/icon_doublecircle@2x.webp) no-repeat center right 16px;
    background-size: 18px 18px;
}


.home_faq .section_inner .section_contents .home_faq_list .item:nth-of-type(1),
.home_faq .section_inner .section_contents .home_faq_list .item:nth-of-type(2) {
    border-top: 1px solid #D8D8D8;
}

/* recruit */
.home_recruit {
    background: url(../img/home/bg_home_recruit@2x.webp) top center no-repeat;
    background-size: cover;
    border-radius: 24px 24px 0 0;
}

.home_recruit .section_inner {
    padding: 80px 20px 72px 20px;
}

.home_recruit .section_title,
.home_recruit .section_title .en {
    color: #FFF;
}

.home_recruit .section_title {
    position: relative;
    overflow: hidden;
}

.home_recruit .section_title:after {
    content: "";
    position: absolute;
    left: 164px;
    bottom: 16px;
    height: 1px;
    background: #FFF;
    width: 100%;
}

.home_recruit .home_recruit_message {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
}

.home_recruit .home_recruit_message .img {
    flex: 0.5;
}

.home_recruit .home_recruit_message .img img {
    transform: translateX(-29px);
}

.home_recruit .home_recruit_message .text {
    flex: 0.5
}

.home_recruit .home_recruit_message .text p {
    color: #FFF;
    font-size: 15px;
    line-height: 2;
}

.home_recruit .home_recruit_message .text p:nth-of-type(n+2) {
    margin-top: 20px;
}

.home_recruit .home_recruit_message .text .more_white{
    margin: 24px 0 0 auto;
}

/*================================
Page Common
================================*/
.contents section.page_mv {
    margin-top: 0;
    background: linear-gradient(180deg, hsla(200, 100%, 98%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
}

.contents section.page_mv .section_inner {
    position: relative;
    height: 280px;
    padding-top: 128px;
}

.page_mv_title .img {
    position: absolute;
    top: 64px;
    left: -45px;
    z-index: 0;
}

.page_mv_title .en {
    position: absolute;
    top: 60px;
    left: -45px;
    z-index: 0;
    font-size: 78px;
    font-family: 'professor',serif;
    line-height: 1.38;
    color: rgba(0,149,217,0.2);
}

.page_mv_title .text {
    position: relative;
    z-index: 1;
}

.page_mv_title .text .title {
    font-size: 42px;
    font-weight: 600;
}

.page_mv_title .text .sub {
    display: block;
    margin-top: 9px;
    font-size: 16px;
    font-weight: normal;
}

.page_mv_title .deco {
    position: absolute;
    right: -221px;
    bottom: 0;
}

.contents_wrap {
    margin-top: 50px;
}

.contents_col2 {
    display: flex;
    justify-content: space-between;
    column-gap: 90px;
}

.contents_col2 aside {
    width: 235px;
    order: 1;
}

.contents_col2 main {
    flex: 1;
    order: 2;
}

.side_page_nav .title {
    font-size: 24px;
    font-weight: 700;
}

.side_page_nav .side_page_nav_list {
    margin-top: 8px;
}

.side_page_nav .side_page_nav_list li a {
    display: block;
    padding-block: 0.2em;
    font-size: 18px;
    line-height: 1.7;
    color: #3D3D3D;
}

.side_page_nav .side_page_nav_list li.current a {
    display: flex;
    align-items: center;
    column-gap: 7px;
    color: #0095D9;
}

.side_page_nav .side_page_nav_list li.current a:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin-top: 3px;
    border-radius: 50%;
    background: rgba(0,149,217,0.5);
}

.section_header {
    position: relative;
}
.section_header .deco {
    position: absolute;
    right: -35px;
    bottom: -32px;
    font-family: 'professor',serif;
    font-size: 52px;
    color: rgba(0,149,217,0.2);
    line-height: 1;
}
.section_header:has(.deco){
    margin-bottom: 26px;
}
.section_header.section_header_type2 .section_title {
    padding-top: 52px;
    font-size: 32px;
    text-align: center;
}
.section_header.section_header_type2 .deco {
    position: absolute;
    top: -0;
    right: inherit;
    bottom: inherit;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'professor',serif;
    font-size: 52px;
    color: rgba(0,149,217,0.2);
    line-height: 1;
}
.keyword_search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 740px;
    padding: 0 0 0 32px;
    height: 52px;
    max-width: 100%;
    margin-inline: auto;
    border: 1px solid #0095D9;
    border-radius: 9999px;
}

.keyword_search input {
    width: calc(100% - 159px);
}

.keyword_search button {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    height: 52px;
    padding-inline: 18px;
    background: #0095D9;
    border-radius: 9999px;
    color: #FFF;
    transition: opacity 0.3s ease;
}

.keyword_search button:hover {
    opacity: 0.5;
}

.category_tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.category_tabs li {
    display: flex;
    align-items: center;
    column-gap: 12px;
    min-width: 180px;
    height: 60px;
    padding-inline: 10px;
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category_tabs li:hover {
    opacity: 0.5;
}

.category_tabs li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #F6FCFF;
    border-radius: 50%;
    color: #0095D9;
}

.category_tabs li .text {
    font-size: 16px;
}

.category_tabs li .text span {
    display: block;
    font-size: 14px;
    color: #6D6D6D;
}

.category_tabs li.current {
    background: #0095D9;
    border-color: #0095D9;
}

.category_tabs li.current .icon {
    background: #FFF;
}

.category_tabs li.current .text {
    color: #FFF;
    font-weight: 500;
}

.category_tabs li.current .text span {
    color: #FFF;
    font-weight: normal;
}

.page_cta {
    margin-top: 150px;
    padding-block: 60px;
    background: #0095D9;
}

.page_cta .cta_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 35px;
}

.page_cta .cta_list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-size: 20px;
    font-weight: 500;
    color: #FFF;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 0;
}

.page_cta .cta_list a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #FFF;
    border-radius: 50%;
    transition: all 0.3 ease;
}

.page_cta .cta_list a .text {
    position: relative;
    z-index: 1;
}

.page_cta .cta_list a svg {
    position: absolute;
    left: 30px;
    width: 40px;
    stroke-width: 1px;
    z-index: 1;
}

.page_cta .cta_list .search {
    border: 2px solid #FFF;
    border-radius: 9999px;
}

.page_cta .cta_list .consultation {
    border: 2px solid #FFF;
    border-radius: 9999px;
    background: #F89634;
}

.page_cta .cta_list .phone-call {
    border: 2px solid #BEBEBE;
    border-radius: 9999px;
    background: #FFF;
    color: #3D3D3D;
    text-align: center;
}

.page_cta .cta_list .phone-call svg {
    color: #0095D9;
}

.page_cta .cta_list .phone-call .tel {
    font-size: 14px;
}

.page_cta .cta_list .phone-call .tel_number {
    margin-top: 4px;
    font-size: 26px;
}

.page_cta .cta_list .phone-call .tel_number span {
    color: #0095D9;
}

.page_cta .cta_list .phone-call:after {
    background: #0095D9;
}

.page_cta .cta_list a:before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 80px;
    width: 100%;
    transform: translateX(-100%);
    font-size: 15px;
    line-height: 1.5;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #FFF;
    color: #0095D9;
    font-weight: 700;
    overflow: hidden;
    z-index: 0;
    transition: all 0.3s ease;
}

@media all and (min-width:1051px) {
    .page_cta .cta_list a:hover:before {
        transform: translateX(0);
        z-index: 0;
    }

    .page_cta .cta_list a:hover {
        opacity: 1;
    }

    .page_cta .cta_list .search:hover {
        color: #0095D9;
    }

    .page_cta .cta_list .search:hover:after {
        background: #0095D9;
    }

    .page_cta .cta_list .consultation:hover {
        color: #0095D9;
    }

    .page_cta .cta_list .consultation:hover:after {
        background: #0095D9;
    }

    .page_cta .cta_list .phone-call:hover {
        color: #FFF;
        border: 2px solid #FFF;
    }

    .page_cta .cta_list .phone-call:before {
        background: #0095D9;
    }

    .page_cta .cta_list .phone-call:hover:after {
        background: #FFF;
    }

    .page_cta .cta_list .phone-call:hover svg {
        color: #FFF;
    }

    .page_cta .cta_list .phone-call:hover .tel {
        font-size: 14px;
    }

    .page_cta .cta_list .phone-call:hover .tel_number span {
        color: #FFF;
    }
}

/*================================
Newsletter
================================*/
.section_search .category_tabs {
    margin-top: 32px;
}

.section_list .section_title {
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-size: 24px;
    color: #0095D9;
}

.section_list .section_title i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0095D9;
    color: #FFF;
    border-radius: 50%;
}

.section_list .section_title i:before {
    font-size: 14px;
}

.section_list .section_contents {
    margin-top: 30px;
}

.newsletter_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px 20px;
}
/* .newsletter_list .img {
    position: relative;
} */
.newsletter_list .top_articles {
    position: relative;
}

/* .newsletter_list .img:before {
    content: "";
    position: absolute;
    top: -21px;
    right: 10px;
    width: 43px;
    height: 54px;
    background: url(../img/common/icon_pin@2x.webp) no-repeat center center;
    background-size: cover;
} */
.newsletter_list .top_articles:before {
    content: "";
    position: absolute;
    top: -21px;
    right: 10px;
    width: 43px;
    height: 54px;
    background: url(../img/common/icon_pin@2x.webp) no-repeat center center;
    background-size: cover;
}

.newsletter_list .detail .category {
    margin-top: 10px;
    padding: 4px 10px;
    background: #FFF;
    font-size: 12px;
    color: #0095D9;
    border: 1px solid #0095D9;
    border-radius: 9999px;
    width: fit-content;
}

.newsletter_list .detail .title {
    margin-top: 12px;
    color: #3D3D3D;
    font-size: 16px;
    font-weight: 700;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.newsletter_list .detail  p {
    margin-top: 12px;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.pager .pager_list {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.pager .pager_list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
}

.pager .pager_list li.current a {
    color: #0095d9;
    border: 1px solid #0095D9;
    border-radius: 50%;
}
.pager_list .fa-solid {
    -webkit-font-smoothing: none;
}

/*================================
Single common
================================*/
.single_contents .meta {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 19px;
    margin-bottom: 60px;
}

.single_contents .meta .category {
    padding: 4px 10px;
    background: #FFF;
    font-size: 12px;
    color: #0095D9;
    border: 1px solid #0095D9;
    border-radius: 9999px;
    width: fit-content;
}

.single_contents .date {
    font-size: 16px;
    font-weight: 300;
    color: #6D6D6D;
}

.single_contents p {
    margin-top: 40px;
}

.single_contents figure {
    margin-top: 40px;
}

.single_contents .col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
}

.single_contents figure {
    width: 100%;
}

.single_contents figure img {
    width: 100%;
}

.single_contents h3,
.single_contents h4,
.single_contents h5 {
    margin-top: 40px;
}

.single_contents h3 + p,
.single_contents h4 + p,
.single_contents h5 + p {
    margin-top: 14px;
}

.single_contents p a {
    color: #0095D9;
}

.single_pager {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    margin-top: 100px;
    padding-top: 30px;
    border-top: 1px solid #D8D8D8;
}

.single_pager .prev a {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 16px;
    color: #000;
}

.single_pager .prev a:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    transform: translateY(1px);
    background: #0095D9;
    border-radius: 50%;
}

.single_pager .list {
    justify-self: center;
}

.single_pager .list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding-inline: 65px;
    background: #0095D9;
    border-radius: 9999px;
    color: #FFF;
}

.single_pager .list a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: #FFF;
    border-radius: 50%;
}

.single_pager .next {
    justify-self: flex-end;
}

.single_pager .next a {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 16px;
    color: #000;
}

.single_pager .next a:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    transform: translateY(1px);
    background: #0095D9;
    border-radius: 50%;
}


/*================================
Company
================================*/
/* company */
.contents section.company_overview {
    margin-top: 120px;
}

.company_overview_box {
    column-gap: 76px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #D8D8D8;
}

.company_overview_box:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.company_overview_box .section_header {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    position: sticky;
    top: 10px;
    height: 100%;
    margin-top: -96px;
    padding-top: 96px;
}

.company_overview_box .section_header .deco {
    position: relative;
    top: 0;
    bottom: inherit;
    right: inherit;
}

.company_overview_box .section_header:has(.deco) {
    margin-bottom: 0;
}

.company_overview_box .section_header .img {
    margin-top: 25px;
}

.company_overview_box .section_contents {
    flex: 1;
    padding-top: 108px;
}

.company_overview .company_overview_box:first-of-type {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.company_overview_box .company_overview_philosophy_message {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.company_overview_box .section_contents p {
    margin-top: 1em;
}

.company_overview_box .section_contents p:first-of-type {
    margin-top: 0;
}

.company_overview_box .section_contents p strong {
    color: #0095D9;
}

.company_profile_list .item {
    display: grid;
    grid-template-columns: 6em 1fr;
    column-gap: 4px;
}

.company_profile_list .item .label {
    padding: 25px 20px;
    font-weight: 700;
    text-align: left;
    line-height: 1.7;
    border-top: 1px solid #0095D9;
}

.company_profile_list .item .detail {
    padding: 25px 0 25px 20px;
    border-top: 1px solid #D8D8D8;
    line-height: 1.7;
    color: #3D3D3D;
}

.company_profile_list .item:first-of-type .label,
.company_profile_list .item:first-of-type .detail {
    border-top: none;
    padding-top: 0;
}

.company_overview_services_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 50px;
}

.company_overview_services_list .item .title {
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #0095D9;
}

.company_overview_services_list .item p {
    line-height: 1.7;
}

.company_overview_services_list .item dl {
    margin-left: 16px;
}

.company_overview_services_list .item dl dt {
    position: relative;
    margin-top: 20px;
}

.company_overview_services_list .item dl dt:before {
    content: "";
    position: absolute;
    top: 8px;
    left: -16px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0095D9;
}

.company_overview_services_list .item dl dd {
    margin-top: 10px;
    line-height: 1.7;
}

.company_overview_services_taiseikai {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding: 24px;
    background: #F6FCFF;
    border-radius: 18px;
    border: 1px solid #0095D9;
}

.company_overview_services_taiseikai .title {
    color: #0095D9;
    font-size: 24px;
}

.company_overview_box .section_contents .company_overview_services_taiseikai p {
    margin-top: 13px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.7;
}

.company_overview_box .section_contents .company_overview_services_taiseikai p strong {
    color: #3D3D3D
}

.company_overview_history_flow {
    position: relative;
    display: grid;
    grid-template-columns: 12em 1fr;
    column-gap: 40px;
    row-gap: 30px;
    overflow: hidden;
}

.company_overview_history_flow:before {
    content: "";
    position: absolute;
    left: calc(12em + 10px);
    top: 7px;
    width: 1px;
    height: 100%;
    background: #D8D8D8;
}

.company_overview_history_flow dt {
    position: relative;
    width: 12em;
    font-weight: 700;
    line-height: 1.7;
}

.company_overview_history_flow dt:after {
    content: "";
    position: absolute;
    top: 7px;
    right: -18px;
    width: 16px;
    height: 16px;
    background: #0095D9;
    border-radius: 50%;
}

.company_overview_history_flow dd {
    line-height: 1.7;
}

.more_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #D8D8D8;
    cursor: pointer;
}

.company_overview_history_flow.open + .more_toggle img {
    transform: rotate(-180deg);
}

/* rental_management */
.col2 {
    display: flex;
    justify-content: space-between;
}

.rental_management .contents main section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #D8D8D8;
}

@media all and (min-width:770px) {
    .rental_management .contents section:first-of-type {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
}

.feature_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
}

.rental_management .section_inner > .lead + .section_header{
    margin-top: 50px;
}

.feature_list .item.col2 {
    column-gap: 40px;
}

.feature_list .text {
    flex: 1;
}

.feature_list .text .title {
    display: flex;
    align-items: center;
    column-gap: 13px;
}

.feature_list .text .count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    color: #FFF;
    background: #0095D9;
}

.feature_list .text p {
    margin-top: 20px;
}

.feature_list .img {
    width: 320px;
}

.rental_management .faq_list {
    margin-top: 26px;
}

.rental_management .support_type .lead {
    margin-top: 26px;
}

.rental_management .support_type .support_type_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 19px;
    margin-top: 30px;
}

.rental_management .support_type .support_type_list .item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    grid-template-columns: 1fr;
    row-gap: 10px;
}

.rental_management .support_type .support_type_list .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    border: 3px solid rgba(0,149,217,0.3);
    border-radius: 66px;
    padding: 30px;
}

.rental_management .support_type .support_type_list .item:nth-of-type(2) .box {
    border-color: rgba(248,150,52,0.3);
}

.rental_management .support_type .support_type_list .box .img {
    width: 90px;
}

.rental_management .support_type .support_type_list .box .feature {
    flex: 1;
}

.rental_management .support_type .support_type_list .item:nth-of-type(2) .box {
    flex-direction: row-reverse;
}


.rental_management .support_type .support_type_list .box .feature {
    list-style-type: disc;
    margin-left: 18px;
}

.rental_management .support_type .support_type_list .title {
    font-size: 20px;
    font-weight: 500;
    color: #0095D9;
    text-align: center;
    line-height: 1.8;
}

.rental_management .support_type .support_type_list .item:nth-of-type(2) .title {
    color: #F89634;
}


.rental_management .support_type .support_type_list .summary {
    text-align: center;
    line-height: 1.7;
}

.rental_management .support_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 15px;
    margin-top: 30px;
}

.rental_management .support_list > .item {
    padding: 25px;
    border: 1px solid #0095D9;
    border-radius: 12px;
}

.rental_management .support_list > .item .title {
    font-size: 18px;
    font-weight: 700;
    color: #0095D9;
}

.rental_management .support_list > .item .support_detail_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 25px;
    margin-top: 15px;
}

.rental_management .support_list > .item .support_detail_list .item {
    list-style-type: disc;
    margin-left: 1.25em;
}

.rental_management .support_list > .item .support_detail_list .item li {
    /* font-size: 14px; */
}

.rental_management .support_list > .item .support_detail_list .item li .summary {
    font-size: 14px;
    line-height: 2;
}

.support_list + .more {
    margin-top: 30px;
    margin-inline: auto;
}

.faq_list + .more {
    margin-top: 30px;
    margin-inline: auto;
}

.faq .section_inner:has(.faq_box) {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 80px;
}

.faq_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}

.faq_list .item {
    position: relative;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    background: #FFF;
    padding-block: 15px;
}

.faq_list .item .question {
    cursor: pointer;
    padding-inline: 65px 60px;
}

.faq_list .item .question:before {
    content: "Q";
    position: absolute;
    top: 13px;
    left: 20px;
    width: 30px;
    text-align: center;
    font-size: 26px;
    font-weight: medium;
    font-family: "Barlow", sans-serif;
    color: #6D6D6D;
}

.faq_list .item .question:after {
    content: "";
    position: absolute;
    top: 19px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" class="main-grid-item-icon" fill="none" stroke="%230095D9" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><line x1="5" x2="19" y1="12" y2="12" /><polyline points="12 5 19 12 12 19" /></svg>');
    text-align: center;
    transform: rotate(90deg);
    transition: 0.3s ease;
}

.faq_list .item .question .title {
    letter-spacing: 0.05em;
}

.faq_list .item .answer {
    display: none;
    position: relative;
    padding-inline: 65px 60px;
    padding-top: 12px;
}

.faq_list .item .answer .title:before {
    content: "A";
    width: 30px;
    position: absolute;
    top: -7px;
    left: -46px;
    text-align: center;
    font-size: 26px;
    font-weight: medium;
    font-family: "Barlow", sans-serif;
    color: #0095D9;
    z-index: 1;
}

.faq_list .item .answer .title {
    position: relative;
    font-size: 16px;
    font-weight: normal;
}

.faq_list .item.open .question:after {
    transform: rotate(-90deg);
}


/* rental_brokerage */
.rental_brokerage .section_contents .faq_list + .more {
    margin-top: 30px;
    margin-inline: auto;
}


.rental_brokerage .contents main section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #D8D8D8;
}

.rental_brokerage .contents section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.rental_brokerage .section_inner > .lead + .section_header{
    margin-top: 50px;
}

.rental_brokerage .flow_list {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.rental_brokerage .flow_list:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 48px;
    width: 1px;
    height: calc(100% - 50px);
    border-left: 2px dotted #3BB4EB;
    z-index: -1;
}

.rental_brokerage .flow_list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
}

.rental_brokerage .flow_list .item:last-of-type {
    position: relative;
}

.rental_brokerage .flow_list .item:last-of-type:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #FFF;
    width: 98px;
    height: 100%;
}

.rental_brokerage .flow_list .item .step {
    position: relative;
    width: 98px;
    height: 100%;
    font-size: 20px;
    color: #3BB4EB;
    text-align: center;
    background: #FFF;
    z-index: 1;
}

.rental_brokerage .flow_list .item .step span {
    display: block;
    font-size: 36px;
}

.rental_brokerage .flow_list .item .icon {
    width: 131px;
}

.rental_brokerage .flow_list .item .icon img {
    width: 100%;
    height: auto;
}

.rental_brokerage .flow_list .item .detail {
    flex: 1;
}

.rental_brokerage .flow_list .item .detail .title {
    font-size: 20px;
    font-weight: 500;
}

.rental_brokerage .flow_list .item .detail p {
    margin-top: 20px;
}

.rental_brokerage .faq_list {
    margin-top: 26px;
}

.rental_brokerage .store_link {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
    margin-top: 40px;
}

.rental_brokerage .store_link .more a {
    padding-inline: 42px;
    font-size: 15px;
}

.rental_brokerage .store_link a,
.rental_brokerage .store_link .more::before {
    width: 320px;
    height: 44px;
}


/* Shop info */
.store_nav_wrap {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
}

.store_nav_wrap .store_nav_box .label {
    font-size: 24px;
    font-weight: 700;
}
.store_nav_wrap .store_nav_box .store_nav_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    margin-top: 20px;
}

.store_nav_wrap .store_nav_box .store_nav_list a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    color: #0095D9;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #0095D9;
    border-radius: 8px;
}

.store_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 200px;
}

.store_list .store_box {
    position: relative;
}

.store_list .store_box:after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -80px;
    width: calc(100% + 120px);
    height: 1px;
    background: #D8D8D8;
}

.store_list .store_box .store_label {
    position: relative;
}

.store_list .store_box .store_label .title {
    position: absolute;
    inset: 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
    font-size: 32px;
    font-weight: 600;
    color: #FFF;
}

.store_group .store_list .store_box:last-of-type:after {
    display: none;
}

.store_list .store_detail {
    margin-top: 40px;
}

.store .contents section:nth-of-type(n+2) {
    margin-top: 120px;
}

.store .contents section.store_group {
    margin-top: 200px;
}

.store_summary .shop_img_main {
    width: 100%;
    border-radius: 18px;
}

.store_summary .store_img_thumbnails {
    width: fit-content;
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
}

.store_summary .store_img_thumbnails .store_img_thumbnail {
    flex-shrink: 0;
    width: 246px;
    height: 123px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.store_summary .store_img_thumbnails {
	-ms-overflow-style:none; /* IE、Edge 対応 */
	scrollbar-width:none; /* Firefox 対応 */
}
.store_summary .store_img_thumbnailst::-webkit-scrollbar {
	display:none; /* chrome、Safari対応 */
}

.store_summary .store_img_thumbnails .store_img_thumbnail.current {
    opacity: 0.6;
}

.store_detail {
    column-gap: 20px;
    margin-top: 80px;
}

.store_detail .company_profile_list {
    width: 405px;
}

.store_detail .company_profile_list .item {
    grid-template-columns: 8em 1fr;
}

.store_detail .company_profile_list .item .label {
    padding: 20px 20px;
    border-top: 2px solid #0095D9;
    line-height: 1.6;
}

.store_detail .company_profile_list .item .detail {
    padding: 20px 20px;
    border-top: 2px solid #D8D8D8;
    line-height: 1.6;
}

.store_detail .company_profile_list .item .detail a {
    color: #0095D9;
    text-decoration: underline;
}

.store_detail .company_profile_list .item .detail a i {
    display: inline-block;
    margin-right: 0.4em;
}

.store_detail .company_profile_list .item:first-of-type .label {
    padding: 20px 20px;
    border-top: 2px solid #0095D9;
}
.store_detail .company_profile_list .item:first-of-type .detail {
    padding: 20px 20px;
    border-top: 2px solid #D8D8D8;
}

.store_detail .company_profile_list .item:last-of-type .label {
    padding: 20px 20px;
    border-bottom: 2px solid #0095D9;
}
.store_detail .company_profile_list .item:last-of-type .detail {
    padding: 20px 20px;
    border-bottom: 2px solid #D8D8D8;
}

.store_detail .store_map {
    width: 500px;
}

.store_link {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
    margin-top: 40px;
}

.store_link .more a {
    padding-inline: 42px;
    font-size: 18px;
}

.store_link a,
.store_link .more::before {
    width: 320px;
    height: 54px;
}

.store_staff {
    background: #F6FCFF;
}

.store_staff .section_inner {
    padding-block: 80px;
}

.store_staff .staff_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-top: 60px;
}

.store_staff .staff_list .item {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
}

.store_staff .staff_list .item .img {
    position: relative;
    width: 250px;
    padding-left: 24px;
    height: fit-content;
}

.store_staff .staff_list .item .img .name {
    position: absolute;
    height: 250px;
    bottom: 0;
    left: 0;
}

.store_staff .staff_list .item .img .name span {
    display: block;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(50%);
    height: fit-content;
    white-space: nowrap;
    padding: 10px;
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3em;
    background: #FFF;
}

.store_staff .staff_list .item .text {
    flex: 1;
}

.store_staff .staff_list .item .text .title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-family: "ta-oonishi", sans-serif;
    font-size: 32px;
    color: #0095D9;
    font-weight: 300;
    line-height: 1.18;
    border-bottom: 1px dotted #D8D8D8;
}

.store_staff .staff_list .item .text p strong {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
}

.store_info .store_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 40px;
    margin-top: 40px;
}

.store_info .store_list .item a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store_info .store_list .item a .name {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 20px;
    transform: translate(-50%,-50%);
    font-size: 24px;
    font-weight: 500;
    color: #FFF;
    text-align: center;
    z-index: 0;
}

/* Vacant house management */
.vacant_house_management .contents section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.lead .banner {
    margin-top: 30px;
    text-align: center;
}
.vacant_house_management .section_inner > .lead + .section_header{
    margin-top: 50px;
}
.plan_box:nth-of-type(n+2){
    margin-top: 40px;
}

.plan_box .title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.plan_box .plan_list {
    margin-top: 20px;
}

.plan_box .item {
    position: relative;
    padding: 20px 16px;
    border: 1px solid #BEBEBE;
    border-radius: 10px;
}

.plan_box .item .label {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.plan_box .item .label .img {
    margin-top: 20px;
}

.plan_box .item .summary {
    font-size: 14px;
    line-height: 1.75;
    text-align: center;
}

.plan_box .item .options {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 5px;
}

.plan_box .item .option {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 33px;
    font-size: 14px;
    line-height: 1.75;
    border: 1px solid #BEBEBE;
    border-radius: 6px;
}

.plan_box .item .price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 0.2em;
    margin-top: -5px;
    font-size: 14px;
}

.plan_box .item .price strong {
    transform: translateY(0.1em);
    font-size: 21px;
    font-weight: 500;
}


.plan_house {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 16px;
}

.plan_house .item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    row-gap: 20px;
}

.plan_house .item.standard  {
    border: 1px solid #0095D9;
}

.plan_house .item.standard .label {
    color: #0095D9;
}

.plan_house .item.standard .option {
    color: #0095D9;
    border-color: #0095D9;
}

.plan_house .item.plus  {
    border: 1px solid #F89634;
}

.plan_house .item.plus .label {
    color: #F89634;
}

.plan_house .item.plus .option {
    color: #F89634;
    border-color: #F89634;
}

.popular:after {
    content: "";
    position: absolute;
    right: 16px;
    width: 47.56px;
    height: 54.12px;
    background: url(../img/company/vacant_house_management/deco_popular@2x.webp) no-repeat center center / cover;
}

.plan_apartment .item {
    display: flex;
    align-items: center;
    column-gap: 40px;
    border-color: #0095D9;
}

.plan_apartment .item .img {
    width: 220px;
}

.plan_apartment .item .text {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 13px;
}

.plan_apartment .item .label {
    color: #0095D9;
    text-align: left;
}


.plan_apartment .item .option {
    max-width: 220px;
    border-color: #0095D9;
    color: #0095D9;
}

.plan_apartment .item .price {
    justify-content: flex-start;
}

.plan .banner {
    margin-top: 40px;
    text-align: center;
}

/*================================
Taiseikai
================================*/
.taiseikai .section_header .deco {
    right: 0;
}
.taiseikai .contents .taiseikai_tabs {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.taiseikai_maintab {
    width: 100%;
}
.taiseikai_maintab section {
    margin-top: 0;
}
.contents .taiseikai_lists {
    margin-top: 0;
}

.taiseikai_tabs_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(98px, 1fr));
    gap: 19px 19px;
    margin-top: 0;
}

.taiseikai_tabs_list .taiseikai_tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px;
    border: 1px solid #0095D9;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #0095D9;
    transition: all 0.2s ease;
}

.taiseikai_tabs_list .taiseikai_tab.current,
.taiseikai_tabs_list .taiseikai_tab:hover {
    background: #0095D9;
    color: #FFF;
}

.contents .taiseikai_tabs+.taiseikai_lists {
    margin-top: 25px;
}

.taiseikai_list .item {
    display: grid;
    grid-template-columns: 196px 136px 195px 110px 110px;
    column-gap: 12px;
}

.taiseikai_list .list_header > div > h2 {
    padding: 25px 0 9px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #0095d9;
}

.taiseikai_list .item:not(.list_header) > div {
    padding: 25px 0 9px;
    font-size: 14px;
    border-bottom: 1px solid #D9D9D9;
}

.taiseikai_list .item:not(.list_header) > div.name {
    color: #0095D9;
}

.taiseikai_list .item:not(.list_header) > div.name a {
    color: #0095D9;
}

.taiseikai_overview {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #D8D8D8;
}

.taiseikai_overview .section_contents {
    column-gap: 76px;
}

.taiseikai_overview .text p {
    line-height: 1.75;
}

.taiseikai_overview .text .company_profile_list {
    margin-top: 39px;
}

.taiseikai_overview .text .company_profile_list .item:first-of-type .label {
    padding: 25px 20px;
    border-top: 1px solid #0095d9;
}
.taiseikai_overview .text .company_profile_list .item:first-of-type .detail {
    padding: 25px 0 25px 20px;
    border-top: 1px solid #D9D9D9;
}

.taiseikai_overview .text .company_profile_list .item:last-of-type .label {
    border-bottom: 1px solid #0095d9;
}
.taiseikai_overview .text .company_profile_list .item:last-of-type .detail {
    border-bottom: 1px solid #D9D9D9;
}

.taiseikai_overview .text .company_profile_list .item .detail a {
    display: block;
    margin-top: 10px;
    color: #0095D9;
    text-decoration: underline;
}

.taiseikai_overview .text .company_profile_list .item .detail a i {
    display: inline-block;
    margin-right: 0.4em;
}

#business .taiseikai_tabs_list {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 10px 10px;
}

#bylaws .taiseikai_bylaws_list {
    margin-top: 45px;
}

.bylaws_list .item {
    margin-top: 30px;
}

.bylaws_list .item .chapter {
    font-weight: 500;
    color: #0095D9;
}

.bylaws_list .item .clause {
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
}

.bylaws_list .item .article {
    margin-top: 8px;
    padding-left: 20px;
}

.bylaws_list .item .article ol {
    margin-left: 1.25em;
}

.taiseikai .faq {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #D8D8D8;
}

.taiseikai aside section {
    margin-top: 0;
    padding-top: 0;
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 140px;
  height: auto;
  border-radius: 16px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, .2);
  text-align: center;
  padding: 22px 12px 22px 12px;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 23px;
  height: 36px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  margin-left: 7px;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/common/scroll_hint_finger.webp);
}

.scroll-hint-icon:after {
  content: "";
  width: 64px;
  height: 11px;
  display: block;
  position: absolute;
  top: 18px;
  left: calc(50% - 13px);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/common/scroll_hint_arrow.webp);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-text {
    margin-top: 10px;
    font-size: 12px;
}

/*================================
Recruit
================================*/
.recruit_lead .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    font-size: 50px;
    font-weight: normal;
    font-family: "ta-oonishi", sans-serif;
    column-gap: 5px;
    line-height: 1;
}

.recruit_lead .title img:first-of-type {
    align-self: flex-start;
}

.recruit_lead .title img:last-of-type {
    align-self: flex-end;
}

.recruit_lead .title strong {
    display: flex;
    color: #F89634;
    font-weight: normal;
}

.recruit_lead .title strong span {
    display: block;
    width: 5.05em;
}

.recruit_lead p {
    margin-top: 1.75em;
    font-size: 16px;
    text-align: center;
    line-height: 1.75;
}

.recruit_interview .recruit_interview_box {
    position: relative;
    margin-top: 120px;
}

.recruit_interview .recruit_interview_box:before {
    content: "";
    position: absolute;
    width: 116px;
    height: 164px;
    background: url(../img/recruit/deco_recruit_interview_arrow@2x.webp) no-repeat center center / cover;
}

.recruit_interview .recruit_interview_box:nth-of-type(odd):before {
    top: -85.6px;
    right: 142px;
}

.recruit_interview .recruit_interview_box:nth-of-type(even):before {
    transform: scale(-1, 1);
    top: -85.6px;
    left: 142px;
}

.recruit_interview .recruit_interview_box .recruit_interview1 {
    display: flex;
    margin-top: 40px;
    background: #0095D9;
    border-radius: 12px;
}

.recruit_interview .recruit_interview_box .recruit_interview1 .movie {
    border-radius: 12px;
    width: 939px;
    height: 528px;
    overflow: hidden;
}

.recruit_interview .recruit_interview_box .recruit_interview1 .movie video {
    width: 940px;
    height: 529px;
    vertical-align: bottom;
    filter: drop-shadow(0px 0px rgba(0,0,0,0));
    outline: none;
    border: none;
}

.recruit_interview .recruit_interview_box .recruit_interview1 .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    padding-inline: 10px;
    font-size: 28px;
    font-family: "ta-oonishi", sans-serif;
    color: #FFF;
    letter-spacing: 0.2em;
    text-align: center;
}

.recruit_interview .recruit_interview_box .recruit_interview1 .title .sharp {
    transform: translateX(2px);
    margin-bottom: 5px;
}

.recruit_interview .recruit_interview_box .recruit_interview1 .title .label {
    writing-mode: vertical-rl;
}


.recruit_interview .recruit_interview_box:nth-of-type(even) .recruit_interview1 {
    flex-direction: row-reverse;
}

.recruit_briefing {
    background: #F6FCFF;
}

.recruit_briefing .section_inner {
    padding-block: 80px;
}

.recruit_briefing .home_newsletter_list {
    margin-top: 40px;
}

.recruit_briefing .home_newsletter_list .img {
    width: 260px;
    height: 173px;
    border: 1px solid #F2F2F2;
    border-radius: 8px;
    overflow: hidden;
}

.recruit_briefing .home_newsletter_list .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recruit_briefing .home_newsletter_list .text .title {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.recruit_briefing .home_newsletter_list .text p {
    margin-top: 9px;
}

.recruit_briefing .home_newsletter_list + .more {
    margin-top: 40px;
    margin-inline: auto;
}

.recruit_job .recruit_job_tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-top: 40px;
    margin-inline: auto;
    border: 1px solid #0095D9;
    border-radius: 6px;
    overflow: hidden;
}

.recruit_job .recruit_job_tabs .item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F6FCFF;
    min-width: 240px;
    height: 48px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recruit_job .recruit_job_tabs .item:hover,
.recruit_job .recruit_job_tabs .item.current {
    background: #0095D9;
    color: #FFF;
    font-weight: 500;
    border-radius: 6px;
}

.recruit_job .recruit_job_tab {
    margin-top: 40px;
}

.recruit_job .recruit_job_tab .recruit_job_tab_detail {
    display: none;
}

.recruit_job .recruit_job_tab .recruit_job_tab_detail:first-of-type {
    display: block;
}

.recruit_job .recruit_job_tab .company_profile_list .item:first-of-type .label {
    padding-top: 25px;
    border-top: 1px solid #0095D9;
}

.recruit_job .recruit_job_tab .company_profile_list .item:first-of-type .detail {
    padding-top: 25px;
    border-top: 1px solid #D8D8D8;
}

.recruit_job .recruit_job_tab .company_profile_list .item:last-of-type .label {
    border-bottom: 1px solid #0095D9;
}

.recruit_job .recruit_job_tab .company_profile_list .item:last-of-type .detail {
    border-bottom: 1px solid #D8D8D8;
}

.recruit_job .recruit_job_tab .company_profile_list .item {
    grid-template-columns: 250px 1fr;
}

.recruit_job .store_link {
    margin-top: 60px;
}


/*================================
Contact
================================*/
.contact_form .contact_form_header p {
    text-align: center;
}

.contact_form .contact_form_header .contact_tel {
    margin-top: 26px;
    padding: 18px 0 14px;
    background: #F6FCFF;
    border: 1px solid #0095D9;
    border-radius: 18px;
    text-align: center;
}

.contact_form .contact_form_header .contact_tel .message {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #0095D9;
}

.contact_form .contact_form_header .contact_tel .btn_tel {
    margin-top: 16px;
}

.contact_form .contact_form_header .contact_tel .btn_tel a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 54px;
    margin-inline: auto;
    font-size: 23px;
    font-weight: 500;
    color: #FFF;
    background: #0095d9;
    border-radius: 27px;
}


.contact_form .contact_form_header .contact_tel .btn_tel a img {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.contact_form .contact_form_header .contact_tel .contact_time {
    margin-top: 5px;
}

.contact_form .contact_form_main {
    margin-top: 86px;
    padding: 54px 100px;
    border: 1px solid #0095D9;
    border-radius: 12px;
}

.contact_form .contact_form_main .item {
    display: flex;
    column-gap: 5px;
}

.contact_form .contact_form_main .item .label {
    width: 193px;
    border-top: 1px solid #0095D9;
    padding: 10px 13px 25px;
}

.contact_form .contact_form_main .item .label .title {
    display: flex;
    column-gap: 9px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.contact_form .contact_form_main .item .label .required {
    font-size: 10px;
    color: #F89634;
}

.contact_form .contact_form_main .item .label .notes {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #848484;
}

.contact_form .contact_form_main .item .detail {
    flex: 1;
    padding: 10px 13px 25px;
    border-top: 1px solid #D8D8D8;
}

.contact_form .contact_form_main .item .detail .checkbox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 6px;
}

.contact_form .contact_form_main .item .detail .checkbox label {
    display: flex;
    align-items: center;
    width: fit-content;
    column-gap: 6px;
    font-size: 14px;
}

.contact_form .contact_form_main .item .detail .checkbox input {
    position: relative;
    width: 14px;
    height: 14px;
    appearance: none;
    background: #FFFFFF;
    border: solid 1px #808080;
    border-radius: 4px;
    box-shadow: 0 0 0 0 transparent;
}

.contact_form .contact_form_main .item .detail .checkbox input:before {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0;
    mask-image: url("../img/contact/icon_check.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: #FFFFFF;
}

.contact_form .contact_form_main .item .detail .checkbox input:checked {
    background: #F89634;
    border: solid 1px #F89634;
}

.contact_form .contact_form_main .item .detail .checkbox input:checked:before {
    opacity: 1;
}

.contact_form .contact_form_main .item .detail input[type="text"],
.contact_form .contact_form_main .item .detail input[type="tel"],
.contact_form .contact_form_main .item .detail input[type="email"],
.contact_form .contact_form_main .item .detail textarea {
    width: 100%;
    padding: 11px 18px;
    border: 1px solid #0095D9;
    border-radius: 12px;
    background: rgba(245,252,255,0.27);
    color: #3D3D3D;
}

.contact_form .contact_form_main .item .detail textarea {
    min-height: 87px;
}

.contact_form .contact_form_main .item .detail ::placeholder {
    color: #BABABA;
}

.contact_form .contact_form_main .item .detail .radio {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 6px;
}

.contact_form .contact_form_main .item .detail .radio label {
    display: flex;
    align-items: center;
    width: fit-content;
    column-gap: 6px;
    font-size: 14px;
}

.contact_form .contact_form_main .item .detail .radio input {
    position: relative;
    width: 14px;
    height: 14px;
    appearance: none;
    background: #FFFFFF;
    border: solid 1px #808080;
    border-radius: 50%;
}

.contact_form .contact_form_main .item .detail .radio input:before {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.contact_form .contact_form_main .item .detail .radio input:checked {
    background: #F89634;
    border: solid 3px #F89634;
}

.contact_form .contact_form_main .item .detail .radio input:checked:before {
    opacity: 1;
}

.contact_form .contact_form_main .item .detail .birth {
    display: flex;
    align-items: center;
    column-gap: 23px;
}

.contact_form .contact_form_main .item .detail .birth_item {
    position: relative;
    display: flex;
    align-items: flex-end;
    column-gap: 7px;
}

.contact_form .contact_form_main .item .detail .birth_item select {
    position: relative;
    width: 100%;
    padding: 11px 36px 11px 18px;
    font-size: 16px;
    border: 1px solid #0095D9;
    border-radius: 12px;
    background: rgba(245,252,255,0.27);
}

.contact_form .contact_form_main .item .detail .select_arrow {
    position: relative;
}

.contact_form .contact_form_main .item .detail .select_arrow:before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 7px 4px 0 4px;
    border-color: #B4B2B2 transparent transparent transparent;
    z-index: 1;
    pointer-events: none;
}

.contact_form .contact_form_main .item .detail .privacy_policy {
    width: 100%;
    margin-top: 18px;
    padding: 18px 18px;
    border: 1px solid #0095D9;
    border-radius: 12px;
}

.contact_form .contact_form_main .item .detail .privacy_policy .privacy_policy_inner {
    height: 140px;
    overflow: auto;
}

.contact_form .contact_form_main .item .detail .privacy_policy .title {
    font-size: 14px;
    font-weight: 700;
}

.contact_form .contact_form_main .item .detail .privacy_policy .privacy_policy_inner .title {
    margin-top: 14px;
    font-size: 12px;
    font-weight: normal;
}

.contact_form .contact_form_main .item .detail .privacy_policy .title .num {
    color: #0095D9;
    font-weight: 700;
}

.contact_form .contact_form_main .item .detail .privacy_policy p {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.66;
}

.contact_form .contact_form_main .form_list + .more {
    margin-top: 40px;
    margin-inline: auto;
}

.contact_form .contact_form_main .form_list + .more a {
    width: 300px;
    height: 54px;
    font-size: 24px;
}

.contact_form .contact_form_main .form_list + .more::before {
    width: 300px;
    height: 54px;
}

/*================================
Bread crumbs
================================*/
.bread_crumb {
    margin-top: 150px;
    border-top: 1px solid #D8D8D8;
}
.page_cta + .bread_crumb {
    margin-top: 0;
}
.bread_crumb_llst {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.bread_crumb_llst .item {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
}

.bread_crumb_llst .item:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 5px;
    height: 21px;
    background: url(../img/common/icon_slash@2x.webp) no-repeat center center;
    background-size: cover;
}

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

.bread_crumb_llst .item,
.bread_crumb_llst .item a {
    font-size: 14px;
    color: #3D3D3D;
}

.bread_crumb_llst .item:first-of-type a {
    color: #0095D9;
}

/*================================
Footer
================================*/
.footer {
    padding: 64px 0 40px 0;
    background: #FBFBFB;
}
.footer_upper .section_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_upper .pagetop a {
    display: flex;
    align-items: center;
    column-gap: 7px;
    color: #3D3D3D;
}
.footer_upper .pagetop a:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 11px solid #0095d9;
    border-top: 0;
}
.footer_sns {
    margin-top: 28px;
}
.footer_sns .section_inner {
    padding-block: 20px;
    border-top: 1px dotted #D8D8D8;
}
.footer_sns .footer_sns_list {
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.footer_sns .footer_sns_list .title {
    font-size: 15px;
    font-weight: 500;
}
.footer_sns .footer_sns_list .sns_list {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.footer_sns .footer_sns_list .sns_list a {
    width: 24px;
    height: 24px;
}
.footer_nav .section_inner {
    padding-block: 28px;
    border-top: 1px dotted #D8D8D8;
}
.footer_nav .fnav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px 0;
}
.footer_nav .fnav .item {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
.footer_nav .fnav .item > a {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #3D3D3D;
}
.footer_nav .fnav .fnav_sub {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}
.footer_nav .fnav .fnav_sub a {
    display: flex;
    align-items: center;
    column-gap: 7px;
    font-size: 14px;
    font-weight: 400;
}
.footer_nav .fnav .fnav_sub a:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(61,61,61,0.2);
}
.footer_lower .section_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 28px;
    border-top: 1px dotted #D8D8D8;
}
.footer_lower .footer_lower_nav_list {
    display: flex;
    align-items: center;
    column-gap: 24px;
}
.footer_lower .footer_lower_nav_list a {
    font-size: 14px;
    color: #6D6D6D;
    line-height: 1.7;
}
.footer_lower .copyright {
    font-size: 12px;
}


.side_sticky {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    bottom: 13px;
    right: 16px;
    z-index: 10;
    pointer-events: none;
}

.side_sticky .side_sns {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 16px;
    width: fit-content;
    pointer-events: all;
}

.side_sticky .side_sns img {
    width: 32px;
    height: 32px;
}

.side_sticky .side_btn {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-top: 21.19vh;
    pointer-events: all;
}

.side_sticky .side_btn a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    width: 192px;
    height: 52px;
    padding: 0 0 0 16px;
    border-radius: 40px 40px 0 40px;
    font-size: 16px;
    font-weight: 600;
}

.side_sticky .side_btn .search  {
    color: #FFF;
    background: #0095D9;
}

.side_sticky .side_btn .search svg {
    width: 24px;
    height: 24px;
}

.side_sticky .side_btn .consultation  {
    color: #FFF;
    background: #F89634;
}

.side_sticky .side_btn .consultation svg {
    width: 24px;
    height: 20px;
}

.side_sticky .side_btn .phone-call  {
    color: #0095D9;
    background: #FFF;
    border: 2px solid #0095D9;
}

.side_sticky .side_btn .phone-call svg {
    width: 24px;
    height: 27px;
}
/*インスタ埋め込み*/
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  gap: 5px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.insta-item {
  aspect-ratio: 1 / 1; /* 正方形に */
  overflow: hidden;
}
.insta-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.item.facebook iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 430px;
}

.project_box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 30px 0 0;
    margin: 0;
}
.project_box_01 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/home_service3.webp);
}
.project_box_02 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/home_service7.webp);
}
.project_box_03 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/home_service1.webp);
}
.project_box_04 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/home_service2.webp);
}
.project_box_05 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/home_service4.webp);
}
.project_box_06 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/resq.webp);
}
.project_box_07 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/service_vacant_house.webp);
}
.project_box_08 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/service_stfless.webp);
}
.project_box_09 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/home/service_insurance.webp);
}
.project_box li {
    border-radius: 10px;
    aspect-ratio: 5 / 2;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    overflow: hidden; /* 角丸からはみ出さないように */
    padding: 0; /* aタグを広げるため0にする */
    transition: 0.3s; /* ホバー時の動きを滑らかに */
    font-size: 1.2rem;
    line-height: 1.5;
}

/* aタグをカードいっぱいに広げる */
.project_box li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none; 
    color: #0070bb;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s;
    line-height: 1.5;
}

/* ホバー時の設定：少し白くする */
.project_box li:hover {
    /* 全体的に少し薄くして白背景を際立たせる */
    opacity: 0.8;
}

/* PC：3列（横3枚） */
@media (min-width: 768px) {
    .project_box li {
        width: calc((100% - 15px * 2) / 3);
    }
}

/* スマホ：2列（横2枚） */
@media (max-width: 767px) {
    .project_box li {
        width: calc((100% - 15px) / 2);
        font-size: 0.9rem;
        aspect-ratio: 2 / 1;
    }
}
.home_cons_ttl {
    margin-bottom: 50px;
}
.home_cons_box {
    padding: 0 50px;
}
.home_cons_ttl h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #3D3D3D;
}
.home_cons_ttl h2 .en {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Barlow", sans-serif;
    color: #0095D9;
}
.home_cons_box h2 {
    font-size: 24px;
    color: #0095D9;
}
.home_cons_txt {
    padding: 20px 30px;
}
@media (max-width: 767px) {

.home_cons_box {
    padding: 0;
}
.home_cons_txt {
    padding: 20px 10px 30px 20px;
}
}