@charset "UTF-8";

@media screen and (max-width: 640px) {
  body.home,
  body.home .header,
  body.home .footer {
    overflow-x: visible;
  }
  body.home h2 {
    padding-top: 25vw !important;
    font-size: 6vw !important;
  }
}


/* キービジュアル
************************************************************/
.top-kv {
  position: relative;
  height: 600px;
  overflow: hidden;
}
@media print, screen and (min-width: 641px) {
  .top-kv {
    height: 950px;
  }
}
.top-kv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background: rgba(0, 0, 0, .1);
  z-index: 1;
}
.top-kv .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.top-kv-video {
	height:950px;
	filter: brightness(1.2);
}
.top-kv-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 950px;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 640px) {
  .top-kv {
    height: 250px;
    margin-top: 55px;
  }
  .top-kv .inner {
    width: 100%;
    max-width: 100%;
  }
	.top-kv-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
		min-height: 250px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
	}
	.top-kv-video video {
		position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
	}
}


/* お知らせ
************************************************************/
.top-news {
  position: relative;
  padding: 100px 0 104px;
  background: #f2f4f5 url('../images/clinic_info_bg.jpg') repeat-x left top/100% 220px;
}
.top-news:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84.375%;
  height: 420px;
  background: #fff;
  transform: translateX(-50%);
}

@media screen and (max-width: 1470px) {
  .top-news:before {
    width: 100%;
  }
}

.top-news .banner-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  margin-bottom: 195px;
}
.top-news .banner-wrap .item {
  display: block;
  width: calc((100% - 40px) / 2);
  transition: .3s;
}

@media (hover:hover) {
  .top-news .banner-wrap .item:hover {
    filter: brightness(1.1);
    opacity: .9;
  }
}

.top-news .section-inner {
  position: relative;
}

@media print, screen and (min-width: 641px) {
  .top-news .section-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .top-news-list {
    width: 74.1666666667%;
  }
}

.top-news .section-title .heading-02.-style-01 {
  padding-top: 90px;
  margin: 0 auto 50px;
}
.top-news .section-title .heading-02.-style-01:before {
  top: -5px;
  left: calc(50% + 6px);
  font-size: 70px;
  letter-spacing: .085em;
}
.top-news .more-button {
  text-align: center;
}
.top-news .more-button a {
  margin: 0;
}

@media print, screen and (min-width: 641px) {
  .top-news-list li {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

.top-news-list li {
  padding: 20px 29px 22px;
  line-height: 0;
  border-bottom: #cccccc 1px solid;
}
.top-news-list li:first-of-type {
  border-top: #cccccc 1px solid;
}
.top-news-list li .date {
  margin-right: 29px;
  color: #9a9a9a;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: .05em;
}
.top-news-list li .category {
  display: inline-block;
  min-width: 130px;
  padding: 3px 10px;
  margin-right: 28px;
  color: #fff;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: .05em;
  text-align: center;
  background: #a6cec4;
}
.top-news-list li .title {
  color: var(--text-color);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
}
.top-news-list li .title:hover {
  color: var(--main-color);
}

@media screen and (max-width: 640px) {
  .top-news {
    padding: 60px 0 70px;
    background: #f2f4f5 url('../images/clinic_info_bg.jpg') repeat-x left top / 100% 90px;
  }
  .top-news:before {
    height: 70%;
  }
  .top-news .banner-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
  }
  .top-news .banner-wrap .item {
    width: 100%;
  }
  .top-news .section-title .heading-02.-style-01 {
    margin: 0 auto 30px;
  }
  .top-news-list li {
    padding: 20px 10px;
  }
  .top-news-list li .date {
    margin-right: 12px;
    font-size: 90%;
  }
  .top-news-list li .category {
    min-width: auto;
    padding: 3px 16px;
    margin-right: 0;
    font-size: 80%;
    line-height: 1;
  }
  .top-news-list li .title {
    display: block;
    padding-top: 12px;
    font-size: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .top-news .more-button {
    margin-top: 40px;
    text-align: center;
  }
}


/* 医院概要
************************************************************/
.top-information {
  position: relative;
  padding: 97px 0 0;
  background: url('../images/clinic_info_bg.jpg') repeat-x left bottom 260px/100% 220px;
}
.top-information:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 260px);
  background: #f2f4f5;
  z-index: -1;
}
.top-information-content {
  margin-bottom: 219px;
}
.top-information-content .content-left .logo {
  width: 360px;
  margin: 0 auto 24px;
}

.top-information-content .content-left .address-wrap {
  width: 83.3333333333%;
  margin: 0 auto;
  font-style: normal;
  text-align: center;
}
.top-information-content .content-left .address-wrap .address {
  padding: 10px 29px 10px 48px;
  margin-bottom: 13px;
  line-height: 1.875;
  letter-spacing: .025em;
  background: #fff;
}
.top-information-content .content-left .address-wrap .address span {
  margin-right: 10px;
}
.top-information-content .content-left .address-wrap .tel {
  padding-left: 7px;
  margin-bottom: 23px;
}
.top-information-content .content-left .address-wrap .tel a {
  color: #4ba8b9;
  font-size: 39.6px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1.11111111111;
  letter-spacing: .05em;
}
.top-information-content .content-left .address-wrap .tel a span {
  display: inline-block;
  position: relative;
  top: 10px;
  width: 44px;
  height: 44px;
  margin-right: 12px;
  background: url('../images/tel_icon02.png') no-repeat center / cover;
}
.top-information-content .content-left .schedule-table:not(:last-child) {
  margin-bottom: 30px;
}
.top-information-content .content-right .map {
  padding: 1px;
  margin-bottom: 19px;
  text-align: center;
  border: #ddd solid 1px;
  border-radius: 5px;
}
.top-information-content .content-right .map iframe {
  width: 100%;
  height: 400px;
}
.top-information-content .content-right .access ul {
  padding: 11px 0 9px;
  border-radius: 5px;
  background: #86c1cc;
}
.top-information-content .content-right .access ul li {
  color: #fff;
  line-height: 1.875;
  letter-spacing: .025em;
  text-align: center;
}
.top-information-content .content-right .access ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.top-information-interior {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  position: relative;
  padding: 0 5px;
}
.top-information-interior .item {
  width: calc((100% - 10px) / 3);
  height: 380px;
  background: url('../images/clinic_info_img01.jpg') no-repeat center/cover;
}
.top-information-interior .item:nth-of-type(2) {
  background: url('../images/clinic_info_img02.jpg') no-repeat center/cover;
}
.top-information-interior .item:nth-of-type(3) {
  background: url('../images/clinic_info_img03.jpg') no-repeat center/cover;
}

@media print, screen and (min-width: 641px) {
  .top-information-content .section-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .top-information-content .content-left {
    width: 50%;
    padding-top: 3px;
  }
  .top-information-content .content-right {
    width: 520px;
  }
}

@media screen and (max-width: 640px) {
  .top-information {
    padding: 50px 0 80px;
    background: url('../images/clinic_info_bg.jpg') repeat-x left bottom / 100% 100px;
  }
  .top-information:before {
    height: 100%;
  }
  .top-information-content {
    margin-bottom: 60px;
  }
  .top-information-content .content-left {
    margin-bottom: 50px;
  }
  .top-information-content .content-left .logo {
    width: 90%;
    margin-bottom: 40px;
  }
  .top-information-content .content-left .address-wrap {
    width: 100%;
  }
  .top-information-content .content-left .address-wrap .address {
    padding: 10px 15px;
    font-size: 15px;
    text-align: left;
  }
  .top-information-content .content-left .address-wrap .address span {
    display: block;
    margin: 0;
  }
  .top-information-content .content-left .address-wrap .tel {
    padding: 0;
    margin-bottom: 23px;
  }
  .top-information-content .content-left .address-wrap .tel a {
    font-size: 35px;
    text-align: left;
  }
  .top-information-content .content-right .map iframe {
    height: 250px;
  }
  .top-information-content .content-right .access ul li {
    padding: 5px 10px 5px 20px;
    font-size: 4vw;
    line-height: 1.6;
    text-align: left;
  }
  .top-information-interior .item {
    height: 30vw;
  }
}


/* 当院の特徴
************************************************************/
.top-feature {
  position: relative;
  padding: 132px 0 140px;
}
.top-feature:before {
  content: "";
  position: absolute;
  top: -179px;
  right: 285px;
  width: 894px;
  height: 902px;
  background: url('../images/feature_tit_circle.png') no-repeat center/cover;
  z-index: -1;
}

@media screen and (max-width: 1700px) {
  .top-feature:before {
    right: 80px;
  }
}
@media screen and (max-width: 1370px) {
  .top-feature:before {
    right: 0;
  }
}

.top-feature .heading-02.-style-01 {
  display: block;
  padding: 0 86px 0 0;
  margin-bottom: 7px;
  font-size: 35px;
  line-height: 2.57142857143;
  text-align: right;
}
.top-feature .heading-02.-style-01:before {
  top: 10px;
  left: -7px;
  color: #fff;
  font-size: 150px;
  -webkit-text-stroke: 1px #86c1cc;
  transform: translate(0);
}
.top-feature .heading-02.-style-01 span {
  color: #4ba8b9;
}
.top-feature-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 80px;
}
.top-feature-list .item {
  display: flex;
  flex-flow: column wrap;
  position: relative;
  width: calc((100% - 80px) / 2);
  padding: 0 0 33px;
  background: #f2f4f5;
  overflow: hidden;
}
.top-feature-list .item:nth-of-type(even) {
  top: 140px;
}
.top-feature-list .item::before {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-top: 0;
  border-left: 71px solid transparent;
  border-right: 71px solid transparent;
  border-bottom: 71px solid #4ba8b9;
  transform: rotate(135deg);
}
.top-feature-list .item .number {
  position: absolute;
  top: 14px;
  left: 15px;
  text-align: center;
  z-index: 1;
}
.top-feature-list .item .number p {
  display: inline-block;
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.top-feature-list .item .number p em {
  font-style: normal;
}
.top-feature-list .item .image {
  position: relative;
  margin-bottom: 29px;
}
.top-feature-list .item .image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -46px;
  width: 0;
  height: 0;
  border-top: 0;
  border-left: 71px solid transparent;
  border-right: 71px solid transparent;
  border-bottom: 71px solid #4ba8b9;
  transform: rotate(-45deg);
}
.top-feature-list .item .description {
  position: relative;
  padding: 0 40px 0;
}
.top-feature-list .item .description h3 {
  display: table;
  margin: 0 auto 19.5px;
  font-size: 24px;
  font-family: var(--font-mincho);
  line-height: 2;
  letter-spacing: .05em;  
}
.top-feature-list .item .description p {
  line-height: 2.1875;
  letter-spacing: .025em;
}
.top-feature-list .item .more-button {
  padding-right: 40px;
  margin-top: auto;
  text-align: right;
}
.top-feature-list .item .more-button a {
  padding: 0 38px;
  margin: 14px 0 0;
  line-height: 1.625;
  border: none;
}
.top-feature-list .item .more-button a:before {
  right: 0;
  border: 1px solid #4ba8b9;
  background: #fff url('../images/btn_arrow02.png') no-repeat center/11px auto;
}

@media screen and (max-width: 640px) {
  .top-feature {
    padding: 48px 0 32px;
  }
  .top-feature:before {
    top: -20px;
    left: -70px;
    right: auto;
    width: 89.4vw;
    height: 90.2vw;
    opacity: .5;
  }
  .top-feature .heading-02.-style-01 {
    padding-right: 0;
    margin-bottom: 60px;
    line-height: 1.9;
    text-align: center;
  }
  .top-feature .heading-02.-style-01:before {
    left: 50%;
    transform: translateX(-50%);
  }
  .top-feature-list {
    gap: 60px 0;
  }
  .top-feature-list .item {
    width: 100%;
  }
  .top-feature-list .item:nth-of-type(even) {
    top: 0;
  }
  .top-feature-list .item .number {
    top: 14px;
    left: 13px;
  }
  .top-feature-list .item .number p {
    font-size: 26px;
  }
  .top-feature-list .item .image::before {
    top: -10px;
    left: -39px;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 60px solid #4ba8b9;
  }
  .top-feature-list .item .description {
    padding: 0 15px;
  }
  .top-feature-list .item .description h3 {
    margin-bottom: 25px;
    font-size: 5.5vw;
    line-height: 1.6;
  }
  .top-feature-list .item .more-button {
    padding-right: 22px;
  }
}


/* 専門の矯正歯科担当医が診療
************************************************************/
.top-specialist {
  position: relative;
  padding: 26px 0 200px;
}
.top-specialist:before {
  content: "";
  position: absolute;
  top: -275px;
  left: 0;
  width: 828px;
  height: 901px;
  background: url('../images/specialist_tit_circle.png') no-repeat center/cover;
  z-index: -1;
}
.top-specialist:after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 129px;
  width: 49.4791666667%;
  height: 550px;
  background: url('../images/specialist_img.jpg') no-repeat center/cover;
  z-index: -1;
}

@media screen and (max-width: 1525px) {
  .top-specialist:before {
    left: -160px;
  }
}

@media screen and (max-width: 750px) {
  .top-specialist:before {
    left: 0;
    width: 82.8vw;
    height: 90.1vw;
  }
}

.top-specialist .section-title {
  display: flex;
  align-items: center;
  gap: 0 55px;
  margin-bottom: 5px;
}
.top-specialist .section-title .heading-02.-style-01 {
  display: block;
  width: calc(100% - 280px - 57px);
  padding: 17px 0 0;
  margin: 0;
  font-size: 35px;
  line-height: 2.57142857143;
  text-align: left;
}
.top-specialist .section-title .heading-02.-style-01:before {
  top: 21px;
  left: auto;
  right: -171px;
  font-size: 150px;
  letter-spacing: .05em;
  opacity: .2;
  transform: translate(0);
}

@media screen and (max-width: 1695px) {
  .top-specialist .section-title .heading-02.-style-01:before {
    right: 0;
  }
}

.top-specialist .section-title .catch {
  display: grid;
  place-items: center;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #afb9c0;
}
.top-specialist .section-title .catch p {
  padding: 23px 0 0 13px;
  color: #fff;
  font-size: 24px;
  font-family: var(--font-mincho);
  line-height: 1.66666666667;
  letter-spacing: .1em;
  text-align: center;
}
.top-specialist .section-title .catch p span {
  font-size: 70%;
}
.top-specialist-content {
  display: flex;
  justify-content: flex-end;
}
.top-specialist-content .description {
  width: 43.3333333333%;
  min-height: 530px;
}
.top-specialist-content .description ol {
  margin-bottom: 61px;
}
.top-specialist-content .description ol li {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin: 0;
  font-size: 22px;
  font-family: var(--font-mincho);
  line-height: 1.81818181818;
  letter-spacing: .05em;
}
.top-specialist-content .description ol li:not(:last-of-type) {
  margin-bottom: 40px;
}
.top-specialist-content .description ol li:before {
  content: "0"counter(number);
  display: inline-block;
  position: static;
  padding: 25px 38.5px;
  color: #4ba8b9;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 2;
  letter-spacing: .05em;
  background: url('../images/specialist_num_circle.png') no-repeat center/cover;
}
.top-specialist-content .description .more-button a {
  padding: 21px 211px 16px 141px;
  margin: 0;
  font-size: 19px;
}
.top-specialist-content .description .more-button a:before {
  right: 165px;
}

@media screen and (max-width: 640px) {
  .top-specialist {
    padding: 110px 0 50px;
  }
  .top-specialist:after {
    left: 0;
    opacity: .3;
  }
  .top-specialist .section-title {
    flex-flow: column-reverse;
    margin-bottom: 60px;
  }
  .top-specialist .section-title .heading-02.-style-01 {
    width: 100%;
    margin-bottom: 15px;
  }
  .top-specialist .section-title .heading-02.-style-01:before {
    top: 15px !important;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .top-specialist .section-title .catch {
    width: 50vw;
    height: 50vw;
  }
  .top-specialist .section-title .catch p {
    padding: 0;
    font-size: 4.5vw;
  }
  .top-specialist-content .description {
    width: 100%;
    min-height: auto;
  }
  .top-specialist-content .description ol li {
    gap: 12px;
    font-size: 18px;
    line-height: 1.6;
  }
  .top-specialist-content .description ol li:before {
    padding: 17px 30.5px;
  }
  .top-specialist-content .description .more-button {
    text-align: center;
  }
  .top-specialist-content .description .more-button a {
    padding: 13px 50px;
    margin: 0;
    font-size: 100%;
  }
  .top-specialist-content .description .more-button a:before {
    right: 10px;
  }
}


/* 診療案内
************************************************************/
.top-medical {
  padding: 96px 0 125px;
  background: url('../images/medical_bg.jpg') no-repeat left top / cover;
}
.top-medical .heading-02.-style-01:before {
  top: 18px;
}
.top-medical-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.top-medical-list .item {
  width: 240px;
  padding-top: 29px;
}
.top-medical-list .item a {
  display: flex;
  flex-flow: column wrap;
  position: relative;
  height: 100%;
  min-height: 241px;
  padding: 0 0 34px;
}
.top-medical-list .item a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: calc(100% - 10px);
  background: #fff;
  transform: translateY(-50%);
}
.top-medical-list .item a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(100% - 20px);
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
}

@media screen and (min-width: 641px) {
  .top-medical-list .item:nth-of-type(5n) a:before {
    content: none;
  }
  .top-medical-list .item:nth-last-of-type(-n+5) a:after {
    content: none;
  }
}

.top-medical-list .item .image {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 19px;
  border-radius: 50%;
  background: #86c1cc;
  transition: .3s;
}
.top-medical-list .item .title-en {
  flex-grow: 1;
  display: block;
  color: #86c1cc;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: .05em;
  text-align: center;
  transition: .3s;
}
.top-medical-list .item .title-ja {
  flex-grow: 1;
  display: table;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 22px;
  font-family: var(--font-mincho);
  line-height: 1.59090909091;
  letter-spacing: .05em;
  text-align: center;
  transition: .3s;
}
.top-medical-list .item .title-ja span.fz-md {
  display: block;
  font-size: 81.8181818182%;
  line-height: 1.38888888889;
  letter-spacing: .05em;
}
.top-medical-list .item .title-ja span.fz-sm {
  font-size: 72.2222222222%;
  line-height: 1.92307692308;
  letter-spacing: .05em;
}
.top-medical-list .item .more-button {
  flex-grow: 1;
  display: inline-block;
  position: relative;
  color: #86c1cc;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-en-mincho);
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
  transition: .3s;
}
.top-medical-list .item .more-button::after {
  display: inline-block;
  content: "\f105";
  width: 20px;
  margin-left: 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background: #86c1cc;
  transition: .3s;
}

@media (hover:hover) {
  .top-medical-list .item a:hover {
    background: #86c1cc;
    filter: brightness(1.1);
  }
  .top-medical-list .item a:hover .image {
    border: 1px #fff solid;
    transform: translateY(-7px);
  }
  .top-medical-list .item a:hover .title-en {
    color: #fff;
  }
  .top-medical-list .item a:hover .title-ja {
    color: #fff;
  }
  .top-medical-list .item a:hover .more-button {
    color: #fff;
  }
  .top-medical-list .item a:hover .more-button:after {
    border: 1px #fff solid;
    transform: translateX(6px);
  }
}

@media screen and (max-width: 640px) {
  .top-medical {
    background: url('../images/medical_bg.jpg') no-repeat left top / cover;
  }
  .top-medical .section-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .top-medical-list {
    justify-content: space-between;
  }
  .top-medical-list .item {
    width: 48%;
  }
  .top-medical-list .item a {
    padding-bottom: 20px;
  }
  .top-medical-list .item:nth-of-type(even) a:before {
    content: none;
  }
  .top-medical-list .item .title-ja {
    font-size: 5.2vw;
    letter-spacing: .025em;
  }
  .top-medical-list .item .title-ja span.fz-sm {
    font-size: 65%;
  }
}


/* 院長ごあいさつ
************************************************************/
.top-greeting {
  position: relative;
  padding: 580px 0 110px;
  background: #f2f4f5 url('../images/clinic_info_bg.jpg') repeat-x left top 500px/100% 220px;
}
.top-greeting::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: url('../images/doctor_top_bg.jpg') no-repeat center/cover;
}
.top-greeting .heading-02.-style-01 {
  margin-bottom: 110px;
}
.top-greeting .heading-02.-style-01:before {
  top: 19px;
  color: #fff;
}
.top-greeting-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 75px;
}
.top-greeting-content .box-image {
  width: 32.5%;
  margin-bottom: 20px;
}
.top-greeting-content .box-image .image {
  position: relative;
  margin-bottom: 34px;
}
.top-greeting-content .box-image .image:before {
  content: "";
  position: absolute;
  left: -44px;
  bottom: -112px;
  width: 166px;
  height: 247px;
  background: url('../images/doctor_logo.png') no-repeat center/cover;
}
.top-greeting-content .box-image .profile {
  position: relative;
  padding-left: 6px;
  margin-bottom: 40px;
  font-family: var(--font-mincho);
  text-align: center;
}
.top-greeting-content .box-image .profile .clinic-name {
  font-size: 18px;
  line-height: 2.22222222222;
  letter-spacing: .1em;
}
.top-greeting-content .box-image .profile .name {
  font-size: 18px;
  line-height: 2.22222222222;
  letter-spacing: .1em;
}
.top-greeting-content .box-image .more-button + .more-button {
  margin-top: 20px;
}
.top-greeting-content .box-content {
  width: calc(100% - 32.5% - 75px);
}
.top-greeting-content .box-content .description {
  margin-bottom: 12px;
}
.top-greeting-content .box-content .description h3 {
  display: table;
  margin-bottom: 48px;
  color: var(--text-color);
  font-size: 35px;
  font-family: var(--font-mincho);
  line-height: 1.39473684211;
  letter-spacing: .1em;
}
.top-greeting-content .box-content .description p {
  padding-right: 12px;
  line-height: 2.5;
  letter-spacing: .025em;
}
.top-greeting-content .box-content .description p:not(:last-of-type) {
  margin-bottom: 39px;
}
.top-greeting-content .box-image .more-button a {
  display: block;
  padding: 21px 130px 15px 76px;
  margin: 0;
  font-size: 19px;
  text-align: center;
}
.top-greeting-content .box-image .more-button a:before {
  right: 93px;
}

@media screen and (max-width: 640px) {
  .top-greeting {
    padding: 56vw 0 50px;
    background: #f2f4f5 url('../images/clinic_info_bg.jpg') repeat-x left top 200px / 100% 90px;
  }
  .top-greeting::before {
    height: 200px;
  }
  .top-greeting .heading-02.-style-01 {
    margin-bottom: 40px;
  }
  .top-greeting-content {
    display: block;
  }
  .top-greeting-content .box-image {
    width: 100%;
  }
  .top-greeting-content .box-image .image:before {
    left: -20px;
    bottom: -47px;
    width: 90px;
    height: 133px;
  }
  .top-greeting-content .box-content {
    width: 100%;
  }
  .top-greeting-content .box-content .more-button {
    text-align: center;
  }
  .top-greeting-content .box-image .image {
    width: 80%;
    margin-inline: auto;
    text-align: center;
  }
  .top-greeting-content .box-image .profile {
    padding-left: 0;
    text-align: center;
  }
  .top-greeting-content .box-image .profile .clinic-name {
    font-size: 4vw;
    letter-spacing: .05em;
  }
  .top-greeting-content .box-image .profile .name {
    font-size: 5.6vw;
  }
  .top-greeting-content .box-content .description {
    margin-bottom: 45px;
  }
  .top-greeting-content .box-content .description h3 {
    margin-bottom: 25px;
    font-size: 6vw;
    line-height: 1.6;
  }
  .top-greeting-content .box-content .description p {
    padding-right: 0;
    line-height: 1.9;
  }
  .top-greeting-content .box-content .description p:not(:last-of-type) {
    margin-bottom: 20px;
  }
}


/* ループスライダー
************************************************************/
.top-loop {
  padding: 5px 0;
  overflow: hidden;
}
.top-loop .loop-slider .item {
  margin-right: 5px;
}
.top-loop .loop-slider .item img {
  width: 630px;
  height: auto;
}
@media screen and (max-width: 640px) {
  .top-loop .loop-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .top-loop .loop-slider .item img {
    width: 200px;
  }
}