/** 
  三原の園トップページ 
*/
:root {
  --text-color: #4d4d4d;
  --flower-primary:#ed9dc1;
  --flower-secondary:#e4a8b6;
  --flower-tertiary:#dd829c;
  --flower-accent-red:#d15178;
  --flower-base:#f6e5e9;
}

html {
    font-family: "kiwi", "ヒラギノ角ゴ Pro W3", "Josefin Sans", "メイリオ", "hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    /* font-size: 1rem; */
    font-size:1.3rem;
}
body {
    /* padding-top: 100px; */
    color: #4d4d4d;
}

/* 文字サイズを「大」にしたとき */
html.large {
    /* font-size: 1.3rem; */
    font-size:1.6rem;
}
.sp-only{
  display:none;
}
.sp-br{
  display:none;
}
.inline-block{
  display:inline-block;
}

/*スクロールヒント部分の調整(中央に配置するよう変更)*/
.scroll-hint-icon{
  top:50%!important;
  left:50%!important;
  transform:translate(-50%, -50%);
}

/* ヘッダー */
header {
    /* position: fixed; */
    position:sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: #ffffff !important;
    z-index: 999;
    height: 100px;
}
.mihara-flower-header .header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2px 20px;
    align-items: center;
    margin: 0 auto;
    height: 100px;
}
.mihara-flower-header .logo-header {
    flex-grow: 1;
    z-index: 999;
}
.mihara-flower-header .logo-header img {
    /* width: 400px;
    height: auto;
    max-width: 100%; */
    width:auto;
    height:75px;
    max-height:100%;
}
.mihara-flower-header .light-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    border-right: 1px solid var(--text-color);
}
.mihara-flower-header .btn-line {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    flex-grow: 2;
    padding-right: 20px;
    width: 100%;
    border-right: 1px solid var(--text-color);
}
.mihara-flower-header .word-line {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.mihara-flower-header .word-line p {
    font-size: 1.1rem;
    padding-right: 15px;
    white-space: nowrap;
}
.mihara-flower-header .word-line a {
    display: inline-block;
    position: relative;
    font-size: 1.1rem;
    text-decoration: none;
    color: #ffffff;
    background-color: #9c9c9c;
    min-width: 85px;
    min-height: 30px;
    text-align: center;
    vertical-align: middle;
    border-radius: 10px;
    transition: background-color, 0.3s;
}
.mihara-flower-header .word-line a.bg-blue {
    background-color: var(--flower-tertiary);
}
.mihara-flower-header .word-line a:nth-child(2) {
    margin-right: 10px;
}
.mihara-flower .sub-trans .sub-trans-item:nth-child(1) {
    margin-right: 5px;
}
.mihara-flower .sub-trans .sub-trans-item:nth-child(2) {
    margin-left: 5px;
}
.mihara-flower-header .word-line a:hover {
    background-color: var(--flower-tertiary);
}
.mihara-flower-header .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;
}
.mihara-flower-header .trans-line {
    padding-top: 20px;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.mihara-flower-header .trans-line a {
    text-decoration: none;
    font-size: 1.1rem;
    /* color: #000000; */
    color:var(--text-color);
    transition: color, 0.3s;
}
.mihara-flower-header .trans-line a:first-child {
    padding-right: 20px;
    border-right: 1px solid #000000;
    border-right: 1px solid var(--text-color);
}
.mihara-flower-header .trans-line a:last-child {
    padding-left: 20px;
}
.mihara-flower-header .trans-line a:hover {
    color: var(--flower-tertiary);
}
.mihara-flower-header .tel-line {
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.mihara-flower-header .tel-line a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    /* color: #000000; */
    color:var(--text-color);
    transition: color, 0.3s;
}
.mihara-flower-header .tel-line a:hover {
    color: var(--flower-tertiary);
}
.mihara-flower-header .tel-line img {
    width: 30px;
    height: 30px;
}
.mihara-flower-header .tel-line a span {
    font-size: 1.3rem;
    padding-left: 3px;
}

/* トグルメニュー */
.mihara-flower-menu .sp-only {
    display: none;
}
.mihara-flower-header .humbarger-menu {
    display: block;
    margin: auto 0;
    /* width: 55px; */

    padding-left: 20px;
}
html.large .mihara-flower-header .humbarger-menu{
    width:80px;
}
.mihara-flower-header .humbarger-menu:hover {
    cursor: pointer;
}
.mihara-flower-header .humbarger-menu span:not(.tbl) {
    position: relative;
    display: block;
    /* background-color: #000000; */
    background-color: var(--text-color);
    height: 2px;
    width: 40px;
    margin: 12px auto;
    transition: 0.3s ease-in-out;
}
.mihara-flower-header .humbarger-menu .tbl {
    /* font-size: 0.9rem; */
    font-size:0.8rem;
    text-wrap: nowrap;
    text-align: center;
    display: block;
    margin-top: 8px;
    letter-spacing: -1px;
}
.mihara-flower-header .arrow span:first-child {
    transform: translateY(14px) rotate(45deg);
    -webkit-transform: translateY(14px) rotate(45deg);
}
.mihara-flower-header .arrow span:nth-child(2) {
    opacity: 0;
}
.mihara-flower-header .arrow span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
    -webkit-transform: translateY(-14px) rotate(-45deg);
}

/* .mihara-flower-menu .sub-menu-lists {
    display: none;
} */
.mihara-flower-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);
}
.mihara-flower-menu .sub-menu {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    padding-top: 160px;
    padding-bottom: 80px;
}
/* .mihara-flower-menu .sub-menu-lists {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.mihara-flower-menu .sub-menu-top {
    width: calc(100% - 500px);
    text-align: left;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
} */
 
.mihara-flower-menu .sub-menu-lists {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.mihara-flower-menu .sub-menu-lists .sub-menu-top {
    width: calc(100% - 24rem);
    text-align: left;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}
.mihara-flower-menu .sub-menu-top ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.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);
}
.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;
}
.mihara-flower-menu ul a:hover {
    color:var(--flower-secondary);
}
.mihara-flower-menu ul a:hover .arrow-txt {
    color:var(--flower-secondary);
    border-color:var(--flower-secondary);
}
.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;
}
.mihara-flower-menu .sub-menu .sp-only {
    display: none;
}
.mihara-flower-menu .sub-menu-btm {
    width: 24rem;
    padding-left: 4%;
    box-sizing: border-box;
}
.mihara-flower-menu .sub-menu-btm ul {
    list-style: none;
}
.mihara-flower-menu .sub-menu-btm li {
    width: 100%;
    display: block;
    margin-bottom: initial;
    margin-bottom: 15px;
}
.mihara-flower-menu .sub-menu-btm .insurance-item-column {
    padding: 15px 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.17, .84, .44, 1);
}
.mihara-flower-menu .sub-menu-btm .insurance-item .tbl {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.mihara-flower-menu .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);
}
.mihara-flower-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;
}
.mihara-flower-menu ul .pc-only:hover .toggle-button {
    color: var(--flower-secondary);
    border-color: var(--flower-secondary);
}
.mihara-flower-menu ul .pc-only:hover .toggle-button::before {
    border-color: var(--flower-secondary);
    /* transform: translate(-25%, -30%) rotate(-45deg);
    -webkit-transform: translate(-25%, -30%) rotate(-45deg); */
}
.mihara-flower-menu ul .pc-only:hover .toggle-button::before {
    left: 37%;
    transform: translate(-25%, -30%) rotate(-45deg);
    -webkit-transform: translate(-25%, -30%) rotate(-45deg);
}
.mihara-flower-menu .toggle-button span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}
.mihara-flower-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;
}
.mihara-flower-menu ul .pc-only:hover .lower-nav {
    max-height: 475px;
}
.mihara-flower-menu .lower-nav ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
.mihara-flower-menu .sub-menu-top .lower-nav li {
    display: block;
    width: 100%;
    height: 100%;
    align-items: initial;
}
.mihara-flower-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;
}
.mihara-flower-menu .lower-nav .ttl {
    width: calc(100% - 30px);
    font-size: 1.2rem;
}
.mihara-flower-menu .sub-item a {
    width: 100%;
    border-right: initial;
}
.mihara-flower-menu .sub-menu-btm ul {
    list-style: none;
}
.mihara-flower-menu .dep-line {
    width: 100%;
}
.mihara-flower-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;
}
.mihara-flower-menu .department ul {
    margin-top: 18px;
}
.mihara-flower-menu .dep-line .image {
    width: 41%;
    height: 11vw;
    max-height: 120px;
}
.mihara-flower-menu .dep-line .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.mihara-flower-menu .dep-line .tbl {
    display: block;
    width: 53%;
    height: 100%;
    background-color: #f1ede6;
    box-sizing: border-box;
    position: relative;
}
.mihara-flower-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%);
}
.mihara-flower-menu .dep-line .toggle-button {
    margin: 0 10px;
    width: 25px;
    height: 25px;
}

/* 20251127 フッター修正 */
.mihara-flower-footer .footer-line {
    padding-top: 50px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}
.mihara-flower-footer .footer-line ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mihara-flower-footer .footer-line ul li {
    text-align: center;
}
.mihara-flower-footer .footer-line ul a {
    /* color: #000000; */
    color: var(--text-color);
    text-decoration: none;
    transition: color, 0.3s;
}
.mihara-flower-footer .footer-line span.big {
    font-size: 1.3rem;
}
.mihara-flower-footer .footer-line span.small {
    font-size: 1rem;
    display: inline-block;
    padding-bottom: 6px;
}
.mihara-flower-footer .copyright {
    position: relative;
    padding: 15px 0;
    text-align: center;
    background-color: #534741;
    color: #ffffff;
    z-index: 990;
}
.mihara-flower-footer .copyright p {
    font-size: 0.9rem;
}


/* トップ画像 */
.mihara-flower .top-content .hero {
    position: relative;
}

/* .mihara-flower .top-content .hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(171, 202, 241, 0.1);
} */
.mihara-flower .top-content .hero::before {
    content: '';
    position: absolute;
    top: 62%;
    right: 0;
    bottom: 0;
    left: 0;
    background-color:rgb(228, 168, 182, 0.6);
}
.mihara-flower .top-content .hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 50%, rgba(255, 255, 255, 0) 85%, rgba(0, 0, 0, 0) 100%);
}
.mihara-flower .top-content .hero .images {
    width: 100%;
    height: 45vw;
}
.mihara-flower .top-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center center; */
    object-position: center 78%;
}
.mihara-flower .catchcopy {
    position: absolute;
    top: 12%;
    left: 5%;
    transform: translate(-5%, -50%);
    -webkit-transform: translate(-5%, -50%);
    -moz-transform: translate(-5%, -50%);
    z-index: 990;
}
.mihara-flower .catchcopy>img {
    width:100%;
    height:100%;
    max-width:430px;
    max-width:20.67rem;
}
/* html.large .mihara-flower .catchcopy>img{
    max-width:815px;
} */
.mihara-flower .catchcopy p {
    font-size: 2.3rem;
    color: #ffffff;
    text-shadow: 6px 8px 16px #363636;
}
.mihara-flower .transfer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    /* width: 50%; */
    /* width:70%; */
    width:90%;
    margin: 0 auto;
    z-index: 10;
    /* max-width: 1200px; */
    /* max-width:775px; */
    max-width:1000px;
    max-height: 30vh;
    margin-top: 10vw;
}
.mihara-flower .important {
    height: auto;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
}
.mihara-flower .important-item {
    /* width: 25%; */
    /* width:calc(100% / 4); */
    width:calc(100% / 5);
    display:flex;
    flex-direction: column;
}
.mihara-flower .important a {
    display: flex;
    flex-direction: column;
    flex:1 1 auto;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    /* color: #000000; */
    color:var(--text-color);
    background-color: #ffffff;
    border-radius: 5px;
    padding: 25px 0;
    transition: background-color, 0.3s;
}
.mihara-flower .important-item:not(:first-child) a {
    /* border-left: 1px solid #000000; */
    border-left: 1px solid var(--text-color);
}
.mihara-flower .important .trans-item {
    width: 8vw;
    height: 8vw;
    max-width: 70px;
    max-height: 70px;
    min-height: 40px;
    min-width: 40px;
    transition: transform, 0.3s;
}
.mihara-flower .important a:hover .trans-item {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.mihara-flower .important a:hover{
    background-color:#fdf6f8;
}
.mihara-flower .important .trans-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    vertical-align: bottom;
}
.mihara-flower .important .trans-txt {
    width: 100%;
    padding-top: 20px;
    flex-grow:1;
}
.mihara-flower .trans-txt h3 {
    font-size: 1.05rem;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 500;
    /* white-space: nowrap; */
}
.mihara-flower .sub-trans {
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-top: 25px;
}
.mihara-flower .sub-trans .sub-trans-item {
    width: 50%;
    min-width: 240px;
}
.mihara-flower .sub-trans .sub-trans-item a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    /* color: #000000; */
    color:var(--text-color);
    background-color: #ffffff;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    max-height: 10vh;
    padding: 10px 20px;
    box-sizing: border-box;
    transition: color, background-color, 0.3s;
}
.mihara-flower .sub-trans .sub-trans-item a:hover {
    background-color: #f6ffed;
}
/* .mihara-flower .sub-trans-item:nth-child(1){
    margin-right: 10px;
} 
.mihara-flower .sub-trans-item:nth-child(2) {
    margin-left: 10px;
} */
.mihara-flower .sub-trans .sub-trans-item .item {
    width: 8vw;
    height: 8vw;
    max-width: 60px;
    max-height: 60px;
    transition: transform, 0.3s;
}
.mihara-flower .sub-trans .sub-trans-item a:hover .item {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.mihara-flower .sub-trans .sub-trans-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    vertical-align: bottom;
}
.mihara-flower .sub-trans .sub-trans-item .txt {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 12px;
    width: 80%;
}
.mihara-flower .sub-trans .sub-trans-item .txt h3 {
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-wrap: nowrap;
}
.mihara-flower .sub-trans .sub-trans-item .txt span {
    font-size: 20px;
}
.mihara-flower .outpatient tr th:nth-child(1), .mihara-flower .outpatient tr th:nth-child(2), .mihara-flower .outpatient tr th:nth-child(3) {
    position: sticky;
}
.mihara-flower .outpatient tr .fst, .mihara-flower .outpatient tr .scd {
    position: sticky;
}

/* （三原台病院共通） */
.mihara-flower .sub-contents {
    max-width: 1200px;
    width: 95%;
    margin: 50px auto;
    padding-top: 50px;
    border-top: 2px solid #999999;
}
.mihara-flower .sub-contents h2 {
    font-size: 1.7rem;
    /* color: #5facdf; */
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ピックアップ */
.mihara-flower .pickup.sub-contents {
    max-width: initial;
    width: initial;
    margin: 50px auto;
}
.mihara-flower .pickup .pickup-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}
.mihara-flower .pickup .ttl {
    padding-bottom: 30px;
}
.mihara-flower .pickup .pickup-wrap::after {
    content: "";
    position: absolute;
    background-color: #f7f5f2;
    z-index: -1;
    top: 30%;
    left: 0;
    right: calc(((100vw - 100%) / 2) * -1);
    width: 100%;
    height: calc(100% - 120px);
    border-radius: 0 5px 5px 0;
}
.mihara-flower .pickup .content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    position: relative;
    z-index: 1;
    width: 95%;
    height: 100%;
}
.mihara-flower .pickup .main-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mihara-flower .pickup .main-line a {
    /* color: #000000; */
    color:var(--text-color);
    text-decoration: none;
    width: calc(100% / 3.2);
    display: block;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, .1);
    transition: .2s ease-in-out;
    transition-property: box-shadow, color;
    background-color: #fff;
    overflow: hidden;
}
.mihara-flower .pickup .main-line a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.mihara-flower .pickup .main-line a:hover {
    /* color: #1f7de7; */
    color:var(--flower-accent-red);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .15);
}
.mihara-flower .pickup .main-line .img {
    height: 220px;
}
.mihara-flower .pickup .main-line img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.17, .84, .44, 1);
}
.mihara-flower .pickup .main-line .information {
    padding: 15px;
    /* padding-bottom: 80px; */
    padding-bottom:3.36rem;
    box-sizing: border-box;
    text-align: left;
    background-color: #ffffff;
    position: relative;height: calc(100% - 220px);
}
.mihara-flower .pickup .main-line .cate {
    opacity: 0.5;
    font-size: 1rem;
    line-height: 1.5;
}
.mihara-flower .pickup .main-line p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.05rem;
    margin-top: 8px;
    line-height: 1.3;
}
.mihara-flower .pickup .main-line .date {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Open Sans', sans-serif;
    margin-top: 20px;
    /* width: 35px; */
    width:1.68rem;
    bottom: 15px;
}
.mihara-flower .pickup .main-line .year {
    display: block;
    text-align: left;
    font-size: 1.1rem;
}
.mihara-flower .pickup .main-line .day {
    display: block;
    font-size: 1.1rem;
    text-align: right;
}
.mihara-flower .pickup .main-line .date::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #383838;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
}

.mihara-flower .pickup .sub-line {
    padding-top: 45px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 25px;
}
.mihara-flower .pickup .sub-line a {
    /* color: #000000; */
    color:var(--text-color);
    text-decoration: none;
    width: calc(100% / 3.2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    transition: .2s ease-in-out;
    transition-property: box-shadow, color;
    background-color: #ffffff;
    height: 100px;
}
.mihara-flower .pickup .sub-line a:hover {
    color:var(--flower-accent-red);
}
.mihara-flower .pickup .sub-line a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.mihara-flower .pickup .sub-line .img {
    width: 30%;
    height: 100%;
    overflow: hidden;
}
.mihara-flower .pickup .sub-line img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.17, .84, .44, 1);
}
.mihara-flower .pickup .sub-line .information {
    width: 67%;
}
.mihara-flower .pickup .sub-line .information p {
    font-size: 1.05rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.3;
}

/* 新着情報 */
.mihara-flower .news-wraper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mihara-flower .news .hospital {
    /* width: calc(100% * 0.6); */
    width:100%;
    padding-top: 30px;
}
.mihara-flower .news .hospital .tbl-ttl h3 {
    font-size: 1.6rem;
    color: var(--flower-primary);
    font-weight: 500;
    letter-spacing: 0.05em;
}
.mihara-flower .news .tbl-ttl {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mihara-flower .news .archive {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #9c9c9c;
    border-radius: 25px;
    text-decoration: none;
    color:var(--text-color);
    padding: 10px 12px;
    /* width: 130px; */
    width:8.17rem;
    transition: color, background-color, 0.3s;
    font-size: 1.05rem;
}
.mihara-flower .news .archive:hover {
    color: #ffffff;
    background-color: var(--flower-tertiary);
}
.mihara-flower .news .news-wrap {
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.mihara-flower .news .news-content {
    /* width: 48.75%; */
    width:calc(calc(100% - 1.25%) / 2);
}
.mihara-flower .news .category .ttl {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.mihara-flower .news .category .img {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.mihara-flower .news .category .image {
    width: 5vw;
    height: 5vw;
    max-width: 35px;
    max-height: 35px;
}
.mihara-flower .news .category .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    min-width: 23px;
    min-height: 23px;
}
.mihara-flower .news .category .ttl .mark {
    display: block;
    width: 20px;
    height: 20px;
    min-width:20px;
    min-height:20px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    position: relative;
}
.mihara-flower .news .category .ttl .mark span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.mihara-flower .news .category h3 {
    padding-left: 8px;
    font-size: 1rem;
    font-weight: 500;
}
.mihara-flower .news .date {
    /* width: 50px; */
    width:2.4rem;
    text-align: center;
}
.mihara-flower .news a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    /* color: #000000; */
    color:var(--text-color);
    transition: color, border, 0.3s;
}
.mihara-flower .news .hospital .news-data a:hover {
    color: #b2e97f;
    color:var(--flower-tertiary);
}
.mihara-flower .news .hospital .news-data a:hover .day {
    border-color: #b2e97f;
    border-color:var(--flower-tertiary);
}
.mihara-flower .news .date .year {
    font-size: 0.95rem;
    display: block;
    padding-bottom: 3px;
}
.mihara-flower .news .date .day {
    display: block;
    font-size: 0.95rem;
    /* border-top: 1px solid #000000; */
    border-top: 1px solid var(--text-color);
    padding-top: 3px;
    transition: color, border, 0.3s;
}
.mihara-flower .news .news-inf {
    padding-top: 10px;
}
.mihara-flower .news .news-data {
    padding: 25px 0;
    /* border-top: 1px solid #000000; */
    border-top: 1px solid var(--text-color);
}
.mihara-flower .news .news-data .title {
    padding-left: 10px;
    font-size: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.mihara-flower .news .day-reha {
    width: calc(100% * 0.375);
    padding-top: 30px;
}
.mihara-flower .news .day-reha .tbl-ttl h3 {
    font-size: 1.6rem;
    color: #eb9864;
    font-weight: 500;
}
.mihara-flower .news .day-reha .news-data a:hover, .mihara-flower .news .day-reha .news-data a:hover .day {
    color: #eb9864;
    border-color: #eb9864;
}



.mihara-flower .facility {
    margin-top: 100px;
    border-top: initial;
}
.mihara-flower .facility .ttl {
    text-align: center;
}
.mihara-flower .facility .ttl h2 {
    position: relative;
}
.mihara-flower .facility .ttl::after {
    content: "";
    margin-top: 3px;
    text-align: center;
    width: 215px;
    height: 22.5px;
    display: inline-block;
    background-image: url(../images/top/title-bar.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.mihara-flower .facility .content {
    padding-top: 50px;
}
.mihara-flower .facility .other {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    flex-wrap:wrap;
    row-gap:25px;
}
.mihara-flower .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;
}
.mihara-flower .facility .other a:hover {
    color: #58b0cf;
}
.mihara-flower .facility .other .img {
    padding: 15px;
    background-color: #f7f5f2;
    width: 38.5%;
    box-sizing: border-box;
}
.mihara-flower .facility .other .images {
    width: 100%;
    height: 17vw;
    max-height: 200px;
    overflow: hidden;
}
.mihara-flower .facility .other .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1s cubic-bezier(.17, .84, .44, 1);
}
.mihara-flower .facility .other a:hover .img img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
}
.mihara-flower .facility .other .information {
    width: 58.5%;
}
.mihara-flower .facility .other h5 {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.3;
}
.mihara-flower .facility .other h5 span {
    font-size: 0.9rem;
}
.mihara-flower .facility .other p {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.3;
}
.mihara-flower .facility .other a:nth-child(2):hover{
    color:#f3b388;
}
.mihara-flower .facility .other a:last-child:hover {
    /* color: #ed9dc1; */
    color:#b2e97f;
}

/* フッター */
.mihara-flower-footer {
    background-image: url(../images/bg-footer.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.mihara-flower-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%);
}
.mihara-flower-footer .footer-wrapper {
    max-width: 1200px;
    width: 95%;
    margin: 20px auto 0;
    position: relative;
    z-index: 990;
}
.mihara-flower-footer .footer-img {
    padding-top: 70px;
}
.mihara-flower-footer .image {
    width: 100%;
    height: auto;
}
.mihara-flower-footer .image a {
    z-index: 990;
}
.mihara-flower-footer .image img {
    width: 100%;
    height: 100%;
    /* max-width: 375px;
    max-height: 80px; */
    max-width:240px;
    object-fit: contain;
    object-position: center center;
    z-index: 990;
}
.mihara-flower-footer .footer-sub {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
}
.mihara-flower-footer .footer-sub p {
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}
.mihara-flower-footer .footer-sub dd {
    padding-top: 5px;
}
.mihara-flower-footer .footer-sub a {
    color:var(--text-color);
    text-decoration: none;
    transition: color, 0.3s;
}
.mihara-flower-footer .question, .mihara-flower-footer .contact {
    padding-top: 20px;
    font-size: 1.15rem;
}
.mihara-flower-footer .footer-sub .copyright {
    padding-top: 30px;
}
.mihara-flower-footer .footer-sub .copyright p {
    font-size: 0.9rem;
}
.mihara-flower-footer .lists {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.mihara-flower-footer .lists a {
    /* color: #000000; */
    color:var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    margin: 10px 0;
    transition: color, 0.3s;
    display:flex;
}
.mihara-flower-footer .lists span:last-child {
    display: inline-block;
    padding-left: 20px;
}
.mihara-flower-footer a:hover {
    color: var(--flower-tertiary);
}
.mihara-flower-footer .sp-only {
    display: none;
}
.mihara-flower-footer .footer-line li:first-child a:hover {
    color: #1f7de7;
}
.mihara-flower-footer .footer-line li:nth-child(2) a:hover {
    color: #58b0cf;
}
.mihara-flower-footer .footer-line li:nth-child(3) a:hover {
    color: #f3b388;
}
.mihara-flower-footer .footer-line li:last-child a:hover {
    color: #7cc544;
}


/* サブページ共通 */
.sub-page .top-base .img {
    position: relative;
}
.sub-page .top-base .images {
    width: 100%;
    /* height: 20vw; */
    height:30vw;
    max-height: 800px;
}
.sub-page .top-base .img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.sub-page .top-base .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% 28%;
    transition: all 0.3s;
}
.sub-page .rel-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 100;
}
.sub-page .top-base .ttl {
     position: absolute;
    /*top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%); */
    top:15%;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    max-width:1200px;
    width:90%;
    margin:0 auto;
    z-index: 110;
}
.sub-page .top-base .ttl h1 {
    font-size: 2.3rem;
    color: #f5f4f4;
    font-weight: 500;
    /* text-shadow: 4px 4px 10px #161616; */
    text-shadow: 3px 3px 10px rgb(127, 102, 102, 0.57);
    mix-blend-mode:multiply;
}
.sub-page .top-base {
    padding-top: 130px;
}
.sub-page .important-wrap {
    background-color: #e7eaef;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 130px;
    transition:top 0.8s ease-out;
}
.sub-page .important-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 100;
}
.sub-page .important-list .important-item {
    /* width: calc(100% / 6); */
    width:calc(100% / 5);
    background-color: #eff2f5;
    height: 130px;
}
.sub-page .important-item a {
    position: relative;
    text-decoration: none;
    /* color: #000000; */
    color:var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 130px;
    transition: all 0.3s;
    position:relative;
    top:50%;
    transform:translateY(-50%);
}
.sub-page .important-item a::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-right: 2px solid #dedede;
    border-bottom: 2px solid #dedede;
    bottom: 7px;
    right: 7px;
}
.sub-page .important-list .important-item
/* .sub-page .important-item:nth-child(4) a {
    padding: initial;
} */
.sub-page .important-item a:hover {
    background-color: #eff2f5;
}
.sub-page .important-item a:hover .trans-item img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
}
.sub-page .important-item:not(:first-child) a:hover {
    border-color: initial;
}
.sub-page .important-item .trans-item {
    width: 5vw;
    height: 5vw;
    max-width: 55px;
    max-height: 55px;
}
.sub-page .important-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    vertical-align: bottom;
    transition: all 0.3s;
}
.sub-page .important-item .trans-txt {
    width: 100%;
    padding-top: 10px;
}
.sub-page .important-item:last-child .trans-txt {
    padding-top: 3px;
}
.sub-page .important-item .trans-txt h3 {
    font-size: 1.05rem;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 500;
    white-space: nowrap;
}
.sub-page .crumb-wrap {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.sub-page .crumb {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 2%;
    left: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 1.2rem;
}
.sub-page .crumb span {
    margin-right: 8px;
    margin-left: 8px;
}
.sub-page .crumb span:first-child {
    margin-left: initial;
}
.sub-page .crumb span:last-child {
    margin-right: initial;
}
.sub-page .crumb a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity, text-decoration-color, 0.3s;
}
.sub-page .crumb a:hover {
    opacity: 0.8;
    text-decoration-color: transparent;
}
.sub-page .content {
    padding-top: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.mihara-flower .important-wrap .important-item:not(:first-child) a {
    border-left: 1px solid #dedede;
}
/* .sub-page .content .tbl-wrap {
    display: none;
} */
.sub-page .content .relation {
    padding-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    /* align-items: center; */
    align-items:stretch;
    flex-wrap: wrap;
    gap:10px 40px;
}
.sub-page .content .relation a {
    position: relative;
    font-size: 1.1rem;
    /* width: calc(100% / 3 - 40px); */
    width:calc(calc(100% - calc(40px * 2)) / 3);
    height: 100%;
    padding: 25px 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;
}
.sub-page .content .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%); */
    background: linear-gradient(to right, #fdf6f8 30%, var(--flower-base) 60%, var(--flower-base) 100%);
    border-radius: 8px;
}
.sub-page .content .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: #6bb4b9; */
    background:var(--flower-secondary);
    transition: 0.3s background-color ease-in-out;
}
.sub-page .content .relation a:hover::after {
    background-color: #9c9c9c;
}
/* .sub-page .content .relation a:first-child {
    margin-left: 0;
}
.sub-page .content .relation a:nth-child(3) {
    margin-right: 0;
} */
.sub-page .sub-info {
    padding-top: 50px;
}

.sub-page .content .ttl {
    text-align: center;
    padding-bottom:40px;
}
.sub-page .content .ttl h2 {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
}
.sub-page .content .ttl::after {
    content: "";
    margin-top: 3px;
    text-align: center;
    width: 275px;
    height: 20px;
    display: inline-block;
    background-image: url(../images/top/title-bar.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

/*******************************
 以下コンテンツ部分共通
********************************/
.common .relation a.active{
  cursor: auto;
  pointer-events: none;  
}
.common .relation a:after{
  background-color:var(--flower-tertiary);
}
.common .relation a.active:after{
  background-color:#9c9c9c;
}
.common .tbl-ttl{
  padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    /* margin-top:40px; */
}
.common .tbl-ttl::before,
.common .tbl-ttl::after{
  content: "";
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  border-radius: 10px;
}
.common .tbl-ttl::before{
  width: 100px;
  background-color: var(--flower-primary);
  z-index: 1;
}
.common .tbl-ttl::after{
  width: 100%;
  background-color: #c3c3c3;
}
.common .tbl-ttl h3{
  font-size:1.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.common .tbl-ttl h2{
  font-size:1.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.common .sub-ttl{
  padding-top: 40px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}
.common .sub-ttl:before,
.common .sub-ttl:after{
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
}
.common .sub-ttl:before{
  width: 100px;
  background-color: var(--flower-primary);
  z-index: 1;
}
.common .sub-ttl:after{
  width: 100%;
  background-color: #c3c3c3;
}
.common .sub-ttl h4{
  font-size:1.3rem;
  font-weight:500;
}
.common .sub-ttl h3{
  font-size:1.3rem;
  font-weight:500;
}
.common .content-block{
  padding:40px 0;
  display:none;
}
.common .content-block.active{
  display:block;
}
.common .content-box{
    padding-bottom:40px;
}
.common .content-box:last-child{
    padding-bottom:0;
}
.common .content-box p{
  font-size:1.1rem;
  letter-spacing: 0.05em;
  line-height:1.6;
  text-align:justify;
}
.common .content-box ul:not(.policy-list){
  list-style:none;
  font-size:1.1rem;
  letter-spacing: 0.05em;
  line-height:1.6;
}
.common .content-box ul:not(.policy-list)>li:not(.ten,.kome){
  padding-bottom:20px;
}
.common .content-box ul:not(.policy-list)>li.ten,
.common .content-box ul:not(.policy-list)>li.kome{
    padding-bottom:10px;
}
.common .content-box ul:not(.policy-list)>li:last-child{
  padding-bottom:0;
}
.common .content-box ul:not(.policy-list)>li>span{
  display:inline-block;
  border-bottom:3px dotted var(--flower-secondary);
  margin-bottom:10px;
}
.common .content-box ul:not(.policy-list)>li>p{
  padding-left:1.1rem;
}
.common .sub2-ttl{
  font-size:1.2rem;
  font-weight:500;
  padding-top:40px;
  margin-bottom:20px;
}
.common .sub2-ttl>span{
  color:var(--flower-tertiary);
}
.common .ten{
  position:relative;
  padding-left:1.1rem;
}
.common .num{
  position:relative;
  padding-left:1.4rem;
}
.common .kome{
  position:relative;
  padding-left:1.3rem;
}
.common .ten::before,
.common .num::before,
.common .kome::before{
  position:absolute;
  top:0;
  left:0;
}
.common .ten::before{
  content:"・";
}
.common .num1::before{
  content:"1.";
}
.common .num2::before{
  content:"2.";
}
.common .num3::before{
  content:"3.";
}
.common .kome::before{
  content:"※";
}


/*コンテンツ内のページ内リンク(ページトップのリンクではない)*/
.common .inner-relation {
    padding-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items:stretch;
    flex-wrap: wrap;
    gap:10px 40px;
}
.common .inner-relation a {
    position: relative;
    font-size: 1.1rem;
    width:calc(calc(100% - calc(40px * 2)) / 3);
    height: auto;
    padding: 25px 5px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: background-color, 0.3s;
    height:auto;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    box-sizing: border-box;
    border-radius:8px;
}
.common .inner-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;
}
.common .inner-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-color: var(--flower-secondary);
    transition: 0.3s background-color ease-in-out;
}
.common .inner-relation a.active::after,
.common .inner-relation a:hover::after {
    background-color: #9c9c9c;
}
.common .inner-relation a.active{
  cursor:auto;
  pointer-events: none;
}
/*アコーディオン部分*/
.common .accodion-block{
  padding:40px 0;
  width:100%;
  list-style:none;
}
.common .accodion-block>a{
  display:flex;
  align-items:flex-end;
  gap:5px;
  color:var(--text-color);
  text-decoration: none;
  transition:color 0.5s ease;
}
.common .accodion-block>a>img{
  width:auto;
  height:100%;
  max-height:45px;
  object-fit: contain;
}
.common .accodion-block>a>span{
  font-size:1.2rem;
}
.common .accodion-block>a:hover{
  color:var(--flower-primary);
}
.common .accodion-block ul{
  list-style: none;
  position:relative;
}
.common li.accodion{
  width:100%;
  margin:15px 0;
  position:relative;
}
.common li.accodion:last-of-type{
  margin-bottom:0;
}
.common li.accodion:last-of-type{
  margin-bottom:0;
}
.common li.accodion .accodion-ttl{
  border-radius:10px;
  font-size:1.4rem;
  color:#fff;
  background:var(--flower-secondary);
  padding:25px 15px;
  padding-right:calc(1.3rem + 30px);
  font-weight:500;
  cursor: pointer;
  position:relative;
  display:block;
  text-decoration: none;
}
.common li.accodion .accodion-ttl.notopen{
  pointer-events: none;
  cursor: auto;
}
.common li.accodion .accodion-ttl:before,
.common li.accodion .accodion-ttl:after{
  content:"";
  position:absolute;
  top:57%;
  right:calc(1rem + 15px);
  width:1rem;
  height:3px;
  background-color:#fff;
  border-radius: 999px;
  transform-origin: 100% 50%;
  transition:transform 0.5s ease;
}
.common li.accodion .accodion-ttl:before{
  transform:rotate(50deg)
}
.common li.accodion .accodion-ttl:after{
  transform:rotate(130deg)
}
.common li.accodion.open .accodion-ttl:before,
.common li.accodion.open .accodion-ttl:after{
  top:43%;
}

.common li.accodion.open .accodion-ttl:before{
  transform:rotate(-130deg)
}
.common li.accodion.open .accodion-ttl:after{
  transform:rotate(-50deg)
}
.common li.accodion .accodion-ttl.notopen:before,
.common li.accodion .accodion-ttl.notopen:after{
  display:none;
}
.common li.accodion .accodion-ttl .accodion-ttl-name{
  font-weight:500;
  letter-spacing: 0.05em;
  line-height:1.2;
}
.common .accodion-detail{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.8s ease-in-out;
  will-change:max-height;
  margin-top:15px;
}
.common .accodion-detail.open{
  max-height:5000px;
  transition:max-height 1.5s ease-in-out;
}
.common .accodion-box{
  border:2px solid var(--flower-secondary);
  border-radius:10px;
  background:#fff;
  padding:20px 20px;
  line-height:1.6;
  letter-spacing: 0.05rem;
}
.common .accodion-box p{
    font-size:1.1rem;
    text-align: justify;
}
/* 基本理念(基本方針) */
.common .policy-box{
  border:4px solid var(--flower-primary);
  border-radius:10px;
  padding:40px 30px;
  position:relative;
  margin-top:50px;
}
.common .policy-ttl{
  position:absolute;
  /* top:-10.5%; */
  top:-2.5rem;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:10px;
  background-color:#fff;
  padding:0 20px;
}
html.large .common .policy-ttl{
  top:-1.9rem;
}
.common .policy-ttl>img{
  width:100%;
  height:auto;
  max-width:65px;
}
.common .policy-ttl>span{
  font-size:1.6rem;
  letter-spacing: 0.05em;
  color:var(--mihara-flower-primary);
}
.common .policy-box ul{
  list-style:none;
  font-size:1.1rem;
}
.common .policy-box ul>li{
  position:relative;
  padding:10px 0;
  border-bottom:3px dotted #9c9c9c;
}
.common .policy-box ul>li:last-of-type{
  border-bottom:none;
}
.common .policy-box ul>li>span{
  position:relative;
  padding-left:1.3rem;
  display:block;
  line-height:1.6;
}
.common .policy-box ul>li>span::before{
  content:"●";
  position:absolute;
  top:0;
  left:0;
}

/* 子ページへのリンク部分(簡易説明付き) */
.common .content-detail{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}
.common .content-link{
  max-width:calc(calc(100% - 40px) / 2);
  padding:50px 0 15px;
  border-radius:10px;
  background-color:#e4f3ff;
  border:1px solid #c3c3c3;
  text-decoration:none;
  display:flex;
  flex-direction: column;
  flex:1 1 auto;
  transition:background-color 0.5s ease-in;
}
.common .content-title{
  background-color:var(--flower-primary);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width:max-content;
  min-width:170px;
  padding:8px;
  display:block;
}
.common .content-title>p{
  font-size:1.3rem;
  border:2px dashed #fff;
  padding:10px;
  color:#fff;
  text-align:center;
  border-radius:10px;
}
.common .content-text{
  background-color:#fff;
  box-shadow:0px 0px 20px rgba(0, 0, 0, .2);
  padding:15px;
  margin:30px 15px 15px;
  flex-grow:1;
  border-radius:8px;
}
.common .content-text>p{
  font-size:1.1rem;
  line-height:1.6;
  letter-spacing: 0.05em;
  color:var(--text-color);
  text-align: justify;
}
.common .content-here{
  text-align:right;
  padding-right:15px;
  font-size:1rem;
  color:var(--text-color);
  margin-top:auto;
  margin-bottom:0;
}
.common .content-link:hover{
  background-color:var(--flower-base);
}

/*******************************
 新着情報
********************************/

.news .sub-info {
    padding-top: 40px;
}
.news .sub-info .sub-ttl {
    text-align: center;
}
.news .sub-info .sub-ttl::after {
    content: "";
    margin-top: 3px;
    text-align: center;
    width: 275px;
    height: 20px;
    display: inline-block;
    background-image: url(../images/top/title-bar.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.news .sub-info .sub-ttl h2 {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
}
.news .sub-info .tab-container {
    padding-top: 40px;
}
.news .sub-info .tab-container ul {
    list-style: none;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 50%;
}
.news .sub-info .tab-container ul li {
    min-height: 65px;
    width: 100%;
    max-width:calc(100% / 2); /*カテゴリー数次第で変更*/
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.news .sub-info .tab-container ul a {
    /* color: #000000; */
    color:var(--text-color);
    border: 2px solid #9c9c9c;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    text-decoration: none;
    padding: 4px 5px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 1.2rem;
    background-color: #f5f5f5;
    transition: background-color, color, 0.3s ease-in-out;
}
.news .sub-info .tab-container ul li:last-child a {
    border-left: initial;
}
.news .sub-info .tab-container ul a.bg-hv {
    /* background-color: #8dc556; */
    background-color:var(--flower-secondary);
    color: #ffffff;
}
.news .sub-info .tab-container ul a:hover {
    /* background-color: #8dc556; */
    background-color:var(--flower-secondary);
    color: #ffffff;
}
.news .sub-info .contents {
    padding-top: 45px;
}
.news .sub-info .contents ul {
    list-style: none;
}
.news .sub-info .contents ul a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    /* color: #000000; */
    color:var(--text-color);
    padding: 25px 0;
    border-bottom: 1px solid #9c9c9c;
    transition: color 0.3s ease-in-out;
}
.news .sub-info .contents ul a:hover {
    /* color: #8dc556; */
    color:var(--flower-tertiary);
}
.news .sub-info .contents ul li:first-child a {
    padding-top: initial;
}
.news .sub-info .contents ul a .flx-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 15px;
    width: 100%;
}
.news .sub-info .contents ul a .flx-row .date {
    margin-right: 30px;
    font-size: 1rem;
}
.news .sub-info .contents ul a .flx-row .all {
    display: inline-block;
    width: 15%;
    /* max-width: 120px;
    min-width: 100px; */
    max-width: 5.76rem;
    min-width: 5.3rem;
    font-size: 1.05rem;
    color: #ffffff;
    background-color: #e27c8d;
    height: 30px;
    position: relative;
}
.news .sub-info .contents ul a .flx-row .patient_cate {
    display: inline-block;
    width: 15%;
    /* max-width: 120px;
    min-width: 100px; */
    max-width: 5.76rem;
    min-width: 5.3rem;
    font-size: 1.05rem;
    color: #ffffff;
    background-color: #7eb3d7;
    height: 30px;
    position: relative;
}
.news .sub-info .contents ul a .flx-row .empty_floor {
    display: inline-block;
    width: 15%;
    /* max-width: 120px;
    min-width: 100px; */
    max-width: 5.76rem;
    min-width: 5.3rem;
    font-size: 1.05rem;
    color: #ffffff;
    background-color: var(--flower-secondary);
    height: 30px;
    position: relative;
}
.news .sub-info .contents ul a .flx-row .category span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    white-space: nowrap;
}
.news .sub-info .contents ul a .inf p {
    font-size: 1.1rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news .sub-info .contents .tabs {
    display: none;
    opacity: 0;
    transition: opacity, 0.5s ease-in-out;
}
.news .sub-info .contents .tabs.active {
    display: block;
    opacity: 1;
}
.news .sub-info .contents .pagination {
    display: flex;
    margin-top: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
}
.news .sub-info .contents .pagination .current {
    display: inline-block;
    width: 40px;
    height: 45px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    /* border: 1px solid #8dc556;
    background-color: #8dc556; */
    border: 1px solid var(--flower-secondary);
    background-color: var(--flower-secondary);
    color: #ffffff;
    margin: 0 8px;
    line-height: 45px;
}
.news .sub-info .contents .pagination a {
    display: inline-block;
    width: 40px;
    height: 45px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    /* border: 1px solid #8dc556;
    color: #8dc556; */
    border: 1px solid var(--flower-secondary);
    color: var(--flower-secondary);
    margin: 0 6px;
    line-height: 45px;
    transition: color, background-color, 0.3s ease-in-out;
}
.news .sub-info .contents .pagination a:hover {
    /* background-color: #8dc556; */
    background-color:var(--flower-secondary);
    color: #ffffff;
}
.news .wp-pagenavi span.extend{
    border:none;
}
/* 空床状況 */
/* .emptyfloor-news .sub-info .tab-container ul a.bg-hv {
    background-color: #eb9864;
    color: #ffffff;
}
.emptyfloor-news .sub-info .tab-container ul a:hover {
    background-color: #eb9864;
    color: #ffffff;
}
.emptyfloor-news .sub-info .contents ul a:hover {
    color: #eb9864;
}
.emptyfloor-news .sub-info .contents .pagination .current {
    border: 1px solid #eb9864;
    background-color: #eb9864;
}
.emptyfloor-news .sub-info .contents .pagination a {
    border: 1px solid #eb9864;
    color: #eb9864;
}
.emptyfloor-news .sub-info .contents .pagination a:hover {
    background-color: #eb9864;
    color: #ffffff;
} */

/*******************************
 新着情報(記事)
********************************/
/* 三原台病院用 */
.news-page .container .sub-ttl {
    text-align: center;
}
.news-page .container .sub-ttl::after {
    content: "";
    margin-top: 3px;
    text-align: center;
    width: 275px;
    height: 20px;
    display: inline-block;
    background-image: url(../images/top/title-bar.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.news-page .container .sub-ttl h2 {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
}
.news-page .container .contents {
    padding-top: 40px;
}
.news-page .container .sub-inf {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.news-page .container .sub-inf .date {
    margin-right: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.news-page .container .sub-inf .date span:first-child {
    margin-right: 5px;
}
.news-page .container .sub-inf .date img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0) saturate(100%) invert(25%) sepia(4%) saturate(0%) hue-rotate(123deg) brightness(94%) contrast(80%);
}
.news-page .container .all {
    font-size: 1.05rem;
    display: inline-block;
    width: 15%;
    /* max-width: 120px;
    min-width: 100px; */
    max-width: 5.76rem;
    min-width: 5.3rem;
    font-size: 1.05rem;
    color: #ffffff;
    background-color: #e27c8d;
    height: 30px;
    position: relative;
}
.news-page .container .patient_cate {
    font-size: 1.05rem;
    display: inline-block;
    width: 15%;
    /* max-width: 120px;
    min-width: 100px; */
    max-width: 5.76rem;
    min-width: 5.3rem;
    font-size: 1.05rem;
    color: #ffffff;
    background-color: #7eb3d7;
    height: 30px;
    position: relative;
}
.news-page .container .empty_floor {
    font-size: 1.05rem;
    display: inline-block;
    width: 15%;
    /* max-width: 120px;
    min-width: 100px; */
    max-width: 5.76rem;
    min-width: 5.3rem;
    font-size: 1.05rem;
    color: #ffffff;
    background-color: var(--flower-secondary);
    height: 30px;
    position: relative;
}
.news-page .container .category span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    white-space: nowrap;
}
.news-page .container .titles {
    padding-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}
.news-page .container .titles::before, .news-page .container .titles::after {
    content: "";
    position: absolute;
    height: 4px;
    bottom: 0;
    left: 0;
    border-radius: 10px;
}
.news-page .container .titles::before {
    width: 100px;
    /* background-color: #8dc556; */
    background-color: var(--mihara-flower-primary);
    z-index: 1;
}
.news-page .container .titles::after {
    width: 100%;
    background-color: #c3c3c3;
}
.news-page .container .titles h3 {
    font-size: 1.5rem;
    font-weight: 500;
}
.news-page .container .news-info {
    padding-top: 15px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
/* .news-page .container .news-info .images {
    width: 70%;
    height: auto;
    margin: 0 auto;
}
.news-page .container .news-info .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
} */
.news-page .container .news-info br{
line-height:1;
}
.news-page .container .news-info img{
    width: 60%;
    height: auto;
    max-width:100%;
    object-fit: cover;
    object-position: center center;
    margin:0 auto;
    display:block;
    padding-top:25px;
}
.news-page .container .news-info ul{
    padding-left:1.1rem;
    font-size:1rem;
    line-height:1;
}
/* .news-page .container .news-info .txts {
    padding-top: 30px;
}
.news-page .container .news-info .txts p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
} */
.news-page .container .news-info h1{
    font-size:1.65rem;
    font-weight:500;
}
.news-page .container .news-info h2{
    font-size:1.6rem;
    font-weight:500;
}
.news-page .container .news-info h3{
    font-size:1.55rem;
    font-weight:500;
}
.news-page .container .news-info h4{
    font-size:1.5rem;
    font-weight:500;
}
.news-page .container .news-info h5{
    font-size:1.45rem;
    font-weight:500;
}
.news-page .container .news-info h6{
    font-size:1.4rem;
    font-weight:500;
}
/* .news-page .container .news-info img{
    max-width:100%;
} */
.news-page .container .news-info a{
    color:var(--text-color);
    transition:color 0.5s ease-in-out;
}

.news-page .container .news-info  a:hover{
    color:var(--flower-tertiary);
}
.news-page .container .back {
    padding-top: 50px;
}
.news-page .container .back a {
    display: inline-block;
    font-size: 1.1rem;
    /* color: #000000; */
    color:var(--text-color);
    text-decoration: none;
    transition: opacity, 0.3s ease-in-out;
}
.news-page .container .back a:hover {
    opacity: 0.4;
}
.news-page .container .back a span:first-child {
    display: table-cell;
    vertical-align: middle;
}
.news-page .container .back a span:last-child {
    display: table-cell;
    vertical-align: middle;
    padding-left: 8px;
}
.news-page .container .back img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    object-position: center center;
}





/*******************************
 お問い合わせ
********************************/
.contact .content-tel{
  margin:30px 0;
  border:2px solid var(--flower-secondary);
  border-radius:10px;
  width:fit-content;
  padding:15px 20px;
  position:relative;
  background-color:#fff;
  box-shadow: 5px 5px 15px rgb(220, 232, 209,0.5);
}

.contact .content-tel-item{
  margin-bottom:20px;
  /* display:flex;
  align-items:center; */
  font-size:1.1rem;
  letter-spacing: 0.05em;
  line-height:1.6;
  display:inline-block;
}
.contact .content-tel-item:last-of-type{
  margin-bottom:0;
}
.contact .content-tel-item>span{
  padding-right:0.5rem;
}
.contact .content-tel-item>a{
  color:var(--text-color);
  text-decoration:none;
  transition:color 0.5s ease-in-out;
  margin-left:1.1rem;
  display:block;
}
.contact .content-tel-item>a[href^="tel:"]:hover{
  color:var(--flower-tertiary);
}
.contact .content-tel-item>a:hover
.contact .content-box .red{
  color:var(--flower-accent-red);
}
.contact .content-tel-item-fax{
  
}
.contact .underline{
  text-decoration:underline;
}
/******************************
 フォーム
********************************/
.forms .set {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap:15px;
  width: 100%;
  padding: 15px 0;
  color: var(--text-color);
}
.forms .set .item {
  font-size: 1.1rem;
  position: relative;
}
.forms .set .item>p {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.forms .set .require{
  display: inline-block;
  color: var(--flower-accent-red);
  padding: 2px 4px;
  font-size:1rem;
  line-height:1;
  position: relative;
  top: 0;
  left: 0;
}
.forms .set .information {
  width: 100%;
  font-size: 1.1rem;
  margin-top: 5px;
  color:var(--text-color);
}
.forms .set .information input,
.forms .set .information textarea,
.forms .set .information select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 100%;
  border: none;
  padding: 15px 10px;
  background-color:#eff2f5;
  transition: 0.2s all;
  font-size:1.1rem;
  color:var(--text-color);
  border-radius:8px;
  outline:2px solid #9c9c9c;
}
.forms .set .information input:focus,
.forms .set .information textarea:focus {
  outline: 2px solid var(--flower-secondary);
}
.forms .set .information textarea {
  resize: none;
  width: 100%;
}
.forms .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
}
.forms .submit {
  padding-top: 10px;
  text-align: center;
  display:flex;
  align-items:center;
  gap:3%;
  justify-content: center;
}
.forms .submit input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  background-color: #fff;
  cursor: pointer;
  transition: 0.5s background-color, color;
  display: block;
  border: 2px solid var(--flower-secondary);
  border-radius: 999px;
  color: var(--flower-secondary);
  width: 220px;
  white-space: nowrap;
  margin: 30px auto 0;
  padding: 13px 10px;
  font-family: "Kiwi Maru";
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: inherit;
  text-align: center;
}
.forms .submit input:hover {
  background-color: var(--flower-secondary);
  color: #fff;
  transition: all 0.5s;
}



/*******************************
 ご質問に対する回答
********************************/
.opinion .accodion-block{
    padding-top:0;
}
.opinion li.accodion .accodion-ttl{
    font-size:1.15rem;
    text-align: justify;
}
.opinion li.accodion .accodion-ttl .accodion-ttl-name{
    line-height:1.6;
    position:relative;
    padding-left:1.5rem;
}
.opinion li.accodion .accodion-ttl .accodion-ttl-name::before{
    content:"Q.";
    position:absolute;
    top:0;
    left:0;
}
.opinion .accodion-box time{
    display:flex;
    justify-content:right;
    align-items:center;
    gap:5px;
    font-size:1.1rem;
    line-height:1;
    letter-spacing: 0.05em;
    padding-bottom:0.5rem;
}
.opinion .accodion-box time img{
    width:auto;
    height:1.1rem;
    aspect-ratio: 1 / 1;
    filter: brightness(0) saturate(100%) invert(27%) sepia(49%) saturate(2%) hue-rotate(324deg) brightness(96%) contrast(92%);
}
.opinion .accodion-box .accodion-box-p{
    position:relative;
    padding-left:1.5rem;
}
.opinion .accodion-box .accodion-box-p::before{
    content:"A.";
    position:absolute;
    top:0;
    left:0;
}
.opinion .pagination {
    display: flex;
    margin-top: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
}
.opinion .pagination .current {
    display: inline-block;
    width: 40px;
    height: 45px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    border: 1px solid var(--flower-secondary);
    background-color: var(--flower-secondary);
    color: #ffffff;
    margin: 0 8px;
    line-height: 45px;
}
.opinion .pagination a {
    display: inline-block;
    width: 40px;
    height: 45px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    border: 1px solid var(--flower-secondary);
    color: var(--flower-secondary);
    margin: 0 6px;
    line-height: 45px;
    transition: color, background-color, 0.3s ease-in-out;
}
.opinion .pagination a:hover {
    background-color:var(--flower-secondary);
    color: #ffffff;
    border:1px solid var(--flower-secondary);
}
.opinion .not-accodion{
  font-size:1.15rem;
  letter-spacing: 0.05em;
  line-height:1.6;
  text-align:center;
  color:var(--text-color);
  margin-top:60px;
  margin-bottom:80px;
}
/*******************************
 施設概要
********************************/
.outline .overview-block .content-tbl{
    margin-bottom:40px;
}
.outline .overview-block table{
  width:100%;
  border:2px solid #9c9c9c;
  font-size:1.1rem;
  line-height:1.6;
}
.outline .overview-block tr{
  border-bottom:1px solid #9c9c9c;
}
.outline .overview-block tr:nth-child(2n-1){
  background:var(--flower-base);
}
.outline .overview-block tr:nth-child(2n){
  background:#fff;
}
.outline .overview-block tr:last-of-type{
  border-bottom:none;
}
.outline .overview-block th{
  width:20%;
  /* min-width:140px; */
  min-width:6.73rem;
  text-align:center;
  vertical-align:middle;
  padding:15px 10px;
  font-weight:500;
}
.outline .overview-block td{
  border-left:1px solid #9c9c9c;
  width:80%;
  vertical-align:middle;
  padding:15px;
  padding-left:25px;
}
.outline sup{
    /* font-size:0.5em; */
    vertical-align:text-top;
    font-size:small;
}

/*******************************
 ご利用料金
********************************/
.fee .relation{
    padding-top:0;
}
.fee .content-block .content-tbl{
    margin-bottom:40px;
}
.fee .content-block table{
  width:100%;
  border:2px solid #9c9c9c;
  font-size:1.1rem;
  line-height:1.6;
}
.fee .content-block tr{
  border-bottom:1px solid #9c9c9c;
}
.fee .content-block tr:last-of-type{
  border-bottom:none;
}
.fee .content-block th{
  text-align:center;
  vertical-align:middle;
  padding:15px 10px;
  font-weight:500;
  background-color:var(--flower-base);
  border-right:1px solid #9c9c9c;
}
.fee .content-block tr:last-of-type th{
    border-right:none;
}
.fee .content-block td{
  border-left:1px solid #9c9c9c;
  vertical-align:middle;
  padding:15px;
}
.fee .content-block .col1{
    width:15%;
    /* min-width:115px; */
    min-width:5.52rem;
}
.fee .content-block .col2{
    width:30%;
    min-width:275px;
    min-width:13.22rem;
}
.fee .content-block .col3{
    width:10%;
    /* min-width:95px; */
    min-width:4.56rem;
}
.fee .content-block .col4{
    width:15%;
    /* min-width:150px; */
    min-width:7.21rem;
}
.fee .content-block .col5{
    width:35%;
    /* min-width:240px; */
    min-width:11.53rem;
}
.fee .content-block td.center{
    text-align:center;
}
.fee .content-block td.right{
    text-align:right;
}
.fee .content-block .bg-p{
    background-color:var(--flower-base);
}
.fee .fee3-block .tbl-content{
    overflow-y:hidden!important;
    margin-bottom:40px;
}
.fee .fee3-block th{
    width:calc(100% / 4);
    /* min-width:205px; */
    min-width:9.85rem;
}
.fee .fee3-block .content-box ul:not(.policy-list)>li.kome{
    padding-bottom:20px;
}
.fee .fee4-block .col1{
    width:60%;
    min-width:fit-content;
    white-space: nowrap;
    background-color:var(--flower-base);
}
.fee .fee4-block .col2{
    width:40%;
    min-width:fit-content;
    white-space: nowrap;
}
/*******************************
 三原の花の特徴
********************************/
.feature .feature1-block .content-flex{
    display:flex;
    gap:1rem;
    padding-top:40px;
}
.feature .feature1-block .content-image{
    width:calc(calc(100% - calc(1rem * 2)) / 3);
}
.feature .feature1-block .content-image>img{
    width:100%;
    height:auto;
    object-fit: cover;
    object-position:center;
    aspect-ratio: 3 / 2;
    border-radius:10px;
}
.feature .feature2-block .flow-box{
    display:block;
    max-width:max-content;
    margin:0 auto;
}
.feature .feature2-block .flow-box dl{
  display:flex;
  flex-direction: column;
  padding-bottom:0;
}
.feature .feature2-block .flow-box dt{
  position: relative;
  height: auto;
  font-size: 1.2rem;
  line-height: 1.6;
  display:flex;
  align-items:center;
  gap:10px;
  padding:20px 0;
}
.feature .feature2-block .flow-box dt .flow-round{
  min-width:8rem;
  min-height:1.9rem;
  border-radius:999px;
  background-color:var(--flower-primary);
  position:relative;
}
.feature .feature2-block .flow-box dt .flow-round>p{
  font-size:1.1rem;
  line-height:0.5;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:max-content;
  color:#fff;
}
.feature .feature2-block .flow-box dd{
  line-height: 1.6;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-left:2px solid #9c9c9c;
  margin-left:calc(8rem / 2);
  padding:1rem 0;
  padding-left:2rem;
}
.feature .feature3-block .content-box{
  padding-bottom:0;
}
/* .feature .feature3-block .content-flex{
  display:flex;
  gap:1rem;
  width:100%;
  margin:0 auto;
  max-width:900px;
} */
.feature .feature3-block .program-list{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  gap:0 1rem;
  width:100%;
  margin:0 auto;
  /* max-width:900px; */
  max-width:43.26rem;
}
.feature .feature3-block .program-list>li{
    width:calc(calc(100% - calc(1rem*3)) / 4);
}
.feature .feature3-block .program-list .maru{
  position:relative;
  padding-left:1.3rem;
}
.feature .feature3-block .program-list .maru::before{
  content:"●";
  position:absolute;
  top:0;
  left:0;
}
.feature .feature3-block .content-box p.right{
  text-align:right;
}
.feature .feature4-block .content-flex{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
  max-width:900px;
  margin:0 auto;
}
.feature .feature4-block .content-image{
  width:calc(calc(100% - 1rem) / 2);
}
.feature .feature4-block .content-image>img{
  width:100%;
  height:auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position:center;
  border-radius:10px;
}

/*******************************
 利用申し込み
********************************/
.entry .content-box-telfax{
  display: flex;
  align-items: center;
  gap: 2rem;
}
.entry .content-box-tel,
.entry .content-box-fax{
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--text-color);
  width: fit-content;
}
.entry .content-box-fax{
  pointer-events: initial;
}
.entry .content-box-tel>img{
  width:30px;
  height:auto;
  object-fit: contain;
  transition:all 0.1s;
}
.entry .content-box-fax>img{
  width: 38px;
  height: auto;
  object-fit: contain;
}
.entry .content-box-tel>span,
.entry .content-box-fax>span{
  font-size:1.5rem;
  letter-spacing: 0.05em;
  transition:all 0.5s;
}
.entry .content-box-tel:hover>img{
  filter: brightness(0) saturate(100%) invert(80%) sepia(86%) saturate(4663%) hue-rotate(289deg) brightness(89%) contrast(94%);
}
.entry .content-box-tel:hover>span{
  color:var(--flower-tertiary);
}
.entry .pl{
  padding-left:2rem;
}

/* 2026.0122追加 フッター部分の修正の制度について修正 => バナー追加 */
.main .banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.main .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;
}
.main .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;
}
.main .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;
}
.main .banner a span.ttl-sec {
    display: inline-block;
    font-size: 1rem;
}
.main .banner a span.wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    color: #fff;
}
.main .banner a:first-child span.wrap {
    background-color: #85bcfc;
}
.main .banner a:nth-child(2) span.wrap {
    background-color: #f8be7d;
}
.main .banner a:last-child span.wrap {
    background-color: #7ed482;
}
.main .banner a span.click {
    display: inline-block;
    margin-left: 5px;
}
.main .banner a img {
    width: 100%;
    height: 100%;
    max-width: 30px;
    max-height: 35px;
    transform: rotate(-15deg);
}
.main .banner a:hover {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
}