body {
    font-family: 'Noto Sans JP', sans-serif;
}
main {
    max-width: 128rem;
    width: 100%;
}

section {
    position: relative;
}

a.under_link  {
    color: #323232;
    padding-bottom: 0.3rem;
    background-image:linear-gradient(#0A435F, #0A435F);
    background-repeat: no-repeat;
    background-position: bottom left; /* 下線の初期位置 */
    background-size: 100% 0.1rem;
    transition: background-size 0.3s;
}

a.under_link:hover {
  background-position: bottom right; /* 下線のホバー時位置 */
  background-size: 0% 0.1rem; /* 下線の横幅を100%にする */
}
.section_border {
    width: 124rem;
    margin: 0 auto;
    height: 0.2rem;
    background-image: linear-gradient(90deg, #f9bdc5, #468daf);
}

.link_icon {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    border-top: 2px solid #0A435F;
    border-right: 2px solid #0A435F;
    transform: rotate(45deg);
    margin-left: 1rem;
}

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}
.fadein-up{
    transform: translate(0,-30px);
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.flex-container {
    display: flex;
}

.sp_br {
    display: none;
}

.section_title h2{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

.section_title  p {
    font-family: "Cormorant Infant", serif;
    font-weight: 600;
    line-height: 1.25;
}

.keyvisual {
    position: relative;
    height: 65rem;
    margin-bottom: 19rem;
}
.keyvisual_slider {
    display: flex;
    position: absolute;
    width: 108.3rem;
    height: 65rem;
    overflow: hidden;
    right: 2rem;
}

.keyvisual_slider .slider_item {
    width: 108.3rem;
    height: 65rem;
    position: absolute;
    right: 0;
    inset: 0;
    opacity: 0;
}

@keyframes keyvisual {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}


.keyvisual_slider .current {
    opacity: 1;
    animation: keyvisual 4s forwards;
}

.keyvisual .dots {
    position: absolute;
    display: flex;
    gap: 0.6rem;
    right: 2rem;
    bottom: -3.8rem;
}

.dot {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #EFEFEF;
}

.dot.current {
    background-color: #FFB4E6;
}

.keyvisual .slogan {
    position: absolute;
    top: 15rem;
    right: 5.2rem;
    color: #fff;
    font-family: 'Noto Serif JP';
    font-size: 5.4rem;
    writing-mode: vertical-rl;
    line-height: 1.45;
    text-indent: -1.3em;
    padding-left: 1.8em;
    letter-spacing: 1.35rem;
}

.keyvisual_flower01  {
    position: absolute;
    bottom: 0.5rem;
    width: 33.2rem;
    height: 33.2rem;
}

.keyvisual_flower02 {
    position: absolute;
    left: -5rem;
    bottom: 0.5rem;
    width: 27rem;
    height: auto;
    transform: scale(-1, 1);
} 

.pickup {
    overflow: hidden;
    position: absolute;
    width: 97rem;
    color: #fff;
    background-color: #0A435F;
    bottom: -6em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 3rem 6.5rem 3rem 9.5rem;
}

.pickup .section_title {
    color: #fff;
    font-size: 2rem;
    margin-right: 5rem;
}
.pickup .section_title  h2{
    font-size: 2rem;
}
.pickup p {
    font-size: 2rem;
}
.pickup_list {
    overflow: hidden;
}
.pickup_item {
    flex-wrap: wrap;
    align-items: center;
    gap: 3.4rem;
    width: auto;
    display: none;
    animation: pickup 5s forwards;
}

@keyframes pickup {
    90% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-10rem);
        opacity: 0;
    }
}

.pickup_item.current {
    display: flex;
}

.pickup_day {
    text-align: center;
    width: 5rem;
    color: #fff;
    letter-spacing: 0.1rem;
    }

.pickup_year {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.pickup_date {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.25;
}

.pickup_progress {
    width: 5rem;
    height: 0.1rem;
    background-color: #fff;
}

.pickup_progress span {
    display: block;
    height: 100%;
    background-color: #FFB4E6;
}

.pickup_item.current .pickup_progress span {
    animation: progress 4s linear forwards;
}

@keyframes progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


.pickup_tag a {
    color: #0A435F;
    background-color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    padding: 0 1rem;
}
.pickup_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pickup_title a {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
}

.pickup_btns {
    width: 2rem;
    margin-left: auto;
    justify-content: center;
}

.pickup_back {
    height: 2rem;
    width: 2rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    cursor: pointer;
}

.pickup_next {
    width: 2rem;
    height: 2rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    cursor: pointer;
}

.pickup_line {
    display: block;
    margin-left: -0.7rem;
    width: 3.5rem;
    height: 2px;
    background-color: #5bb0d0;
}

.policy  {
    margin-top: 13rem;
}
.policy .section_title {
    color: #0A435F;
    position: absolute;
    top: 1.5rem;
    left: 29rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    display: flex;
}
.policy .section_title h2{
    font-size: 2.4rem;
}
.policy .section_title p  {
    margin-left: 1.5rem;
    font-size: 2.4rem;
}

.policy_slogan {
    width: fit-content;
    margin: 0rem 8.4rem 4rem auto;
    padding-top: 6rem;
    right: 0;
    line-height: 1.25;
    color: #0A435F;
    font-size: 5.4rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    letter-spacing: 0.2rem;
    line-height: 1.15;
}
.policy_slogan .slogan_line-break {
    letter-spacing: 0.05rem;
}

.policy_slogan .large {
    font-size: 10.63rem;
}

.policy_text {
    position: relative;
    line-height: 1.75;
    margin: 0 2rem 0 auto;
    width: 71.5rem;
    font-size: 1.7rem;
    font-weight: 500;
    z-index: 7;
}

.policy_text p {
    margin-bottom: 3.3rem;
}

.policy_text p:last-child {
    margin-bottom: 1.5rem;
}

.policy_img1 {
    position: absolute;
    top: 8rem;
    left: 0;
    height: 67rem;
    width: 52.3rem;
}

.policy_photo1 {
    width: 45rem;
    height: 30rem;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 2rem;
}

.policy_photo2 {
    position: absolute;
    width: 35rem;
    height: 23.3rem;
    z-index: 4;
    top: 32rem;
    right: 2rem;
}

.policy_back1 {
    width: 52.3rem;
    height: 43.4rem;
    position: absolute;
    bottom: 0;
}

.policy_img2 {
    margin: -15rem 0 8rem auto;
    position: relative;
    width: 28.7rem;
    height: 34.5rem;
    overflow: hidden;   
}

.policy_flower {
    position: absolute;
    z-index: 5;
    top: 0rem;
    right: 0rem;
    height: 34.6rem;
    width: 34.6rem;
}

.policy_back2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 28.7rem;
    height: 20.1rem;
}

.reasons {
    margin-bottom: 17.5rem;
    line-height: 1.25;
}

.reasons .section_title{
    margin: 16rem auto 6rem;
    color: #0A435F;
    text-align: center;
    line-height: 1.25;
    
}

.reasons .section_title h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}
.reasons .section_title p {
    font-size: 2.4rem;
}

.reasons_textbox1 {
    width: 53.1rem;
    margin: 4rem 2rem 0 auto;
}

.reasons_text {
    font-size: 1.7rem;
    line-height: 1.75;
    font-weight: 500;
}

.reasons_number {
    color: #0A435F;
    font-size: 2.4rem;
    font-family: "Cormorant Infant", serif;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.reason_title {
    color: #0A435F;
    font-size: 2.4rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.3rem;
}

.reasons_img {
    position: relative;
    width: 69.5rem;
    height: 34.5rem;
}

.reasons_box1 {
    display: flex;
    margin-bottom: 4.1rem;
    z-index: 5;
}

.reasons_photo01 {
    position: absolute;
    width: 69.3rem;
    height: 31.6rem;
    z-index: 5;
}

.reasons_back01 {
    position: absolute;
    width: 64.2rem;
    height: 29.2rem;
    bottom: 0;
    right: -2rem;
}

.reasons_box2 {
    display: flex;
    margin-bottom: 14.7rem;
}

.reasons_textbox2 {
    margin: 10rem auto 21.7rem 10rem;
    z-index: 5;
}

.reasons_img2 {
    margin: 0 0 0 auto;
    width: 44.5rem;
    position: relative;
}

.reasons_photo02 {
    position: absolute;
    right: 0;
    width: 46.2rem;
    height: 55.1rem;
}

.reasons_photo03 {
    width: 44.1rem;
    height: 27.1rem;
    position: absolute;
    z-index: 2;
    right: 29.5rem;
    top: 37rem;
}

.reasons_flower01 {
    width: 32rem;
    height: 32rem;
    position: absolute;
    left: 3rem;
    top: -17rem;
}

.reasons_flower02 {
    width: 20rem;
    height: auto;
    position: absolute;
    z-index: 3;
    right: 0rem;
    bottom: -17.5rem;
}

.reasons_box3 .reasons_textbox {
    text-align: center;
    margin: 0 auto 2.5rem;
    z-index: 5;
    position: relative;
}

.reasons_back02 {
    position: absolute;
    width: 29rem;
    height: 61.8rem;
    bottom: 14rem;
}

.reasons_flower03 {
    position: absolute;
    bottom: 14.7rem;
    width: 22.7rem;
    height: 22.7rem;
    left: 18rem;
    bottom: -2.5rem;
    z-index: 1;
}

/* スライドバー */
.reasons_slider {
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.slider {
    display: flex;
    gap: 5.5rem;
    margin-right: 6.2rem;
    flex-wrap: nowrap;
    animation:  loopAnimation 30s linear infinite;
}


@keyframes loopAnimation {
    0% {
        transform:  translate(0%);
    }

    100% {
        transform: translate(-100%);
    }
    
}

.reasons .slider_item1 {
    width: 23.3rem;
    height: 30.1rem;
    margin-top: 2.7rem;
    z-index: 10;
}

.reasons .slider_item2 {
    width: 27.9rem;
    height: 18.9rem;
    margin-top: 5.3rem;
    z-index: 10;
}

.reasons .slider_item3 {
    width: 35.1rem;
    height: 22.8rem;
    margin-top: 7.7rem;
    z-index: 10;
}

.reasons .slider_item4 {
    width: 24.9rem;
    height: 31.2rem;
    z-index: 10;
}

.service {
    display: flex;
    flex-wrap: wrap;
    scroll-margin-top: 15rem;
}

.servic_side {
    width: 26rem;
}

.servic_scroll {
    position: sticky;
    top: 10rem;
    /* ← 追加：画面上からの位置 */
    left: 2rem;
    /* ← 追加：画面左からの位置 */
    width: 26rem;
    /* ← 追加：fixedは親の幅を継承しない */
    z-index: 10;
    /* ← 追加：他要素の下に隠れないように */

}

.service .section_title {
    margin: 1rem 6.5rem 0 auto;
    writing-mode: vertical-lr;
    color: #0A435F;
}
.service .section_title h2{
    font-size: 2.4rem;
    letter-spacing: 0.7rem;
}
.service .section_title p {
    font-size: 2.4rem;
    margin-right: 0.5rem;
}

.service_flower {
    margin-right: -1.5rem;
    margin-top: -1rem;
    width: 35.494rem;
    height: 35.494rem;
}

.service_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.5rem 7.8rem;
    margin: 0 2rem 0 auto;
}

.service_item {
    background-color: #fff;
    border: 1px solid #0A435F;
    width: 44.4rem;
    padding: 1.6rem 3rem;
}

.service_name {
    margin-left: -5rem;
    display: flex;
    align-items: center;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0A435F;
    margin-bottom: 1.3rem;
}

.service_name span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: #FFB4E6;
    margin-right: 0.5rem;
}

.service_name::before {
    content: '';
    display: block;
    width: 4rem;
    height: 0.1rem;
    background-color: #0A435F;
    margin-right: 0.5rem;
}

.service_img {
    width: 38.4rem;
    height: 17.2rem;
    position: relative;
    margin-bottom: 2rem;
}

.service_img span {
    color: #fff;
    font-size:1.5rem ;
    background-color: #0A435F;
    font-weight: 700;
    position: absolute;
    padding: 0.5rem 1rem;
    right: 0;
    top: 0;
}

.service_category {
    color: #323232;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}

.service_text{
    color: #323232;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.3;
    border-bottom: 1px solid #D9D9D9;
    padding: 0.8rem 0 1.6rem;
}

.service_item:nth-child(3) .service_category {
    margin-bottom: 3rem;
}

.service_count {
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
}

.service_count.service_count-2column {
    padding: 2.8rem 0;
}

.service_count_day {
    padding: 3.5rem 0;
}

.service_count > :first-child {
  grid-column: 1 / -1; /* -1は最後のラインを意味する */
}

.service_count p {
    color: #323232;
    font-size: 1.5rem;
    font-weight: 700;
}
.room_status {
    font-size: 2rem;
    font-weight: 700;
}
.room_now {
    margin-right: 1rem;
    letter-spacing: 0.1rem;
}
.room_line {
    height: 0.1rem;
    width: 8rem;
    background-color: #323232;
    margin: auto 1rem;
}

.room_line-2row {
    width: 3rem;
    margin: auto 0.5rem;
}
.room_2row {
    display: flex;
    gap: 0.5rem;
    align-items: end;
}
.room_2row .room_now {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    margin: 0 auto;
}
.room_line_day {
    width: 11.5rem;
}
.room_text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #323232;
    text-align: center;
    margin-bottom: 0.1rem;
}
.room_2row .room_text {
    margin-bottom: 0.5rem;
    vertical-align: center;
}
.room_text span {
    font-size: 1.2rem;
}
.room_2row .room_count {
    text-align: center;
}
.room_count .room_icon {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 6.2rem;
    height: 6.2rem;
    color: #fff;
    background-color: #0A435F;
    border-radius: 50%;
    font-size: 3.6rem;
}

.room_count .room_icon .room_weak {
    font-size: 1rem;
}
.room_value {
    text-align: center;
    font-size: 3.6rem;
}

.room_count .room {
    font-size: 1.3rem;
}

.service_tel {
    display: block;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #323232;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15rem;
    padding-left: 5.5rem;
    background-image: url("../img/top/tell_icon.svg");
    background-size: 5rem;
    background-repeat: no-repeat;
}

.service_link {
    text-align: right;
}

.service_link a {
    margin: 0 0 0 auto;
    font-size: 1.7rem;
    font-weight: 500;
    padding-right: 1rem;
}

.service_link .link_icon {
    margin-left: 2.5rem;
}

.day_link {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    line-height: 125%;
    letter-spacing: calc(2rem * 0.02);
    color: #ffffff;
    background-image: linear-gradient(to right, #F9BDC5, #0A435F);
    padding: 1rem 2rem;
}

.last-item {
    grid-column: 1 / -1;
    width: 96.4rem;
    padding: 1.5rem 2.3rem 1.5rem 2.7rem;
}

.service_item_flex {
    display: flex;
}

.last-item .service_img {
    width: 38.4rem;
    height: 17.3rem;
    margin-right: 2.8rem;
}

.last-item .service_text {
    width: 50rem;
    min-height: auto;
    padding:  0.5rem 0 1rem;
}

.last-item_tell {
    display: flex;
    width: 50rem;
    align-items: center;
}
.last-item .service_tel {
    padding-left: 6rem;
}
.last-item_tell a {
    width: 30rem;
    margin: 0;
}
.last-item .service_link {
    margin: -0.2rem 0.5rem 0 auto;
}

.bon-welfare {
    font-weight: 500;
    margin: 6rem 20rem 5.8rem auto;
}

.bon-welfare a {
    font-size: 1.7rem;
    line-height: 1.7;
}

.bon-welfare span {
    margin-left: 5rem;
}

.news {
    padding-top: 17.3rem;
    z-index: 1;
}
.news .section_title {
    color: #0A435F;
    display: flex;
    margin-left: 10.5rem;
}
.news .section_title h2{
    font-size: 2.4rem;
}
.news .section_title p {
    margin-top: 0.5rem;
    margin-left:1.5rem;
    font-size: 2.4rem;
}

.news_flower01 {
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 15rem;
    height: auto;
}

.news_back01 {
    display: block;
    width: 28.4rem;
    height: 1.5rem;
    margin: -0.8rem auto 1.7rem 0;
}

.news_back02 {
    position: absolute;
    width: 21.9rem;
    height: 36.9rem;
    bottom: 5.6rem;
    right: 0;
}

.news_link {
    position: absolute;
    right: 11rem;
    top: 17.5rem;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.3;
    z-index: 5;
}

.news_link span {
    color: #0A435F;
    margin-left: 6.6rem;
}

.news_container {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 5;
    margin-bottom: 16.5rem;
}

/* PC版: トリガー非表示、カテゴリーは常に表示 */
.news_all_trigger {
    display: none;
}

.news_category_wrap {
    width: 45rem;
    padding: 4.6rem 1rem 2rem 10.9rem;
    border-right: 1px solid #948f8f;
}



.news_category li {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 4.9rem;
}

.news_category a {
    color: #0A435F;
    padding-right: 1.5rem;
}

.news_all span {
    display: inline-block;
    background: linear-gradient(90deg,rgba(249, 189, 197, 1) 0%, rgba(10, 67, 95, 1) 100%);
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.news_list {
    padding: 0 11rem 0 3.5rem;
    width: 83rem;
}

.news_list a {
    color: #323232;
    transition: color 0.3s ease;
}


.news_list-flex {
    display: flex;
    border-bottom: 1px solid #B1B1B1;
    align-items: center;
    padding-top: 1.8rem;
    padding-bottom: 0.7rem;
    transition: box-shadow 0.3s ease;
}

.news_list-flex:hover {
    color: #0A435F;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
    .news_list-flex:hover .news_article a {
        color: #0A435F;  
    }

.news_day {
    width: 5.5rem;
    color: #323232;
    padding: 0.2rem  1rem;
    text-align: center;
}

.news_year {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
    width: 4.5rem;
}

.news_date {
    font-size: 1.9rem;
    font-weight: 500;
    border-top: 1px solid #323232;
    line-height: 1;
    width: 4.5rem;
}

.news_article {
    font-size: 1.7rem;
    padding-left: 4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recruit {
    width: 100%;
    overflow: hidden;
    --bg-opacity: 0;
}

.recruit::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/top/recruit_backimg01.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
    opacity: var(--bg-opacity);
}

@keyframes recruit-fade {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}

.recruit .back_text {
    display: block;
    font-family: "Cormorant Infant", serif;
    font-size: 25rem;
    font-weight: 700;
    background-image: linear-gradient(90deg, #f9bdc5, #a0a5ba 31%, #468daf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 33rem;
    left: 2rem;
    letter-spacing: -0.8rem;
    position: relative;
    z-index: 1;
    will-change: transform, opacity;
}

.recruit .section_title {
    position: absolute;
    display: flex;
    top: 13.5rem;
    right: 16.5rem;
    writing-mode: vertical-lr;
    color: #0A435F;
    z-index: 5;
    will-change: transform, opacity;
}
.recruit .section_title h2 {
    font-size: 2rem;
    letter-spacing: 0.5rem;
}
.recruit .section_title p {
    font-size: 2.4rem;
    margin-top: 1rem;
    margin-left: -0.5rem;
    letter-spacing: 0.1rem;
}

.recruit .slogan {
    position: absolute;
    z-index: 5;
    color: #0A435F;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 2;
    top: 33.5rem;
    right: 18.8rem;
    font-family: 'Noto Serif JP';
    writing-mode: vertical-rl;
    text-indent: -6.3em;
    padding-left: 1.8em;
    letter-spacing: 0.8rem;
    will-change: transform, opacity;
}

.recruit_imags {
    position: relative;
    height: 96.5rem;
    margin-top: 37rem;
}

.recruit_img01 {
    z-index: 5;
    position: absolute;
    top: 6.2rem;
    left: 15.7rem;
    width: 29.1rem;
    height: 42.2rem;
}

.recruit_img02 {
    z-index: 5;
    position: absolute;
    top: 43.6rem;
    right: 2rem;
    width: 45.7rem;
    height: 32.2rem;
}

.recruit_img03 {
    z-index: 5;
    position: absolute;
    top: 51.4rem;
    left: 2rem;
    width: 62rem;
    height: 40.7rem;
}

.recruit_text {
    margin: 0 auto 4rem;
    width: 115.2rem;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.55;
}

.recruit_link {
    color: #323232;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: right;
    margin-right: 6.5rem;
    margin-bottom: 11.5rem;
}

.recruit_link span {
    color: #0A435F;
    margin-left: 1.7rem;
}

@media screen and (max-width:699.98px) {
    .sp_br {
        display: block;
    }
    .pc_br,
    .sp_none {
        display: none;
    }
    main,section{
        width: 100%;
        max-width: 37.5rem;
    }
    .service_item_flex {
        display: block;
    }
    .section_border {
        width: 35.5rem;
        height: 0.1rem;
        margin: 0 auto;
    }
    .keyvisual {
        height: 45rem;
        margin-bottom: 3rem;
    }
    .keyvisual_slider {
        position: relative;
        right: auto;
        width: 35.5rem;
        height: 44rem;
        margin: 0 auto;
    }
    .slider_item {
        width: 35.5rem;
        height: 45rem;
    }
    .keyvisual .slogan {
        font-size: 2.77rem;
        font-weight: 700;
        right: 1.4rem;
        top: 11.4rem;
        letter-spacing: 0.65rem;
    }
    .keyvisual_flower01{
        width: 17rem;
        height: 17rem;
        bottom: 1rem;
        left: -1rem;
    }
    .keyvisual_flower02 {
        width: 14rem;
        height: 14rem;
        bottom: 1rem;
        left: -3.5rem;
    }
    .keyvisual .dots {
        display: block;
        bottom: 3.6rem;
        right: 1.6em;
    }
    .dot {
        width: 1.1rem;
        height: 1.1rem;
        margin-bottom: 0.4rem;
    }
    .pickup {
        bottom: -6rem;
        left: 0;
        width: 34.8rem;
        padding: 0.5rem 1rem 1.3rem;
    }
    .pickup .section_title {
        display: flex;
        align-items:flex-end;
        margin-bottom: 0.3rem;
    }
    .pickup .section_title p {
        margin-left: 1.2rem;
        line-height: 1;
    }
    .pickup_day {
        width: 4rem;
    }
    .pickup_item {
        gap: 1rem;
        align-items:end;
    }
    .pickup_year {
        font-size: 1.2rem;
    }
    .pickup_date {
        font-size: 1.4rem;
    }
    .pickup_progress {
        width: 4rem;
        height: 0.1rem;
    }
    .pickup_article {
        line-height: 1;
        width: 24rem;
    }
    .pickup_tag a{
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    .pickup_title a{
        font-size: 1.4rem;
        line-height: 1;
    }
    .pickup_btns {
        margin-top: 1.4rem;
    }
    .pickup_back {
        width: 1.2rem;
        height: 1.2rem;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    .pickup_next {
        width: 1.2rem;
        height: 1.2rem;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    .pickup_line {
        width: 2rem;
        height: 0.1rem;
        margin-left: -0.5em;
    }
    .policy {
        margin-top: 13.5rem;
    }
    .policy .section_title {
        display: block;
        left: 20.4rem;
        top: 0;
    }
    .policy .section_title h2 {
        font-size: 2rem;
    }
    .policy .section_title p {
        font-size: 2rem;
        margin-left: 0;
    }
    .policy_slogan {
        position: relative;
        letter-spacing:0.1rem;
        margin: -2.3rem 1rem 0;
        padding: 0;
        font-size: 2.91rem;
        z-index: 5;
    }
    .policy_slogan .large {
        font-size: 5.7rem;
        margin-top: -0.3rem;
    }
    .policy_slogan .slogan_line-break {
        letter-spacing:0;
    }
    .policy_img1 {
        width: 37.5rem;
        height: 35rem;
        position: relative;
    }
    .policy_photo1 {
        width: 19.5rem;
        height: 13rem;
        left: 2rem;
        top: 0.7rem;
    }
    .policy_photo2 {
        width: 19.5rem;
        height: 13rem;
        right: 2rem;
        top: 14.5rem;
    }
    .policy_back1 {
        width: 28.1rem;
        height: 17.5rem;
    }
    .policy_text {
        width: 35.1rem;
        margin: 3.3rem auto 1rem;
        line-height: 1.78;
    }
    .policy_text p {
        margin-bottom: 1.3rem;
    }
    .policy_img2 {
        margin-top: -10rem;
        margin-bottom: 1.7rem;
        height: 26.5rem;
    }
    .policy_back2{
        width: 20.9rem;
        height: 13.6rem;
        bottom: 0;
    }
    .policy_flower {
        right: 2rem;
        bottom: -0.5rem;
        width: 24.5rem;
        height: 24.5rem;
    }
    .reasons {
        margin-bottom: 9rem;
    }
    .reasons .section_title {
        margin-top: 5.5rem;
        margin-bottom: 7.7rem;
    }
    .reasons .section_title h2{
        font-size: 2em;
    }
    .reasons .section_title p {
        font-size: 2rem;
    }
    .reasons_flower01 {
        width: 12rem;
        height: 12rem;
        top: 2.3rem;
        left: -2rem;
    }
    .reason_title {
        margin-bottom: 1rem;
        letter-spacing: -0.04rem;
    }
    .reasons_box1 {
        flex-direction: column; 
        margin-bottom: 4.8rem;
    }
    .reasons_img {
        overflow: hidden;
        width: 100%;
        height: 16.1rem;
    }
    .reasons_photo01 {
        width: 30.9rem;
        height: 14.1rem;
        margin-left: -1rem;
    }
    .reasons_back01 {
        left: 0;
        width: 31.7rem;
        height: 13.1rem;
    }
    .reasons_textbox1 {
        width: 35.5em;
        margin: 2rem auto 0rem;
    }
    .reasons_box2 {
        flex-direction: column; 
        flex-direction: column-reverse;
        margin: 0;
        width: 100%;
    }
    .reasons_textbox2 {
        margin: 1rem auto 6rem;
        width: 35.3rem;
    }
    .reasons_img2 {
        height: 27rem;
        width: 37.5rem;
    }
    .reasons_photo02 {
        width: 21.1rem;
        height: 25.2rem;
    }
    .reasons_photo03 {
        width: 20.1rem;
        height: 12.4rem;
        left: 1rem;
        top: 14.5rem;
    }
    .reasons_flower02 {
        width: 9rem;
        right: 0;
        bottom: -4.2rem;
    }
    .reasons_back02 {
        width: 10rem;
        height: 26rem;
        left: 0;
        bottom: 2rem;
    }
    .reasons_box3 .reasons_textbox {
        width: 35.3rem;
        text-align: left;
        margin: 0 auto 3rem;
    }
    .reasons_box3 .reasons_text {
        margin-bottom: 0;
    }
    .reasons_flower03 {
        width: 10rem;
        height: 10rem;
        left: 5rem;
        bottom: -1.5rem;
    }
    .reasons_slider {
        width: 100%;
    }
    .reasons .slider_item1 {
        width: 12.6rem;
        height: 16.2rem;
        margin-top: 0;
    }
    .reasons .slider_item2 {
        width: 14.3rem;
        height: 9.7rem;
        margin-top: 4.9rem;
    }
    .reasons .slider_item3 {
        width: 18rem;
        height: 11.7rem;
        margin-top: 2.5rem;
    }
    .reasons .slider_item4 {
        width: 12.9rem;
        height: 16.2rem;
    }
    .service {
        flex-direction: column; 
        scroll-margin-top: 10rem;
    }
    .servic_scroll {
        width: 37.3rem;
        overflow: hidden;
        height: 11.5rem;
    }
    .service .section_title {
        display: flex;
        flex-direction: column;
        flex-direction: column-reverse;
        writing-mode: horizontal-tb;
        margin: 0;
        text-align: right;
    }
    .service .section_title h2 {
        margin: 3rem 0 0.8rem 1rem;
        letter-spacing: 0.75rem;
        font-size: 2rem;
    }
    .service .section_title p {
        font-size: 2rem;
        margin-right: 1rem;
        letter-spacing: -0.01rem;
    }
    .service_flower {
        position: absolute;
        left: -3.5rem;
        top: 0;
        width: 14.8rem;
        height: 14.8rem;
        }
    .service_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        width: 37.3rem;
    }
    .service_item {
        width: 35.3rem;
        margin: 0 auto;
        padding: 1.5rem 2rem;
    }
    .service_img {
        width: 31.4rem;
        height: 17.3rem;
    }
    .service_name {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
    .room_status {
        font-size: 1.7rem;
    }
    .service_item:nth-child(3) .service_category {
        margin-bottom: 0;
    }
    .room_line {
        width: 3.5rem;
        margin: auto 1rem;
    }
    .room_line.room_line-2row {
        width: 1rem;
        margin: auto 0.5rem;
    }
    .room_line_day {
        width: 5.5rem;
    }
    .room_now {
        margin-right: 2rem;
    }
    .service_count-2column .room_now {
        margin-right: 0.7rem;
        font-size: 1.2rem;
    }
    .room_now span {
        font-family: 500;
    }
    .service_count-2column .room_now {
        margin-right: 0.5rem;
    }
    .room_year {
        font-size: 1.3rem;
    }
    .room_day {
        font-size: 1.5rem;
    }
    .room_value {
        font-size: 3rem;
    }
    .room_value .room {
        font-size: 1.1rem;
    }
    .service_count p {
        font-size: 1.3rem;
    }
    .room_count .room_icon {
        width: 5.5rem;
        height: 5.5rem;
        background-image: linear-gradient(90deg, #f9bdc5, #468daf);
    }
    .service_tel {
        background-size: 4.4rem;
        margin: 2.7rem 0 2.5rem;
        height: 4.4rem;
        padding-left: 4.6rem;
    }
    .service_link a{
        padding-right: 0.5rem;
    }
    .service_link span {
        margin-left: 2rem;
    }
    .last-item {
        width: 35.3rem;
    }
    .last-item .service_img {
        width: 31.4rem;
        height: 17.3rem;
        margin: 0 0 2rem;
        
    }
    .last-item .service_text {
        width: 100%;
        padding-bottom: 2rem;
    }
    .last-item_tell {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }
    .last-item .service_link {
        margin: 0;
    }
    .last-item .service_tel {
        padding-left: 4.6rem;
        margin-bottom: 2.3rem;
    }

    .bon-welfare {
        line-height: 1.3;
        width: 35.3rem;
        margin: 3.6rem 1rem 7.4rem;
    }
    .bon-welfare span {
        margin-left: 3rem;
    }
    .news {
        padding-top: 10.6rem;
    }
    .news .section_title {
        margin-left: 4.5rem;
    }
    .news .section_title h2{
        font-size: 2rem;
    }
    .news .section_title p{
        font-size: 2rem;
        margin-left: 0.5rem;
    }
    .news_flower01 {
        top: 5rem;
        width: 7rem;
    }
    .news_back01 {
        width: 18.6rem;
        height: 0.9rem;
    }
    .news_back01 img {
        width: 100%;
        height: auto;
    }

    /* ニュース カテゴリードロップダウン */
    .news_category_wrap {
        position: relative;
        width: 100%;
        padding: 0 0 0.3rem;
        border-right: none;
        border-bottom: 1px solid #0A435F;
    }

    .news_all_trigger {
        display: inline-block;
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.25;
        color: #0A435F;
        cursor: pointer;
        padding-bottom: 0.2rem;
    }
/* Clip-path方式 */

    .news_all_trigger span {
        display: inline-block;
        background: linear-gradient(90deg, rgba(249, 189, 197, 1) 0%, rgba(10, 67, 95, 1) 100%);
        width: 1.1rem;
        height: 1.1rem;
        border-radius: 50%;
        margin-right: 0.5rem;
    }
        .news_all_trigger .trigger_btn {
        position: absolute;
        right: 1rem;
        top: 0.5rem;
        border-radius: 0;
        width: 1.7rem;
        height: 1.7rem;
        background: #0A435F;
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    }

    .news_category {
        position: absolute;
        top: 100%;
        left: 0;
        width: 35.3rem;
        background-color: #B1B1B1;
        padding: 3.5rem 1.5rem;
        z-index: 20;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .news_category.open {
        opacity: 1;
        visibility: visible;
    }

    .news_category li {
        font-size: 1.8rem;
        margin-bottom: 5rem;
    }

    .news_category li:last-child {
        margin-bottom: 0;
    }

    .news_container {
        flex-direction: column;
        width: 35.3rem;
        margin: 6rem auto;
    }
    .news_list-flex {
        padding-bottom: 1rem;
    }
    .news_list {
        width: 100%;
        padding: 0 0 10.5rem;
    }
    .news_day {
        padding: 0;
    }
    .news_article {
        padding-left: 2rem;
        padding-right: 3rem;
    }
    p .news_link {
        top: auto;
        bottom: 10.5rem;
        left: 1rem;
        right: auto;
    }
    .news_back02 {
        display: none;
    }
    .recruit::before {
        background-attachment: scroll;
        background-size: auto 90%;
        background-position: 60% top;
    }
    .recruit .section_title {
        right: 2.4rem;
        top: 8.5rem;
    }
    .recruit .section_title h2 {
        font-size: 2rem;
    }
    .recruit .section_title p {
        font-size: 2rem;
        margin-left: 0;
    }
    .recruit .slogan {
        right: 4.5rem;
        top: 26.5rem;
        font-size: 2.8rem;
        line-height: 1.45;
        letter-spacing: 0.7rem;
    }
    .recruit .back_text {
        font-size: 9rem;
        letter-spacing: -0.1rem;
        top: 9rem;
        left: 1rem;
    }
    .recruit_img01 {
        width: 10rem;
        height: 14.6rem;
        left: 1rem;
        top: 0rem;
    }
    .recruit_img02 {
        width: 14.6rem;
        height: 10.3rem;
        top: 10rem;
        right: 1rem;
    }
    .recruit_img03 {
        width: 19.5rem;
        height: 12.8rem;
        top: 17.5rem;
        left: 1rem;
    }
    .recruit_imags {
        height: 33.5rem;
        margin-top: 28rem;
    }
    .recruit_text {
        width: 35.3rem;
        margin: 0 auto 3.6rem;
        line-height: 1.47;
    }
    .recruit_link {
        margin-left: 1rem;
        text-align: left;
        margin-bottom: 9rem;
    }
}



