@charset 'utf-8';

/* background */
.sjfh--bg03343C{
    background: #03343C;
}
.sjfh--bg02343C{
    background: #02343C;
}
.sjfh--bgF4F2F2{
    background: #F4F2F2;
}
.sjfh--bg268090{
    background: #268090;
}
.sjfh--bg1C606C{
    background: #1C606C;
}
.sjfh--bg278090{
    background: #278090;
}
.sjfh--bgF2F7F9{
    background: #F2F7F9;
    border: 1px solid #E6E6E6;
}


/* center */
.sjfh--center{
    text-align: center !important;
}

/* width */
.sjfh--w928{
    width: 928px;
    margin: auto;
}
.sjfh--w1056{
    width: 1056px;
    margin: auto;
}
.sjfh--w1064{
    width: 1064px;
    margin: auto;
}
.sjfh--w1096{
    width: 1096px;
    margin: auto;
}
.sjfh--w1200{
    width: 1200px;
    margin: auto;
}

/* color */
.sjfh--colorFFF{
    color: #fff !important;
}
.sjfh--colorB3DDEA{
    color: #B3DDEA !important;
}

/* padding */
.sjfh--pt32{
    padding-top: 32px;
}
.sjfh--pt40{
    padding-top: 40px;
}
.sjfh--pt56{
    padding-top: 56px;
}
.sjfh--pt64{
    padding-top: 64px;
}
.sjfh--pt72{
    padding-top: 72px;
}
.sjfh--pb32{
    padding-bottom: 32px;
}
.sjfh--pb72{
    padding-bottom: 72px;
}
.sjfh--pb80{
    padding-bottom: 80px;
}
.sjfh--pb140{
    padding-bottom: 140px;
}

/* margin */
.sjfh--mb16{
    margin-bottom: 16px !important;
}
.sjfh--mb32{
    margin-bottom: 32px !important;
}
.sjfh--mb40{
    margin-bottom: 40px !important;
}
.sjfh--mb72{
    margin-bottom: 72px !important;
}

/* title */
.sjfh--title{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
}
.sjfh--titleLine{
    background: #FF8100;
    color: #fff;
    padding: 48px 0;
    text-align: center;
}
.sjfh--titleLine span {
    position: relative;
}
.sjfh--titleLine span:before {
    content: '';
    background: url(../img/ttle1.svg) no-repeat;
    background-size: contain;
    width: 64px;
    height: 27px;
    display: block;
    position: absolute;
    top: 11px;
    left: -80px;
}
.sjfh--titleLine span:after {
    content: '';
    background: url(../img/ttle2.svg) no-repeat;
    background-size: contain;
    width: 64px;
    height: 27px;
    display: block;
    position: absolute;
    top: 11px;
    right: -80px;
}

/* flexbox */
.sjfh--flexbox{
    display: flex;
}

/* slick */
.slick-dots{
    display: flex;
    justify-content: center;
    gap: 16px;
    position: absolute;
    bottom: 32px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.slick-dots button{
    appearance: none;
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    background: #FF8100;
    border-radius: 50%;
    text-indent: -99999px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}
.slick-dots button:hover{
    opacity: 0.8;
}
.slick-dots .slick-active button{
    background: transparent;
    border: 1px solid #fff;
}
.slick-prev,
.slick-next{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    margin-top: -24px;
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: url(../img/ico_arrow4.svg)no-repeat center transparent;
    background-size: contain;
    z-index: 10;
    transition: 0.3s;
}
.slick-prev:hover,
.slick-next:hover{
    opacity: 0.8;
}
.slick-prev{
    left: -24px;
}
.slick-next{
    right: -24px;
    transform: rotate(180deg);
}

/* animation */
.sjfh--animationFadeIn{
    opacity: 0;
}
.sjfh--animationFadeIn.sjfh--show{
    animation: fadeIn 0.6s ease-in-out forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.sjfh--animationFadeInUp{
    opacity: 0;
    transform: translateY(20px);
}
.sjfh--animationFadeInUp.sjfh--show{
    animation: fadeInUp 0.6s ease-in-out forwards;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.sjfh--animationFadeInSlide{
    opacity: 0;
    transform: translateX(-20px);
}
.sjfh--animationFadeInSlide.sjfh--show{
    animation: fadeInSlide 0.6s ease-in-out forwards;
}
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =======================
    header 
========================== */
#sjfh--header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
#sjfh--header h2{
    position: absolute;
    top: 31px;
    left: 64px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
#sjfh--logo{
    position: fixed;
    top: 90px;
    left: 64px;
    transition: 0.3s;
    border-radius: 8px;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
}
#sjfh--logo.sjfh--fixed{
    top: 32px;
}
#sjfh--nav{
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    align-items: center;
    border-bottom-left-radius: 8px;
}
#sjfh--nav a{
    text-decoration: none;
    color: #111;
    transition: 0.3s;
    font-weight: 500;
    position: relative;
}
.sjfh--navList,
.sjfh--navItem:not(:last-of-type),
.sjfh--snsList,
.sjfh--snsItem:not(:last-of-type){
    margin-right: 32px;
}
.sjfh--navList{
    margin-left: 32px;
}
.sjfh--navItem a:before{
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -3px;
    left: 0;
    background: #111;
    transition: 0.3s;
}
.sjfh--navItem a:hover::before{
    width: 100%;
}
.sjfh--snsItem a:hover{
    opacity: 0.6;
}
#sjfh--btn a{
    background: #FF8100;
    color: #fff;
    line-height: 80px;
    padding: 0 32px;
    font-size: 16px;
    display: block;
    transition: 0.3s;
}
#sjfh--btn a:hover{
    background-color: #02343C;
}

/* =======================
    main 
========================== */
#sjfh--main{
    position: relative;
}
#sjfh--jfoLogo{
    position: absolute;
    top: 100px;
    right: 50%;
    margin-right: -560px;
    z-index: 2;
}
.sjfh--mainMovie{
    position: relative;
    /* aspect-ratio: 16/9; */
    aspect-ratio: 9/5;
    width: 100%;
    height: auto;
    max-height: 800px;
    overflow: hidden;
}
.sjfh--mainMovie iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}
.sjfh--mainMovie:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000000;
    opacity: 0.4;
    z-index: 1;
}
.sjfh--mainMovie img{
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
}
.sjfh--mainCopy{
    position: absolute;
    bottom: 96px;
    left: 50%;
    margin-left: -560px;
    z-index: 2;
    font-size: 44px;
    line-height: 1.5;
    font-weight: 500;
}
.sjfh--mainBtn{
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 2;
}
.sjfh--mainBtn a{
    display: block;
    background: url(../img/ico_arrow1.svg)no-repeat center right 17px #FF8100;
    background-size: 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    padding: 12px 43px 14px 16px;
    transition: 0.3s;
    line-height: 1.4;
}
.sjfh--mainBtn a:hover{
    background-position: center right 14px;
    background-color: #02343C;
}

/* =======================
    こんなお悩みありませんか？ 
========================== */
.sjfh--troubleItem{
    padding: 20px 20px 69px;
    position: relative;
    box-sizing: border-box;
}
.sjfh--troubleItem:not(:last-of-type){
    margin-right: 24px;
}
.sjfh--troubleItem p{
    font-size: 16px;
    font-weight: 500;
    color: #B4DDEA;
    line-height: 1.8;
}
.sjfh--troubleIcon{
    position: absolute;
    bottom: 0;
    right: 12px;
}
.sjfh--troubleItem:nth-of-type(1){
    width: 364px;
    background: url(../img/trouble_bubble1.svg)no-repeat top center;
    background-size: 100% auto;
}
.sjfh--troubleItem:nth-of-type(2){
    width: 321px;
    background: url(../img/trouble_bubble2.svg)no-repeat top center;
    background-size: 100% auto;
}
.sjfh--troubleItem:nth-of-type(3){
    width: 363px;
    background: url(../img/trouble_bubble3.svg)no-repeat top center;
    background-size: 100% auto;
}

/* =======================
    CICが叶えます！ 
========================== */
.sjfh--meritList{
    gap: 24px;
}
.sjfh--meritItem{
    width: calc((100% - 48px) / 3);
    padding: 32px;
    box-sizing: border-box;
    background: #1D606C;
    border-radius: 8px;
    justify-content: space-between;
    text-align: center;
}
.sjfh--meritText{
    margin-top: 20px;
}
.sjfh--meritText h5{
    font-size: 24px;
    font-weight: 700;
    color: #FF8100;
    margin-bottom: 16px;
    line-height: 1.1;
}
.sjfh--meritText h5 span{
    font-size: 18px;
}
.sjfh--meritText p{
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #B4DDEA;
    font-weight: 500;
}

/* =======================
    ニュース 
========================== */
.sjfh--newsList{
    gap: 36px;
}
.sjfh--newsItem{
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.sjfh--newsItem:before{
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 24px;
    right: 24px;
    border-radius: 50%;
    background: url(../img/ico_arrow2.svg)no-repeat center #1C606C;
    background-size: 9px auto;
    transition: 0.3s;
}
.sjfh--newsItem img{
    border-radius: 8px 8px 0 0;
    width: 376px;
    height: 248px;
    object-fit: cover;
}
.sjfh--newsText{
    border-radius: 0 0 8px 8px;
    padding: 20px 32px 64px;
    box-sizing: border-box;
    transition: 0.3s;
}
.sjfh--newsDate{
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 16px;
    color: #1C606C;
    padding-left: 26px;
    background: url(../img/ico_time.svg)no-repeat center left;
    background-size: contain;
    margin-bottom: 8px;
}
.sjfh--newsTitle{
    font-size: 20px;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 64px;
    max-height: 64px;
}
.sjfh--newsItem:hover::before{
    right: 20px;
}
.sjfh--newsItem:hover .sjfh--newsText{
    background-color: #f5f2f2;
}

/* =======================
    JUST FIT OFFICE 
========================== */
.just_fit_office{
    border-radius: 8px;
    overflow: hidden;
    background: #1C606C;
    align-items: center;
}
.just_fit_office > p{
    background: #fff;
    padding: 87px 80px;
    text-align: center;
}
.just_fit_office > dl{
    width: calc(100% - 464px);
    padding: 0 48px;
    box-sizing: border-box;
}
.just_fit_office > dl dt{
    font-size: 24px;
    margin-bottom: 17px;
    font-weight: 700;
}
.just_fit_office > dl dd{
    font-size: 18px;
    line-height: 2;
}
.just_fit_office > dl dd + dt{
    margin-top: 56px;
    padding-top: 60px;
    border-top: 1px solid #fff;
}

/* =======================
    イノベーションを支えるさまざまなワークスペース
========================== */
.sjfh--facilityItem{
    width: 50%;
}
.sjfh--facilitySlides img{
    width: 100%;
    height: auto;
}
.sjfh--facilityText h4{
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
.sjfh--facilityText h4:before{
    content: "";
    width: 48px;
    height: 34px;
    background: url(../img/ico_quote.svg)no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -72px;
    transform: translateY(-50%);
}
.sjfh--facilityText p{
    font-size: 16px;
    line-height: 2;
}
.sjfh--facilityWrapper{
    position: relative;
}
.sjfh--facilityBtn{
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
}
.sjfh--facilityBtn a{
    font-size: 16px;
    font-weight: 700;
    padding: 14px 60px 18px;
    color: #fff;
    border-radius: 50px;
    background: url(../img/ico_arrow3.svg)no-repeat center left 40px #FF8100;
    background-size: 8px auto;
    text-decoration: none;
    display: block;
    z-index: 1;
    transition: 0.3s;
}
.sjfh--facilityBtn a:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 4px;
    left: 4px;
    background: #144952;
    border-radius: 50px;
    z-index: -1;
}
.sjfh--facilityBtn a:hover{
    background-color: #02343C;
    background-position: center left 42px;
}

/* =======================
    CICはオールインクルーシブ
========================== */
.sjfh--allinclusiveSlides img{
    border-radius: 8px;
}
.sjfh--allinclusiveThumbs{
    margin-left: -17px;
}
.sjfh--allinclusiveThumbs:before{
    content: "";
    width: 17px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #F4F2F2;
    z-index: 10;
}
.sjfh--allinclusiveThumbs img{
    border-radius: 8px;
}
.sjfh--allinclusiveThumbs .slick-track {
    display: flex;
    gap: 17px;
}
.sjfh--allinclusiveThumbs li{
    position: relative;
    width: 172px !important;
    cursor: pointer;
}
.sjfh--allinclusiveThumbs li:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
}
.sjfh--allinclusiveThumbs li.slick-current:before{
    opacity: 0;
}
.sjfh--equipmentList{
    flex-wrap: wrap;
    gap: 17px;
}
.sjfh--equipmentItem{
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    align-items: center;
}
.sjfh--equipmentItem img{
    display: block;
    padding: 16px;
    background: #176270;
}
.sjfh--equipmentItem p{
    color: #176270;
    font-size: 15px;
    min-width: 179px;
    box-sizing: border-box;
    text-align: center;
    padding: 0 16px;
}
.sjfh--equipmentItem p span{
    font-size: 13px;
}
.sjfh--equipmentItem:nth-of-type(-n+3) img{
    width: 56px;
    height: 56px;
}
.sjfh--equipmentItem:nth-of-type(-n+3) p{
    font-size: 20px;
    min-width: 210px;
}
.sjfh--equipmentItem:nth-of-type(-n+3) p span{
    font-size: 16px;
}

/* =======================
    イベントで繋がる、入居者と繋がる。
========================== */
.sjfh--userTitle{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
}
.sjfh--userImg{
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.sjfh--userImg img{
    object-fit: cover;
}
.sjfh--userText{
    align-items: center;
    overflow: hidden;
}
.sjfh--userText > div{
    width: 50%;
    padding: 32px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
}

/* =======================
    入居者の声 
========================== */
.sjfh--voiceSlidesItem{
    padding: 16px 20px;
    background: #fff;
    border-radius: 8px;
    gap: 16px;
    box-sizing: border-box;
    width: 342px !important;
    display: flex !important;
    margin: 0 12px;
}
.sjfh--voiceSlidesItem p{
    font-size: 16px;
    line-height: 1.6;
}
.sjfh--voiceList{
    position: relative;
    z-index: 1;
}
.sjfh--voiceItem{
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    gap: 32px;
    position: relative;
}
.sjfh--voiceItem:not(:last-of-type){
    margin-bottom: 32px;
}
.sjfh--voiceItem:before{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 8px 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/voice_triangle.svg)no-repeat center;
    background-size: contain;
}
.sjfh--voiceItem::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 8px;
    background: #1C606C;
    z-index: -1;
}
.sjfh--voiceItemText h4{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 20px;
}
.sjfh--voiceItemText p{
    font-size: 16px;
    line-height: 2;
}
.sjfh--voiceItemImg p{
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    margin-top: 23px;
}
.sjfh--voiceItemImg p span{
    font-size: 12px;
}

/* =======================
    プラン 
========================== */
.sjfh--planList{
    gap: 36px;
}
.sjfh--planItem{
    padding: 32px 32px 40px;
    border-radius: 8px;
}
.sjfh--planText{
    margin-top: 40px;
}
.sjfh--planName{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.sjfh--planDesc{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}
.sjfh--planPrice{
    font-size: 18px;
    font-weight: 700;
}

/* =======================
    入居時の流れ 
========================== */
.sjfh--flowList{
    gap: 25px;
    counter-reset: my-counter;
}
.sjfh--flowItem{
    padding: 84px 0;
    border-radius: 8px;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    counter-increment: my-counter;
    position: relative;
}
.sjfh--flowItem:after{
    content: counter(my-counter, decimal-leading-zero);
    position: absolute;
    top: -16px;
    left: -16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: 56px;
    line-height: 56px;
    text-align: center;
    background: #1C606C;
    color: #fff;
    border-radius: 50%;
}
.sjfh--flowItem:not(:last-of-type)::before{
    content: "";
    width: 24px;
    height: 20px;
    background: url(../img/ico_arrow5.svg)no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
}
.sjfh--flowItem p{
    font-size: 16px;
    line-height: 1.7;
    width: 100%;
}

/* =======================
    FAQ 
========================== */
.sjfh--faqList{
    background-image: repeating-linear-gradient(
        to right,
        #fff 0,
        #fff 2px, 
        transparent 2px,
        transparent 6px
    );
    background-position: bottom;
    background-size: auto 1px;
    background-repeat: repeat-x;
}
.sjfh--faqList dt{
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 63px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}
.sjfh--faqList dt:before{
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../img/ico_plus.svg)no-repeat center right;
    background-color: #FF8100;
    background-size: contain;
    border-radius: 50%;
    transition: 0.3s;
}
.sjfh--faqList dt:hover{
    color: #B4DDEA;
}
.sjfh--faqList dt:hover::before{
    background-color: #03343C !important;
}
.sjfh--faqList dt.sjfh--active::before{
    background-image: url(../img/ico_minus.svg);
    background-color: #FF8100;
}
.sjfh--faqList dd + dt{
    background-image: repeating-linear-gradient(
        to right,
        #fff 0,
        #fff 2px, 
        transparent 2px,
        transparent 6px
    );
    background-position: top;
    background-size: auto 1px;
    background-repeat: repeat-x;
}
.sjfh--faqList dd{
    padding-bottom: 40px;
    padding-right: 63px;
    font-size: 16px;
    line-height: 2em;
    display: none;
}

/* =======================
    アクセス 
========================== */
.sjfh--accessBtn{
    position: relative;
    z-index: 1;
}
.sjfh--accessBtn a{
    font-size: 16px;
    position: relative;
    font-weight: 700;
    padding: 22px 87px 25px 93px;
    color: #fff;
    border-radius: 50px;
    background: url(../img/ico_arrow2.svg)no-repeat center left 48px #FF8100;
    background-size: 20px auto;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
.sjfh--accessBtn a:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 4px;
    left: 4px;
    background: #154952;
    border-radius: 50px;
    z-index: -1;
}
.sjfh--accessBtn a:hover{
    background-color: #1C606C;
    background-position: center left 52px;
}
.sjfh--accessWrapper h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #B4DDEA;
}
.sjfh--accessWrapper p{
    font-size: 16px;
    margin-bottom: 32px;
}
.sjfh--accessWrapper p a{
    color: #FF8100;
    transition: 0.3s;
}
.sjfh--accessWrapper p a:hover{
    color: #1C606C;
}
.sjfh--accessWrapper dl{
    flex-wrap: wrap;
    font-size: 16px;
    border: 1px solid #1C606C;
    border-radius: 8px;
    overflow: hidden;
}
.sjfh--accessWrapper dl > div{
    border-bottom: 1px solid #1C606C;
    align-items: center;
    position: relative;
}
.sjfh--accessWrapper dl > div:last-of-type{
    border-bottom: none;
}
.sjfh--accessWrapper dl > div:before{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 336px;
    background-image: repeating-linear-gradient(to bottom, #1C606C 0, #1C606C 2px, transparent 2px, transparent 6px);
    background-position: top right;
    background-size: 1px auto;
    background-repeat: repeat-y;
}
.sjfh--accessWrapper dt,
.sjfh--accessWrapper dd{
    padding: 20px 32px;
    box-sizing: border-box;
}
.sjfh--accessWrapper dt{
    width: 336px;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}
.sjfh--accessWrapper dd{
    width: calc(100% - 336px);
}
.sjfh--accessWrapper .sjfh--full{
    transform: translateY(-1px);
}
.sjfh--accessWrapper .sjfh--full:before{
    display: none;
}
.sjfh--accessWrapper .sjfh--full dt{
    width: 100%;
    background: #1C606C;
}

/* =======================
    footer 
========================== */
.sjfh--footer{
    text-align: center;
}
.sjfh--footer ul{
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}
.sjfh--footer a{
    font-size: 16px;
    color: #FF8100;
    transition: 0.3s;
}
.sjfh--footer a:hover{
    color: #1C606C;
}
.sjfh--footer p{
    font-size: 13px;
}
.sjfh--notes{
    padding-top: 40px;
    margin-top: 64px;
    border-top: 1px solid #1C606C;
    font-size: 14px;
    text-align: right;
    line-height: 1.4;
}
.sjfh--notes a{
    color: #fff;
    transition: 0.3s;
}
.sjfh--notes a:hover{
    color: #1C606C;
}


@media screen and (min-width: 737px) {
    .sjfh--sp{
        display: none !important;
    }
	
}

@media screen and (max-width: 736px) {
    .sjfh--pc{
        display: none !important;
    }
    .sjfh img{
        max-width: 100%;
        height: auto;
    }

    /* width */
    .sjfh--w928,
    .sjfh--w1056,
    .sjfh--w1064,
    .sjfh--w1096,
    .sjfh--w1200{
        width: 100%;
        margin: auto;
    }
    
    /* padding */
    .sjfh--spPadding{
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }
    .sjfh--pt56{
        padding-top: 48px;
    }
    .sjfh--pt64{
        padding-top: 48px;
    }
    .sjfh--pt72{
        padding-top: 48px;
    }
    /* .sjfh--pb32{
        padding-bottom: 32px;
    } */
    .sjfh--pb72{
        padding-bottom: 48px;
    }
    .sjfh--pb80{
        padding-bottom: 48px;
    }
    .sjfh--pb140{
        padding-bottom: 48px;
    }
    
    /* margin */
    /* .sjfh--mb16{
        margin-bottom: 16px !important;
    } */
    .sjfh--mb32{
        margin-bottom: 24px !important;
    }
    /* .sjfh--mb40{
        margin-bottom: 40px !important;
    } */
    .sjfh--mb72{
        margin-bottom: 48px !important;
    }

    /* title */
    .sjfh--title{
        font-size: 18px;
        line-height: 1.4;
    }
    .sjfh--titleLine{
        padding: 20px 0;
    }
    .sjfh--titleLine span:before {
        content: '';
        background: url(../img/ttle1.svg) no-repeat;
        background-size: contain;
        width: 32px;
        height: 13.5px;
        display: block;
        position: absolute;
        top: 10px;
        left: -42px;
    }
    .sjfh--titleLine span:after {
        content: '';
        background: url(../img/ttle2.svg) no-repeat;
        background-size: contain;
        width: 32px;
        height: 13.5px;
        display: block;
        position: absolute;
        top: 10px;
        right: -42px;
    }

    /* slick */
    .slick-dots{
        gap: 8px;
        bottom: 16px;
    }
    .slick-dots button{
        width: 10px;
        height: 10px;
    }
    .slick-prev,
    .slick-next{
        margin-top: -16px;
        width: 32px;
        height: 32px;
    }
    .slick-prev{
        left: -16px;
    }
    .slick-next{
        right: -16px;
    }

    /* =======================
        header 
    ========================== */
    #sjfh--header{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 999;
    }
    #sjfh--header h2{
        top: 16px;
        left: 20px;
        font-size: 10px;
    }
    #sjfh--logo{
        position: fixed;
        width: 80px;
        top: 40px;
        left: 20px;
    }
    #sjfh--logo.sjfh--fixed{
        width: 64px;
        top: 16px;
    }
    .sjfh--menuBtn{
        position: fixed;
        top: 0;
        right: 0;
        background: #fff;
        border-bottom-left-radius: 8px;
        transition: 0.3s;
        width: 64px;
        height: 64px;
        z-index: 99;
    }
    .sjfh--menuBtn span {
        position: absolute;
        left: 20px;
        width: 24px;
        height: 2px;
        background-color: #FF8100;
        border-radius: 2px;
        transition: 0.3s;
    }
    .sjfh--menuBtn span:nth-child(1) {
        top: 24px;
    }
    .sjfh--menuBtn span:nth-child(2) {
        top: 31px;
    }
    .sjfh--menuBtn span:nth-child(3) {
        bottom: 24px;
    }
    .sjfh--menuBtn.sjfh--active{
        background: #FF8100;
    }
    .sjfh--menuBtn.sjfh--active span{
        background: #fff;
    }
    .sjfh--menuBtn.sjfh--active span:nth-child(1) {
        transform: rotate(45deg);
        top: 31px;
    }
    .sjfh--menuBtn.sjfh--active span:nth-child(2) {
        opacity: 0
    }
    .sjfh--menuBtn.sjfh--active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 31px;
    }
    #sjfh--nav{
        display: none;
        width: 100%;
        height: 100dvh;
        background: rgba(255,255,255,0.95);
        border-bottom-left-radius: 0;
        padding: 120px 24px 0;
        box-sizing: border-box;
    }
    #sjfh--nav a{
        color: #03343C;
        font-size: 15px;
    }
    .sjfh--navList,
    .sjfh--navItem:not(:last-of-type),
    .sjfh--snsList,
    .sjfh--snsItem:not(:last-of-type){
        margin-right: 0;
    }
    .sjfh--navList{
        margin-left: 0;
        flex-wrap: wrap;
        border-radius: 8px;
        border: 1px solid #176270;
        margin-bottom: 24px;
    }
    .sjfh--navItem{
        width: 50%;
        box-sizing: border-box;
        text-align: center;
        border-bottom: 1px solid #176270;
    }
    .sjfh--navItem:nth-of-type(2n-1){
        border-right: 1px solid #176270;
    }
    /* .sjfh--navItem:nth-last-of-type(-n+2){ */
    .sjfh--navItem:nth-last-of-type(-n+1){
        border-bottom: none;
    }
    .sjfh--navItem a{
        padding: 20px 0;
        display: block;
    }
    .sjfh--navItem a:before{
        display: none;
    }
    .sjfh--snsList{
        margin-bottom: 32px;
        justify-content: center;
        display: flex;
    }
    #sjfh--btn{
        position: relative;
        z-index: 1;
        text-align: center;
    }
    #sjfh--btn a{
        line-height: 1.5;
        font-size: 16px;
        position: relative;
        font-weight: 700;
        padding: 22px 87px 25px 93px;
        color: #fff;
        border-radius: 50px;
        background: url(../img/ico_arrow2.svg)no-repeat center left 48px #FF8100;
        background-size: 20px auto;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s;
    }
    #sjfh--btn a:after{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 4px;
        left: 4px;
        background: #154952;
        border-radius: 50px;
        z-index: -1;
    }

    /* =======================
        main 
    ========================== */
    #sjfh--jfoLogo{
        top: 80px;
        right: 20px;
        margin-right: 0;
        width: 120px;
        height: auto;
    }
    .sjfh--mainMovie{
        aspect-ratio: 3/4;
    }
    .sjfh--mainMovie iframe{
        width: auto;
        height: 100%;
    }
    .sjfh--mainMovie img{
        aspect-ratio: 3/4;
    }
    .sjfh--mainCopy{
        bottom: 32px;
        left: 20px;
        margin-left: 0;
        font-size: 24px;
    }
    .sjfh--mainBtn{
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        position: fixed;
        opacity: 1;
        width: 84%;
        text-align: center;
    }
    .sjfh--mainBtn a{
        font-size: 16px;
        white-space: nowrap;
        padding: 12px 16px 14px 16px;
    }

    /* =======================
        こんなお悩みありませんか？ 
    ========================== */
    .sjfh--troubleList{
        flex-wrap: wrap;
        gap: 8px;
    }
    .sjfh--troubleItem{
        padding: 20px 20px 58px;
        max-width: 327px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .sjfh--troubleItem p{
        font-size: 13px;
        line-height: 1.8;
    }
    .sjfh--troubleIcon{
        right: -12px;
    }
    .sjfh--troubleItem:nth-of-type(1),
    .sjfh--troubleItem:nth-of-type(2),
    .sjfh--troubleItem:nth-of-type(3){
        width: 100%;
        background: url(../img/trouble_bubble3.svg)no-repeat top center;
        background-size: 100% auto;
    }

    /* =======================
        CICが叶えます！ 
    ========================== */
    .sjfh--meritList{
        gap: 12px;
        flex-wrap: wrap;
    }
    .sjfh--meritItem{
        width: 100%;
        padding: 20px;
        position: relative;
    }
    .sjfh--meritText{
        margin-top: 12px;
    }
    .sjfh--meritText h5{
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 24px;
        text-align: left;
        padding-left: 95px;
    }
    .sjfh--meritText h5 span{
        font-size: 16px;
    }
    .sjfh--meritText p{
        font-size: 13px;
        line-height: 1.6;
    }
    .sjfh--meritItem > p{
        width: 76px;
        position: absolute;
        top: 20px;
        left: 20px;
    }

    /* =======================
        ニュース 
    ========================== */
    .sjfh--newsList{
        display: block;
    }
    .sjfh--newsItem{
        display: flex;
        align-items: center;
        background: #F2F7F9;
        border: 1px solid #E6E6E6;
        border-radius: 8px;
        padding: 12px 8px;
    }
    .sjfh--newsItem:not(:last-of-type){
        margin-bottom: 12px;
    }
    .sjfh--newsItem:before{
        width: 28px;
        height: 28px;
        bottom: 50%;
        transform: translateY(50%);
        right: 8px;
    }
    .sjfh--newsItem img{
        border-radius: 8px;
        aspect-ratio: 376/248;
        width: 30%;
        height: auto;
    }
    .sjfh--newsText{
        border-radius: 0 8px 8px 0;
        padding: 0 36px 0 8px;
        width: 70%;
        border: none;
    }
    .sjfh--newsDate{
        font-size: 10px;
        line-height: 12px;
        padding-left: 20px;
        margin-bottom: 6px;
    }
    .sjfh--newsTitle{
        font-size: 13px;
        height: 42px;
        max-height: 42px;
    }
    
    /* =======================
        JUST FIT OFFICE 
    ========================== */
    .just_fit_office{
        flex-wrap: wrap;
    }
    .just_fit_office > p{
        width: 100%;
        padding: 32px 48px;
    }
    .just_fit_office > dl{
        width: 100%;
        padding: 32px 20px;
    }
    .just_fit_office > dl dt{
        font-size: 20px;
        margin-bottom: 12px;
    }
    .just_fit_office > dl dd{
        font-size: 13px;
        line-height: 1.6;
    }
    .just_fit_office > dl dd + dt{
        margin-top: 32px;
        padding-top: 32px;
    }

    /* =======================
        イノベーションを支えるさまざまなワークスペース
    ========================== */
    .sjfh--facilityWrapper{
        padding-bottom: 48px;
    }
    .sjfh--facilityList{
        flex-wrap: wrap;
    }
    .sjfh--facilityItem{
        width: 100%;
    }
    .sjfh--facilityText h4{
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    .sjfh--facilityText h4:before{
        width: 32px;
        top: 2px;
        left: -48px;
        transform: unset;
    }
    .sjfh--facilityText p{
        font-size: 13px;
        line-height: 1.6;
    }
    .sjfh--facilityBtn{
        position: relative;
        bottom: unset;
        left: unset;
        transform: unset;
        width: 280px;
        margin: auto;
        margin-top: 20px;
        z-index: 1;
    }
    .sjfh--facilityBtn a{
        font-size: 16px;
        font-weight: 700;
        padding: 14px 60px 18px;
        color: #fff;
        border-radius: 50px;
        background: url(../img/ico_arrow3.svg)no-repeat center left 40px #FF8100;
        background-size: 8px auto;
        text-decoration: none;
        display: block;
        z-index: 1;
        transition: 0.3s;
    }
    .sjfh--facilityBtn a:after{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 4px;
        left: 4px;
        background: #144952;
        border-radius: 50px;
        z-index: -1;
    }

    /* =======================
        CICはオールインクルーシブ
    ========================== */
    .sjfh--allinclusiveThumbs{
        margin-left: -4px;
        margin-right: -24px;
    }
    .sjfh--allinclusiveThumbs:before{
        width: 4px;
    }
    .sjfh--allinclusiveThumbs:after{
        content: "";
        width: 24px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: #F4F2F2;
        z-index: 10;
    }
    .sjfh--allinclusiveThumbs li:before,
    .sjfh--allinclusiveThumbs img{
        border-radius: 4px;
    }
    .sjfh--allinclusiveThumbs .slick-track {
        gap: 8px;
    }
    .sjfh--equipmentList{
        gap: 8px;
        align-items: center;
    }
    .sjfh--equipmentItem{
        width: calc(50% - 4px);
        border-radius: 4px;
    }
    .sjfh--equipmentItem img{
        padding: 10px;
        width: 24px;
    }
    .sjfh--equipmentItem p{
        font-size: 12px;
        min-width: unset;
        padding: 0 2px;
        line-height: 1.2;
        width: 100%;
        box-sizing: border-box;
    }
    .sjfh--equipmentItem p span{
        font-size: 10px;
    }
    .sjfh--equipmentItem:nth-of-type(-n+4) img{
        width: 40px;
        height: 40px;
    }
    .sjfh--equipmentItem:nth-of-type(-n+4) p{
        font-size: 13px;
        min-width: unset;
    }
    .sjfh--equipmentItem:nth-of-type(-n+4) p span{
        font-size: 11px;
    }
    .sjfh--equipmentSmall p{
        font-size: 10px;
    }

    /* =======================
        イベントで繋がる、入居者と繋がる。
    ========================== */
    .sjfh--userTitle{
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .sjfh--userText{
        flex-wrap: wrap;
    }
    .sjfh--userText > div{
        width: 100%;
        padding: 20px;
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* =======================
        入居者の声 
    ========================== */
    .sjfh--voiceSlides{
        margin: 0 -24px;
    }
    .sjfh--voiceSlidesItem{
        padding: 12px;
        gap: 8px;
        width: 240px !important;
        margin: 0 8px;
    }
    .sjfh--voiceSlidesItem img{
        width: 64px;
        height: 64px;
    }
    .sjfh--voiceSlidesItem p{
        font-size: 12px;
        line-height: 1.4;
    }
    .sjfh--voiceItem{
        padding: 24px;
        gap: 20px;
        flex-wrap: wrap;
    }
    .sjfh--voiceItem:before{
        width: 32px;
        height: 32px;
    }
    .sjfh--voiceItemText h4{
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    .sjfh--voiceItemText p{
        font-size: 13px;
        line-height: 1.8;
    }
    .sjfh--voiceItemImg p{
        font-size: 12px;
        line-height: 1.6;
        margin-top: 10px;
    }
    .sjfh--voiceItemImg p span{
        font-size: 10px;
    }

    /* =======================
        プラン 
    ========================== */
    .sjfh--planList{
        gap: 12px;
        flex-wrap: wrap;
    }
    .sjfh--planItem{
        width: 100%;
        padding: 12px 12px 12px 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
    }
    .sjfh--planItem img{
        width: 45%;
    }
    .sjfh--planText{
        width: 55%;
        margin-top: 0;
    }
    .sjfh--planName{
        font-size: 15px;
        white-space: nowrap;
    }
    .sjfh--planDesc{
        font-size: 12px;
        text-align: left;
    }
    .sjfh--planPrice{
        font-size: 13px;
    }

    /* =======================
        入居時の流れ 
    ========================== */
    .sjfh--flowList{
        gap: 5%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .sjfh--flowItem{
        width: 30%;
        padding: 40px 0;
        flex: unset;
        align-items: center;
        box-sizing: border-box;
    }
    .sjfh--flowItem:after{
        top: -12px;
        left: -12px;
        font-size: 13px;
        width: 48px;
        line-height: 48px;
    }
    .sjfh--flowItem:not(:last-of-type)::before{
        width: 16px;
        height: 12px;
        right: -13px;
    }
    .sjfh--flowItem:nth-last-of-type(-n+2){
        margin-top: 5%;
    }
    .sjfh--flowItem p{
        font-size: 13px;
    }
    .sjfh--flowItem p span{
        line-height: 1.2;
        display: inline-block;
    }

    /* =======================
        FAQ 
    ========================== */
    .sjfh--faqList dt{
        padding-right: 52px;
        font-size: 16px;
    }
    .sjfh--faqList dt:before{
        width: 32px;
        height: 32px;
    }
    .sjfh--faqList dd{
        padding-bottom: 24px;
        padding-right: 0;
        font-size: 13px;
        line-height: 1.6em;
    }

    /* =======================
        アクセス 
    ========================== */
    .sjfh--accessBtn a{
        padding: 22px 0 25px 12px;
        white-space: nowrap;
        width: 100%;
        max-width: 325px;
    }
    .sjfh--accessWrapper h3{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .sjfh--accessWrapper p{
        font-size: 13px;
        line-height: 1.7em;
        margin-bottom: 24px;
    }
    .sjfh--accessWrapper dl{
        font-size: 13px;
    }
    .sjfh--accessWrapper dl > div:before{
        left: 136px;
    }
    .sjfh--accessWrapper dt,
    .sjfh--accessWrapper dd{
        line-height: 1.6;
    }
    .sjfh--accessWrapper dt{
        width: 136px;
        padding: 12px 8px;
    }
    .sjfh--accessWrapper dd{
        padding: 12px;
        width: calc(100% - 136px);
    }
    
    /* =======================
        footer 
    ========================== */
    .sjfh--footer{
        flex-wrap: wrap;
        align-items: unset;
        justify-content: unset;
    }
    .sjfh--footer ul{
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .sjfh--footer a{
        font-size: 13px;
    }
    .sjfh--footer p{
        font-size: 10px;
        width: 100%;
        margin-top: 40px;
        text-align: center;
    }
    .sjfh--notes{
        margin-top: 48px;
        padding-bottom: 48px;
        font-size: 12px;
        text-align: left;
    }

}


/* ========================================================= */


/* =======================
    お問い合わせページ用 
========================== */
.sjfh--formHeader{
    padding: 32px 64px 0;
    display: inline-block;
}
.sjfh--formLogo{
    border-radius: 8px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.sjfh--formWrapper{
    max-width: 1350px;
    padding: 80px 40px;
    margin: auto;
}
.sjfh--formWrapperTitle{
    font-size: 35px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}
.sjfh--formFooter{
    background: #0D2126;
    padding: 80px 64px;
}
@media screen and (max-width: 736px) {
    .sjfh--formHeader{
        width: 64px;
        padding: 16px 20px 0;
    }
    .sjfh--formWrapper{
        padding: 48px 30px 64px;
    }
    .sjfh--formWrapperTitle{
        font-size: 25px;
    }
    .sjfh--formFooter{
        padding: 50px 30px;
    }
}

















