@charset "utf-8";

/*--------- ↓ここは消さない(block parts インサーター iframe用) ---------*/
.wp-block .hogehoge {
  color: #333;
}
/*--------- ↑ここは消さない ---------*/

/*
********************************************
common
******************************************** */
/* heading */
[class^='block-ttl-'] {
  font-weight: bold;
}

/* border-radius */
.block-bdr-radius {
  border-radius: 10px;
}

/* box-shadow */
.block-box-shadow {
  box-shadow: 3px 3px 8px -5px var(--black);
}
:where(.wp-block-columns) {
  margin-bottom: 0;
}

@media only screen and (max-width: 781px){
  :where(.wp-block-columns.is-layout-flex) {
    gap: 20px;
  }
}

.editor-page > *:first-child{
  margin-top: 0!important;
}


.editor-page a{
  text-decoration: underline;
}


/* ********************************************
タイトル
******************************************** */

/*タイトル01(block-ttl-01)*/
.block-ttl-01 {
  position: relative;
  text-align: center;
  font-size: var(--fs-ttl-m);
  padding-bottom: 50px;
}
.block-ttl-01::before{
  position: absolute;
  content: "";
  width: 67.5px;
  aspect-ratio: 1	/ 0.444;
  min-height: 0;
  bottom: 0;
  left: 50%;
  background:url(../images/block/title-h2.svg) center center / contain no-repeat;
  transform: translateX(-50%);
}
@media only screen and (max-width: 599px){
  .block-ttl-01 {
    padding-bottom: 40px;
  }
  .block-ttl-01::before{
    width: 50px;
  }
}

/*タイトル02(block-ttl-02)*/
.block-ttl-02 {
  padding: 0.7em 1em;
  border: 2px solid var(--cl-main);
  border-radius: var(--box-br);
  font-size: var(--fs-ttl-s);
  position: relative;
}
.block-ttl-02::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 70%;
  background-color: var(--cl-main);
  left: 0;
  top: 50%;
  border-radius: 0 2px 2px 0;
  transform: translateY(-50%);
}

/*タイトル03(block-ttl-03)*/
.block-ttl-03 {
  position: relative;
  font-size: var(--fs-ttl-s);
  font-weight: bold;
  padding: 0.7em 0;
  line-height: 1.7;
  border-bottom: 2px solid var(--cl-accent);
}
/*タイトル04(block-ttl-04)*/
.block-ttl-04 {
  position: relative;
  font-size: var(--fs-ttl-xs);
  padding-left: 2em;
}
.block-ttl-04::before {
  position: absolute;
  content: '';
  display: block;
  background: var(--cl-accent);
  left: 0;
  top: 0.85em;
  width: 1.5em;
  height: 3px;
}

/* ********************************************
ボタン　基本的な装飾はstyleを参照
******************************************** */

/*ボタン白（PDF）(block-btn-04)、
ボタン白（Excel）(block-btn-05)、
ボタン白（Word）(block-btn-06)、
ボタン白（PowerPoint）(block-btn-07)*/
.block-btn-04 > div :where(a,div):after ,
.block-btn-05 > div :where(a,div):after ,
.block-btn-06 > div :where(a,div):after ,
.block-btn-07 > div :where(a,div):after ,
.block-btn-08 > div :where(a,div):after {
  content: '\f1c1';
  font-weight: normal;
  font-size: 20px;
  font-family: 'Font Awesome 7 Free';
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  margin-left: 5px;
  background: none;
}
.block-btn-05 > div :where(a,div):after {
  content: '\f1c3';
}
.block-btn-06 > div :where(a,div):after {
  content: '\f1c2';
}
.block-btn-07 > div :where(a,div):after {
  content: '\f1c4';
}
.block-btn-08 > div :where(a,div):after {
  content: '\f08e';
  font-weight: bold;
}

.block-btn-column{
  display: grid!important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.block-btn-column > div{
  width: 100%;
  height: 100%;
  background-color: var(--white);
}
.block-btn-column > div :where(a,div){
  background-color: transparent;
  color: var(--black);
  border-radius: var(--btn-br);
  border: 1px solid var(--gray);
  text-decoration: none;
  font-size: var(--fs-default);
  font-weight: bold;
  padding: 1.5em 2em 1.5em 1em;
  text-align: left;
  position: relative;
  background-color: var(--white);
  display: block;
  width: 100%;
  height: 100%;
}
.block-btn-column > div :where(a,div)::after{
  content: "";
  position: absolute;
  display: block;
  width: 1.25em;
  height: 1.25em;
  top: 50%;
  right: 0.7em;
  transform: translateY(-50%) rotate(90deg);
  background: url(../images/common/arrow-circle.svg) center center / contain no-repeat;
}
.block-btn-column.btn-column-arrow-right > div :where(a,div)::after{
  transform: translateY(-50%);
}
@media only screen and (max-width: 1024px){
  .block-btn-column > div :where(a,div){
    padding: 1em 2em 1em 0.5em;
  }
}
@media only screen and (max-width: 768px){
  .block-btn-column{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px){
  .block-btn-column{
    gap: 10px;
  }
  .block-btn-column > div :where(a,div){
    padding: 1em 1.5em 1em 0.5em;
  }
  .block-btn-column > div :where(a,div)::after{
    width: 1em;
    height: 1em;
    right: 0.3em;
  }
}
/* お問い合わせ */
.block-btn-contact{
  background-color: var(--cl-base03);
  padding: 3em 2em;
  border-radius: var(--box-br);
}
.block-btn-contact br{
    display: none;
}
.block-btn-contact > div{
  width: 100%;
  display: grid!important;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.block-btn-contact > div > div{
  height: 100%;
  display: flex!important;
  flex-direction: column;
  justify-content: center;
}
.block-btn-contact > div > div :where(a,div){
  color: var(--white);
  border-radius: var(--box-br);
  text-decoration: none;
  text-align: center;
  padding: 1.5em 1em;
}
.block-btn-contact > div > div :where(a,div) strong{
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-btn-contact > div > div :where(a,div) strong::before{
  content: "";
  display: block;
  margin-right: 10px;
  width: 40px;
  min-width: 40px;
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.block-btn-contact .block-btn-contact-tel :where(a,div){
  background-color: var(--cl-btn);
}
.block-btn-contact .block-btn-contact-tel :where(a,div) strong{
  font-size: var(--fs-ttl-xl);
  line-height: 1.3;
}
.block-btn-contact .block-btn-contact-tel :where(a,div) strong::before{
  background: url(../images/block/tel.svg) center center / contain no-repeat;
}

.block-btn-contact .block-btn-contact-mail :where(a,div){
  background-color: var(--cl-btn02);
}
.block-btn-contact .block-btn-contact-mail :where(a,div) strong{
  font-size: var(--fs-ttl-m);
}
.block-btn-contact .block-btn-contact-mail :where(a,div) strong::before{
  background: url(../images/block/mail.svg) center center / contain no-repeat;
}

@media only screen and (max-width: 1024px){
  .block-btn-contact > div > div :where(a,div) strong::before{
    width: 30px;
    min-width: 30px;
  }
  .block-btn-contact{
    padding: 2em 1em;
  }
  .block-btn-contact > div{
    gap: 10px;
  }
  .block-btn-contact > div > div :where(a,div){
    padding: 1.5em 0.5em;
  }
}
@media only screen and (max-width: 599px){
  .block-btn-contact > div{
    display: block!important;
  }
  .block-btn-contact > div > div + div{
    margin-top: 20px!important;
  }
}
@media only screen and (max-width: 400px){
  .block-btn-contact > div > div:first-of-type :where(a,div) strong{
    font-size: 25px;
    line-height: 1.3;
  }
  .block-btn-contact > div > div :where(a,div) strong::before{
    width: 25px;
    min-width: 25px;
  }
}



/* ********************************************
リンク
******************************************** */

/*--------- 外部リンク(link) ---------*/
.block-link-outside{
  height: fit-content;
}
.block-link-outside a {
  display: inline-block;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--black);
}
.block-link-outside a:after {
  content: '\f08e';
  display: inline-block;
  font-weight: 900;
  text-decoration: none;
  font-family: 'Font Awesome 7 Free';
  margin-left: 5px;
  color: var(--cl-main);
  text-decoration: none!important;
}

/* ********************************************
リスト
******************************************** */

/* 点リスト、数字リスト */
.block-list01 {
  padding-inline-start: 0;
}
.block-list01 li {
  list-style-type: none;
  position: relative;
  display: flex;
  padding: 0.2em 0;
  /* text-indent: -1.2em; */
  font-size: var(--fs-default);
}
.block-list01 li:before {
  content: '';
  position: relative;
  display: inline-block;
}
ul.block-list01 li{
  margin-left: 20px;
  padding: 0.2em 0;
}
ul.block-list01 li:before {
  position: absolute;
  width: 5px;
  min-width: 5px;
  height: 5px;
  background: var(--cl-main);
  border-radius: 50%;
  top: 0.95em;
  left: -17px;
}
.block-list01 li > div {
  display: inline;
}
ol.block-list01 {
  list-style-type: none;
  counter-reset: item;
  padding-left: 0;
}
ol.block-list01 li {
  list-style-type: none;
  padding: 0.2em 0;
  margin-left: 0;
}
ol.block-list01 li:before {
  counter-increment: item;
  content: counter(item) ".";
  margin-right: 10px;
  display: inline-block;
  color: var(--cl-main);
  font-weight: bold;
}

/* リストカラム（点リスト2列）（数字リスト2列） */
.block-list01.block-list01-col2 {
  column-count: 2;
}
@media only screen and (max-width: 768px) {
  .block-list01.block-list01-col2 {
    column-count: 1;
  }
}

/* リスト（四角アイコン） */
.block-list02 {
  margin: 1em 0;
}
.block-list02 li {
  list-style-type: none !important;
  position: relative;
  padding: 0.2em 0;
  display: flex;
  align-items: center;
  margin-left: 0 !important;
}
.block-list02 li:before {
  content: '';
  margin-right: 10px;
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--cl-main);
}




/* ********************************************
カラム
******************************************** */

/*--------- リストカラム（左右カラム） ---------*/
.block-box-01 .block-box-01-inner:last-child {
  border-bottom: 1px solid var(--gray);
}
.block-box-01-inner {
  border-top: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
  gap: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.block-box-01 .block-box-01-inner:first-of-type{
  border-radius: var(--box-br) var(--box-br) 0 0;
}
.block-box-01 .block-box-01-inner:last-of-type{
  border-radius: 0 0 var(--box-br) var(--box-br);
}
.block-box-01-left {
  padding: 1.5em 1em 1.5em 1em;
  border-right: 1px solid var(--gray);
  background-color: var(--l-gray);
}
.block-box-01-left :where(h1,h2,h3,h4){
  font-size: var(--fs-default);
  margin: 0;
  margin-top: 0.1em;
}
.block-box-01-right {
  padding: 1.5em 1em 1.5em 1em;
}
.block-box-01-right p{
  line-height: 1.7;
}
@media only screen and (max-width: 781px) {
  .block-box-01-left,
  .block-box-01-right{
    border-right: none;
    padding: 0.5em 0 0.5em 1em;
  }
}

/*--------- カラム（メインカラー枠線） ---------*/
.block-box-02 {
  padding: 1.5em 1em;
  background-color: var(--cl-base03);
  border-radius: var(--box-br);
}
@media only screen and (max-width: 599px){
  .block-box-02 {
    padding: 1em 0.5em;
    background-color: var(--cl-base03);
    border-radius: var(--box-br);
  }
}

/*-- 左右カラム（左に画像、右に文章） --*/
.block-box-03 {
  margin-bottom: 0;
}
.block-box-03 div{
  width: 100%;
}
.block-box-03 :where(h2,h3,h4,h5){
  font-size: var(--fs-ttl-s);
  margin-top: 0;
  margin-bottom: var(--space-ss);
}

.block-box-03 div img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: var(--box-br);
}
@media only screen and (max-width: 781px) {
  .block-box-03 {
    gap: 20px!important;
  }
  /* .block-box-03 div img {
    width: 90%;
  } */
}

/*-- 左右カラム（右に画像、左に文章） --*/
.block-box-04 {
  /* padding: 20px; */
  flex-direction: row-reverse !important;
  margin-bottom: 0;
}
.block-box-04 div {
  width: 100%;
}
.block-box-04 :where(h2,h3,h4,h5){
  font-size: var(--fs-ttl-s);
  margin-top: 0;
  margin-bottom: var(--space-ss);
}
.block-box-04 div img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: var(--box-br);
}
@media only screen and (max-width: 781px) {
  .block-box-04 {
    gap: 20px!important;
  }
  /* .block-box-04 div img {
    width: 90%;
  } */
}
/*--------- 画像左右カラム ---------*/
.block-box-05 {
  margin-bottom: 0;
}
.block-box-05 div{
  width: 100%;
}
.block-box-05 img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  border-radius: var(--box-br);
}
@media only screen and (max-width: 781px) {
  .block-box-05 {
    gap: 20px!important;
  }
  .block-box-05 img {
    width: 90%;
  }
}
@media only screen and (max-width: 599px) {
}


/*--------- 画像3列カラム ---------*/
.block-box-06 {
  margin-bottom: 0;
  gap: 1em;
}
.block-box-06 div{
  width: 100%;
}
.block-box-06 img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  object-fit: contain;
  border-radius: var(--box-br);
}
.block-box-06 div:last-of-type {
  margin-left: 0 !important;
}
@media only screen and (max-width: 781px) {
  .wp-block-columns.block-box-06 {
    flex-wrap: nowrap !important; 
  }
}
@media only screen and (max-width: 599px) {
  .block-box-06 {
    gap: 20px;
  }
  .wp-block-columns.block-box-06 {
    flex-wrap: wrap !important; 
  }
  .block-box-06 img {
    width: 90%;
  }
}

/*--------- 流れパーツ ---------*/
.block-box-flow > .wp-block-group{
  border: 2px solid var(--cl-main);
  border-radius: var(--box-br);
  position: relative;
  display: grid;
  grid-template-columns: 3fr 7fr;
  padding: 3em 4em;
  gap: 20px;
}
.block-box-flow > .wp-block-group > div{
  width: 100%;
}
.block-box-flow > .wp-block-group + .wp-block-group{
  margin-top: 75px;
}
.block-box-flow > .wp-block-group + .wp-block-group:before{
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 2 / 1;
  min-height: 0;
  background: url(../images/block/arrow-flow.svg) center center / contain no-repeat;
}

@media only screen and (max-width: 1300px){
  .block-box-flow > .wp-block-group{
    padding: 1.5em 2em;
  }
}
@media only screen and (max-width: 768px){
  .block-box-flow > .wp-block-group{
    gap:10px;
  }
  .block-box-flow > .wp-block-group + .wp-block-group{
    margin-top: 55px;
  }
  .block-box-flow > .wp-block-group + .wp-block-group:before{
    top: -35px;
  }
}
@media only screen and (max-width: 600px){
  .block-box-flow > .wp-block-group{
    display: block;
    padding: 1em 1em;
  }
  .block-box-flow > .wp-block-group > div + div{
    margin-top: 10px;
  }
}



/* ********************************************
もくじ
******************************************** */

/*-- 目次・もくじ(block-mokuji-01) --*/
.block-mokuji-01 {
  padding: 25px 40px;
  border: 2px solid var(--cl-base);
  min-width: 500px;
  margin-left: auto;
  margin-right: auto;
  flex-basis: auto !important;
  flex-grow: 0 !important;
  border-radius: 4px;
  margin: 2em 0 !important;
}
.block-mokuji-01 p {
  font-size: 2rem;
  border-bottom: 2px solid var(--cl-main);
  font-weight: bold;
  padding: 5px 0 15px;
}
/*
.block-mokuji-01 p:after{
  content:'Contents';
  color:var(--gray);
  font-weight:normal;
  font-size:1.6rem;
  display:inline-block;
  margin-left:10px;
}
*/
.block-mokuji-01 ol {
  list-style-type: none;
  counter-reset: item;
  padding-left: 0;
  margin-top: 20px;
  font-weight: bold;
}
.block-mokuji-01 ol li {
  list-style-type: none;
  padding: 5px 0 5px 1em !important;
  margin-left: 10px;
  text-indent: -0.7em;
}
.block-mokuji-01 ol li:before {
  counter-increment: item;
  content: counter(item) '.';
  padding: 0 5px 0 0;
  display: inline-block;
  color: var(--cl-main);
}
.block-mokuji-01 ol li .block-editor-rich-text__editable {
  padding-left: 10px;
}
.block-mokuji-01 ol li > div {
  display: inline;
}

@media only screen and (max-width: 768px) {
  .block-mokuji-01 {
    min-width: 100%;
  }
}

/* ********************************************
テキスト
******************************************** */

/*-- 注意点テキスト --*/
.block-txt-01 {
  position: relative;
  display: flex;
  align-items: center;
}
.block-txt-01:before {
  /*content:url(../images/common/icon24.svg);
  padding:7px 5px 0 0;*/
  padding-right: 5px;
  display: flex;
  align-items: center;
  content: '\f06a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--red);
}

/* ********************************************
電話番号
******************************************** */
.block-tel-col-01 {
  padding: 1em 2em;
  border: 2px solid var(--cl-main);
  border-radius: 10px;
  max-width: 800px;
}
.block-tel-col-01 > div:first-of-type{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.block-tel-col-01 > div:first-of-type p{
  display: inline-block;
  margin: 0!important;
}
.block-tel-col-01 > div:first-of-type p{
  font-weight: bold;
  font-size: var(--fs-ttl-m);
}
.block-tel-col-01 > div:first-of-type a{
  font-weight: bold;
  font-size: var( --fs-ttl-xl);
  color: var(--cl-main);
  text-decoration: none;
}
.block-tel-col-01 > div:nth-of-type(2){
  background-color: var(--cl-base03);
  border-radius: var(--box-br);
  padding: 1em;
  width: 100%;
  margin-top: 10px;
}
@media only screen and (max-width: 599px){
  .block-tel-col-01 {
    padding: 1em;
  }
  .block-tel-col-01 > div:first-of-type{
    align-items: start;
    flex-direction: column;
  }
  .block-tel-col-01 > div:first-of-type p:last-of-type{
    line-height: 1.4;
  }
  .block-tel-col-01 > div:nth-of-type(2){
    padding: 0.5em;
  }
}

/* ********************************************
アコーディオン
******************************************** */
.block-acc-01 summary,
.block-acc-01 > div {
  padding: 18px 45px 18px 18px;
  background-color: var(--cl-base03);
}
.block-acc-01 summary {
  border-radius: var(--box-br);
  font-size: var(--fs-lead);
  display: block;
  position: relative;
  font-weight: bold;
}
.block-acc-01[open] summary{
  border-radius: var(--box-br) var(--box-br) 0 0;
}
.block-acc-01 summary:after {
  position: absolute;
  content: '';
  width: 1.5em;
  height: 1.5em;
  top: 50%;
  background: url(../images/block/plus.svg) center center no-repeat;
  right: 1em;
  color: var(--cl-main);
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.block-acc-01[open] summary:after {
  background: url(../images/block/minus.svg) center center no-repeat;
}
/* SPはホバー動作なし */
@media only screen and (min-width: 600px){
  .block-acc-01 summary:hover:after {
    background: url(../images/block/plus-hover.svg) center center no-repeat;
  }
  .block-acc-01[open] summary:hover:after {
    background: url(../images/block/minus-hover.svg) center center no-repeat;
  }
}
summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.block-acc-01 > div {
  border-top: none;
  border-radius: 0 0 var(--box-br) var(--box-br);
}
.block-acc-01[open] > div {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@media only screen and (max-width: 599px){
  .block-acc-01 summary,
  .block-acc-01 > div {
    padding: 18px 36px 18px 18px;
  }
  .block-acc-01 summary:after {
    right: 0.5em;
  }
}
@media only screen and (max-width: 400px){
  .block-acc-01 summary,
  .block-acc-01 > div {
    padding: 14px 36px 14px 14px;
  }
}

.block-acc-01.block-acc-01-qa summary,
.block-acc-01.block-acc-01-qa > div {
  padding: 18px 45px 18px 50px;
  background-color: var(--cl-base03);
  position: relative;
}
.block-acc-01.block-acc-01-qa summary:before,
.block-acc-01.block-acc-01-qa > div:before{
  position: absolute;
  font-size: 22px;
  font-weight: bold;
  left: 18px;
}
.block-acc-01.block-acc-01-qa summary:before {
  content: 'Q.';
  color: var(--cl-main);
  top: 50%;
  transform: translateY(-50%);
}
.block-acc-01.block-acc-01-qa > div:before{
  content: 'A.';
  top: 0.6em;
  color: var(--cl-accent03);
}
@media only screen and (max-width: 599px){
  .block-acc-01.block-acc-01-qa summary,
  .block-acc-01.block-acc-01-qa > div {
    padding: 14px 36px 14px 33px;
  }
  .block-acc-01.block-acc-01-qa summary:before,
  .block-acc-01.block-acc-01-qa > div:before{
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    left: 5px;
  }
}

/* ********************************************
外来担当医表
******************************************** */
.page-schedule .schedule table{
  background-color: var(--cl-main)!important;
  border-radius: var(--box-br);
  border: 2px solid var(--cl-main);
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.page-schedule .schedule thead tr th{
  background-color: transparent!important;
  color: var(--white);
  border: none!important;
  text-align: center!important;
  font-weight: bold!important;
}
.page-schedule .schedule :where(td,th){
  padding: 1em 0.2em!important;
  color: var(--schedule-color);
  min-height: 70px;
  position: relative;
}
.page-schedule .schedule .closed{
  color: var(--cl-accent);
}
.page-schedule .schedule tbody tr{
  padding-top: 0.5em;
}
.page-schedule .schedule tbody tr td{
  border: none!important;
  font-weight: 500;
  text-align: center!important;
}
.page-schedule .schedule tbody tr td:first-of-type{
  color: var(--cl-main)!important;
  border: none!important;
  font-weight: bold;
  text-align: center!important;
}
.page-schedule .schedule tbody td + td::before{
  position: absolute;
  content: "";
  height: 100%;
  width: 0;
  border-left: 3px dashed var(--cl-base02)!important;
  left: 0;
  bottom: 0;
}
.page-schedule .schedule tbody tr:first-of-type td + td::before{
  height: 85%;
}
.page-schedule .schedule tbody tr:last-of-type td + td::before{
  height: 85%;
  top: 0;
}


.page-schedule .schedule tbody td::after{
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  border-top: 3px dashed var(--cl-base02)!important;
  left: 0;
  top: 0;
}
.page-schedule .schedule tbody tr:first-of-type td::after{
  content: none;
}
.page-schedule .schedule tbody td:first-of-type:after{
  width: 90%;
  left: auto;
  right: 0;
}
.page-schedule .schedule tbody td:last-of-type:after{
  width: 90%;
}
.schedule .scroll-hint-icon{
  width: 130px;
}