@charset "UTF-8";
/*******************************************************************/
/* PC */
/*******************************************************************/
@media print, screen and (min-width: 769px) {
  /*<start>==========================================================*/
  /*=================================================================*/
  /*	コンテンツサイズ */
  /*=================================================================*/
  article {
    padding-top: 34px;
  }
  /*=================================================================*/
  /*	緊急情報 */
  /*=================================================================*/
  .emergency .emeFlex {
    width: 100%;
    padding: 10px;
    background-color: #fffed8;
    border: 1px solid red;
    box-sizing: border-box;
    margin: 0 auto 16px;
    display: flex;
  }
  .emergency .emeFlex .imgEmergency {
    width: 30px;
    padding: 0 10px;
  }
  .emergency .emeFlex .imgEmergency img {
    width: 100%;
    height: auto;
  }
  .emergency .emeFlex ul {
    width: calc(100% - 50px);
    box-sizing: border-box;
    padding-left: 30px;
  }
  .emergency .emeFlex ul li {
    margin: 0 0 5px;
    list-style-type: disc;
  }
  .emergency .emeFlex ul li::marker {
    color: red;
  }
  .emergency .emeFlex ul li a {
    color: red;
    text-decoration: underline;
  }
  .emergency .emeFlex ul li:last-child {
    margin-bottom: 0;
  }
  /*=================================================================*/
  /*	メインビジュアル */
  /*=================================================================*/
  .mainSlider li {
    height: 400px;
    position: relative;
  }
  .mainSlider li img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .mainSlider li .caption {
    display: block;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    bottom: 5%;
    right: 3%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
  }
  /*=================================================================*/
  /*	ムービー */
  /*=================================================================*/
  .movie > .inner {
    position: relative;
  }
  .movie > .inner a.imgMovie {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .movie > .inner .digestBtn a {
    display: block;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    background: #19c3c1;
    border-radius: 25px;
    box-sizing: border-box;
    position: absolute;
    right: 44px;
    bottom: 14px;
    z-index: 1;
    transition: 0.3s;
  }
  .movie > .inner .digestBtn a:hover {
    background: #58d4d2;
  }
  /*=================================================================*/
  /*	各病院のお知らせ */
  /*=================================================================*/
  /*	出現アニメーション
  ---------------------------------------------------------------*/
  article section.hospitalNews dl {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: 0.5s;
  }
  article section.hospitalNews dl:first-of-type {
    transition-delay: 0.7s;
  }
  article section.hospitalNews dl:nth-of-type(2) {
    transition-delay: 0.9s;
  }
  article section.hospitalNews dl:nth-of-type(3) {
    transition-delay: 1.1s;
  }
  article section.hospitalNews.active dl {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
  article section.hospitalNews span.newMark {
    background-color: red;
    color: #fff;
    line-height: 1;
    font-size: 1.1rem;
    padding: 1px 5px 3px;
    margin-right: 5px;
    border-radius: 3px;
  }
  /*	コンテンツサイズ
  ---------------------------------------------------------------*/
  article section .hospitalFlex {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 83px;
  }
  article section .hospitalFlex dl {
    width: calc(33.3333333333% - 10px);
    background-color: #fff;
    border-radius: 50px 50px 3px 3px;
    filter: drop-shadow(0 1px 3px rgba(40, 40, 40, 0.2274509804));
  }
  article section .hospitalFlex dl dt {
    height: 248px;
    background-color: #e4f7f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 248px;
    border-radius: 50px 50px 0 0;
  }
  article section .hospitalFlex dl dd {
    padding: 0 20px 50px 20px;
  }
  /*	見出し
  ---------------------------------------------------------------*/
  article section .hospitalFlex dl dd {
    text-align: center;
  }
  article section .hospitalFlex dl dd h3 {
    display: inline-block;
    background-color: #19c3c1;
    color: #fff;
    line-height: 1.4;
    padding: 17px 34px;
    border-radius: 3px;
    transform: translateY(-27px);
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  /*	お知らせ一覧
  ---------------------------------------------------------------*/
  article section .hospitalFlex dl dd ul {
    margin-bottom: 20px;
    text-align: left;
  }
  article section .hospitalFlex dl dd ul li {
    padding: 8px 0;
    display: flex;
    gap: 20px;
    font-size: 1.4rem;
  }
  article section .hospitalFlex dl dd ul li span.title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  article section .hospitalFlex dl dd ul li span.title a {
    overflow: hidden;
    white-space: nowrap;
    color: #009593;
    position: relative;
    text-decoration: none;
  }
  article section .hospitalFlex dl dd ul li span.title a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #009593;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  article section .hospitalFlex dl dd ul li span.title a:hover::after {
    transform: scale(1, 1);
  }
  /*	各ホームページへ飛ぶボタン
  ---------------------------------------------------------------*/
  article section .hospitalFlex dl dd ul + a {
    font-size: 1.4rem;
    color: #fff;
    background-color: #19c3c1;
    line-height: 1;
    padding: 10px 60px;
    border-radius: 100px;
    transition: 0.3s;
  }
  article section .hospitalFlex dl dd ul + a span {
    line-height: 1;
    position: relative;
  }
  article section .hospitalFlex dl dd ul + a span::after {
    content: url(../images/union/icon_external.svg);
    position: absolute;
    top: -4px;
    right: -15px;
  }
  article section .hospitalFlex dl dd ul + a:hover {
    background-color: #282828;
  }
  /*	各病院のカラー
  ---------------------------------------------------------------*/
  article section .hospitalFlex .takachiho dt {
    background-image: url(../images/top/bg_takachiho.webp);
  }
  article section .hospitalFlex .takachiho dd h3, article section .hospitalFlex .takachiho dd ul + a {
    background-color: #0d8bd3;
  }
  article section .hospitalFlex .hinokage dt {
    background-image: url(../images/top/bg_hinokage.webp);
  }
  article section .hospitalFlex .hinokage dd h3, article section .hospitalFlex .hinokage dd ul + a {
    background-color: #099e9c;
  }
  article section .hospitalFlex .gokase dt {
    background-image: url(../images/top/bg_gokase.webp);
  }
  article section .hospitalFlex .gokase dd h3, article section .hospitalFlex .gokase dd ul + a {
    background-color: #b76ca4;
  }
  /*=================================================================*/
  /*	事務局からのお知らせ */
  /*=================================================================*/
  /*	出現アニメーション
  ---------------------------------------------------------------*/
  article section.newsDeco .newsTitle {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    transition: 0.5s;
    transition-delay: 0.3s;
  }
  article section.newsDeco .newsBox {
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: 0.5s;
    transition-delay: 0.3s;
  }
  article section.newsDeco.active .newsTitle {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
  }
  article section.newsDeco.active .newsBox {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
  }
  /*	コンテンツサイズ
  ---------------------------------------------------------------*/
  article section .newsFlex {
    display: flex;
  }
  article section .newsFlex .newsTitle {
    flex-basis: 277px;
  }
  article section .newsFlex .newsBox {
    flex: 1;
  }
  /*	装飾
  ---------------------------------------------------------------*/
  article section.newsDeco {
    background-image: url(../images/union/deco_dot.svg), url(../images/union/deco_news_title.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: calc(50% - 626px) 92px, calc(50% - 710px) 38px;
    margin-bottom: 83px;
    margin-top: 50px;
  }
  /*	news装飾
  ---------------------------------------------------------------*/
  article .squareDeco {
    position: absolute;
    top: 664px;
    width: 100%;
    overflow: hidden;
    z-index: -1;
    height: 1000px;
  }
  article img.deco1 {
    position: absolute;
    top: 148px;
    left: 50%;
    transform: translateX(calc(-50% + 270px));
    animation: 30s linear infinite alternate scale1;
  }
  article img.deco2 {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(calc(-50% + 480px));
    animation: 15s linear infinite alternate scale2;
    animation-delay: 1s;
  }
  @keyframes scale1 {
    0% {
      transform: translateX(calc(-50% + 270px)) scale(1);
    }
    100% {
      transform: translateX(calc(-50% + 270px)) scale(1.3);
    }
  }
  @keyframes scale2 {
    0% {
      transform: translateX(calc(-50% + 480px)) scale(1);
    }
    100% {
      transform: translateX(calc(-50% + 480px)) scale(0.7);
    }
  }
  /*	見出し
  ---------------------------------------------------------------*/
  article section .newsFlex {
    background-image: url(../images/union/deco_nishiusuki.webp);
    background-repeat: no-repeat;
    background-position: center right 44px;
    background-size: 296px auto;
  }
  article section .newsFlex .newsTitle h2 {
    font-size: 3.1rem;
    line-height: 1.6;
  }
  article section .newsFlex .newsTitle .mini {
    font-size: 1.5rem;
    color: #bfbfbf;
    font-weight: 400;
    margin-bottom: 36px;
  }
  article section .newsFlex .newsTitle a {
    color: #009593;
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  article section .newsFlex .newsTitle a::before {
    position: absolute;
    top: -1px;
    left: 0;
    content: url(../images/union/icon_arrow.svg);
    display: block;
  }
  article section .newsFlex .newsTitle a.newsBtn {
    display: block;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #fff;
    background-color: #19c3c1;
    padding: 10px 30px;
    border-radius: 100px;
    transition: 0.3s;
    width: fit-content;
    margin-top: 30px;
  }
  article section .newsFlex .newsTitle a.newsBtn::before {
    display: none;
  }
  article section .newsFlex .newsTitle a.newsBtn:hover {
    background-color: #58d4d2;
  }
  /*	お知らせ一覧
  ---------------------------------------------------------------*/
  article section .newsFlex .newsBox {
    background-image: url(../images/top/deco_line1.svg), url(../images/top/deco_line2.svg);
    background-repeat: repeat-x;
    background-position: top center, bottom center;
    padding: 35px 0;
    width: 70%;
  }
  article section .newsFlex .newsBox ul li {
    padding: 15px 0;
    display: flex;
    gap: 30px;
  }
  article section .newsFlex .newsBox ul li .day {
    white-space: nowrap;
    letter-spacing: 0.1em;
  }
  article section .newsFlex .newsBox ul li .title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  article section .newsFlex .newsBox ul li .title span.newMark {
    background-color: red;
    color: #fff;
    line-height: 1;
    font-size: 1.2rem;
    padding: 1px 5px 3px;
    margin-right: 5px;
    border-radius: 3px;
  }
  article section .newsFlex .newsBox ul li .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    color: #009593;
    position: relative;
    text-decoration: none;
  }
  article section .newsFlex .newsBox ul li .title a::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #009593;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  article section .newsFlex .newsBox ul li .title a:hover::after {
    transform: scale(1, 1);
  }
  /*	病院だより
  ---------------------------------------------------------------*/
  .bgnone {
    background: none !important;
  }
  article section .newsFlex .magazine {
    width: 70%;
  }
  article section .newsFlex .magazine .element {
    transition: 0.3s;
    padding-bottom: 30px;
  }
  article section .newsFlex .magazine .element > div {
    display: block;
    width: 323px;
    height: 456px;
    box-sizing: border-box;
    border: 1px solid #bebebe;
    border-radius: 3px;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  article section .newsFlex .magazine .element:hover {
    transform: translateY(10px);
  }
  article section .newsFlex .magazine .element span {
    display: block;
    color: #099e9c;
    font-size: 1.8rem;
    margin-top: 7px;
    letter-spacing: 0.1em;
  }
  article section .newsFlex .magazine .main-slider-arrow {
    cursor: pointer;
    transition: 0.3s;
    width: 26px;
    height: 13px;
  }
  article section .newsFlex .magazine .main-slider-prev-arrow {
    position: absolute;
    top: -52px;
    bottom: 0;
    left: -50px;
    margin: auto;
    z-index: 1;
  }
  article section .newsFlex .magazine .main-slider-prev-arrow:hover {
    left: -55px;
  }
  article section .newsFlex .magazine .main-slider-next-arrow {
    position: absolute;
    top: -52px;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 1;
  }
  article section .newsFlex .magazine .main-slider-next-arrow:hover {
    right: -5px;
  }
  article section .newsFlex .magazine .slick-disabled {
    display: none !important;
  }
  /*=================================================================*/
  /*	バナー */
  /*=================================================================*/
  /*	出現アニメーション
  ---------------------------------------------------------------*/
  footer .banner ul li {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.3s;
    animation-delay: 0.3s;
  }
  footer .banner.active ul li {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    animation-name: rotateXAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  @keyframes rotateXAnime {
    from {
      transform: rotateX(0);
    }
    to {
      transform: rotateX(-360deg);
    }
  }
  /*	バナー部スタイル
  ---------------------------------------------------------------*/
  footer .banner {
    background-color: #cbeded;
    padding: 30px;
  }
  footer .banner .main-slider-prev-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
  }
  footer .banner .main-slider-prev-arrow:hover {
    transform: translateX(-5px);
  }
  footer .banner .main-slider-next-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
  }
  footer .banner .main-slider-next-arrow:hover {
    transform: translateX(5px);
  }
  footer .banner ul {
    position: relative;
    max-width: 1280px;
    min-width: 1000px;
    margin: 0 auto;
  }
  footer .banner ul li a {
    display: flex;
    width: 225px;
    height: 75px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    background-image: url(../images/top/icon_arrow_banner.svg);
    background-repeat: no-repeat;
    background-position: center right 10px;
    transition: 0.2s;
  }
  footer .banner ul li a:hover {
    background-position: center right 5px;
  }
  footer .banner ul li a img {
    transform: translateX(-10px);
  }
  /*<end>============================================================*/
}
/*******************************************************************/
/* SP */
/*******************************************************************/
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  /*=================================================================*/
  /*	緊急情報 */
  /*=================================================================*/
  .emergency .emeFlex {
    width: 100%;
    padding: 5px;
    background-color: #fffed8;
    border: 1px solid red;
    box-sizing: border-box;
    margin: 0 auto 16px;
    display: flex;
  }
  .emergency .emeFlex .imgEmergency {
    width: 20px;
    padding: 0 10px;
  }
  .emergency .emeFlex .imgEmergency img {
    width: 100%;
    height: auto;
  }
  .emergency .emeFlex ul {
    width: calc(100% - 40px);
    box-sizing: border-box;
    padding-left: 30px;
  }
  .emergency .emeFlex ul li {
    margin: 0 0 5px;
    list-style-type: disc;
  }
  .emergency .emeFlex ul li::marker {
    color: red;
  }
  .emergency .emeFlex ul li a {
    font-size: 1.5rem;
    color: red;
    text-decoration: underline;
  }
  .emergency .emeFlex ul li:last-child {
    margin-bottom: 0;
  }
  /*=================================================================*/
  /*	メインビジュアル */
  /*=================================================================*/
  .mainSlider li {
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .mainSlider li img {
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .mainSlider li .caption {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    position: absolute;
    bottom: 5%;
    right: 3%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
  }
  /*=================================================================*/
  /*	ムービー */
  /*=================================================================*/
  .movie {
    margin-bottom: 30px;
  }
  .movie > .inner {
    position: relative;
  }
  .movie > .inner a.imgMovie {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .movie > .inner a.imgMovie img {
    width: auto;
    height: 100%;
  }
  .movie > .inner .digestBtn a {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 8px 10px;
    background: #19c3c1;
    border-radius: 25px;
    box-sizing: border-box;
    position: absolute;
    right: 32px;
    bottom: 14px;
    z-index: 1;
    line-height: 1;
  }
  /*=================================================================*/
  /*	各病院のお知らせ */
  /*=================================================================*/
  /*	出現アニメーション
  ---------------------------------------------------------------*/
  article section.hospitalNews dl {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: 0.5s;
    transition-delay: 0.3s;
  }
  article section.hospitalNews dl.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
  article section.hospitalNews span.newMark {
    background-color: red;
    color: #fff;
    line-height: 1;
    font-size: 1.1rem;
    padding: 1px 5px 3px;
    margin-right: 5px;
    border-radius: 3px;
  }
  /*	ページ内リンク(各病院へ)
  ---------------------------------------------------------------*/
  article .pageLink {
    display: flex;
    justify-content: center;
    width: 300px;
    margin: 0 auto 20px;
  }
  article .pageLink li {
    flex-basis: 33.3333333333%;
  }
  article .pageLink li a {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    color: #fff;
    font-size: 1.4rem;
  }
  article .pageLink li:first-of-type {
    background-color: #0D8BD3;
    border-radius: 30px 0 0 30px;
  }
  article .pageLink li:nth-of-type(2) {
    background-color: #099E9C;
  }
  article .pageLink li:nth-of-type(3) {
    background-color: #B76CA4;
    border-radius: 0 30px 30px 0;
  }
  /*	コンテンツサイズ
  ---------------------------------------------------------------*/
  article section .hospitalFlex {
    margin-bottom: 83px;
  }
  article section .hospitalFlex dl {
    background-color: #fff;
    border-radius: 50px 50px 3px 3px;
    filter: drop-shadow(0 1px 3px rgba(40, 40, 40, 0.2274509804));
  }
  article section .hospitalFlex dl dt {
    height: 248px;
    background-color: #e4f7f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 248px;
    border-radius: 50px 50px 0 0;
  }
  article section .hospitalFlex dl dd {
    padding: 0 20px 50px 20px;
  }
  /*	見出し
  ---------------------------------------------------------------*/
  article section .hospitalFlex dl {
    margin-bottom: 30px;
  }
  article section .hospitalFlex dl dd {
    text-align: center;
  }
  article section .hospitalFlex dl dd h3 {
    display: inline-block;
    background-color: #19c3c1;
    color: #fff;
    line-height: 1.4;
    padding: 17px 34px;
    border-radius: 3px;
    transform: translateY(-27px);
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  /*	お知らせ一覧
  ---------------------------------------------------------------*/
  article section .hospitalFlex dl dd ul {
    margin-bottom: 20px;
    text-align: left;
  }
  article section .hospitalFlex dl dd ul li {
    padding: 8px 0;
    display: flex;
    gap: 20px;
    font-size: 1.4rem;
  }
  article section .hospitalFlex dl dd ul li span.title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  article section .hospitalFlex dl dd ul li span.title a {
    overflow: hidden;
    white-space: nowrap;
    color: #009593;
    position: relative;
    text-decoration: none;
  }
  article section .hospitalFlex dl dd ul li span.title a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #009593;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  article section .hospitalFlex dl dd ul li span.title a:hover::after {
    transform: scale(1, 1);
  }
  /*	各ホームページへ飛ぶボタン
  ---------------------------------------------------------------*/
  article section .hospitalFlex dl dd ul + a {
    font-size: 1.4rem;
    color: #fff;
    background-color: #19c3c1;
    line-height: 1;
    padding: 10px 60px;
    border-radius: 100px;
    transition: 0.3s;
  }
  article section .hospitalFlex dl dd ul + a span {
    line-height: 1;
    position: relative;
  }
  article section .hospitalFlex dl dd ul + a span::after {
    content: url(../images/union/icon_external.svg);
    position: absolute;
    top: -4px;
    right: -15px;
  }
  article section .hospitalFlex dl dd ul + a:hover {
    background-color: #282828;
  }
  /*	各病院のカラー
  ---------------------------------------------------------------*/
  article section .hospitalFlex .takachiho dt {
    background-image: url(../images/top/bg_takachiho.webp);
  }
  article section .hospitalFlex .takachiho dd h3, article section .hospitalFlex .takachiho dd ul + a {
    background-color: #0d8bd3;
  }
  article section .hospitalFlex .hinokage dt {
    background-image: url(../images/top/bg_hinokage.webp);
  }
  article section .hospitalFlex .hinokage dd h3, article section .hospitalFlex .hinokage dd ul + a {
    background-color: #099e9c;
  }
  article section .hospitalFlex .gokase dt {
    background-image: url(../images/top/bg_gokase.webp);
  }
  article section .hospitalFlex .gokase dd h3, article section .hospitalFlex .gokase dd ul + a {
    background-color: #b76ca4;
  }
  /*=================================================================*/
  /*	事務局からのお知らせ */
  /*=================================================================*/
  /*	出現アニメーション
  ---------------------------------------------------------------*/
  article section.newsDeco .inview {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: 0.5s;
  }
  article section.newsDeco .inview.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
  article section.newsDeco .inview:first-of-type {
    transition-delay: 0.3s;
  }
  article section.newsDeco .inview:nth-of-type(2) {
    transition-delay: 0.5s;
  }
  article section.newsDeco .inview:nth-of-type(3) {
    transition-delay: 0.7s;
  }
  /*	装飾
  ---------------------------------------------------------------*/
  article section.newsDeco {
    background-image: url(../images/union/deco_dot.svg), url(../images/union/deco_news_title.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: calc(50% - 626px) 92px, calc(50% - 710px) 38px;
    margin-top: 40px;
    margin-bottom: 83px;
  }
  /*	news装飾
  ---------------------------------------------------------------*/
  article .squareDeco {
    position: absolute;
    top: 664px;
    width: 100%;
    overflow: hidden;
    z-index: -1;
    height: 1000px;
  }
  article img.deco1 {
    position: absolute;
    top: 148px;
    left: 50%;
    transform: translateX(calc(-50% + 270px));
    animation: 180s linear infinite rotationS;
  }
  article img.deco2 {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(calc(-50% + 480px));
    animation: 180s linear infinite rotationY;
  }
  @keyframes rotationS {
    0% {
      transform: translateX(calc(-50% + 270px)) rotateY(0);
    }
    100% {
      transform: translateX(calc(-50% + 270px)) rotateY(360deg);
    }
  }
  @keyframes rotationR {
    0% {
      transform: translateX(calc(-50% + 480px)) rotate(0);
    }
    100% {
      transform: translateX(calc(-50% + 480px)) rotate(360deg);
    }
  }
  @keyframes rotationX {
    0% {
      transform: translateX(calc(-50% + 270px)) rotateX(0);
    }
    100% {
      transform: translateX(calc(-50% + 270px)) rotateX(-360deg);
    }
  }
  @keyframes rotationY {
    0% {
      transform: translateX(calc(-50% + 480px)) rotateY(0);
    }
    100% {
      transform: translateX(calc(-50% + 480px)) rotateY(-360deg);
    }
  }
  /*	見出し
  ---------------------------------------------------------------*/
  article section .newsFlex .newsTitle h2 {
    font-size: 2.5rem;
    line-height: 1.6;
  }
  article section .newsFlex .newsTitle .mini {
    font-size: 1.5rem;
    color: #bfbfbf;
    font-weight: 400;
    margin-bottom: 36px;
  }
  article section .newsFlex .newsTitle a {
    color: #009593;
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  article section .newsFlex .newsTitle a::before {
    position: absolute;
    top: -1px;
    left: 0;
    content: url(../images/union/icon_arrow.svg);
    display: block;
  }
  /*	お知らせ一覧
  ---------------------------------------------------------------*/
  article section .newsFlex .newsBox {
    background-image: url(../images/top/deco_line1.svg), url(../images/top/deco_line2.svg);
    background-repeat: repeat-x;
    background-position: top center, bottom center;
    padding: 35px 0;
  }
  article section .newsFlex .newsBox ul li {
    padding: 15px 0;
    display: flex;
    gap: 30px;
  }
  article section .newsFlex .newsBox ul li .day {
    white-space: nowrap;
    letter-spacing: 0.1em;
  }
  article section .newsFlex .newsBox ul li .title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  article section .newsFlex .newsBox ul li .title span.newMark {
    background-color: red;
    color: #fff;
    line-height: 1;
    font-size: 1.2rem;
    padding: 1px 5px 3px;
    margin-right: 5px;
    border-radius: 3px;
  }
  article section .newsFlex .newsBox ul li .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    color: #009593;
    position: relative;
    text-decoration: none;
  }
  article section .newsFlex .newsBox ul li .title a::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #009593;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  article section .newsFlex .newsBox ul li .title a:hover::after {
    transform: scale(1, 1);
  }
  /*	一覧へボタン
  ---------------------------------------------------------------*/
  article section .newsBox + a.btn, article section .magazine + a.btn {
    background-color: #19c3c1;
    width: 200px;
    margin: 20px auto 0;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    display: block;
    font-size: 1.4rem;
    border-radius: 100px;
  }
  article section a.newsBtn {
    background-color: #19c3c1;
    width: 200px;
    margin: 20px auto 0;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    display: block;
    font-size: 1.4rem;
    border-radius: 100px;
  }
  /*	病院だより
  ---------------------------------------------------------------*/
  article section .newsFlex .magazine .element {
    transition: 0.3s;
    padding-bottom: 30px;
    margin: 0 10px;
  }
  article section .newsFlex .magazine .element > div {
    display: block;
    width: 100%;
    padding: 70% 0;
    box-sizing: border-box;
    border: 1px solid #bebebe;
    border-radius: 3px;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  article section .newsFlex .magazine .element span {
    display: block;
    color: var(--secColor);
    font-size: 1.2rem;
    margin-top: 7px;
    letter-spacing: 0.1em;
  }
  article section .newsFlex .magazine .main-slider-arrow {
    cursor: pointer;
    transition: 0.3s;
    width: 26px;
    height: 13px;
  }
  article section .newsFlex .magazine .main-slider-prev-arrow {
    position: absolute;
    top: -52px;
    bottom: 0;
    left: 0px;
    margin: auto;
    z-index: 1;
  }
  article section .newsFlex .magazine .main-slider-next-arrow {
    position: absolute;
    top: -52px;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 1;
  }
  article section .newsFlex .magazine .slick-disabled {
    display: none !important;
  }
  /*=================================================================*/
  /*	バナー */
  /*=================================================================*/
  /*	出現アニメーション
  ---------------------------------------------------------------*/
  footer .banner ul li {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.3s;
    animation-delay: 0.3s;
  }
  footer .banner.active ul li {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    animation-name: rotateXAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  @keyframes rotateXAnime {
    from {
      transform: rotateX(0);
    }
    to {
      transform: rotateX(-360deg);
    }
  }
  footer .banner {
    background-color: #cbeded;
    padding: 30px 20px;
  }
  footer .banner .main-slider-prev-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    margin: auto;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
  }
  footer .banner .main-slider-next-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    margin: auto;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
  }
  footer .banner ul {
    margin: 0 auto;
    gap: 20px 0;
  }
  footer .banner ul li a {
    width: 90%;
    margin: 0 auto;
    display: flex;
    height: 67px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    background-image: url(../images/top/icon_arrow_banner.svg);
    background-repeat: no-repeat;
    background-position: center right 10px;
    transition: 0.2s;
  }
  footer .banner ul li a:hover {
    background-position: center right 5px;
  }
  footer .banner ul li a img {
    transform: translateX(-6px);
    width: 100px;
  }
  /*<end>============================================================*/
}

/*# sourceMappingURL=top.css.map */
