﻿/* サイト情報エリア背景 */
.siteinfo-area {
    background: #FBE1F9;
    background: var( --background-color, linear-gradient(60deg, rgba(251,225,249,1) 0%, rgba(252,231,215,1) 50%, rgba(252,245,204,1) 100%));
    padding-top: 170px;
    position:relative;
}

    .siteinfo-area::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px; /* 波の画像の高さに合わせて調整 */
        background-image: url(../../images/kaigo/bg-wave.svg); /* ←波画像のパスを入れてね */
        background-repeat: repeat-x; /* 横にリピートして全幅に広げる */
        background-size: contain; /* or cover / auto 適宜調整 */
        z-index: 2; /* コンテンツより上 */
        pointer-events: none; /* クリック邪魔しない */
    }

/* レイアウトコンテナ */
.content-box {
    display: flex;
    width: 100%;
    margin: 0 auto;
    min-height: 400px;
}

.container-left {
    flex: 0 0 60%;
    display: flex;
    justify-content: flex-end;
    padding: 40px;
    background-color: var(--background-color, #004b87);
    color: var(--text-color, #ffffff);
}

.inner-container-left {
    display: flex;
    width: 660px;
}

.container-right {
    flex: 0 0 40%;
    padding: 40px;
    background-color: var(--background-color, #E0F2FC);
    color: #333333;
}

    .container-right .siteinfo-area__item-wrap {
        padding-top: 30px;
    }

/* レスポンシブ: レイアウト崩し */
@media screen and (max-width: 1200px) {
    .content-box {
        flex-direction: column;
    }

    .container-left {
        flex: 0 0 100%;
        justify-content: flex-start;
    }

    .container-right {
        flex: 0 0 100%;
        padding-top: 10px;
        padding-bottom: 80px;
    }
}

/* サイト情報エリア内側 */
.siteinfo-area__inner {
    width: 1150px;
    margin: 0 auto;
    padding: 40px 0;
    border: 1px solid;
}

@media screen and (max-width: 959px) {
    .siteinfo-area__inner {
        padding: 40px 0 40px 10px;
    }
}

.siteinfo-area__add-inner {
    width: 100%;
}

.siteinfo-area__wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    padding: 4px 0 0;
    line-height: 2rem;
    color: var(--text-color, #ffffff);
}

/* 地図リンク */
.siteinfo-area__map {
    padding: 0 12px;
    text-align: center;
    border-radius: 4px;
    background-color: var(--background-color, #ffffff);
    fill: #007BA8;
}

    .siteinfo-area__map a,
    .siteinfo-area__map a:visited {
        color: var(--text-color, #0083B3);
    }

    .siteinfo-area__map svg {
        position: relative;
        top: 5px;
    }

/* アイテム見出し */
.siteinfo-area__item-title {
    position: relative;
    max-width: 285px;
    margin-bottom: 15px;
    padding-left: 20px;
    padding-bottom: 8px;
    font-size: 1.35rem;
    line-height: 2rem;
    color: var(--text-color, #ffffff);
    border-bottom: 1px dotted #ffffff;
}

    .siteinfo-area__item-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        height: 30px;
        background-color: #e91e63;
    }

/* アイテム配置 */
.siteinfo-area__content-wrap {
    display: flex;
}

.siteinfo-area__item-wrap {
    max-width: 410px;
    width: 100%;
}

/* 左側のラッパー（装飾は削除） */
.left-item-wrap {
    display: flex;
    margin-right: 30px;
}

/* ラベル・値 */
.siteinfo-area__items-name {
    max-width: 70px;
    width: 100%;
    text-indent: 1rem;
}

.siteinfo-area__items-name--right {
    max-width: 120px;
    width: 100%;
    text-indent: 1rem;
}

.siteinfo-area__items-num {
    text-indent: 1rem;
}

/* 著作権表示 */
.cp {
    max-width: 1120px;
    padding: 0 10px 0 0;
    font-size: 0.9rem;
    color: var(--color, #43290F);
    text-align: right;
    margin: 0 auto;
}

/* フッター画像 */
.footer-img {
    width: 235px;
}

/* フッターリンクリスト */
.footer-link-list .link-list {
    list-style: none;
    width: 200px;
    margin: 0;
    padding: 0;
}

.footer-link-list .link-item a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 10px 30px 10px 0;
    color: #43290F;
    font-weight: 500;
    text-decoration: none;
}

    /* 矢印アイコン */
    .footer-link-list .link-item a::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 12px;
        width: 18px;
        height: 18px;
        background-color: #e1758b;
        -webkit-mask: url(../../images/kaigo/icon-arrow.svg) no-repeat center / contain;
        mask: url(../../images/kaigo/icon-arrow.svg) no-repeat center / contain;
        transition: background-color .3s;
    }

    .footer-link-list .link-item a:hover::after {
        background-color: #FB8053;
    }

.link-item a:hover {
    opacity: 0.7;
}

/* TOPへボタン */
#topbtn {
    position: fixed;
    right: 1rem;
    z-index: 1200;
}

@media screen and (max-width: 1000px) {
    #topbtn {
        display: none;
    }
}

/* 追記画像エリア */
.wrap.img-add {
    width: 300px;
    margin: 0 auto;
    text-align: center;
}

    .wrap.img-add span {
        font-weight: 500;
        color: var(--color, #43290F);
        display: block;
        margin-left: 5px;
        text-align:left;
    }

.wrap-add {
    display: flex;
}

/* 追加リスト */
.add-item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 750px;
    height: 254px;
    color: var(--color, #43290F);
    font-weight: 500;
}

    .add-item li {
        margin: 12px;
    }

/* 2カラムULのラッパー */
.wrap-2ul {
    display: flex;
    justify-content: space-between;
    max-width: 950px;
    margin: 35px auto 0;
}

@media screen and (max-width: 1100px) {
    #bottom_navi .bottom_menu {
        background-color: var(--background-color,#fff);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }

    .active_btmpanel {
        background-color: var(--background-color,#F0F0F0);
    }

    .cp {
        margin-bottom: 60px;
    }

    .add-item li {
        width: 260px;
    }

    .add-item {
        margin: 0 auto;
        max-width: 580px;
    }

    .wrap-2ul {
        max-width: calc(100% - 40px);
    }
}


@media screen and (max-width: 820px) {
    .wrap-2ul {
        flex-direction: column;
    }

    .add-item {
        margin: 0 auto;
        max-width: 500px;
        flex-wrap: wrap;
    }

    .footer-link-list {
        display: flex;
        max-width: 600px;
        margin: 0 auto;
        gap: 30px;
    }
}

@media screen and (max-width: 600px) {
    .add-item {
        margin: 0 auto;
        max-width: 308px;
        flex-wrap: initial;
    }

    .footer-link-list {
        margin-top: 140px;
    }

    .footer-link-list {
        gap: 0px;
    }

    .footer-link-list {
        display: flex;
        flex-direction: column;
        position: relative;
        right: -45px;
    }

    .siteinfo-area {
        padding-bottom: 40px;
    }

    .siteinfo-area {
        padding-top: 120px;
    }
}


#bottom_navi .bottom_menu_item a {
    color: var(--text-color,#43290F) !important;
}

.close_btn {
    background-color: var(--background-color,#43290f);
}

.siteSearchArea .svg-inline--fa.fa-w-16 {
    color: var(--text-color,#43290F) !important;
}

.sagasulist li a {
    color: var(--text-color,#43290F) !important;
}

/* ボトムメニュー内ビュレット色 */
#areabtm_sagasu ul a::before {
    background-color: #e1758b !important;
}


/* SP検索メニュー調整*/

.mokuteki_btn_area-sp {
    display: flex;
    max-width: 250px;
    margin: 0 auto;
    margin-top:60px;
    flex-direction: column;
    gap: 20px;
}

.mokuteki_btn_area-sp a {
    display: block;
    width: 250px;
    height: 60px;
    padding: 15px 5px;
    border-radius: 10px;
    background-color: var(--background-color,#ffffff);
    border: 3px solid #E1758B;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color,#333);
    font-weight: bold;
    transition-duration: 0.3s;
}

    .mokuteki_btn_area-sp a:hover {
        border: 3px solid #FB8053
    }