@charset "UTF-8";
/* header{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
} */

header{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}

.header_area{
    margin-left: 1em;
    margin-right: calc(61px + 1em);
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.header_right__top{
    display: flex;
    flex-wrap: nowrap;
    justify-content: right;
    align-items: flex-end;
    gap: 2em;
}

.sub_header__menu{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.5em;
}

.sub_header__menu li a{
    font-size: 0.85em;
    transition: var(--transition);
    color: var(--black);
}

.sub_header__menu li a[target="_blank"]::after{
    display: none;
}

.sub_header__menu li a:hover{
    color: var(--blue);
}

/* 電話番号 */
.tel_area{
    width: 130px;
}

.tel_area p{
    display: flex;
    flex-wrap: wrap;
}

.tel_area p span{
    width: 100%;
    font-size: 0.85em;
}

.tel_area p a{
    font-size: 1.25em;
    color: var(--blue);
}

/* メニュー */
.menu_area .menu{
    margin-top: 0.5em;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    font-weight: 600;
}

.menu_area .menu li{
    display: flex;
    align-items: center;
}

.menu_area .menu li a{
    padding: 0.5em 0;
    display: flex;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.menu_area .menu li a::after{
    content: '';
    width: 25px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--blue);
    position: absolute;
    bottom: -3px;
    transition: var(--transition);
}

.menu_area .menu li a:hover{
    color: var(--blue);
}

.menu_area .menu li a:hover::after{
    width: 40px;
}

@media screen and (min-width: 0px) {
    header{
        padding-top: 0.5em;
    }
    
    .header_left{
        width: calc(75% - 1em);
    }

    .header_right{
        width: calc(25% - 1em);
    }

    .header_right .sub_header__menu,
    .header_right .menu_area .menu{
        display: none;
    }

    .tel_area__sp{
        width: 70px;
        height: 70px;
        border-radius: 0 0 5px 5px;
        background-color: var(--blue);
        position: fixed;
        top: 0;
        right: 70px;
        z-index: 1;
    }

    .tel_area__sp .tel_icon{
        width: 28px;
        height: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--white);
        mask-image: url(../img/icon/tel.svg);
        mask-size: contain;
        mask-repeat: no-repeat;
    }

    .tel_area__sp a{
        padding: 1em;
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        gap: 0.25em;
        font-size: 0.7em;
        color: var(--white);
    }

    .tel_area{
        display: none;
    }
}

@media screen and (min-width: 768px) {
    header{
        padding-top: 1em;
    }
    
    .tel_area__sp{
        display: none;
    }

    .tel_area{
        display: block;
    }
}

@media screen and (min-width: 1024px) {
    .header_left{
        width: calc(25% - 1em);
    }

    .header_right{
        width: calc(75% - 1em);
    }

    .header_right .sub_header__menu,
    .header_right .menu_area .menu{
        display: flex;
    }

    .menu_area .menu{
        gap: 1.25em;
    }

    .menu_area .menu li a{
        gap: 1em;
    }
}

@media screen and (min-width: 1440px) {
    .menu_area .menu{
        gap: 1.5em;
    }

    .menu_area .menu li a{
        font-size: 1.2em;
    }
}

/*====================================
メニューボタン
=====================================*/
.menu_button{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    transform: translateX(0px);
    transition: all 0.4s;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
}

.-active.menu_button {
    justify-content: center;
    /* transition: transform 0.4s ease-out; */
}

.menu_button .hamburger__line{
    position: relative;
}

.menu_button .hamburger__line,
.menu_button .hamburger__line::before,
.menu_button .hamburger__line::after{
    width: 35px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--blue);
    transform: translateX(0%);
    transition: 0.4s;
}

.menu_button .hamburger__line::before,
.menu_button .hamburger__line::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--blue);
    transition: inherit;
}

.menu_button .hamburger__line::before{
    top: 10px;
}

.menu_button .hamburger__line::after{
    bottom: 10px;
}

/* メニューラベル */
.menu_label{
    color: var(--blue);
}

/* オープン時のバー */
.menu_button.-active .hamburger__line {
    background-color: transparent;
}

.menu_button.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}

.menu_button.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}

/* オーバーレイ */
.overlay{
    transition: all 0.4s
}

.hamburger.-active + .overlay {
    visibility: visible;
    opacity: 0;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(178, 218, 255, 0.45);
    backdrop-filter: blur(8px);
    z-index: 997;
    opacity: 1;
}


/* ヘッダーに表示されるaddtoanyを消す */
.hamburger .addtoany_content{
    display: none;
}

/*====================================
 ハンバーガーメニュー メニュー内レイアウト
=====================================*/
.hamburger{
    height: 100%;
    background-color: var(--white);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 998;
    overflow-y: auto;
    transform: translateX(100%);
    /*transition: transform 0.4s ease-out; */
    transition: all 0.4s;
    visibility: hidden;
    scrollbar-width: none;
}

/* オープン時のメニュー */
.hamburger.-active{
    transform: translateX(0);
    visibility: visible;
}

/* メニュー内レイアウト */
.hamburger .sub_header__menu{
    gap: 0.5em;
}

.hamburger .sub_header__menu li{
    background-image: -moz-radial-gradient( 50% 50%, circle closest-side, rgb(198,248,255) 0%, rgb(255,255,255,0%) 100%);
    background-image: -webkit-radial-gradient( 50% 50%, circle closest-side, rgb(198,248,255) 0%, rgb(255,255,255,0%) 100%);
    background-image: -ms-radial-gradient( 50% 50%, circle closest-side, rgb(198,248,255) 0%, rgb(255,255,255,0%) 100%);
}

.hamburger .sub_header__menu li a{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em;
}

.hamburger .menu_area .menu{
    margin: 1.5em 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0em;
}

.hamburger .menu_area .menu li{
    width: 100%;
    border-bottom: solid 1px var(--border);
}

.hamburger .menu_area .menu li:last-child{
    border-bottom: unset;
}

.hamburger .menu_area .menu li a{
    padding: 1.25em 1em;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5em;
    font-size: 1.2em;
}

.hamburger .menu_area .menu li a::after{
    content: unset;
}
.sub_menu__under{
    margin-top: 1em;
}

.sub_menu__under a{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    padding: 1em;
    border-radius: 10px;
    border: solid 1px var(--border);
    justify-content: space-between;
}

.hamburger .koseikai_banner{
    margin-top: 1.5em;
}

.hamburger .koseikai_banner a{
    width: 100%;
}

@media screen and (min-width: 0px) {
    .hamburger{
        padding: 1.5em;
        max-width: 460px;
        border-radius: 0px;
        border-top: unset;
        border-bottom: unset;
    }

    .hamburger_logo__area{
        margin-right: 78px;
        max-width: 100%;
    }

    .hamburger .sub_header__menu{
        margin-top: 1.5em;
    }

    .hamburger .sub_header__menu li a{
        font-size: 0.75em;
    }

    .menu_button{
        width: 70px;
        height: 70px;
        flex-wrap: wrap;
        border-left: solid 1px var(--blue);
        border-right: solid 1px var(--blue);
        border-bottom: solid 1px var(--blue);
        border-radius: 0 0 5px 5px;
    }

    .menu_button .hamburger__line{
        top: 10px;
    }

    .-active.menu_button {
        transform: translateX(0px);
    }

    .menu_label{
        font-weight: 600;
        font-size: 0.7em;
        letter-spacing: 0;
    }

}

@media screen and (min-width: 768px) {
    .hamburger{
        padding: 1.5em 1.5em 1.5em 78px;
        border-radius: 40px 0 0 40px;
        border-top: solid 1px var(--blue);
        border-bottom: solid 1px var(--blue);
    }

    .hamburger_logo__area{
        display: none;
    }

    .hamburger .sub_header__menu{
        margin-top: 0em;
    }

    .menu_button{
        width: 60px;
        height: 100%;
        border-top: solid 1px var(--blue);
        border-left: solid 1px var(--blue);
        border-right: unset;
        border-bottom: solid 1px var(--blue);
        border-radius: 40px 0 0 40px;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }

    .menu_button .hamburger__line{
        top: -30px;
    }

    .-active.menu_button {
        transform: translateX(-400px);
    }

    .menu_label{
        font-size: 1.05em;
        letter-spacing: 2px;
    }
}

@media screen and (min-width: 1024px) {
    .menu_button{
        height: 100vh;
    }
}

/* メニュー背景色 */
.ha_menu__gairai{
  background-image: -moz-radial-gradient( 13% 50%, circle closest-side, rgb(178,218,255) 0%, rgb(255,255,255,0%) 100%);
  background-image: -webkit-radial-gradient( 13% 50%, circle closest-side, rgb(178,218,255) 0%, rgb(255,255,255,0%) 100%);
  background-image: -ms-radial-gradient( 13% 50%, circle closest-side, rgb(178,218,255) 0%, rgb(255,255,255,0%) 100%);
}

.ha_menu__nyuin{
    background-image: -moz-radial-gradient( 13% 50%, circle closest-side, rgb(229,255,189,60%) 0%, rgb(255,255,255,0%) 100%);
    background-image: -webkit-radial-gradient(13% 50%, circle closest-side, rgb(229, 255, 189, 60%) 0%, rgb(255, 255, 255,0%) 100%);
    background-image: -ms-radial-gradient( 13% 50%, circle closest-side, rgb(229,255,189,60%) 0%, rgb(255,255,255,0%) 100%);
}

.ha_menu__bumon{
    background-image: -moz-radial-gradient( 13% 50%, circle closest-side, rgb(255,237,201,70%) 0%, rgb(255,255,255,0%) 100%);
    background-image: -webkit-radial-gradient(13% 50%, circle closest-side, rgb(255, 237, 201, 70%) 0%, rgb(255, 255, 255,0%) 100%);
    background-image: -ms-radial-gradient( 13% 50%, circle closest-side, rgb(255,237,201,70%) 0%, rgb(255,255,255,0%) 100%);
}

.ha_menu__kyuykyu{
    background-image: -moz-radial-gradient( 13% 50%, circle closest-side, rgb(254,224,233) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-radial-gradient( 13% 50%, circle closest-side, rgb(254,224,233) 0%, rgb(255,255,255) 100%);
    background-image: -ms-radial-gradient( 13% 50%, circle closest-side, rgb(254,224,233) 0%, rgb(255,255,255) 100%);
}
.ha_menu__hospital{
    background-image: -moz-radial-gradient( 13% 50%, circle closest-side, rgb(241,228,255) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-radial-gradient( 13% 50%, circle closest-side, rgb(241,228,255) 0%, rgb(255,255,255) 100%);
    background-image: -ms-radial-gradient( 13% 50%, circle closest-side, rgb(241,228,255) 0%, rgb(255,255,255) 100%);
}

/* サブメニューアイコン */
.shosin_icon,
.access_icon,
.contact_icon,
.recruit_icon{
    width: 30px;
    height: 30px;
}

.shosin_icon{
    mask-image:url('../img/icon/shoshin.svg')
}

.access_icon{
    mask-image:url('../img/icon/map.svg')
}

.contact_icon{
    width: 28px;
    mask-image: url('../img/icon/contact.svg');
}

.recruit_icon{
    mask-image:url('../img/icon/recruit.svg')
}

@media screen and (min-width: 0px) {
    
}

@media screen and (min-width: 768px) {
    
}

/*====================================
サイト内検索 検索フォーム
=====================================*/
.site_search__area{
    margin-top: 1.5em;
  max-width: 100%;
  width: 100%;
}

.vkfs{
  margin-bottom: 0rem !important;
  height: 100%;
  font-size: 1rem;
  position: relative;
}

.site_search__area .vkfs__label-name{
  display: none;
  font-weight: 500;
  font-size: 14px;
}

.search_form .vkfs__input-wrap {
  align-items: center;
}

.search_form.vkfs .vkfs__input-wrap::after{
  width: 25px;
  height: 25px;
  content: '';
  mask-image: url(../img/icon/search.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--black);
  position: absolute;
  left: 10px;
  z-index: 1;
}

.search_form.vkfs input[type=text]{
  margin-bottom: 0;
  padding-left: 2rem;
  padding-right: 45px;
  height: 40px;
  border: solid 2px var(--blue);
  border-radius: 30px;
  font-weight: 500;
  font-size: 1em;
  position: relative;
}

.search_form.vkfs button[type=submit]{
  margin-top: 0rem;
  padding: 0.25rem 0;
  width: 50px;
  height: 40px;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

.search_form .vkfs_submit-text{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input_search.vkfs__outer-wrap{
  flex-basis: unset;
  margin-bottom: 0rem;
}