@charset "utf-8";

/* home.css
 * おまかせプラン ver.7 - v1.0.0
 * 2022-09-01
 * **************************************************
 * Main Visual
 * Search
 * News Links
 * like This（at a time like this）
 * Recommend
 * Loop img
 * **************************************************
 */

/* Main Visual
------------------------------------------------------------------- */
.main-visual {
  display: flex;
  width: 100%;
}
/* message用CSS */
.main-visual__message {
  overflow: hidden;
  position: relative;
  padding: 20px 30px;
  width: 450px;
  background-color: #f3f3f3;
  text-align: center;
}
.main-visual__message::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 400px solid #f9f9f9;
  border-left: 490px solid transparent;
}
.main-visual__message span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 70px;
  font-size: 2.8em;
  color: #005c6b;
  font-weight: 700;
  line-height: 1.2;
}
.main-visual__message span::before {
  z-index: -1;
  position: absolute; top: -60px; left: 30px;
  content: '';
  display: inline-block;
  width: 300px;
  height: 115px;
  background-image: url(../images/home/message.svg);
  background-size: contain;
  vertical-align: middle;
}
.main-visual__message p {
  position: relative;
  z-index: 1;
  margin: 60px auto 0 auto;
  padding: 0 10px;
  width: -webkit-calc(85% - 30px);
  width: calc(85% - 30px);
  font-size: 1.6em;
}
.main-visual__message p::before {
  position: absolute; top: -30%; left: -20px;
  content: '';
  display: inline-block;
  width: 22px;
  height: 150px;
  background-image: url(../images/home/open-braces.svg);
  background-size: contain;
  vertical-align: middle;
}
.main-visual__message p::after {
  position: absolute; top: -30%; right: -20px;
  content: '';
  display: inline-block;
  width: 22px;
  height: 150px;
  background-image: url(../images/home/close-braces.svg);
  background-size: contain;
  vertical-align: middle;
}

/* 拡大表示用（1番目）CSS */
.main-visual__top {
  overflow: hidden;
  width: 510px;
}
.main-visual__top a {
  overflow: hidden;
  position: relative;
  display: block;
  padding: 50px 20px;
  height: 300px;
  width : -webkit-calc(100% - 40px);
  width : calc(100% - 40px);
  font-size: 3.0em;
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  text-align: center;
}
.main-visual__top a img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.main-visual__top a:hover img {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.main-visual__top span {
  position: relative;
  z-index: 2;
}
.main-visual__top span.cont {
  display: none;
  margin: 15px auto 0 auto;
  width: 75%;
  font-size: 60%;
  line-height: 1.5;
}
.main-visual__top a:hover span.cont {
  display: block;
}

.main-visual__pickup {
  display: flex;
  flex-wrap: wrap;
  width: -webkit-calc(100% - 450px);
  width: calc(100% - 450px);
}
.main-visual__pickup > div {
  display: flex;
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
}
.main-visual__pickup a {
  overflow: hidden;
  position: relative;
  display: block;
  padding: 50px 20px;
  height: 100px;
  width : -webkit-calc(100% - 40px);
  width : calc(100% - 40px);
  font-size: 2.0em;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.main-visual__pickup a img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.main-visual__pickup a:hover img {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.main-visual__pickup a:before {
  z-index: 2;
  content: '';
  background-color: rgba(0,0,0,25%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.main-visual__pickup a:hover::before {
  background-color: rgba(0,0,0,50%);
}
.main-visual__pickup span {
  position: relative;
  z-index: 2;
}
.main-visual__pickup span.cont {
  display: none;
  margin: 15px auto 0 auto;
  width: 75%;
  font-size: 75%;
  line-height: 1.5;
}
.main-visual__pickup a:hover span.cont {
  display: block;
}

.fade-up {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* News Links
------------------------------------------------------------------- */
.news-links {
  position: relative;
  background: linear-gradient(#ffffea, #eaf6fd)
}
.news-links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -21px;
  width: 100%;
  height: 100%;
  background: url("../images/home/news-links_bg.png") no-repeat center bottom;
  pointer-events: none;
}
.news-links__inner {
  position: relative;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 90px 50px 96px 50px;
  max-width: 1200px;
}
.news-links h2 {
  flex-grow: 1;
  height: 1em;
  background: url("../images/home/news-ttl.png") no-repeat left center/auto 100%;
  font-size: 3.5em;
  line-height: 1.2;
  text-indent: 500%;
  overflow: hidden;
  white-space: nowrap;
}
/* News */
.news-list {
  width:100%;
  /*width: calc(100% - 310px);*/
  padding: 35px;
  background: url("../images/home/news-bg.svg") no-repeat left center/100% 100%;
  filter: drop-shadow(3px 3px 0 #6ab3df)
}
.news-list__header {
  overflow: hidden;
  z-index: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.news-list--link {
  padding: .75em 1.2em;
  background-color: #3598d4;
  font-size: 1.4em;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}
.news-list--link:hover {
  opacity: .7;
}
.news-list__inner {
  width: 100%;
  padding-top: 35px;
  background-color: #fff;
}

/* Links */
.link-list li+ li {
  margin-top: 10px;
}
.link-list a {
  display: block;
  border: 1px solid #e5e5e5;
  display: flex;
}
.link-list a:hover {
  opacity: .7;
}

/* Like This（at a time like this）
------------------------------------------------------------------- */
.like-this {
  position: relative;
  margin-top: 68px;
}
.like-this::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url("../images/home/like-this_bg.png") no-repeat center bottom;
  pointer-events: none;
}

.like-this h2 {
  height: 1em;
  margin-bottom: 20px;
  background: url("../images/home/like-this-ttl.png") no-repeat center/auto 100%;
  text-align: center;
  font-size: 3.5em;
  line-height: 1;
  text-indent: 500%;
  overflow: hidden;
  white-space: nowrap;
}
.like-this__filter {
  max-width: 1100px;
  margin: 52px auto 0 auto;
}
.like-this__filter ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.like-this__filter li {
  position: relative;
  z-index: 1;
  width: 23.63%;
  height: 60px;
  margin-bottom: -1px;
  color: #3598d4;
  font-size: 1.7em;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
.like-this__filter li::before {
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 82%;
  background-color: #fff;
  border: 1px solid #3598d4;
  border-bottom: none;
  border-radius: 6px 6px 0 0 ;
  transition: .2s;
}
.like-this__filter li:hover::before,
.like-this__filter li.active::before {
  height: 100%;
  background-color: #eaf6fd;
}
.like-this__filter li + li {
  margin-left: 10px;
}
.like-this__filter li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 5px;
  color: #3598d4;
  cursor: pointer;
}
.like-this__filter li:hover span,
.like-this__filter li.active span {
  color: #333;
}
.like-this__filter li span::before, .like-this__filter li span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle at top left, transparent 4.5px, #3598d4 5px, #eaf6fd 6px);
  opacity: 0;
  /*transition: .2s;*/
  z-index: 2
}
.like-this__filter li span::before {
  left: -5px;
}
.like-this__filter li span::after {
  right: -5px;
  background: radial-gradient(circle at top right, transparent 4.5px, #3598d4 5px, #eaf6fd 6px);
}
.like-this__filter li:hover span::before, .like-this__filter li:hover span::after,
.like-this__filter li.active span::before, .like-this__filter li.active span::after {
  opacity: 1;
}
.like-this__inner {
  min-height: 549px;
  padding: 60px 0 88px 0;
  background: linear-gradient(to top, #e7faeb, #eaf6fd);
  border-top: solid 1px #3598d4;
}
/*@media screen and (max-width: 1280px) {
  .like-this__inner {
      margin: 0 20px;
  }
}*/
.like-this__btn {
  position: relative;
  left: -10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 1470px;
  margin: auto;
  padding: 0 50px;
}
.like-this__btn li {
  position: relative;
  width: 20%;
  height: 150px;
  margin-bottom: 50px;
  padding-left: 20px;
}
.like-this__btn > li.animate {
  animation: like-this-btn 0.6s;
}
@keyframes like-this-btn {
  0% {
   transform: scale(0.1);
  }
  100% {
   transform: none;
  }
}
.like-this li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 94px 15px 15px 15px;
  height: 100%;
  background: url("../images/icon/B-01.png") no-repeat center 13px/100px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-top: none;
  border-right: none;
  font-size: 1.4em;
  color: inherit;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  transition: 0.3s;
}
.like-this__btn li a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  width: 30px;
  aspect-ratio:10/9;
  background: url("../images/home/likeThis-btn-bg.png")no-repeat center bottom/contain;
  z-index: 1
}
.like-this__btn li a:hover {
  box-shadow: 0 0 15px rgba(164,216,246,.6);
  transform: scale(1.05);
}

/* 受診 */
.like-this__btn .card:nth-of-type(1) a { background-image: url("../images/icon/B-01.png" );}
.like-this__btn .card:nth-of-type(2) a { background-image: url("../images/icon/B-02.png" );}
.like-this__btn .card:nth-of-type(3) a { background-image: url("../images/icon/B-03.png" );}
/* 受診 */
.like-this__btn .medical:nth-of-type(4) a { background-image: url("../images/icon/B-04.png" );}
.like-this__btn .medical:nth-of-type(5) a { background-image: url("../images/icon/B-05.png" );}
.like-this__btn .medical:nth-of-type(6) a { background-image: url("../images/icon/B-06.png" );}
.like-this__btn .medical:nth-of-type(7) a { background-image: url("../images/icon/B-07.png" );}
.like-this__btn .medical:nth-of-type(8) a { background-image: url("../images/icon/B-08.png" );}
.like-this__btn .medical:nth-of-type(9) a { background-image: url("../images/icon/B-09.png" );}
.like-this__btn .medical:nth-of-type(10) a { background-image: url("../images/icon/B-10.png" );}
.like-this__btn .medical:nth-of-type(11) a { background-image: url("../images/icon/B-11.png" );}
.like-this__btn .medical:nth-of-type(12) a { background-image: url("../images/icon/B-12.png" );}
/* ライフシーン */
.like-this__btn .lifescene:nth-of-type(13) a { background-image: url("../images/icon/B-13.png" );}
.like-this__btn .lifescene:nth-of-type(14) a { background-image: url("../images/icon/B-14.png" );}
.like-this__btn .lifescene:nth-of-type(15) a { background-image: url("../images/icon/B-15.png" );}
.like-this__btn .lifescene:nth-of-type(16) a { background-image: url("../images/icon/B-16.png" );}
.like-this__btn .lifescene:nth-of-type(17) a { background-image: url("../images/icon/B-17.png" );}
.like-this__btn .lifescene:nth-of-type(18) a { background-image: url("../images/icon/B-18.png" );}
.like-this__btn .lifescene:nth-of-type(19) a { background-image: url("../images/icon/B-19.png" );}
.like-this__btn .lifescene:nth-of-type(20) a { background-image: url("../images/icon/B-20.png" );}
.like-this__btn .lifescene:nth-of-type(21) a { background-image: url("../images/icon/B-21.png" );}

/* Recommend
------------------------------------------------------------------- */
.recommend {
  margin-top: 60px;
}
.recommend h2 {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 1em;
  background: url("../images/home/recommend-ttl.png") no-repeat center/ auto 100%;
  font-size: 3.5em;
  text-align: center;
  line-height: 1.2;
  text-indent: 500%;
  white-space: nowrap;
  overflow: hidden;
}
.recommend ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  max-width: 1450px;
  margin: 40px auto 0 auto;
  padding: 0 50px;
}
.recommend li {
  width: 31.81%;
  min-height: 90px;
  margin-bottom: 20px;
}
.recommend li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 100px;
  padding-left: 8.5%;
  background: no-repeat center/ 100% 100%;
  filter: drop-shadow(4px 4px 0 #eaeaea);
  font-size: 1.6em;
  color: inherit;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.03em;
  transition: 0.3s;
}

.recommend .osteopathic a {background-image: url(../images/home/btn-osteopathic.svg);}
.recommend .generic a {background-image: url(../images/home/btn-generic.svg);}
.recommend .accident a {background-image: url(../images/home/btn-accident.svg);}
.recommend .off-hours a {background-image: url(../images/home/btn-off-hours.svg);}
.recommend .ladder a { background-image: url(../images/home/btn-ladder.svg);}
.recommend .doctor a {background-image: url(../images/home/btn-doctor.svg);}

.recommend li:hover a {
  opacity: .85;
  filter: drop-shadow(0 0 0 #eaeaea);
  /*transform: translateY(-0.5em);*/
}
.recommend li a::before {
  content: "";
  position: absolute;
  right: 3.5%;
  top: 50%;
  width: 80px;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  background: no-repeat center/contain;
}

.recommend .osteopathic a::before {background-image: url(../images/home/recommend-osteopathic.png);}
.recommend .generic a::before {background-image: url(../images/home/recommend-generic.png);}
.recommend .accident a::before {background-image: url(../images/home/recommend-accident.png);}
.recommend .off-hours a::before {background-image: url(../images/home/recommend-off-hours.png);}
.recommend .ladder a::before { background-image: url(../images/home/recommend-ladder.png);}
.recommend .doctor a::before {background-image: url(../images/home/recommend-doctor.png);}

.recommend li small {
  font-size: 75%;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1280px) {
  .recommend__inner {
      margin: 0 20px;
  }
}

/* Loop img
------------------------------------------------------------------- */
.loop-img {
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 90px;
}
.loop-img__inner {
  display: flex;
}
.loop-img__inner > div {
  display: flex;
  animation: loop-img 50s infinite linear 1s both;
}
@keyframes loop-img {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.loop-img__inner > div > div {
  width: calc(100vw/4);
}
.loop-img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  /* Main Visual
  ------------------------------------------------------------------- */
  .main-visual {
    display: block;
    width: 100%;
  }
  /* message用CSS */
  .main-visual__message {
    padding: 20px 10px 30px 10px;
    width: auto;
  }
  .main-visual__message span {
    margin-top: 10px;
    font-size: 2.4em;
  }
  .main-visual__message span::before {
    position: absolute; top: -15px; left: 30px;
    width: 150px;
    height: 57.5px;
    background-image: url(../images/home/message.svg);
    background-size: contain;
    vertical-align: middle;
  }
  .main-visual__message p {
    margin: 20px auto 0 auto;
    padding: 0 5px;
    width: -webkit-calc(92% - 18px);
    width: calc(92% - 18px);
    font-size: 1.3em;
  }
  .main-visual__message p::before {
    position: absolute; top: -35%; left: -20px;
    width: 12px;
    height: 85px;
    background-image: url(../images/home/open-braces.svg);
    background-size: contain;
  }
  .main-visual__message p::after {
    position: absolute; top: -35%; right: -20px;
    width: 12px;
    height: 85px;
    background-image: url(../images/home/close-braces.svg);
    background-size: contain;
  }

  /* 拡大表示用（1番目）CSS */
  .main-visual__top {
    width: auto;
  }
  .main-visual__top a {
    padding: 30px 15px;
    height: 120px;
    width : -webkit-calc(100% - 30px);
    width : calc(100% - 30px);
    font-size: 2.6em;
  }

  .main-visual__pickup {
    width: auto;
  }
  .main-visual__pickup > div {
    width : -webkit-calc(100% / 2);
    width : calc(100% / 2);
  }
  .main-visual__pickup a {
    padding: 30px 15px;
    height: 80px;
    width : -webkit-calc(100% - 30px);
    width : calc(100% - 30px);
    font-size: 1.8em;
    line-height: 1.4;
  }

  /* Search
  ------------------------------------------------------------------- */
  .search {
    padding: 35px 0;
  }
  .search__inner {
    margin: 0;
    padding: 0 10px;
    width: auto;
    text-align: center;
  }
  .search input[type="text"] {
    padding: 12px 15px;
    width: 80%;
    font-size: 1.6em;
  }
  .search input[type="submit"] {
    display: block;
    margin: 15px auto 0 auto;
    padding: 5px 10px;
    width: 90px;
    font-size: 1.8em;
  }

  /* News Links
  ------------------------------------------------------------------- */
  .news-links {
    padding-top: 95px;
    background-size: 80%;
    background: linear-gradient(#ffffea, #eaf6fd 95px);
  }
  .news-links::after {
    top: 0;
    width: 100%;
    height: 95px;
    background: url("../images/home/news-links_bg_sp.png") no-repeat center bottom/90%;
  }
  .news-links__inner {
    display: block;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    max-width: none;
  }
  .news-links h2 {
    font-size: 2.0em;
  }
  .news-list h2::before {
    font-size: 65%;
  }
  /* News */
  .news-list {
    width: 100%;
    padding: 0;
    background: #fff;
    border-top: 1px solid #e1e3e1;
    border-bottom: 1px solid #e1e3e1;
    filter: none;
  }
  .news-list__header {
    align-items: center;
    height: 65px;
    padding: 0 15px;
    border-bottom: 1px solid #e1e3e1;
  }
  .news-list--link {
    font-size: 1.0em;
  }
  .news-list__inner {
    padding: 0 15px;
    width: 100%;
  }
  .news-list ul {
    height: 28em;
  }
  .news-list li {
    display: block;
    font-size: 1.4em;
  }
  .news-list--cat > span {
    margin-right: 12px;
    padding: 2px 6px;
  }
  .news-list--date {
    margin-right: 0;
  }
  .news-list--date::after {
    content: "\A";
    white-space: pre;
  }

  /* Links */
  .links .link-list {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    padding: 24px 20px;
  }
  .links .link-list> li {
    width: 49%;
  }
  .link-list li+ li {
    margin: 0;
  }
  .link-list li:nth-of-type(n + 3) {
    margin-top: 7px;
  }
  .links .link-list img {
    width:100%;
    max-width: 100%;
    height: auto;
  }


  /* home__search （spのみ）
  ------------------------------------------------------------------- */
  .home__search {
    padding: 25px
  }
  .home__search form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .home__search input[type="text"] {
    padding: 8px 10px;
    width: 400px;
    border: 1px solid #d7d7d7;
    font-size: 1.2em;
  }
  .home__search input[type="text"]::placeholder {
    color: #868686
  }
  .home__search input[type="submit"] {
    margin-left: 6px;
    padding: 7px 10px;
    width: 80px;
    background: #1fa6e5;
    border: none;
    font-size: 1.2em;
    font-weight: 600;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #fff;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
  }
  .home__search input[type="submit"]:hover {
    background: #4db8ea;
    cursor: pointer;
  }
  /* like This（at a time like this）
  ------------------------------------------------------------------- */
  .like-this {
    margin-top: 0;
    padding-top: 25px;
    border-top: solid 1px #e1e3e1;
    border-bottom: solid 1px #e1e3e1;
  }
  .like-this::after {
    height: 90px;
    bottom: -7px;
    background: url("../images/home/like-this_bg_sp.png") no-repeat center/91.2%;
  }
  .like-this h2 {
    float: none;
    margin-bottom: 0;
    font-size: 2.0em;
    text-align: center;
  }
  .like-this__filter {
    margin-top: 20px;
    padding: 0 10px;
  }
  .like-this__filter ul {
    margin: 0;
  }
  .like-this__filter li {
    width: auto;
    height: 40px;
    flex-grow: 1;
    font-size: 1.2em;
  }
  .like-this__inner {
    margin: 0;
    padding: 20px 20px 110px 20px;
    max-width: none;
  }
  .like-this__btn {
    left: -3px;
    padding: 0
  } 
  .like-this__btn li {
    width: 50%;
    height: 120px;
    margin-bottom: 6px;
    padding-left: 6px;
  } 
  .like-this__btn li a {
    padding: 67px 10px 0 10px;
    background-position: center top;
    border: 1px solid #e5e5e5 !important;
    font-size: 1.2em;
    letter-spacing: 0;
  }
  .like-this__btn li a::after {
    content: none;
  }

  /* Recommend
  ------------------------------------------------------------------- */
  .recommend {
    margin-top: 30px;
  }
  .recommend__inner {
    margin: 0 28px;
  }
  .recommend h2 {
    font-size: 2.0em;
  }
  .recommend ul {
    display: block;
    margin: 28px 0 0 0;
    padding: 0;
    width: auto;
  }
  .recommend li {
    min-height: auto;
    margin-bottom: 13px;
    padding: 0 0;
    width: 100%;
  }
  .recommend .osteopathic {
    -webkit-background-size: 85px auto;
    background-size: 85px auto;
  }
  .recommend .generic {
    -webkit-background-size: 85px auto;
    background-size: 85px auto;
  }
  .recommend .accident {
    -webkit-background-size: 85px auto;
    background-size: 85px auto;
  }
  .recommend .off-hours {
    -webkit-background-size: 85px auto;
    background-size: 85px auto;
  }
  .recommend .ladder {
    -webkit-background-size: 85px auto;
    background-size: 85px auto;
  }
  .recommend .doctor {
    -webkit-background-size: 85px auto;
    background-size: 85px auto;
  }
  .recommend li a {
    height: 80px;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 0.03em;
  }
  .recommend li small {
    font-size: 55%;
  }

  /* Loop img
  ------------------------------------------------------------------- */
  .loop-img {
    margin-top: 40px;
  }
  .loop-img__inner > div > div {
    width: calc(100vw/2);
  }
}
