﻿.l-wp {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*----------------------------------------------------------------------------------------------------

  Header
  
----------------------------------------------------------------------------------------------------*/
:root {
  --hd-shadow: 0 5px 15px 0 rgba(var(--color-10), 0.05);
}

.l-hd {
  /* max-width: var(--base-width); */
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* background-color: var(--background-); */

}

header {
  background-color: rgba(var(--color-blue04), 1);
}

@media print, screen and (min-width:641px) {
  header {
    /* background-color: #fff; */
    box-shadow: var(--hd-shadow);
    position: relative;
    z-index: 200;
  }

  .l-hd {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    box-sizing: content-box;
  }
}

@media screen and (max-width:640px) {
  :root {
    --SP-hd-height: 3.5em;
  }

  body {
    padding-top: 3.5em;
  }

  header {
    width: 100%;
    min-width: var(--SP-min-width);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
  }

  .l-hd {
    height: var(--SP-hd-height);
    position: relative;
    z-index: 200;
    /* background-color: #fff; */
    box-shadow: var(--hd-shadow);
    background-color: rgba(var(--color-blue04), 1)
  }
}

/*--------------------------------------------------------------------------------
  ロゴ
--------------------------------------------------------------------------------*/
.l-hd-logo {
  line-height: 1;
  -ms-flex-item-align: center;
  align-self: center;
  text-align: left;
}

.l-hd-logo a {
  display: block;
}

@media print, screen and (max-width:1340px) {
  .l-hd-logo img {
    max-width: 408px;
    /* width: 100%;
      margin-right: 30px; */
  }
}

/* @media print, screen and (min-width:641px) {
  .l-hd-logo img {
    width: 300px;
  }
} */
@media screen and (max-width:640px) {
  .l-hd-logo a {
    padding: 0.75em;
  }

  /* .l-hd-logo img {
    width: auto;
    height: 1.75em;
  } */
}

/*--------------------------------------------------------------------------------
  TEL・住所
--------------------------------------------------------------------------------*/
.l-hd-tel-list {
  margin-left: auto;
  list-style: none;
  font-family: "fot rodin pron";
  display: grid;
}

.l-hd .l-hd-tel-list {
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
}

.l-hd .l-hd-tel-list {
  color: #fff;
}

.l-SPgNav .l-hd-tel-list {
  margin-top: 20px;
  ;
  color: rgba(var(--color-blue04), 1);
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 20px;
}

.l-hd-tel-list li span.department {
  position: relative;
  width: 100%;
  font-weight: 600;
  z-index: 1;
}

.l-hd-tel-list li span.department::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: rgba(var(--color-yellow02), 1);
  z-index: -1;
}

.l-hd-tel-list li span.department small {
  padding-right: 8px;
}

.l-hd .l-hd-tel-list li span.department small {
  background-color: rgba(var(--color-blue04), 1);
}

.l-SPgNav .l-hd-tel-list li span.department small {
  background-color: #fff;
}

.l-hd-tel-list li span.department small {
  font-size: var(--fs-2s);
}

.l-hd-tel-list li span {
  display: block;
}

.l-hd .l-hd-tel-list li span {
  color: #fff;
}

.l-SPgNav .l-hd-tel-list li span.l-hd-tel a {
  color: rgba(var(--color-blue04), 1);
}

.l-SPgNav .l-hd-tel-list li .p-icon[icon="tel"]:before {
  background-image: url("../image/icon/tel_blue.svg");
}

.l-hd-tel-list li span.l-hd-tel {
  font-weight: 700;
  font-size: var(--fs-2l);
}

@media print, screen and (max-width:1340px) {
  .l-hd-tel-list li span.l-hd-tel {

    font-size: var(--fs-l);
  }

  .l-hd-tel-list li span.department small {
    font-weight: 600;
    font-size: var(--fs-3s);
  }
}

@media print, screen and (min-width:641px) {
  .l-SPgNav .l-hd-tel-list {
    display: none;
  }
}

@media print, screen and (max-width:640px) {
  .l-hd .l-hd-tel-list {
    display: none;
  }

  /* .l-SPgNav .l-hd-tel-list li span.l-hd-tel{
font-size: var(--fs-2l);
} */
}

/* .l-hd-ad {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: left;
}
.l-hd-tel {
  font-family: var(--ff-en);
  font-size: var(--fs-3l);
  font-weight: 500;
  color: var(--tel-fc);
  line-height: 1;
}
.l-hd-ad address {
  font-size: var(--fs-3s);
  line-height: var(--line-height-s);
  padding-left: 1.5em;
}
@media screen and (max-width:640px) {
  .l-hd-ad {
    display: none;
  }
} */

/*----------------------------------------------------------------------------------------------------

  Global navigation
  
----------------------------------------------------------------------------------------------------*/
.l-gNav-list {
  list-style: none;
  /* max-width: var(--base-width); */
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-s);
}

.l-gNav-list a,
.l-gNav-list a:visited,
.l-gNav-list a:hover {
  /* color: rgba(var(--color-8),1); */
  text-decoration: none;
  text-align: center;
}

.l-gNav-list a {
  display: block;
  font-family: "fot rodin pron";
}

.l-gNav-list>li>a {
  font-weight: 400;
  /* font-size: var(--fs-m); */
}

/* second */
.l-gNav-secondList {
  list-style: none;
}

@media print, screen and (min-width:641px) {
  .l-gNav {
    background-color: #fff;
  }

  .l-gNav.set-ani {
    transition: background 0.3s ease-out;
  }

  .l-gNav--fixSet.is-fix {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 900;
    width: 100%;
    min-width: var(--PC-min-width);
    box-shadow: var(--hd-shadow);
    /* background-color: rgba(var(--color-8),1); */
    background-color: rgba(var(--color-blue04), 1);
  }

  /* .l-gNav--fixSet.is-fix .l-gNav-list > li > a {
    font-size: 1em;
  } */
  .l-gNav--fixSet.is-fix .l-gNav-list a,
  .l-gNav--fixSet.is-fix .l-gNav-list a:visited,
  .l-gNav--fixSet.is-fix .l-gNav-list a:hover {
    color: #fff;
  }

  .ua-pc .l-gNav--fixSet.is-fix .l-gNav-list a:hover {
    color: rgba(255, 255, 255, 0.6);
  }

  .l-gNav {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }

  .l-gNav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-gNav-list>li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .ua-pc .l-gNav-list>li>a:hover,
  .l-gNav-list>li.parent.is-active>a {
    color: rgba(var(--color-5), 1);
  }

  .l-gNav--fixSet.is-fix .l-gNav-list>li.parent.is-active>a {
    color: rgba(255, 255, 255, 0.6);
  }

  .l-gNav-list>li>a {
    padding: 1em 0.5em;
    position: relative;
    overflow: hidden;
    transition: color 0.15s ease-out, opacity 0.15s ease-out, font-size 0.15s ease-out;
  }

  .l-gNav-list>li.parent {
    position: relative;
  }

  .l-gNav-list>li.parent>a .iocn {
    display: none;
  }

  .l-gNav-list a:hover {
    text-decoration: underline;
  }

  /* second */
  .l-gNav-secondList {
    display: none;
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
    text-align: left;
    font-size: var(--fs-2s);
    white-space: nowrap;
    transition: top 0.4s var(--cubic-bezier);
  }

  .l-gNav-secondList.is-active {
    top: 100%;
  }

  .l-gNav-secondList a,
  .l-gNav-secondList a:visited,
  .l-gNav-secondList a:hover,
  .ua-pc .l-gNav-secondList a:hover {
    color: #fff !important;
    text-decoration: none;
  }

  .l-gNav-secondList>li>a {
    background-color: rgba(var(--color-6), 1);
    padding: 0.75em 2em 0.75em 0.75em;
    position: relative;
  }

  .ua-pc .l-gNav-secondList>li>a:hover {
    background-color: rgba(var(--color-5), 1);
  }

  .l-gNav-secondList>li:not(:first-child)>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ua-pc .l-gNav-secondList>li>a:hover,
  .ua-pc .l-gNav-secondList>li:hover+li>a {
    border-top-color: transparent;
  }

  .l-gNav-secondList>li>a:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    right: 0.75em;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
  }
}

@media print, screen and (min-width:641px) and (max-width:1340px) {
  .l-gNav-list>li>a {
    font-size: var(--fs-2s);
  }
}

@media screen and (max-width:640px) {

  .l-gNav-list a,
  .l-gNav-list a:visited,
  .l-gNav-list a:hover {
    color: rgba(var(--color-8), 1);
  }

  html.is-sp-gNav-open,
  html.is-sp-gNav-close {
    overflow: hidden;
  }

  html.is-sp-gNav-open,
  html.is-sp-gNav-open body,
  html.is-sp-gNav-close,
  html.is-sp-gNav-close body {
    height: 100%;
  }

  .l-gNav {
    display: none;
    pointer-events: none;
    width: 100%;
    min-width: var(--SP-min-width);
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
    text-align: center;
    background-color: #ffff;
  }

  .l-SPgNav {
    pointer-events: auto;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: var(--SP-hd-height);
  }

  .l-SPgNav__item {
    opacity: 0;
    overflow-y: auto;
    padding: 0.5em 1.5em 0 1.5em;
    text-align: left;
    transition: padding 0.4s var(--cubic-bezier), opacity 0.6s var(--cubic-bezier);
  }

  .l-SPgNav__item.is-aniSet {
    opacity: 1;
    padding-top: 1em;
  }

  .l-SPgNav__item:after {
    content: "";
    width: 100%;
    height: 1.5em;
    display: block;
  }

  .l-gNav-list>li {
    border-bottom: 1px solid rgba(var(--color-5), 0.3);
  }

  .l-gNav-list>li>a {
    padding: 0.75em 0;
  }

  .l-gNav-list>li.parent>a {
    padding-right: 2em;
    position: relative;
  }

  .l-gNav-list>li.parent>a .icon {
    position: absolute;
    right: 0.5em;
    top: 1em;
    line-height: 0;
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 1em;
    height: 1em;
    background-color: rgba(var(--color-5), 1);
    box-sizing: content-box;
    border-radius: 50%;
  }

  .l-gNav-list>li.parent>a .icon:before,
  .l-gNav-list>li.parent>a .icon:after {
    content: "";
    display: inline-block;
    --width: 50%;
    --height: 2px;
    width: var(--width);
    height: var(--height);
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -webkit-calc(-1 * var(--height) / 2);
    margin-top: calc(-1 * var(--height) / 2);
    margin-left: -webkit-calc(-1 * var(--width) / 2);
    margin-left: calc(-1 * var(--width) / 2);
  }

  .l-gNav-list>li.parent>a .icon:after {
    transition: transform 0.5s var(--cubic-bezier);
    transform-origin: center center;
    transform: rotate(90deg) scale(1, 1);
  }

  .l-gNav-list>li.parent.is-active>a .icon:after {
    transform: rotate(90deg) scale(0, 1);
  }

  /* second */
  .l-gNav-secondList {
    display: none;
    padding-bottom: 1.25em;
  }

  .l-gNav-secondList>li>a {
    padding: 0.4em 1em 0.4em 2em;
    position: relative;
  }

  .l-gNav-secondList>li>a:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid rgba(var(--color-5), 1);
    border-bottom: 1px solid rgba(var(--color-5), 1);
    position: absolute;
    left: 1em;
    top: 1em;
    transform: rotate(-45deg);
  }
}

/* TEL・住所
----------------------------------------------------------------------*/
@media print, screen and (min-width:641px) {
  .l-gNav-ad {
    display: none;
  }
}

@media screen and (max-width:640px) {
  .l-gNav-ad {
    text-align: center;
    padding-top: 1.5em;
  }

  .l-gNav-ad address {
    font-size: var(--fs-2s);
    line-height: var(--line-height-s);
    padding-bottom: 1.5em;
  }

  .l-gNav-tel {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--ff-en);
    font-size: var(--fs-3l);
    font-weight: 500;
    line-height: 1;
  }

  .l-gNav-tel a {
    display: block;
    border: 2px solid #fbe0aa;
    background-color: #fff;
    padding: 0.5em 1em;
    border-radius: 3px;
    text-decoration: none;
  }

  .l-gNav-tel,
  .l-gNav-tel a {
    color: var(--tel-fc);
  }
}

/*--------------------------------------------------------------------------------
  SP button
--------------------------------------------------------------------------------*/
@media print, screen and (min-width:641px) {
  .l-gNavBtn {
    display: none;
  }
}

@media screen and (max-width:640px) {
  .l-gNavBtn {
    width: 3em;
    margin-left: auto;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(var(--color-blue02), 1);
  }

  .l-gNavBtn__icon,
  .l-gNavBtn__icon span,
  .l-gNavBtn__icon span:before,
  .l-gNavBtn__icon span:after {
    display: inline-block;
  }

  .l-gNavBtn__icon {
    position: relative;
    width: 18px;
    height: 14px;
    transition: all 0.3s ease-out;
  }

  .l-gNavBtn__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease-out;
  }

  .l-gNavBtn__icon span, .l-gNavBtn.is-close .l-gNavBtn__icon span {
    background-color: #fff;
  }

  /* .l-gNavBtn.is-close .l-gNavBtn__icon span {
    background-color: rgba(var(--color-8),1);
  } */
  .l-gNavBtn__icon span:nth-of-type(1) {
    top: 0;
  }

  .l-gNavBtn__icon span:nth-of-type(2) {
    top: 6px;
  }

  .l-gNavBtn__icon span:nth-of-type(3) {
    bottom: 0;
  }

  .l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(1) {
    -webkit-animation: navBtn01 0.4s forwards;
    animation: navBtn01 0.4s forwards;
  }

  .l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(2) {
    transition: opacity 0.2s 0.2s;
    opacity: 1;
  }

  .l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(3) {
    -webkit-animation: navBtn02 0.4s forwards;
    animation: navBtn02 0.4s forwards;
  }

  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(1) {
    -webkit-animation: active-navBtn01 0.4s forwards;
    animation: active-navBtn01 0.4s forwards;
  }

  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(2) {
    opacity: 0;
  }

  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(3) {
    -webkit-animation: active-navBtn03 0.4s forwards;
    animation: active-navBtn03 0.4s forwards;
  }

  html.is-sp-gNav-open .l-gNavBtn:not(.is-aniSet) .l-gNavBtn__icon span:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
    animation: none;
  }

  html.is-sp-gNav-open .l-gNavBtn:not(.is-aniSet) .l-gNavBtn__icon span:nth-of-type(3) {
    transform: translateY(-6px) rotate(-45deg);
    animation: none;
  }
}

@keyframes navBtn01 {
  0% {
    transform: translateY(6px) rotate(45deg);
  }

  50% {
    transform: translateY(6px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes navBtn02 {
  0% {
    transform: translateY(-6px) rotate(-45deg);
  }

  50% {
    transform: translateY(-6px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes active-navBtn01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(6px) rotate(0);
  }

  100% {
    transform: translateY(6px) rotate(45deg);
  }
}

@keyframes active-navBtn03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-6px) rotate(0);
  }

  100% {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/*----------------------------------------------------------------------------------------------------

  Contents
  
----------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
  ページタイトル
--------------------------------------------------------------------------------*/
.l-pgTtl {
  /* background-color: rgba(var(--color-blue02),1); */
  background: rgb(18, 179, 154);
  background: linear-gradient(270deg, rgba(93, 162, 242, 1) 0%, rgba(56, 171, 198, 1) 50%, rgba(18, 179, 154, 1)100%);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-pgTtl__txt {
  width: 100%;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* color: rgba(var(--color-8),1); */
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
}

.l-pgTtl__txt:before {
  content: "";
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 60%;
  display: inline-block;
  margin-right: 0.75em;
  flex-shrink: 0;
}

/* アイコン */
.l-pgTtl--about .l-pgTtl__txt:before {
  background-image: url("../image/icon/center.png");
}

.l-pgTtl--system .l-pgTtl__txt:before {
  background-image: url("../image/icon/system.png");
}

.l-pgTtl--work .l-pgTtl__txt:before {
  background-image: url("../image/icon/doctor.png");
}

.l-pgTtl--contact .l-pgTtl__txt:before {
  background-image: url("../image/icon/form.png");
}


.l-pgTtl--info .l-pgTtl__txt:before {
  background-image: url("../image/icon/pg_info.svg");
}

/* お知らせ */
.l-pgTtl--guide .l-pgTtl__txt:before {
  background-image: url("../image/icon/pg_guide.svg");
}

/* ご来院の方へ */
.l-pgTtl--shinryo .l-pgTtl__txt:before {
  background-image: url("../image/icon/pg_shinryo.svg");
}

/* 診療案内 */
.l-pgTtl--doctor .l-pgTtl__txt:before {
  background-image: url("../image/icon/pg_doctor.svg");
}

/* ドクター紹介 */
.l-pgTtl--clinic .l-pgTtl__txt:before {
  background-image: url("../image/icon/pg_clinic.svg");
}

/* 院内紹介 */
.l-pgTtl--access .l-pgTtl__txt:before {
  background-image: url("../image/icon/pg_access.svg");
}

/* アクセス */
@media print, screen and (min-width:641px) {
  .l-pgTtl {
    height: 120px;
  }

  .l-pgTtl__txt {
    font-size: var(--fs-2l);
  }
}

@media screen and (max-width:640px) {
  .l-pgTtl {
    height: -webkit-calc(140 / 640 * 100vw);
    height: calc(140 / 640 * 100vw);
    min-height: 90px;
  }

  .l-pgTtl__txt {
    font-size: var(--fs-l);
  }
}

@media screen and (max-width:480px) {
  /*   .l-pgTtl__txt:before {
 
    width: 3em;
  } */

}

/*--------------------------------------------------------------------------------
  パンくずリスト
--------------------------------------------------------------------------------*/
.l-pan {
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  padding-top: 1.25em;
}

.l-pan__list {
  width: 100%;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  list-style: none;
  line-height: 2;
  font-size: var(--fs-3s);
}

.l-pan__list li {
  display: inline;
  position: relative;
}

.l-pan__list li:not(:last-child) {
  padding-right: 1.25em;
}

.l-pan__list li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0.25em;
  background-color: rgba(var(--color-4), 1);
}

/*--------------------------------------------------------------------------------
  2column
--------------------------------------------------------------------------------*/
.l-ct-cols {
  padding-top: var(--block-space-l);
  padding-bottom: var(--block-space-max);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  text-align: left;
}

@media print, screen and (min-width:641px) {
  .l-ct-cols {
    box-sizing: content-box;
    max-width: var(--base-width);
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-ct__main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 3.5em;
  }

  .l-ct__side {
    width: 28%;
  }

  /* 小見出し */
  .l-ct__side .p-sub-hdLine {
    font-size: 1em;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }
}

@media screen and (max-width:640px) {
  .l-ct__side {
    padding-top: var(--block-space-max);
  }
}

/*----------------------------------------------------------------------------------------------------

  Footer
  
----------------------------------------------------------------------------------------------------*/
footer {
  position: relative;
  margin-top: auto;
}

.l-ft {
  text-align: left;
  /* background-color: #fff; */
  /* 
  box-shadow: 0 0 20px 0 rgba(var(--color-8),0.05); */
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  background-color: rgba(var(--color-gray01), 1);
}

@media print, screen and (min-width:641px) {
  .l-ft {
    padding-top: 3.5em;
    padding-bottom: 3em;
  }

  .l-ft-cols {
    max-width: var(--base-width);
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width:640px) {
  .l-ft {
    padding-top: 3.5em;
    padding-bottom: 2.5em;
  }

  .l-ft .l-gNav-list {
    display: none;
  }

}

/*--------------------------------------------------------------------------------
  医院情報
--------------------------------------------------------------------------------*/
.l-ft-logo {
  line-height: 1;
  text-align: center;
  margin-bottom: var(--block-space-m);
}

.l-ft .kamokuList {
  padding-top: 1.25em;
  color: rgba(var(--color-8), 1);
  font-size: var(--fs-2s);
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-ft .kamokuList li:not(:last-child):after {
  content: "、";
}

.l-ft-ad {
  line-height: 1.6;
  padding-top: 0.75em;
  padding-bottom: 1em;
  font-size: var(--fs-s);
}

.l-ft-tel {
  display: block;
  font-family: var(--ff-en);
  font-size: var(--fs-3l);
  font-weight: 500;
  line-height: 1;
}

.l-ft-tel,
.l-ft-tel a {
  color: var(--tel-fc);
}

.l-ft-logo img {
  /* width: 280px; */
  max-width: 608px;
}

@media print, screen and (min-width:641px) {
  .l-ft-col1 {
    width: 40%;
    padding-right: 60px;
  }

}

@media screen and (max-width:640px) {
  /* .l-ft-logo img {
    width: auto;
    height: 2em;

  } */
}

/*--------------------------------------------------------------------------------
  診療時間
--------------------------------------------------------------------------------*/
@media print, screen and (min-width:641px) {
  .l-ft-col2 {
    width: 55%;
    margin-left: auto;
  }
}

@media screen and (max-width:640px) {
  .l-ft-col2 {
    padding-top: 2em;
  }
}

/*--------------------------------------------------------------------------------
  copyright
--------------------------------------------------------------------------------*/
.l-ft-copy {
  text-align: center;
  line-height: 1;
  color: #fff;
  background-color: rgba(var(--color-blue04), 1);
  /* color: rgba(var(--color-5),1); */
  font-size: var(--fs-3s);
  padding-top: 15px;
  padding-bottom: 15px;
}

/* @media print,screen and (min-width:641px) {
  .l-ft-copy {
    max-width: var(--base-width);
     margin-left: auto;
    margin-right: auto; 
    padding-top: 3em;
  }
}
@media screen and (max-width:640px) {
  .l-ft-copy {
    padding-top: 2em;
  }
} */

/*--------------------------------------------------------------------------------
  Back to top
--------------------------------------------------------------------------------*/
.l-backtoTop-wrap {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 90;
  width: 100%;
  min-width: var(--PC-min-width);
  pointer-events: none;
  text-align: right;
  margin-top: 101px;
}

.l-backtoTop-wrap.is-noFix {
  display: block;
  position: relative;
  bottom: inherit;
  left: 0 !important;
  /* margin-top: -80px; */
  margin-top: -66px;
}

.l-backtoTop {
  display: inline-block;
  pointer-events: auto;
  /* width: 80px;
  height: 80px; */
  width: 66px;
  height: 66px;
  border: 1px solid #fff;
  cursor: pointer;
  background-color: rgba(var(--color-blue04, 1));
}

.l-backtoTop__icon {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-backtoTop__icon:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  /* border-top: 2px solid rgba(var(--color-8),1);
  border-right: 2px solid rgba(var(--color-8),1); */
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width:640px) {
  .l-backtoTop-wrap {
    position: absolute;
    min-width: inherit;
    bottom: 0;
    top: 0.5em;
    left: 0 !important;
  }

  .l-backtoTop {
    width: 4em;
    height: 4em;
  }

  .l-backtoTop__icon:after {
    width: 12px;
    height: 12px;
    margin-top: 6px;
  }
}


/*--------------------------------------------------------------------------------
  grid
--------------------------------------------------------------------------------*/

/* .col2_gr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media print, screen and (max-width:800px) {
  .col2_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col3_gr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media print, screen and (max-width:960px) {
  .col3_gr {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print, screen and (max-width:640px) {
  .col3_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col4_gr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media print, screen and (max-width:960px) {
  .col4_gr {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print, screen and (max-width:640px) {
  .col4_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col5_gr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media print, screen and (max-width:1280px) {
  .col5_gr {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media print, screen and (max-width:960px) {
  .col5_gr {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print, screen and (max-width:640px) {
  .col5_gr {
    grid-template-columns: repeat(1, 1fr);
  }
} */

/* col2_gr */
.col2_gr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* @media print, screen and (max-width:800px) */
@media print, screen and (max-width:480px) {
  .col2_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col3_gr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* @media print, screen and (max-width:960px) */
@media print, screen and (max-width:768px) {
  .col3_gr {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* @media print, screen and (max-width:640px) */
@media print, screen and (max-width:480px) {
  .col3_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col4_gr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media print, screen and (max-width:768px) {
  .col4_gr {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print, screen and (max-width:480px) {
  .col4_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col5_gr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media print, screen and (max-width:1024px) {
  .col5_gr {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media print, screen and (max-width:768px) {
  .col5_gr {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print, screen and (max-width:480px) {
  .col5_gr {
    grid-template-columns: repeat(1, 1fr);
  }
}