:root {
  --text-color: #4d4d4d;
}

/* 総合トップページ */
html {
    /* font-size: 1rem; */
    font-size:1.3rem;
}
html.large {
    /* font-size: 1.3rem; */
    font-size:1.6rem;
}
body {
    padding-top: initial;
    font-family: "kiwi", "ヒラギノ角ゴ Pro W3", "Josefin Sans", "メイリオ", "hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
}

/* 総合トップページのハンバーガーメニュー表示 */
.toujinkai .top-menu {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    z-index: 999;
    font-size: 1.15rem;
    text-align: center;
}
.toujinkai .top-menu .slidemenu-btn {
    background: #fff;
    padding: 15px 10px;
    border-radius: 10px 0 0 10px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 52, 95, .1);
    box-shadow: 0px 0px 15px 0px rgba(0, 52, 95, .1);
    -webkit-transition: .3s;
    transition: .3s;
    color: rgba(23, 128, 177, 0.9);
    cursor: pointer;
    /* width: 130px; */
    width:6.25rem;
}
.toujinkai .top-menu .slidemenu-btn.active {
    background: rgb(233, 232, 232);
}
.toujinkai .top-menu .slidemenu-btn:hover {
    background-color: rgba(23, 128, 177, 0.9);
    color: #fff;
}
.toujinkai .top-menu .slidemenu-btn .bars {
    margin-bottom: 11px;
}
.toujinkai .slidemenu-btn .bars .bar {
    display: block;
    width: 31px;
    height: 2px;
    background: rgba(23, 128, 177, 0.9);
    border-radius: 2px;
    margin: 8px auto;
    -webkit-transition: .3s;
    transition: .3s;
}
.toujinkai .top-menu .slidemenu-btn:hover .bar {
    background: #fff;
}
.toujinkai .slidemenu-btn.active .bars .bar:nth-child(1) {
    -webkit-transform: translate(0, 10px) rotate(45deg);
    transform: translate(0, 10px) rotate(45deg);
}
.toujinkai .slidemenu-btn.active .bars .bar:nth-child(2) {
    opacity: 0;
}
.toujinkai .slidemenu-btn.active .bars .bar:nth-child(3) {
    -webkit-transform: translate(0, -10px) rotate(-45deg);
    transform: translate(0, -10px) rotate(-45deg);
}

/* 病院 */
.toujinkai .catchcopy {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    -webkit-transform: translate(-50%, -30%);
    -moz-transform: translate(-50%, -30%);
    z-index: 990;
}
.toujinkai .catchcopy .sp-only {
    display: none;
}
.toujinkai .catchcopy>img {
    white-space: nowrap;
    width: 100%;
    height: 100%;
    min-width: 50rem;
    /* max-width: 625px; */
    max-width: 70rem;
}
.toujinkai-menu .tabs .relation {
    padding-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    /* align-items: center; */
    align-items: stretch;
    gap: 10px 20px;
    padding-top: 0;
    margin-bottom: 10px;
}
.toujinkai-menu .tabs .relation a {
    position: relative;
    /* width: calc(100% / 3 - 40px); */
    width: calc(100% / 4 - 4px);
    height: 100%;
    padding: 20px 5px;
    text-align: center;
    text-decoration: none;
    /* margin: 0 20px; */
    color: #ffffff;
    transition: border, background-color, 0.3s;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1.3;
}
.toujinkai-menu .tabs .relation a span.small {
    font-size: 1rem;
}
.toujinkai-menu .tabs .relation a span.big {
    font-size: 1.15rem;
}
.toujinkai-menu .tabs .relation a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    background: linear-gradient(to right, #ecedff 30%, #e4f3ff 60%, #e4f3ff 100%);
    border-radius: 8px;
}
.toujinkai-menu .tabs .relation a#miharadai-menu.active::before {
    background: linear-gradient(to right, #ecedff 30%, #e4f3ff 60%, #e4f3ff 100%);
}
.toujinkai-menu .tabs .relation a::after {
    content: "";
    position: absolute;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    top: 2.5px;
    left: 2.5px;
    z-index: -1;
    border-radius: 8px;
    background: #9c9c9c;
    transition: 0.3s background-color ease-in-out;
}
.toujinkai-menu .tabs .relation a#miharadai-menu::after {
    background: #6bb4b9;
}
.toujinkai-menu .tabs .relation a#health-center-menu::after {
    background: #eea370;
}
.toujinkai-menu .tabs .relation a#mihara-garden-menu::after {
    background: #a0c440;
}
.toujinkai-menu .tabs .relation a#mihara-flower-menu::after {
    background: #dd829c;
}
.toujinkai-menu .tabs .relation a.active::after {
    background: #9c9c9c !important;
}
.toujinkai-menu .tabs .relation a:hover::after {
    background: #9c9c9c !important;
}
.toujinkai-menu .sub-menu-lists {
    display: none;
}
.toujinkai-menu .sub-menu-lists.active {
    display: block;
}
.toujinkai-menu .sub-menu-lists {
    padding-top: 15px;
}
.toujinkai-menu .img {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px 0;
}
.toujinkai-menu .img img {
    width: 100%;
    height: 100%;
    max-width: 375px;
}
.toujinkai .toujinkai-menu {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 50px;
}
.toujinkai .toujinkai-menu .btn-line {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 2;
    width: 100%;
    padding-bottom: 30px;
}
.toujinkai .toujinkai-menu .btn-line .word-line {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

    flex-wrap:wrap;
    justify-content: flex-start;
}
.toujinkai .toujinkai-menu .word-line p {
    font-size: 1.2rem;
    padding-right: 15px;
    white-space: nowrap;
    color: var(--text-color);
}
.toujinkai .word-line a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /* width: calc(100% - 60px); */
    padding: initial;
    display: inline-block;
    position: relative;
    min-width: 75px;
    min-height: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    color: #ffffff;
    background-color: #9c9c9c;
    text-align: center;
    vertical-align: middle;
    border-radius: 10px;
    transition: background-color, 0.3s;
}
.toujinkai .word-line a:nth-child(2) {
    margin-right: 10px;
}
.toujinkai .word-line a.bg-blue {
    background-color: #1f8de7;
}
.toujinkai .btn-line {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 2;
    width: 100%;
}
.toujinkai .toggle-menu {
    opacity: 0;
    visibility: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    overflow-y: scroll;
    z-index: 995;
    top: 0;
    left: 0;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.toujinkai .word-line a span {
    position: absolute;
    text-wrap: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    letter-spacing: 0.1em;
}
.toujinkai .word-line a:hover {
    background-color: #1f8de7;
}
.miharadai-menu .sub-menu {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    padding-top: 160px;
    padding-bottom: 80px;
}
.miharadai-menu .sub-menu-lists {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.miharadai-menu .sub-menu-top ul {
    list-style: none;
    position: relative;
    list-style: none;
    padding-left: 0;
    box-sizing: border-box;
}
.miharadai-menu .sub-menu-top ul li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.miharadai-menu .sub-menu .sp-only {
    display: none;
}
.miharadai-menu ul a {
    text-decoration: none;
    /* color: #000000; */
    color:var(--text-color);
    width: 100%;
    padding: 20px 10px;
    position: relative;
    box-sizing: border-box;
    vertical-align: middle;
    transition: all 0.4s cubic-bezier(.17,.84,.44,1);
}
.miharadai-menu ul a:hover {
    color: #8dc556;
}
.miharadai-menu ul a:hover .arrow-txt {
    color: #8dc556;
    border-color: #8dc556;
}
.miharadai-menu ul .tbl {
    width: calc(100% - 30px);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}
.miharadai-menu .toggle-button {
    border-radius: 50%;
    /* border: 1px solid #000000; */
    border: 1px solid var(--text-color);
    position: relative;
    font-size: 1rem;
    width: 25px;
    height: 25px;
    transition: all 0.4s cubic-bezier(.17,.84,.44,1);
}
.miharadai-menu .toggle-button::before {
    border-right: 2px solid #4a4a4a;
    border-top: 2px solid #4a4a4a;
    height: 10px;
    top: 50%;
    left: 50%;
    width: 10px;
    content: "";
    position: absolute;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
    transition: border-color, -webkit-transform .33s ease-out;
    transition: border-color, transform .33s ease-out;
    transition: border-color, transform .33s ease-out, -webkit-transform .33s ease-out;
}
.miharadai-menu ul .pc-only:hover .toggle-button {
    color: #8dc556;
    border-color: #8dc556;
}
.miharadai-menu ul .pc-only:hover .toggle-button::before {
    border-color: #8dc556;
    /* transform: translate(-25%, -30%) rotate(-45deg);
    -webkit-transform: translate(-25%, -30%) rotate(-45deg); */
}
.miharadai-menu ul .pc-only:hover a .toggle-button::before {
    left: 37%;
    transform: translate(-25%, -30%) rotate(-45deg);
    -webkit-transform: translate(-25%, -30%) rotate(-45deg);
}
.miharadai-menu .toggle-button span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}
.miharadai-menu .lower-nav {
    max-height: 0;
    overflow: hidden;
    transform-origin: center top;
    position: relative;
    padding-bottom: 15px;
    width: 100%;
    transition: max-height 0.9s ease-in-out;
}
.miharadai-menu ul .pc-only:hover .lower-nav {
    max-height: 300px;
}
.miharadai-menu .lower-nav ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
.miharadai-menu .sub-menu-top .lower-nav li {
    display: block;
    width: 100%;
    height: 100%;
    align-items: initial;
}
.miharadai-menu .lower-nav ul a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    line-height: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.17,.84,.44,1);
    text-decoration: none;
    padding-left: 25px;
    box-sizing: border-box;
    border-right: initial;
}
.miharadai-menu .lower-nav .ttl {
    width: calc(100% - 30px);
    font-size: 1.2rem;
}
.miharadai-menu .sub-item a {
    width: 100%;
    border-right: initial;
}
.miharadai-menu .sub-menu-btm ul {
    list-style: none;
}
.miharadai-menu .sub-menu-btm li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.miharadai-menu .dep-line {
    width: 100%;
}
.miharadai-menu .dep-line.pc-only .nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: initial;
    height: 11vw;
    max-height: 120px;
}
.miharadai-menu .department ul {
    margin-top: 18px;
}
.miharadai-menu .dep-line .image {
    width: 41%;
    height: 11vw;
    max-height: 120px;
}
.miharadai-menu .dep-line .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.miharadai-menu .dep-line .tbl {
    display: block;
    width: 53%;
    height: 100%;
    background-color: #f1ede6;
    box-sizing: border-box;
    position: relative;
}
.miharadai-menu .dep-line .tbl span {
    position: absolute;
    top: 50%;
    left: 35%;
    white-space: nowrap;
    transform: translate(-35%, -50%);
    -webkit-transform: translate(-35%, -50%);
    -moz-transform: translate(-35%, -50%);
}
.miharadai-menu .dep-line .toggle-button {
    margin: 0 10px;
    width: 25px;
    height: 25px;
}
.miharadai-menu .sub-menu-top ul li.sp-only {
    display: none;
}
.toujinkai-menu .health-center-menu .sub-menu-top ul,
.toujinkai-menu .mihara-garden-menu .sub-menu-top ul,
.toujinkai-menu .mihara-flower-menu .sub-menu-top ul  {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 80%;
    margin: 0 auto;
    gap: 0 16px;
}
.toujinkai-menu .health-center-menu .sub-menu-top ul li,
.toujinkai-menu .mihara-garden-menu .sub-menu-top ul li,
.toujinkai-menu .mihara-flower-menu .sub-menu-top ul li {
    width: calc(100% / 2 - 16px);
    list-style: none;
    box-sizing: border-box;
    margin-bottom: 12px;
}
.toujinkai-menu .health-center-menu .sub-menu-top ul li:nth-child(2n + 1),
.toujinkai-menu .mihara-garden-menu .sub-menu-top ul li:nth-child(2n + 1),
.toujinkai-menu .mihara-flower-menu .sub-menu-top ul li:nth-child(2n + 1) {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.toujinkai-menu .health-center-menu ul a,
.toujinkai-menu .mihara-garden-menu ul a, 
.toujinkai-menu .mihara-flower-menu ul a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
    padding: 20px 10px;
    position: relative;
    box-sizing: border-box;
    vertical-align: middle;
    transition: all 0.4s cubic-bezier(.17, .84, .44, 1);
}
.toujinkai-menu .health-center-menu ul .tbl,
.toujinkai-menu .mihara-garden-menu ul .tbl,
.toujinkai-menu .mihara-flower-menu ul .tbl {
    width: calc(100% - 30px);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}
.toujinkai-menu .health-center-menu,
.toujinkai-menu .mihara-garden-menu,
.toujinkai-menu .mihara-flower-menu {
    padding-top: 25px;
}
.toujinkai-menu .health-center-menu a:hover {
    color: #eea370;
}
.toujinkai-menu .mihara-garden-menu a:hover {
    color: #a0c440;
}
.toujinkai-menu .mihara-flower-menu a:hover {
    color: #dd829c;
}


/* トップ画像 */
.toujinkai .top-content {
    position: relative;
}
.toujinkai .top-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.toujinkai .top-image .images {
    width: 100%;
    /* height: 45vw; */
    height:50vw;
    max-height: 1600px;
    position: relative;
}
.toujinkai .top-image .images .sp-only {
    display: none;
}
/* .toujinkai .top-image .images::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    left: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(129, 189, 241, 1) 5%, rgba(129, 189, 241, 0.8) 40%, rgba(129, 189, 241, 0.5) 60%, rgba(129, 189, 241, 0.1) 80%, rgba(129, 189, 241, 0) 100%);
} */
.toujinkai .top-image .image{
    display:relative;
}
.toujinkai .top-image .image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /* height: 45%; */
    height:100%;
    left: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom, 
        /* rgba(129, 189, 241, 1) 5%, 
        rgba(129, 189, 241, 0.8) 40%, 
        rgba(129, 189, 241, 0.5) 60%, 
        rgba(129, 189, 241, 0.1) 80%, 
        rgba(129, 189, 241, 0) 100% */
        rgba(164, 209, 228, 1) 0%,
        rgba(230, 244, 255, 0.9) 20%,
        rgba(154, 202, 229, 0.6) 36%,
        rgba(214, 240, 253, 0.3) 70%, 
        rgba(204, 224, 244, 0.3) 100%
    );
}
.toujinkai .top-image .image.image-notafter::after{
   background: linear-gradient(
        to bottom, 
        rgba(164, 209, 228, 0) 0%,
        rgba(230, 244, 255, 0) 20%,
        rgba(154, 202, 229, 0.6) 36%,
        rgba(214, 240, 253, 0) 70%, 
        rgba(204, 224, 244, 0) 100%
    );
}
.toujinkai .top-image .title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.toujinkai .top-image .title img {
    width: 100%;
    /* height: 100%; */
    height:auto;
    /* max-width: 80px;
    max-height: 80px; */
    max-width:450px;
}
.toujinkai .top-image .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}
.toujinkai .top-image .images img.exterior1{
    object-position:center;
}
.toujinkai .top-image .images img.exterior2{
    object-position:center 29%;
}
.toujinkai .top-image .img-flx2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.toujinkai .top-image .img-flx2.sp-only {
    display: none;
}
.toujinkai .top-image .pc-only .item:first-child {
    width: calc(100% * (2.75 / 5));
    height: 100%;
}
.toujinkai .top-image .pc-only .item:nth-child(2), .toujinkai .top-image .pc-only .item:last-child {
    width: calc(100% * (1.125 / 5));
    height: 100%;
}


.toujinkai .top-image .img-flx2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}
.toujinkai .top-image .img-flx2 .item:nth-child(2) img {
    object-position: center 5%;
}
.toujinkai .top-image .img-flx2 .item:last-child img {
    object-position: 30% 40%;
}
.toujinkai .top-image .title h1 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.toujinkai .top-image .title .ttl {
    padding-left: 10px;
}
.toujinkai .top-image .title p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding-top: 5px;
}
.toujinkai .internal {
    position: absolute;
    /* top: 10%; */
    top:18%;
    left: 50%;
    transform: translate(-50%, -10%);
    -webkit-transform: translate(-50%, -10%);
    -moz-transform: translate(-50%, -10%);
    color: #ffffff;
    z-index: 900;
    width: 100%;
}
.toujinkai .internal .top-message {
    text-align: center;
    /* padding-top: 35px; */
    /* padding-top:clamp(3.125rem, 0.61rem + 3.66vw, 5rem); 50~80px */
    padding-top:clamp(3.125rem, -2.031rem + 7.5vw, 5rem);
}
.toujinkai .internal .top-message h3 {
    /* font-size: 2rem; */
    font-size:1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.toujinkai .internal .top-message p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.05em;
}
/* トップ画像の他施設リンク先のバルーン表記 */
.toujinkai .page-map {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap:8px;
    width:94%;
    margin:0 auto;
    margin-top:7vw;
}
@media (min-width:1400px){
    .toujinkai .page-map{
        margin-top:13vw;
    }
}
@media (max-width:1400px){
    html.large .toujinkai .top-image .images{
        height:103vw;
        max-height:820px;
    }
    html.large .toujinkai .page-map{
        flex-wrap:wrap;
        margin-top:7rem;
    }
    html.large .toujinkai .page-map .miharadai,
    html.large .toujinkai .page-map .medical-checkup-center,
    html.large .toujinkai .page-map .miharanosono,
    html.large .toujinkai .page-map .miharanohana{
        width: calc(100% / 2 - 20px);
        max-width: initial;
    }
    html.large .toujinkai .page-map .miharadai a img,
    html.large .toujinkai .page-map .medical-checkup-center a img,
    html.large .toujinkai .page-map .miharanosono a img,
    html.large .toujinkai .page-map .miharanohana a img{
        max-height:175px;
    }
}
@media (max-width:1200px){
    .toujinkai .catchcopy>img {
        min-width: 40rem;
    }
}
@media (max-width:900px){
    .toujinkai .catchcopy>img {
    min-width: 30rem;
}
}
.toujinkai .page-map a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    font-size: 1.5rem;
    border-radius: 15px;
    transition: font-size, transform, 0.3s ease-in-out;
}
.toujinkai .page-map a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to right, #3995e6, #68a9e2, #8ba7f0 65%, #9999ef 85%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.toujinkai .page-map a:hover {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    font-size: 1.6rem;
}
/* .toujinkai .page-map a:hover::before {
    opacity: 1;
} */
.toujinkai .page-map .miharadai, .toujinkai .page-map .medical-checkup-center, .toujinkai .page-map .miharanosono, .toujinkai .page-map .miharanohana {
    /* width: 100%; */
    width:calc(calc(100% - calc(8px * 1)) / 4);
    /* height: 20vw;
    max-width: 225px;
    max-height: 225px; */
    /* max-width:225px; */
    max-width:375px;
    text-align: center;
    line-height: 1.3;
}
.toujinkai .page-map .miharadai a {
    display: block;
    position: relative;
    height: 100%;
    /* background: linear-gradient(to left, rgba(57, 149, 230, 0.8), rgba(104, 169, 226, 0.8), rgba(139, 167, 240, 0.8) 65%, rgba(153, 153, 239, 0.8) 85%);
    margin: 0 8px; */
}
.toujinkai .page-map .medical-checkup-center a {
    display: block;
    position: relative;
    height: 100%;
    /* max-width: 225px;
    max-height: 225px;
    background: linear-gradient(to left, rgba(57, 149, 230, 0.8), rgba(104, 169, 226, 0.8), rgba(139, 167, 240, 0.8) 65%, rgba(153, 153, 239, 0.8) 85%);
    margin: 0 8px;
    margin-top: 60px; */
}
.toujinkai .page-map .miharanosono a {
    display: block;
    position: relative;
    height: 100%;
    /* max-width: 225px;
    max-height: 225px;
    background: linear-gradient(to left, rgba(57, 149, 230, 0.8), rgba(104, 169, 226, 0.8), rgba(139, 167, 240, 0.8) 65%, rgba(153, 153, 239, 0.8) 85%);
    margin: 0 8px; */
}
.toujinkai .page-map .miharanohana a {
    display: block;
    position: relative;
    height: 100%;
    /* max-width: 225px;
    max-height: 225px;
    background: linear-gradient(to left, rgba(57, 149, 230, 0.8), rgba(104, 169, 226, 0.8), rgba(139, 167, 240, 0.8) 65%, rgba(153, 153, 239, 0.8) 85%);
    margin: 0 8px;
    margin-top: 60px; */
}
.toujinkai .page-map a span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    white-space: nowrap;
}
.toujinkai .page-map .miharadai a span{
    letter-spacing: 19.2px;
    left:54%;
}
.toujinkai .page-map .medical-checkup-center a span{
    /* letter-spacing: 4.8px; */
    letter-spacing: clamp(0.125rem, -0.563rem + 1vw, 0.25rem);
}
.toujinkai .page-map .miharanosono a span{
    /* letter-spacing: 4.8px; */
    letter-spacing: clamp(0.125rem, -0.563rem + 1vw, 0.25rem);
}
.toujinkai .page-map .miharanohana a span{
    letter-spacing: clamp(-0.25rem, -0.938rem + 1vw, 0rem);
}

/* html.large .toujinkai .page-map a span{
    letter-spacing: -4px;
}
html.large .toujinkai .page-map .miharadai a span{
    letter-spacing: 19.2px;
    left:54%;
}
html.large .toujinkai .page-map .medical-checkup-center a span{
    letter-spacing: 4.8px;
}
html.large .toujinkai .page-map .miharanosono a span{
    letter-spacing: 4.8px;
} */
.toujinkai .recommend {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: auto;
    width: 100%;
    padding: 12px 0;
    /* background-color: rgba(245, 245, 247, 0.9); */
    /* background-image: linear-gradient(90deg, rgba(142, 146, 255, 0.17), rgba(63, 209, 255, 0.17)); */
    background-color: rgba(245, 245, 247, 0.9);
    z-index: 900;
    z-index:1;
}
.toujinkai .recommend:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    
    background-image: linear-gradient(90deg, rgba(142, 146, 255, 0.17), rgba(63, 209, 255, 0.17));

    z-index:-1;
}
.toujinkai .recommend ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 60%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap:7%;
}
.toujinkai .recommend li {
    /* width: calc(100% / 3); */
    width:calc(calc(100% - calc(8px * 3)) / 4);
    height: auto;
    /* width: 100%; */
    width:auto;
    height: 100%;
}
.toujinkai .recommend a {
    color: #000000;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    transition: color 0.3s;
    /* transition: transform, 0.3s ease-in-out; */
}
.toujinkai .recommend a:hover {
    color: #1f7de7;
}
/* .toujinkai .recommend a span:first-child { */
.toujinkai .recommend a span {
    text-align: center;
    /* padding-right: 8px; */
    transition: transform, 0.3s ease-in-out;
}
.toujinkai .recommend a span.link-name {
    font-size: 1.2rem;
    box-sizing: border-box;
    position: relative;
    transition: opacity, 0.3s, ease-in-out;
    padding-top: 8px;
}
.toujinkai .recommend a span.link-name::after {
    content: "";
    margin-top: 1px;
    text-align: center;
    width: 170px;
    height: 10px;
    display: block;
    background-image: url(../images/title-bar.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.toujinkai .recommend a:hover span.link-name::after {
    opacity: 1;
}
.toujinkai .recommend a:hover span{
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
}
.toujinkai .recommend a img {
    width: 100%;
    height: 100%;
    max-height:65px;
    object-fit: contain;
    object-position: center center;
}
/* .toujinkai .recommend li:nth-child(4) a img {
    width: 90%;
    
} */
/* スライダー画像調整 */
.toujinkai .top-image .img-flx {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.toujinkai .top-image .big {
    width: 100%;
}
.toujinkai .top-image .flx-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 45vw;
    max-height: 1500px;
}
.toujinkai .top-image .medium {
    width: 100%;
    height: 22.5vw;
    max-height: 750px;
}
.toujinkai .top-image .medium:first-child img {
    object-position: center 5%;
}
.toujinkai .top-image .medium:last-child img {
    object-position: center 55%;
}
.toujinkai .top-image .img-flx img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.toujinkai .top-image .flex-col .item img {
    height: 100%;
}

/* 理事長メッセージ */
.toujinkai .message {
    position:relative;
    color:var(--text-color);
}
.toujinkai .message::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image: url(../images/message-bg.jpg);
    background-position: center center;
    background-size: cover;
    z-index:-1;
    opacity:0.43;
}
.toujinkai .message .content {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    padding-bottom: 60px;
}
.toujinkai .message .ttl {
    text-align: center;
}
.toujinkai .message .ttl::after {
    content: "";
    margin-top: 3px;
    text-align: center;
    width: 215px;
    height: 22.5px;
    display: inline-block;
    background-image: url(../images/title-bar.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.toujinkai .message h2 {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
    color:var(--text-color);
}
.toujinkai .message .detail {
    padding-top: 35px;
    width: 90%;
    margin: 0 auto;
}
.toujinkai .message .detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    
}
.toujinkai .message .greeting dl {
    float: right;
    padding-top: 20px;
}
.toujinkai .message .greeting dt, .toujinkai .message .greeting dd {
    font-size: 1.3rem;
    line-height: 1.5;

}
.toujinkai .message .greeting dd{
    display:flex;
    align-items: center;
    gap:1.5rem
}
.toujinkai .message .greeting dd span {
    font-size: 1.7rem;
    font-family: serif;
    font-weight: 600;
}
.toujinkai .message .greeting dd img{
    width:auto;
    height:32px;
    object-fit: contain;
}
.toujinkai .message .more {
    padding-top: 130px;
}
.toujinkai .message .more a {
    display: block;
    color: #4e4e4e;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 30px;
    width: 60%;
    max-width: 500px;
    height: 55px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #4e4e4e;
    transition: color, background-color, 0.3s;
}
.toujinkai .message .more a:hover {
    color: #ffffff;
    background-color: #1f7de7;
}
.toujinkai .message .more a span:first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    font-size: 1.2rem;
}
.toujinkai .message .more a span:last-child {
    position: absolute;
    top: 50%;
    left: auto;
    right: 5%;
    transform: translate(-5%, -50%);
    -webkit-transform: translate(-5%, -50%);
    -moz-transform: translate(-5%, -50%);
    font-size: 1.5rem;
}
.toujinkai .facility {
    padding-top: 50px;
    width: 95%;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 20px;
    color:var(--text-color);
}
.toujinkai .facility .ttl {
    text-align: center;
}
.toujinkai .facility .ttl::after {
    content: "";
    margin-top: 3px;
    text-align: center;
    width: 250px;
    height: 22.5px;
    display: inline-block;
    background-image: url(../images/title-bar.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.toujinkai .facility .ttl h2 {
    font-size: 1.7rem;
    text-align: center;
    font-weight: 500;
}
.toujinkai .facility .content {
    padding-top: 50px;
}
.toujinkai .facility .other {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 25px;
    width: 100%;
    box-sizing: border-box;
}
.toujinkai .facility .other a {
    color:var(--text-color);
    text-decoration: none;
    width: 48.5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    transition: .2s ease-in-out;
}
.toujinkai .facility .other a:first-child:hover {
    /* color: #b2e97f; */
    color: #58b0cf;
}
.toujinkai .facility .other a:nth-child(2):hover {
    color: #f3b388;
}
.toujinkai .facility .other a:nth-child(3):hover {
    /* color: #58b0cf; */
    color: #b2e97f;
}
.toujinkai .facility .other a:last-child:hover {
    color: #ed9dc1;
}
.toujinkai .facility .other .img {
    padding: 15px;
    /* background-color: #f7f5f2; */
    background-color:#e6e6e6;
    width: 38.5%;
    box-sizing: border-box;
}
.toujinkai .facility .other .images {
    width: 100%;
    height: 17vw;
    max-height: 175px;
    overflow: hidden;
}
.toujinkai .facility .other .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1s cubic-bezier(.17, .84, .44, 1);
    border:1px solid #fff;
}
.toujinkai .facility .other a:hover .img img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
}
.toujinkai .facility .other .information {
    width: 58.5%;
}
.toujinkai .facility .other h5 {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.3;
}
.toujinkai .facility .other h5 span {
    font-size: 0.9rem;
}
.toujinkai .facility .other p {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.3;
}

/* フッター */
.footer {
    background-image: url(../images/bg-footer.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.footer .footer-wrapper {
    position: relative;
    z-index: 990;
}
.footer .flex-wrap {
    max-width: 1200px;
    width: 95%;
    margin: 20px auto 0;
}
.footer .footer-img {
    padding-top: 60px;
}
.footer .image {
    width: 100%;
    height: auto;
    text-align: center;
}
.footer .image img {
    width: 100%;
    height: 100%;
    max-width: 375px;
    max-height: 80px;
    object-fit: contain;
    object-position: center center;
}
.footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.8) 70%,  rgba(255, 255, 255, 0.75) 80%, rgba(255, 255, 255, 0.7) 100%);
}
.footer .footer-sub {
    padding-top: 50px;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 50px;
}
.footer .footer-sub ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer .footer-sub ul li {
    text-align: center;
}
.footer .footer-sub ul a {
    /* color: #000000; */
    color:var(--text-color);
    text-decoration: none;
    transition: color, 0.3s;
}
.footer .footer-sub li:first-child a:hover {
    color: #58b0cf;
}
.footer .footer-sub li:nth-child(2) a:hover {
    color: #f3b388;
}
.footer .footer-sub li:nth-child(3) a:hover {
    color: #7cc544;
}
.footer .footer-sub li:last-child a:hover {
    color: #ed9dc1;
}
.footer .footer-sub span.small {
    font-size: 0.9rem;
    display: inline-block;
    padding-bottom: 6px;
}
.footer .footer-sub span.big {
    font-size: 1.3rem;
}
.footer .copyright {
    padding: 15px 0;
    text-align: center;
    /* background-color: #524741; */
    background-color:#534741;
    color: #ffffff;
}
.footer .copyright p {
    font-size: 0.9rem;
}

/*医療保険・介護保険*/
.insurance{
    margin-top:1.92rem;
}
.insurance .insurance-list{
    list-style: none;
    position: relative;
    list-style: none;
    padding-left: 0;
    box-sizing: border-box;
}
.insurance .insurance-item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.insurance .insurance-item-column{
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
    padding: 20px 10px;
    position: relative;
    box-sizing: border-box;
    vertical-align: middle;
    transition: all 0.4s cubic-bezier(.17, .84, .44, 1);
    cursor: pointer;
}
.insurance .tbl{
    width: calc(100% - 30px);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}
.insurance .insurance-item-column .ttl::after{
    display:none;
}
.insurance .btn-wrap{

}
.insurance .toggle-button{
    border-radius: 50%;
    border: 1px solid var(--text-color);
    position: relative;
    font-size: 1rem;
    width: 25px;
    height: 25px;
    transition: all 0.4s cubic-bezier(.17, .84, .44, 1);
}
.insurance .toggle-button::before{
    border-right: 2px solid #4a4a4a;
    border-top: 2px solid #4a4a4a;
    height: 10px;
    top: 50%;
    left: 50%;
    width: 10px;
    content: "";
    position: absolute;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
    transition: border-color, -webkit-transform .33s ease-out;
    transition: border-color, transform .33s ease-out;
    transition: border-color, transform .33s ease-out, -webkit-transform .33s ease-out;
}
@media (min-width:750px){
.insurance .insurance-item:hover .toggle-button::before{
    left:37%;
    transform: translate(-25%, -30%) rotate(-45deg);
    -webkit-transform: translate(-25%, -30%) rotate(-45deg);
}    
}

.insurance .lower-nav{
    max-height: 0;
    overflow: hidden;
    transform-origin: center top;
    position: relative;
    padding-bottom: 15px;
    width: 100%;
    transition: max-height 0.9s ease-in-out;
}
.insurance .lower-nav ul{
    position: relative;
    list-style: none;
    padding-left: 0;
    box-sizing: border-box;
    margin-top:15px;
}
.insurance .lower-nav ul .l-nav{
    display: block;
    width: 100%;
    height: 100%;
    align-items: initial;
}
.insurance .lower-nav ul .l-nav>a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    text-align: left;
    width: 100%;
    height: 100%;
    line-height: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.17, .84, .44, 1);
    text-decoration: none;
    padding-left: 25px;
    box-sizing: border-box;
    border-right: initial;
    color: var(--text-color);
}
.insurance .lower-nav ul .l-nav>a:hover{
    color:#1f7de7;
    transition:all 0.4s ease;
}
.insurance .lower-nav ul .ttl::after{
    display:none;
}
.insurance .insurance-item:hover .lower-nav{
    max-height:24rem;
}
.insurance .lower-nav .ttl{
    width:100%;
    font-size: 1.2rem;
    text-align:left;
    padding-left:1rem;
}
.grecaptcha-badge{
    z-index:994;
}


/* 2026.0122追加 フッター部分の修正の制度について修正 => バナー追加 */
.footer .banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer .banner a {
    position: relative;
    width: calc(100% / 3 - 30px);
    margin: 10px 15px;
    height: 15vw;
    text-decoration: none;
    /* width: calc(100% / 3 - 40px); */
    padding: 0px 5px;
    text-align: center;
    /* margin: 0 20px; */
    color: #ffffff;
    transition: border, background-color, 0.3s;
    height: auto;
    box-sizing: border-box;
    transition: font-size, transform, 0.3s ease-in-out;
}
.footer .banner a span.ttl-top {
    font-size: 1.5rem;
    display: block;
    width: 100%;
    padding: 25px 0;
    transition: 0.3s background-color ease-in-out;
    color: #949494;
}
.footer .banner a span.ttl-top::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    background: linear-gradient(to right, #ecedff 30%, #e4f3ff 60%, #e4f3ff 100%);
    border-radius: 1px;
}
.footer .banner a span.ttl-sec {
    display: inline-block;
    font-size: 1rem;
}
.footer .banner a span.wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    color: #fff;
}
.footer .banner a:first-child span.wrap {
    background-color: #85bcfc;
}
.footer .banner a:nth-child(2) span.wrap {
    background-color: #f8be7d;
}
.footer .banner a:last-child span.wrap {
    background-color: #7ed482;
}
.footer .banner a span.click {
    display: inline-block;
    margin-left: 5px;
}
.footer .banner a img {
    width: 100%;
    height: 100%;
    max-width: 30px;
    max-height: 35px;
    transform: rotate(-15deg);
}
.footer .banner a:hover {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
}