@charset "UTF-8";
/* ==============

top.css

 ============== */
/* ページを読み込み時にフェード
------------- */
.fade {
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* kv
------------- */
.kv {
  position: relative;
  width: 100%;
  height: 85vh;
}
.kv .kv_text {
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.kv .kv_text h1 {
  font-size: 60px;
  line-height: 1.3;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.kv .kv_text h2 {
  font-size: 1.5rem;
  font-weight: 500;
}
.kv .btn_container {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}

/* scroll */
.scroll {
  position: absolute;
  bottom: 0;
  left: 3rem;
  height: 70px;
}
.scroll span {
  left: 0.75rem;
  bottom: 0;
  color: #000;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding-left: 0.5rem;
}
.scroll a span,
.scroll a:hover span {
  transition: 0.5s;
  font-family: "Crimson Text", serif;
  font-weight: 600;
}
.scroll a:hover span {
  color: #d29758;
}
.scroll::before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.2s ease-in-out infinite;
  opacity: 0;
}

/* scroll 線の動き */
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 70px;
    opacity: 0;
  }
}
/* KV スライダー設定 */
.kv #kv_slide {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 80%;
  height: 85vh;
  overflow: hidden;
}

.kv #kv_slide .splide__slide {
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.kv #kv_slide .splide__slide:nth-of-type(1) {
  background-image: url(../../images/kv/img_01.jpg);
}

.kv #kv_slide .splide__slide:nth-of-type(2) {
  background-image: url(../../images/kv/img_02.jpg);
}

.kv #kv_slide .splide__slide:nth-of-type(3) {
  background-image: url(../../images/kv/img_03.jpg);
}

.kv #kv_slide .splide__slide:nth-of-type(4) {
  background-image: url(../../images/kv/img_04.jpg);
}

@media screen and (max-width: 1079px) {
  .kv {
    height: 55vh;
  }
  .kv #kv_slide {
    height: 55vh;
  }
  .kv #kv_slide .splide__slide {
    height: 55vh;
  }
}
@media screen and (max-width: 767px) {
  .kv {
    height: 68vh;
  }
  .kv #kv_slide {
    height: 68vh;
  }
  .kv #kv_slide .splide__slide {
    height: 68vh;
  }
  .kv .kv_text {
    top: 42%;
    left: 1.5rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .kv .kv_text h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
  .kv .kv_text h2 {
    font-size: 1.1rem;
  }
  .kv .btn_container {
    right: 1rem;
    bottom: 2rem;
  }
  .kv .btn_container a.btn {
    width: 180px;
    height: 46px;
    font-size: 0.8rem;
  }
  .scroll {
    left: 1.5rem;
  }
  .scroll span {
    font-size: 0.8rem;
  }
}
/* top_news
------------- */
.top_news {
  margin: 50px auto 100px auto;
  display: flex;
  align-items: center;
}
.top_news .title {
  padding: 0 2rem;
  margin: 0;
}
.top_news dl {
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
}
.top_news dl a {
  color: #000;
}
.top_news dl a:hover {
  color: #d29758;
}
.top_news dt {
  width: 10rem;
  text-align: right;
  padding-right: 2rem;
}
.top_news dt .label {
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2;
  padding: 3px 0.75rem;
  border: 1px solid #a49687;
  color: #a49687;
}
.top_news dd {
  width: calc(100% - 10rem);
}
.top_news dd .date {
  display: block;
  font-size: 0.9rem;
}
.top_news a.btn_small {
  margin: 2rem auto 1rem auto;
  padding-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a49687;
  cursor: pointer;
  letter-spacing: 1px;
  font-family: "Crimson Text", serif;
  font-weight: 600;
}
.top_news a.btn_small:visited {
  color: #a49687;
}
.top_news a.btn_small:hover {
  color: #d29758;
}
.top_news a.btn_small .arw {
  width: 20px;
  height: 6px;
  border-bottom: 1px solid #a49687;
  border-right: 1px solid #a49687;
  transform: skew(45deg);
}
.top_news a.btn_small:hover .arw {
  border-bottom: 1px solid #d29758;
  border-right: 1px solid #d29758;
}

@media screen and (max-width: 1079px) {
  .top_news {
    flex-wrap: wrap;
  }
  .top_news .title {
    width: 8rem;
    padding: 0;
  }
  .top_news .title h2 {
    font-size: 3rem;
  }
  .top_news__inner {
    width: calc(100% - 8rem);
  }
}
@media screen and (max-width: 767px) {
  .top_news {
    flex-direction: column;
  }
  .top_news .title {
    width: 100%;
  }
  .top_news__inner {
    width: 100%;
  }
  .top_news a.btn_small {
    margin: 1rem auto;
    padding-right: 0;
  }
  .top_news dl {
    justify-content: space-between;
  }
  .top_news dt {
    width: 6rem;
    padding-right: 0;
    text-align: center;
  }
  .top_news dt .label {
    padding: 2px 0.5rem;
  }
  .top_news dd {
    width: calc(100% - 6rem);
  }
}
/* top_concept
------------- */
.top_concept__inner {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_concept__text {
  flex-basis: 50%;
  position: relative;
}
.top_concept__text h3 {
  color: #a49687;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 2rem;
}
.top_concept__text h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.top_concept__photo {
  flex-basis: calc(50% - 40px);
  position: relative;
}
.top_concept__photo h2 {
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: -2.5rem;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 1079px) {
  .top_concept__inner {
    padding: 2rem;
    align-items: inherit;
  }
  .top_concept__text {
    flex-basis: 60%;
  }
  .top_concept__text h3 {
    font-size: 1.4rem;
  }
  .top_concept__photo {
    flex-basis: calc(40% - 30px);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .top_concept__photo h2 {
    font-size: 3rem;
    top: -1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top_concept__inner {
    flex-direction: column;
    padding: 0;
  }
  .top_concept__text {
    flex-basis: 100%;
  }
  .top_concept__text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .top_concept__text h4 {
    margin-bottom: 0.5rem;
  }
  .top_concept__photo {
    flex-basis: 100%;
    margin-top: 0;
  }
  .top_concept__photo h2 {
    font-size: 4rem;
    top: -3rem;
  }
}
/* top_button
------------- */
.top_button {
  margin: 3rem auto;
}

@media screen and (max-width: 1079px) {
  .top_button {
    width: 90%;
    margin: 1rem auto;
  }
}
/* top_about
------------- */
.top_about .top_about__inner {
  padding: 7rem 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../../images/top/img-bg_about.jpg);
  position: relative;
}
.top_about .top_about__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.top_about .content {
  color: white;
  position: relative;
  z-index: 1;
}
.top_about .content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: white;
}
.top_about .content p {
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: white;
}
.top_about .content .btn_container {
  margin-top: 3rem;
}

@media screen and (max-width: 1079px) {
  .top_about .top_about__inner {
    padding: 4rem 1rem;
  }
  .top_about .content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.9;
  }
  .top_about .content p {
    margin-bottom: 2rem;
    line-height: 1.9;
  }
  .top_about .content .btn_container {
    margin-top: 2rem;
  }
}
/* top_doctors
------------- */
.top_doctors .doctor {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  align-items: center;
}
.top_doctors .doctor.doctor_2 {
  flex-direction: row-reverse;
}
.top_doctors .photo {
  flex-basis: 45%;
}
.top_doctors .text {
  flex-basis: calc(55% - 40px);
}
.top_doctors .text h3,
.top_doctors .text h4 {
  line-height: 1.5;
}
.top_doctors .text h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.top_doctors .text h4 {
  font-size: 2rem;
  position: relative;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.top_doctors .text h4 span {
  position: absolute;
  top: 0;
  right: 0;
}
.top_doctors .text h4 span img {
  margin-left: 15px;
}
.top_doctors .text .btn_container {
  margin-top: 2rem;
}

@media screen and (max-width: 1079px) {
  .top_doctors .doctor {
    margin-bottom: 80px;
    flex-direction: column;
  }
  .top_doctors .doctor.doctor_2 {
    flex-direction: column;
  }
  .top_doctors .photo {
    flex-basis: 100%;
    max-width: 350px;
    margin-bottom: 2rem;
  }
  .top_doctors .text {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top_doctors .photo {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  .top_doctors .photo img {
    padding: 0 3rem 0 3rem;
  }
  .top_doctors .text h3 {
    font-size: 1rem;
  }
  .top_doctors .text h4 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
}

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